diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..52326ef4af192a76fe667564ff46b865f6db039b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.xz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text diff --git a/.lfsconfig b/.lfsconfig new file mode 100644 index 0000000000000000000000000000000000000000..3a6e0ec7a9f3b0b60220c0628ac54491bc3a2512 --- /dev/null +++ b/.lfsconfig @@ -0,0 +1,2 @@ +[lfs] + url = https://artlfs.openeuler.openatom.cn/src-openEuler/texlive-base diff --git a/CVE-2023-32700.patch b/CVE-2023-32700.patch deleted file mode 100644 index e194ee7df7f36335547b1c47306fd2068d0296b8..0000000000000000000000000000000000000000 --- a/CVE-2023-32700.patch +++ /dev/null @@ -1,1316 +0,0 @@ -Description: Fix improperly secured shell-escape in LuaTeX -Origin: upstream, https://tug.org/~mseven/luatex.html -Bug-Debian-Security: https://security-tracker.debian.org/tracker/CVE-2023-32700 -Forwarded: no -Last-Update: 2023-05-18 - ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/loslibext.c -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/loslibext.c -@@ -1047,6 +1047,111 @@ static int os_execute(lua_State * L) - } - - -+/* -+** ====================================================== -+** l_kpse_popen spawns a new process connected to the current -+** one through the file streams with some checks by kpse. -+** Almost verbatim from Lua liolib.c . -+** ======================================================= -+*/ -+#if !defined(l_kpse_popen) /* { */ -+ -+#if defined(LUA_USE_POSIX) /* { */ -+ -+#define l_kpse_popen(L,c,m) (fflush(NULL), popen(c,m)) -+#define l_kpse_pclose(L,file) (pclose(file)) -+ -+#elif defined(LUA_USE_WINDOWS) /* }{ */ -+ -+#define l_kpse_popen(L,c,m) (_popen(c,m)) -+#define l_kpse_pclose(L,file) (_pclose(file)) -+ -+#else /* }{ */ -+ -+/* ISO C definitions */ -+#define l_kpse_popen(L,c,m) \ -+ ((void)((void)c, m), \ -+ luaL_error(L, "'popen' not supported"), \ -+ (FILE*)0) -+#define l_kpse_pclose(L,file) ((void)L, (void)file, -1) -+ -+#endif /* } */ -+ -+#endif /* } */ -+typedef luaL_Stream LStream; -+#define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) -+static LStream *newprefile (lua_State *L) { -+ LStream *p = (LStream *)lua_newuserdata(L, sizeof(LStream)); -+ p->closef = NULL; /* mark file handle as 'closed' */ -+ luaL_setmetatable(L, LUA_FILEHANDLE); -+ return p; -+} -+static int io_kpse_pclose (lua_State *L) { -+ LStream *p = tolstream(L); -+ return luaL_execresult(L, l_kpse_pclose(L, p->f)); -+} -+static int io_kpse_check_permissions(lua_State *L) { -+ const char *filename = luaL_checkstring(L, 1); -+ if (filename == NULL) { -+ lua_pushboolean(L,0); -+ lua_pushliteral(L,"no command name given"); -+ } else if (shellenabledp <= 0) { -+ lua_pushboolean(L,0); -+ lua_pushliteral(L,"all command execution is disabled"); -+ } else if (restrictedshell == 0) { -+ lua_pushboolean(L,1); -+ lua_pushstring(L,filename); -+ } else { -+ char *safecmd = NULL; -+ char *cmdname = NULL; -+ switch (shell_cmd_is_allowed(filename, &safecmd, &cmdname)) { -+ case 0: -+ lua_pushboolean(L,0); -+ lua_pushliteral(L, "specific command execution disabled"); -+ break; -+ case 1: -+ /* doesn't happen */ -+ lua_pushboolean(L,1); -+ lua_pushstring(L,filename); -+ break; -+ case 2: -+ lua_pushboolean(L,1); -+ lua_pushstring(L,safecmd); -+ break; -+ default: -+ /* -1 */ -+ lua_pushboolean(L,0); -+ lua_pushliteral(L, "bad command line quoting"); -+ break; -+ } -+ } -+ return 2; -+} -+static int io_kpse_popen (lua_State *L) { -+ const char *filename = NULL; -+ const char *mode = NULL; -+ LStream *p = NULL; -+ int okay; -+ filename = luaL_checkstring(L, 1); -+ mode = luaL_optstring(L, 2, "r"); -+ lua_pushstring(L,filename); -+ io_kpse_check_permissions(L); -+ filename = luaL_checkstring(L, -1); -+ okay = lua_toboolean(L,-2); -+ if (okay && filename) { -+ p = newprefile(L); -+ luaL_argcheck(L, ((mode[0] == 'r' || mode[0] == 'w') && mode[1] == '\0'), -+ 2, "invalid mode"); -+ p->f = l_kpse_popen(L, filename, mode); -+ p->closef = &io_kpse_pclose; -+ return (p->f == NULL) ? luaL_fileresult(L, 0, filename) : 1; -+ } else { -+ lua_pushnil(L); -+ lua_pushvalue(L,-2); -+ return 2; -+ } -+} -+ - void open_oslibext(lua_State * L) - { - -@@ -1080,6 +1185,8 @@ void open_oslibext(lua_State * L) - lua_setfield(L, -2, "execute"); - lua_pushcfunction(L, os_tmpdir); - lua_setfield(L, -2, "tmpdir"); -+ lua_pushcfunction(L, io_kpse_popen); -+ lua_setfield(L, -2, "kpsepopen"); - - lua_pop(L, 1); /* pop the table */ - } ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.lua -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.lua -@@ -34,7 +34,6 @@ if kpseused == 1 then - local kpse_recordoutputfile = kpse.record_output_file - - local io_open = io.open -- local io_popen = io.popen - local io_lines = io.lines - - local fio_readline = fio.readline -@@ -75,12 +74,6 @@ if kpseused == 1 then - return f - end - -- local function luatex_io_popen(name,...) -- local okay, found = kpse_checkpermission(name) -- if okay and found then -- return io_popen(found,...) -- end -- end - - -- local function luatex_io_lines(name,how) - -- if name then -@@ -130,7 +123,7 @@ if kpseused == 1 then - mt.lines = luatex_io_readline - - io.open = luatex_io_open -- io.popen = luatex_io_popen -+ io.popen = os.kpsepopen - - else - -@@ -169,6 +162,8 @@ if saferoption == 1 then - os.setenv = installdummy("os.setenv") - os.tempdir = installdummy("os.tempdir") - -+ os.kpsepopen = installdummy("os.kpsepopen") -+ - io.popen = installdummy("io.popen") - io.open = installdummy("io.open",luatex_io_open_readonly) - ---- a/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.c -+++ b/texlive-20210325-source/texk/web2c/luatexdir/lua/luatex-core.c -@@ -91,590 +91,579 @@ int load_luatex_core_lua (lua_State * L) - 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, - 0x6e, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, - 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -- 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x70, -- 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x69, -- 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, -- 0x5f, 0x6e, 0x6c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, -- 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x73, 0x61, 0x76, 0x65, 0x64, 0x5f, -- 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x2d, 0x2d, -- 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x73, 0x61, 0x76, 0x65, 0x64, 0x5f, 0x6c, 0x69, -- 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x6d, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x2d, 0x2d, 0x20, 0x61, -- 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, -- 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -- 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, -- 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, -- 0x68, 0x6f, 0x77, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x27, -- 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x77, -- 0x27, 0x29, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x63, -- 0x6f, 0x72, 0x64, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x72, 0x65, -- 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, -- 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, -- 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, -- 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, -- 0x67, 0x73, 0x75, 0x62, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x5b, 0x5e, 0x72, 0x62, 0x5d, 0x27, -- 0x2c, 0x27, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x27, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, -+ 0x63, 0x61, 0x6c, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x2e, 0x6c, -+ 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -+ 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x2e, 0x72, 0x65, 0x61, 0x64, -+ 0x6c, 0x69, 0x6e, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -+ 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, -+ 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x73, -+ 0x61, 0x76, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x20, 0x2d, 0x2d, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, -+ 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x73, 0x61, 0x76, -+ 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, -+ 0x20, 0x2d, 0x2d, 0x20, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x20, 0x72, 0x65, 0x61, 0x64, 0x6f, -+ 0x6e, 0x6c, 0x79, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, -+ 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, -+ 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, -+ 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, -+ 0x74, 0x79, 0x70, 0x65, 0x28, 0x68, 0x6f, 0x77, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x27, 0x73, 0x74, -+ 0x72, 0x69, 0x6e, 0x67, 0x27, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x69, 0x6e, 0x64, 0x28, 0x68, -+ 0x6f, 0x77, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, 0x73, -+ 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x66, 0x69, -+ 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x77, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6b, 0x70, -+ 0x73, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x66, 0x69, -+ 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, -- 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x63, 0x6f, 0x72, 0x64, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, -- 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x2c, 0x20, 0x66, -- 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, -- 0x6b, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6f, 0x6b, 0x61, -- 0x79, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x66, 0x6f, 0x75, -- 0x6e, 0x64, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -- 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, -- 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, -- 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -- 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, -- 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x2d, 0x2d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -- 0x46, 0x6f, 0x72, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x20, -- 0x74, 0x68, 0x65, 0x20, 0x67, 0x63, 0x20, 0x64, 0x6f, 0x65, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x6b, -- 0x69, 0x63, 0x6b, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x6f, 0x20, 0x77, 0x65, 0x20, 0x6e, 0x65, 0x65, -- 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, -- 0x63, 0x69, 0x74, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x6f, 0x20, -- 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, -- 0x69, 0x73, 0x20, 0x66, 0x6c, 0x75, 0x73, 0x68, 0x65, 0x64, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, -- 0x70, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, -- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, -- 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, 0x6e, -- 0x61, 0x6d, 0x65, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, -- 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, -- 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, -- 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, -+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, -+ 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x28, 0x6e, 0x61, -+ 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, -+ 0x3d, 0x20, 0x27, 0x72, 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, -+ 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, -+ 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x67, 0x73, 0x75, 0x62, 0x28, 0x68, 0x6f, 0x77, 0x2c, 0x27, 0x5b, -+ 0x5e, 0x72, 0x62, 0x5d, 0x27, 0x2c, 0x27, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x3d, 0x20, -+ 0x27, 0x27, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x68, 0x6f, 0x77, 0x20, 0x3d, 0x20, 0x27, 0x72, -+ 0x27, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x20, 0x3d, 0x20, -+ 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, 0x6f, 0x77, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, -+ 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, -+ 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x68, -+ 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x66, 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, -+ 0x65, 0x2c, 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, -+ 0x66, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, -+ 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -+ 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x46, 0x6f, 0x72, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x20, -+ 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x67, 0x63, 0x20, 0x64, 0x6f, -+ 0x65, 0x73, 0x6e, 0x27, 0x74, 0x20, 0x6b, 0x69, 0x63, 0x6b, 0x20, 0x69, 0x6e, 0x20, 0x73, 0x6f, -+ 0x20, 0x77, 0x65, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x63, 0x6c, 0x6f, 0x73, -+ 0x65, 0x20, 0x65, 0x78, 0x70, 0x6c, 0x69, 0x63, 0x69, 0x74, 0x6c, 0x79, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x6f, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, -+ 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x20, 0x69, 0x73, 0x20, 0x66, 0x6c, 0x75, 0x73, 0x68, 0x65, -+ 0x64, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x65, 0x72, -+ 0x72, 0x6f, 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x20, 0x3d, 0x20, 0x65, 0x72, 0x72, 0x6f, -+ 0x72, 0x2c, 0x20, 0x74, 0x79, 0x70, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, -+ 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, -+ 0x2c, 0x68, 0x6f, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x74, 0x79, 0x70, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x22, -+ 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -+ 0x20, 0x3d, 0x20, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, -+ 0x68, 0x6f, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x27, 0x72, 0x27, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, -+ 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -+ 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x20, -+ 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x3a, 0x63, 0x6c, -+ 0x6f, 0x73, 0x65, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x20, 0x3d, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, -- 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x3a, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x28, 0x29, 0x0a, 0x20, -+ 0x2d, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x68, 0x6f, -+ 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x69, 0x74, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x77, 0x61, -+ 0x79, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x28, 0x22, 0x70, 0x61, 0x74, 0x63, 0x68, 0x65, -+ 0x64, 0x20, 0x27, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x27, 0x20, 0x63, 0x61, 0x6e, -+ 0x27, 0x74, 0x20, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x27, 0x22, 0x20, 0x2e, 0x2e, 0x20, 0x6e, 0x61, -+ 0x6d, 0x65, 0x20, 0x2e, 0x2e, 0x20, 0x22, 0x27, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, -+ 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, -+ 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, -+ 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -+ 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, -+ 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, -+ 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x6c, 0x69, 0x6e, 0x65, -+ 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, -+ 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, -+ 0x70, 0x65, 0x6e, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, -+ 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, -+ 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, -+ 0x6e, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -+ 0x77, 0x65, 0x20, 0x61, 0x73, 0x73, 0x75, 0x6d, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, -+ 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x0a, 0x0a, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, -+ 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, -+ 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, -+ 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, -+ 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, -+ 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, -+ 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x73, 0x74, 0x72, -+ 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, -+ 0x6c, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, -+ 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -+ 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, -+ 0x6f, 0x74, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x28, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, -+ 0x28, 0x22, 0x73, 0x61, 0x66, 0x65, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, -+ 0x65, 0x74, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x25, 0x71, 0x20, -+ 0x69, 0x73, 0x20, 0x25, 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x72, 0x2c, -+ 0x66, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x22, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x22, 0x20, -+ 0x6f, 0x72, 0x20, 0x22, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x29, 0x29, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x66, 0x6f, 0x72, 0x20, -- 0x74, 0x68, 0x6f, 0x73, 0x65, 0x20, 0x77, 0x68, 0x6f, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x69, -- 0x74, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x77, 0x61, 0x79, 0x3a, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x72, 0x72, 0x6f, -- 0x72, 0x28, 0x22, 0x70, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x20, 0x27, 0x69, 0x6f, 0x2e, 0x6c, -- 0x69, 0x6e, 0x65, 0x73, 0x27, 0x20, 0x63, 0x61, 0x6e, 0x27, 0x74, 0x20, 0x6f, 0x70, 0x65, 0x6e, -- 0x20, 0x27, 0x22, 0x20, 0x2e, 0x2e, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x2e, 0x2e, 0x20, 0x22, -- 0x27, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x28, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x75, -- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, -- 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x69, 0x6f, 0x5f, 0x72, 0x65, -- 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x28, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, -- 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6d, 0x74, 0x2e, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x75, 0x61, -- 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x3d, 0x20, -- 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x3d, 0x20, 0x6c, 0x75, -- 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x0a, 0x0a, 0x65, -- 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x77, 0x65, 0x20, 0x61, -- 0x73, 0x73, 0x75, 0x6d, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, -- 0x20, 0x65, 0x6c, 0x73, 0x65, 0x77, 0x68, 0x65, 0x72, 0x65, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -- 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, -- 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, -- 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, -- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65, -- 0x5f, 0x6e, 0x6c, 0x20, 0x3d, 0x20, 0x74, 0x65, 0x78, 0x69, 0x6f, 0x2e, 0x77, 0x72, 0x69, 0x74, -- 0x65, 0x5f, 0x6e, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -- 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, -- 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -+ 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, -+ 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x28, 0x2e, -+ 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, - 0x61, 0x6c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, -+ 0x61, 0x6c, 0x6c, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, - 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x75, -- 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x72, -- 0x65, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x77, 0x72, 0x69, -- 0x74, 0x65, 0x5f, 0x6e, 0x6c, 0x28, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, 0x73, 0x61, -- 0x66, 0x65, 0x72, 0x20, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x25, 0x71, 0x20, 0x69, 0x73, 0x20, 0x25, -- 0x73, 0x22, 0x2c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x20, 0x61, 0x6e, -- 0x64, 0x20, 0x22, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x22, -- 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x70, 0x6f, -- 0x72, 0x74, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x74, 0x72, 0x75, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, -- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x6c, -- 0x69, 0x6d, 0x69, 0x74, 0x28, 0x73, 0x74, 0x72, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, -- 0x65, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, -- 0x74, 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, -- 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x22, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x20, 0x20, 0x20, 0x3d, -- 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, -- 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, -- 0x2e, 0x65, 0x78, 0x65, 0x63, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -- 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, -- 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, -- 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, -- 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x22, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x20, 0x3d, 0x20, 0x69, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, -+ 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, -+ 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, -+ 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, -+ 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, -+ 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, - 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, -- 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, -- 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, -- 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, -- 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x2c, 0x6c, 0x75, 0x61, -- 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x64, -- 0x6f, 0x6e, 0x6c, 0x79, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, -- 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -- 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x22, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x20, -+ 0x65, 0x78, 0x65, 0x63, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, -+ 0x74, 0x65, 0x6e, 0x76, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -+ 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x22, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, - 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, -- 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x3d, 0x20, 0x69, -- 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, -- 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, -- 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -- 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x75, 0x74, 0x70, -- 0x75, 0x74, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, -- 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -- 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, 0x64, 0x69, 0x72, 0x22, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x20, 0x20, 0x20, -+ 0x22, 0x6f, 0x73, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, - 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, -- 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -- 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x74, 0x6f, -- 0x75, 0x63, 0x68, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, -+ 0x6f, 0x73, 0x2e, 0x6b, 0x70, 0x73, 0x65, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x3d, -+ 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, -+ 0x6f, 0x2e, 0x70, 0x6f, 0x70, 0x65, 0x6e, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, -+ 0x2e, 0x6f, 0x70, 0x65, 0x6e, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, -+ 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x6f, 0x70, 0x65, 0x6e, -+ 0x22, 0x2c, 0x6c, 0x75, 0x61, 0x74, 0x65, 0x78, 0x5f, 0x69, 0x6f, 0x5f, 0x6f, 0x70, 0x65, 0x6e, -+ 0x5f, 0x72, 0x65, 0x61, 0x64, 0x6f, 0x6e, 0x6c, 0x79, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, -+ 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, -+ 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x72, 0x65, -+ 0x6d, 0x6f, 0x76, 0x65, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, -+ 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6f, 0x73, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x22, -+ 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, -+ 0x65, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, -+ 0x28, 0x22, 0x69, 0x6f, 0x2e, 0x74, 0x6d, 0x70, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x6f, 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x20, 0x20, 0x3d, 0x20, -+ 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x69, 0x6f, -+ 0x2e, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x66, 0x73, 0x2e, 0x63, 0x68, 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -+ 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x63, 0x68, -+ 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, -+ 0x63, 0x6b, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -+ 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x6c, 0x6f, 0x63, 0x6b, 0x22, 0x29, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x20, 0x20, 0x3d, -+ 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, -+ 0x66, 0x73, 0x2e, 0x74, 0x6f, 0x75, 0x63, 0x68, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x66, 0x73, 0x2e, 0x72, 0x6d, 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, -+ 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, -+ 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, - 0x64, 0x69, 0x72, 0x20, 0x20, 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, -- 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x6d, 0x64, 0x69, 0x72, 0x22, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x20, 0x20, -- 0x3d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x28, 0x22, -- 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x22, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6f, 0x73, 0x2e, 0x5b, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, -- 0x7c, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x7c, 0x6f, 0x73, 0x2e, 0x65, 0x78, 0x65, -- 0x63, 0x5d, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, -- 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x61, 0x77, 0x61, 0x72, 0x65, -- 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x6d, 0x61, 0x79, 0x62, 0x65, -- 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, -- 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0x0a, 0x0a, 0x69, 0x66, -- 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x3d, 0x3d, 0x20, -- 0x31, 0x20, 0x6f, 0x72, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, -- 0x20, 0x7e, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x6c, 0x69, 0x62, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, -- 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -- 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, 0x34, 0x5d, 0x20, 0x3d, -- 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, -- 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, 0x33, 0x5d, 0x20, 0x3d, 0x20, -- 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6f, 0x73, 0x2e, 0x73, -- 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x3d, 0x20, 0x66, -- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, -- 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x27, 0x66, 0x66, 0x69, 0x27, -- 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, 0x66, 0x69, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x6b, -- 0x2c, 0x20, 0x76, 0x20, 0x69, 0x6e, 0x20, 0x6e, 0x65, 0x78, 0x74, 0x2c, 0x20, 0x66, 0x66, 0x69, -- 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x69, 0x66, 0x20, 0x6b, 0x20, 0x7e, 0x3d, 0x20, 0x27, 0x67, 0x63, 0x27, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x66, 0x66, 0x69, 0x5b, 0x6b, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, 0x20, 0x3d, 0x20, 0x6e, 0x69, -- 0x6c, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6d, 0x64, 0x35, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, -- 0x75, 0x6d, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x67, 0x73, 0x75, 0x62, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x67, 0x73, 0x75, 0x62, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x20, -- 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, 0x79, 0x74, 0x65, 0x20, 0x20, -- 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x62, 0x79, 0x74, 0x65, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, -- 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6d, 0x64, 0x35, -- 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x28, 0x6b, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, -- 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, 0x2c, 0x20, 0x22, 0x2e, 0x22, -- 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x63, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, 0x25, 0x30, 0x32, -- 0x78, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x29, 0x29, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6d, 0x64, -- 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -- 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x28, 0x6b, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, -- 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, 0x2c, 0x20, -- 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x63, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x28, 0x22, -- 0x25, 0x30, 0x32, 0x58, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x29, 0x29, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x63, 0x6f, -- 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, -- 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x67, 0x6f, 0x20, 0x61, 0x77, 0x61, 0x79, 0x0a, -- 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x20, 0x3d, -- 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x0a, 0x65, 0x6e, -- 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -- 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, -- 0x72, 0x73, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, -- 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, -- 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, 0x6e, -- 0x67, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, -- 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x20, -- 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x73, 0x74, 0x61, 0x79, 0x0a, -- 0x0a, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, 0x32, 0x3a, 0x20, -- 0x77, 0x65, 0x27, 0x72, 0x65, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, -- 0x69, 0x66, 0x20, 0x75, 0x74, 0x66, 0x38, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, 0x33, 0x3a, 0x20, 0x20, 0x62, -- 0x69, 0x74, 0x77, 0x69, 0x73, 0x65, 0x2e, 0x6c, 0x75, 0x61, 0x2c, 0x20, 0x76, 0x20, 0x31, 0x2e, -- 0x32, 0x34, 0x20, 0x32, 0x30, 0x31, 0x34, 0x2f, 0x31, 0x32, 0x2f, 0x32, 0x36, 0x20, 0x31, 0x37, -- 0x3a, 0x32, 0x30, 0x3a, 0x35, 0x33, 0x20, 0x72, 0x6f, 0x62, 0x65, 0x72, 0x74, 0x6f, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x2d, 0x2d, 0x20, 0x69, -- 0x6e, 0x73, 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66, 0x3a, 0x20, 0x61, 0x72, 0x67, 0x20, 0x3d, -- 0x20, 0x7b, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x7d, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, -- 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -- 0x74, 0x75, 0x72, 0x6e, 0x20, 0x7e, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, -- 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, -- 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, -- 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x26, 0x20, -- 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, -- 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, -- 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -- 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, -- 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -- 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, -- 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, -- 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, -- 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x7c, -- 0x20, 0x79, 0x20, 0x7c, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, -- 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, -- 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7c, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -- 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6d, 0x6d, 0x79, 0x28, 0x22, 0x6c, 0x66, 0x73, 0x2e, 0x6d, 0x6b, 0x64, 0x69, 0x72, 0x22, 0x29, -+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x64, 0x65, 0x62, 0x75, 0x67, 0x20, 0x3d, 0x20, 0x6e, 0x69, -+ 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6f, 0x73, 0x2e, 0x5b, 0x65, 0x78, -+ 0x65, 0x63, 0x75, 0x74, 0x65, 0x7c, 0x6f, 0x73, 0x2e, 0x73, 0x70, 0x61, 0x77, 0x6e, 0x7c, 0x6f, -+ 0x73, 0x2e, 0x65, 0x78, 0x65, 0x63, 0x5d, 0x20, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x20, -+ 0x61, 0x72, 0x65, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, -+ 0x61, 0x77, 0x61, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, -+ 0x6d, 0x61, 0x79, 0x62, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x6f, 0x6e, 0x6c, 0x79, 0x20, -+ 0x77, 0x68, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x20, 0x6d, 0x6f, 0x64, -+ 0x65, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x73, 0x61, 0x66, 0x65, 0x72, 0x6f, 0x70, 0x74, 0x69, 0x6f, -+ 0x6e, 0x20, 0x3d, 0x3d, 0x20, 0x31, 0x20, 0x6f, 0x72, 0x20, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x65, -+ 0x73, 0x63, 0x61, 0x70, 0x65, 0x20, 0x7e, 0x3d, 0x20, 0x31, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, -+ 0x64, 0x6c, 0x69, 0x62, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, -+ 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, -+ 0x5b, 0x34, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, -+ 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x5b, -+ 0x33, 0x5d, 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, 0x76, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6f, 0x73, 0x2e, 0x73, 0x65, 0x74, 0x65, 0x6e, -+ 0x76, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, -+ 0x29, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x66, 0x69, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, -+ 0x27, 0x66, 0x66, 0x69, 0x27, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x66, -+ 0x66, 0x69, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x6f, 0x72, 0x20, 0x6b, 0x2c, 0x20, 0x76, 0x20, 0x69, 0x6e, 0x20, 0x6e, 0x65, 0x78, 0x74, -+ 0x2c, 0x20, 0x66, 0x66, 0x69, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6b, 0x20, 0x7e, 0x3d, 0x20, 0x27, 0x67, 0x63, -+ 0x27, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, 0x5b, 0x6b, 0x5d, 0x20, 0x3d, 0x20, -+ 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x66, 0x66, 0x69, -+ 0x20, 0x3d, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, -+ 0x6d, 0x64, 0x35, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, -+ 0x63, 0x61, 0x6c, 0x20, 0x73, 0x75, 0x6d, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6d, 0x64, 0x35, -+ 0x2e, 0x73, 0x75, 0x6d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x67, -+ 0x73, 0x75, 0x62, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x67, -+ 0x73, 0x75, 0x62, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x66, 0x6f, -+ 0x72, 0x6d, 0x61, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x66, 0x6f, -+ 0x72, 0x6d, 0x61, 0x74, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, -+ 0x79, 0x74, 0x65, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2e, 0x62, -+ 0x79, 0x74, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, -+ 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -+ 0x6e, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x68, 0x65, 0x78, 0x61, 0x28, 0x6b, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -+ 0x75, 0x72, 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, 0x28, 0x6b, 0x29, -+ 0x2c, 0x20, 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, -+ 0x63, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, -+ 0x28, 0x22, 0x25, 0x30, 0x32, 0x78, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, 0x63, 0x29, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, -+ 0x6f, 0x74, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6d, 0x64, 0x35, 0x2e, 0x73, 0x75, 0x6d, 0x48, 0x45, 0x58, 0x41, -+ 0x28, 0x6b, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x67, 0x73, 0x75, 0x62, 0x28, 0x73, 0x75, 0x6d, -+ 0x28, 0x6b, 0x29, 0x2c, 0x20, 0x22, 0x2e, 0x22, 0x2c, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x28, 0x63, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x66, 0x6f, 0x72, -+ 0x6d, 0x61, 0x74, 0x28, 0x22, 0x25, 0x30, 0x32, 0x58, 0x22, 0x2c, 0x62, 0x79, 0x74, 0x65, 0x28, -+ 0x63, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -+ 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x2d, 0x2d, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, -+ 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, 0x67, 0x6f, 0x20, -+ 0x61, 0x77, 0x61, 0x79, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x75, 0x6e, 0x70, -+ 0x61, 0x63, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x75, 0x6e, 0x70, -+ 0x61, 0x63, 0x6b, 0x20, 0x3d, 0x20, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x75, 0x6e, 0x70, 0x61, -+ 0x63, 0x6b, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x70, -+ 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, -+ 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x72, 0x73, 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, -+ 0x65, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x65, 0x72, 0x73, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -+ 0x0a, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x74, 0x72, 0x69, -+ 0x6e, 0x67, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x61, 0x64, -+ 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x0a, 0x65, 0x6e, -+ 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x74, 0x69, 0x62, 0x69, 0x6c, -+ 0x69, 0x74, 0x79, 0x3a, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x6d, 0x69, 0x67, 0x68, 0x74, 0x20, -+ 0x73, 0x74, 0x61, 0x79, 0x0a, 0x0a, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x74, -+ 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, -+ 0x35, 0x2e, 0x32, 0x3a, 0x20, 0x77, 0x65, 0x27, 0x72, 0x65, 0x20, 0x6f, 0x6b, 0x61, 0x79, 0x0a, -+ 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x69, 0x66, 0x20, 0x75, 0x74, 0x66, 0x38, 0x20, 0x74, 0x68, 0x65, -+ 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x20, 0x35, 0x2e, -+ 0x33, 0x3a, 0x20, 0x20, 0x62, 0x69, 0x74, 0x77, 0x69, 0x73, 0x65, 0x2e, 0x6c, 0x75, 0x61, 0x2c, -+ 0x20, 0x76, 0x20, 0x31, 0x2e, 0x32, 0x34, 0x20, 0x32, 0x30, 0x31, 0x34, 0x2f, 0x31, 0x32, 0x2f, -+ 0x32, 0x36, 0x20, 0x31, 0x37, 0x3a, 0x32, 0x30, 0x3a, 0x35, 0x33, 0x20, 0x72, 0x6f, 0x62, 0x65, -+ 0x72, 0x74, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, -+ 0x20, 0x2d, 0x2d, 0x20, 0x69, 0x6e, 0x73, 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66, 0x3a, 0x20, -+ 0x61, 0x72, 0x67, 0x20, 0x3d, 0x20, 0x7b, 0x20, 0x2e, 0x2e, 0x2e, 0x20, 0x7d, 0x0a, 0x0a, 0x62, -+ 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, -+ 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x7e, 0x61, 0x20, 0x26, 0x20, 0x30, -+ 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, - 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, - 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7e, 0x20, 0x28, 0x79, 0x20, -- 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, -- 0x20, 0x7e, 0x20, 0x79, 0x20, 0x7e, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, -- 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, -- 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7e, 0x20, 0x73, 0x65, -- 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -- 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -+ 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, -+ 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, -+ 0x20, 0x78, 0x20, 0x26, 0x20, 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, -+ 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, -+ 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, 0x2c, 0x20, - 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, - 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x20, -- 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, -- 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x26, 0x20, 0x79, -- 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, -- 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, -- 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x73, 0x65, 0x6c, 0x65, -- 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x28, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, -- 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, -- 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, -- 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, -- 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, -- 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x29, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x61, 0x72, -+ 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, 0x7c, 0x20, -+ 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, -+ 0x3d, 0x20, 0x78, 0x20, 0x7c, 0x20, 0x79, 0x20, 0x7c, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, -+ 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x7c, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x3d, 0x20, 0x66, -+ 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, 0x2c, 0x20, 0x7a, -+ 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, -+ 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x20, -+ 0x7e, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x30, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, -+ 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, -+ 0x73, 0x20, 0x3d, 0x20, 0x78, 0x20, 0x7e, 0x20, 0x79, 0x20, 0x7e, 0x20, 0x7a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, -+ 0x63, 0x74, 0x28, 0x22, 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, -+ 0x20, 0x7e, 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, -+ 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x78, 0x2c, 0x20, 0x79, -+ 0x2c, 0x20, 0x7a, 0x2c, 0x20, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -+ 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x7a, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x28, 0x78, 0x20, 0x6f, 0x72, -+ 0x20, 0x2d, 0x31, 0x29, 0x20, 0x26, 0x20, 0x28, 0x79, 0x20, 0x6f, 0x72, 0x20, 0x2d, 0x31, 0x29, -+ 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, -+ 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, -+ 0x78, 0x20, 0x26, 0x20, 0x79, 0x20, 0x26, 0x20, 0x7a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x6f, 0x72, 0x20, 0x69, 0x3d, 0x31, 0x2c, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x22, -+ 0x23, 0x22, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x64, 0x6f, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x73, 0x20, 0x26, -+ 0x20, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x28, 0x69, 0x2c, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x72, 0x65, 0x73, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, - 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, -- 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x62, 0x20, 0x3c, 0x3d, 0x20, 0x30, 0x20, 0x6f, 0x72, 0x20, -- 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x38, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x29, -- 0x20, 0x3d, 0x3d, 0x20, 0x30, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, -+ 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x29, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, -+ 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x29, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, -+ 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, -+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x62, 0x20, 0x3c, 0x3d, 0x20, -+ 0x30, 0x20, 0x6f, 0x72, 0x20, 0x28, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x38, 0x30, 0x30, 0x30, -+ 0x30, 0x30, 0x30, 0x30, 0x29, 0x20, 0x3d, 0x3d, 0x20, 0x30, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, -+ 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, -+ 0x62, 0x29, 0x20, 0x7c, 0x20, 0x7e, 0x28, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, -+ 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x2c, 0x62, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, -+ 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, -+ 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, -+ 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -+ 0x28, 0x61, 0x2c, 0x20, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x2d, -+ 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, - 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, -- 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, -- 0x7e, 0x28, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x20, 0x3e, 0x3e, 0x20, -- 0x62, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -- 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -- 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x2c, 0x62, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x62, 0x20, 0x3d, 0x20, 0x62, 0x20, 0x26, 0x20, 0x33, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, -- 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, -- 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, -- 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, -- 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, -- 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x62, -- 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x20, 0x3d, 0x20, 0x2d, 0x62, 0x20, 0x26, 0x20, 0x33, -- 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, -- 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x61, 0x20, 0x3d, -- 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x61, 0x20, 0x3e, -- 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -- 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, -- 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, -- 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -- 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x66, 0x29, 0x20, -- 0x26, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, -- 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x70, -- 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, -- 0x28, 0x61, 0x2c, 0x20, 0x76, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x7e, 0x28, -- 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x28, 0x61, 0x20, 0x26, -- 0x20, 0x7e, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3c, 0x3c, 0x20, 0x66, 0x29, 0x29, 0x20, 0x7c, -- 0x20, 0x28, 0x28, 0x76, 0x20, 0x26, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x29, 0x20, 0x3c, 0x3c, 0x20, -- 0x66, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, -- 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x69, 0x66, 0x20, 0x62, -- 0x69, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, -- 0x6c, 0x75, 0x61, 0x6a, 0x69, 0x74, 0x20, 0x28, 0x66, 0x6f, 0x72, 0x20, 0x6e, 0x6f, 0x77, 0x29, -- 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x6c, 0x6f, -- 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, -- 0x2c, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, -- 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x62, -- 0x69, 0x74, 0x2e, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x6c, -- 0x73, 0x68, 0x69, 0x66, 0x74, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x7b, -- 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -- 0x2e, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x61, 0x6e, 0x64, -- 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6e, -- 0x6f, 0x74, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x0a, 0x20, 0x20, -- 0x62, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6f, -- 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, -- 0x69, 0x74, 0x2e, 0x62, 0x78, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x74, 0x65, 0x73, 0x74, -- 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x2e, 0x2e, -- 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, -- 0x6e, 0x64, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x7e, 0x3d, 0x20, 0x30, 0x0a, 0x20, 0x20, 0x65, -- 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, -- 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x61, 0x2c, 0x66, 0x29, 0x2c, 0x32, 0x5e, 0x28, 0x77, -- 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -- 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -- 0x2e, 0x72, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, -- 0x3d, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x65, 0x70, 0x6c, -- 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, -- 0x2c, 0x76, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, -- 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x32, 0x5e, 0x28, 0x77, 0x20, 0x6f, 0x72, -- 0x20, 0x31, 0x29, 0x2d, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, -- 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x61, 0x2c, 0x62, 0x6e, 0x6f, 0x74, 0x28, 0x6c, 0x73, 0x68, -- 0x69, 0x66, 0x74, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x2c, 0x66, 0x29, 0x29, 0x29, 0x2b, 0x6c, 0x73, -- 0x68, 0x69, 0x66, 0x74, 0x28, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x76, 0x2c, 0x6d, 0x61, 0x73, 0x6b, -- 0x29, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x72, -- 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x6f, 0x72, 0x2c, -- 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x72, 0x73, 0x68, -- 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, -- 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, -- 0x2d, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, -- 0x65, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x0a, 0x0a, 0x20, 0x20, 0x20, -- 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, -- 0x28, 0x22, 0x62, 0x69, 0x74, 0x33, 0x32, 0x22, 0x29, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, 0x6e, 0x65, 0x65, 0x64, 0x65, -- 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x67, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x20, 0x72, 0x65, -- 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x22, 0x29, 0x20, -- 0x72, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -- 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x20, 0x3d, 0x20, 0x70, 0x61, -- 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x0a, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, -- 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, -- 0x65, 0x64, 0x5b, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, -- 0x5d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, -- 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, 0x65, 0x20, 0x20, 0x20, 0x74, -- 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, 0x65, 0x20, -- 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, 0x22, 0x6d, 0x69, 0x6d, 0x65, -- 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -- 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -- 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -- 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, -- 0x61, 0x6c, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, -- 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x61, 0x74, 0x74, 0x72, 0x69, -- 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, -- 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, -- 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, -- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, -- 0x2d, 0x20, 0x74, 0x68, 0x65, 0x73, 0x65, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x6e, 0x6f, 0x77, 0x20, -- 0x62, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x20, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x20, 0x6c, 0x66, -- 0x73, 0x20, 0x28, 0x77, 0x61, 0x73, 0x20, 0x64, 0x65, 0x61, 0x64, 0x20, 0x73, 0x6c, 0x6f, 0x77, -- 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -- 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x66, 0x69, 0x6c, 0x65, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x66, 0x69, 0x6c, 0x65, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, -- 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, -- 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, -- 0x22, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, -- 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, -- 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -- 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x64, 0x69, 0x72, 0x20, -- 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, -- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, 0x64, 0x69, 0x72, 0x28, -- 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x61, -- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, -- 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, -- 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -- 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, -- 0x73, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x73, -- 0x6f, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x64, 0x72, 0x6f, 0x70, 0x70, 0x65, 0x64, 0x20, 0x66, -- 0x72, 0x6f, 0x6d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, -- 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, -- 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, 0x6f, -- 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x61, 0x20, 0x3d, 0x20, 0x28, 0x61, 0x20, 0x3c, 0x3c, 0x20, 0x62, 0x29, 0x20, 0x7c, -+ 0x20, 0x28, 0x61, 0x20, 0x3e, 0x3e, 0x20, 0x28, 0x33, 0x32, 0x20, 0x2d, 0x20, 0x62, 0x29, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x61, 0x20, 0x26, 0x20, -+ 0x30, 0x78, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, -+ 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, -+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, 0x29, -+ 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x28, 0x61, 0x20, 0x3e, -+ 0x3e, 0x20, 0x66, 0x29, 0x20, 0x26, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, -+ 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, -+ 0x20, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, -+ 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x28, 0x61, 0x2c, 0x20, 0x76, 0x2c, 0x20, 0x66, 0x2c, 0x20, 0x77, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, -+ 0x20, 0x3d, 0x20, 0x7e, 0x28, 0x2d, 0x31, 0x20, 0x3c, 0x3c, 0x20, 0x28, 0x77, 0x20, 0x6f, 0x72, -+ 0x20, 0x31, 0x29, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -+ 0x28, 0x28, 0x61, 0x20, 0x26, 0x20, 0x7e, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3c, 0x3c, 0x20, -+ 0x66, 0x29, 0x29, 0x20, 0x7c, 0x20, 0x28, 0x28, 0x76, 0x20, 0x26, 0x20, 0x6d, 0x61, 0x73, 0x6b, -+ 0x29, 0x20, 0x3c, 0x3c, 0x20, 0x66, 0x29, 0x29, 0x20, 0x26, 0x20, 0x30, 0x78, 0x46, 0x46, 0x46, -+ 0x46, 0x46, 0x46, 0x46, 0x46, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, -+ 0x65, 0x69, 0x66, 0x20, 0x62, 0x69, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6c, 0x75, 0x61, 0x6a, 0x69, 0x74, 0x20, 0x28, 0x66, 0x6f, 0x72, -+ 0x20, 0x6e, 0x6f, 0x77, 0x29, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, -+ 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x20, 0x28, 0x20, 0x5b, 0x5b, 0x0a, 0x6c, 0x6f, 0x63, -+ 0x61, 0x6c, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x2c, 0x20, 0x72, -+ 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x3d, 0x20, -+ 0x62, 0x69, 0x74, 0x2e, 0x62, 0x61, 0x6e, 0x64, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x6e, -+ 0x6f, 0x74, 0x2c, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x20, -+ 0x62, 0x69, 0x74, 0x2e, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x0a, 0x0a, 0x62, 0x69, 0x74, 0x33, -+ 0x32, 0x20, 0x3d, 0x20, 0x7b, 0x0a, 0x20, 0x20, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, -+ 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x61, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, -+ 0x20, 0x62, 0x61, 0x6e, 0x64, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x62, 0x6e, 0x6f, 0x74, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, 0x6e, 0x6f, -+ 0x74, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x6f, 0x72, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x62, -+ 0x69, 0x74, 0x2e, 0x62, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x62, 0x78, 0x6f, 0x72, 0x20, 0x20, -+ 0x20, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x62, 0x78, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, -+ 0x62, 0x74, 0x65, 0x73, 0x74, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, -+ 0x6f, 0x6e, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, -+ 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x2e, 0x2e, 0x2e, 0x29, 0x20, 0x7e, 0x3d, 0x20, -+ 0x30, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x65, 0x78, 0x74, 0x72, 0x61, -+ 0x63, 0x74, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, -+ 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -+ 0x62, 0x61, 0x6e, 0x64, 0x28, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x61, 0x2c, 0x66, 0x29, -+ 0x2c, 0x32, 0x5e, 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x29, 0x0a, 0x20, -+ 0x20, 0x65, 0x6e, 0x64, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, -+ 0x3d, 0x20, 0x62, 0x69, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x2c, 0x0a, 0x20, 0x20, 0x6c, 0x73, 0x68, -+ 0x69, 0x66, 0x74, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x20, -+ 0x20, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x20, 0x3d, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, -+ 0x69, 0x6f, 0x6e, 0x28, 0x61, 0x2c, 0x76, 0x2c, 0x66, 0x2c, 0x77, 0x29, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x61, 0x73, 0x6b, 0x20, 0x3d, 0x20, 0x32, 0x5e, -+ 0x28, 0x77, 0x20, 0x6f, 0x72, 0x20, 0x31, 0x29, 0x2d, 0x31, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x72, -+ 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x61, 0x2c, 0x62, 0x6e, 0x6f, -+ 0x74, 0x28, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x6d, 0x61, 0x73, 0x6b, 0x2c, 0x66, 0x29, -+ 0x29, 0x29, 0x2b, 0x6c, 0x73, 0x68, 0x69, 0x66, 0x74, 0x28, 0x62, 0x61, 0x6e, 0x64, 0x28, 0x76, -+ 0x2c, 0x6d, 0x61, 0x73, 0x6b, 0x29, 0x2c, 0x66, 0x29, 0x0a, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x2c, -+ 0x0a, 0x20, 0x20, 0x72, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x20, 0x3d, 0x20, 0x62, 0x69, 0x74, -+ 0x2e, 0x72, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x20, 0x20, -+ 0x3d, 0x20, 0x72, 0x73, 0x68, 0x69, 0x66, 0x74, 0x2c, 0x0a, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x5d, 0x5d, 0x20, 0x29, 0x0a, 0x0a, 0x65, 0x6c, 0x73, 0x65, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x68, 0x6f, 0x70, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, -+ 0x74, 0x68, 0x65, 0x20, 0x62, 0x65, 0x73, 0x74, 0x20, 0x6f, 0x72, 0x20, 0x66, 0x61, 0x69, 0x6c, -+ 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x62, 0x69, 0x74, 0x33, 0x32, 0x20, 0x3d, 0x20, 0x72, 0x65, -+ 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x62, 0x69, 0x74, 0x33, 0x32, 0x22, 0x29, 0x0a, 0x0a, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x69, 0x73, 0x20, -+ 0x6e, 0x65, 0x65, 0x64, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x67, 0x65, 0x74, 0x74, 0x69, -+ 0x6e, 0x67, 0x20, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x28, 0x22, 0x73, 0x6f, 0x63, 0x6b, -+ 0x65, 0x74, 0x22, 0x29, 0x20, 0x72, 0x69, 0x67, 0x68, 0x74, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, -+ 0x20, 0x3d, 0x20, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x2e, 0x6c, 0x6f, 0x61, 0x64, 0x65, -+ 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, -+ 0x61, 0x64, 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x74, 0x68, 0x65, 0x6e, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x20, 0x3d, -+ 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, 0x22, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x2e, -+ 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6d, 0x69, 0x6d, -+ 0x65, 0x20, 0x20, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, -+ 0x6d, 0x69, 0x6d, 0x65, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x6f, 0x61, 0x64, 0x65, 0x64, 0x5b, -+ 0x22, 0x6d, 0x69, 0x6d, 0x65, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x5d, 0x20, 0x20, 0x20, 0x65, -+ 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, -+ 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x20, 0x6c, -+ 0x6f, 0x61, 0x64, 0x65, 0x64, 0x2e, 0x6c, 0x66, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x64, 0x6f, 0x0a, 0x0a, 0x20, 0x20, -+ 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, -+ 0x62, 0x75, 0x74, 0x65, 0x73, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, -+ 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x6c, -+ 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, -+ 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x20, 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x79, 0x6d, -+ 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x74, 0x68, 0x65, 0x73, 0x65, 0x20, 0x63, 0x61, 0x6e, -+ 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x62, 0x65, 0x20, 0x64, 0x6f, 0x6e, 0x65, 0x20, 0x75, 0x73, 0x69, -+ 0x6e, 0x67, 0x20, 0x6c, 0x66, 0x73, 0x20, 0x28, 0x77, 0x61, 0x73, 0x20, 0x64, 0x65, 0x61, 0x64, -+ 0x20, 0x73, 0x6c, 0x6f, 0x77, 0x20, 0x62, 0x65, 0x66, 0x6f, 0x72, 0x65, 0x29, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, 0x73, -+ 0x66, 0x69, 0x6c, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x66, 0x69, 0x6c, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, -+ 0x3d, 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, -+ 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, - 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, -- 0x6e, 0x61, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, -- 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, -- 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, -- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x20, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2c, 0x20, 0x73, 0x6f, -- 0x20, 0x2e, 0x2e, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, -- 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x6b, 0x20, 0x74, 0x68, -- 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, -- 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x6b, -- 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -- 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x79, 0x6d, 0x6c, 0x69, 0x6e, -- 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, 0x61, 0x6d, 0x65, -- 0x2c, 0x22, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x29, 0x20, 0x6f, 0x72, 0x20, 0x6e, 0x69, -- 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, -- 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x00 -+ 0x6d, 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x20, 0x6f, 0x72, 0x20, 0x6d, -+ 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x6c, 0x69, 0x6e, 0x6b, 0x22, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x64, 0x69, 0x72, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x69, -+ 0x73, 0x64, 0x69, 0x72, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x6d, 0x20, 0x3d, -+ 0x20, 0x6c, 0x66, 0x73, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x28, 0x6e, -+ 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x6d, 0x6f, 0x64, 0x65, 0x22, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6d, -+ 0x20, 0x3d, 0x3d, 0x20, 0x22, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x22, 0x0a, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x73, 0x68, 0x6f, 0x72, -+ 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x6c, 0x73, 0x6f, -+ 0x20, 0x62, 0x65, 0x20, 0x73, 0x6f, 0x72, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x64, 0x72, 0x6f, 0x70, -+ 0x70, 0x65, 0x64, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x6b, 0x70, 0x73, 0x65, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x69, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x73, 0x68, -+ 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, -+ 0x73, 0x2e, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x6e, 0x61, 0x6d, 0x65, 0x28, 0x6e, 0x61, 0x6d, 0x65, -+ 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, -+ 0x74, 0x75, 0x72, 0x6e, 0x20, 0x6e, 0x61, 0x6d, 0x65, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x20, -+ 0x20, 0x20, 0x20, 0x2d, 0x2d, 0x20, 0x6e, 0x6f, 0x77, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, -+ 0x69, 0x73, 0x20, 0x61, 0x20, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x20, 0x66, 0x69, 0x65, 0x6c, -+ 0x64, 0x2c, 0x20, 0x73, 0x6f, 0x20, 0x2e, 0x2e, 0x2e, 0x0a, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x69, -+ 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x6c, 0x69, -+ 0x6e, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x6e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, -+ 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x6c, 0x66, 0x73, 0x2e, 0x72, 0x65, 0x61, -+ 0x64, 0x6c, 0x69, 0x6e, 0x6b, 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x29, 0x0a, 0x20, 0x20, 0x20, 0x20, -+ 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, -+ 0x79, 0x6d, 0x6c, 0x69, 0x6e, 0x6b, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, -+ 0x28, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x22, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x29, 0x20, -+ 0x6f, 0x72, 0x20, 0x6e, 0x69, 0x6c, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x65, -+ 0x6e, 0x64, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x65, 0x6e, 0x64, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x0a, -+ 0x0a, 0x00 - }; - return luaL_dostring(L, (const char*) luatex_core_lua); - } -\ No newline at end of file diff --git a/CVE-2023-46048.patch b/CVE-2023-46048.patch index f7d710b9a1dce4004c165bddc2ea9bf27660e543..a0216c2e1caedacd02d82ffe856b9866a4850a3d 100644 --- a/CVE-2023-46048.patch +++ b/CVE-2023-46048.patch @@ -9,13 +9,13 @@ Subject: [PATCH] guard against corrupt pfb in dup tests, pdftex r910 git-svn-id: svn://tug.org/texlive/trunk/Build/source@68069 c570f23f-e606-0410-a88d-b1316a301751 --- - texlive-20210325-source/texk/web2c/pdftexdir/writet1.c | 15 ++++++++++++--- + source/texk/web2c/pdftexdir/writet1.c | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) -diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c +diff --git a/source/texk/web2c/pdftexdir/writet1.c b/source/texk/web2c/pdftexdir/writet1.c index 0444d46be0..f2a8386cab 100644 ---- a/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c -+++ b/texlive-20210325-source/texk/web2c/pdftexdir/writet1.c +--- a/source/texk/web2c/pdftexdir/writet1.c ++++ b/source/texk/web2c/pdftexdir/writet1.c @@ -841,7 +841,10 @@ static char **t1_builtin_enc(void) *t1_buf_array == '/' && valid_code(i)) { if (strcmp(t1_buf_array + 1, notdef) != 0) diff --git a/CVE-2023-46051.patch b/CVE-2023-46051.patch index bbe2cdca67056745826e94885904ae14b5d7fbec..7ffa7faa88f0fbe66df7f2d680fa2f3851dbe35a 100644 --- a/CVE-2023-46051.patch +++ b/CVE-2023-46051.patch @@ -9,13 +9,13 @@ Subject: [PATCH] guard against undump of corrupt .fmt git-svn-id: svn://tug.org/texlive/trunk/Build/source@68100 c570f23f-e606-0410-a88d-b1316a301751 --- - texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c | 9 ++++++++- + source/texk/web2c/pdftexdir/tounicode.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletion(-) -diff --git a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c +diff --git a/source/texk/web2c/pdftexdir/tounicode.c b/source/texk/web2c/pdftexdir/tounicode.c index e658064abb..e57c36f6be 100644 ---- a/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c -+++ b/texlive-20210325-source/texk/web2c/pdftexdir/tounicode.c +--- a/source/texk/web2c/pdftexdir/tounicode.c ++++ b/source/texk/web2c/pdftexdir/tounicode.c @@ -535,10 +535,17 @@ void undumptounicode(void) void **result; glyph_unicode_entry *gu = new_glyph_unicode_entry(); diff --git a/a2ping.doc.tar.xz b/a2ping.doc.tar.xz index e22dd00ddd5e7f30005d2669ffec604e104581f8..fb656680362f3359d77031ad94e0a4c2c68624d6 100644 Binary files a/a2ping.doc.tar.xz and b/a2ping.doc.tar.xz differ diff --git a/a2ping.tar.xz b/a2ping.tar.xz index b13e5bc2a751867915607bfdfd22699daad28526..52bcbd663b045fce8caefd0274f52b8243e8d5e7 100644 Binary files a/a2ping.tar.xz and b/a2ping.tar.xz differ diff --git a/accfonts.doc.tar.xz b/accfonts.doc.tar.xz index 9ee73abbbb7a02341d086c583ff1147b92a55bfa..0bd55d9bdc5a6c99c529a6837b77496425656cd5 100644 Binary files a/accfonts.doc.tar.xz and b/accfonts.doc.tar.xz differ diff --git a/accfonts.tar.xz b/accfonts.tar.xz index fbbbfee85eecc477130af7b1c5ae727eb8d172c2..ea77a05783fbf73ef7a7161d404d78ebe1abc8e7 100644 Binary files a/accfonts.tar.xz and b/accfonts.tar.xz differ diff --git a/adhocfilelist.doc.tar.xz b/adhocfilelist.doc.tar.xz index f4c90a2fcda8269814c94f25d4cfa67bf8e65d6a..b963bad7c701ae3e71041173aa37bdadac531209 100644 Binary files a/adhocfilelist.doc.tar.xz and b/adhocfilelist.doc.tar.xz differ diff --git a/adhocfilelist.tar.xz b/adhocfilelist.tar.xz index aeba868f4439490bb4b7392c1b2c5c06eecf51df..4220fcdcc0dae4292399aa86800acec3a3a07005 100644 Binary files a/adhocfilelist.tar.xz and b/adhocfilelist.tar.xz differ diff --git a/afm2pl.tar.xz b/afm2pl.tar.xz index eb2a142f64fcf88f98be863e47888af6e4e516bd..b9bd9da0b0cff87ac72d630aaeaa7eb497d549f7 100644 Binary files a/afm2pl.tar.xz and b/afm2pl.tar.xz differ diff --git a/albatross.doc.tar.xz b/albatross.doc.tar.xz index ec5b6d630dd5b21640a2501bfaf6bb6ab29217ac..647b57079c3d1c1f99dd8af9c7d606322ccbd224 100644 Binary files a/albatross.doc.tar.xz and b/albatross.doc.tar.xz differ diff --git a/albatross.tar.xz b/albatross.tar.xz index 3e8cb3056f8b64153264313de58dd61410723038..c16a8d0dbbf6cb1733975b841dff422763d67f25 100644 Binary files a/albatross.tar.xz and b/albatross.tar.xz differ diff --git a/aleph.doc.tar.xz b/aleph.doc.tar.xz index 54b8490d0750e83fa5c9c70703f2d3f6b30da892..967a3492182d10e3f507669bedcda9a34954846d 100644 Binary files a/aleph.doc.tar.xz and b/aleph.doc.tar.xz differ diff --git a/aleph.tar.xz b/aleph.tar.xz index dd39ab8fd8020860393aa03014162df4ca7fe2de..595c28411a24137aa2435a39256679a15d64762a 100644 Binary files a/aleph.tar.xz and b/aleph.tar.xz differ diff --git a/amstex.doc.tar.xz b/amstex.doc.tar.xz index 95d8e818c3ebef4f6629ad9f304b4af0b032021d..02aada8e65850f9d25acd7489987365a800e9359 100644 Binary files a/amstex.doc.tar.xz and b/amstex.doc.tar.xz differ diff --git a/amstex.tar.xz b/amstex.tar.xz index 78262da40f82f7577011b4257a168d317a581399..ca592c9137a9c62c5ef75ceb57be7ae71aed6014 100644 Binary files a/amstex.tar.xz and b/amstex.tar.xz differ diff --git a/arara.doc.tar.xz b/arara.doc.tar.xz index 3d25778f1d80c4975021ffb8b94301dfe28383e4..83a8ef5efa3da5d3a3305a456a18b1ba5598418c 100644 Binary files a/arara.doc.tar.xz and b/arara.doc.tar.xz differ diff --git a/arara.tar.xz b/arara.tar.xz index a0ac557d6e8926b90eb5669175bded50285ac55a..fd2a58a21ac46098c1424d538d6cba18a4a00e6f 100644 Binary files a/arara.tar.xz and b/arara.tar.xz differ diff --git a/attachfile2.doc.tar.xz b/attachfile2.doc.tar.xz index 37912281fa9e92888c1d0c1fdc8a31c2038dbecd..41756e431c6c1dc7c1722f840d9bb2161201ee7e 100644 Binary files a/attachfile2.doc.tar.xz and b/attachfile2.doc.tar.xz differ diff --git a/attachfile2.tar.xz b/attachfile2.tar.xz index 4fa1461433ac67a4a2ce4150422d0c8a68046963..0e58f9d7ef13d2a105ad4b8130cbc22ff9579375 100644 Binary files a/attachfile2.tar.xz and b/attachfile2.tar.xz differ diff --git a/authorindex.doc.tar.xz b/authorindex.doc.tar.xz index f665f7753d74d72e535f22fa566ba666d5bff306..9ee33ab1ba259f228117b21ba84a767d20724552 100644 Binary files a/authorindex.doc.tar.xz and b/authorindex.doc.tar.xz differ diff --git a/authorindex.tar.xz b/authorindex.tar.xz index 2080592aa3b7e318e4f32435fd32ab4ec19fe6a5..7dc4e6e056ffe4aa1c6e29fc357e10dad633d76b 100644 Binary files a/authorindex.tar.xz and b/authorindex.tar.xz differ diff --git a/autosp.doc.tar.xz b/autosp.doc.tar.xz index d9ca81308efa31b4911fb1febecf1f4274ed5860..90fbc84e33d3cf3cd649505db7c640869bc0660e 100644 Binary files a/autosp.doc.tar.xz and b/autosp.doc.tar.xz differ diff --git a/axodraw2.doc.tar.xz b/axodraw2.doc.tar.xz index 1c0b916982f9eb6e7f631ac808e041a575a57ea3..2964d963483617a5d475820998f4d5bc3d93db2a 100644 Binary files a/axodraw2.doc.tar.xz and b/axodraw2.doc.tar.xz differ diff --git a/axodraw2.tar.xz b/axodraw2.tar.xz index ef8703c6290192744ec7b5a77b31ef7984dc944d..c073d25162573f7d336b4435a62882c07fef87d6 100644 Binary files a/axodraw2.tar.xz and b/axodraw2.tar.xz differ diff --git a/bib2gls.doc.tar.xz b/bib2gls.doc.tar.xz index 2e8a07871fef7719caee7c72f910f0dacd1b8910..9d3cc084d56c75003fa1e1d0eba48098f5e1f665 100644 Binary files a/bib2gls.doc.tar.xz and b/bib2gls.doc.tar.xz differ diff --git a/bib2gls.tar.xz b/bib2gls.tar.xz index 9269189b6ee7f1c04608fea20e2a4e8cc41a59bd..3e7efdb75f30b4f807bfb606d192a8824b24f4f7 100644 Binary files a/bib2gls.tar.xz and b/bib2gls.tar.xz differ diff --git a/bibcop.doc.tar.xz b/bibcop.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..bf21893b51121619f8326e8a10d080fefcd07d24 --- /dev/null +++ b/bibcop.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff174cbcc9c4dff461460a8b9b3b930a062c7a2dd8e82c2a98c702fc1494b968 +size 355000 diff --git a/bibcop.tar.xz b/bibcop.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..44b533806e68cfbf7b9dbf8632b58897035f3dd9 --- /dev/null +++ b/bibcop.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2407c553f90c77e230e0e6467a107f35271ce1e049ea648668b8826a5cb0ddc +size 6464 diff --git a/bibexport.doc.tar.xz b/bibexport.doc.tar.xz index 97b80e0c255a4f482e1713bc1939ae3d580c48bd..2fc4f054f71039b00f7eaab103826c84dc34c94f 100644 Binary files a/bibexport.doc.tar.xz and b/bibexport.doc.tar.xz differ diff --git a/bibexport.tar.xz b/bibexport.tar.xz index f1c7f12737ad4b331389715b240aad61457c66cb..3b9b348fab7ee26de343e4f130d0b2868c73a191 100644 Binary files a/bibexport.tar.xz and b/bibexport.tar.xz differ diff --git a/bibtex.doc.tar.xz b/bibtex.doc.tar.xz index 27ba2d6e448acce2f9afa0a8b2df268306a35454..2b2dafedb29efa706f96591a138d09628924fb18 100644 Binary files a/bibtex.doc.tar.xz and b/bibtex.doc.tar.xz differ diff --git a/bibtex.tar.xz b/bibtex.tar.xz index 0e9f19866d05eb767fb3354f1ad7f4b4d5247439..9adf58cc9044c5ed2875bc2dfe1ec228752e4309 100644 Binary files a/bibtex.tar.xz and b/bibtex.tar.xz differ diff --git a/bibtex8.doc.tar.xz b/bibtex8.doc.tar.xz index f641aeb9d7150ab80bc62c27783b0875d14718c6..c6657c0547b8e7f4321333eb5bded8104303a5d1 100644 Binary files a/bibtex8.doc.tar.xz and b/bibtex8.doc.tar.xz differ diff --git a/bibtex8.tar.xz b/bibtex8.tar.xz index b5288df45eb0d08a07d5122ca929800643ea3f66..e9856f2e06b95a368dc709fd29e97ab1f5c62033 100644 Binary files a/bibtex8.tar.xz and b/bibtex8.tar.xz differ diff --git a/bibtexu.doc.tar.xz b/bibtexu.doc.tar.xz index d3e19bc5794ab186e70620dd36118c7f4ad6d789..edaeb88fc4770e1ef2aee399fb23712e819b20be 100644 Binary files a/bibtexu.doc.tar.xz and b/bibtexu.doc.tar.xz differ diff --git a/build-svn66984.tar.gz b/build-svn66984.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..5a02beda07f9da4a98a0dc08b79cc068dbebbd32 --- /dev/null +++ b/build-svn66984.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6340385f76727b66cb01cc444a2aa64f45218f7d0b07a5833d646345d8a8ce +size 107696679 diff --git a/bundledoc.doc.tar.xz b/bundledoc.doc.tar.xz index ae6454f978fb5527d0b7a408bf352e51dfc83dc9..2d3f9013ab3d8601083f5acf37b17cc1aa205031 100644 Binary files a/bundledoc.doc.tar.xz and b/bundledoc.doc.tar.xz differ diff --git a/bundledoc.tar.xz b/bundledoc.tar.xz index a677a8cb08a64b376fbbbdc2b22485e2a678fe8a..699eb8d6b34a5fdd490416c7a2e56fd3d3c7ee4d 100644 Binary files a/bundledoc.tar.xz and b/bundledoc.tar.xz differ diff --git a/cachepic.doc.tar.xz b/cachepic.doc.tar.xz index 6140a6248649ef5ef06ca2d63dbdd877e0953fd5..c9b575df02adb9077bae7214c842dfdeba42d492 100644 Binary files a/cachepic.doc.tar.xz and b/cachepic.doc.tar.xz differ diff --git a/cachepic.tar.xz b/cachepic.tar.xz index 0973d09920898f8114e737fa4d59b1ee663cbbbe..b689ba9fa87572d19b73099254185d4f5cd29eb2 100644 Binary files a/cachepic.tar.xz and b/cachepic.tar.xz differ diff --git a/checkcites.doc.tar.xz b/checkcites.doc.tar.xz index 9190edf5fab681121832a989b8b227e55ed6c18f..f795751af4d19145327a0d722cb82dc28f1e59af 100644 Binary files a/checkcites.doc.tar.xz and b/checkcites.doc.tar.xz differ diff --git a/checkcites.tar.xz b/checkcites.tar.xz index eeb6d23ff2edbc441f36843b46f6eee3af629af0..59cdf3c184a96db0423d51523142d8f563b58f68 100644 Binary files a/checkcites.tar.xz and b/checkcites.tar.xz differ diff --git a/checklistings.doc.tar.xz b/checklistings.doc.tar.xz index 16fdfe0768fe8b1df40506229f6e24c81d5eb90c..b96981e05c84ec69f3d3682637e1b68866543e90 100644 Binary files a/checklistings.doc.tar.xz and b/checklistings.doc.tar.xz differ diff --git a/checklistings.tar.xz b/checklistings.tar.xz index d8b325e44c6e20449de67e080c64912df4359f0d..c3a03d953dc96750f3a2ae52b9b896e28b02caed 100644 Binary files a/checklistings.tar.xz and b/checklistings.tar.xz differ diff --git a/chklref.doc.tar.xz b/chklref.doc.tar.xz index 00ecfaa33ba6cd53d2cb5181ef300ab4929a6544..447327c6ef0b06a075dd3a9236fb8f34c116cf9c 100644 Binary files a/chklref.doc.tar.xz and b/chklref.doc.tar.xz differ diff --git a/chklref.tar.xz b/chklref.tar.xz index 969de1d1a7c1038be48fef5fa9cf39eb4212f9ed..d7390df4fc3e9f20db7996f7d748ee52604f34e2 100644 Binary files a/chklref.tar.xz and b/chklref.tar.xz differ diff --git a/chktex.doc.tar.xz b/chktex.doc.tar.xz index 303ef49e9e06d75a940f8ba0a2bf2716a9114879..2ded2d2537d5ea3ae1daf165bb3ce37f21d39a0e 100644 Binary files a/chktex.doc.tar.xz and b/chktex.doc.tar.xz differ diff --git a/chktex.tar.xz b/chktex.tar.xz index 1878ae248c655cde9939ca26d9d0d78d5b89aa21..cbc6fbb16d61f120925a7b7b28ffc70cc53c7c74 100644 Binary files a/chktex.tar.xz and b/chktex.tar.xz differ diff --git a/citation-style-language.doc.tar.xz b/citation-style-language.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..2c9db69980bd7f1b45986dabca9713381e69f013 --- /dev/null +++ b/citation-style-language.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2df9779fe7a54587ca7d2236f9ae4d0dfab8a435b033fd13f60ffdf3dd9b8faa +size 246180 diff --git a/citation-style-language.tar.xz b/citation-style-language.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..d3ff89543836f8043e351dd9c5c48df3c66b7386 --- /dev/null +++ b/citation-style-language.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0939e62256df872bdad9c5914898eae0cf35a775812aedf6ccc6b347ac3b4f9a +size 136216 diff --git a/cjk-gs-integrate.doc.tar.xz b/cjk-gs-integrate.doc.tar.xz index 6531255d4017d46a24192de1d1308f4d1e8834b3..23fa2d8bcf3bd5e5ba60363213a2bffcb6700c8f 100644 Binary files a/cjk-gs-integrate.doc.tar.xz and b/cjk-gs-integrate.doc.tar.xz differ diff --git a/cjk-gs-integrate.tar.xz b/cjk-gs-integrate.tar.xz index 73d0a497e0bb97157a973e7b002ec8158a23bc62..410fb72012eab1a28e7359a3eefb5f0382fb1c83 100644 Binary files a/cjk-gs-integrate.tar.xz and b/cjk-gs-integrate.tar.xz differ diff --git a/cjkutils.tar.xz b/cjkutils.tar.xz index 329613dc4dc769e4f611dffd2d007999b548e792..dc91905e7e4ffdaaca168e16a90caf07245c6ebb 100644 Binary files a/cjkutils.tar.xz and b/cjkutils.tar.xz differ diff --git a/clojure-pamphlet.doc.tar.xz b/clojure-pamphlet.doc.tar.xz index 2948e7eb6c0b652e7935a8e9e71e6975b0bbae11..abb765682f0080ea56ad058d52edd6a20cdecc7a 100644 Binary files a/clojure-pamphlet.doc.tar.xz and b/clojure-pamphlet.doc.tar.xz differ diff --git a/clojure-pamphlet.tar.xz b/clojure-pamphlet.tar.xz index c9f74d1063ff742d3a507197f0db80d7ff66b991..a9ce8867e0486dcfb351c203668ded2058e633b5 100644 Binary files a/clojure-pamphlet.tar.xz and b/clojure-pamphlet.tar.xz differ diff --git a/cluttex.doc.tar.xz b/cluttex.doc.tar.xz index daaab87fc0aa441992a4eddcb5b547bcf55625b6..46a296ba70c97382544145d599e0f1ccbd3507dc 100644 Binary files a/cluttex.doc.tar.xz and b/cluttex.doc.tar.xz differ diff --git a/cluttex.tar.xz b/cluttex.tar.xz index f9d1a6ec3fa094cce3689abbe11a580f0373e942..d0d795ebea119df98aecfc97e09f4a0876d00e86 100644 Binary files a/cluttex.tar.xz and b/cluttex.tar.xz differ diff --git a/context.doc.tar.xz b/context.doc.tar.xz index f1e6c715a633dff0a2450455b5f4e2a566fceba3..f3792227f25731561a622cb1b92033f585e0e850 100644 Binary files a/context.doc.tar.xz and b/context.doc.tar.xz differ diff --git a/context.tar.xz b/context.tar.xz index ae551c05a88118e17f77edd6b02923c940b9bd9b..393de3c24ba8f714771a9d8f36e54062707627ed 100644 Binary files a/context.tar.xz and b/context.tar.xz differ diff --git a/convbkmk.doc.tar.xz b/convbkmk.doc.tar.xz index 66372d9219b6c73411ac2c082cd75e7a7dedc11b..2a37824a26fc6c9b193aa9e8b016fb3cd1852bd8 100644 Binary files a/convbkmk.doc.tar.xz and b/convbkmk.doc.tar.xz differ diff --git a/convbkmk.tar.xz b/convbkmk.tar.xz index 21539cb463f3cc3756a3f558c1156a004b05635d..50884e1cbd39e71a047ca2604cc3f9ef47aa7d76 100644 Binary files a/convbkmk.tar.xz and b/convbkmk.tar.xz differ diff --git a/crossrefware.doc.tar.xz b/crossrefware.doc.tar.xz index c93d906aefaf5aaea3ef993203a5f1f763858867..119a0143a189cfec00b6633e90225679ac265207 100644 Binary files a/crossrefware.doc.tar.xz and b/crossrefware.doc.tar.xz differ diff --git a/crossrefware.tar.xz b/crossrefware.tar.xz index 4d70abb43ea14c8cbd4bfa8209812eb3349df5dc..ee6984a27ee5dd09c68f8fc055757a3d0d4ef4b9 100644 Binary files a/crossrefware.tar.xz and b/crossrefware.tar.xz differ diff --git a/cslatex.tar.xz b/cslatex.tar.xz index e9714f42f9404c14b9bcc9f689bc028db3d50e57..7c9ba4e54a74ce3afbeb07b1909d3c41b4dd09ae 100644 Binary files a/cslatex.tar.xz and b/cslatex.tar.xz differ diff --git a/csplain.tar.xz b/csplain.tar.xz index 7c4c1e10795954e6e659cd8455667986d3b71578..122a23ba400792ceb8f03a00c61f9e6dd755326a 100644 Binary files a/csplain.tar.xz and b/csplain.tar.xz differ diff --git a/ctan-o-mat.doc.tar.xz b/ctan-o-mat.doc.tar.xz index 5d402321708aa4dce59665f8ab415f2743de198c..671de1800bd99c70bb5acaf1f7f9351fe77cc5a6 100644 Binary files a/ctan-o-mat.doc.tar.xz and b/ctan-o-mat.doc.tar.xz differ diff --git a/ctan-o-mat.tar.xz b/ctan-o-mat.tar.xz index 4c9372d907028994b68a76204aa42ca9163fd0c0..8cf14a37c9d47b6b496df9317a9522ca13cdba14 100644 Binary files a/ctan-o-mat.tar.xz and b/ctan-o-mat.tar.xz differ diff --git a/ctanbib.doc.tar.xz b/ctanbib.doc.tar.xz index e99187c4e6624b9cb79aeefcdae43fafde9258b9..095a4938f48318979bc385fbce7d0eef23583cbf 100644 Binary files a/ctanbib.doc.tar.xz and b/ctanbib.doc.tar.xz differ diff --git a/ctanbib.tar.xz b/ctanbib.tar.xz index 8b6a233706ca4df01c08e9141078402519c9b2d7..3e7832e868197e39c2f91c3ac1d6972fd81684f5 100644 Binary files a/ctanbib.tar.xz and b/ctanbib.tar.xz differ diff --git a/ctanify.doc.tar.xz b/ctanify.doc.tar.xz index e66afc6fa37e249f07850d2ed8b098e018214141..bc7025c18854368fdf4a3cc1407be93f41ea5ef2 100644 Binary files a/ctanify.doc.tar.xz and b/ctanify.doc.tar.xz differ diff --git a/ctanify.tar.xz b/ctanify.tar.xz index 5174b829687d5d49651bddb34b6df35ce761e585..545cdc43c7ad6185c67d27cf31211ebc6d043a59 100644 Binary files a/ctanify.tar.xz and b/ctanify.tar.xz differ diff --git a/ctanupload.doc.tar.xz b/ctanupload.doc.tar.xz index 65920871aca617e87e2b80215d76bbc9d032ee56..4dc8742cef2af1122b9510506ff40a092f8e6738 100644 Binary files a/ctanupload.doc.tar.xz and b/ctanupload.doc.tar.xz differ diff --git a/ctanupload.tar.xz b/ctanupload.tar.xz index ba4497591ebb7cfe42f58286da505d935eb3abe1..673475aeeeaec8f6473110439626ab3c77845661 100644 Binary files a/ctanupload.tar.xz and b/ctanupload.tar.xz differ diff --git a/ctie.doc.tar.xz b/ctie.doc.tar.xz index 153a28d1270c7aa0e64307d83ed407532e05227d..e2b4ab995215d5c1cc223c94b03ba0e9d3e6cc37 100644 Binary files a/ctie.doc.tar.xz and b/ctie.doc.tar.xz differ diff --git a/cweb.doc.tar.xz b/cweb.doc.tar.xz index c052461ecfe13edbe357d33502efa7a5a7b493c8..8f5dcb241f5832634abcb41c88c517c793f1671c 100644 Binary files a/cweb.doc.tar.xz and b/cweb.doc.tar.xz differ diff --git a/cweb.tar.xz b/cweb.tar.xz index 72291fd40a329e09ac0739838c352be0de42f648..2c680a7cd7a947aab83c5156ec28fe3e28639054 100644 Binary files a/cweb.tar.xz and b/cweb.tar.xz differ diff --git a/cyrillic-bin.doc.tar.xz b/cyrillic-bin.doc.tar.xz index 667c7e70378d61242f2090e3c358df1668729d9c..7e71e5ec5469d8d37cd14e4bc411e283454ec830 100644 Binary files a/cyrillic-bin.doc.tar.xz and b/cyrillic-bin.doc.tar.xz differ diff --git a/cyrillic-bin.tar.xz b/cyrillic-bin.tar.xz index d79fd103ec99f5264feb3e63e12551112bae99a4..5d9dbfca81c550db058d560ae8390504f16f7683 100644 Binary files a/cyrillic-bin.tar.xz and b/cyrillic-bin.tar.xz differ diff --git a/cyrillic.doc.tar.xz b/cyrillic.doc.tar.xz index 953e0b4b86b8e607b03a444f02d32e2b48a8418f..06136e820364d49e7f036fedf9a9c9ed737ad60e 100644 Binary files a/cyrillic.doc.tar.xz and b/cyrillic.doc.tar.xz differ diff --git a/cyrillic.tar.xz b/cyrillic.tar.xz index bec25e413cede129dcd6d7686b7ae9c64615aa16..28686b1a5f9d32631a6c2d54632abde411e615b7 100644 Binary files a/cyrillic.tar.xz and b/cyrillic.tar.xz differ diff --git a/de-macro.doc.tar.xz b/de-macro.doc.tar.xz index 62b1febf8cf89b4e8efed14768bf1e73208f2ab9..bc3829aed8dadf9d976bd8c5aaf95aca25b8d0e0 100644 Binary files a/de-macro.doc.tar.xz and b/de-macro.doc.tar.xz differ diff --git a/de-macro.tar.xz b/de-macro.tar.xz index c64b66136e37f117fdd2bf2b9dc6a10894daba66..b120580a70f6c869d90b501fd0c00c4e9071a838 100644 Binary files a/de-macro.tar.xz and b/de-macro.tar.xz differ diff --git a/detex.doc.tar.xz b/detex.doc.tar.xz index cf05d5907f0e28881375e51314a3720a9228e90a..146ba784cce4034d21f4297a43a1e84eb8630e22 100644 Binary files a/detex.doc.tar.xz and b/detex.doc.tar.xz differ diff --git a/detex.tar.xz b/detex.tar.xz index dc31ea310561550b5d34f22b818aaadbb4081355..9ca9d5814b0a9b23c3af403bc58bcc44fdcbaaba 100644 Binary files a/detex.tar.xz and b/detex.tar.xz differ diff --git a/diadia.doc.tar.xz b/diadia.doc.tar.xz index 253b43aa22005295ec07f65f6ab99b917816dec9..55ca4c5b1826bd2f61c4e451ff0b7c4695ac282e 100644 Binary files a/diadia.doc.tar.xz and b/diadia.doc.tar.xz differ diff --git a/diadia.tar.xz b/diadia.tar.xz index 42cd31ae4c9a29344b98686afb731133718843cc..a5b7bd63e146befa93d2ef373ead4a16aac827bd 100644 Binary files a/diadia.tar.xz and b/diadia.tar.xz differ diff --git a/digestif.doc.tar.xz b/digestif.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..723e5f6223d0de04acadda9f27ad53ed1bb1f499 --- /dev/null +++ b/digestif.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e25045f2620d1bb1c08ff178a37a96027733d80c4f351ddfd7d6ead5271724 +size 5560 diff --git a/digestif.tar.xz b/digestif.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..f4748d382959647fc88d636a203284b2426920e4 --- /dev/null +++ b/digestif.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bb26d758cb0bc89327772b8acac5f704fc0b8e06c512111f07db33f336df2c +size 637308 diff --git a/dosepsbin.doc.tar.xz b/dosepsbin.doc.tar.xz index eae3479db7f80da7a03a23d1e345a2e3e5b37e73..d4436f0b161c8b5ddad290232d6cbd6ff61a908f 100644 Binary files a/dosepsbin.doc.tar.xz and b/dosepsbin.doc.tar.xz differ diff --git a/dosepsbin.tar.xz b/dosepsbin.tar.xz index 923853977095cce6e3f29e4dac3ae213b6d96d7e..6ea6a673d6d6766be4ea1bb9518449e0c6a22b69 100644 Binary files a/dosepsbin.tar.xz and b/dosepsbin.tar.xz differ diff --git a/dtl.doc.tar.xz b/dtl.doc.tar.xz index 724124be2dda6d9887701ea4a72ae5b8c65d6b63..38eee1c25e2ddf93a1a8d6942d9e6452f32042d8 100644 Binary files a/dtl.doc.tar.xz and b/dtl.doc.tar.xz differ diff --git a/dtl.tar.xz b/dtl.tar.xz index 1149ed68b4342eab21bba66325e368ff16235c6b..b75bbe933f7c6325655ff7c5e3a0660c0ffbc5f5 100644 Binary files a/dtl.tar.xz and b/dtl.tar.xz differ diff --git a/dtxgen.doc.tar.xz b/dtxgen.doc.tar.xz index 0128a2be2dd2e5f171339d38da6e211b4218daac..49b63d1a19ddd64173c4cecc8793b974524d1050 100644 Binary files a/dtxgen.doc.tar.xz and b/dtxgen.doc.tar.xz differ diff --git a/dtxgen.tar.xz b/dtxgen.tar.xz index 06330f8b9fcc6fb0a3ae56c88584c9a0c4a96719..45f431ff2f085efc6de9e7e07b630699c9fef7a8 100644 Binary files a/dtxgen.tar.xz and b/dtxgen.tar.xz differ diff --git a/dvi2tty.doc.tar.xz b/dvi2tty.doc.tar.xz index 0b9156612f3f7eaf1c66167dd5d29ff6c7fa4315..4fe92bad3eaaf2739cb6198e7907b8731a1680d4 100644 Binary files a/dvi2tty.doc.tar.xz and b/dvi2tty.doc.tar.xz differ diff --git a/dvi2tty.tar.xz b/dvi2tty.tar.xz index 14c961618a46e55ae90ae85bf5464af6101dd440..ba1b0d02c39dcb367e0c3e26abb8e4f7ab05a542 100644 Binary files a/dvi2tty.tar.xz and b/dvi2tty.tar.xz differ diff --git a/dviasm.doc.tar.xz b/dviasm.doc.tar.xz index e6ad692301e7a5275af6cc57e96f9a2c3980fb5a..42d5b566ccb2f9686d3a2f49e6b91c551652ab8f 100644 Binary files a/dviasm.doc.tar.xz and b/dviasm.doc.tar.xz differ diff --git a/dviasm.tar.xz b/dviasm.tar.xz index bfbc25aa2e3e43ff157b25c04ddd06df8c0cd67d..bad8b2ceffe21e10cadd5b9cc31d4a70b038ba1a 100644 Binary files a/dviasm.tar.xz and b/dviasm.tar.xz differ diff --git a/dvicopy.doc.tar.xz b/dvicopy.doc.tar.xz index cfb1b2bd56af56f2f0e80bfc1e7421edce5535aa..4a491d0f4be00f671674a12ec2833d11dc39663f 100644 Binary files a/dvicopy.doc.tar.xz and b/dvicopy.doc.tar.xz differ diff --git a/dvicopy.tar.xz b/dvicopy.tar.xz index bcb42caaa8acf9a691029a65acd531b82ae3ad60..fb0952d52422b9241da1e4b461af6d463a9e0f12 100644 Binary files a/dvicopy.tar.xz and b/dvicopy.tar.xz differ diff --git a/dvidvi.doc.tar.xz b/dvidvi.doc.tar.xz index cedbe92bdffbb43f0170fcdb820f15306026f905..5c23cf206eebdbe1066bed6bb3b53d8ac3679cda 100644 Binary files a/dvidvi.doc.tar.xz and b/dvidvi.doc.tar.xz differ diff --git a/dvidvi.tar.xz b/dvidvi.tar.xz index b060b0542bed3ad97311ec2aa0baa09b992311dc..b14d9e15a96e43ca698ffd0726bc5fbe05ba57ea 100644 Binary files a/dvidvi.tar.xz and b/dvidvi.tar.xz differ diff --git a/dviinfox.doc.tar.xz b/dviinfox.doc.tar.xz index 8d29c01d68202d782e6ec632d5156588a220cca5..a19f737bed3773ce6b7023a7d0e5aae5f2dce294 100644 Binary files a/dviinfox.doc.tar.xz and b/dviinfox.doc.tar.xz differ diff --git a/dviinfox.tar.xz b/dviinfox.tar.xz index f79536e8e3b45941227401e9903896782184ba1d..5aab8a4fdce63752cdf9013fc9f018d9e077dff8 100644 Binary files a/dviinfox.tar.xz and b/dviinfox.tar.xz differ diff --git a/dviljk.doc.tar.xz b/dviljk.doc.tar.xz index be2e4ce6d793d00e86e75ccfe511b5eaea92ced9..d609f6825ccfd107f220793e5966c0c947ccfbab 100644 Binary files a/dviljk.doc.tar.xz and b/dviljk.doc.tar.xz differ diff --git a/dviljk.tar.xz b/dviljk.tar.xz index 79cfef108a0cf2eb377bbca090c64307c3cfb249..e59378b0a46dc606958f352d03e56f743c1984c1 100644 Binary files a/dviljk.tar.xz and b/dviljk.tar.xz differ diff --git a/dviout-util.doc.tar.xz b/dviout-util.doc.tar.xz index 6d18cc6e055db1020ac34c548713f57e05d5e942..09931855afbb3e5854c771d7a95e41b5f900d3be 100644 Binary files a/dviout-util.doc.tar.xz and b/dviout-util.doc.tar.xz differ diff --git a/dvipdfmx.doc.tar.xz b/dvipdfmx.doc.tar.xz index c00465dd0b695166236da05c65425ce07ee109ee..521014766337c95082fc1707b0dcc30573129a91 100644 Binary files a/dvipdfmx.doc.tar.xz and b/dvipdfmx.doc.tar.xz differ diff --git a/dvipdfmx.tar.xz b/dvipdfmx.tar.xz index 0b1eef2dd35b56e04dba95b5bdd31a875a4934e0..68979cea149d15690729dbd5081789bed81c42ee 100644 Binary files a/dvipdfmx.tar.xz and b/dvipdfmx.tar.xz differ diff --git a/dvipng.doc.tar.xz b/dvipng.doc.tar.xz index cc4cfc29467125ae792ad55550def2c540c433e1..64498a3f3838abf0305594379f333d0023902544 100644 Binary files a/dvipng.doc.tar.xz and b/dvipng.doc.tar.xz differ diff --git a/dvipng.tar.xz b/dvipng.tar.xz index 6ec4e73acd997b6ce4551b7a012c4dc27fb1edbe..6dbf02468dc3078f2b26c0afbfa1de028066c447 100644 Binary files a/dvipng.tar.xz and b/dvipng.tar.xz differ diff --git a/dvipos.doc.tar.xz b/dvipos.doc.tar.xz index 8a2f6e972be3dfa41fd76c568e3c9d4bdd7f0bd0..eaa7ebca80247151597b63e9f9baade5d3ceaab6 100644 Binary files a/dvipos.doc.tar.xz and b/dvipos.doc.tar.xz differ diff --git a/dvipos.tar.xz b/dvipos.tar.xz index e6261e12743afc8e598aa89ccb21d6c8bd575ab4..53771d54e2fb77831372c9809c036b93ad50b94b 100644 Binary files a/dvipos.tar.xz and b/dvipos.tar.xz differ diff --git a/dvips.doc.tar.xz b/dvips.doc.tar.xz index 3a26d566e80bb215c3e2d5278aba5081f1a799e5..48f8a01f35f111971b3cfbcd9ae7ff72e924c5a1 100644 Binary files a/dvips.doc.tar.xz and b/dvips.doc.tar.xz differ diff --git a/dvips.tar.xz b/dvips.tar.xz index e381c4a10af7f29a4e52dc1d2e047737afa13876..e4378fe6cc17df663a14cef3293a105fd8d89606 100644 Binary files a/dvips.tar.xz and b/dvips.tar.xz differ diff --git a/dvisvgm.doc.tar.xz b/dvisvgm.doc.tar.xz index d3e09eebecb2c2f5f976b9b8562eef370fb84cfb..676c306c932c46633a6e5dc2c0c59f30a98aa64a 100644 Binary files a/dvisvgm.doc.tar.xz and b/dvisvgm.doc.tar.xz differ diff --git a/dvisvgm.tar.xz b/dvisvgm.tar.xz index 69fc384c145fa003199df0b0afdf611efbb7089c..dd6b4cad324ffceae8bca80b1488915353f475b6 100644 Binary files a/dvisvgm.tar.xz and b/dvisvgm.tar.xz differ diff --git a/ebong.doc.tar.xz b/ebong.doc.tar.xz index 71de1790185a797e843e118cde2cbed0c7737bb1..f2ff10af9d226071314889016bdedca73cdd750e 100644 Binary files a/ebong.doc.tar.xz and b/ebong.doc.tar.xz differ diff --git a/ebong.tar.xz b/ebong.tar.xz index c99eb0131612075a90c8a27e1ace7784b105b098..89c7a76be167630a2a69aada23b3bcd30f1f92eb 100644 Binary files a/ebong.tar.xz and b/ebong.tar.xz differ diff --git a/eplain.doc.tar.xz b/eplain.doc.tar.xz index 982c9a44b09a89c7b68b5be5b3f71561bfb71064..c355eb2324a4908d1da318bc2b96075f9cedd074 100644 Binary files a/eplain.doc.tar.xz and b/eplain.doc.tar.xz differ diff --git a/eplain.tar.xz b/eplain.tar.xz index e8654f0e3581fc6df55498b50ea413f1b315c23f..f40484d31f119b5565880ffb0246b260f6a1a024 100644 Binary files a/eplain.tar.xz and b/eplain.tar.xz differ diff --git a/epspdf.doc.tar.xz b/epspdf.doc.tar.xz index 6522a8a282be8199cbf24db7cf799ede0864ef66..c7b9d2b30eec68f4e9ae2c428c5f07fff73a5802 100644 Binary files a/epspdf.doc.tar.xz and b/epspdf.doc.tar.xz differ diff --git a/epspdf.tar.xz b/epspdf.tar.xz index 4a5f5182583b714edf0afb913a8f98b783ea7359..1916e5f1b2cb9e87ce405e630f1a21b94d55c83d 100644 Binary files a/epspdf.tar.xz and b/epspdf.tar.xz differ diff --git a/epstopdf.doc.tar.xz b/epstopdf.doc.tar.xz index fa9b69054660126c4c981d229d6dbb7e36ff989e..8af26f4bfa91a0a169c919af8cdf0c9d3cf33903 100644 Binary files a/epstopdf.doc.tar.xz and b/epstopdf.doc.tar.xz differ diff --git a/epstopdf.tar.xz b/epstopdf.tar.xz index 95708aedac2edf102863706b30104d030e1fe27a..da52a106c3fd82c69e35364e62a6e3d30a2a55b6 100644 Binary files a/epstopdf.tar.xz and b/epstopdf.tar.xz differ diff --git a/exceltex.doc.tar.xz b/exceltex.doc.tar.xz index 446a9c992ba418db4f7e518346f325f0314a7a5f..27764b7c075b9c16bc8dc8310a6e16fbe7ff8d4a 100644 Binary files a/exceltex.doc.tar.xz and b/exceltex.doc.tar.xz differ diff --git a/exceltex.tar.xz b/exceltex.tar.xz index c574f19d802a3b63ced32cd521a184b923c40a14..3d8925271b6c30b8e47ff12f6838aa6899a5709e 100644 Binary files a/exceltex.tar.xz and b/exceltex.tar.xz differ diff --git a/fig4latex.doc.tar.xz b/fig4latex.doc.tar.xz index 831d8cd88586054796fca5021af28a2f1235a5f9..d54a34194320293400646fd48250a873150e63ed 100644 Binary files a/fig4latex.doc.tar.xz and b/fig4latex.doc.tar.xz differ diff --git a/fig4latex.tar.xz b/fig4latex.tar.xz index bb2a626fee93ebb1d1d72f68d35b913c21f11347..414cdf0b82d173adf218eac18200131f337cdbed 100644 Binary files a/fig4latex.tar.xz and b/fig4latex.tar.xz differ diff --git a/findhyph.doc.tar.xz b/findhyph.doc.tar.xz index 9f2dd870cf2ccc7e3a075fdc4c08cca71eee16b9..d53063cd9ac492bb2bdc578954e72f694fc57cee 100644 Binary files a/findhyph.doc.tar.xz and b/findhyph.doc.tar.xz differ diff --git a/findhyph.tar.xz b/findhyph.tar.xz index 8d6945b44a631e9081dcd4946c0d38a23e7a43a7..35aecd8a586d468f7c1a21cf94cda556a6d35b79 100644 Binary files a/findhyph.tar.xz and b/findhyph.tar.xz differ diff --git a/fontinst.doc.tar.xz b/fontinst.doc.tar.xz index f913a00277bb739e6b23cc5085b8191089920656..dc9d056aaad4203fa4d77c795d384816853cb35e 100644 Binary files a/fontinst.doc.tar.xz and b/fontinst.doc.tar.xz differ diff --git a/fontinst.tar.xz b/fontinst.tar.xz index e90640d64935e838166e4960f7ed9b06f085c7f2..87a6055055e31ab3c82ff19493ff2c3422d369ad 100644 Binary files a/fontinst.tar.xz and b/fontinst.tar.xz differ diff --git a/fontools.doc.tar.xz b/fontools.doc.tar.xz index 5c4afd53bde96f2ef2b4d1aae77b1495d9baa576..56341a00d768a1961c0e79062d1d4f17a0678cd7 100644 Binary files a/fontools.doc.tar.xz and b/fontools.doc.tar.xz differ diff --git a/fontools.tar.xz b/fontools.tar.xz index 1df94011d3238019217b1ca51bbbcdc3036a3c88..5ba240b08731934a2f61128ddeb40d09bc34dee2 100644 Binary files a/fontools.tar.xz and b/fontools.tar.xz differ diff --git a/fontware.doc.tar.xz b/fontware.doc.tar.xz index b53d23ae098ad4876db3bad0fca5649ab5a51488..5d1c9027176c8ff409ab2dfabc5afec94a186673 100644 Binary files a/fontware.doc.tar.xz and b/fontware.doc.tar.xz differ diff --git a/fragmaster.doc.tar.xz b/fragmaster.doc.tar.xz index 467d8fe8586b3996eac35fec768e1fc1d7e9a995..8a29b3edaf9c4b6c8509cf0be91a34145c1c6964 100644 Binary files a/fragmaster.doc.tar.xz and b/fragmaster.doc.tar.xz differ diff --git a/fragmaster.tar.xz b/fragmaster.tar.xz index 55c6ff815eb18794e4314c20c405446c2c6d2a03..c81b2f373befffc3d795135a797dc2a731840735 100644 Binary files a/fragmaster.tar.xz and b/fragmaster.tar.xz differ diff --git a/getmap.doc.tar.xz b/getmap.doc.tar.xz index ffc27e9bbd51974b2886e01f7543930b812e2e36..04f7dda3163d79ef509cad670be17da747d84fab 100644 Binary files a/getmap.doc.tar.xz and b/getmap.doc.tar.xz differ diff --git a/getmap.tar.xz b/getmap.tar.xz index 4f1adff079db091452756e1ca79e193d8f88de55..8d460ef5011ad93a0968467ffaa3381b548822d8 100644 Binary files a/getmap.tar.xz and b/getmap.tar.xz differ diff --git a/git-latexdiff.doc.tar.xz b/git-latexdiff.doc.tar.xz index 9047c757d470b520a1b624b87906e2abc711eef2..66d8aa548270456b074c5e9d234e3af3be751de9 100644 Binary files a/git-latexdiff.doc.tar.xz and b/git-latexdiff.doc.tar.xz differ diff --git a/git-latexdiff.tar.xz b/git-latexdiff.tar.xz index d47874b56f7d33e397a39f356c6ee136172ba7a2..0aa7c517d8005586919fefc363b390fb23f8b277 100644 Binary files a/git-latexdiff.tar.xz and b/git-latexdiff.tar.xz differ diff --git a/glossaries.doc.tar.xz b/glossaries.doc.tar.xz index 85173ed693744d091303031aabad7b9f1dd0865a..c51ebd656ee4e019f45ba753bdcce0b82ffb20e9 100644 Binary files a/glossaries.doc.tar.xz and b/glossaries.doc.tar.xz differ diff --git a/glossaries.tar.xz b/glossaries.tar.xz index 281e090b5813473f1ebaca5507324299750bc644..258e837f81b2f47de1d2e7cba90b7c3480669323 100644 Binary files a/glossaries.tar.xz and b/glossaries.tar.xz differ diff --git a/glyphlist.tar.xz b/glyphlist.tar.xz index 0d21543362a67f06e74b3fecd553f96cb994a5c5..5f884e243158c19117478549058ea3511ebcca06 100644 Binary files a/glyphlist.tar.xz and b/glyphlist.tar.xz differ diff --git a/gregoriotex.doc.tar.xz b/gregoriotex.doc.tar.xz index a05c1f9034a150705933d8fc2176f08e92220d2b..61ce1c1492e7633f37b8a986ed33def693f089d9 100644 Binary files a/gregoriotex.doc.tar.xz and b/gregoriotex.doc.tar.xz differ diff --git a/gregoriotex.tar.xz b/gregoriotex.tar.xz index 34bc7a992ff23b3b074431dd592863206406b4f2..cf5ca13e8c61edb55561b86bcbf8ec11d337eddb 100644 Binary files a/gregoriotex.tar.xz and b/gregoriotex.tar.xz differ diff --git a/gsftopk.doc.tar.xz b/gsftopk.doc.tar.xz index e395d7614fddeda92b8ef44bccd63c7ed01d423f..f15c72da9f18d06d7724ef83aa2071f7943ce357 100644 Binary files a/gsftopk.doc.tar.xz and b/gsftopk.doc.tar.xz differ diff --git a/gsftopk.tar.xz b/gsftopk.tar.xz index 3a28ab7cb84b94d8be8d712081e3eb1dbe5a7066..f0d15e5df1c17359c380afebab4e3a201c302f50 100644 Binary files a/gsftopk.tar.xz and b/gsftopk.tar.xz differ diff --git a/hitex.doc.tar.xz b/hitex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..0b43773c2efc81d1ae0f7d22c6663f90be6d6bd7 --- /dev/null +++ b/hitex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b26b4192f4f2cbf9c4f07e9bba987b10a23f1d5b1ac9f03a94e5ed347c595c26 +size 2670656 diff --git a/hitex.tar.xz b/hitex.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..40ddd08766da4a45f2bb44dd07d7dbe224cfc960 --- /dev/null +++ b/hitex.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890d30211910256db9da7a752b354506864ebe6b9fcf794f48acd0d5d64f4510 +size 2964 diff --git a/hyperxmp.doc.tar.xz b/hyperxmp.doc.tar.xz index 899d459a33dec28a4c1e220043f27064362b29d8..8e50a4e545d5fc28facd9d6652ef5edb76926ffd 100644 Binary files a/hyperxmp.doc.tar.xz and b/hyperxmp.doc.tar.xz differ diff --git a/hyperxmp.tar.xz b/hyperxmp.tar.xz index d1c4cd5fea965366ebca70a5170d24c7c808c866..6870205a7f18f86c2256d4029d1495af80c72433 100644 Binary files a/hyperxmp.tar.xz and b/hyperxmp.tar.xz differ diff --git a/installfont.doc.tar.xz b/installfont.doc.tar.xz index c455e12389209db3b3c94f686fa81aa667c74ea5..e726cb92cd172b7c4205a38f873ba06da76e4e42 100644 Binary files a/installfont.doc.tar.xz and b/installfont.doc.tar.xz differ diff --git a/installfont.tar.xz b/installfont.tar.xz index b7e25b3d3895f829b80caf6e13d9ce082251b20c..f62577f04c10ea17d7285c03a20be6db79553f87 100644 Binary files a/installfont.tar.xz and b/installfont.tar.xz differ diff --git a/jadetex.doc.tar.xz b/jadetex.doc.tar.xz index b14d791aac663b0be0b2aeab14dcdbc1e32c5cef..ef5e463063f11606b2827365c25791caab03cbe9 100644 Binary files a/jadetex.doc.tar.xz and b/jadetex.doc.tar.xz differ diff --git a/jadetex.tar.xz b/jadetex.tar.xz index 81d7a390a3c3d04fd0b20a63c4fb6982ec0a8bd5..c3dcfa05deca97b99b64352f8d02f0a0b611706f 100644 Binary files a/jadetex.tar.xz and b/jadetex.tar.xz differ diff --git a/jfmutil.doc.tar.xz b/jfmutil.doc.tar.xz index a26e4663e1f77804aa23d1b40b027e3d30245eb4..65b895c23c07f70059127e0e8d77aefb43503e7f 100644 Binary files a/jfmutil.doc.tar.xz and b/jfmutil.doc.tar.xz differ diff --git a/jfmutil.tar.xz b/jfmutil.tar.xz index b597979f1671fa2f3e88161a388d8fce3601ee6f..ba8fc3179188b14c258ea9f7936eb06216fe6343 100644 Binary files a/jfmutil.tar.xz and b/jfmutil.tar.xz differ diff --git a/ketcindy.doc.tar.xz b/ketcindy.doc.tar.xz index d1564f7c3f12a42ceeb2f481cece5786eb585aca..096a0f5e612a8ef87dc43c9d8dc3c7561bc5b196 100644 Binary files a/ketcindy.doc.tar.xz and b/ketcindy.doc.tar.xz differ diff --git a/ketcindy.tar.xz b/ketcindy.tar.xz index 402f7c6e0cfeb8a13bd21fb7e6b2f2ad4e1eb723..9177f6721b5e16ec5aba134c4b689eee4a6dd1d4 100644 Binary files a/ketcindy.tar.xz and b/ketcindy.tar.xz differ diff --git a/kotex-utils.doc.tar.xz b/kotex-utils.doc.tar.xz index ff8e249e868a6ebed041fb6036c60debd4e73480..1978de1d2d114b772ef457d37061d4dbbb83b47a 100644 Binary files a/kotex-utils.doc.tar.xz and b/kotex-utils.doc.tar.xz differ diff --git a/kotex-utils.tar.xz b/kotex-utils.tar.xz index e8fcedcc37c20a3f802eab9d10a617b892a8946f..14fde75eb4a36748df265ed6b0091f9eaaeb376b 100644 Binary files a/kotex-utils.tar.xz and b/kotex-utils.tar.xz differ diff --git a/kpathsea.doc.tar.xz b/kpathsea.doc.tar.xz index b2e587203a0e3d111544dcd627d511a6df300534..81d4ac1872b30ccadc5f67dd7bc4ebb1b7f80d5c 100644 Binary files a/kpathsea.doc.tar.xz and b/kpathsea.doc.tar.xz differ diff --git a/kpathsea.tar.xz b/kpathsea.tar.xz index 71a2264e945b93af26b3df5b55cde8a338481c88..3767818f0ff9a17601f40d7a9aa4294176296b2b 100644 Binary files a/kpathsea.tar.xz and b/kpathsea.tar.xz differ diff --git a/l3build.doc.tar.xz b/l3build.doc.tar.xz index 55f930036be4cfd03bed937d464886803c5428e3..d14cffb8015247dfe3f1efc04494610b7752f57a 100644 Binary files a/l3build.doc.tar.xz and b/l3build.doc.tar.xz differ diff --git a/l3build.tar.xz b/l3build.tar.xz index 3fb80cc4489f75a8a1461645539f42951a05a305..4079b9d75225c4cfad9c9b5ab7d3b05f5be3682e 100644 Binary files a/l3build.tar.xz and b/l3build.tar.xz differ diff --git a/lacheck.doc.tar.xz b/lacheck.doc.tar.xz index ca85f7312425d4fc4f2936a907dd97cef34823df..709bba00ff448b4d3eff40fb6b6ac86fa47cf334 100644 Binary files a/lacheck.doc.tar.xz and b/lacheck.doc.tar.xz differ diff --git a/latex-git-log.doc.tar.xz b/latex-git-log.doc.tar.xz index f4ac8779bc4cef91b85692d6cc65b28c043aaca5..e6e2328c491ff13756bf25a237d85b7696477dee 100644 Binary files a/latex-git-log.doc.tar.xz and b/latex-git-log.doc.tar.xz differ diff --git a/latex-git-log.tar.xz b/latex-git-log.tar.xz index c3aa49489ea4512d4af774b91c1ece85173e5d20..ff79c0e1ee9bb429baf4bddb71c745ffdb5294e9 100644 Binary files a/latex-git-log.tar.xz and b/latex-git-log.tar.xz differ diff --git a/latex-papersize.doc.tar.xz b/latex-papersize.doc.tar.xz index fbce5c48b3fccf5ec33b72851326202d335eba6f..299cf9f65fd632dc6709b768b4ba1ddcc1dba443 100644 Binary files a/latex-papersize.doc.tar.xz and b/latex-papersize.doc.tar.xz differ diff --git a/latex-papersize.tar.xz b/latex-papersize.tar.xz index c2736e0947c32e1e16a6c861534b259236dc3eed..66239ad445d71fefe481a3831beb2ce78ecf90c2 100644 Binary files a/latex-papersize.tar.xz and b/latex-papersize.tar.xz differ diff --git a/latex.doc.tar.xz b/latex.doc.tar.xz index 18450c9ddccae3543e50c5dba7cec6c87f334972..9be045af19047f80c417c59c4d471c2dbe254494 100644 Binary files a/latex.doc.tar.xz and b/latex.doc.tar.xz differ diff --git a/latex.tar.xz b/latex.tar.xz index 905fa1cfdfc11c3517430b3aaab47d136a70917e..0915ea01109396bf83c7ee8788988044e168506e 100644 Binary files a/latex.tar.xz and b/latex.tar.xz differ diff --git a/latex2man.doc.tar.xz b/latex2man.doc.tar.xz index bf2de19768975a0d5fe79583ebf3e1b05f01b55d..4265d6210ccb878be81c7d64e176b60ea2341082 100644 Binary files a/latex2man.doc.tar.xz and b/latex2man.doc.tar.xz differ diff --git a/latex2man.tar.xz b/latex2man.tar.xz index a55717dd838ad14efc1d3f11579e659c1d51666b..3de2fd95212fe3231c28dac21275838aacfc9db5 100644 Binary files a/latex2man.tar.xz and b/latex2man.tar.xz differ diff --git a/latex2nemeth.doc.tar.xz b/latex2nemeth.doc.tar.xz index 5f8d82c58bdea0900217ea73003c45495ee1c0e5..13c3400f5728ef3901b25335b985226aa74af225 100644 Binary files a/latex2nemeth.doc.tar.xz and b/latex2nemeth.doc.tar.xz differ diff --git a/latex2nemeth.tar.xz b/latex2nemeth.tar.xz index 3788b61049a098eaa98fd56268fa9b1212738773..a88dee92eab1489c3c7df3a23d02af96cb2d5477 100644 Binary files a/latex2nemeth.tar.xz and b/latex2nemeth.tar.xz differ diff --git a/latexdiff.doc.tar.xz b/latexdiff.doc.tar.xz index 4ed1f9819c8d53d68fd6d6c4773414a804cfabdf..0de917f731336d7a8e0f41e06741ff99f48add72 100644 Binary files a/latexdiff.doc.tar.xz and b/latexdiff.doc.tar.xz differ diff --git a/latexdiff.tar.xz b/latexdiff.tar.xz index b7cc2ba5a03dd0d166f020daf92da71dd86d423e..5e3aa823dbaf3b71fd2c8a9cf7eb63dd73184610 100644 Binary files a/latexdiff.tar.xz and b/latexdiff.tar.xz differ diff --git a/latexfileversion.doc.tar.xz b/latexfileversion.doc.tar.xz index b9aa006c104209613c39a9920c34bfd483c4e42c..d34973bda9e3aa9e5ec3b8ced6de6d992e427911 100644 Binary files a/latexfileversion.doc.tar.xz and b/latexfileversion.doc.tar.xz differ diff --git a/latexfileversion.tar.xz b/latexfileversion.tar.xz index 0afda97f01eddad27e69d5e5aae79ec3a066773e..05015412848eac39bd4fb4e35ef38e23f47b642b 100644 Binary files a/latexfileversion.tar.xz and b/latexfileversion.tar.xz differ diff --git a/latexindent.doc.tar.xz b/latexindent.doc.tar.xz index 47155a64f2fad4a51369f98a1ecdd986e089ca54..2998edd0c330edfc13cd39310edbcf0e237a24f6 100644 Binary files a/latexindent.doc.tar.xz and b/latexindent.doc.tar.xz differ diff --git a/latexindent.tar.xz b/latexindent.tar.xz index 1a117fff0e1c50f583e352725d3f2cd320a34788..b280af56d1efc4704409167109b410a7766bc3f0 100644 Binary files a/latexindent.tar.xz and b/latexindent.tar.xz differ diff --git a/latexpand.doc.tar.xz b/latexpand.doc.tar.xz index 12ce0f02590fd17040d2e9c8157962f3aa0474eb..7244e6994116f54b8c90757042552d589eab3ba6 100644 Binary files a/latexpand.doc.tar.xz and b/latexpand.doc.tar.xz differ diff --git a/latexpand.tar.xz b/latexpand.tar.xz index 6c1f54e24f9101c5cf72b042e4da1404b45d2481..4cb972d98c43272cf316a8a07c9337e76bc377ba 100644 Binary files a/latexpand.tar.xz and b/latexpand.tar.xz differ diff --git a/lcdftypetools.doc.tar.xz b/lcdftypetools.doc.tar.xz index 55ccb1f51b2cb529de426393750e2a78487906d7..4e9ba5be6006bd08c8b3e8a30330661fba8130f1 100644 Binary files a/lcdftypetools.doc.tar.xz and b/lcdftypetools.doc.tar.xz differ diff --git a/light-latex-make.doc.tar.xz b/light-latex-make.doc.tar.xz index 5e7bfc515b858948957a9c9b0e9415aa69a0c17f..7baf5f353642cb24add6b99b968611312f9d8617 100644 Binary files a/light-latex-make.doc.tar.xz and b/light-latex-make.doc.tar.xz differ diff --git a/light-latex-make.tar.xz b/light-latex-make.tar.xz index ab989817014bc13c99f17c89fb41f4bca3a3aff4..a9257f42d27c98feb1ef0a63a41e3db078e37e39 100644 Binary files a/light-latex-make.tar.xz and b/light-latex-make.tar.xz differ diff --git a/lilyglyphs.doc.tar.xz b/lilyglyphs.doc.tar.xz index b2ec9cf3fb16396ed748e6c315a1320d5baedc1b..78030a86b4319e29c592b395c553c6406a4686b5 100644 Binary files a/lilyglyphs.doc.tar.xz and b/lilyglyphs.doc.tar.xz differ diff --git a/lilyglyphs.tar.xz b/lilyglyphs.tar.xz index f3d88c9e63665cff236582103ba9077dc008655d..59e1076548d205eef3ecfe8e49cb6583fe90afb6 100644 Binary files a/lilyglyphs.tar.xz and b/lilyglyphs.tar.xz differ diff --git a/listbib.doc.tar.xz b/listbib.doc.tar.xz index 0911ec7ed91154945bb35111cd041208254be6b0..0b44c558fc98f4e5feaffc3e6d73eec6e70cc92b 100644 Binary files a/listbib.doc.tar.xz and b/listbib.doc.tar.xz differ diff --git a/listbib.tar.xz b/listbib.tar.xz index be34578a69860bbc315c7f81a3d7994a3945d4b3..35bfe5c5f203fe59da7c8cca78aa0457a6cfa6fa 100644 Binary files a/listbib.tar.xz and b/listbib.tar.xz differ diff --git a/listings-ext.doc.tar.xz b/listings-ext.doc.tar.xz index 1e0fc73d9a090ac25c8269d2c809e6f991a89db2..148f03e7856179761294eeef19d69ed863bbf989 100644 Binary files a/listings-ext.doc.tar.xz and b/listings-ext.doc.tar.xz differ diff --git a/listings-ext.tar.xz b/listings-ext.tar.xz index 8a5d83cd60d8618e5a333c7cd62d5907a33c3edf..5fd5bb4fa3e5c15539c188c1c51e59d82e868f33 100644 Binary files a/listings-ext.tar.xz and b/listings-ext.tar.xz differ diff --git a/lollipop.doc.tar.xz b/lollipop.doc.tar.xz index 697613ab9a05a1bbc9d8acfdb8517381dcde8573..9430bc8a01a27c6d6a62ddfb5594695700b4b20a 100644 Binary files a/lollipop.doc.tar.xz and b/lollipop.doc.tar.xz differ diff --git a/lollipop.tar.xz b/lollipop.tar.xz index dc24f001bbf578891246c5517322cd2ff3b1da79..4fc02786ea4f5d283575b29b91a01e2473023b11 100644 Binary files a/lollipop.tar.xz and b/lollipop.tar.xz differ diff --git a/ltxfileinfo.doc.tar.xz b/ltxfileinfo.doc.tar.xz index ce013d5324d301833fb65612fbbfcc2d82516c23..e021dbedda9216f28b3487db41678375f1272db7 100644 Binary files a/ltxfileinfo.doc.tar.xz and b/ltxfileinfo.doc.tar.xz differ diff --git a/ltxfileinfo.tar.xz b/ltxfileinfo.tar.xz index 66616e7548e73086808708c25bd72c21548d39d7..edb279026b26a04115e8ac7f73da0817e633d749 100644 Binary files a/ltxfileinfo.tar.xz and b/ltxfileinfo.tar.xz differ diff --git a/ltximg.doc.tar.xz b/ltximg.doc.tar.xz index 4ade5b232902deda740e50f64430add8980bd403..3a512e2b6dd85d62b6380ba8ea37cb09a04f7a7d 100644 Binary files a/ltximg.doc.tar.xz and b/ltximg.doc.tar.xz differ diff --git a/ltximg.tar.xz b/ltximg.tar.xz index 80b0412924ee56ff79e34e75d91518c0e5749fd3..d89a94c08cbfc822e939c07511d069d7e26c1c6c 100644 Binary files a/ltximg.tar.xz and b/ltximg.tar.xz differ diff --git a/luafindfont.doc.tar.xz b/luafindfont.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..996393700f12c5de86f2655c1c2504f057f9ca4e --- /dev/null +++ b/luafindfont.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f08ebf77b6f621a5688bf31c2e22c44f76ccbd8745b22196cfb7b2cba55a294 +size 124356 diff --git a/luahbtex.doc.tar.xz b/luahbtex.doc.tar.xz index ed060183c9847da1ca734e69d60af52a8e29f74d..100e49ee89a709c5d2bb7555c7b0290fa9304534 100644 Binary files a/luahbtex.doc.tar.xz and b/luahbtex.doc.tar.xz differ diff --git a/luahbtex.tar.xz b/luahbtex.tar.xz index b5b80ce5d8154db39f9b696657e34d85c13ded8e..9adff9b991c20b2a3f88887381eb920450f26427 100644 Binary files a/luahbtex.tar.xz and b/luahbtex.tar.xz differ diff --git a/luajittex.doc.tar.xz b/luajittex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..3aef0a8c409f5ba3da7462346270d52e721d0860 --- /dev/null +++ b/luajittex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55e0159590303e277f96aaed68e5d7eeb11b95affe8b079dc26ca7fc23dd52b6 +size 30360 diff --git a/luaotfload.doc.tar.xz b/luaotfload.doc.tar.xz index cf6498a259c4b80a8079fc3bcc3614832421a125..bd44816b9acc59453370062f84031c2e7b09d2dc 100644 Binary files a/luaotfload.doc.tar.xz and b/luaotfload.doc.tar.xz differ diff --git a/luaotfload.tar.xz b/luaotfload.tar.xz index b4d7cc7b2e9a64dcefea5db4145378c342ce397c..f278a5369079227b797852c919ae12c10b39ba1b 100644 Binary files a/luaotfload.tar.xz and b/luaotfload.tar.xz differ diff --git a/luatex.doc.tar.xz b/luatex.doc.tar.xz index d22e521347dc0c3d7efdcddac14805e838251311..ceebd1bc907a2d26b15a3ed82b837b4104d5f3b2 100644 Binary files a/luatex.doc.tar.xz and b/luatex.doc.tar.xz differ diff --git a/luatex.tar.xz b/luatex.tar.xz index 5c119c3581675a6c2b442428dc50e6ea0fe312be..3a4a364a7340bae2e6066aa3e460300d863bab84 100644 Binary files a/luatex.tar.xz and b/luatex.tar.xz differ diff --git a/lwarp.doc.tar.xz b/lwarp.doc.tar.xz index 412ee1a5af22b95e07a75a1c78c1393ec4473f30..66c5d26545c28e5b0cf25d3ce2b7b3b2128ba4f7 100644 Binary files a/lwarp.doc.tar.xz and b/lwarp.doc.tar.xz differ diff --git a/lwarp.tar.xz b/lwarp.tar.xz index 74469a6222b273930616c7cc677c168765564ea6..73c484dfdd76205855b1d127d10bb5e15aaf96e8 100644 Binary files a/lwarp.tar.xz and b/lwarp.tar.xz differ diff --git a/lyluatex.doc.tar.xz b/lyluatex.doc.tar.xz index bb359487825e8bfdfd886234d067013ef9873fdf..71b8eb676e1116de9997a781c2aa8d0b87bf6da7 100644 Binary files a/lyluatex.doc.tar.xz and b/lyluatex.doc.tar.xz differ diff --git a/lyluatex.tar.xz b/lyluatex.tar.xz index 6ded5def584237c3d3c031e62bbe99b9d64bf1ce..8f97520e968c625851289c16b061a070335236e5 100644 Binary files a/lyluatex.tar.xz and b/lyluatex.tar.xz differ diff --git a/m-tx.doc.tar.xz b/m-tx.doc.tar.xz index edabbe312ac8f62792003b7423d46162b2da9f66..ef262f777d940ff0cc7c5eb5c8afa16349f3b1c0 100644 Binary files a/m-tx.doc.tar.xz and b/m-tx.doc.tar.xz differ diff --git a/m-tx.tar.xz b/m-tx.tar.xz index e2a5dcbc127d348452405ff585b5be948c62c145..b721d1b60dd311f557e9bebebe2f2fd2b8bcb6b6 100644 Binary files a/m-tx.tar.xz and b/m-tx.tar.xz differ diff --git a/make4ht.doc.tar.xz b/make4ht.doc.tar.xz index b9aa9dcaba55c9240992df33950a46a1b4fe9eec..ce35385cb4467c27bebb7d614f329235a8ca0487 100644 Binary files a/make4ht.doc.tar.xz and b/make4ht.doc.tar.xz differ diff --git a/make4ht.tar.xz b/make4ht.tar.xz index 56abaa54385b9adb3ee5cb142acbfdcde60e115f..339e8fdee9a51bece806c4419fc7fc293edfad0b 100644 Binary files a/make4ht.tar.xz and b/make4ht.tar.xz differ diff --git a/makedtx.doc.tar.xz b/makedtx.doc.tar.xz index cc729f3b688e6bb41c5ef299998cfa020db6ca0f..60132322952a5d245eaaceed2ea2b089e772ce84 100644 Binary files a/makedtx.doc.tar.xz and b/makedtx.doc.tar.xz differ diff --git a/makedtx.tar.xz b/makedtx.tar.xz index 6a209c539afd7a33e5e071864ea515dd1a21b593..f9cadb9775901ded6ca5f16f94adcbed59570157 100644 Binary files a/makedtx.tar.xz and b/makedtx.tar.xz differ diff --git a/makeindex.doc.tar.xz b/makeindex.doc.tar.xz index cb5b98a3441aec3350a9b379d4efe791611e06d4..87298138d806db7dab0b72c043515a319bd0fea7 100644 Binary files a/makeindex.doc.tar.xz and b/makeindex.doc.tar.xz differ diff --git a/makeindex.tar.xz b/makeindex.tar.xz index a65506c1bed05a0c7cbfbf8b0c97d279846876c9..1a3b9455112c86774083941f490cb3acc4497ae4 100644 Binary files a/makeindex.tar.xz and b/makeindex.tar.xz differ diff --git a/match_parens.doc.tar.xz b/match_parens.doc.tar.xz index 513a98938be1e4431874f7f3510dbac12efba396..9dc7206aad0fd11ce90292563b1adffd271b105b 100644 Binary files a/match_parens.doc.tar.xz and b/match_parens.doc.tar.xz differ diff --git a/match_parens.tar.xz b/match_parens.tar.xz index 1afc1aa21dc3a8badb32bfe9ed1daf0ae631f99d..771e7dcad2a222a1982833be0ad9090fbcab49e1 100644 Binary files a/match_parens.tar.xz and b/match_parens.tar.xz differ diff --git a/mathspic.doc.tar.xz b/mathspic.doc.tar.xz index 9babda0d9f7aff3e85aa56ebd0642aec2477dc40..f1b6517aa9311f3f0ad3dca6369fdc76e575e1a7 100644 Binary files a/mathspic.doc.tar.xz and b/mathspic.doc.tar.xz differ diff --git a/mathspic.tar.xz b/mathspic.tar.xz index 190669011ee5c043021bb1951411aad87b083b3d..c1f198f41348e3b39425aae0a61ad847dd78878e 100644 Binary files a/mathspic.tar.xz and b/mathspic.tar.xz differ diff --git a/metafont.doc.tar.xz b/metafont.doc.tar.xz index 4fd6e5c1f8471c5d12d2dd22c8bec2de18186258..90be42b341c94e6e47ac1bf319f615f77c63c60c 100644 Binary files a/metafont.doc.tar.xz and b/metafont.doc.tar.xz differ diff --git a/metafont.tar.xz b/metafont.tar.xz index ebeb85b9cf7a9f637cde703cc33fc9a463993ca2..1a321c2f63092e87fa6d73912dbe7db906fe3067 100644 Binary files a/metafont.tar.xz and b/metafont.tar.xz differ diff --git a/metapost.doc.tar.xz b/metapost.doc.tar.xz index 4b9d9bfc34991e65b2234d1b54f6a8bce6fdb144..9af9cca0a188d602aa891fe066a0c04745e0c019 100644 Binary files a/metapost.doc.tar.xz and b/metapost.doc.tar.xz differ diff --git a/metapost.tar.xz b/metapost.tar.xz index 4dc74ea4e0fd9c23d61eaf77875dcb124516b149..d343dd71357d9d259c7e286cd8712ace2372e405 100644 Binary files a/metapost.tar.xz and b/metapost.tar.xz differ diff --git a/mex.doc.tar.xz b/mex.doc.tar.xz index 8851a163090ad0719e7e951d7d05379978f27ba2..79f3da5d11250407b8922f50fb9c0c4301bcd7ea 100644 Binary files a/mex.doc.tar.xz and b/mex.doc.tar.xz differ diff --git a/mex.tar.xz b/mex.tar.xz index 9679ae8a1b08a37a329f448d51c103d012cff9f8..4cb5281bf67fe39ffebae21286403d25f5426a9d 100644 Binary files a/mex.tar.xz and b/mex.tar.xz differ diff --git a/mf2pt1.doc.tar.xz b/mf2pt1.doc.tar.xz index e046e9b1c1b51ff3df73bd1ba76e9bb0dfcc46cc..ea9b7804e6df7b149dade1efb4e08a919f233f89 100644 Binary files a/mf2pt1.doc.tar.xz and b/mf2pt1.doc.tar.xz differ diff --git a/mf2pt1.tar.xz b/mf2pt1.tar.xz index 6c0e1f29b266e0ea99afac80548bc1e0033db0b0..1089466fc9cc7c6306c2e879b36afebef28dcc70 100644 Binary files a/mf2pt1.tar.xz and b/mf2pt1.tar.xz differ diff --git a/mflua.tar.xz b/mflua.tar.xz index 29ea35774d97b0ceee7cae11fbf3759d6555ff20..3fb1360120de5e5eadd6cc3bd49a38523319439d 100644 Binary files a/mflua.tar.xz and b/mflua.tar.xz differ diff --git a/mfware.doc.tar.xz b/mfware.doc.tar.xz index 3e65b9340ec38640dcf471bcd76ed1eda195333b..84aa7743f3da8f8971f75d5e4e9943dbea90e3f2 100644 Binary files a/mfware.doc.tar.xz and b/mfware.doc.tar.xz differ diff --git a/mfware.tar.xz b/mfware.tar.xz index f25af68177842f04f1effba5aaf497debdc5beb4..28f845ace5a21bb603f0d35df8816f9465a215f6 100644 Binary files a/mfware.tar.xz and b/mfware.tar.xz differ diff --git a/mkgrkindex.doc.tar.xz b/mkgrkindex.doc.tar.xz index 48b1f278c4946b2dd276b526d960f678b218817f..1c46ce9b5d315acfb541dc6aad78fbb92121e8ac 100644 Binary files a/mkgrkindex.doc.tar.xz and b/mkgrkindex.doc.tar.xz differ diff --git a/mkgrkindex.tar.xz b/mkgrkindex.tar.xz index 73ba581027560fea7a35b93bce4cf64a1bf90b6a..623ab3192e63d94bf962dd62eab55c1e35d5299d 100644 Binary files a/mkgrkindex.tar.xz and b/mkgrkindex.tar.xz differ diff --git a/mkjobtexmf.doc.tar.xz b/mkjobtexmf.doc.tar.xz index 7198a3793b298ad7b33e4e5ba2a13512032f8b39..a996c072fb288d474b37d3ae02ca0e484d5c933f 100644 Binary files a/mkjobtexmf.doc.tar.xz and b/mkjobtexmf.doc.tar.xz differ diff --git a/mkjobtexmf.tar.xz b/mkjobtexmf.tar.xz index 6cc2715d02012a7ff5e2952082e9a9849ec69735..e7a1fd6ce938f138263efc540adf2d4b802e4302 100644 Binary files a/mkjobtexmf.tar.xz and b/mkjobtexmf.tar.xz differ diff --git a/mkpic.doc.tar.xz b/mkpic.doc.tar.xz index 4cc02fa4ace1ef4d94ff8871c562a2a88ce73a30..1efebc2eca083fc3fc7bfae0a84d11154632e30b 100644 Binary files a/mkpic.doc.tar.xz and b/mkpic.doc.tar.xz differ diff --git a/mkpic.tar.xz b/mkpic.tar.xz index 2129f7e33101750924ca74cc94ac5ecfc581b638..32c19d2740c09a7fa5eec6df21b0fd7605f5da92 100644 Binary files a/mkpic.tar.xz and b/mkpic.tar.xz differ diff --git a/mltex.doc.tar.xz b/mltex.doc.tar.xz index c4d4075d4de1e2a14f71188f2bdd29b5a7a16f63..d19429436c8e0e4782a04951fa723debe7f5760f 100644 Binary files a/mltex.doc.tar.xz and b/mltex.doc.tar.xz differ diff --git a/mltex.tar.xz b/mltex.tar.xz index 4ff019c152e4fe7f743b3f229458422cce902bbd..93988593917c47659c995ba554bb97f2f4f52a62 100644 Binary files a/mltex.tar.xz and b/mltex.tar.xz differ diff --git a/mptopdf.doc.tar.xz b/mptopdf.doc.tar.xz index 8ad45d5d37ec12e4fec8e21484f68dda35e23adf..021ed0abcae403663a33fba4b6686783f438db25 100644 Binary files a/mptopdf.doc.tar.xz and b/mptopdf.doc.tar.xz differ diff --git a/mptopdf.tar.xz b/mptopdf.tar.xz index b515325b758b487635d6aff186e9463efd7f5d0d..89031f797e89fb22ac039a1432fc56d705684b6e 100644 Binary files a/mptopdf.tar.xz and b/mptopdf.tar.xz differ diff --git a/multibibliography.doc.tar.xz b/multibibliography.doc.tar.xz index 70927121f0dde6954189ef1d5749c1ff4a6a6a46..d65d5eade0f7ce93b04983a3a6bb20150ee92ab0 100644 Binary files a/multibibliography.doc.tar.xz and b/multibibliography.doc.tar.xz differ diff --git a/multibibliography.tar.xz b/multibibliography.tar.xz index d68f1738575b3f393ed3d31a541eed94f57c3a90..b5df81461e4a7d31a90e19c030f453526cda2b93 100644 Binary files a/multibibliography.tar.xz and b/multibibliography.tar.xz differ diff --git a/musixtex.doc.tar.xz b/musixtex.doc.tar.xz index df9630af32ee7ba52b3c1b0617a5b0521347d5f3..f941a78389a8ecc2db178fea45983f2b8408dfe0 100644 Binary files a/musixtex.doc.tar.xz and b/musixtex.doc.tar.xz differ diff --git a/musixtex.tar.xz b/musixtex.tar.xz index cbe01393d98b515b3a10253a5f3bcd548d446cde..d9c17be76560ee64e21b81bf6bde3ae0ec1a61b0 100644 Binary files a/musixtex.tar.xz and b/musixtex.tar.xz differ diff --git a/musixtnt.doc.tar.xz b/musixtnt.doc.tar.xz index 27806280c99dfb72b9e4ca6cbd9a61a2355ce10d..2de2a6175ef2881f70c4536fbb15708978ad192e 100644 Binary files a/musixtnt.doc.tar.xz and b/musixtnt.doc.tar.xz differ diff --git a/musixtnt.tar.xz b/musixtnt.tar.xz index cd5d103efe54231db4eb0154206c6dff86ce1e01..83f75b017981469cc2fadf244d9c6592c0c23267 100644 Binary files a/musixtnt.tar.xz and b/musixtnt.tar.xz differ diff --git a/oberdiek.doc.tar.xz b/oberdiek.doc.tar.xz index 048b34951e35d7a61bf25e03700f6a32ebee2074..afeca500df20401660924af71cbb9cfd6a4b1644 100644 Binary files a/oberdiek.doc.tar.xz and b/oberdiek.doc.tar.xz differ diff --git a/oberdiek.tar.xz b/oberdiek.tar.xz index c109dece7475d6fed0246c90266381971eae0e34..a5b118765ca092a139ff5bf9955c20e619c7c6a9 100644 Binary files a/oberdiek.tar.xz and b/oberdiek.tar.xz differ diff --git a/omegaware.doc.tar.xz b/omegaware.doc.tar.xz index 709e520126bf456c8433165158a8178d217546e3..d4ee9866325a8acaf216e824ea0a783e23e39d2e 100644 Binary files a/omegaware.doc.tar.xz and b/omegaware.doc.tar.xz differ diff --git a/optex.doc.tar.xz b/optex.doc.tar.xz index 992e03d2d832f30b8ece3308dee0ea16a9c631b8..dd68befb1ea0fe83405adbde99e02aaae41e4ad9 100644 Binary files a/optex.doc.tar.xz and b/optex.doc.tar.xz differ diff --git a/optex.tar.xz b/optex.tar.xz index 46c42d7b592aa7ad761465af1c1159516c84bed4..3dc41e26a1ca62c9867b89f0a1274d456162ebd9 100644 Binary files a/optex.tar.xz and b/optex.tar.xz differ diff --git a/optexcount.doc.tar.xz b/optexcount.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..e72a2e409d6bd949184702bd39f6ceb2b37d080f --- /dev/null +++ b/optexcount.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:336b56b442838f579a8aa71251d425f5f701b70e503859b3eef78badb36a17dd +size 33964 diff --git a/optexcount.tar.xz b/optexcount.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..6d2c684a10f939454c3dac83c571de8c6b25cdfd --- /dev/null +++ b/optexcount.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3213837fa716496337dd95ce8a7d5ff7cfc1390c196ae3e24b3bed46921d0507 +size 7312 diff --git a/pagelayout.doc.tar.xz b/pagelayout.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..c243edd2797317eb6d48eec88fb2a60d01cbbca0 --- /dev/null +++ b/pagelayout.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4080a240a84fd914368c9f5719c32febf96da8a93856098fdffb78c39502c2b2 +size 4379308 diff --git a/pagelayout.tar.xz b/pagelayout.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..81130a5e8c58da9f7c202a3e8eed418712cc405f --- /dev/null +++ b/pagelayout.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b5f3b32b42f6e34e3632ad43be0b29642114a7b64c7026ec32178f74ceede7 +size 24560 diff --git a/patgen.doc.tar.xz b/patgen.doc.tar.xz index 441779ee39f50a46d9d4ee8bc96b3642c5ff4fbf..7df3114e5850a6c3915e873db1487b5a177e525f 100644 Binary files a/patgen.doc.tar.xz and b/patgen.doc.tar.xz differ diff --git a/patgen.tar.xz b/patgen.tar.xz index 4f421ab4e6b8b5df94d804588451a2f86048e6a8..3d29a8c80c2795ebd1dc3840618b8c16103f0764 100644 Binary files a/patgen.tar.xz and b/patgen.tar.xz differ diff --git a/pax.doc.tar.xz b/pax.doc.tar.xz index 929e31275d79f3a72c93e588e5277d8adcfcc028..c70765f49371c9d2f5e377923101731193de7947 100644 Binary files a/pax.doc.tar.xz and b/pax.doc.tar.xz differ diff --git a/pax.tar.xz b/pax.tar.xz index cc6fadb004b6f03e0e5292c219d5720c5d708a50..93180961164e73c69dd2aed0c2fc6daf6bba9cbd 100644 Binary files a/pax.tar.xz and b/pax.tar.xz differ diff --git a/pdfbook2.doc.tar.xz b/pdfbook2.doc.tar.xz index 7d0bb1eaba42e1c656d59807ffbd594f3a092a86..b92cc2870aacc44bc81c47bf1d131dd8397049a3 100644 Binary files a/pdfbook2.doc.tar.xz and b/pdfbook2.doc.tar.xz differ diff --git a/pdfbook2.tar.xz b/pdfbook2.tar.xz index 651e926fbbaf8de98236db31fdf707e7c3ccc443..edd6e3a3302e6f698d2dc0af236bb6e8730f026c 100644 Binary files a/pdfbook2.tar.xz and b/pdfbook2.tar.xz differ diff --git a/pdfcrop.doc.tar.xz b/pdfcrop.doc.tar.xz index c3269e22bc3f71ceb3a9a811ee6d34e478d49d38..74e9bb448eea0fdac1138788d4eb9057c675fcb5 100644 Binary files a/pdfcrop.doc.tar.xz and b/pdfcrop.doc.tar.xz differ diff --git a/pdfcrop.tar.xz b/pdfcrop.tar.xz index aa584e20e363f5a132c96c50c317e347c4a3c637..27fb9b79da53c112822294f7a7b259ee88c6ae6b 100644 Binary files a/pdfcrop.tar.xz and b/pdfcrop.tar.xz differ diff --git a/pdfjam.doc.tar.xz b/pdfjam.doc.tar.xz index 29aca4f822a35ec5650ba37484c700f1dde04f53..c3b02843722cac8220f599cfb3a5547cd92c60c0 100644 Binary files a/pdfjam.doc.tar.xz and b/pdfjam.doc.tar.xz differ diff --git a/pdfjam.tar.xz b/pdfjam.tar.xz index 0992648c49e01ab002cf22a12f8924c8f1417efd..c22cb4fa6d911071d9c33dfacadf021a6b6c189b 100644 Binary files a/pdfjam.tar.xz and b/pdfjam.tar.xz differ diff --git a/pdflatexpicscale.doc.tar.xz b/pdflatexpicscale.doc.tar.xz index bf68f28b457e23df5d6cd625f6b3c1931261a8fa..6c523f2e9c02399e34c4200f9d864c36947e46de 100644 Binary files a/pdflatexpicscale.doc.tar.xz and b/pdflatexpicscale.doc.tar.xz differ diff --git a/pdflatexpicscale.tar.xz b/pdflatexpicscale.tar.xz index 74febb79b394590636e888edaae21a9382c8bceb..557c20c18e5757c6975ea781be6f7c149b2e7e99 100644 Binary files a/pdflatexpicscale.tar.xz and b/pdflatexpicscale.tar.xz differ diff --git a/pdftex-quiet.doc.tar.xz b/pdftex-quiet.doc.tar.xz index 1197e4ac9ddf19c5f055c6282cd7459aa4db2f3a..2b04a2713a79b8d4c0b4008c678fe295da6ac1de 100644 Binary files a/pdftex-quiet.doc.tar.xz and b/pdftex-quiet.doc.tar.xz differ diff --git a/pdftex-quiet.tar.xz b/pdftex-quiet.tar.xz index 89d53152f9a036979cff0fc7448a32359601812c..e9f3598c8c0bf06b8678e23c6bd448535fe42f03 100644 Binary files a/pdftex-quiet.tar.xz and b/pdftex-quiet.tar.xz differ diff --git a/pdftex.doc.tar.xz b/pdftex.doc.tar.xz index e5ad1f7eaa38d17fa06bdc7bce3660fe83ac102e..e956fa0bf247ec56c841e1a8976eb0634c3b0b02 100644 Binary files a/pdftex.doc.tar.xz and b/pdftex.doc.tar.xz differ diff --git a/pdftex.tar.xz b/pdftex.tar.xz index ca1569d6e71dde4568cf71f02b7a59f11d8bb29a..46ea91ae32003b2ed779f17c280921ca67c448e8 100644 Binary files a/pdftex.tar.xz and b/pdftex.tar.xz differ diff --git a/pdftosrc.doc.tar.xz b/pdftosrc.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..296c093fb395af7a71a7a7779f73457d8138ac1a --- /dev/null +++ b/pdftosrc.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23a084c4dc75678b9e3859a60cdfeb5fb8a03686d44fa8a6d6e01741c9f5e10b +size 23892 diff --git a/pdfxup.doc.tar.xz b/pdfxup.doc.tar.xz index c19f17a81db68b856033b81a9cba85db1e5dbff4..7c74e8be210e8d5bd42724637199b7125bd8a24d 100644 Binary files a/pdfxup.doc.tar.xz and b/pdfxup.doc.tar.xz differ diff --git a/pdfxup.tar.xz b/pdfxup.tar.xz index 6b9588d7ba2291ab335eaba8d5ea22a5e5b45cf4..ba9dbc83b86d2336e30ccd15e7b256d620fc12a8 100644 Binary files a/pdfxup.tar.xz and b/pdfxup.tar.xz differ diff --git a/pedigree-perl.doc.tar.xz b/pedigree-perl.doc.tar.xz index d0958e12a96fad3d7b4b53be76d2b506ccc6332d..05b5b2927ce3af298f106e93779bc4eade379280 100644 Binary files a/pedigree-perl.doc.tar.xz and b/pedigree-perl.doc.tar.xz differ diff --git a/pedigree-perl.tar.xz b/pedigree-perl.tar.xz index 0ae2a16891b6b9fd851fb78bab62c3c580616f2d..1b2a2df4126095a591a61c150e1d0fbfa85aafac 100644 Binary files a/pedigree-perl.tar.xz and b/pedigree-perl.tar.xz differ diff --git a/perltex.doc.tar.xz b/perltex.doc.tar.xz index 8b982ec51b14528232da8bc49c1e40c59b39982a..d49a9404813192a15cde018c9ba1a92421084dfe 100644 Binary files a/perltex.doc.tar.xz and b/perltex.doc.tar.xz differ diff --git a/perltex.tar.xz b/perltex.tar.xz index 303187b627682c4d7fae588750fb8b931cc9c1da..4d9d8a627a37784f7a2438eceabcad165e7a5335 100644 Binary files a/perltex.tar.xz and b/perltex.tar.xz differ diff --git a/petri-nets.doc.tar.xz b/petri-nets.doc.tar.xz index 5bc40adad952f75510452fff77f0391b7580c101..02f9c372340ff7ea5d23fe83f14e0b420072ffb7 100644 Binary files a/petri-nets.doc.tar.xz and b/petri-nets.doc.tar.xz differ diff --git a/petri-nets.tar.xz b/petri-nets.tar.xz index 9dc5cd9b222e3e76ae5a14c14f4ed5a4f2f39827..6165368020f15c943950e07b67ea82455c95fad8 100644 Binary files a/petri-nets.tar.xz and b/petri-nets.tar.xz differ diff --git a/pfarrei.doc.tar.xz b/pfarrei.doc.tar.xz index c4ecb592ab9d1288018e2a790d8e6d4d288afbe7..2206de1e7b13ccc4289f640f8373e9f0cb0ad56d 100644 Binary files a/pfarrei.doc.tar.xz and b/pfarrei.doc.tar.xz differ diff --git a/pfarrei.tar.xz b/pfarrei.tar.xz index df2aa36196d704c9e2de4528fb59831202d80950..3f6ae1ac8a0a7352d418050d89fe8e5d2fbb8fa4 100644 Binary files a/pfarrei.tar.xz and b/pfarrei.tar.xz differ diff --git a/pkfix-helper.doc.tar.xz b/pkfix-helper.doc.tar.xz index ac45cd11de75c513bd54b5f07d41b3d6883a9e45..47a348394a6aece0a206c60655c85e191190b8d9 100644 Binary files a/pkfix-helper.doc.tar.xz and b/pkfix-helper.doc.tar.xz differ diff --git a/pkfix-helper.tar.xz b/pkfix-helper.tar.xz index fa52141d8579c88611d95dffd24b7b0afd43270c..fe4fb60e395f87530842efd370614a95bd82157f 100644 Binary files a/pkfix-helper.tar.xz and b/pkfix-helper.tar.xz differ diff --git a/pkfix.doc.tar.xz b/pkfix.doc.tar.xz index 7bea9489e61442a52abbeaf24cd3944745997f0e..2a5964e0f9d08e908d5a55de7fe70a0170fb2007 100644 Binary files a/pkfix.doc.tar.xz and b/pkfix.doc.tar.xz differ diff --git a/pkfix.tar.xz b/pkfix.tar.xz index b786eefee32e85a05372d972485cfd6b42d0d3d6..c342e4e502105c4faecd31a78eb725e4b054de9d 100644 Binary files a/pkfix.tar.xz and b/pkfix.tar.xz differ diff --git a/pmx.doc.tar.xz b/pmx.doc.tar.xz index d8b518b0c7bad4177d043aa580615065e991d871..025b4bf108f222ae026c590fbcfbe178cc25c48c 100644 Binary files a/pmx.doc.tar.xz and b/pmx.doc.tar.xz differ diff --git a/pmx.tar.xz b/pmx.tar.xz index 764e8ad5513fd1b1616864fa63a25e67ac06ae25..7e65f8de4bc16627133f06a16ecddc43ce50c53e 100644 Binary files a/pmx.tar.xz and b/pmx.tar.xz differ diff --git a/pmxchords.doc.tar.xz b/pmxchords.doc.tar.xz index d7b6160ae40820bb9758628bc597efe8b5dd3aef..50dcc8f0dede326a4651125c162d2e5413dfeecf 100644 Binary files a/pmxchords.doc.tar.xz and b/pmxchords.doc.tar.xz differ diff --git a/pmxchords.tar.xz b/pmxchords.tar.xz index b17ad80dbbf019ac8accd2f0a162a31813bbef17..a616f8d77e9e1c0571ace5927e2b7a7709462a4b 100644 Binary files a/pmxchords.tar.xz and b/pmxchords.tar.xz differ diff --git a/ps2eps.doc.tar.xz b/ps2eps.doc.tar.xz index 17b76f8f8dcc484f1ff22a828b115280a2337ec0..cbdc9e50e033e399e9199e6f8963fd7cd2a7d761 100644 Binary files a/ps2eps.doc.tar.xz and b/ps2eps.doc.tar.xz differ diff --git a/ps2eps.tar.xz b/ps2eps.tar.xz index 509d24c0f9fbb991368071981c12d0f10b7063fa..776619eaeb94b79a5ebd4ceadc90ba2762bedb15 100644 Binary files a/ps2eps.tar.xz and b/ps2eps.tar.xz differ diff --git a/ps2pk.doc.tar.xz b/ps2pk.doc.tar.xz index 0ea64be19bf48388fa1b400de1800300c245aca6..03012cd76b5279976c27c816b70ca51f1e5f67ed 100644 Binary files a/ps2pk.doc.tar.xz and b/ps2pk.doc.tar.xz differ diff --git a/ps2pk.tar.xz b/ps2pk.tar.xz index 72e53768586ccea7e706080846c8276d141d76c2..cfe1fd9d5a56be0f393e53517afa302a3b04287e 100644 Binary files a/ps2pk.tar.xz and b/ps2pk.tar.xz differ diff --git a/pst-pdf.doc.tar.xz b/pst-pdf.doc.tar.xz index 8409fbb84d09f386263080e593bb61c9ac0d7202..18403ecc6835e2f481ca2e99fca5e3d63861bb96 100644 Binary files a/pst-pdf.doc.tar.xz and b/pst-pdf.doc.tar.xz differ diff --git a/pst-pdf.tar.xz b/pst-pdf.tar.xz index d0e99aa395b2cbaa9231a3bf5ba6a212be47af53..79eb16c1651e04beab63888eda18fa8d18ff1bb7 100644 Binary files a/pst-pdf.tar.xz and b/pst-pdf.tar.xz differ diff --git a/pst2pdf.doc.tar.xz b/pst2pdf.doc.tar.xz index 29ff5ecfccc6b02212bb4d51ce2817deaab7a7d9..9ac380d3932ca6b07de25967c67da3a391ef1a05 100644 Binary files a/pst2pdf.doc.tar.xz and b/pst2pdf.doc.tar.xz differ diff --git a/pst2pdf.tar.xz b/pst2pdf.tar.xz index acf20a4c9c10d08ed7f92d49895ae46a5a0f9be9..602779bb47ae008383b7c4f3fd7f8462781d7c93 100644 Binary files a/pst2pdf.tar.xz and b/pst2pdf.tar.xz differ diff --git a/psutils.doc.tar.xz b/psutils.doc.tar.xz index 855e0d71f056a6d173acc5e1f3d61c1b48679c07..210b0c09c5bfa399a73fa596bf2994550d83bf44 100644 Binary files a/psutils.doc.tar.xz and b/psutils.doc.tar.xz differ diff --git a/psutils.tar.xz b/psutils.tar.xz index 1b4723f5c1e00588b28b1c25b240278b5e822443..cb8f4e55f84b2c0c00cd0eee55f3ffc73faaa694 100644 Binary files a/psutils.tar.xz and b/psutils.tar.xz differ diff --git a/ptex-fontmaps.doc.tar.xz b/ptex-fontmaps.doc.tar.xz index 0d14578a1c1404fe17f406899e5b5dc8321be81b..1b2f630caae95ed847f8367d0764e2fa377ca9fe 100644 Binary files a/ptex-fontmaps.doc.tar.xz and b/ptex-fontmaps.doc.tar.xz differ diff --git a/ptex-fontmaps.tar.xz b/ptex-fontmaps.tar.xz index 612d7df3398c4c4c6de8998dd623d09c05b9cf13..0ee4c33dc5ddc86fe0f5cf913335aaa62d3dd19b 100644 Binary files a/ptex-fontmaps.tar.xz and b/ptex-fontmaps.tar.xz differ diff --git a/ptex.doc.tar.xz b/ptex.doc.tar.xz index 69f6773fc8b7d7dcc60c7cad18a873a74bd5ff96..1738d7dce4502731790bb4f65359c1bce69efbdb 100644 Binary files a/ptex.doc.tar.xz and b/ptex.doc.tar.xz differ diff --git a/ptex.tar.xz b/ptex.tar.xz index 88311468d74b46fe6324c9b6da2f921545f8fcdf..9cf3bd39b7ac5579ac02ebdaf83e93f8930873a8 100644 Binary files a/ptex.tar.xz and b/ptex.tar.xz differ diff --git a/ptex2pdf.doc.tar.xz b/ptex2pdf.doc.tar.xz index c72f544cb8f4f21db67778b3b71b9996881c8034..995bec3ce03b72c05e645a7c83f14ebfb0fb982b 100644 Binary files a/ptex2pdf.doc.tar.xz and b/ptex2pdf.doc.tar.xz differ diff --git a/ptex2pdf.tar.xz b/ptex2pdf.tar.xz index b32bbbd2ec54005cbb5a5776be1eb44774ef7be2..cd2d434ce9fbfbc71b8fc2daf11202040d4d4f2c 100644 Binary files a/ptex2pdf.tar.xz and b/ptex2pdf.tar.xz differ diff --git a/purifyeps.doc.tar.xz b/purifyeps.doc.tar.xz index 762eea698bfee45a0f74b1a8d365583b150c1001..9a6955e61b828a82fc7b4f03a854984eafc1ce59 100644 Binary files a/purifyeps.doc.tar.xz and b/purifyeps.doc.tar.xz differ diff --git a/purifyeps.tar.xz b/purifyeps.tar.xz index e369d15bcbda99bfbd853b26165ad0c9b4683c79..9c254422f8ac05a623da3b3718dbeacc04c95072 100644 Binary files a/purifyeps.tar.xz and b/purifyeps.tar.xz differ diff --git a/pygmentex.doc.tar.xz b/pygmentex.doc.tar.xz index 2109b890e708a9464cdcc04ab16bac37bdbdae3c..9cf49a7803cbf0e444e3f812f807caa8ef61ad51 100644 Binary files a/pygmentex.doc.tar.xz and b/pygmentex.doc.tar.xz differ diff --git a/pygmentex.tar.xz b/pygmentex.tar.xz index 7791960926a5112705a6f70b0daf20e164946a77..fab1a0faefb9c6d9e42297fc73d8be43bc6b30c4 100644 Binary files a/pygmentex.tar.xz and b/pygmentex.tar.xz differ diff --git a/pythontex.doc.tar.xz b/pythontex.doc.tar.xz index a8afd516727d850667ca44a3a2d84bc4cf301cc4..c03a116ef065b389c6acec725fff06cb99c1d72f 100644 Binary files a/pythontex.doc.tar.xz and b/pythontex.doc.tar.xz differ diff --git a/pythontex.tar.xz b/pythontex.tar.xz index 21183bc0cd1d8908ee32d6fb9e18dcc88be7b068..47968a832266d4afa936c9f3a6cf723604b9efa6 100644 Binary files a/pythontex.tar.xz and b/pythontex.tar.xz differ diff --git a/reverted-changes-to-Ghostscript-class.patch b/reverted-changes-to-Ghostscript-class.patch deleted file mode 100644 index cc27f5a84ab98e7451fa46d41f10a29c0923f52c..0000000000000000000000000000000000000000 --- a/reverted-changes-to-Ghostscript-class.patch +++ /dev/null @@ -1,62 +0,0 @@ -From d10a3a282c0345ecb08400b83b15c6c73f9335df Mon Sep 17 00:00:00 2001 -From: Martin Gieseking -Date: Tue, 6 Dec 2022 16:26:20 +0100 -Subject: [PATCH] reverted changes to Ghostscript class introduced by - c6d578aea100b28625737942c37ce1269e976dba closes #206 - -Origin: -https://github.com/mgieseki/dvisvgm/commit/d10a3a282c0345ecb08400b83b15c6c73f9335df ---- - texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp | 14 ++------------ - texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp | 4 ++-- - 2 files changed, 4 insertions(+), 14 deletions(-) - -diff --git a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -index 24d2cb8b..3675c5a9 100644 ---- a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -+++ b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.cpp -@@ -130,7 +130,7 @@ static string get_libgs (const string &fname) { - return get_gsdll32(); - #else - // try to find libgs.so.X on the user's system -- const int abi_min=7, abi_max=9; // supported libgs ABI versions -+ const int abi_min=7, abi_max=10; // supported libgs ABI versions - for (int i=abi_max; i >= abi_min; i--) { - #if defined(__CYGWIN__) - string dlname = "cyggs-" + to_string(i) + ".dll"; -@@ -378,19 +378,9 @@ const char* Ghostscript::error_name (int code) { - if (code < 0) - code = -code; - const char *error_names[] = { ERROR_NAMES }; -- if (code == 0 || (size_t)code > sizeof(error_names)/sizeof(error_names[0])) -+ if (code == 0 || size_t(code) > sizeof(error_names)/sizeof(error_names[0])) - return nullptr; --#if defined(HAVE_LIBGS) -- // use array defined in libgs to avoid linking the error strings into the binary -- return gs_error_names[code-1]; --#elif defined(_WIN32) -- // gs_error_names is private in the Ghostscript DLL so we can't access it here - return error_names[code-1]; --#else -- if (auto error_names = loadSymbol("gs_error_names")) -- return error_names[code-1]; -- return nullptr; --#endif - } - - #endif // !DISABLE_GS -diff --git a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -index 9faa63e3..ce3b72fa 100644 ---- a/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -+++ b/texlive-20210325-source/texk/dvisvgm/dvisvgm-src/src/Ghostscript.hpp -@@ -47,8 +47,8 @@ struct Ghostscript { - Ghostscript (int argc, const char **argv, void *caller=0) {} - bool init (int argc, const char **argv, void *caller=0) {return false;} - bool available () {return false;} -- bool revision (gsapi_revision_t *r) {return false;} -- int revision () {return 0;} -+ bool revision (gsapi_revision_t *r) const {return false;} -+ int revision () const {return 0;} - std::string revisionstr () {return "";} - int set_stdio (Stdin in, Stdout out, Stderr err) {return 0;} - int run_string_begin (int user_errors, int *pexit_code) {return 0;} diff --git a/rubik.doc.tar.xz b/rubik.doc.tar.xz index b986bbc36894e1846dd9febc31db8e1ea7664456..03f42ae7f8d323bb55c184645b37a88c3f636ce3 100644 Binary files a/rubik.doc.tar.xz and b/rubik.doc.tar.xz differ diff --git a/rubik.tar.xz b/rubik.tar.xz index 24576869c9b48b1bdc8b2147c51f90de28bfb73f..2cf4dce4b4c3bc48a0205c6d94bb1d0852f8ed32 100644 Binary files a/rubik.tar.xz and b/rubik.tar.xz differ diff --git a/seetexk.doc.tar.xz b/seetexk.doc.tar.xz index c64154d13e701b63f89f70249242666e304bc94a..f63455567ae5df48017dc1efa6e5953817d54726 100644 Binary files a/seetexk.doc.tar.xz and b/seetexk.doc.tar.xz differ diff --git a/seetexk.tar.xz b/seetexk.tar.xz index d7310ede164397d626fb5a97f2a9234be4031257..9d12cf2f0c512de8e3a9133a91603a8beb680b6f 100644 Binary files a/seetexk.tar.xz and b/seetexk.tar.xz differ diff --git a/skip-tests-for-Shift_JIS,EUC-JP-if-conversion-failed.patch b/skip-tests-for-Shift_JIS,EUC-JP-if-conversion-failed.patch new file mode 100644 index 0000000000000000000000000000000000000000..7c400b5d47bc240995ac643e1511d268c4e07c89 --- /dev/null +++ b/skip-tests-for-Shift_JIS,EUC-JP-if-conversion-failed.patch @@ -0,0 +1,462 @@ +From d153e3292061eab90f8f8e9adef76ac9ccca684e Mon Sep 17 00:00:00 2001 +From: Takuji Tanaka +Date: Wed, 29 Mar 2023 12:18:50 +0000 +Subject: [PATCH] (e)(u)ptex: skip tests for Shift_JIS/EUC-JP if conversion + failed + +Refer: https://github.com/TeX-Live/texlive-source/commit/d153e3292061eab90f8f8e9adef76ac9ccca684e + +git-svn-id: svn://tug.org/texlive/trunk/Build/source@66702 c570f23f-e606-0410-a88d-b1316a301751 +--- + source/texk/web2c/ChangeLog | 7 +++++++ + source/texk/web2c/eptexdir/ChangeLog | 7 +++++++ + source/texk/web2c/eptexdir/wcfname.test | 23 ++++++++++++++++++----- + source/texk/web2c/euptexdir/ChangeLog | 7 +++++++ + source/texk/web2c/euptexdir/wcfname.test | 22 +++++++++++++++++----- + source/texk/web2c/pdftexdir/ChangeLog | 5 +++++ + source/texk/web2c/pdftexdir/wcfname.test | 8 ++++++-- + source/texk/web2c/ptexdir/ChangeLog | 7 +++++++ + source/texk/web2c/ptexdir/wcfname.test | 23 ++++++++++++++++++----- + source/texk/web2c/tests/fn-generate.perl | 12 +++++++++++- + source/texk/web2c/uptexdir/ChangeLog | 7 +++++++ + source/texk/web2c/uptexdir/wcfname.test | 22 +++++++++++++++++----- + source/texk/web2c/xetexdir/ChangeLog | 5 +++++ + source/texk/web2c/xetexdir/wcfname.test | 8 ++++++-- + 14 files changed, 138 insertions(+), 25 deletions(-) + +diff --git a/source/texk/web2c/ChangeLog b/source/texk/web2c/ChangeLog +index bda62667c6..a341eb42d7 100644 +--- a/source/texk/web2c/ChangeLog ++++ b/source/texk/web2c/ChangeLog +@@ -1,3 +1,10 @@ ++2023-03-29 TANAKA Takuji ++ ++ * tests/fn-generate.perl: ++ Skip tests for Shift_JIS & EUC-JP if conversion failed. ++ Report from Ken Moffat. ++ https://tug.org/pipermail/tex-k/2023-March/003911.html ++ + 2023-02-14 Hironori Kitagawa + + * tests/fn-generate.perl: +diff --git a/source/texk/web2c/eptexdir/ChangeLog b/source/texk/web2c/eptexdir/ChangeLog +index cb1fd02415..08807a1ed5 100644 +--- a/source/texk/web2c/eptexdir/ChangeLog ++++ b/source/texk/web2c/eptexdir/ChangeLog +@@ -1,3 +1,10 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Skip tests for Shift_JIS & EUC-JP if conversion failed. ++ Report from Ken Moffat. ++ https://tug.org/pipermail/tex-k/2023-March/003911.html ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/eptexdir/wcfname.test b/source/texk/web2c/eptexdir/wcfname.test +index 9fb213a653..7555df6931 100755 +--- a/source/texk/web2c/eptexdir/wcfname.test ++++ b/source/texk/web2c/eptexdir/wcfname.test +@@ -12,20 +12,28 @@ TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=eptests:.; export TEXINPUTS + + for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do +- locale -a | grep $loc ++ locale -a | grep "^$loc\$" + ret=$? ++ # For Slackware linux, we need to replace from utf8 to UTF-8 ++ if [ -f /etc/slackware-version ]; then ++ loc=`echo $loc | sed -e "s/utf8/UTF-8/"` ++ fi + if [ $ret = 0 ]; then + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + break + fi + done +-if [ $ret = 1 ]; then ++if [ $ret != 0 ]; then + # linux musl fails to run `locale -a` but seems to have C.UTF-8 + loc=C.UTF-8 + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + fi + +-perl $srcdir/tests/fn-generate.perl eptests || exit 128 ++perl $srcdir/tests/fn-generate.perl eptests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + + # pTeX internal encoding + fenc="utf8" +@@ -34,12 +42,15 @@ for doc in fn-$fenc fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./eptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >eptests/$doc-$ienc-term.log || rc=1 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex eptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log eptests/ + diff eptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 + + done + done + ++echo "*** skip tests for Shift_JIS & EUC-JP." ++exit 0 ++ + + # pTeX, regacy encoding + for fenc in sjis euc; do +@@ -56,7 +69,7 @@ for doc in fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./eptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >eptests/$doc-$fenc-term.log || rc=3 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex eptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log eptests/ + diff eptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 + + done +diff --git a/source/texk/web2c/euptexdir/ChangeLog b/source/texk/web2c/euptexdir/ChangeLog +index 820b826216..991a051add 100644 +--- a/source/texk/web2c/euptexdir/ChangeLog ++++ b/source/texk/web2c/euptexdir/ChangeLog +@@ -1,3 +1,10 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Skip tests for Shift_JIS & EUC-JP if conversion failed. ++ Report from Ken Moffat. ++ https://tug.org/pipermail/tex-k/2023-March/003911.html ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/euptexdir/wcfname.test b/source/texk/web2c/euptexdir/wcfname.test +index 7d670036f8..a6952999ed 100755 +--- a/source/texk/web2c/euptexdir/wcfname.test ++++ b/source/texk/web2c/euptexdir/wcfname.test +@@ -12,20 +12,27 @@ TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=euptests:.; export TEXINPUTS + + for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do +- locale -a | grep $loc ++ locale -a | grep "^$loc\$" + ret=$? ++ if [ -f /etc/slackware-version ]; then ++ loc=`echo $loc | sed -e "s/utf8/UTF-8/"` ++ fi + if [ $ret = 0 ]; then + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + break + fi + done +-if [ $ret = 1 ]; then ++if [ $ret != 0 ]; then + # linux musl fails to run `locale -a` but seems to have C.UTF-8 + loc=C.UTF-8 + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + fi + +-perl $srcdir/tests/fn-generate.perl euptests || exit 128 ++perl $srcdir/tests/fn-generate.perl euptests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + + # upTeX internal encoding + fenc="utf8" +@@ -49,12 +56,15 @@ for doc in fn-$fenc fnさざ波-$fenc fn£¥µÆÇñß-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./euptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >euptests/$doc-$ienc-term.log || rc=1 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex euptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log euptests/ + diff euptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 + + done + done + ++echo "*** skip tests for Shift_JIS & EUC-JP." ++exit 0 ++ + + # pTeX compatible mode, regacy encoding + for fenc in sjis euc; do +@@ -82,7 +94,7 @@ for doc in fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./euptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >euptests/$doc-$fenc-term.log || rc=3 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex euptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log euptests/ + diff euptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 + + done +diff --git a/source/texk/web2c/pdftexdir/ChangeLog b/source/texk/web2c/pdftexdir/ChangeLog +index f0cee819a9..2900824c63 100644 +--- a/source/texk/web2c/pdftexdir/ChangeLog ++++ b/source/texk/web2c/pdftexdir/ChangeLog +@@ -1,3 +1,8 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Sync with update of fn-generate.perl. ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/pdftexdir/wcfname.test b/source/texk/web2c/pdftexdir/wcfname.test +index ce77beda58..b5c2a7802a 100755 +--- a/source/texk/web2c/pdftexdir/wcfname.test ++++ b/source/texk/web2c/pdftexdir/wcfname.test +@@ -11,7 +11,11 @@ rc=0 + TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=pdftests:.; export TEXINPUTS + +-perl $srcdir/tests/fn-generate.perl pdftests || exit 128 ++perl $srcdir/tests/fn-generate.perl pdftests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + rm -f pdftests/fn*-euc.tex pdftests/fn*-sjis.tex + + if [ "$COMSPEC" != "" ]; then +@@ -25,7 +29,7 @@ for doc in fn-$fenc fn£¥µÆÇñß-$fenc fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc + ./pdftex -ini -interaction nonstopmode -jobname=$doc --shell-escape $doc.tex >pdftests/$doc-term.log || rc=1 +- mv $doc.txt $doc.log fn*-tmp.tex pdftests/ ++ mv $doc.txt $doc.log pdftests/ + ## It does not work. + ## diff pdftests/$doc.txt $srcdir/tests/fn-$enc.txt || rc=2 + +diff --git a/source/texk/web2c/ptexdir/ChangeLog b/source/texk/web2c/ptexdir/ChangeLog +index 6c56a2b041..539efeb1bf 100644 +--- a/source/texk/web2c/ptexdir/ChangeLog ++++ b/source/texk/web2c/ptexdir/ChangeLog +@@ -1,3 +1,10 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Skip tests for Shift_JIS & EUC-JP if conversion failed. ++ Report from Ken Moffat. ++ https://tug.org/pipermail/tex-k/2023-March/003911.html ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/ptexdir/wcfname.test b/source/texk/web2c/ptexdir/wcfname.test +index 957de6f715..734ee3dd40 100755 +--- a/source/texk/web2c/ptexdir/wcfname.test ++++ b/source/texk/web2c/ptexdir/wcfname.test +@@ -12,20 +12,28 @@ TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=ptests:.; export TEXINPUTS + + for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do +- locale -a | grep $loc ++ locale -a | grep "^$loc\$" + ret=$? ++ # For Slackware linux, we need to replace from utf8 to UTF-8 ++ if [ -f /etc/slackware-version ]; then ++ loc=`echo $loc | sed -e "s/utf8/UTF-8/"` ++ fi + if [ $ret = 0 ]; then + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + break + fi + done +-if [ $ret = 1 ]; then ++if [ $ret != 0 ]; then + # linux musl fails to run `locale -a` but seems to have C.UTF-8 + loc=C.UTF-8 + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + fi + +-perl $srcdir/tests/fn-generate.perl ptests || exit 128 ++perl $srcdir/tests/fn-generate.perl ptests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + + # pTeX internal encoding + fenc="utf8" +@@ -34,12 +42,15 @@ for doc in fn-$fenc fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./ptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >ptests/$doc-$ienc-term.log || rc=1 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex ptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log ptests/ + diff ptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 + + done + done + ++echo "*** skip tests for Shift_JIS & EUC-JP." ++exit 0 ++ + + # pTeX, regacy encoding + for fenc in sjis euc; do +@@ -56,7 +69,7 @@ for doc in fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./ptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >ptests/$doc-$fenc-term.log || rc=3 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex ptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log ptests/ + diff ptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 + + done +diff --git a/source/texk/web2c/tests/fn-generate.perl b/source/texk/web2c/tests/fn-generate.perl +index 01503b5c12..0870a2c422 100755 +--- a/source/texk/web2c/tests/fn-generate.perl ++++ b/source/texk/web2c/tests/fn-generate.perl +@@ -8,6 +8,8 @@ + use 5.008; + use Encode; + ++my $st = 0; ++ + foreach $_ () { + chomp; + my ($encname, $fname0, $fname1) = split ' ', $_; +@@ -19,6 +21,8 @@ + print $ofh $src; + } + ++exit($st ? 239 : 0); ++ + + sub make_str ($$;$) { + my ($encname, $fname0, $fname1) = @_; +@@ -60,7 +64,13 @@ END + \\relax\\end + END + +- Encode::from_to($src, 'utf8', $encname) if ($encname !~ /UTF.*8/i); ++ if ($encname !~ /UTF.*8/i) { ++ my $ret = Encode::from_to($src, 'utf8', $encname); ++ if (!$ret) { ++ warn "fn-generate.perl: Encode::from_to() failed.\n"; ++ $st++; ++ } ++ } + return ($src); + + } +diff --git a/source/texk/web2c/uptexdir/ChangeLog b/source/texk/web2c/uptexdir/ChangeLog +index 4cc71a045f..137cffbc72 100644 +--- a/source/texk/web2c/uptexdir/ChangeLog ++++ b/source/texk/web2c/uptexdir/ChangeLog +@@ -1,3 +1,10 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Skip tests for Shift_JIS & EUC-JP if conversion failed. ++ Report from Ken Moffat. ++ https://tug.org/pipermail/tex-k/2023-March/003911.html ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/uptexdir/wcfname.test b/source/texk/web2c/uptexdir/wcfname.test +index deff2ef1fc..c988e1f3e9 100755 +--- a/source/texk/web2c/uptexdir/wcfname.test ++++ b/source/texk/web2c/uptexdir/wcfname.test +@@ -12,20 +12,27 @@ TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=uptests:.; export TEXINPUTS + + for loc in C.UTF-8 C.utf8 en_US.UTF-8 en_US.utf8 ja_JP.UTF-8 ja_JP.utf8; do +- locale -a | grep $loc ++ locale -a | grep "^$loc\$" + ret=$? ++ if [ -f /etc/slackware-version ]; then ++ loc=`echo $loc | sed -e "s/utf8/UTF-8/"` ++ fi + if [ $ret = 0 ]; then + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + break + fi + done +-if [ $ret = 1 ]; then ++if [ $ret != 0 ]; then + # linux musl fails to run `locale -a` but seems to have C.UTF-8 + loc=C.UTF-8 + LC_ALL=$loc; LANGUAGE=$loc; export LC_ALL LANGUAGE + fi + +-perl $srcdir/tests/fn-generate.perl uptests || exit 128 ++perl $srcdir/tests/fn-generate.perl uptests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + + # upTeX internal encoding + fenc="utf8" +@@ -49,12 +56,15 @@ for doc in fn-$fenc fnさざ波-$fenc fn£¥µÆÇñß-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./uptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >uptests/$doc-$ienc-term.log || rc=1 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex uptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log uptests/ + diff uptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=2 + + done + done + ++echo "*** skip tests for Shift_JIS & EUC-JP." ++exit 0 ++ + + # pTeX compatible mode, regacy encoding + for fenc in sjis euc; do +@@ -82,7 +94,7 @@ for doc in fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc ' Internal Encoding:'$ienc + ./uptex -ini -interaction nonstopmode -jobname=$doc-$ienc -kanji=$fenc --kanji-internal=$ienc --shell-escape $doc.tex >uptests/$doc-$fenc-term.log || rc=3 +- mv $doc-$ienc.txt $doc-$ienc.log fn*-tmp.tex uptests/ ++ mv $doc-$ienc.txt $doc-$ienc.log uptests/ + diff uptests/$doc-$ienc.txt $srcdir/tests/fn-$fenc.txt || rc=4 + + done +diff --git a/source/texk/web2c/xetexdir/ChangeLog b/source/texk/web2c/xetexdir/ChangeLog +index b90fb3b913..be5d17862c 100644 +--- a/source/texk/web2c/xetexdir/ChangeLog ++++ b/source/texk/web2c/xetexdir/ChangeLog +@@ -1,3 +1,8 @@ ++2023-03-29 TANAKA Takuji ++ ++ * wcfname.test: ++ Sync with update of fn-generate.perl. ++ + 2023-03-09 Karl Berry + + * TL'23 release. +diff --git a/source/texk/web2c/xetexdir/wcfname.test b/source/texk/web2c/xetexdir/wcfname.test +index 1d151b2951..7cd4bade01 100755 +--- a/source/texk/web2c/xetexdir/wcfname.test ++++ b/source/texk/web2c/xetexdir/wcfname.test +@@ -11,7 +11,11 @@ rc=0 + TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF + TEXINPUTS=xetests:.; export TEXINPUTS + +-perl $srcdir/tests/fn-generate.perl xetests || exit 128 ++perl $srcdir/tests/fn-generate.perl xetests ++pret=$? ++if [ $pret != 0 ] && [ $pret != 239 ]; then ++ exit 128 ++fi + rm -f xetests/fn*-euc.tex xetests/fn*-sjis.tex + + if [ "$COMSPEC" != "" ]; then +@@ -25,7 +29,7 @@ for doc in fn-$fenc fn£¥µÆÇñß-$fenc fnさざ波-$fenc; do + + echo '>>> Document:'$doc ' File Encoding:'$fenc + ./xetex -ini -interaction nonstopmode -jobname=$doc --shell-escape $doc.tex >xetests/$doc-term.log || rc=1 +- mv $doc.txt $doc.log fn*-tmp.tex xetests/ ++ mv $doc.txt $doc.log xetests/ + diff xetests/$doc.txt $srcdir/tests/fn-utf8.txt || rc=2 + + done diff --git a/spix.doc.tar.xz b/spix.doc.tar.xz index cfad0edd632f0990e98a6d1faf6719751fdfc079..65b335e0de6e616d64802567267d09bb8552c008 100644 Binary files a/spix.doc.tar.xz and b/spix.doc.tar.xz differ diff --git a/spix.tar.xz b/spix.tar.xz index cfbd4e4b7a632eb322cd28a33a17b8255cf5da46..8bea09eb100afde5a60b22cb44ecfc75ebde6579 100644 Binary files a/spix.tar.xz and b/spix.tar.xz differ diff --git a/splitindex.doc.tar.xz b/splitindex.doc.tar.xz index 68c12c0ababe6e35acf20f0622ba30f943a1566c..a0c8d3ebd42a94f352cdab70c7ac92d992118aaf 100644 Binary files a/splitindex.doc.tar.xz and b/splitindex.doc.tar.xz differ diff --git a/splitindex.tar.xz b/splitindex.tar.xz index addb529ef2e23bdbe95cff0caa3ce7342e9ea4ea..615e773d953d2c6797eb3ea1fe33004dfac2e4d8 100644 Binary files a/splitindex.tar.xz and b/splitindex.tar.xz differ diff --git a/srcredact.doc.tar.xz b/srcredact.doc.tar.xz index f7f9a0377c9314af6f03429770eb93a3e20966cf..bd181c747b0851cdb960ffc06bd93ad0a8367f32 100644 Binary files a/srcredact.doc.tar.xz and b/srcredact.doc.tar.xz differ diff --git a/srcredact.tar.xz b/srcredact.tar.xz index 85d262de4843b216598479f6692ced1a270c9906..9076bc7730b6098a0c1388cba366d63d8959addb 100644 Binary files a/srcredact.tar.xz and b/srcredact.tar.xz differ diff --git a/sty2dtx.doc.tar.xz b/sty2dtx.doc.tar.xz index b3f90a5150702468d8e19e05206175376b1b1bdd..494fa36867fc6f8e6005650bc7249dfdc7b806b0 100644 Binary files a/sty2dtx.doc.tar.xz and b/sty2dtx.doc.tar.xz differ diff --git a/sty2dtx.tar.xz b/sty2dtx.tar.xz index ce2e3bc4e4f6167af35475bc3c7c5aa00fd1f3e8..59441f1de498f0cd51996332524d1cd5590b94e6 100644 Binary files a/sty2dtx.tar.xz and b/sty2dtx.tar.xz differ diff --git a/svn-multi.doc.tar.xz b/svn-multi.doc.tar.xz index 6beeadc131fab80c8c7d218ee05d72f65a6d1ccf..b0fb42f57119592968efeaf2cb5247f0627dc4fa 100644 Binary files a/svn-multi.doc.tar.xz and b/svn-multi.doc.tar.xz differ diff --git a/svn-multi.tar.xz b/svn-multi.tar.xz index a02db359d558366a34594a93a07a8a4c05121f85..98d5a2371eb481c68adb4a668649850dd7b3711b 100644 Binary files a/svn-multi.tar.xz and b/svn-multi.tar.xz differ diff --git a/synctex.doc.tar.xz b/synctex.doc.tar.xz index edae30c7bd79d1a018186d568dd61ade84c7c64f..63caf226ea8fb1698f3db053b1a3233f9645e56d 100644 Binary files a/synctex.doc.tar.xz and b/synctex.doc.tar.xz differ diff --git a/synctex.tar.xz b/synctex.tar.xz index 0eb93b8b10e9ab116310395a0e892857d4de7261..a5abb714731d2adf90b61bf4cf418672a28f9521 100644 Binary files a/synctex.tar.xz and b/synctex.tar.xz differ diff --git a/tex.doc.tar.xz b/tex.doc.tar.xz index 649e5029d780a031a3e4bed5c28cd40adea91727..df178f01a0a2e15ae7ed24d1aa9828efdfbd126c 100644 Binary files a/tex.doc.tar.xz and b/tex.doc.tar.xz differ diff --git a/tex.tar.xz b/tex.tar.xz index cf2756d44c769a5a14006a74be38ccba82dc75db..f35fd51f01e967c38a828b98298faf163423eddd 100644 Binary files a/tex.tar.xz and b/tex.tar.xz differ diff --git a/tex4ebook.doc.tar.xz b/tex4ebook.doc.tar.xz index ca215d0bb81506997311dbada55da1b337087483..a8e8c1ddf50e04a05ba9cb6b6ac997bded850ebf 100644 Binary files a/tex4ebook.doc.tar.xz and b/tex4ebook.doc.tar.xz differ diff --git a/tex4ebook.tar.xz b/tex4ebook.tar.xz index 5f39606472431d3021a4ae2e7e017bac8cf1dc90..fa480978af4703ed43ad1e644def6f8bc6db7fec 100644 Binary files a/tex4ebook.tar.xz and b/tex4ebook.tar.xz differ diff --git a/tex4ht.doc.tar.xz b/tex4ht.doc.tar.xz index 1fbe1e24cd9c45fb39ccf53f6c96de892a19d049..1a284fc1369c97a0cb6abe2f3c07a781af6f95ac 100644 Binary files a/tex4ht.doc.tar.xz and b/tex4ht.doc.tar.xz differ diff --git a/tex4ht.tar.xz b/tex4ht.tar.xz index 268efe7b7ae3ab1cc03c949253bd7a16eb82ed49..8d9d61153042ffcd04db7347a64929ff0b6ec78a 100644 Binary files a/tex4ht.tar.xz and b/tex4ht.tar.xz differ diff --git a/texaccents.doc.tar.xz b/texaccents.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..9fae1cddb130c8cdf4e1ad2f9203969420ec68e2 --- /dev/null +++ b/texaccents.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:001646c5118879b72fbb4fc908d0b0c06d5bcf5aa592e0ace5c7610d64e41860 +size 68972 diff --git a/texaccents.source.tar.xz b/texaccents.source.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..dd54441ebf2eff5e4c7688f92fe11c35593b6a8d --- /dev/null +++ b/texaccents.source.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8522199382aaf7d0ca74ffa59db5cd238681c6334c67c255e228095999cc36ef +size 2344 diff --git a/texaccents.tar.xz b/texaccents.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..4117c4ab35eda0b53f9e947216dfc9f3365928ff --- /dev/null +++ b/texaccents.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa10592350eeaffbc3c928a2524e007f65bd860397fc94be49db030371627efc +size 4752 diff --git a/texcount.doc.tar.xz b/texcount.doc.tar.xz index 620204c13d1e7194b0583309045f1f0bca69d89b..1b51f92a8b0e2bffdfcab72b489a5a7a6b5879fb 100644 Binary files a/texcount.doc.tar.xz and b/texcount.doc.tar.xz differ diff --git a/texcount.tar.xz b/texcount.tar.xz index 4b0b07e0ff0a8ad8e8afeae0291bea0bbea9a10b..13fb1be69fa6bdaa14f89896361ffb840d46edef 100644 Binary files a/texcount.tar.xz and b/texcount.tar.xz differ diff --git a/texdef.doc.tar.xz b/texdef.doc.tar.xz index 681ca2d5cf0e97ebda7d1bc1446d460a901b1214..bb1313721f3b4ce8404436be27e5c8cc0c92c5f4 100644 Binary files a/texdef.doc.tar.xz and b/texdef.doc.tar.xz differ diff --git a/texdef.tar.xz b/texdef.tar.xz index ea16a81f4f394856946b5d5c133180c469100549..096661969088780e2b636d9b31e679a3ca9b31d9 100644 Binary files a/texdef.tar.xz and b/texdef.tar.xz differ diff --git a/texdiff.doc.tar.xz b/texdiff.doc.tar.xz index 301071577970dcd07a3fcabebfd4377f3f857d84..409fdc590d8832b67d9be16cab652071cdbd016e 100644 Binary files a/texdiff.doc.tar.xz and b/texdiff.doc.tar.xz differ diff --git a/texdiff.tar.xz b/texdiff.tar.xz index 5ad70a6266ce9064e38a9c69a513267a4875489f..b72d43efa4ab58ba47a941a56a85630213671fdb 100644 Binary files a/texdiff.tar.xz and b/texdiff.tar.xz differ diff --git a/texdirflatten.doc.tar.xz b/texdirflatten.doc.tar.xz index c71c5f834ba7b8436cb8aa431d973643e1bfeb50..681b02ea3d63fe58be39ea5c41351aa612244f1a 100644 Binary files a/texdirflatten.doc.tar.xz and b/texdirflatten.doc.tar.xz differ diff --git a/texdirflatten.tar.xz b/texdirflatten.tar.xz index 66119aa7ac162eca5424ee16a95551f0cc82e677..2c385108b2c0c07fe9de53ccb03f60eb245aca52 100644 Binary files a/texdirflatten.tar.xz and b/texdirflatten.tar.xz differ diff --git a/texdoc.doc.tar.xz b/texdoc.doc.tar.xz index 200abc159d81a45ba6d2b758e5a88bbf02271370..113913029c35b69eb88958d7c607b0774fb66b16 100644 Binary files a/texdoc.doc.tar.xz and b/texdoc.doc.tar.xz differ diff --git a/texdoc.tar.xz b/texdoc.tar.xz index 6edcc0755efc2e275431ec7a53274033aefa7981..7cd0c3fd8c551b36d3fef5c7dd3b9b8260f61166 100644 Binary files a/texdoc.tar.xz and b/texdoc.tar.xz differ diff --git a/texdoctk.doc.tar.xz b/texdoctk.doc.tar.xz index 5dce117c345c47f06e09cf890477ae10c7085b39..a7a0d73393a9ee5e7eae8a3ee727834b9cba9dd2 100644 Binary files a/texdoctk.doc.tar.xz and b/texdoctk.doc.tar.xz differ diff --git a/texdoctk.tar.xz b/texdoctk.tar.xz index d13803890fd33980372e622744e45d7748c52492..353a3182202f0e3f14a3928533280cf18831f0aa 100644 Binary files a/texdoctk.tar.xz and b/texdoctk.tar.xz differ diff --git a/texfot.doc.tar.xz b/texfot.doc.tar.xz index 77b8dc4b978092a2a5d68a6c7f0adc53fdbff1c2..bce1a5274555c7fd6c12a1b785970b65ee9b8646 100644 Binary files a/texfot.doc.tar.xz and b/texfot.doc.tar.xz differ diff --git a/texfot.tar.xz b/texfot.tar.xz index e767d29a7d79faf54f799d811313171a72f0a190..679a1fbe1877dfac8f2e2d18311e2bddf36cdf56 100644 Binary files a/texfot.tar.xz and b/texfot.tar.xz differ diff --git a/texlive-2016-kpathsea-texlive-path.patch b/texlive-2016-kpathsea-texlive-path.patch index dc097fda63948f472c26bf509b5ec3fe0b183621..7b32fb282408ff5d84269b98bd972bc1bff5014a 100644 --- a/texlive-2016-kpathsea-texlive-path.patch +++ b/texlive-2016-kpathsea-texlive-path.patch @@ -1,6 +1,6 @@ diff -up source/texk/kpathsea/texmf.cnf.fixme source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.fixme 2016-10-19 15:35:25.804218872 -0400 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2016-10-19 15:37:19.308035612 -0400 +--- source/texk/kpathsea/texmf.cnf.fixme 2016-10-19 15:35:25.804218872 -0400 ++++ source/texk/kpathsea/texmf.cnf 2016-10-19 15:37:19.308035612 -0400 @@ -491,17 +491,17 @@ RUBYINPUTS = .;$TEXMF/scripts/{$progna % TEXMFCNF = {\ diff --git a/texlive-20180414-annocheck.patch b/texlive-20180414-annocheck.patch index 4fa8871f8ecfc718aa5e70de673424cccafc9654..7804a29a3ab6eceda4ceded9adbbe088eb1a5737 100644 --- a/texlive-20180414-annocheck.patch +++ b/texlive-20180414-annocheck.patch @@ -1,5 +1,5 @@ ---- a/texlive-20210325-source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 -+++ a/texlive-20210325-source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 +--- texlive-20180414/source/libs/luajit/Makefile.in.annocheck 2018-01-10 01:37:05.000000000 +0100 ++++ texlive-20180414/source/libs/luajit/Makefile.in 2019-01-11 22:45:34.503080977 +0100 @@ -680,7 +680,7 @@ NEVER_NAMES_LT = -o -name .libs -o -name '*.lo' AM_CPPFLAGS = -I$(srcdir)/$(LUAJIT_TREE)/src $(LUAJIT_DEFINES) -U_FORTIFY_SOURCE diff --git a/texlive-20190410-dvisvgm-fix-libgs-detection.patch b/texlive-20190410-dvisvgm-fix-libgs-detection.patch deleted file mode 100644 index c9159c2432504d89c088ccd488e1c3024dd65f4f..0000000000000000000000000000000000000000 --- a/texlive-20190410-dvisvgm-fix-libgs-detection.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -up texlive-20210325-source/texk/dvisvgm/configure.ac.fix-libgs-detection texlive-20210325-source/texk/dvisvgm/configure.ac ---- a/texlive-20210325-source/texk/dvisvgm/configure.ac.fix-libgs-detection 2019-03-10 14:21:29.000000000 -0400 -+++ a/texlive-20210325-source/texk/dvisvgm/configure.ac 2019-05-23 19:07:30.447057345 -0400 -@@ -66,7 +66,8 @@ AS_IF([test "x$have_libgs" = "xno"], - # Ghostscript not found, check for dlopen - [AC_CHECK_LIB(dl, dlopen,, - [AC_DEFINE(DISABLE_GS, 1, [Set to 1 if PostScript support should be disabled])] -- [AC_MSG_WARN(PostScript support disabled)])]) -+ [AC_MSG_WARN(PostScript support disabled)])], -+ [test "x$have_libgs" = "xyes"], [HAVE_LIBGS=1]) - fi - - if test -z "$HAVE_LIBGS" || test "$HAVE_LIBGS" -eq 0; then -diff -up texlive-20210325-source/texk/dvisvgm/configure.fix-libgs-detection texlive-20210325-source/texk/dvisvgm/configure ---- a/texlive-20210325-source/texk/dvisvgm/configure.fix-libgs-detection 2019-05-23 19:07:45.568703333 -0400 -+++ a/texlive-20210325-source/texk/dvisvgm/configure 2019-05-23 19:09:31.341219687 -0400 -@@ -22013,6 +22013,8 @@ $as_echo "#define DISABLE_GS 1" >>confde - $as_echo "$as_me: WARNING: PostScript support disabled" >&2;} - fi - -+elif test "x$have_libgs" = "xyes"; then : -+ HAVE_LIBGS=1 - fi - fi - diff --git a/texlive-20190410-tlmgr-ignore-warning.patch b/texlive-20190410-tlmgr-ignore-warning.patch index c5d72f72b16b7c661098fa01725f6f948a20c2c2..34636ddd7cc35b3bfb93b397a2df2cb04648524b 100644 --- a/texlive-20190410-tlmgr-ignore-warning.patch +++ b/texlive-20190410-tlmgr-ignore-warning.patch @@ -1,6 +1,6 @@ diff -up ./scripts/texlive/tlmgr.pl.ignore-warning ./scripts/texlive/tlmgr.pl ---- a/texlive-20210325-source/texk/texlive/linked_scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 -+++ a/texlive-20210325-source/texk/texlive/linked_scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 +--- ./scripts/texlive/tlmgr.pl.ignore-warning 2019-05-24 21:35:57.384845754 -0400 ++++ ./scripts/texlive/tlmgr.pl 2019-05-24 21:39:32.703577109 -0400 @@ -231,6 +231,7 @@ my %action_specification = ( "dry-run|n" => 1, "file" => 1, diff --git a/texlive-20200327-poppler-0.90.patch b/texlive-20200327-poppler-0.90.patch new file mode 100644 index 0000000000000000000000000000000000000000..e76b4363737584340935b455c5782f51da63b816 --- /dev/null +++ b/texlive-20200327-poppler-0.90.patch @@ -0,0 +1,20 @@ +diff -up texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler090 2020-07-14 13:13:31.620607263 -0400 ++++ texlive-base-20200327/source/texk/web2c/pdftexdir/pdftoepdf.cc 2020-07-14 13:16:01.530248309 -0400 +@@ -766,7 +766,7 @@ read_pdf_info(char *image_name, char *pa + if (page_name) { + // get page by name + GString name(page_name); +- LinkDest *link = pdf_doc->doc->findDest(&name); ++ std::unique_ptr link = pdf_doc->doc->findDest(&name); + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +@@ -774,7 +774,6 @@ read_pdf_info(char *image_name, char *pa + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +- delete link; + } else { + // get page by number + if (page_num <= 0 || page_num > epdf_num_pages) diff --git a/texlive-20210325-new-poppler.patch b/texlive-20210325-new-poppler.patch new file mode 100644 index 0000000000000000000000000000000000000000..2f5ba719e47e6c282428b431046142c99dcf6db9 --- /dev/null +++ b/texlive-20210325-new-poppler.patch @@ -0,0 +1,578 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 17:39:49.308416042 -0400 +@@ -1,5 +1,5 @@ + /* +-Copyright 1996-2016 Han The Thanh, ++Copyright 1996-2017 Han The Thanh, + + This file is part of pdfTeX. + +@@ -17,6 +17,15 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. A little modifications are made to avoid a crash for ++some kind of pdf images, such as figure_missing.pdf in gnuplot. ++The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -75,31 +84,6 @@ extern integer zround(double); + #define MASK_SUPPRESS_PTEX_PAGENUMBER 0x04 + #define MASK_SUPPRESS_PTEX_INFODICT 0x08 + +-// PdfObject encapsulates the xpdf Object type, +-// and properly frees its resources on destruction. +-// Use obj-> to access members of the Object, +-// and &obj to get a pointer to the object. +-// It is no longer necessary to call Object::free explicitely. +- +-class PdfObject { +- public: +- PdfObject() { // nothing +- } ~PdfObject() { +- iObject.free(); +- } +- Object *operator->() { +- return &iObject; +- } +- Object *operator&() { +- return &iObject; +- } +- private: // no copying or assigning +- PdfObject(const PdfObject &); +- void operator=(const PdfObject &); +- public: +- Object iObject; +-}; +- + // When copying the Resources of the selected page, all objects are copied + // recusively top-down. Indirect objects however are not fetched during + // copying, but get a new object number from pdfTeX and then will be +@@ -203,18 +187,6 @@ static void delete_document(PdfDocument + delete pdf_doc; + } + +-// Replacement for +-// Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } +- +-static void initDictFromDict(PdfObject & obj, Dict * dict) +-{ +- obj->initDict(xref); +- for (int i = 0, l = dict->getLength(); i < l; i++) { +- Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); +- } +-} +- + // -------------------------------------------------------------------- + + static int addEncoding(GfxFont * gfont) +@@ -311,10 +283,10 @@ static void copyName(char *s) + + static void copyDictEntry(Object * obj, int i) + { +- PdfObject obj1; ++ Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj->dictGetValNF(i, &obj1); ++ obj1 = obj->dictGetValNF(i); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -367,17 +339,17 @@ static void copyStream(Stream * str) + static void copyProcSet(Object * obj) + { + int i, l; +- PdfObject procset; ++ Object procset; + if (!obj->isArray()) + pdftex_fail("PDF inclusion: invalid ProcSet array type <%s>", + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &procset); +- if (!procset->isName()) ++ procset = obj->arrayGetNF(i); ++ if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", +- procset->getTypeName()); +- copyName(procset->getName()); ++ procset.getTypeName()); ++ copyName(procset.getName()); + pdf_puts(" "); + } + pdf_puts("]\n"); +@@ -385,10 +357,29 @@ static void copyProcSet(Object * obj) + + #define REPLACE_TYPE1C true + ++static bool embeddableFont(Object * fontdesc) ++{ ++ Object fontfile, ffsubtype; ++ ++ if (!fontdesc->isDict()) ++ return false; ++ fontfile = fontdesc->dictLookup("FontFile"); ++ if (fontfile.isStream()) ++ return true; ++ if (REPLACE_TYPE1C) { ++ fontfile = fontdesc->dictLookup("FontFile3"); ++ if (!fontfile.isStream()) ++ return false; ++ ffsubtype = fontfile.streamGetDict()->lookup("Subtype"); ++ return ffsubtype.isName() && !strcmp(ffsubtype.getName(), "Type1C"); ++ } ++ return false; ++} ++ + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, +- fontfile, ffsubtype, stemV; ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ stemV; + GfxFont *gfont; + fd_entry *fd; + fm_entry *fontmap; +@@ -404,33 +395,39 @@ static void copyFont(char *tag, Object * + } + // Only handle included Type1 (and Type1C) fonts; anything else will be copied. + // Type1C fonts are replaced by Type1 fonts, if REPLACE_TYPE1C is true. +- if (!fixedinclusioncopyfont && fontRef->fetch(xref, &fontdict)->isDict() +- && fontdict->dictLookup("Subtype", &subtype)->isName() +- && !strcmp(subtype->getName(), "Type1") +- && fontdict->dictLookup("BaseFont", &basefont)->isName() +- && fontdict->dictLookupNF("FontDescriptor", &fontdescRef)->isRef() +- && fontdescRef->fetch(xref, &fontdesc)->isDict() +- && (fontdesc->dictLookup("FontFile", &fontfile)->isStream() +- || (REPLACE_TYPE1C +- && fontdesc->dictLookup("FontFile3", &fontfile)->isStream() +- && fontfile->streamGetDict()->lookup("Subtype", +- &ffsubtype)->isName() +- && !strcmp(ffsubtype->getName(), "Type1C"))) +- && (fontmap = lookup_fontmap(basefont->getName())) != NULL) { ++ fontdict = fontRef->fetch(xref); ++ fontdesc = Object(objNull); ++ if (fontdict.isDict()) { ++ subtype = fontdict.dictLookup("Subtype"); ++ basefont = fontdict.dictLookup("BaseFont"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ if (fontdescRef.isRef()) { ++ fontdesc = fontdescRef.fetch(xref); ++ } ++ } ++ if (!fixedinclusioncopyfont && fontdict.isDict() ++ && subtype.isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && basefont.isName() ++ && fontdescRef.isRef() ++ && fontdesc.isDict() ++ && embeddableFont(&fontdesc) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, zround(stemV->getNum())); +- if (fontdesc->dictLookup("CharSet", &charset) && +- charset->isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset->getString()->getCString()); ++ stemV = fontdesc.dictLookup("StemV"); ++ fd = epdf_create_fontdescriptor(fontmap, zround(stemV.getNum())); ++ charset = fontdesc.dictLookup("CharSet"); ++ if (!charset.isNull() && ++ charset.isString() && is_subsetable(fontmap)) ++ epdf_mark_glyphs(fd, charset.getString()->getCString()); + else + embed_whole_font(fd); +- addFontDesc(fontdescRef->getRef(), fd); ++ addFontDesc(fontdescRef.getRef(), fd); + copyName(tag); + gfont = GfxFont::makeFont(xref, tag, fontRef->getRef(), +- fontdict->getDict()); ++ fontdict.getDict()); + pdf_printf(" %d 0 R ", addFont(fontRef->getRef(), fd, + addEncoding(gfont))); + } else { +@@ -442,24 +439,24 @@ static void copyFont(char *tag, Object * + + static void copyFontResources(Object * obj) + { +- PdfObject fontRef; ++ Object fontRef; + int i, l; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid font resources dict type <%s>", + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- obj->dictGetValNF(i, &fontRef); +- if (fontRef->isRef()) ++ fontRef = obj->dictGetValNF(i); ++ if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); +- else if (fontRef->isDict()) { // some programs generate pdf with embedded font object ++ else if (fontRef.isDict()) { // some programs generate pdf with embedded font object + copyName(obj->dictGetKey(i)); + pdf_puts(" "); + copyObject(&fontRef); + } + else + pdftex_fail("PDF inclusion: invalid font in reference type <%s>", +- fontRef->getTypeName()); ++ fontRef.getTypeName()); + } + pdf_puts(">>\n"); + } +@@ -548,7 +545,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -592,8 +589,8 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj->arrayGetNF(i, &obj1); +- if (!obj1->isName()) ++ obj1 = obj->arrayGetNF(i); ++ if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); + } +@@ -603,9 +600,8 @@ static void copyObject(Object * obj) + copyDict(obj); + pdf_puts(">>"); + } else if (obj->isStream()) { +- initDictFromDict(obj1, obj->streamGetDict()); + pdf_puts("<<\n"); +- copyDict(&obj1); ++ copyDict(obj->getStream()->getDictObject()); + pdf_puts(">>\n"); + pdf_puts("stream\n"); + copyStream(obj->getStream()->getUndecodedStream()); +@@ -629,9 +625,8 @@ static void writeRefs() + InObj *r; + for (r = inObjList; r != 0; r = r->next) { + if (!r->written) { +- Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ Object obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (r->type == objFont) { + assert(!obj1.isStream()); + pdfbeginobj(r->num, 2); // \pdfobjcompresslevel = 2 is for this +@@ -647,7 +642,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -805,8 +799,8 @@ void write_epdf(void) + Page *page; + Ref *pageRef; + Dict *pageDict; +- PdfObject contents, obj1, obj2, pageObj, dictObj; +- PdfObject groupDict; ++ Object contents, obj1, obj2, pageObj, dictObj; ++ Object groupDict; + bool writeSepGroup = false; + Object info; + char *key; +@@ -833,8 +827,8 @@ void write_epdf(void) + encodingList = 0; + page = pdf_doc->doc->getCatalog()->getPage(epdf_selected_page); + pageRef = pdf_doc->doc->getCatalog()->getPageRef(epdf_selected_page); +- xref->fetch(pageRef->num, pageRef->gen, &pageObj); +- pageDict = pageObj->getDict(); ++ pageObj = xref->fetch(pageRef->num, pageRef->gen); ++ pageDict = pageObj.getDict(); + rotate = page->getRotate(); + PDFRectangle *pagebox; + // write the Page header +@@ -852,7 +846,7 @@ void write_epdf(void) + pdf_printf("/%s.PageNumber %i\n", pdfkeyprefix, (int) epdf_selected_page); + } + if ((suppress_ptex_info & MASK_SUPPRESS_PTEX_INFODICT) == 0) { +- pdf_doc->doc->getDocInfoNF(&info); ++ info = pdf_doc->doc->getDocInfoNF(); + if (info.isRef()) { + // the info dict must be indirect (PDF Ref p. 61) + pdf_printf("/%s.InfoDict ", pdfkeyprefix); +@@ -908,14 +902,14 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- pageDict->lookupNF("Metadata", &dictObj); +- if (!dictObj->isNull() && !dictObj->isRef()) ++ dictObj = pageDict->lookupNF("Metadata"); ++ if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- pageDict->lookupNF(pageDictKeys[i], &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); + copyObject(&dictObj); // preserves indirection +@@ -923,8 +917,8 @@ void write_epdf(void) + } + + // handle page group +- pageDict->lookupNF("Group", &dictObj); +- if (!dictObj->isNull()) { ++ dictObj = pageDict->lookupNF("Group"); ++ if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the + // same page; copy the Group entry as is. See manual for +@@ -938,11 +932,36 @@ void write_epdf(void) + copyObject(&dictObj); + } else { + // write Group dict as a separate object, since the Page dict also refers to it +- pageDict->lookup("Group", &dictObj); +- if (!dictObj->isDict()) ++ dictObj = pageDict->lookup("Group"); ++ if (!dictObj.isDict()) + pdftex_fail("PDF inclusion: /Group dict missing"); + writeSepGroup = true; +- initDictFromDict(groupDict, page->getGroup()); ++/* ++This part is only a single line ++ groupDict = Object(page->getGroup()); ++in the original patch. In this case, however, pdftex crashes at ++"delete pdf_doc->doc" in "delete_document()" for inclusion of some ++kind of pdf images, for example, figure_missing.pdf in gnuplot. ++A change ++ groupDict = Object(page->getGroup()).copy(); ++does not improve the situation. ++The changes below seem to work fine. ++*/ ++// begin modification ++ groupDict = pageDict->lookup("Group"); ++ const Dict& dic1 = page->getGroup(); ++ const Dict& dic2 = groupDict.getDict(); ++ // replace dic2 in groupDict with dic1 ++ l = dic2.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictRemove(dic2.getKey(i)); ++ } ++ l = dic1.getLength(); ++ for (i = 0; i < l; i++) { ++ groupDict.dictAdd(copyString(dic1.getKey(i)), ++ dic1.getValNF(i)); ++ } ++// end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } +@@ -955,14 +974,14 @@ void write_epdf(void) + pdftex_warn + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { +- initDictFromDict(obj1, page->getResourceDict()); ++ Object *obj1 = page->getResourceDictObject(); + if (!obj1->isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", + obj1->getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); + for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); ++ obj2 = obj1->dictGetVal(i); + key = obj1->dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); +@@ -975,8 +994,8 @@ void write_epdf(void) + } + + // write the page contents +- page->getContents(&contents); +- if (contents->isStream()) { ++ contents = page->getContents(); ++ if (contents.isStream()) { + + // Variant A: get stream and recompress under control + // of \pdfcompresslevel +@@ -987,36 +1006,35 @@ void write_epdf(void) + + // Variant B: copy stream without recompressing + // +- contents->streamGetDict()->lookup("F", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("F"); ++ if (!obj1.isNull()) { + pdftex_fail("PDF inclusion: Unsupported external stream"); + } +- contents->streamGetDict()->lookup("Length", &obj1); +- assert(!obj1->isNull()); ++ obj1 = contents.streamGetDict()->lookup("Length"); ++ assert(!obj1.isNull()); + pdf_puts("/Length "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("Filter", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("Filter"); ++ if (!obj1.isNull()) { + pdf_puts("/Filter "); + copyObject(&obj1); + pdf_puts("\n"); +- contents->streamGetDict()->lookup("DecodeParms", &obj1); +- if (!obj1->isNull()) { ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); ++ if (!obj1.isNull()) { + pdf_puts("/DecodeParms "); + copyObject(&obj1); + pdf_puts("\n"); + } + } + pdf_puts(">>\nstream\n"); +- copyStream(contents->getStream()->getUndecodedStream()); ++ copyStream(contents.getStream()->getUndecodedStream()); + pdfendstream(); +- } else if (contents->isArray()) { ++ } else if (contents.isArray()) { + pdfbeginstream(); +- for (i = 0, l = contents->arrayGetLength(); i < l; ++i) { +- Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { ++ Object contentsobj = contents.arrayGet(i); ++ copyStream(contentsobj.getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.newpoppler 2020-05-14 17:45:48.000000000 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 17:50:38.863177570 -0400 +@@ -16,6 +16,14 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++This is based on the patch texlive-poppler-0.59.patch <2017-09-19> at ++https://git.archlinux.org/svntogit/packages.git/plain/texlive-bin/trunk ++by Arch Linux. The poppler should be 0.59.0 or newer versions. ++POPPLER_VERSION should be defined. ++*/ ++ + #include + + #include +@@ -77,22 +85,20 @@ int main(int argc, char *argv[]) + objgen = atoi(argv[3]); + } + xref = doc->getXRef(); +- catalogDict.initNull(); +- xref->getCatalog(&catalogDict); ++ catalogDict = xref->getCatalog(); + if (!catalogDict.isDict("Catalog")) { + fprintf(stderr, "No Catalog found\n"); + exit(1); + } +- srcStream.initNull(); ++ srcStream = Object(objNull); + if (objnum == 0) { +- catalogDict.dictLookup("SourceObject", &srcStream); ++ srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; + if (!srcStream.isStream(const_SourceFile)) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +- srcName.initNull(); +- srcStream.getStream()->getDict()->lookup("SourceName", &srcName); ++ srcName = srcStream.getStream()->getDict()->lookup("SourceName"); + if (!srcName.isString()) { + fprintf(stderr, "No SourceName found\n"); + exit(1); +@@ -101,7 +107,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -151,26 +157,24 @@ int main(int argc, char *argv[]) + int localOffset = 0; + Guint firstOffset; + +- assert(xref->fetch(e->offset, 0, &objStr)->isStream()); +- nObjects = objStr.streamGetDict()->lookup("N", &obj1)->getInt(); +- obj1.free(); +- first = objStr.streamGetDict()->lookup("First", &obj1)->getInt(); +- obj1.free(); ++ objStr = xref->fetch(e->offset, 0); ++ assert(objStr.isStream()); ++ obj1 = objStr.streamGetDict()->lookup("N"); ++ nObjects = obj1.getInt(); ++ obj1 = objStr.streamGetDict()->lookup("First"); ++ first = obj1.getInt(); + firstOffset = objStr.getStream()->getBaseStream()->getStart() + first; + + // parse the header: object numbers and offsets + objStr.streamReset(); +- obj1.initNull(); +- str = new EmbedStream(objStr.getStream(), &obj1, gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); + lexer = new Lexer(xref, str); + parser = new Parser(xref, lexer, gFalse); + for (n = 0; n < nObjects; ++n) { +- parser->getObj(&obj1); +- parser->getObj(&obj2); ++ obj1 = parser->getObj(); ++ obj2 = parser->getObj(); + if (n == e->gen) + localOffset = obj2.getInt(); +- obj1.free(); +- obj2.free(); + } + #if defined(XPDF304) + while (str->getChar() != EOF) ; +@@ -178,7 +182,6 @@ int main(int argc, char *argv[]) + lexer->skipToEOF(); + #endif + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -189,7 +192,6 @@ int main(int argc, char *argv[]) + s->reset(); + while ((c = s->getChar()) != EOF) + fputc(c, outfile); +- srcStream.free(); + } + if (objnum == 0) + fprintf(stderr, "Source file extracted to %s\n", outname); +@@ -198,7 +200,6 @@ int main(int argc, char *argv[]) + else + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); +- catalogDict.free(); + delete doc; + delete globalParams; + } diff --git a/texlive-20210325-poppler-0.73.patch b/texlive-20210325-poppler-0.73.patch new file mode 100644 index 0000000000000000000000000000000000000000..4b24f295183d43cbc9477acd6eebb14e9d803192 --- /dev/null +++ b/texlive-20210325-poppler-0.73.patch @@ -0,0 +1,200 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-06 18:08:20.143955577 -0400 +@@ -114,7 +114,7 @@ struct UsedEncoding { + + static InObj *inObjList; + static UsedEncoding *encodingList; +-static GBool isInit = gFalse; ++static bool isInit = false; + + // -------------------------------------------------------------------- + // Maintain list of open embedded PDF files +@@ -269,7 +269,7 @@ static int getNewObjectNumber(Ref ref) + + static void copyObject(Object *); + +-static void copyName(char *s) ++static void copyName(const char *s) + { + pdf_puts("/"); + for (; *s != 0; s++) { +@@ -304,7 +304,7 @@ static void copyDict(Object * obj) + static void copyFontDict(Object * obj, InObj * r) + { + int i, l; +- char *key; ++ const char *key; + if (!obj->isDict()) + pdftex_fail("PDF inclusion: invalid dict type <%s>", + obj->getTypeName()); +@@ -376,7 +376,7 @@ static bool embeddableFont(Object * font + return false; + } + +-static void copyFont(char *tag, Object * fontRef) ++static void copyFont(const char *tag, Object * fontRef) + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +@@ -412,7 +412,7 @@ static void copyFont(char *tag, Object * + && fontdescRef.isRef() + && fontdesc.isDict() + && embeddableFont(&fontdesc) +- && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { ++ && (fontmap = lookup_fontmap((char *)basefont.getName())) != NULL) { + // round /StemV value, since the PDF input is a float + // (see Font Descriptors in PDF reference), but we only store an + // integer, since we don't want to change the struct. +@@ -421,7 +421,7 @@ static void copyFont(char *tag, Object * + charset = fontdesc.dictLookup("CharSet"); + if (!charset.isNull() && + charset.isString() && is_subsetable(fontmap)) +- epdf_mark_glyphs(fd, charset.getString()->getCString()); ++ epdf_mark_glyphs(fd, (char *)charset.getString()->c_str()); + else + embed_whole_font(fd); + addFontDesc(fontdescRef.getRef(), fd); +@@ -461,7 +461,7 @@ static void copyFontResources(Object * o + pdf_puts(">>\n"); + } + +-static void copyOtherResources(Object * obj, char *key) ++static void copyOtherResources(Object * obj, const char *key) + { + // copies all other resources (write_epdf handles Fonts and ProcSets), + +@@ -548,8 +548,8 @@ static void copyObject(Object * obj) + Object obj1; + int i, l, c; + Ref ref; +- char *p; +- GString *s; ++ const char *p; ++ const GString *s; + if (obj->isBool()) { + pdf_printf("%s", obj->getBool()? "true" : "false"); + } else if (obj->isInt()) { +@@ -560,7 +560,7 @@ static void copyObject(Object * obj) + pdf_printf("%s", convertNumToPDF(obj->getNum())); + } else if (obj->isString()) { + s = obj->getString(); +- p = s->getCString(); ++ p = s->c_str(); + l = s->getLength(); + if (strlen(p) == (unsigned int) l) { + pdf_puts("("); +@@ -658,7 +658,7 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -673,7 +673,7 @@ static void writeEncodings() + } + + // get the pagebox according to the pagebox_spec +-static PDFRectangle *get_pagebox(Page * page, int pagebox_spec) ++static const PDFRectangle *get_pagebox(Page * page, int pagebox_spec) + { + if (pagebox_spec == pdfboxspecmedia) + return page->getMediaBox(); +@@ -705,13 +705,13 @@ read_pdf_info(char *image_name, char *pa + { + PdfDocument *pdf_doc; + Page *page; +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { + globalParams = new GlobalParams(); +- globalParams->setErrQuiet(gFalse); +- isInit = gTrue; ++ globalParams->setErrQuiet(false); ++ isInit = true; + } + // open PDF file + pdf_doc = find_add_document(image_name); +@@ -803,7 +803,7 @@ void write_epdf(void) + Object groupDict; + bool writeSepGroup = false; + Object info; +- char *key; ++ const char *key; + char s[256]; + int i, l; + int rotate; +@@ -830,7 +830,7 @@ void write_epdf(void) + pageObj = xref->fetch(pageRef->num, pageRef->gen); + pageDict = pageObj.getDict(); + rotate = page->getRotate(); +- PDFRectangle *pagebox; ++ const PDFRectangle *pagebox; + // write the Page header + pdf_puts("/Type /XObject\n"); + pdf_puts("/Subtype /Form\n"); +@@ -958,7 +958,7 @@ The changes below seem to work fine. + } + l = dic1.getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(copyString(dic1.getKey(i)), ++ groupDict.dictAdd(dic1.getKey(i), + dic1.getValNF(i)); + } + // end modification +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.73 2021-05-06 18:01:35.847959461 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:01:35.854959565 -0400 +@@ -103,7 +103,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "No SourceName found\n"); + exit(1); + } +- outname = srcName.getString()->getCString(); ++ outname = (char *)srcName.getString()->c_str(); + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +@@ -112,7 +112,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -122,7 +122,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->getCString()); ++ sprintf(buf, "%s", fileName->c_str()); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); +@@ -155,7 +155,7 @@ int main(int argc, char *argv[]) + Object objStr, obj1, obj2; + int nObjects, first, n; + int localOffset = 0; +- Guint firstOffset; ++ unsigned int firstOffset; + + objStr = xref->fetch(e->offset, 0); + assert(objStr.isStream()); +@@ -167,9 +167,9 @@ int main(int argc, char *argv[]) + + // parse the header: object numbers and offsets + objStr.streamReset(); +- str = new EmbedStream(objStr.getStream(), Object(objNull), gTrue, first); ++ str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); + lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, gFalse); ++ parser = new Parser(xref, lexer, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp.poppler-0.73 texlive-base-20210325/source/texk/web2c/xetexdir/pdfimage.cpp diff --git a/texlive-20210325-poppler-0.84.patch b/texlive-20210325-poppler-0.84.patch new file mode 100644 index 0000000000000000000000000000000000000000..37cb1c39d4255fb11a042be2b259d99e92d42761 --- /dev/null +++ b/texlive-20210325-poppler-0.84.patch @@ -0,0 +1,228 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 11:15:09.572907304 -0400 +@@ -26,6 +26,15 @@ The poppler should be 0.59.0 or newer ve + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -286,7 +295,7 @@ static void copyDictEntry(Object * obj, + Object obj1; + copyName(obj->dictGetKey(i)); + pdf_puts(" "); +- obj1 = obj->dictGetValNF(i); ++ obj1 = obj->dictGetValNF(i).copy(); + copyObject(&obj1); + pdf_puts("\n"); + } +@@ -345,7 +354,7 @@ static void copyProcSet(Object * obj) + obj->getTypeName()); + pdf_puts("/ProcSet [ "); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- procset = obj->arrayGetNF(i); ++ procset = obj->arrayGetNF(i).copy(); + if (!procset.isName()) + pdftex_fail("PDF inclusion: invalid ProcSet entry type <%s>", + procset.getTypeName()); +@@ -400,7 +409,7 @@ static void copyFont(const char *tag, Ob + if (fontdict.isDict()) { + subtype = fontdict.dictLookup("Subtype"); + basefont = fontdict.dictLookup("BaseFont"); +- fontdescRef = fontdict.dictLookupNF("FontDescriptor"); ++ fontdescRef = fontdict.dictLookupNF("FontDescriptor").copy(); + if (fontdescRef.isRef()) { + fontdesc = fontdescRef.fetch(xref); + } +@@ -446,7 +455,7 @@ static void copyFontResources(Object * o + obj->getTypeName()); + pdf_puts("/Font << "); + for (i = 0, l = obj->dictGetLength(); i < l; ++i) { +- fontRef = obj->dictGetValNF(i); ++ fontRef = obj->dictGetValNF(i).copy(); + if (fontRef.isRef()) + copyFont(obj->dictGetKey(i), &fontRef); + else if (fontRef.isDict()) { // some programs generate pdf with embedded font object +@@ -589,7 +598,7 @@ static void copyObject(Object * obj) + } else if (obj->isArray()) { + pdf_puts("["); + for (i = 0, l = obj->arrayGetLength(); i < l; ++i) { +- obj1 = obj->arrayGetNF(i); ++ obj1 = obj->arrayGetNF(i).copy(); + if (!obj1.isName()) + pdf_puts(" "); + copyObject(&obj1); +@@ -709,7 +718,7 @@ read_pdf_info(char *image_name, char *pa + float pdf_version_found, pdf_version_wanted; + // initialize + if (!isInit) { +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + globalParams->setErrQuiet(false); + isInit = true; + } +@@ -742,7 +751,7 @@ read_pdf_info(char *image_name, char *pa + if (link == 0 || !link->isOk()) + pdftex_fail("PDF inclusion: invalid destination <%s>", page_name); + Ref ref = link->getPageRef(); +- page_num = pdf_doc->doc->getCatalog()->findPage(ref.num, ref.gen); ++ page_num = pdf_doc->doc->getCatalog()->findPage(ref); + if (page_num == 0) + pdftex_fail("PDF inclusion: destination is not a page <%s>", + page_name); +@@ -902,13 +911,13 @@ void write_epdf(void) + pdf_puts(stripzeros(s)); + + // Metadata validity check (as a stream it must be indirect) +- dictObj = pageDict->lookupNF("Metadata"); ++ dictObj = pageDict->lookupNF("Metadata").copy(); + if (!dictObj.isNull() && !dictObj.isRef()) + pdftex_warn("PDF inclusion: /Metadata must be indirect object"); + + // copy selected items in Page dictionary except Resources & Group + for (i = 0; pageDictKeys[i] != NULL; i++) { +- dictObj = pageDict->lookupNF(pageDictKeys[i]); ++ dictObj = pageDict->lookupNF(pageDictKeys[i]).copy(); + if (!dictObj.isNull()) { + pdf_newline(); + pdf_printf("/%s ", pageDictKeys[i]); +@@ -917,7 +926,7 @@ void write_epdf(void) + } + + // handle page group +- dictObj = pageDict->lookupNF("Group"); ++ dictObj = pageDict->lookupNF("Group").copy(); + if (!dictObj.isNull()) { + if (pdfpagegroupval == 0) { + // another pdf with page group was included earlier on the +@@ -959,7 +968,7 @@ The changes below seem to work fine. + l = dic1.getLength(); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i)); ++ dic1.getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); +@@ -1089,6 +1098,6 @@ void epdf_check_mem() + delete_document(p); + } + // see above for globalParams +- delete globalParams; ++ globalParams.reset(); + } + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-0.84 2021-05-06 18:21:18.379430999 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-06 18:21:18.383431058 -0400 +@@ -24,6 +24,15 @@ by Arch Linux. The poppler should be 0.5 + POPPLER_VERSION should be defined. + */ + ++#ifdef POPPLER_VERSION ++#include ++#define xpdfVersion POPPLER_VERSION ++#define xpdfString "poppler" ++#else ++#include /* just to get the xpdf version */ ++#define xpdfString "xpdf" ++#endif ++ + #include + + #include +@@ -73,7 +82,7 @@ int main(int argc, char *argv[]) + exit(1); + } + fileName = new GString(argv[1]); +- globalParams = new GlobalParams(); ++ globalParams = std::unique_ptr(new GlobalParams()); + doc = new PDFDoc(fileName); + if (!doc->isOk()) { + fprintf(stderr, "Invalid PDF file\n"); +@@ -94,7 +103,7 @@ int main(int argc, char *argv[]) + if (objnum == 0) { + srcStream = catalogDict.dictLookup("SourceObject"); + static char const_SourceFile[] = "SourceFile"; +- if (!srcStream.isStream(const_SourceFile)) { ++ if (!(srcStream.isStream() && srcStream.getDict()->is(const_SourceFile))) { + fprintf(stderr, "No SourceObject found\n"); + exit(1); + } +@@ -150,7 +159,6 @@ int main(int argc, char *argv[]) + (e->type == xrefEntryFree ? "f" : "n")); + else { // e->offset is the object number of the object stream + Stream *str; +- Lexer *lexer; + Parser *parser; + Object objStr, obj1, obj2; + int nObjects, first, n; +@@ -168,8 +176,7 @@ int main(int argc, char *argv[]) + // parse the header: object numbers and offsets + objStr.streamReset(); + str = new EmbedStream(objStr.getStream(), Object(objNull), true, first); +- lexer = new Lexer(xref, str); +- parser = new Parser(xref, lexer, false); ++ parser = new Parser(xref, str, false); + for (n = 0; n < nObjects; ++n) { + obj1 = parser->getObj(); + obj2 = parser->getObj(); +@@ -201,5 +208,5 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Cross-reference table extracted to %s\n", outname); + fclose(outfile); + delete doc; +- delete globalParams; ++ globalParams.reset(); + } +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c +--- texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c.poppler-0.84 2019-12-29 19:37:32.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/utils.c 2021-05-06 18:21:18.383431058 -0400 +@@ -32,14 +32,6 @@ with this program. If not, see + #include "ptexlib.h" + #include +-#ifdef POPPLER_VERSION +-/* POPPLER_VERSION should be a proper version string */ +-#define xpdfVersion POPPLER_VERSION +-#define xpdfString "poppler" +-#else +-#include /* just to get the xpdf version */ +-#define xpdfString "xpdf" +-#endif + + #define check_nprintf(size_get, size_want) \ + if ((unsigned)(size_get) >= (unsigned)(size_want)) \ +@@ -977,12 +969,10 @@ void initversionstring(char **versions) + { + const_string fmt = + "Compiled with libpng %s; using libpng %s\n" +- "Compiled with zlib %s; using zlib %s\n" +- "Compiled with %s version %s\n"; ++ "Compiled with zlib %s; using zlib %s\n"; + size_t len = strlen(fmt) + + strlen(PNG_LIBPNG_VER_STRING) + strlen(png_libpng_ver) + + strlen(ZLIB_VERSION) + strlen(zlib_version) +- + strlen(xpdfString) + strlen(xpdfVersion) + + 1; + + /* len will be more than enough, because of the placeholder chars in fmt +@@ -990,7 +980,7 @@ void initversionstring(char **versions) + *versions = xmalloc(len); + sprintf(*versions, fmt, + PNG_LIBPNG_VER_STRING, png_libpng_ver, +- ZLIB_VERSION, zlib_version, xpdfString, xpdfVersion); ++ ZLIB_VERSION, zlib_version); + } + + +diff -up texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c.poppler-0.84 texlive-base-20210325/source/texk/web2c/xetexdir/XeTeX_ext.c diff --git a/texlive-20210325-source.tar.xz b/texlive-20210325-source.tar.xz deleted file mode 100644 index da8bda38dd475b041bb19fa14ad2772707651563..0000000000000000000000000000000000000000 Binary files a/texlive-20210325-source.tar.xz and /dev/null differ diff --git a/texlive-20220321-disable-more-failing-tests.patch b/texlive-20220321-disable-more-failing-tests.patch new file mode 100644 index 0000000000000000000000000000000000000000..6e1737043d365e462dabdba5eb927f475748c8f3 --- /dev/null +++ b/texlive-20220321-disable-more-failing-tests.patch @@ -0,0 +1,140 @@ +diff -up texlive-base-20220321/source/texk/kpathsea/Makefile.am.dt texlive-base-20220321/source/texk/kpathsea/Makefile.am +--- texlive-base-20220321/source/texk/kpathsea/Makefile.am.dt 2020-06-22 18:11:50.000000000 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/Makefile.am 2022-04-24 15:03:32.852801273 -0400 +@@ -275,7 +275,7 @@ uninstall-local: + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; + AM_TESTS_ENVIRONMENT += LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test ++TESTS = tests/cnfnewline.test + TESTS += tests/cnfnull.test tests/cnfprog.test + TESTS += tests/kpseaccess.test + TESTS += tests/kpsereadlink.test tests/kpsestat.test tests/kpsewhich.test +diff -up texlive-base-20220321/source/texk/kpathsea/Makefile.in.dt texlive-base-20220321/source/texk/kpathsea/Makefile.in +--- texlive-base-20220321/source/texk/kpathsea/Makefile.in.dt 2021-10-04 11:13:00.000000000 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/Makefile.in 2022-04-24 15:03:32.852801273 -0400 +@@ -861,7 +861,7 @@ dist_noinst_DATA = texmf.cnf + AM_TESTS_ENVIRONMENT = LN_S='$(LN_S)'; export LN_S; \ + LT_OBJDIR='$(LT_OBJDIR)'; export LT_OBJDIR; + # +-TESTS = tests/cnfline.test tests/cnfnewline.test tests/cnfnull.test \ ++TESTS = tests/cnfnewline.test tests/cnfnull.test \ + tests/cnfprog.test tests/kpseaccess.test \ + tests/kpsereadlink.test tests/kpsestat.test \ + tests/kpsewhich.test +diff -up texlive-base-20220321/source/texk/web2c/am/texmf.am.dt texlive-base-20220321/source/texk/web2c/am/texmf.am +--- texlive-base-20220321/source/texk/web2c/am/texmf.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/am/texmf.am 2022-04-24 15:03:32.850801263 -0400 +@@ -77,7 +77,7 @@ DISTCLEANFILES += $(nodist_tex_SOURCES) + + # TeX tests + # +-tex_tests = triptest.test tests/write18-quote-test.pl tests/tex-closeout.test ++tex_tests = tests/write18-quote-test.pl tests/tex-closeout.test + triptest.log: tex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + tests/write18-quote-test.log tests/tex-closeout.test: tex$(EXEEXT) + EXTRA_DIST += $(tex_tests) +@@ -205,7 +205,7 @@ DISTCLEANFILES += $(nodist_libmf_a_SOURC + + # Metafont tests + # +-mf_tests = mftraptest.test ++mf_tests = + mftraptest.log: mf$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mf_tests) + if MF +diff -up texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am.dt texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am +--- texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/eptexdir/am/eptex.am 2022-04-24 15:03:32.850801263 -0400 +@@ -89,7 +89,7 @@ EXTRA_DIST += \ + + # e-pTeX Tests + # +-eptex_tests = eptexdir/eptriptest.test eptexdir/pdfprimitive.test eptexdir/epver.test ++eptex_tests = eptexdir/epver.test + eptexdir/eptriptest.log: eptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + eptexdir/pdfprimitive.log: eptex$(EXEEXT) + eptexdir/epver.log: eptex$(EXEEXT) +diff -up texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am.dt texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am +--- texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/euptexdir/am/euptex.am 2022-04-24 15:03:32.850801263 -0400 +@@ -90,7 +90,7 @@ EXTRA_DIST += \ + + # e-upTeX Tests + # +-euptex_tests = euptexdir/euptriptest.test euptexdir/pdfprimitive.test euptexdir/eupver.test ++euptex_tests = euptexdir/eupver.test + euptexdir/euptriptest.log: euptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + euptexdir/pdfprimitive.log: euptex$(EXEEXT) + euptexdir/eupver.log: euptex$(EXEEXT) +diff -up texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am.dt texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am +--- texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am.dt 2022-02-18 13:44:19.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/mfluadir/am/mflua.am 2022-04-24 15:03:32.850801263 -0400 +@@ -110,7 +110,7 @@ EXTRA_DIST += \ + + # MFLua tests + # +-mflua_tests = mfluadir/mfluatraptest.test ++mflua_tests = + mfluadir/mfluatraptest.log: mflua$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mflua_tests) + +diff -up texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am +--- texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am.dt 2022-02-18 13:44:19.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/mfluajitdir/am/mfluajit.am 2022-04-24 15:03:32.851801268 -0400 +@@ -106,7 +106,7 @@ EXTRA_DIST += \ + + # MFLuaJIT tests + # +-mfluajit_tests = mfluajitdir/mfluajittraptest.test ++mfluajit_tests = + mfluajitdir/mfluajittraptest.log: mfluajit$(EXEEXT) gftype$(EXEEXT) tftopl$(EXEEXT) + EXTRA_DIST += $(mfluajit_tests) + +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am.dt texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am +--- texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am.dt 2022-04-24 15:03:32.851801268 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/am/pdftex.am 2022-04-24 15:47:20.351639955 -0400 +@@ -104,7 +104,7 @@ EXTRA_DIST += \ + # pdfTeX tests + # + pdftex_tests = pdftexdir/wprob.test pdftexdir/pdftex.test \ +- pdftexdir/pdfimage.test pdftexdir/expanded.test \ ++ pdftexdir/expanded.test \ + pdftexdir/tests/cnfline.test pdftexdir/tests/partoken.test + + pdftexdir/wprob.log pdftexdir/pdftex.log \ +diff -up texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am.dt texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am +--- texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/ptexdir/am/ptex.am 2022-04-24 15:03:32.851801268 -0400 +@@ -171,7 +171,7 @@ EXTRA_DIST += \ + + # pTeX Tests + # +-ptex_tests = ptexdir/ptriptest.test ptexdir/pver.test ++ptex_tests = ptexdir/pver.test + ptexdir/ptriptest.log: ptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + ptexdir/pver.log: ptex$(EXEEXT) + pweb_tests = \ +diff -up texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am.dt texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am +--- texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am.dt 2022-01-29 05:40:22.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/uptexdir/am/uptex.am 2022-04-24 15:03:32.851801268 -0400 +@@ -161,7 +161,7 @@ EXTRA_DIST += \ + uptexdir/ChangeLog + + # upTeX Tests +-uptex_tests = uptexdir/uptriptest.test uptexdir/upver.test ++uptex_tests = uptexdir/upver.test + uptexdir/uptriptest.log: uptex$(EXEEXT) dvitype$(EXEEXT) pltotf$(EXEEXT) tftopl$(EXEEXT) + uptexdir/upver.log: uptex$(EXEEXT) + upweb_tests = \ +diff -up texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am.dt texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am +--- texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am.dt 2022-01-11 17:47:10.000000000 -0500 ++++ texlive-base-20220321/source/texk/web2c/xetexdir/am/xetex.am 2022-04-24 15:03:32.852801273 -0400 +@@ -203,7 +203,6 @@ EXTRA_DIST += \ + # + xetex_tests = \ + xetexdir/xetex-filedump.test \ +- xetexdir/xetex-bug73.test \ + xetexdir/xetex.test + xetexdir/xetex-filedump.log xetexdir/xetex-bug73.log xetexdir/xetex.log: xetex$(EXEEXT) + diff --git a/texlive-2023-gcc15-ftbfs.patch b/texlive-2023-gcc15-ftbfs.patch new file mode 100644 index 0000000000000000000000000000000000000000..2f108052ebf583dfddf9236afab238acbea7375a --- /dev/null +++ b/texlive-2023-gcc15-ftbfs.patch @@ -0,0 +1,197 @@ +diff -up texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c.me texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c +--- texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c.me 2025-01-23 16:20:29.845574328 +0100 ++++ texlive-base-20230311/source/texk/web2c/luatexdir/tex/textoken.c 2025-01-23 16:23:32.896925830 +0100 +@@ -2665,7 +2665,7 @@ static int do_feedback_pdf(halfword c) + halfword save_def_ref; + halfword save_warning_index; + /*tex temp boolean */ +- boolean bool; ++ boolean bool1; + /*tex first temp string */ + str_number s; + /*tex for use with |set_ff| */ +@@ -2738,7 +2738,7 @@ static int do_feedback_pdf(halfword c) + print_int(pdf_get_obj(static_pdf, obj_type_page, cur_val, false)); + pop_selector; + } else if (scan_keyword("colorstackinit")) { +- bool = scan_keyword("page"); ++ bool1 = scan_keyword("page"); + if (scan_keyword("direct")) + cur_val = direct_always; + else if (scan_keyword("page")) +@@ -2762,7 +2762,7 @@ static int do_feedback_pdf(halfword c) + warning_index = save_warning_index; + scanner_status = save_scanner_status; + str = makecstring(s); +- cur_val = newcolorstack(str, cur_val, bool); ++ cur_val = newcolorstack(str, cur_val, bool1); + free(str); + flush_str(s); + cur_val_level = int_val_level; +@@ -2801,7 +2801,7 @@ void conv_toks(void) + halfword save_def_ref; + halfword save_warning_index; + /*tex temp boolean */ +- boolean bool; ++ boolean bool1; + /*tex first temp string */ + str_number s; + /*tex lua chunk name */ +@@ -2991,11 +2991,11 @@ void conv_toks(void) + save_def_ref = def_ref; + save_warning_index = warning_index; + scan_toks(false, true); +- bool = in_lua_escape; ++ bool1 = in_lua_escape; + in_lua_escape = true; + escstr.s = (unsigned char *) tokenlist_to_cstring(def_ref, false, &l); + escstr.l = (unsigned) l; +- in_lua_escape = bool; ++ in_lua_escape = bool1; + delete_token_ref(def_ref); + def_ref = save_def_ref; + warning_index = save_warning_index; +diff -up texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c.me texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c +--- texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c.me 2025-01-23 16:45:23.164475899 +0100 ++++ texlive-base-20230311/source/texk/web2c/luatexdir/unilib/ustring.c 2025-01-23 16:47:08.044935510 +0100 +@@ -396,7 +396,7 @@ double u_strtod(const unichar_t *str, un + char buf[60], *pt, *ret; + const unichar_t *upt; + double val; +- extern double strtod(); /* Please don't delete this, not all of us have good ansi headers */ ++ //extern double strtod(); /* Please don't delete this, not all of us have good ansi headers */ + + for ( upt=str, pt=buf; *upt<128 && *upt!='\0' && pt-buffrom->nextcp; + spline->from->nextcp = spline->from->prevcp; + spline->from->prevcp = tp; +- bool = spline->from->nonextcp; ++ bool1 = spline->from->nonextcp; + spline->from->nonextcp = spline->from->noprevcp; +- spline->from->noprevcp = bool; +- bool = spline->from->nextcpdef; ++ spline->from->noprevcp = bool1; ++ bool1 = spline->from->nextcpdef; + spline->from->nextcpdef = spline->from->prevcpdef; +- spline->from->prevcpdef = bool; ++ spline->from->prevcpdef = bool1; + + for ( ; spline!=NULL && spline!=first; spline=next ) { + next = spline->to->next; +@@ -2076,12 +2076,12 @@ return( spl ); /* Only one point, reve + tp = spline->to->nextcp; + spline->to->nextcp = spline->to->prevcp; + spline->to->prevcp = tp; +- bool = spline->to->nonextcp; ++ bool1 = spline->to->nonextcp; + spline->to->nonextcp = spline->to->noprevcp; +- spline->to->noprevcp = bool; +- bool = spline->to->nextcpdef; ++ spline->to->noprevcp = bool1; ++ bool1 = spline->to->nextcpdef; + spline->to->nextcpdef = spline->to->prevcpdef; +- spline->to->prevcpdef = bool; ++ spline->to->prevcpdef = bool1; + } + + temp = spline->to; +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h.me 2025-01-23 17:53:11.940292061 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/libs/woff2/include/woff2/output.h 2025-01-23 18:00:25.679229974 +0100 +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + + namespace woff2 { + +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/Character.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/Character.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/Character.hpp.me 2025-01-23 18:00:29.791326309 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/Character.hpp 2025-01-23 18:01:29.795726026 +0100 +@@ -21,6 +21,7 @@ + #ifndef CHARACTER_HPP + #define CHARACTER_HPP + ++#include + + class Character { + public: +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp.me 2025-01-23 18:01:42.194015062 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/EPSFile.hpp 2025-01-23 18:02:08.019619304 +0100 +@@ -21,6 +21,7 @@ + #ifndef EPSFILE_HPP + #define EPSFILE_HPP + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/FontMetrics.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/FontMetrics.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/FontMetrics.hpp.me 2025-01-23 18:02:39.822363424 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/FontMetrics.hpp 2025-01-23 18:02:46.917529433 +0100 +@@ -21,6 +21,7 @@ + #ifndef FONTMETRICS_HPP + #define FONTMETRICS_HPP + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp.me 2025-01-23 18:03:21.502336489 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.cpp 2025-01-23 18:03:28.253494025 +0100 +@@ -18,6 +18,7 @@ + ** along with this program; if not, see . ** + *************************************************************************/ + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.hpp.me 2025-01-23 18:04:33.647023179 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/HashFunction.hpp 2025-01-23 18:04:40.919193442 +0100 +@@ -21,6 +21,7 @@ + #ifndef HASHFUNCTION_HPP + #define HASHFUNCTION_HPP + ++#include + #include + #include + #include +diff -up texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp.me texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp +--- texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp.me 2025-01-23 17:54:42.338405708 +0100 ++++ texlive-base-20230311/source/texk/dvisvgm/dvisvgm-src/src/utility.hpp 2025-01-23 17:58:32.140551634 +0100 +@@ -32,6 +32,7 @@ + #include + #include + #include ++#include + + namespace math { + diff --git a/texlive-20210325-texinfo-path-fix.patch b/texlive-20230311-texinfo-path-fix.patch similarity index 37% rename from texlive-20210325-texinfo-path-fix.patch rename to texlive-20230311-texinfo-path-fix.patch index 73456a8d4e0dbf368a47de5a84a5deff20269660..cd974ed10d34a429f226608eadb65362a2687635 100644 --- a/texlive-20210325-texinfo-path-fix.patch +++ b/texlive-20230311-texinfo-path-fix.patch @@ -1,22 +1,44 @@ -diff -up texlive-20210325-source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-20210325-source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.texinfo-fix 2021-05-06 17:53:44.616943275 -0400 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2021-05-06 17:55:40.097662674 -0400 +diff -up texlive-base-20230311/source/texk/kpathsea/texmf.cnf.texinfo-fix texlive-base-20230311/source/texk/kpathsea/texmf.cnf +--- texlive-base-20230311/source/texk/kpathsea/texmf.cnf.texinfo-fix 2023-05-25 10:49:55.510891474 -0400 ++++ texlive-base-20230311/source/texk/kpathsea/texmf.cnf 2023-05-25 11:44:59.261966579 -0400 +@@ -59,7 +59,7 @@ + % SELFAUTOPARENT (its grandparent = /usr/local/texlive/YYYY), and + % SELFAUTOGRANDPARENT (its great-grandparent = /usr/local/texlive). + % Sorry for the off-by-one-generation names. +-TEXMFROOT = $SELFAUTOPARENT ++TEXMFROOT = /usr/share/texlive + + % The main tree of distributed packages and programs: + TEXMFDIST = $TEXMFROOT/texmf-dist +@@ -69,10 +69,10 @@ TEXMFDIST = $TEXMFROOT/texmf-dist + TEXMFMAIN = $TEXMFDIST + + % Local additions to the distribution trees. +-TEXMFLOCAL = $SELFAUTOGRANDPARENT/texmf-local ++TEXMFLOCAL = /usr/share/texlive/texmf-local + + % TEXMFSYSVAR, where *-sys store cached runtime data. +-TEXMFSYSVAR = $TEXMFROOT/texmf-var ++TEXMFSYSVAR = /var/lib/texmf + + % TEXMFSYSCONFIG, where *-sys store configuration data. + TEXMFSYSCONFIG = $TEXMFROOT/texmf-config @@ -83,6 +83,9 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config % to %USERPROFILE% on Windows, $HOME otherwise. TEXMFHOME = ~/texmf +% Texinfo on Fedora lives out of $TEXMFROOT -+TEXINFOHOME = $SELFAUTODIR/share/texmf ++TEXINFOHOME = /usr/share/texmf + % TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data. - TEXMFVAR = ~/.texlive2021/texmf-var + TEXMFVAR = ~/.texlive2023/texmf-var @@ -108,7 +111,7 @@ TEXMFAUXTREES = {} % The odd-looking $TEXMFAUXTREES$TEXMF... construct is so that if no auxtree is % ever defined (the 99% common case), no extra elements will be added to % the search paths. tlmgr takes care to end any value with a trailing comma. -TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} -+TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} ++TEXMF = {$TEXMFAUXTREES$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,!!$TEXINFOHOME,!!$TEXMFLOCAL,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFDIST} % Where to look for, and where mktexlsr creates, ls-R files. By default, % this is all and only the !! elements of TEXMF, so that mktexlsr does not diff --git a/texlive-base-20180414-disable-omegafonts-check-test.patch b/texlive-base-20180414-disable-omegafonts-check-test.patch new file mode 100644 index 0000000000000000000000000000000000000000..1879359190ab2709101dde8f0ad21ddabcec9f97 --- /dev/null +++ b/texlive-base-20180414-disable-omegafonts-check-test.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest texlive-base-20180414/source/texk/web2c/omegafonts/check.test +--- texlive-base-20180414/source/texk/web2c/omegafonts/check.test.disabletest 2018-10-04 13:24:17.965126655 -0400 ++++ texlive-base-20180414/source/texk/web2c/omegafonts/check.test 2018-10-04 13:24:26.068945230 -0400 +@@ -4,6 +4,8 @@ + # Copyright 2014, 2015 Peter Breitenlohner + # You may freely use, modify and/or distribute this file. + ++exit 0 ++ + test -d tests || mkdir -p tests + + TEXMFCNF=$srcdir/../../kpathsea diff --git a/texlive-base-20210325-configure-poppler-xpdf-fix.patch b/texlive-base-20210325-configure-poppler-xpdf-fix.patch new file mode 100644 index 0000000000000000000000000000000000000000..61b144c8ca90b2495128ed2c4e73f00272b2a5f7 --- /dev/null +++ b/texlive-base-20210325-configure-poppler-xpdf-fix.patch @@ -0,0 +1,159 @@ +diff -up texlive-base-20210325/source/configure.poppler-xpdf-fix texlive-base-20210325/source/configure +--- texlive-base-20210325/source/configure.poppler-xpdf-fix 2021-03-24 17:28:22.000000000 -0400 ++++ texlive-base-20210325/source/configure 2021-05-10 15:21:08.254142588 -0400 +@@ -21497,7 +21497,27 @@ if test "x$with_mpfr_libdir" != x && tes + MPFR_LIBS="-L$with_mpfr_libdir $MPFR_LIBS" + fi + +-: "kpse_xpdf_system_flags - no-op" ++if $PKG_CONFIG poppler --atleast-version=0.30; then ++ POPPLER_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ POPPLER_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_poppler:$with_system_poppler" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.30 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++POPPLER_INCLUDES="$POPPLER_VERSION $POPPLER_INCLUDES" ++ ++if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" ++ ++# : "kpse_xpdf_system_flags - no-op" + + if $PKG_CONFIG zziplib --atleast-version=0.12; then + ZZIPLIB_INCLUDES=`$PKG_CONFIG zziplib --cflags` +diff -up texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/configure +--- texlive-base-20210325/source/texk/web2c/configure.poppler-xpdf-fix 2021-02-16 22:03:54.000000000 -0500 ++++ texlive-base-20210325/source/texk/web2c/configure 2021-05-10 15:21:08.256142617 -0400 +@@ -25500,9 +25500,21 @@ fi + ##tldbg _KPSE_LIB_FLAGS: Setup xpdf (-lxpdf) flags. + echo 'tldbg:_KPSE_LIB_FLAGS called: libdir=xpdf, libname=xpdf, options=, tlincl=-DPDF_PARSER_ONLY -IBLD/libs/xpdf -IBLD/libs/xpdf/goo -IBLD/libs/xpdf/xpdf, tllib=BLD/libs/xpdf/libxpdf.a, tlextra=, rebuildsrcdeps=, rebuildblddeps=${top_builddir}/../../libs/xpdf/xpdf/Stream.h.' >&5 + ##tldbg _KPSE_LIB_FLAGS_TL: xpdf (xpdf) . +-: "kpse_xpdf_options - no-op" ++# Check whether --with-system-xpdf was given. ++if test "${with_system_xpdf+set}" = set; then : ++ withval=$with_system_xpdf; ++fi ++ + if test "x$with_system_xpdf" = xyes; then +- : "kpse_xpdf_system_flags - no-op" ++ if $PKG_CONFIG poppler --atleast-version=0.12; then ++ XPDF_INCLUDES=`$PKG_CONFIG poppler --cflags` ++ XPDF_LIBS=`$PKG_CONFIG poppler --libs` ++elif test "x$need_xpdf:$with_system_xpdf" = xyes:yes; then ++ as_fn_error $? "did not find poppler 0.12 or better" "$LINENO" 5 ++fi ++ ++POPPLER_VERSION='-DPOPPLER_VERSION=\"'`$PKG_CONFIG poppler --modversion`'\"' ++XPDF_INCLUDES="$POPPLER_VERSION $XPDF_INCLUDES" + else + XPDF_INCLUDES="-DPDF_PARSER_ONLY -I$kpse_BLD/libs/xpdf -I$kpse_BLD/libs/xpdf/goo -I$kpse_BLD/libs/xpdf/xpdf" + XPDF_LIBS="$kpse_BLD/libs/xpdf/libxpdf.a" +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-xpdf-fix 2021-05-10 15:56:50.770034767 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2021-05-10 16:05:07.939283063 -0400 +@@ -49,10 +49,16 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#include ++#include ++#include ++#include ++#include ++#define GString GooString ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -676,7 +682,7 @@ static void writeEncodings() + } + for (r = encodingList; r != 0; r = n) { + n = r->next; +- delete r->font; ++ r->font->decRefCnt(); + delete r; + } + } +@@ -715,7 +721,7 @@ read_pdf_info(char *image_name, char *pa + PdfDocument *pdf_doc; + Page *page; + const PDFRectangle *pagebox; +- float pdf_version_found, pdf_version_wanted; ++ int pdf_major_version_found, pdf_minor_version_found; + // initialize + if (!isInit) { + globalParams = std::unique_ptr(new GlobalParams()); +@@ -730,17 +736,18 @@ read_pdf_info(char *image_name, char *pa + // this works only for PDF 1.x -- but since any versions of PDF newer + // than 1.x will not be backwards compatible to PDF 1.x, pdfTeX will + // then have to changed drastically anyway. +- pdf_version_found = pdf_doc->doc->getPDFVersion(); +- pdf_version_wanted = major_pdf_version_wanted + (minor_pdf_version_wanted * 0.1); +- if (pdf_version_found > pdf_version_wanted + 0.01) { +- char msg[] = +- "PDF inclusion: found PDF version <%.1f>, but at most version <%.1f> allowed"; ++ pdf_major_version_found = pdf_doc->doc->getPDFMajorVersion(); ++ pdf_minor_version_found = pdf_doc->doc->getPDFMinorVersion(); ++ if ((pdf_major_version_found > major_pdf_version_wanted) ++ || (pdf_minor_version_found > minor_pdf_version_wanted)) { ++ const char *msg = ++ "PDF inclusion: found PDF version <%d.%d>, but at most version <%d.%d> allowed"; + if (pdf_inclusion_errorlevel > 0) { +- pdftex_fail(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_fail(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } else if (pdf_inclusion_errorlevel < 0) { + ; /* do nothing */ + } else { /* = 0, give warning */ +- pdftex_warn(msg, pdf_version_found, pdf_version_wanted); ++ pdftex_warn(msg, pdf_major_version_found, pdf_minor_version_found, major_pdf_version_wanted, minor_pdf_version_wanted); + } + } + epdf_num_pages = pdf_doc->doc->getCatalog()->getNumPages(); +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-xpdf-fix 2021-05-10 15:26:43.545060694 -0400 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftosrc.cc 2021-05-10 16:06:58.614896618 -0400 +@@ -41,10 +41,15 @@ POPPLER_VERSION should be defined. + #include + #include + +-#include +-#include +-#include +-#include ++#ifdef POPPLER_VERSION ++#define GString GooString ++#include ++#include ++#include ++#include ++#else ++#error POPPLER_VERSION should be defined. ++#endif + #include + + #include "Object.h" +@@ -183,7 +188,7 @@ int main(int argc, char *argv[]) + if (n == e->gen) + localOffset = obj2.getInt(); + } +-#if defined(XPDF304) ++#if defined(POPPLER_VERSION) || defined(XPDF304) + while (str->getChar() != EOF) ; + #else /* xpdf 4.00 */ + lexer->skipToEOF(); diff --git a/texlive-base-20210325-mendex-weird-arch-fixes.patch b/texlive-base-20210325-mendex-weird-arch-fixes.patch deleted file mode 100644 index 9592bb381ec37de37aeaaf9f3b73d0a4fc226300..0000000000000000000000000000000000000000 --- a/texlive-base-20210325-mendex-weird-arch-fixes.patch +++ /dev/null @@ -1,168 +0,0 @@ -diff -U0 texlive-20210325-source/texk/mendexk/ChangeLog.archfix texlive-20210325-source/texk/mendexk/ChangeLog ---- a/texlive-20210325-source/texk/mendexk/ChangeLog.archfix 2021-05-27 15:01:46.888501972 -0400 -+++ a/texlive-20210325-source/texk/mendexk/ChangeLog 2021-05-27 15:02:10.669627643 -0400 -@@ -0,0 +1,13 @@ -+2021-05-09 Karl Berry -+ -+ * mendex.h (page.attr): use int, not char, since we do signed -+ comparison and aarch64 apparently treats char as unsigned. -+ (index.words): use unsigned char for consistency. -+ * fwrite.c (printpage): factor out beginning/end page values. -+ * tests/rangetwo.idx, -+ * tests/rangetwo.ind, -+ * tests/rangetwo.ist: new simple test. -+ * tests/mendex.test: run the rangetwo test. -+ Report from Johannes Hielscher, -+ https://tug.org/pipermail/tlbuild/2021q1/004873.html. -+ -diff -up texlive-20210325-source/texk/mendexk/fwrite.c.archfix texlive-20210325-source/texk/mendexk/fwrite.c ---- a/texlive-20210325-source/texk/mendexk/fwrite.c.archfix 2021-05-27 15:02:37.867771347 -0400 -+++ a/texlive-20210325-source/texk/mendexk/fwrite.c 2021-05-27 15:07:00.875160968 -0400 -@@ -326,7 +326,11 @@ static void printpage(struct index *ind, - for(j=0;jj) { -- if (pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0])==pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])) { -+ int epage = pnumconv(ind[num].p[cc].page, -+ ind[num].p[cc].attr[0]); -+ int bpage = pnumconv(ind[num].p[j].page, -+ ind[num].p[j].attr[0]); -+ if (epage==bpage) { - j=cc-1; - continue; - } -@@ -337,20 +341,18 @@ static void printpage(struct index *ind, - if (strlen(ind[num].p[j].enc)>0) { - SPRINTF(buff,"%s%s%s",encap_prefix,ind[num].p[j].enc,encap_infix); - } -- if (strlen(suffix_3p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==2) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ /* print beginning of range */ -+ SAPPENDF(buff,"%s",ind[num].p[j].page); -+ if (strlen(suffix_3p)>0 && (epage-bpage)==2) { - SAPPENDF(buff,"%s",suffix_3p); - } -- else if (strlen(suffix_mp)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))>=2) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ else if (strlen(suffix_mp)>0 && (epage-bpage)>=2) { - SAPPENDF(buff,"%s",suffix_mp); - } -- else if (strlen(suffix_2p)>0 && (pnumconv(ind[num].p[cc].page,ind[num].p[cc].attr[0])-pnumconv(ind[num].p[j].page,ind[num].p[j].attr[0]))==1) { -- SAPPENDF(buff,"%s",ind[num].p[j].page); -+ else if (strlen(suffix_2p)>0 && (epage-bpage)==1) { - SAPPENDF(buff,"%s",suffix_2p); - } - else { -- SAPPENDF(buff,"%s",ind[num].p[j].page); - SAPPENDF(buff,"%s",delim_r); - SAPPENDF(buff,"%s",ind[num].p[cc].page); - } -diff -up texlive-20210325-source/texk/mendexk/mendex.h.archfix texlive-20210325-source/texk/mendexk/mendex.h ---- a/texlive-20210325-source/texk/mendexk/mendex.h.archfix 2021-05-27 15:07:31.173321042 -0400 -+++ a/texlive-20210325-source/texk/mendexk/mendex.h 2021-05-27 15:07:50.429422834 -0400 -@@ -14,12 +14,12 @@ - struct page { - char *page; - char *enc; -- char attr[3]; -+ int attr[3]; - }; - - struct index { - int num; -- char words; -+ unsigned char words; - char *org[3]; - char *dic[3]; - char *idx[3]; -diff -up texlive-20210325-source/texk/mendexk/tests/mendex.test.archfix texlive-20210325-source/texk/mendexk/tests/mendex.test ---- a/texlive-20210325-source/texk/mendexk/tests/mendex.test.archfix 2021-05-27 15:08:12.848541283 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/mendex.test 2021-05-27 15:13:28.110189451 -0400 -@@ -1,6 +1,6 @@ - #! /bin/sh -vx - # $Id: mendex.test 58575 2021-03-21 08:54:52Z takuji $ --# Copyright 2017 Karl Berry -+# Copyright 2017-2021 Karl Berry - # Copyright 2013 Peter Breitenlohner - # You may freely use, modify and/or distribute this file. - -@@ -24,13 +24,21 @@ cat $srcdir/tests/uni.idx | \ - >uni.ind2 2>uni.ilg2 \ - && diff $srcdir/tests/uni.ind uni.ind2 || exit 1 - --# test for page_precedence --./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx -o pprecA-0.ind1 -t pprecA-0.ilg \ -+# test for two-element range suffix_2p -+./mendex -s $srcdir/tests/rangetwo.ist $srcdir/tests/rangetwo.idx \ -+ -o rangetwo.ind1 -t rangetwo.ilg \ -+ && diff $srcdir/tests/rangetwo.ind rangetwo.ind1 || exit 1 -+ -+# test for page_precedence and suffix_3p -+./mendex -s $srcdir/tests/pprec0.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-0.ind1 -t pprecA-0.ilg \ - && diff $srcdir/tests/pprecA-0.ind pprecA-0.ind1 || exit 1 - --./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx -o pprecA-1.ind1 -t pprecA-1.ilg \ -+./mendex -s $srcdir/tests/pprec1.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-1.ind1 -t pprecA-1.ilg \ - && diff $srcdir/tests/pprecA-1.ind pprecA-1.ind1 || exit 1 - --./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx -o pprecA-2.ind1 -t pprecA-2.ilg \ -+./mendex -s $srcdir/tests/pprec2.ist $srcdir/tests/pprecA.idx \ -+ -o pprecA-2.ind1 -t pprecA-2.ilg \ - && diff $srcdir/tests/pprecA-2.ind pprecA-2.ind1 || exit 1 - -diff -up a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx.archfix a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx.archfix 2021-05-27 15:14:09.048403077 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.idx 2021-05-27 15:14:03.416373688 -0400 -@@ -0,0 +1,2 @@ -+\indexentry{entryA}{1} -+\indexentry{entryA}{2} -diff -up texlive-20210325-source/texk/mendexk/tests/rangetwo.ind.archfix texlive-20210325-source/texk/mendexk/tests/rangetwo.ind ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ind.archfix 2021-05-27 15:14:30.601515549 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ind 2021-05-27 15:14:59.970668807 -0400 -@@ -0,0 +1,5 @@ -+\begin{theindex} -+ -+ \item entryA, 1[[sfx2p]] -+ -+\end{theindex} -diff -up texlive-20210325-source/texk/mendexk/tests/rangetwo.ist.archfix texlive-20210325-source/texk/mendexk/tests/rangetwo.ist ---- a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ist.archfix 2021-05-27 15:15:24.712797920 -0400 -+++ a/texlive-20210325-source/texk/mendexk/tests/rangetwo.ist 2021-05-27 15:15:51.412937250 -0400 -@@ -0,0 +1,2 @@ -+suffix_2p "[[sfx2p]]" -+ -diff -U0 texlive-20210325-source/texk/upmendex/ChangeLog.archfix texlive-20210325-source/texk/upmendex/ChangeLog ---- a/texlive-20210325-source/texk/upmendex/ChangeLog.archfix 2021-05-27 14:58:11.836365567 -0400 -+++ a/texlive-20210325-source/texk/upmendex/ChangeLog 2021-05-27 14:59:42.613845327 -0400 -@@ -0,0 +1,11 @@ -+2021-05-09 Karl Berry -+ * mendex.h (page.attr): use int, not char, since we do signed -+ comparison and aarch64 apparently treats char as unsigned. -+ (index.words): use unsigned char for consistency. -+ -+ Same fixes as for mendex; see mendexk/ChangeLog. -+ Report from Johannes Hielscher, -+ https://tug.org/pipermail/tlbuild/2021q1/004873.html -+ and follow-up: -+ https://tug.org/pipermail/tlbuild/2021q2/004911.html -+ -diff -up texlive-20210325-source/texk/upmendex/mendex.h.archfix texlive-20210325-source/texk/upmendex/mendex.h ---- a/texlive-20210325-source/texk/upmendex/mendex.h.archfix 2021-05-27 14:59:52.774899013 -0400 -+++ a/texlive-20210325-source/texk/upmendex/mendex.h 2021-05-27 15:01:33.381430577 -0400 -@@ -14,12 +14,12 @@ - struct page { - char *page; - char *enc; -- char attr[3]; -+ int attr[3]; - }; - - struct index { - int num; -- char words; -+ unsigned char words; - UChar *dic[3]; - UChar *org[3]; - UChar *idx[3]; diff --git a/texlive-base-20210325-no-setpdfwrite.patch b/texlive-base-20210325-no-setpdfwrite.patch deleted file mode 100644 index e631ea519f122c18049d28208a12aca0239add61..0000000000000000000000000000000000000000 --- a/texlive-base-20210325-no-setpdfwrite.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -up texlive-20210325-source/utils/asymptote/patches/dvipdf.no-setpdfwrite texlive-20210325-source/utils/asymptote/patches/dvipdf ---- a/texlive-20210325-source/utils/asymptote/patches/dvipdf.no-setpdfwrite 2021-06-21 10:05:10.392585479 -0400 -+++ a/texlive-20210325-source/utils/asymptote/patches/dvipdf 2021-06-21 10:05:30.969698895 -0400 -@@ -50,5 +50,5 @@ fi - - # We have to include the options twice because -I only takes effect if it - # appears before other options. --exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite - -+exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c 3000000 setvmthreshold - - diff --git a/texlive-base-20210325-pdftoepdf-fix-crash.patch b/texlive-base-20210325-pdftoepdf-fix-crash.patch new file mode 100644 index 0000000000000000000000000000000000000000..b19d48337c95dfa2bd8c80b85f77beca5ab458bd --- /dev/null +++ b/texlive-base-20210325-pdftoepdf-fix-crash.patch @@ -0,0 +1,34 @@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.debug 2022-01-20 10:25:58.454233201 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-20 12:57:04.241513707 -0500 +@@ -962,21 +962,30 @@ A change + does not improve the situation. + The changes below seem to work fine. + */ ++ if (page->getGroup() != NULL) { ++ groupDict = Object(page->getGroup()); ++ } else { ++ pdftex_fail("PDF inclusion: getGroup failed"); ++ } ++/* + // begin modification + groupDict = pageDict->lookup("Group"); + Dict *dic1 = page->getGroup(); + Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 + l = dic2->getLength(); ++ pdftex_warn("dic2 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictRemove(dic2->getKey(i)); + } + l = dic1->getLength(); ++ pdftex_warn("dic1 length is %d", l); + for (i = 0; i < l; i++) { + groupDict.dictAdd(dic1->getKey(i), + dic1->getValNF(i).copy()); + } + // end modification ++*/ + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); + } + } diff --git a/texlive-base-20210325-poppler-22.01.0.patch b/texlive-base-20210325-poppler-22.01.0.patch new file mode 100644 index 0000000000000000000000000000000000000000..483eb6a8c4aa5016e271abb250c320ac554184c6 --- /dev/null +++ b/texlive-base-20210325-poppler-22.01.0.patch @@ -0,0 +1,49 @@ +diff -up texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 texlive-base-20210325/source/texk/web2c/Makefile.in +--- texlive-base-20210325/source/texk/web2c/Makefile.in.poppler22 2022-01-15 16:57:15.020632269 -0500 ++++ texlive-base-20210325/source/texk/web2c/Makefile.in 2022-01-15 17:00:20.852711238 -0500 +@@ -4573,7 +4573,7 @@ ttf2afm_tests = pdftexdir/ttf2afm.test + # Force Automake to use CXXLD for linking + nodist_EXTRA_pdftosrc_SOURCES = dummy.cxx + pdftosrc_CPPFLAGS = $(pdftex_cppflags) +-pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) ++pdftosrc_CXXFLAGS = $(WARNING_CXXFLAGS) -std=c++17 + pdftosrc_SOURCES = pdftexdir/pdftosrc.cc + pdftosrc_LDADD = $(pdftex_ldadd) $(LDADD) + pdftosrc_DEPENDENCIES = $(pdftex_dependencies) +@@ -18343,7 +18343,7 @@ xetex-xetex-pool.obj: xetex-pool.c + @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + + pdftexdir/libpdftex_a-pdftoepdf.o: pdftexdir/pdftoepdf.cc +-@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc ++@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpdftex_a_CPPFLAGS) $(CPPFLAGS) -std=c++17 $(libpdftex_a_CXXFLAGS) $(CXXFLAGS) -MT pdftexdir/libpdftex_a-pdftoepdf.o -MD -MP -MF pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo -c -o pdftexdir/libpdftex_a-pdftoepdf.o `test -f 'pdftexdir/pdftoepdf.cc' || echo '$(srcdir)/'`pdftexdir/pdftoepdf.cc + @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Tpo pdftexdir/$(DEPDIR)/libpdftex_a-pdftoepdf.Po + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='pdftexdir/pdftoepdf.cc' object='pdftexdir/libpdftex_a-pdftoepdf.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +diff -up texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler22 2022-01-14 15:01:29.811105995 -0500 ++++ texlive-base-20210325/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-01-14 15:01:29.831106120 -0500 +@@ -964,17 +964,17 @@ The changes below seem to work fine. + */ + // begin modification + groupDict = pageDict->lookup("Group"); +- const Dict& dic1 = page->getGroup(); +- const Dict& dic2 = groupDict.getDict(); ++ Dict *dic1 = page->getGroup(); ++ Dict *dic2 = groupDict.getDict(); + // replace dic2 in groupDict with dic1 +- l = dic2.getLength(); ++ l = dic2->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictRemove(dic2.getKey(i)); ++ groupDict.dictRemove(dic2->getKey(i)); + } +- l = dic1.getLength(); ++ l = dic1->getLength(); + for (i = 0; i < l; i++) { +- groupDict.dictAdd(dic1.getKey(i), +- dic1.getValNF(i).copy()); ++ groupDict.dictAdd(dic1->getKey(i), ++ dic1->getValNF(i).copy()); + } + // end modification + pdf_printf("/Group %ld 0 R\n", (long)pdfpagegroupval); diff --git a/texlive-base-20200327-out-of-memory.patch b/texlive-base-20220321-out-of-memory.patch similarity index 39% rename from texlive-base-20200327-out-of-memory.patch rename to texlive-base-20220321-out-of-memory.patch index e7a4a90b7c0ed5d0a6b9a290a2d91fec8c2146ab..645e4275bc380f0383242ae49029416e347b85a2 100644 --- a/texlive-base-20200327-out-of-memory.patch +++ b/texlive-base-20220321-out-of-memory.patch @@ -1,9 +1,9 @@ -diff -up texlive-20210325-source/texk/kpathsea/texmf.cnf.me texlive-20210325-source/texk/kpathsea/texmf.cnf ---- a/texlive-20210325-source/texk/kpathsea/texmf.cnf.me 2020-09-23 09:35:26.729192291 +0200 -+++ a/texlive-20210325-source/texk/kpathsea/texmf.cnf 2020-09-23 09:36:01.849651692 +0200 -@@ -786,7 +786,7 @@ texmf_casefold_search = 1 - % For some xy-pic samples, you may need as much as 700000 words of memory. - % For the vast majority of documents, 60000 or less will do. +diff -up texlive-base-20220321/source/texk/kpathsea/texmf.cnf.out_of_memory texlive-base-20220321/source/texk/kpathsea/texmf.cnf +--- texlive-base-20220321/source/texk/kpathsea/texmf.cnf.out_of_memory 2022-04-24 15:50:46.472711270 -0400 ++++ texlive-base-20220321/source/texk/kpathsea/texmf.cnf 2022-04-24 15:51:47.213026575 -0400 +@@ -789,7 +789,7 @@ texmf_casefold_search = 1 + % To increase space for boxes (as might be needed by, e.g., PiCTeX), + % increase extra_mem_bot. % -main_memory = 5000000 % words of inimemory available; also applies to inimf&mp +main_memory = 6000000 % words of inimemory available; also applies to inimf&mp diff --git a/texlive-base-20220321-pdf-header-order-fix.patch b/texlive-base-20220321-pdf-header-order-fix.patch new file mode 100644 index 0000000000000000000000000000000000000000..14ef1d074cbd366b7b51015cb98699140d3adf9f --- /dev/null +++ b/texlive-base-20220321-pdf-header-order-fix.patch @@ -0,0 +1,47 @@ +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.header-order-fix texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.header-order-fix 2023-01-31 12:53:39.214112015 -0500 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc 2023-01-31 12:54:07.175413160 -0500 +@@ -17,6 +17,11 @@ You should have received a copy of the G + with this program. If not, see . + */ + ++/* ++Load aconf.h first to ensure _FILE_OFFSET_BITS is factored in. ++*/ ++#include ++ + /* Do this early in order to avoid a conflict between + MINGW32 defining 'boolean' as 'unsigned char' and + defining Pascal's boolean as 'int'. +@@ -31,7 +36,6 @@ with this program. If not, see + #include + +-#include + #include + #include + #include +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.header-order-fix texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.header-order-fix 2023-01-31 12:41:21.483166562 -0500 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc 2023-01-31 12:53:15.185853229 -0500 +@@ -16,6 +16,12 @@ GNU General Public License for more deta + You should have received a copy of the GNU General Public License along + with this program. If not, see . + */ ++ ++/* ++Load aconf.h first to ensure _FILE_OFFSET_BITS is factored in. ++*/ ++#include ++ + #include + + #include +@@ -24,7 +30,6 @@ with this program. If not, see + #include + +-#include + #include + #include + #include diff --git a/texlive-base-20220321-poppler-22.08.0.patch b/texlive-base-20220321-poppler-22.08.0.patch new file mode 100644 index 0000000000000000000000000000000000000000..1385077d0714de551e2021f62a12d74a67dca27d --- /dev/null +++ b/texlive-base-20220321-poppler-22.08.0.patch @@ -0,0 +1,123 @@ +diff -up texlive-base-20220321/source/configure.poppler-22.08.0 texlive-base-20220321/source/configure +--- texlive-base-20220321/source/configure.poppler-22.08.0 2022-10-31 09:48:21.875540925 -0400 ++++ texlive-base-20220321/source/configure 2022-10-31 09:50:13.731220862 -0400 +@@ -23545,7 +23545,7 @@ printf %s "checking requested system \`x + int + main (void) + { +-GfxFont *gfxFont; gfxFont->decRefCnt(); ++GfxFont *gfxFont; gfxFont->getFlags(); + ; + return 0; + } +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-22.08.0 texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc.poppler-22.08.0 2022-10-31 09:48:21.872540907 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftoepdf.cc 2022-10-31 09:48:21.876540932 -0400 +@@ -123,7 +123,7 @@ struct InObj { + + struct UsedEncoding { + int enc_objnum; +- GfxFont *font; ++ std::shared_ptr font; + UsedEncoding *next; + }; + +@@ -167,8 +167,8 @@ static PdfDocument *find_add_document(ch + p->file_name = xstrdup(file_name); + p->xref = xref = 0; + p->occurences = 0; +- GString *docName = new GString(p->file_name); +- p->doc = new PDFDoc(docName); // takes ownership of docName ++ // GString *docName = new GString(p->file_name); ++ p->doc = new PDFDoc(std::make_unique(p->file_name)); // takes ownership of docName + if (!p->doc->isOk() || !p->doc->okToPrint()) { + pdftex_fail("xpdf: reading PDF image failed"); + } +@@ -204,7 +204,7 @@ static void delete_document(PdfDocument + + // -------------------------------------------------------------------- + +-static int addEncoding(GfxFont * gfont) ++static int addEncoding(std::shared_ptr gfont) + { + UsedEncoding *n; + n = new UsedEncoding; +@@ -395,7 +395,8 @@ static void copyFont(const char *tag, Ob + { + Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + stemV; +- GfxFont *gfont; ++ // GfxFont *gfont; ++ std::shared_ptr gfont; + fd_entry *fd; + fm_entry *fontmap; + // Check whether the font has already been embedded before analysing it. +@@ -666,6 +667,7 @@ static void writeEncodings() + UsedEncoding *r, *n; + char *glyphNames[256], *s; + int i; ++ + for (r = encodingList; r != 0; r = r->next) { + for (i = 0; i < 256; i++) { + if (r->font->isCIDFont()) { +@@ -673,7 +675,8 @@ static void writeEncodings() + ("PDF inclusion: CID fonts are not supported" + " (try to disable font replacement to fix this)"); + } +- if ((s = (char *) ((Gfx8BitFont *) r->font)->getCharName(i)) != 0) ++ const GfxFont *const font = r->font.get(); ++ if ((s = (char *) ((Gfx8BitFont *) font)->getCharName(i)) != 0) + glyphNames[i] = s; + else + glyphNames[i] = notdef; +@@ -682,7 +685,7 @@ static void writeEncodings() + } + for (r = encodingList; r != 0; r = n) { + n = r->next; +- r->font->decRefCnt(); ++ // r->font->decRefCnt(); + delete r; + } + } +diff -up texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-22.08.0 texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc +--- texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc.poppler-22.08.0 2022-10-31 09:48:21.866540870 -0400 ++++ texlive-base-20220321/source/texk/web2c/pdftexdir/pdftosrc.cc 2022-10-31 09:48:21.876540932 -0400 +@@ -72,7 +72,7 @@ int main(int argc, char *argv[]) + { + char *p, buf[1024]; + PDFDoc *doc; +- GString *fileName; ++ std::unique_ptr fileName; + Stream *s; + Object srcStream, srcName, catalogDict; + FILE *outfile; +@@ -86,9 +86,9 @@ int main(int argc, char *argv[]) + "Usage: pdftosrc []\n"); + exit(1); + } +- fileName = new GString(argv[1]); ++ fileName = std::make_unique(argv[1]); + globalParams = std::unique_ptr(new GlobalParams()); +- doc = new PDFDoc(fileName); ++ doc = new PDFDoc(std::move(fileName)); + if (!doc->isOk()) { + fprintf(stderr, "Invalid PDF file\n"); + exit(1); +@@ -126,7 +126,7 @@ int main(int argc, char *argv[]) + fprintf(stderr, "Not a Stream object\n"); + exit(1); + } +- sprintf(buf, "%s", fileName->c_str()); ++ sprintf(buf, "%s", argv[1]); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + if (objgen == 0) +@@ -136,7 +136,7 @@ int main(int argc, char *argv[]) + outname = buf; + } else { // objnum < 0 means we are extracting the XRef table + extract_xref_table = true; +- sprintf(buf, "%s", fileName->c_str()); ++ sprintf(buf, "%s", argv[1]); + if ((p = strrchr(buf, '.')) == 0) + p = strchr(buf, 0); + sprintf(p, ".xref"); diff --git a/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch b/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch new file mode 100644 index 0000000000000000000000000000000000000000..311b6830cc2bad9654e73b078be1ff8bfee1f45e --- /dev/null +++ b/texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch @@ -0,0 +1,12 @@ +diff -up texlive-base-20220321/source/configure.poppler-22.08.0 texlive-base-20220321/source/configure +--- texlive-base-20220321/source/configure.poppler-22.08.0 2022-10-31 09:48:21.875540925 -0400 ++++ texlive-base-20220321/source/configure 2022-10-31 09:50:13.731220862 -0400 +@@ -23545,7 +23545,7 @@ printf %s "checking requested system \`x + int + main (void) + { +-GfxFont *gfxFont; gfxFont->decRefCnt(); ++GfxFont *gfxFont; gfxFont->getFlags(); + ; + return 0; + } diff --git a/texlive-base-20230311-fix-scripts.patch b/texlive-base-20230311-fix-scripts.patch new file mode 100644 index 0000000000000000000000000000000000000000..6370ef6f86e3946bd19dfbcd204161663d5edb76 --- /dev/null +++ b/texlive-base-20230311-fix-scripts.patch @@ -0,0 +1,20 @@ +diff -up ./scripts/context/perl/mptopdf.pl.fix-scripts ./scripts/context/perl/mptopdf.pl +--- ./scripts/context/perl/mptopdf.pl.fix-scripts 2023-05-25 11:52:19.149713294 -0400 ++++ ./scripts/context/perl/mptopdf.pl 2023-05-25 11:53:05.379317240 -0400 +@@ -1,5 +1,4 @@ +-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q' +- if 0; ++#! /usr/bin/perl -w + + # MikTeX users can set environment variable TEXSYSTEM to "miktex". + +diff -up ./scripts/thumbpdf/thumbpdf.pl.fix-scripts ./scripts/thumbpdf/thumbpdf.pl +--- ./scripts/thumbpdf/thumbpdf.pl.fix-scripts 2023-05-25 11:53:23.018547680 -0400 ++++ ./scripts/thumbpdf/thumbpdf.pl 2023-05-25 11:53:44.086822918 -0400 +@@ -1,5 +1,4 @@ +-eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q' +- if 0; ++#! /usr/bin/perl -w + use strict; + $^W=1; # turn warning on + # diff --git a/texlive-base-20230311-typefixes.patch b/texlive-base-20230311-typefixes.patch new file mode 100644 index 0000000000000000000000000000000000000000..a64e045c763d0278fc8f59f285e4fb904390c754 --- /dev/null +++ b/texlive-base-20230311-typefixes.patch @@ -0,0 +1,20 @@ +--- texlive-base-20230311/source/texk/web2c/pdftexdir/pdftex.ch.orig 2023-05-02 17:26:43.000000000 +0200 ++++ texlive-base-20230311/source/texk/web2c/pdftexdir/pdftex.ch 2024-01-20 21:59:58.382906926 +0100 +@@ -179,7 +179,7 @@ pdf_font_type:=xmalloc_array(eight_bits, + pdf_font_attr:=xmalloc_array(str_number, font_max); + pdf_font_blink:=xmalloc_array(internal_font_number, font_max); + pdf_font_elink:=xmalloc_array(internal_font_number, font_max); +-pdf_font_has_space_char:=xmalloc_array(internal_font_number, font_max); ++pdf_font_has_space_char:=xmalloc_array(boolean, font_max); + pdf_font_stretch:=xmalloc_array(integer, font_max); + pdf_font_shrink:=xmalloc_array(integer, font_max); + pdf_font_step:=xmalloc_array(integer, font_max); +@@ -298,7 +298,7 @@ pdf_font_type:=xmalloc_array(eight_bits, + pdf_font_attr:=xmalloc_array(str_number,font_max); + pdf_font_blink:=xmalloc_array(internal_font_number,font_max); + pdf_font_elink:=xmalloc_array(internal_font_number,font_max); +-pdf_font_has_space_char:=xmalloc_array(internal_font_number,font_max); ++pdf_font_has_space_char:=xmalloc_array(boolean,font_max); + pdf_font_stretch:=xmalloc_array(integer,font_max); + pdf_font_shrink:=xmalloc_array(integer,font_max); + pdf_font_step:=xmalloc_array(integer,font_max); diff --git a/texlive-base-libpaperv2.patch b/texlive-base-libpaperv2.patch new file mode 100644 index 0000000000000000000000000000000000000000..a764bde7efc48c016855110e65b08ef662c9addb --- /dev/null +++ b/texlive-base-libpaperv2.patch @@ -0,0 +1,102 @@ +diff -up texlive-base-20220321/source/texk/psutils/tests/playres.ps.libpaper2 texlive-base-20220321/source/texk/psutils/tests/playres.ps +--- texlive-base-20220321/source/texk/psutils/tests/playres.ps.libpaper2 2023-01-08 23:22:46.519324804 -0500 ++++ texlive-base-20220321/source/texk/psutils/tests/playres.ps 2023-01-08 23:22:56.824405896 -0500 +@@ -280,7 +280,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 15 4 bop 330 423 a Fb(5)2834 b(5)1622 3275 +@@ -293,7 +293,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 16 5 bop 330 419 a Fb(6)2834 b(6)1622 3264 +@@ -306,7 +306,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 17 6 bop 330 419 a Fb(7)2834 b(7)1622 3266 +@@ -319,7 +319,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 18 7 bop 330 419 a Fb(8)2834 b(8)1622 3264 +@@ -332,7 +332,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 19 8 bop 330 419 a Fb(9)2834 b(9)1622 3261 +@@ -345,7 +345,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 20 9 bop 330 419 a Fb(10)2668 b(10)1415 +@@ -358,7 +358,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 21 10 bop 330 419 a Fb(11)2668 b(11)1415 +@@ -371,7 +371,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 22 11 bop 330 419 a Fb(12)2668 b(12)1415 +@@ -384,7 +384,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 23 12 bop 330 419 a Fb(13)2668 b(13)1415 +@@ -397,7 +397,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 24 13 bop 330 419 a Fb(14)2668 b(14)1415 +@@ -410,7 +410,7 @@ PStoPSmatrix setmatrix + 0.704762 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto +- 595.275591 0 rlineto 0 844.647799 rlineto -595.275591 0 rlineto ++ 595.275591 0 rlineto 0 844.647797 rlineto -595.275591 0 rlineto + closepath}put initclip + PStoPSxform concat + TeXDict begin 25 14 bop 330 423 a Fb(15)2668 b(15)1415 diff --git a/texlive-base.spec b/texlive-base.spec index d5d045c3858043c0b56243c13d596baa4fff459f..e1eb8d3631783be1031af5d190c6b1c175ffd1c8 100644 --- a/texlive-base.spec +++ b/texlive-base.spec @@ -1,457 +1,591 @@ +%global shortname texlive +%global source_date 20230311 +%global source_svn svn66984 +%global source_name texlive-source-build-%{source_svn} +%{!?_texdir: %global _texdir %{_datadir}/%{shortname}} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} +%global tl_archive_url https://mirrors.ustc.edu.cn/CTAN/systems/texlive/tlnet/archive + +%global etc_fmtutil_cnf %{_sysconfdir}/texlive/web2c/fmtutil.cnf +%global usr_fmtutil_cnf %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%global fmtutil_cnf_d %{_texdir}/fmtutil.cnf.d + +# don't export private perl modules %global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\( %global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\((LatexIndent.*|PDF::Reuse.*|Pedigree.*|TeXLive.*|Tk::path_tre)\\) + +# We do not want exec perms changing. %global __brp_mangle_shebangs_exclude ^$ -Name: texlive-base -Version: 20210325 -Release: 11 -Epoch: 9 -Summary: TeX formatting system -License: ASL 2.0 and LGPL-2.1-only and Zlib and OFL-1.1 and Public Domain and LGPL-2.0-only and GPLv2+ and MPL-1.1 and Libpng and LGPL-3.0-only and BSL-1.0 and GPLv2 and GPLv3 and CPL-1.0 and IJG and MIT and LPPL-1.3c and ICU and psutils -URL: http://tug.org/texlive/ -Source0: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/texlive-20210325-source.tar.xz -Source1: macros.texlive -Source2: texlive.tlpdb -Source3: texlive-licenses.tar.xz -Source4: generate-fmtutilcnf -Source5: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic.tar.xz -Source6: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic.doc.tar.xz -Source7: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glyphlist.tar.xz -Source8: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex.tar.xz -Source9: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex.doc.tar.xz -Source10: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lyluatex.tar.xz -Source11: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lyluatex.doc.tar.xz -Source12: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/oberdiek.tar.xz -Source13: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/oberdiek.doc.tar.xz -Source14: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-en.doc.tar.xz -Source15: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/a2ping.doc.tar.xz -Source16: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/a2ping.tar.xz -Source17: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/accfonts.doc.tar.xz -Source18: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/accfonts.tar.xz -Source19: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/adhocfilelist.doc.tar.xz -Source20: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/adhocfilelist.tar.xz -Source21: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/afm2pl.tar.xz -Source22: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/aleph.doc.tar.xz -Source23: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/aleph.tar.xz -Source24: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/amstex.doc.tar.xz -Source25: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/amstex.tar.xz -Source26: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/arara.doc.tar.xz -Source27: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/arara.tar.xz -Source28: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/attachfile2.doc.tar.xz -Source29: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/attachfile2.tar.xz -Source30: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/authorindex.doc.tar.xz -Source31: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/authorindex.tar.xz -Source32: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/autosp.doc.tar.xz -Source33: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/axodraw2.doc.tar.xz -Source34: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/axodraw2.tar.xz -Source35: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bib2gls.doc.tar.xz -Source36: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bib2gls.tar.xz -Source37: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibexport.doc.tar.xz -Source38: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibexport.tar.xz -Source39: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex8.doc.tar.xz -Source40: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex8.tar.xz -Source41: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex.doc.tar.xz -Source42: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtex.tar.xz -Source43: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bibtexu.doc.tar.xz -Source44: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bundledoc.doc.tar.xz -Source45: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/bundledoc.tar.xz -Source46: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cachepic.doc.tar.xz -Source47: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cachepic.tar.xz -Source48: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checkcites.doc.tar.xz -Source49: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checkcites.tar.xz -Source50: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checklistings.doc.tar.xz -Source51: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/checklistings.tar.xz -Source52: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chklref.doc.tar.xz -Source53: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chklref.tar.xz -Source54: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chktex.doc.tar.xz -Source55: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/chktex.tar.xz -Source56: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjk-gs-integrate.doc.tar.xz -Source57: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjk-gs-integrate.tar.xz -Source58: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cjkutils.tar.xz -Source59: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/clojure-pamphlet.doc.tar.xz -Source60: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/clojure-pamphlet.tar.xz -Source61: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cluttex.doc.tar.xz -Source62: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cluttex.tar.xz -Source63: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/context.doc.tar.xz -Source64: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/context.tar.xz -Source65: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/convbkmk.doc.tar.xz -Source66: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/convbkmk.tar.xz -Source67: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/crossrefware.doc.tar.xz -Source68: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/crossrefware.tar.xz -Source69: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cslatex.tar.xz -Source70: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/csplain.tar.xz -Source71: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanbib.doc.tar.xz -Source72: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanbib.tar.xz -Source73: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanify.doc.tar.xz -Source74: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanify.tar.xz -Source75: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctan-o-mat.doc.tar.xz -Source76: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctan-o-mat.tar.xz -Source77: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanupload.doc.tar.xz -Source78: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctanupload.tar.xz -Source79: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ctie.doc.tar.xz -Source80: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cweb.doc.tar.xz -Source81: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cweb.tar.xz -Source82: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic-bin.doc.tar.xz -Source83: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/cyrillic-bin.tar.xz -Source84: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/de-macro.doc.tar.xz -Source85: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/de-macro.tar.xz -Source86: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/detex.doc.tar.xz -Source87: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/detex.tar.xz -Source88: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/diadia.doc.tar.xz -Source89: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/diadia.tar.xz -Source90: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dosepsbin.doc.tar.xz -Source91: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dosepsbin.tar.xz -Source92: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtl.doc.tar.xz -Source93: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtl.tar.xz -Source94: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtxgen.doc.tar.xz -Source95: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dtxgen.tar.xz -Source96: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvi2tty.doc.tar.xz -Source97: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvi2tty.tar.xz -Source98: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviasm.doc.tar.xz -Source99: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviasm.tar.xz -Source100: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvicopy.doc.tar.xz -Source101: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvicopy.tar.xz -Source102: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvidvi.doc.tar.xz -Source103: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvidvi.tar.xz -Source104: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviinfox.doc.tar.xz -Source105: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviinfox.tar.xz -Source106: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviljk.doc.tar.xz -Source107: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviljk.tar.xz -Source108: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dviout-util.doc.tar.xz -Source109: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipdfmx.doc.tar.xz -Source110: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipdfmx.tar.xz -Source111: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipng.doc.tar.xz -Source112: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipng.tar.xz -Source113: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipos.doc.tar.xz -Source114: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvipos.tar.xz -Source115: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvips.doc.tar.xz -Source116: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvips.tar.xz -Source117: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvisvgm.doc.tar.xz -Source118: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/dvisvgm.tar.xz -Source119: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ebong.doc.tar.xz -Source120: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ebong.tar.xz -Source121: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/eplain.doc.tar.xz -Source122: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/eplain.tar.xz -Source123: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epspdf.doc.tar.xz -Source124: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epspdf.tar.xz -Source125: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epstopdf.doc.tar.xz -Source126: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/epstopdf.tar.xz -Source127: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/exceltex.doc.tar.xz -Source128: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/exceltex.tar.xz -Source129: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fig4latex.doc.tar.xz -Source130: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fig4latex.tar.xz -Source131: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/findhyph.doc.tar.xz -Source132: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/findhyph.tar.xz -Source133: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontinst.doc.tar.xz -Source134: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontinst.tar.xz -Source135: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontools.doc.tar.xz -Source136: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontools.tar.xz -Source137: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fontware.doc.tar.xz -Source138: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fragmaster.doc.tar.xz -Source139: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/fragmaster.tar.xz -Source140: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/getmap.doc.tar.xz -Source141: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/getmap.tar.xz -Source142: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glossaries.doc.tar.xz -Source143: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/glossaries.tar.xz -Source144: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gregoriotex.doc.tar.xz -Source145: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gregoriotex.tar.xz -Source146: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gsftopk.doc.tar.xz -Source147: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/gsftopk.tar.xz -Source148: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/installfont.doc.tar.xz -Source149: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/installfont.tar.xz -Source150: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jadetex.doc.tar.xz -Source151: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jadetex.tar.xz -Source152: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jfmutil.doc.tar.xz -Source153: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/jfmutil.tar.xz -Source154: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ketcindy.doc.tar.xz -Source155: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ketcindy.tar.xz -Source156: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kotex-utils.doc.tar.xz -Source157: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kotex-utils.tar.xz -Source158: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kpathsea.doc.tar.xz -Source159: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/kpathsea.tar.xz -Source160: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/l3build.tar.xz -Source161: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/l3build.doc.tar.xz -Source162: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lacheck.doc.tar.xz -Source163: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2man.doc.tar.xz -Source164: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2man.tar.xz -Source165: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2nemeth.doc.tar.xz -Source166: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex2nemeth.tar.xz -Source167: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexdiff.doc.tar.xz -Source168: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexdiff.tar.xz -Source169: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexfileversion.doc.tar.xz -Source170: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexfileversion.tar.xz -Source171: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-git-log.doc.tar.xz -Source172: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-git-log.tar.xz -Source173: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexindent.doc.tar.xz -Source174: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexindent.tar.xz -Source175: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexpand.doc.tar.xz -Source176: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latexpand.tar.xz -Source177: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-papersize.doc.tar.xz -Source178: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/latex-papersize.tar.xz -Source179: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lcdftypetools.doc.tar.xz -Source180: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lilyglyphs.doc.tar.xz -Source181: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lilyglyphs.tar.xz -Source182: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listbib.doc.tar.xz -Source183: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listbib.tar.xz -Source184: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listings-ext.doc.tar.xz -Source185: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/listings-ext.tar.xz -Source186: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lollipop.doc.tar.xz -Source187: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lollipop.tar.xz -Source188: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltxfileinfo.doc.tar.xz -Source189: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltxfileinfo.tar.xz -Source190: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltximg.doc.tar.xz -Source191: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ltximg.tar.xz -Source192: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luaotfload.doc.tar.xz -Source193: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luaotfload.tar.xz -Source194: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luahbtex.doc.tar.xz -Source195: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luahbtex.tar.xz -Source196: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luatex.doc.tar.xz -Source197: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/luatex.tar.xz -Source198: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lwarp.doc.tar.xz -Source199: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/lwarp.tar.xz -Source200: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/make4ht.doc.tar.xz -Source201: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/make4ht.tar.xz -Source202: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makedtx.doc.tar.xz -Source203: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makedtx.tar.xz -Source204: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makeindex.doc.tar.xz -Source205: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/makeindex.tar.xz -Source206: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/match_parens.doc.tar.xz -Source207: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/match_parens.tar.xz -Source208: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mathspic.doc.tar.xz -Source209: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mathspic.tar.xz -Source210: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metafont.doc.tar.xz -Source211: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metafont.tar.xz -Source212: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metapost.doc.tar.xz -Source213: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/metapost.tar.xz -Source214: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mex.doc.tar.xz -Source215: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mex.tar.xz -Source216: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mf2pt1.doc.tar.xz -Source217: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mf2pt1.tar.xz -Source218: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mflua.tar.xz -Source219: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mfware.doc.tar.xz -Source220: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mfware.tar.xz -Source221: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkgrkindex.doc.tar.xz -Source222: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkgrkindex.tar.xz -Source223: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkjobtexmf.doc.tar.xz -Source224: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkjobtexmf.tar.xz -Source225: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkpic.doc.tar.xz -Source226: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mkpic.tar.xz -Source227: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mltex.doc.tar.xz -Source228: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mltex.tar.xz -Source229: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mptopdf.doc.tar.xz -Source230: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/mptopdf.tar.xz -Source231: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/m-tx.doc.tar.xz -Source232: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/m-tx.tar.xz -Source233: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/multibibliography.doc.tar.xz -Source234: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/multibibliography.tar.xz -Source235: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtex.doc.tar.xz -Source236: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtex.tar.xz -Source237: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtnt.doc.tar.xz -Source238: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/musixtnt.tar.xz -Source239: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/omegaware.doc.tar.xz -Source240: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/patgen.doc.tar.xz -Source241: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/patgen.tar.xz -Source242: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pax.doc.tar.xz -Source243: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pax.tar.xz -Source244: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfbook2.doc.tar.xz -Source245: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfbook2.tar.xz -Source246: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfcrop.doc.tar.xz -Source247: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfcrop.tar.xz -Source248: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfjam.doc.tar.xz -Source249: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfjam.tar.xz -Source250: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdflatexpicscale.doc.tar.xz -Source251: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdflatexpicscale.tar.xz -Source252: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex.doc.tar.xz -Source253: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex.tar.xz -Source254: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex-quiet.doc.tar.xz -Source255: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdftex-quiet.tar.xz -Source256: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfxup.doc.tar.xz -Source257: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pdfxup.tar.xz -Source258: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pedigree-perl.doc.tar.xz -Source259: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pedigree-perl.tar.xz -Source260: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/perltex.doc.tar.xz -Source261: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/perltex.tar.xz -Source262: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/petri-nets.doc.tar.xz -Source263: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/petri-nets.tar.xz -Source264: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pfarrei.doc.tar.xz -Source265: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pfarrei.tar.xz -Source266: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix.doc.tar.xz -Source267: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix-helper.doc.tar.xz -Source268: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix-helper.tar.xz -Source269: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pkfix.tar.xz -Source270: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmxchords.doc.tar.xz -Source271: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmxchords.tar.xz -Source272: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmx.doc.tar.xz -Source273: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pmx.tar.xz -Source274: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2eps.doc.tar.xz -Source275: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2eps.tar.xz -Source276: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2pk.doc.tar.xz -Source277: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ps2pk.tar.xz -Source278: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst2pdf.doc.tar.xz -Source279: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst2pdf.tar.xz -Source280: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst-pdf.doc.tar.xz -Source281: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pst-pdf.tar.xz -Source282: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/psutils.doc.tar.xz -Source283: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/psutils.tar.xz -Source284: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex2pdf.doc.tar.xz -Source285: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex2pdf.tar.xz -Source286: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex.doc.tar.xz -Source287: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex-fontmaps.doc.tar.xz -Source288: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex-fontmaps.tar.xz -Source289: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ptex.tar.xz -Source290: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/purifyeps.doc.tar.xz -Source291: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/purifyeps.tar.xz -Source292: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pygmentex.doc.tar.xz -Source293: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pygmentex.tar.xz -Source294: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pythontex.doc.tar.xz -Source295: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/pythontex.tar.xz -Source296: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/rubik.doc.tar.xz -Source297: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/rubik.tar.xz -Source298: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/seetexk.doc.tar.xz -Source299: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/seetexk.tar.xz -Source300: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/splitindex.doc.tar.xz -Source301: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/splitindex.tar.xz -Source302: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/srcredact.doc.tar.xz -Source303: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/srcredact.tar.xz -Source304: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/sty2dtx.doc.tar.xz -Source305: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/sty2dtx.tar.xz -Source306: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/svn-multi.doc.tar.xz -Source307: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/svn-multi.tar.xz -Source308: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/synctex.doc.tar.xz -Source309: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/synctex.tar.xz -Source310: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ebook.doc.tar.xz -Source311: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ebook.tar.xz -Source312: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ht.doc.tar.xz -Source313: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex4ht.tar.xz -Source314: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texcount.doc.tar.xz -Source315: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texcount.tar.xz -Source316: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdef.doc.tar.xz -Source317: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdef.tar.xz -Source318: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdiff.doc.tar.xz -Source319: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdiff.tar.xz -Source320: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdirflatten.doc.tar.xz -Source321: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdirflatten.tar.xz -Source322: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoc.doc.tar.xz -Source323: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex.doc.tar.xz -Source324: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoc.tar.xz -Source325: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoctk.tar.xz -Source326: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texdoctk.doc.tar.xz -Source327: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texfot.doc.tar.xz -Source328: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texfot.tar.xz -Source329: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive.infra.doc.tar.xz -Source330: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive.infra.tar.xz -Source331: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texliveonfly.doc.tar.xz -Source332: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texliveonfly.tar.xz -Source333: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts.doc.tar.xz -Source334: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts.tar.xz -Source335: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts-extra.doc.tar.xz -Source336: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texlive-scripts-extra.tar.xz -Source337: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texloganalyser.doc.tar.xz -Source338: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texloganalyser.tar.xz -Source339: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texosquery.doc.tar.xz -Source340: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texosquery.tar.xz -Source341: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texplate.doc.tar.xz -Source342: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texplate.tar.xz -Source343: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texsis.doc.tar.xz -Source344: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texsis.tar.xz -Source345: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tex.tar.xz -Source346: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texware.doc.tar.xz -Source347: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/texware.tar.xz -Source348: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/thumbpdf.doc.tar.xz -Source349: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/thumbpdf.tar.xz -Source350: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tie.doc.tar.xz -Source351: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tie.tar.xz -Source352: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tpic2pdftex.doc.tar.xz -Source353: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tpic2pdftex.tar.xz -Source354: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ttfutils.doc.tar.xz -Source355: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ttfutils.tar.xz -Source356: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/typeoutfileinfo.doc.tar.xz -Source357: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/typeoutfileinfo.tar.xz -Source358: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ulqda.doc.tar.xz -Source359: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/ulqda.tar.xz -Source360: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/uplatex.doc.tar.xz -Source361: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/uptex.doc.tar.xz -Source362: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/urlbst.doc.tar.xz -Source363: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/urlbst.tar.xz -Source364: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/velthuis.doc.tar.xz -Source365: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/velthuis.tar.xz -Source366: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vlna.doc.tar.xz -Source367: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vpe.doc.tar.xz -Source368: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/vpe.tar.xz -Source369: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/web.doc.tar.xz -Source370: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/web.tar.xz -Source371: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/webquiz.doc.tar.xz -Source372: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/webquiz.tar.xz -Source373: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/wordcount.doc.tar.xz -Source374: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/wordcount.tar.xz -Source375: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xdvi.doc.tar.xz -Source376: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xdvi.tar.xz -Source377: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xetex.doc.tar.xz -Source378: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xetex.tar.xz -Source379: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xindex.doc.tar.xz -Source380: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xindex.tar.xz -Source383: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xmltex.doc.tar.xz -Source384: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xmltex.tar.xz -Source385: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xpdfopen.doc.tar.xz -Source386: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/yplan.doc.tar.xz -Source387: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/yplan.tar.xz -Source388: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/optex.tar.xz -Source389: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/optex.doc.tar.xz -Source390: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/albatross.tar.xz -Source391: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/albatross.doc.tar.xz -Source392: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/git-latexdiff.tar.xz -Source393: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/git-latexdiff.doc.tar.xz -Source394: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/hyperxmp.tar.xz -Source395: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/hyperxmp.doc.tar.xz -Source396: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/light-latex-make.tar.xz -Source397: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/light-latex-make.doc.tar.xz -Source398: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/spix.tar.xz -Source399: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/spix.doc.tar.xz -Source400: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tikztosvg.tar.xz -Source401: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/tikztosvg.doc.tar.xz -Source402: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xml2pmx.tar.xz -Source403: http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final/archive/xml2pmx.doc.tar.xz - -Patch0001: tl-kpfix.patch -Patch0002: tl-format.patch -Patch0005: texlive-2016-kpathsea-texlive-path.patch - -Patch0008: texlive-20210325-texinfo-path-fix.patch -Patch0017: texlive-20180414-annocheck.patch - -Patch0020: texlive-20190410-dvisvgm-fix-libgs-detection.patch -Patch0021: texlive-20190410-tlmgr-ignore-warning.patch - -Patch0030: texlive-base-20200327-out-of-memory.patch - -Patch0032: texlive-base-20210325-mendex-weird-arch-fixes.patch -Patch0033: texlive-base-20210325-no-setpdfwrite.patch - -Patch0034: CVE-2023-32700.patch -Patch0035: CVE-2023-46048.patch -Patch0036: CVE-2023-46051.patch - -Patch0037: reverted-changes-to-Ghostscript-class.patch - -BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ -BuildRequires: gd-devel freetype-devel libpng-devel zlib-devel potrace-devel -BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel -BuildRequires: libpaper-devel autoconf automake libtool libgs-devel -BuildRequires: gmp-devel mpfr-devel python3-devel poppler-devel t1utils -# For macros. -BuildRequires: python3-devel -BuildRequires: python3-setuptools -BuildRequires: chrpath tex(expl3.sty) -Provides: texlive-cjk-gs-integrate = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate <= 7:20180414 -Provides: tex-cjk-gs-integrate = %{epoch}:20210325-%{release} -Obsoletes: tex-cjk-gs-integrate <= 7:20180414 -Provides: texlive-cjk-gs-integrate-bin = %{epoch}:20210325-%{release} -Provides: tex-cjk-gs-integrate-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20180414 -Obsoletes: tex-cjk-gs-integrate-bin <= 7:20180414 -Provides: texlive-cjk-gs-integrate-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20180414 +# We have a circular dep on latex due to xindy +%bcond_with bootstrap + +# disbale psutils, command psresize test fail +%bcond_without psutils + +# Upstream no longer supports poppler. We've been hacking it in, but... maybe we should stop? +%bcond_with poppler + +Name: %{shortname}-base +Version: %{source_date} +Release: 1 +Epoch: 10 +Summary: TeX formatting system +# The only files in the base package are directories, cache, and license texts +# So we'll just list the license texts. This is also a bit of a lie, since most of these license texts do not apply to themselves. +License: Apache-2.0 AND Artistic-2.0 AND BSD-3-Clause AND GFDL-1.1-or-later AND GPL-1.0-or-later AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND GPL-3.0-or-later AND Knuth-CTAN AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND LPPL-1.3a AND LPPL-1.3c AND MIT AND OFL-1.1 AND Public Domain +URL: http://tug.org/texlive/ +# Source0: https://ctan.math.illinois.edu/systems/texlive/Source/%%{source_name}.tar.xz +# Using a specific tag to fix the LuaTeX CVE-2023-32700 +Source0: https://github.com/TeX-Live/texlive-source/archive/refs/tags/build-%{source_svn}.tar.gz + +Source1: macros.texlive +Source2: http://tug.ctan.org/systems/texlive/tlnet/tlpkg/texlive.tlpdb +Source3: texlive-licenses.tar.xz +Source4: generate-fmtutilcnf +# These noarch components are packed wrong upstream (do not unpack into texmf-dist) +Source5: %{tl_archive_url}/cyrillic.tar.xz +Source6: %{tl_archive_url}/cyrillic.doc.tar.xz +Source7: %{tl_archive_url}/glyphlist.tar.xz +Source8: %{tl_archive_url}/latex.tar.xz +Source9: %{tl_archive_url}/latex.doc.tar.xz +Source10: %{tl_archive_url}/lyluatex.tar.xz +Source11: %{tl_archive_url}/lyluatex.doc.tar.xz +Source12: %{tl_archive_url}/oberdiek.tar.xz +Source13: %{tl_archive_url}/oberdiek.doc.tar.xz +Source14: %{tl_archive_url}/texlive-en.doc.tar.xz +# These are the noarch components for the built binaries. +Source15: %{tl_archive_url}/a2ping.doc.tar.xz +Source16: %{tl_archive_url}/a2ping.tar.xz +Source17: %{tl_archive_url}/accfonts.doc.tar.xz +Source18: %{tl_archive_url}/accfonts.tar.xz +Source19: %{tl_archive_url}/adhocfilelist.doc.tar.xz +Source20: %{tl_archive_url}/adhocfilelist.tar.xz +Source21: %{tl_archive_url}/afm2pl.tar.xz +Source22: %{tl_archive_url}/aleph.doc.tar.xz +Source23: %{tl_archive_url}/aleph.tar.xz +Source24: %{tl_archive_url}/amstex.doc.tar.xz +Source25: %{tl_archive_url}/amstex.tar.xz +Source26: %{tl_archive_url}/arara.doc.tar.xz +Source27: %{tl_archive_url}/arara.tar.xz +Source28: %{tl_archive_url}/attachfile2.doc.tar.xz +Source29: %{tl_archive_url}/attachfile2.tar.xz +Source30: %{tl_archive_url}/authorindex.doc.tar.xz +Source31: %{tl_archive_url}/authorindex.tar.xz +Source32: %{tl_archive_url}/autosp.doc.tar.xz +Source33: %{tl_archive_url}/axodraw2.doc.tar.xz +Source34: %{tl_archive_url}/axodraw2.tar.xz +Source35: %{tl_archive_url}/bib2gls.doc.tar.xz +Source36: %{tl_archive_url}/bib2gls.tar.xz +Source37: %{tl_archive_url}/bibexport.doc.tar.xz +Source38: %{tl_archive_url}/bibexport.tar.xz +Source39: %{tl_archive_url}/bibtex8.doc.tar.xz +Source40: %{tl_archive_url}/bibtex8.tar.xz +Source41: %{tl_archive_url}/bibtex.doc.tar.xz +Source42: %{tl_archive_url}/bibtex.tar.xz +Source43: %{tl_archive_url}/bibtexu.doc.tar.xz +Source44: %{tl_archive_url}/bundledoc.doc.tar.xz +Source45: %{tl_archive_url}/bundledoc.tar.xz +Source46: %{tl_archive_url}/cachepic.doc.tar.xz +Source47: %{tl_archive_url}/cachepic.tar.xz +Source48: %{tl_archive_url}/checkcites.doc.tar.xz +Source49: %{tl_archive_url}/checkcites.tar.xz +Source50: %{tl_archive_url}/checklistings.doc.tar.xz +Source51: %{tl_archive_url}/checklistings.tar.xz +Source52: %{tl_archive_url}/chklref.doc.tar.xz +Source53: %{tl_archive_url}/chklref.tar.xz +Source54: %{tl_archive_url}/chktex.doc.tar.xz +Source55: %{tl_archive_url}/chktex.tar.xz +Source56: %{tl_archive_url}/cjk-gs-integrate.doc.tar.xz +Source57: %{tl_archive_url}/cjk-gs-integrate.tar.xz +Source58: %{tl_archive_url}/cjkutils.tar.xz +Source59: %{tl_archive_url}/clojure-pamphlet.doc.tar.xz +Source60: %{tl_archive_url}/clojure-pamphlet.tar.xz +Source61: %{tl_archive_url}/cluttex.doc.tar.xz +Source62: %{tl_archive_url}/cluttex.tar.xz +Source63: %{tl_archive_url}/context.doc.tar.xz +Source64: %{tl_archive_url}/context.tar.xz +Source65: %{tl_archive_url}/convbkmk.doc.tar.xz +Source66: %{tl_archive_url}/convbkmk.tar.xz +Source67: %{tl_archive_url}/crossrefware.doc.tar.xz +Source68: %{tl_archive_url}/crossrefware.tar.xz +Source69: %{tl_archive_url}/cslatex.tar.xz +Source70: %{tl_archive_url}/csplain.tar.xz +Source71: %{tl_archive_url}/ctanbib.doc.tar.xz +Source72: %{tl_archive_url}/ctanbib.tar.xz +Source73: %{tl_archive_url}/ctanify.doc.tar.xz +Source74: %{tl_archive_url}/ctanify.tar.xz +Source75: %{tl_archive_url}/ctan-o-mat.doc.tar.xz +Source76: %{tl_archive_url}/ctan-o-mat.tar.xz +Source77: %{tl_archive_url}/ctanupload.doc.tar.xz +Source78: %{tl_archive_url}/ctanupload.tar.xz +Source79: %{tl_archive_url}/ctie.doc.tar.xz +Source80: %{tl_archive_url}/cweb.doc.tar.xz +Source81: %{tl_archive_url}/cweb.tar.xz +Source82: %{tl_archive_url}/cyrillic-bin.doc.tar.xz +Source83: %{tl_archive_url}/cyrillic-bin.tar.xz +Source84: %{tl_archive_url}/de-macro.doc.tar.xz +Source85: %{tl_archive_url}/de-macro.tar.xz +Source86: %{tl_archive_url}/detex.doc.tar.xz +Source87: %{tl_archive_url}/detex.tar.xz +Source88: %{tl_archive_url}/diadia.doc.tar.xz +Source89: %{tl_archive_url}/diadia.tar.xz +Source90: %{tl_archive_url}/dosepsbin.doc.tar.xz +Source91: %{tl_archive_url}/dosepsbin.tar.xz +Source92: %{tl_archive_url}/dtl.doc.tar.xz +Source93: %{tl_archive_url}/dtl.tar.xz +Source94: %{tl_archive_url}/dtxgen.doc.tar.xz +Source95: %{tl_archive_url}/dtxgen.tar.xz +Source96: %{tl_archive_url}/dvi2tty.doc.tar.xz +Source97: %{tl_archive_url}/dvi2tty.tar.xz +Source98: %{tl_archive_url}/dviasm.doc.tar.xz +Source99: %{tl_archive_url}/dviasm.tar.xz +Source100: %{tl_archive_url}/dvicopy.doc.tar.xz +Source101: %{tl_archive_url}/dvicopy.tar.xz +Source102: %{tl_archive_url}/dvidvi.doc.tar.xz +Source103: %{tl_archive_url}/dvidvi.tar.xz +Source104: %{tl_archive_url}/dviinfox.doc.tar.xz +Source105: %{tl_archive_url}/dviinfox.tar.xz +Source106: %{tl_archive_url}/dviljk.doc.tar.xz +Source107: %{tl_archive_url}/dviljk.tar.xz +Source108: %{tl_archive_url}/dviout-util.doc.tar.xz +Source109: %{tl_archive_url}/dvipdfmx.doc.tar.xz +Source110: %{tl_archive_url}/dvipdfmx.tar.xz +Source111: %{tl_archive_url}/dvipng.doc.tar.xz +Source112: %{tl_archive_url}/dvipng.tar.xz +Source113: %{tl_archive_url}/dvipos.doc.tar.xz +Source114: %{tl_archive_url}/dvipos.tar.xz +Source115: %{tl_archive_url}/dvips.doc.tar.xz +Source116: %{tl_archive_url}/dvips.tar.xz +Source117: %{tl_archive_url}/dvisvgm.doc.tar.xz +Source118: %{tl_archive_url}/dvisvgm.tar.xz +Source119: %{tl_archive_url}/ebong.doc.tar.xz +Source120: %{tl_archive_url}/ebong.tar.xz +Source121: %{tl_archive_url}/eplain.doc.tar.xz +Source122: %{tl_archive_url}/eplain.tar.xz +Source123: %{tl_archive_url}/epspdf.doc.tar.xz +Source124: %{tl_archive_url}/epspdf.tar.xz +Source125: %{tl_archive_url}/epstopdf.doc.tar.xz +Source126: %{tl_archive_url}/epstopdf.tar.xz +Source127: %{tl_archive_url}/exceltex.doc.tar.xz +Source128: %{tl_archive_url}/exceltex.tar.xz +Source129: %{tl_archive_url}/fig4latex.doc.tar.xz +Source130: %{tl_archive_url}/fig4latex.tar.xz +Source131: %{tl_archive_url}/findhyph.doc.tar.xz +Source132: %{tl_archive_url}/findhyph.tar.xz +Source133: %{tl_archive_url}/fontinst.doc.tar.xz +Source134: %{tl_archive_url}/fontinst.tar.xz +Source135: %{tl_archive_url}/fontools.doc.tar.xz +Source136: %{tl_archive_url}/fontools.tar.xz +Source137: %{tl_archive_url}/fontware.doc.tar.xz +Source138: %{tl_archive_url}/fragmaster.doc.tar.xz +Source139: %{tl_archive_url}/fragmaster.tar.xz +Source140: %{tl_archive_url}/getmap.doc.tar.xz +Source141: %{tl_archive_url}/getmap.tar.xz +Source142: %{tl_archive_url}/glossaries.doc.tar.xz +Source143: %{tl_archive_url}/glossaries.tar.xz +Source144: %{tl_archive_url}/gregoriotex.doc.tar.xz +Source145: %{tl_archive_url}/gregoriotex.tar.xz +Source146: %{tl_archive_url}/gsftopk.doc.tar.xz +Source147: %{tl_archive_url}/gsftopk.tar.xz +Source148: %{tl_archive_url}/installfont.doc.tar.xz +Source149: %{tl_archive_url}/installfont.tar.xz +Source150: %{tl_archive_url}/jadetex.doc.tar.xz +Source151: %{tl_archive_url}/jadetex.tar.xz +Source152: %{tl_archive_url}/jfmutil.doc.tar.xz +Source153: %{tl_archive_url}/jfmutil.tar.xz +Source154: %{tl_archive_url}/ketcindy.doc.tar.xz +Source155: %{tl_archive_url}/ketcindy.tar.xz +Source156: %{tl_archive_url}/kotex-utils.doc.tar.xz +Source157: %{tl_archive_url}/kotex-utils.tar.xz +Source158: %{tl_archive_url}/kpathsea.doc.tar.xz +Source159: %{tl_archive_url}/kpathsea.tar.xz +Source160: %{tl_archive_url}/l3build.tar.xz +Source161: %{tl_archive_url}/l3build.doc.tar.xz +Source162: %{tl_archive_url}/lacheck.doc.tar.xz +Source163: %{tl_archive_url}/latex2man.doc.tar.xz +Source164: %{tl_archive_url}/latex2man.tar.xz +Source165: %{tl_archive_url}/latex2nemeth.doc.tar.xz +Source166: %{tl_archive_url}/latex2nemeth.tar.xz +Source167: %{tl_archive_url}/latexdiff.doc.tar.xz +Source168: %{tl_archive_url}/latexdiff.tar.xz +Source169: %{tl_archive_url}/latexfileversion.doc.tar.xz +Source170: %{tl_archive_url}/latexfileversion.tar.xz +Source171: %{tl_archive_url}/latex-git-log.doc.tar.xz +Source172: %{tl_archive_url}/latex-git-log.tar.xz +Source173: %{tl_archive_url}/latexindent.doc.tar.xz +Source174: %{tl_archive_url}/latexindent.tar.xz +Source175: %{tl_archive_url}/latexpand.doc.tar.xz +Source176: %{tl_archive_url}/latexpand.tar.xz +Source177: %{tl_archive_url}/latex-papersize.doc.tar.xz +Source178: %{tl_archive_url}/latex-papersize.tar.xz +Source179: %{tl_archive_url}/lcdftypetools.doc.tar.xz +Source180: %{tl_archive_url}/lilyglyphs.doc.tar.xz +Source181: %{tl_archive_url}/lilyglyphs.tar.xz +Source182: %{tl_archive_url}/listbib.doc.tar.xz +Source183: %{tl_archive_url}/listbib.tar.xz +Source184: %{tl_archive_url}/listings-ext.doc.tar.xz +Source185: %{tl_archive_url}/listings-ext.tar.xz +Source186: %{tl_archive_url}/lollipop.doc.tar.xz +Source187: %{tl_archive_url}/lollipop.tar.xz +Source188: %{tl_archive_url}/ltxfileinfo.doc.tar.xz +Source189: %{tl_archive_url}/ltxfileinfo.tar.xz +Source190: %{tl_archive_url}/ltximg.doc.tar.xz +Source191: %{tl_archive_url}/ltximg.tar.xz +Source192: %{tl_archive_url}/luaotfload.doc.tar.xz +Source193: %{tl_archive_url}/luaotfload.tar.xz +Source194: %{tl_archive_url}/luahbtex.doc.tar.xz +Source195: %{tl_archive_url}/luahbtex.tar.xz +Source196: %{tl_archive_url}/luatex.doc.tar.xz +Source197: %{tl_archive_url}/luatex.tar.xz +Source198: %{tl_archive_url}/lwarp.doc.tar.xz +Source199: %{tl_archive_url}/lwarp.tar.xz +Source200: %{tl_archive_url}/make4ht.doc.tar.xz +Source201: %{tl_archive_url}/make4ht.tar.xz +Source202: %{tl_archive_url}/makedtx.doc.tar.xz +Source203: %{tl_archive_url}/makedtx.tar.xz +Source204: %{tl_archive_url}/makeindex.doc.tar.xz +Source205: %{tl_archive_url}/makeindex.tar.xz +Source206: %{tl_archive_url}/match_parens.doc.tar.xz +Source207: %{tl_archive_url}/match_parens.tar.xz +Source208: %{tl_archive_url}/mathspic.doc.tar.xz +Source209: %{tl_archive_url}/mathspic.tar.xz +Source210: %{tl_archive_url}/metafont.doc.tar.xz +Source211: %{tl_archive_url}/metafont.tar.xz +Source212: %{tl_archive_url}/metapost.doc.tar.xz +Source213: %{tl_archive_url}/metapost.tar.xz +Source214: %{tl_archive_url}/mex.doc.tar.xz +Source215: %{tl_archive_url}/mex.tar.xz +Source216: %{tl_archive_url}/mf2pt1.doc.tar.xz +Source217: %{tl_archive_url}/mf2pt1.tar.xz +Source218: %{tl_archive_url}/mflua.tar.xz +Source219: %{tl_archive_url}/mfware.doc.tar.xz +Source220: %{tl_archive_url}/mfware.tar.xz +Source221: %{tl_archive_url}/mkgrkindex.doc.tar.xz +Source222: %{tl_archive_url}/mkgrkindex.tar.xz +Source223: %{tl_archive_url}/mkjobtexmf.doc.tar.xz +Source224: %{tl_archive_url}/mkjobtexmf.tar.xz +Source225: %{tl_archive_url}/mkpic.doc.tar.xz +Source226: %{tl_archive_url}/mkpic.tar.xz +Source227: %{tl_archive_url}/mltex.doc.tar.xz +Source228: %{tl_archive_url}/mltex.tar.xz +Source229: %{tl_archive_url}/mptopdf.doc.tar.xz +Source230: %{tl_archive_url}/mptopdf.tar.xz +Source231: %{tl_archive_url}/m-tx.doc.tar.xz +Source232: %{tl_archive_url}/m-tx.tar.xz +Source233: %{tl_archive_url}/multibibliography.doc.tar.xz +Source234: %{tl_archive_url}/multibibliography.tar.xz +Source235: %{tl_archive_url}/musixtex.doc.tar.xz +Source236: %{tl_archive_url}/musixtex.tar.xz +Source237: %{tl_archive_url}/musixtnt.doc.tar.xz +Source238: %{tl_archive_url}/musixtnt.tar.xz +Source239: %{tl_archive_url}/omegaware.doc.tar.xz +Source240: %{tl_archive_url}/patgen.doc.tar.xz +Source241: %{tl_archive_url}/patgen.tar.xz +Source242: %{tl_archive_url}/pax.doc.tar.xz +Source243: %{tl_archive_url}/pax.tar.xz +Source244: %{tl_archive_url}/pdfbook2.doc.tar.xz +Source245: %{tl_archive_url}/pdfbook2.tar.xz +Source246: %{tl_archive_url}/pdfcrop.doc.tar.xz +Source247: %{tl_archive_url}/pdfcrop.tar.xz +Source248: %{tl_archive_url}/pdfjam.doc.tar.xz +Source249: %{tl_archive_url}/pdfjam.tar.xz +Source250: %{tl_archive_url}/pdflatexpicscale.doc.tar.xz +Source251: %{tl_archive_url}/pdflatexpicscale.tar.xz +Source252: %{tl_archive_url}/pdftex.doc.tar.xz +Source253: %{tl_archive_url}/pdftex.tar.xz +Source254: %{tl_archive_url}/pdftex-quiet.doc.tar.xz +Source255: %{tl_archive_url}/pdftex-quiet.tar.xz +Source256: %{tl_archive_url}/pdfxup.doc.tar.xz +Source257: %{tl_archive_url}/pdfxup.tar.xz +Source258: %{tl_archive_url}/pedigree-perl.doc.tar.xz +Source259: %{tl_archive_url}/pedigree-perl.tar.xz +Source260: %{tl_archive_url}/perltex.doc.tar.xz +Source261: %{tl_archive_url}/perltex.tar.xz +Source262: %{tl_archive_url}/petri-nets.doc.tar.xz +Source263: %{tl_archive_url}/petri-nets.tar.xz +Source264: %{tl_archive_url}/pfarrei.doc.tar.xz +Source265: %{tl_archive_url}/pfarrei.tar.xz +Source266: %{tl_archive_url}/pkfix.doc.tar.xz +Source267: %{tl_archive_url}/pkfix-helper.doc.tar.xz +Source268: %{tl_archive_url}/pkfix-helper.tar.xz +Source269: %{tl_archive_url}/pkfix.tar.xz +Source270: %{tl_archive_url}/pmxchords.doc.tar.xz +Source271: %{tl_archive_url}/pmxchords.tar.xz +Source272: %{tl_archive_url}/pmx.doc.tar.xz +Source273: %{tl_archive_url}/pmx.tar.xz +Source274: %{tl_archive_url}/ps2eps.doc.tar.xz +Source275: %{tl_archive_url}/ps2eps.tar.xz +Source276: %{tl_archive_url}/ps2pk.doc.tar.xz +Source277: %{tl_archive_url}/ps2pk.tar.xz +Source278: %{tl_archive_url}/pst2pdf.doc.tar.xz +Source279: %{tl_archive_url}/pst2pdf.tar.xz +Source280: %{tl_archive_url}/pst-pdf.doc.tar.xz +Source281: %{tl_archive_url}/pst-pdf.tar.xz +Source282: %{tl_archive_url}/psutils.doc.tar.xz +Source283: %{tl_archive_url}/psutils.tar.xz +Source284: %{tl_archive_url}/ptex2pdf.doc.tar.xz +Source285: %{tl_archive_url}/ptex2pdf.tar.xz +Source286: %{tl_archive_url}/ptex.doc.tar.xz +Source287: %{tl_archive_url}/ptex-fontmaps.doc.tar.xz +Source288: %{tl_archive_url}/ptex-fontmaps.tar.xz +Source289: %{tl_archive_url}/ptex.tar.xz +Source290: %{tl_archive_url}/purifyeps.doc.tar.xz +Source291: %{tl_archive_url}/purifyeps.tar.xz +Source292: %{tl_archive_url}/pygmentex.doc.tar.xz +Source293: %{tl_archive_url}/pygmentex.tar.xz +Source294: %{tl_archive_url}/pythontex.doc.tar.xz +Source295: %{tl_archive_url}/pythontex.tar.xz +Source296: %{tl_archive_url}/rubik.doc.tar.xz +Source297: %{tl_archive_url}/rubik.tar.xz +Source298: %{tl_archive_url}/seetexk.doc.tar.xz +Source299: %{tl_archive_url}/seetexk.tar.xz +Source300: %{tl_archive_url}/splitindex.doc.tar.xz +Source301: %{tl_archive_url}/splitindex.tar.xz +Source302: %{tl_archive_url}/srcredact.doc.tar.xz +Source303: %{tl_archive_url}/srcredact.tar.xz +Source304: %{tl_archive_url}/sty2dtx.doc.tar.xz +Source305: %{tl_archive_url}/sty2dtx.tar.xz +Source306: %{tl_archive_url}/svn-multi.doc.tar.xz +Source307: %{tl_archive_url}/svn-multi.tar.xz +Source308: %{tl_archive_url}/synctex.doc.tar.xz +Source309: %{tl_archive_url}/synctex.tar.xz +Source310: %{tl_archive_url}/tex4ebook.doc.tar.xz +Source311: %{tl_archive_url}/tex4ebook.tar.xz +Source312: %{tl_archive_url}/tex4ht.doc.tar.xz +Source313: %{tl_archive_url}/tex4ht.tar.xz +Source314: %{tl_archive_url}/texcount.doc.tar.xz +Source315: %{tl_archive_url}/texcount.tar.xz +Source316: %{tl_archive_url}/texdef.doc.tar.xz +Source317: %{tl_archive_url}/texdef.tar.xz +Source318: %{tl_archive_url}/texdiff.doc.tar.xz +Source319: %{tl_archive_url}/texdiff.tar.xz +Source320: %{tl_archive_url}/texdirflatten.doc.tar.xz +Source321: %{tl_archive_url}/texdirflatten.tar.xz +Source322: %{tl_archive_url}/texdoc.doc.tar.xz +Source323: %{tl_archive_url}/tex.doc.tar.xz +Source324: %{tl_archive_url}/texdoc.tar.xz +Source325: %{tl_archive_url}/texdoctk.tar.xz +Source326: %{tl_archive_url}/texdoctk.doc.tar.xz +Source327: %{tl_archive_url}/texfot.doc.tar.xz +Source328: %{tl_archive_url}/texfot.tar.xz +Source329: %{tl_archive_url}/texlive.infra.doc.tar.xz +Source330: %{tl_archive_url}/texlive.infra.tar.xz +Source331: %{tl_archive_url}/texliveonfly.doc.tar.xz +Source332: %{tl_archive_url}/texliveonfly.tar.xz +Source333: %{tl_archive_url}/texlive-scripts.doc.tar.xz +Source334: %{tl_archive_url}/texlive-scripts.tar.xz +Source335: %{tl_archive_url}/texlive-scripts-extra.doc.tar.xz +Source336: %{tl_archive_url}/texlive-scripts-extra.tar.xz +Source337: %{tl_archive_url}/texloganalyser.doc.tar.xz +Source338: %{tl_archive_url}/texloganalyser.tar.xz +Source339: %{tl_archive_url}/texosquery.doc.tar.xz +Source340: %{tl_archive_url}/texosquery.tar.xz +Source341: %{tl_archive_url}/texplate.doc.tar.xz +Source342: %{tl_archive_url}/texplate.tar.xz +Source343: %{tl_archive_url}/texsis.doc.tar.xz +Source344: %{tl_archive_url}/texsis.tar.xz +Source345: %{tl_archive_url}/tex.tar.xz +Source346: %{tl_archive_url}/texware.doc.tar.xz +Source347: %{tl_archive_url}/texware.tar.xz +Source348: %{tl_archive_url}/thumbpdf.doc.tar.xz +Source349: %{tl_archive_url}/thumbpdf.tar.xz +Source350: %{tl_archive_url}/tie.doc.tar.xz +Source351: %{tl_archive_url}/tie.tar.xz +Source352: %{tl_archive_url}/tpic2pdftex.doc.tar.xz +Source353: %{tl_archive_url}/tpic2pdftex.tar.xz +Source354: %{tl_archive_url}/ttfutils.doc.tar.xz +Source355: %{tl_archive_url}/ttfutils.tar.xz +Source356: %{tl_archive_url}/typeoutfileinfo.doc.tar.xz +Source357: %{tl_archive_url}/typeoutfileinfo.tar.xz +Source358: %{tl_archive_url}/ulqda.doc.tar.xz +Source359: %{tl_archive_url}/ulqda.tar.xz +Source360: %{tl_archive_url}/uplatex.doc.tar.xz +Source361: %{tl_archive_url}/uptex.doc.tar.xz +Source362: %{tl_archive_url}/urlbst.doc.tar.xz +Source363: %{tl_archive_url}/urlbst.tar.xz +Source364: %{tl_archive_url}/velthuis.doc.tar.xz +Source365: %{tl_archive_url}/velthuis.tar.xz +Source366: %{tl_archive_url}/vlna.doc.tar.xz +Source367: %{tl_archive_url}/vpe.doc.tar.xz +Source368: %{tl_archive_url}/vpe.tar.xz +Source369: %{tl_archive_url}/web.doc.tar.xz +Source370: %{tl_archive_url}/web.tar.xz +Source371: %{tl_archive_url}/webquiz.doc.tar.xz +Source372: %{tl_archive_url}/webquiz.tar.xz +Source373: %{tl_archive_url}/wordcount.doc.tar.xz +Source374: %{tl_archive_url}/wordcount.tar.xz +Source375: %{tl_archive_url}/xdvi.doc.tar.xz +Source376: %{tl_archive_url}/xdvi.tar.xz +Source377: %{tl_archive_url}/xetex.doc.tar.xz +Source378: %{tl_archive_url}/xetex.tar.xz +Source379: %{tl_archive_url}/xindex.doc.tar.xz +Source380: %{tl_archive_url}/xindex.tar.xz +Source381: %{tl_archive_url}/xindy.doc.tar.xz +Source382: %{tl_archive_url}/xindy.tar.xz +Source383: %{tl_archive_url}/xmltex.doc.tar.xz +Source384: %{tl_archive_url}/xmltex.tar.xz +Source385: %{tl_archive_url}/xpdfopen.doc.tar.xz +Source386: %{tl_archive_url}/yplan.doc.tar.xz +Source387: %{tl_archive_url}/yplan.tar.xz +Source388: %{tl_archive_url}/optex.tar.xz +Source389: %{tl_archive_url}/optex.doc.tar.xz +# 2021 +Source390: %{tl_archive_url}/albatross.tar.xz +Source391: %{tl_archive_url}/albatross.doc.tar.xz +Source392: %{tl_archive_url}/git-latexdiff.tar.xz +Source393: %{tl_archive_url}/git-latexdiff.doc.tar.xz +Source394: %{tl_archive_url}/hyperxmp.tar.xz +Source395: %{tl_archive_url}/hyperxmp.doc.tar.xz +Source396: %{tl_archive_url}/light-latex-make.tar.xz +Source397: %{tl_archive_url}/light-latex-make.doc.tar.xz +Source398: %{tl_archive_url}/spix.tar.xz +Source399: %{tl_archive_url}/spix.doc.tar.xz +Source400: %{tl_archive_url}/tikztosvg.tar.xz +Source401: %{tl_archive_url}/tikztosvg.doc.tar.xz +Source402: %{tl_archive_url}/xml2pmx.tar.xz +Source403: %{tl_archive_url}/xml2pmx.doc.tar.xz +Source404: %{tl_archive_url}/luajittex.doc.tar.xz +Source405: %{tl_archive_url}/pdftosrc.doc.tar.xz +# 2022 +Source406: %{tl_archive_url}/citation-style-language.tar.xz +Source407: %{tl_archive_url}/citation-style-language.doc.tar.xz +Source408: %{tl_archive_url}/hitex.tar.xz +Source409: %{tl_archive_url}/hitex.doc.tar.xz +Source410: %{tl_archive_url}/luafindfont.doc.tar.xz +Source411: %{tl_archive_url}/optexcount.tar.xz +Source412: %{tl_archive_url}/optexcount.doc.tar.xz +Source413: %{tl_archive_url}/texlogfilter.doc.tar.xz +Source414: %{tl_archive_url}/texlogsieve.doc.tar.xz +Source415: %{tl_archive_url}/texlogsieve.tar.xz +# 2023 +Source416: %{tl_archive_url}/digestif.tar.xz +Source417: %{tl_archive_url}/digestif.doc.tar.xz +Source418: %{tl_archive_url}/bibcop.tar.xz +Source419: %{tl_archive_url}/bibcop.doc.tar.xz +Source420: %{tl_archive_url}/pagelayout.tar.xz +Source421: %{tl_archive_url}/pagelayout.doc.tar.xz +Source422: %{tl_archive_url}/texaccents.tar.xz +Source423: %{tl_archive_url}/texaccents.doc.tar.xz +Source424: %{tl_archive_url}/upmendex.doc.tar.xz +Source425: %{tl_archive_url}/texaccents.source.tar.xz + +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch5: texlive-2016-kpathsea-texlive-path.patch +# fixes from arch and upstream texlive +Patch7: texlive-20210325-new-poppler.patch +# fix texmf.cnf so that it finds texinfo bits in Fedora +Patch8: texlive-20230311-texinfo-path-fix.patch +# These tests only fail on 32 bit arches with gcc8 +Patch11: texlive-20220321-disable-more-failing-tests.patch +# Another test which fails on 32 bit arches (in F30+) +# probably because of stricter malloc checks in glibc. +# https://bugzilla.redhat.com/show_bug.cgi?id=1631847 +# Filed issue upstream, no resolution yet. +Patch15: texlive-base-20180414-disable-omegafonts-check-test.patch +# fix annocheck issue detected by rpmdiff +Patch17: texlive-20180414-annocheck.patch +Patch18: texlive-20210325-poppler-0.73.patch +# Fix libgs detection in configure/configure.ac in dvisvgm +# Patch20: texlive-20190410-dvisvgm-fix-libgs-detection.patch +# Since we need to include tlmgr.pl for texconfig +# lets try to keep people from shooting themselves with it +Patch21: texlive-20190410-tlmgr-ignore-warning.patch +Patch23: texlive-20210325-poppler-0.84.patch +# Fixes for poppler 0.90 (f33+) +Patch29: texlive-20200327-poppler-0.90.patch +# Fix pdflatex run out of memory +Patch30: texlive-base-20220321-out-of-memory.patch +# Fix configure to properly detect poppler +Patch31: texlive-base-20210325-configure-poppler-xpdf-fix.patch + +# Just remove obsolete decRefCnt check from configure, valid in either case. +Patch32: texlive-base-20220321-xpdf-no-GfxFont-decRefCnt.patch + +# Remove deprecated setpdfwrite ghostscript call +# Patch33: texlive-base-20210325-no-setpdfwrite.patch + +# Poppler 22 +Patch34: texlive-base-20210325-poppler-22.01.0.patch +# Fix crash in handling Group +Patch35: texlive-base-20210325-pdftoepdf-fix-crash.patch +# Poppler 22.08.0 +Patch36: texlive-base-20220321-poppler-22.08.0.patch + +# libpaper v2 changes +# 1. one psutils test needs adjustment, see https://github.com/rrthomas/libpaper/issues/23 +Patch37: texlive-base-libpaperv2.patch + +# Fix issue where off_t could be set incorrectly on i686 due to order of header load +Patch44: texlive-base-20220321-pdf-header-order-fix.patch + +# Fix texmfcnf.lua for Fedora layout (thanks to Preining Norbert) +Patch45: texlive-fedora-texmfcnf.lua.patch + +# Fix interpreter on perl scripts (thanks again to Debian) +Patch46: texlive-base-20230311-fix-scripts.patch + +# fix build error with gcc-14 +Patch48: texlive-base-20230311-typefixes.patch + +# fix buid error with gcc-15 +Patch49: texlive-2023-gcc15-ftbfs.patch + +# EUC-JP test fail +Patch50: skip-tests-for-Shift_JIS,EUC-JP-if-conversion-failed.patch + +Patch51: CVE-2023-46048.patch +Patch52: CVE-2023-46051.patch + +# Can't do this because it causes everything else to be noarch +# BuildArch: noarch +BuildRequires: make +BuildRequires: gcc gcc-c++ +BuildRequires: xz libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ +BuildRequires: gd-devel +BuildRequires: teckit-devel >= 2.5.7 +BuildRequires: freetype-devel libpng-devel zlib-devel t1utils +%if %{with poppler} +BuildRequires: poppler-devel +%else +#BuildRequires: xpdf-devel >= 4.03 +BuildRequires: glib2-devel fontconfig-devel +%endif +BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel +BuildRequires: ghostscript-devel +BuildRequires: libpaper-devel potrace-devel autoconf automake libtool +BuildRequires: gmp-devel mpfr-devel +# This is really for macros. +BuildRequires: python3-devel +BuildRequires: python3-setuptools +%if %{without bootstrap} +# This is for xindy +BuildRequires: clisp-devel +BuildRequires: texlive-cyrillic, texlive-latex, texlive-metafont, texlive-cm-super, texlive-ec +%endif +# This is temporary to fix build while missing kpathsea dep is active +BuildRequires: texlive-texlive-scripts +# This is needed for a test +BuildRequires: texlive-amsfonts +# RPATH DIE DIE DIE +BuildRequires: chrpath +# Break an ugly dep loop +BuildRequires: tex(expl3.sty) + + +# Cleanup Provides/Obsoletes +# texlive-cjk-gs-integrate (depackaged 2018-03-09) +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate <= 7:20170520 +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Obsoletes: tex-cjk-gs-integrate <= 7:20170520 +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin <= 7:20170520 +Obsoletes: tex-cjk-gs-integrate-bin <= 7:20170520 +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc <= 7:20170520 %description The TeX Live software distribution offers a complete TeX system for a @@ -463,17 +597,21 @@ of TeX macros and font libraries. The distribution includes extensive general documentation about TeX, as well as the documentation for the included software packages. -%package -n texlive-a2ping -Provides: tex-a2ping = %{epoch}:20210325-%{release} -Provides: texlive-a2ping-bin = %{epoch}:20210325-%{release} -Provides: tex-a2ping-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-a2ping-bin < 7:20180414 -License: GPL+ -Summary: Advanced PS, PDF, EPS converter -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-a2ping +%package -n %{shortname}-a2ping +Version: svn52964 +Provides: texlive-a2ping = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping = %{epoch}:%{source_date}-%{release} +Provides: texlive-a2ping-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-a2ping-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-a2ping-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Advanced PS, PDF, EPS converter +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-a2ping a2ping is a Perl script command line utility written for Unix that converts many raster image and vector graphics formats to EPS or PDF and other page description formats. Accepted input @@ -485,25 +623,28 @@ level work to Ghostscript (GS), pdftops and sam2p. a2ping fixes many glitches during the EPS to EPS conversion, so its output is often more compatible and better embeddable than its input. -%package -n texlive-accfonts -Provides: tex-accfonts = %{epoch}:20210325-%{release} -Provides: texlive-accfonts-bin = %{epoch}:20210325-%{release} -Provides: tex-accfonts-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-accfonts-bin < 7:20180414 -Provides: tex-accfonts-doc = %{epoch}:20210325-%{release} -Provides: texlive-accfonts-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-accfonts-doc < 7:20180414 -License: GPL+ -Summary: Utilities to derive new fonts from existing ones -Requires: texlive-base texlive-kpathsea -Provides: tex(CSX.def) = %{epoch}:20210325-%{release} -Provides: tex(ISO-Latin1.def) = %{epoch}:20210325-%{release} -Provides: tex(ISO-Latin2.def) = %{epoch}:20210325-%{release} -Provides: tex(IndUni_Omega.def) = %{epoch}:20210325-%{release} -Provides: tex(Norman.def) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-accfonts +%package -n %{shortname}-accfonts +Version: svn18835 +Provides: texlive-accfonts = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-accfonts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-bin < 7:20170520 +Provides: tex-accfonts-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-accfonts-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-accfonts-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Utilities to derive new fonts from existing ones +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(CSX.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ISO-Latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(IndUni_Omega.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(Norman.def) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-accfonts The accfonts package contains three utilities to permit easy manipulation of fonts, in particular the creation of unusual accented characters. Mkt1font works on Adobe Type 1 fonts, @@ -518,91 +659,129 @@ of kerning information for new characters; mkt1font also generates suitable "hints" to enhance quality at small sizes or poor resolutions. The programs are written in Perl. -%package -n texlive-adhocfilelist -Provides: tex-adhocfilelist = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-adhocfilelist-bin = %{epoch}:20210325-%{release} -Provides: tex-adhocfilelist-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-adhocfilelist-bin < 7:20180414 -Provides: tex-adhocfilelist-doc = %{epoch}:20210325-%{release} -Provides: texlive-adhocfilelist-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-adhocfilelist-doc < 7:20180414 -Summary: '\listfiles' entries from the command line -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-adhocfilelist +%package -n %{shortname}-adhocfilelist +Version: svn29349 +Provides: texlive-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-adhocfilelist-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-bin < 7:20170520 +Provides: tex-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-adhocfilelist-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-adhocfilelist-doc < 7:20170520 +License: LPPL-1.3c +Summary: '\listfiles' entries from the command line +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-adhocfilelist The package provides a Unix shell script to display a list of LaTeX \Provides...-command contexts on screen. Provision is made for controlling the searches that the package does. The package was developed on a Unix-like system, using (among other things) the gnu variant of the find command. -%package -n texlive-afm2pl -Provides: tex-afm2pl = %{epoch}:20210325-%{release} -Provides: texlive-afm2pl-bin = %{epoch}:20210325-%{release} -Provides: tex-afm2pl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-afm2pl-bin < 7:20180414 -Summary: afm2pl package -Requires: texlive-base texlive-kpathsea -Provides: tex(afm2pl-ot1.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:20210325-%{release} -Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:20210325-%{release} -Provides: tex(makesc8y.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-afm2pl -afm2pl package. - -%package -n texlive-albatross -Summary: Find fonts that contain a given glyph -License: BSD -Requires: texlive-base texlive-kpathsea - -%description -n texlive-albatross +%package -n %{shortname}-afm2pl +Version: svn66186 +Provides: texlive-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl = %{epoch}:%{source_date}-%{release} +Provides: texlive-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-afm2pl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-afm2pl-bin < 7:20170520 +License: GPL-2.0-only +Summary: Convert AFM to TeX property list (.pl) metrics +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(afm2pl-ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1ital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-ot1tt.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanlc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(afm2pl-texnanuc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(makesc8y.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-afm2pl +afm2pl is an open source font utility for easy installation of commercial fonts +in TeX. Afm2pl is meant to be a partial alternative to afm2tfm, on which it is +based. Its default action is to convert an afm file to a pl file, which in its +turn can be converted to a tfm file, with preservation of kerns and ligatures +(with afm2tfm, preserving kerns and ligatures is possible only in a roundabout +way). + +%package -n %{shortname}-albatross +Version: svn65647 +Provides: texlive-albatross = %{epoch}:%{source_date}-%{release} +Summary: Find fonts that contain a given glyph +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea + +%description -n %{shortname}-albatross This is a command line tool for finding fonts that contain a given (Unicode) glyph. It relies on Fontconfig. -%package -n texlive-aleph -Provides: tex-aleph = %{epoch}:20210325-%{release} -Provides: texlive-aleph-bin = %{epoch}:20210325-%{release} -Provides: tex-aleph-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-aleph-bin < 7:20180414 -Provides: tex-aleph-doc = %{epoch}:20210325-%{release} -Provides: texlive-aleph-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-aleph-doc < 7:20180414 -Summary: Extended TeX -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-aleph +Version: svn66203 +Provides: texlive-aleph = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-aleph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-bin < 7:20170520 +Provides: tex-aleph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-aleph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-aleph-doc < 7:20170520 +Summary: Extended TeX +# NOTE: The tlpkg is wrong, it says "GPL" +# Source code is definitely LGPL-2.1-or-later +License: LGPL-2.1-or-later +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-latex texlive-plain texlive-lambda texlive-cm texlive-hyphen-base texlive-knuth-lib -Requires: texlive-knuth-lib texlive-antomega texlive-latex-fonts texlive-omega texlive-l3kernel - -%description -n texlive-aleph +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-lambda +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-antomega +Requires: texlive-latex-fonts +Requires: texlive-omega +Requires: texlive-l3kernel + +%description -n %{shortname}-aleph An development of omega, using most of the extensions of TeX itself developed for e-TeX. -%package -n texlive-amstex -Provides: tex-amstex = %{epoch}:20210325-%{release} -Provides: texlive-amstex-bin = %{epoch}:20210325-%{release} -Provides: tex-amstex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-amstex-bin < 7:20180414 -Provides: tex-amstex-doc = %{epoch}:20210325-%{release} -Provides: texlive-amstex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-amstex-doc < 7:20180414 -Summary: American Mathematical Society plain TeX macros -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-amstex +Version: svn66186 +Provides: texlive-amstex = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-amstex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-bin < 7:20170520 +Provides: tex-amstex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-amstex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-amstex-doc < 7:20170520 +License: LPPL-1.3c +Summary: American Mathematical Society plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-tex texlive-amsfonts texlive-cm texlive-hyphen-base texlive-knuth-lib -Requires: texlive-plain -Provides: tex(amsppt.sty) = %{epoch}:20210325-%{release} -Provides: tex(amsppt1.tex) = %{epoch}:20210325-%{release} -Provides: tex(amstex.bug) = %{epoch}:20210325-%{release} -Provides: tex(amstex.tex) = %{epoch}:20210325-%{release} -Provides: tex(amstex.ini) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-amstex +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Provides: tex(amsppt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(amsppt1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.bug) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(amstex.ini) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-amstex AMSTeX is a TeX macro package, originally written by Michael Spivak for the American Mathematical Society (AMS) during 1983- 1985 and is described in the book 'The Joy of TeX'. It is based @@ -611,61 +790,89 @@ professional-looking maths formulas with less burden on authors. More recently, the focus of attention has switched to amslatex, but AMSTeX remains as a working system. -%package -n texlive-arara -Provides: tex-arara = %{epoch}:20210325-%{release} -Provides: texlive-arara-bin = %{epoch}:20210325-%{release} -Provides: tex-arara-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-arara-bin < 7:20180414 -Provides: tex-arara-doc = %{epoch}:20210325-%{release} -Provides: texlive-arara-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-arara-doc < 7:20180414 -License: BSD -Summary: Automation of LaTeX compilation -Requires: texlive-base texlive-kpathsea -Provides: bundled(slf4j) = 1.6.4 bundled(apache-commons-collections) = 3.2.1 -Provides: bundled(apache-commons-exec) = 1.1 bundled(apache-commons-lang3) = 3.1 -Provides: bundled(apache-commons-cli) = 1.2 bundled(mvel2) = 2.0.19 -Provides: bundled(snakeyaml) = 1.11 bunbled(logback) = 1.0.1 -BuildArch: noarch - -%description -n texlive-arara +%package -n %{shortname}-arara +Version: svn63760 +Provides: texlive-arara = %{epoch}:%{source_date}-%{release} +Provides: tex-arara = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-arara-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-bin < 7:20170520 +Provides: tex-arara-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-arara-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-arara-doc < 7:20170520 +License: BSD-3-Clause +Summary: Automation of LaTeX compilation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: bundled(slf4j) = 1.7.36 +Provides: bundled(annotations) = 13.0 +Provides: bundled(apache-commons-collections) = 3.2.1 +Provides: bundled(apache-commons-exec) = 1.1 +Provides: bundled(apache-commons-lang3) = 3.1 +Provides: bundled(apache-commons-cli) = 1.2 +Provides: bundled(log4j) = 2.17.2 +Provides: bundled(mvel2) = 2.4.14 +Provides: bundled(snakeyaml-engine) = 2.3 +Provides: bundled(logback) = 1.0.1 +# shell +BuildArch: noarch + +%description -n %{shortname}-arara Arara is comparable with other well-known compilation tools like latexmk and rubber. The key difference is that that arara determines its actions from metadata in the source code, rather than relying on indirect resources, such as log file analysis. -%package -n texlive-attachfile2 -Provides: tex-attachfile2 = %{epoch}:20210325-%{release} -Provides: tex-attachfile2-bin = %{epoch}:20210325-%{release} -Provides: texlive-attachfile2-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Summary: Attach files into PDF -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(attachfile2.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-attachfile2 +%package -n %{shortname}-attachfile2 +Version: svn57959 +Provides: texlive-attachfile2 = %{epoch}:%{source_date}-%{release} +Provides: tex-attachfile2 = %{epoch}:%{source_date}-%{release} +Provides: tex-attachfile2-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-attachfile2-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Attach files into PDF +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(hycolor.sty) +Requires: tex(hyperref.sty) +Requires: tex(iftex.sty) +Requires: tex(infwarerr.sty) +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(pdfescape.sty) +Requires: tex(pdftexcmds.sty) +Provides: tex(attachfile2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-attachfile2 This package can be used to attach files to a PDF document. It is a further development of Scott Pakin's package attachfile for pdfTeX. Apart from bug fixes, this package adds support for dvips, some new options, and gets and writes meta information data about the attached files. -%package -n texlive-authorindex -Provides: tex-authorindex = %{epoch}:20210325-%{release} -Provides: texlive-authorindex-bin = %{epoch}:20210325-%{release} -Provides: tex-authorindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-authorindex-bin < 7:20180414 -Provides: tex-authorindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-authorindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-authorindex-doc < 7:20180414 -Summary: Index citations by author names -Requires: texlive-base texlive-kpathsea -Provides: tex(authorindex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-authorindex +%package -n %{shortname}-authorindex +Version: svn51757 +Provides: texlive-authorindex = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-authorindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-bin < 7:20170520 +Provides: tex-authorindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-authorindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-authorindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Index citations by author names +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(authorindex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-authorindex This package allows the user to create an index of all authors cited in a LaTeX document. Each author entry in the index contains the pages where these citations occur. Alternatively, @@ -674,19 +881,21 @@ the references rather than the text pages. The package relies on BibTeX being used to handle citations. Additionally, it requires Perl (version 5 or higher). -%package -n texlive-autosp -Provides: tex-autosp = %{epoch}:20210325-%{release} -Provides: texlive-autosp-bin = %{epoch}:20210325-%{release} -Provides: tex-autosp-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-autosp-bin < 7:20180414 -Provides: tex-autosp-doc = %{epoch}:20210325-%{release} -Provides: texlive-autosp-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-autosp-doc < 7:20180414 -License: GPLv2 -Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores -Requires: texlive-base - -%description -n texlive-autosp +%package -n %{shortname}-autosp +Version: svn58211 +Provides: texlive-autosp = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-autosp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-bin < 7:20170520 +Provides: tex-autosp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-autosp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-autosp-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A Preprocessor that generates note-spacing commands for MusiXTeX scores +Requires: texlive-base + +%description -n %{shortname}-autosp This program simplifies the creation of MusiXTeX scores by converting (non-standard) commands of the form \anotes ... \en into one or more conventional note-spacing commands, as @@ -697,15 +906,23 @@ note-spacing changes within the part or spacing requirements of other parts. For example, \anotes\qa J\qa K&\ca l\qa m\ca n\en generates \Notes\qa J\sk\qa K\sk&\ca l\qa m\sk\ca n\en . -%package -n texlive-axodraw2 -Provides: tex-axodraw2 = %{epoch}:20210325-%{release} -Provides: texlive-axodraw2-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Feynman diagrams in a LaTeX document -Requires: texlive-base texlive-kpathsea -Provides: tex(axodraw2.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-axodraw2 +%package -n %{shortname}-axodraw2 +Version: svn58155 +Provides: texlive-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: tex-axodraw2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-axodraw2-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Feynman diagrams in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(graphicx.sty) +Requires: tex(ifthen.sty) +Requires: tex(ifxetex.sty) +Requires: tex(keyval.sty) +Provides: tex(axodraw2.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-axodraw2 This package defines macros for drawing Feynman graphs in LaTeX documents. It is an important update of the axodraw package, but since it is not completely backwards compatible, we have @@ -719,15 +936,19 @@ calculations needed for the pdf code inserted in the output file. The processing involves a run of pdfLaTeX, a run of axohelp, and then another run of pdfLaTeX. -%package -n texlive-bib2gls -Provides: tex-bib2gls = %{epoch}:20210325-%{release} -Provides: texlive-bib2gls-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: Convert .bib files to glossaries-extra.sty resource files -Requires: texlive-base -BuildArch: noarch +%package -n %{shortname}-bib2gls +Version: svn65104 +Provides: texlive-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: tex-bib2gls = %{epoch}:%{source_date}-%{release} +Provides: texlive-bib2gls-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Convert .bib files to glossaries-extra.sty resource files +Requires: texlive-base +Requires: texlive-glossaries-extra +# Java and shell +BuildArch: noarch -%description -n texlive-bib2gls +%description -n %{shortname}-bib2gls This Java command line application may be used to extract glossary information stored in a .bib file and convert it into glossary entry definition commands. This application should be @@ -743,102 +964,144 @@ convertgls2bib can be used to convert existing .tex files containing definitions (\newglossaryentry etc.) to the .bib format required by bib2gls. -%package -n texlive-bibexport -Provides: tex-bibexport = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-bibexport-bin = %{epoch}:20210325-%{release} -Provides: tex-bibexport-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibexport-bin < 7:20180414 -Provides: tex-bibexport-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibexport-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibexport-doc < 7:20180414 -Summary: Extract a BibTeX file based on a .aux file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-bibexport +%package -n %{shortname}-bibcop +Summary: Style checker for .bib files +Version: svn65816 +License: MIT +Requires: texlive-base texlive-kpathsea +Requires: tex(iexec.sty) +Requires: tex(pgfopts.sty) +Provides: tex(bibcop.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bibcop +This LaTeX package checks the quality of your .bib file and +emits warning messages if any issues are found. For this, the +TeX processor must be run with the --shell-escape option, and +Perl must be installed. bibcop.pl can also be used as a +standalone command line tool. The package does not work on +Windows. + +%package -n %{shortname}-bibexport +Version: svn50677 +Provides: texlive-bibexport = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibexport-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-bin < 7:20170520 +Provides: tex-bibexport-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibexport-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibexport-doc < 7:20170520 +License: LPPL-1.3c +Summary: Extract a BibTeX file based on a .aux file +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch + +%description -n %{shortname}-bibexport A Bourne shell script that uses BibTeX to extract bibliography entries that are \cite'd in a document. It can also expand a BibTeX file, expanding the abbreviations (other than the built- in ones like month names) and followig the cross-references. -%package -n texlive-bibtex -Provides: tex-bibtex = %{epoch}:20210325-%{release} -Provides: texlive-bibtex-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex-bin < 7:20180414 -Provides: tex-bibtex-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex-doc < 7:20180414 -Summary: Process bibliographies for LaTeX, etc -Requires: texlive-base texlive-kpathsea -Provides: tex(apalike.sty) = %{epoch}:20210325-%{release} -Provides: tex(apalike.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-bibtex +%package -n %{shortname}-bibtex +Version: svn66186 +Provides: texlive-bibtex = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-bin < 7:20170520 +Provides: tex-bibtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex-doc < 7:20170520 +License: Knuth-CTAN +Summary: Process bibliographies (bib files) for LaTeX or other formats +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(apalike.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(apalike.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-bibtex BibTeX allows the user to store his citation data in generic form, while printing citations in a document in the form specified by a BibTeX style, to be specified in the document itself (one often needs a LaTeX citation-style package, such as -natbib as well). BibTeX itself is an ASCII-only program; there -is, however, a version that copes with 8-bit character sets. -However, BibTeX's facilities rapidly run out as one moves away -from simple ASCII (for example, in the various national sorting -rules for languages expressed in different parts of ISO-8859 -- -the "ISO Latin" series). For more flexibility, the user is -urged to consider using biber with biblatex to typeset its -output. In fact, it is best to avoid BibTeX in favour of biber -and biblatex, if at all possible. - -%package -n texlive-bibtexu -Provides: tex-bibtexu = %{epoch}:20210325-%{release} -Provides: texlive-bibtexu-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtexu-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtexu-bin < 7:20180414 -Provides: tex-bibtexu-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtexu-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtexu-doc < 7:20180414 -Summary: bibtexu package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-bibtexu -bibtexu package. - -%package -n texlive-bibtex8 -Provides: tex-bibtex8 = %{epoch}:20210325-%{release} -Provides: texlive-bibtex8-bin = %{epoch}:20210325-%{release} -Provides: tex-bibtex8-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex8-bin < 7:20180414 -Provides: tex-bibtex8-doc = %{epoch}:20210325-%{release} -Provides: texlive-bibtex8-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bibtex8-doc < 7:20180414 -License: GPL+ -Summary: A fully 8-bit adaptation of BibTeX 0.99 -Requires: texlive-base texlive-kpathsea - -%description -n texlive-bibtex8 +natbib, as well). BibTeX knows nothing about Unicode sorting +algorithms or scripts, although it will pass on whatever bytes +it reads. Its descendant bibtexu does support Unicode, via the +ICU library. The older alternative bibtex8 supports 8-bit +character sets. Another Unicode-aware alternative is the +(independently developed) biber program, used with the BibLaTeX +package to typeset its output. + +%package -n %{shortname}-bibtexu +Version: svn66186 +Provides: texlive-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtexu-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-bin < 7:20170520 +Provides: tex-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtexu-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtexu-doc < 7:20170520 +License: LPPL-1.3c +Summary: BibTeX variant supporting Unicode (UTF-8), via ICU +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtexu +An enhanced, portable C version of BibTeX. Unicode is supported +via the ICU library. Originally written by Yannis Haralambous +and his students, and derived from bibtex8, with substantial +updates from the Japanese TeX Development Community, it is now +maintained as part of TeX Live. + +%package -n %{shortname}-bibtex8 +Version: svn66186 +Provides: texlive-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8 = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bibtex8-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-bin < 7:20170520 +Provides: tex-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bibtex8-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bibtex8-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: BibTeX variant supporting 8-bit encodings +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-bibtex8 An enhanced, portable C version of BibTeX. Enhanced by -conversion to "big" (32-bit) capacity, addition of run-time +conversion to larger (32-bit) capacity, addition of run-time selectable capacity and 8-bit support extensions. National character set and sorting order are controlled by an external -configuration file. Various examples are included. - -%package -n texlive-bundledoc -Provides: tex-bundledoc = %{epoch}:20210325-%{release} -Provides: texlive-bundledoc-bin = %{epoch}:20210325-%{release} -Provides: tex-bundledoc-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-bundledoc-bin < 7:20180414 -Provides: tex-bundledoc-doc = %{epoch}:20210325-%{release} -Provides: texlive-bundledoc-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-bundledoc-doc < 7:20180414 -Summary: Bundle together all the files needed to build a LaTeX document -Requires: texlive-base texlive-kpathsea -Provides: tex(miktex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(texlive-unix.cfg) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-bundledoc +configuration file. Various examples are included. Originally +written by Niel Kempson and Alejandro Aguilar-Sierra, it is now +maintained as part of TeX Live. + +%package -n %{shortname}-bundledoc +Version: svn64620 +Provides: texlive-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-bundledoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-bin < 7:20170520 +Provides: tex-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-bundledoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-bundledoc-doc < 7:20170520 +License: LPPL-1.3c +Summary: Bundle together all the files needed to build a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(miktex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix-arlatex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(texlive-unix.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-bundledoc The bundledoc package is a post-processor for the snapshot package that bundles together all the classes, packages and files needed to build a given LaTeX document. It reads the .dep @@ -851,60 +1114,80 @@ file that contains all of the ancillary files of a LaTeX document, together with the document itself, using the filecontents* environment. -%package -n texlive-cachepic -Provides: tex-cachepic = %{epoch}:20210325-%{release} -Provides: texlive-cachepic-bin = %{epoch}:20210325-%{release} -Provides: tex-cachepic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cachepic-bin < 7:20180414 -Provides: tex-cachepic-doc = %{epoch}:20210325-%{release} -Provides: texlive-cachepic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cachepic-doc < 7:20180414 -Summary: Convert document fragments into graphics -Requires: texlive-base texlive-kpathsea tex(graphicx.sty) tex(verbatim.sty) -Provides: tex(cachepic.sty) = %{epoch}:20210325-%{release} -Provides: tex(prcachepic.def) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cachepic +%package -n %{shortname}-cachepic +Version: svn26313 +Provides: texlive-cachepic = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cachepic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-bin < 7:20170520 +Provides: tex-cachepic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cachepic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cachepic-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convert document fragments into graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(verbatim.sty) +Provides: tex(cachepic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(prcachepic.def) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-cachepic The bundle simplifies and automates conversion of document fragments into external EPS or PDF files. The bundle consists of two parts: a LaTeX package that implements a document level interface, and a command line tool (written in lua) that generates the external graphics. -%package -n texlive-checkcites -Provides: tex-checkcites = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-checkcites-bin = %{epoch}:20210325-%{release} -Provides: tex-checkcites-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-checkcites-bin < 7:20180414 -Provides: tex-checkcites-doc = %{epoch}:20210325-%{release} -Provides: texlive-checkcites-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-checkcites-doc < 7:20180414 -Summary: Check citation commands in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-checkcites +%package -n %{shortname}-checkcites +Version: svn64155 +Provides: texlive-checkcites = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checkcites-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-bin < 7:20170520 +Provides: tex-checkcites-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checkcites-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checkcites-doc < 7:20170520 +License: LPPL-1.3c +Summary: Check citation commands in a document +Requires: texlive-base +Requires: texlive-kpathsea +# lua script +BuildArch: noarch + +%description -n %{shortname}-checkcites The package provides a lua script written for the sole purpose of detecting undefined and unused references from LaTeX auxiliary or bibliography files. -%package -n texlive-checklistings -Provides: tex-checklistings = %{epoch}:20210325-%{release} -Provides: texlive-checklistings-bin = %{epoch}:20210325-%{release} -Provides: tex-checklistings-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-checklistings-bin < 7:20180414 -Provides: tex-checklistings-doc = %{epoch}:20210325-%{release} -Provides: texlive-checklistings-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-checklistings-doc < 7:20180414 -Summary: Pass verbatim contents through a compiler and reincorporate the resulting output -Requires: texlive-base texlive-kpathsea tex(keyval.sty) tex(kvoptions.sty) tex(fancyvrb.sty) -Requires: tex(color.sty) tex(listings.sty) -Provides: tex(checklistings.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-checklistings +%package -n %{shortname}-checklistings +Version: svn38300 +Provides: texlive-checklistings = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-checklistings-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-bin < 7:20170520 +Provides: tex-checklistings-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-checklistings-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-checklistings-doc < 7:20170520 +License: LPPL-1.3a +Summary: Pass verbatim contents through a compiler and reincorporate the resulting output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(kvoptions.sty) +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(listings.sty) +Provides: tex(checklistings.sty) = %{epoch}:%{source_date}-%{release} +# shell script +BuildArch: noarch + +%description -n %{shortname}-checklistings This package augments the fancyvrb and listings packages to allow the source code they contain to be checked by an external tool (like a compiler). The external tool's messages can be @@ -913,80 +1196,153 @@ package does not focus on a specific programming language, but it is designed to work well with languages and compilers in the ML family. -%package -n texlive-chklref -Provides: tex-chklref = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Check for problems with labels in LaTeX -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(chklref.sty) = %{epoch}:20210325-%{release} +%package -n %{shortname}-chklref +Version: svn52649 +Provides: texlive-chklref = %{epoch}:%{source_date}-%{release} +Provides: tex-chklref = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Check for problems with labels in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(afterpackage.sty) +Requires: tex(auxhook.sty) +Requires: tex(currfile.sty) +Provides: tex(chklref.sty) = %{epoch}:%{source_date}-%{release} # perl BuildArch: noarch -%description -n texlive-chklref +%description -n %{shortname}-chklref It is quite common that after modifying a TeX file, many unused labels remain in it. The purpose of chklref is to automatically find these useless labels. It also looks for "non starred" mathematical environments with no labels and advises the user to use a starred version instead. -%package -n texlive-chktex -Provides: tex-chktex = %{epoch}:20210325-%{release} -Provides: texlive-chktex-bin = %{epoch}:20210325-%{release} -Provides: tex-chktex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-chktex-bin < 7:20180414 -Provides: tex-chktex-doc = %{epoch}:20210325-%{release} -Provides: texlive-chktex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-chktex-doc < 7:20180414 -License: GPL+ -Summary: Check for errors in LaTeX documents -Requires: texlive-base texlive-kpathsea - -%description -n texlive-chktex +%package -n %{shortname}-chktex +Version: svn64797 +Provides: texlive-chktex = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-chktex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-bin < 7:20170520 +Provides: tex-chktex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-chktex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-chktex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Check for errors in LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-chktex The program reports typographic and other errors in LaTeX documents. Filters are also provided for checking the LaTeX parts of CWEB documents. +%package -n %{shortname}-citation-style-language +Version: svn65878 +Provides: texlive-citation-style-language = %{epoch}:%{source_date}-%{release} +Provides: texlive-citation-style-language-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-citation-style-language-doc = %{epoch}:%{source_date}-%{release} +License: MIT AND CC-BY-SA-3.0 +Summary: Bibliography formatting with Citation Style Language +Requires: texlive-base, texlive-kpathsea +Requires: tex(filehook.sty) +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-lua-uca +Requires: texlive-lualibs +Requires: texlive-luatex +Requires: texlive-luaxml +Requires: tex(url.sty) +Provides: tex(citation-style-language.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-citation-style-language +The Citation Style Language (CSL) is an XML-based language that +defines the formats of citations and bibliography. There are +currently thousands of styles in CSL including the most widely +used APA, Chicago, Vancouver, etc. The citation-style-language +package is aimed to provide another reference formatting method +for LaTeX that utilizes the CSL styles. It contains a citation +processor implemented in pure Lua (citeproc-lua) which reads +bibliographic metadata and performs sorting and formatting on +both citations and bibliography according to the selected CSL +style. A LaTeX package (citation-style-language.sty) is +provided to communicate with the processor. + +%if 0 +%package -n %{shortname}-cjk-gs-integrate +Version: svn59705 +Provides: texlive-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjk-gs-integrate-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-bin < 7:20170520 +Provides: tex-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjk-gs-integrate-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjk-gs-integrate-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Tools to integrate CJK fonts into Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-cjk-gs-integrate +This script searches a list of directories for CJK fonts, and +makes them available to an installed GhostScript. In the +simplest case with sufficient privileges, a run without +arguments should effect in a complete setup of GhostScript. +%endif -%package -n texlive-cjkutils -Provides: tex-cjkutils = %{epoch}:20210325-%{release} -Provides: texlive-cjkutils-bin = %{epoch}:20210325-%{release} -Provides: tex-cjkutils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cjkutils-bin < 7:20180414 -License: GPL-1.0-or-later -Summary: cjkutils package -Requires: texlive-base texlive-kpathsea -Provides: tex(b5ka12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(b5kr12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(b5so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c1so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c2so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c3so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c4so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c5so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c6so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(c7so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(csso12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(gsfs14.cfg) = %{epoch}:20210325-%{release} -Provides: tex(j2so12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(jsso12.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ksso17.cfg) = %{epoch}:20210325-%{release} - -%description -n texlive-cjkutils +%package -n %{shortname}-cjkutils +Version: svn60833 +Provides: texlive-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils = %{epoch}:%{source_date}-%{release} +Provides: texlive-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cjkutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cjkutils-bin < 7:20170520 +License: LPPL-1.3c +Summary: cjkutils package +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(b5ka12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5kr12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(b5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c1so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c3so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c4so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c5so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c6so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(c7so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(csso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsfs14.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(j2so12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(jsso12.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ksso17.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cjkutils cjkutils package. -%package -n texlive-clojure-pamphlet -Provides: tex-clojure-pamphlet = %{epoch}:20210325-%{release} -Provides: texlive-clojure-pamphlet-bin = %{epoch}:20210325-%{release} -Provides: tex-clojure-pamphlet-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: A simple literate programming tool based on clojure's pamphlet system -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(clojure-pamphlet.sty) = %{epoch}:20210325-%{release} +%package -n %{shortname}-clojure-pamphlet +Version: svn60981 +Provides: texlive-clojure-pamphlet = %{epoch}:%{source_date}-%{release} +Provides: tex-clojure-pamphlet = %{epoch}:%{source_date}-%{release} +Provides: texlive-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-clojure-pamphlet-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: A simple literate programming tool based on clojure's pamphlet system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(hyperref.sty) +Requires: tex(listings.sty) +Provides: tex(clojure-pamphlet.sty) = %{epoch}:%{source_date}-%{release} +# perl BuildArch: noarch -%description -n texlive-clojure-pamphlet +%description -n %{shortname}-clojure-pamphlet The Clojure pamphlet system is a system based on the Clojure literate system. In the Clojure's pamphlet system you have your main LaTeX file, which can be compiled regularly. This file @@ -998,17 +1354,20 @@ each other by the getchunk command (which will be typesetted accordingly). Finally, the LaTeX file will be run through the tangler to get the desired chunk of code. -%package -n texlive-cluttex -Provides: tex-cluttex = %{epoch}:20210325-%{release} -Provides: texlive-cluttex-bin = %{epoch}:20210325-%{release} -Provides: tex-cluttex-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: An automation tool for running LaTeX -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-cluttex +Version: svn60964 +Provides: texlive-cluttex = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cluttex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cluttex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: An automation tool for running LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# lua BuildArch: noarch -%description -n texlive-cluttex +%description -n %{shortname}-cluttex This is another tool for the automation of LaTeX document processing, like latexmk or arara. The main feature of this tool is that it does not clutter your working directory with @@ -1019,390 +1378,396 @@ makeglossaries will be executed if a corresponding option is set. Furthermore, cluttex can watch input files for changes (using an external program). -%package -n texlive-context -Provides: tex-context = %{epoch}:20210325-%{release} -License: Public Domain and LPPL-1.3c and GPL-1.0-or-later and MIT and BSD-2-Clause -Provides: texlive-context-bin = %{epoch}:20210325-%{release} -Provides: tex-context-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-context-bin < 7:20180414 -Provides: tex-context-doc = %{epoch}:20210325-%{release} -Provides: texlive-context-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-context-doc < 7:20180414 -Summary: The ConTeXt macro package -Requires: texlive-base texlive-kpathsea texlive-metapost -Requires(post,postun): coreutils -Requires: texlive-pdftex texlive-xetex texlive-luatex texlive-lm texlive-lm-math texlive-amsfonts -Requires: texlive-manfnt-font texlive-mflogo-font texlive-stmaryrd texlive-mptopdf -Requires: ruby tex(pstricks.sty) -Requires: tex(pst-plot.sty) -Provides: tex(notepad++.ini) = %{epoch}:20210325-%{release} -Provides: tex(texworks-setup.ini) = %{epoch}:20210325-%{release} -Provides: tex(tools.ini) = %{epoch}:20210325-%{release} -Provides: tex(TeXworks.ini) = %{epoch}:20210325-%{release} -Provides: tex(scite-context-readme.tex) = %{epoch}:20210325-%{release} -Provides: tex(type-buy.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-fsf.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-ghz.dat) = %{epoch}:20210325-%{release} -Provides: tex(type-tmf.dat) = %{epoch}:20210325-%{release} -Provides: tex(contnav.afm) = %{epoch}:20210325-%{release} -Provides: tex(cmin.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmit.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmitt.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmrm.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmsc.enc) = %{epoch}:20210325-%{release} -Provides: tex(cmtt.enc) = %{epoch}:20210325-%{release} -Provides: tex(ec-2004.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-8r.enc) = %{epoch}:20210325-%{release} -Provides: tex(teff-trinite.enc) = %{epoch}:20210325-%{release} -Provides: tex(contnav.map) = %{epoch}:20210325-%{release} -Provides: tex(8r-base.map) = %{epoch}:20210325-%{release} -Provides: tex(ec-base.map) = %{epoch}:20210325-%{release} -Provides: tex(ec-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-base.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-px.map) = %{epoch}:20210325-%{release} -Provides: tex(mkiv-tx.map) = %{epoch}:20210325-%{release} -Provides: tex(original-adobe-euro.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-base.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-cmr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-ams-euler.map) = %{epoch}:20210325-%{release} -Provides: tex(original-base.map) = %{epoch}:20210325-%{release} -Provides: tex(original-context-symbol.map) = %{epoch}:20210325-%{release} -Provides: tex(original-dummy.map) = %{epoch}:20210325-%{release} -Provides: tex(original-empty.map) = %{epoch}:20210325-%{release} -Provides: tex(original-micropress-informal.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-csr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-plr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-public-vnr.map) = %{epoch}:20210325-%{release} -Provides: tex(original-vogel-symbol.map) = %{epoch}:20210325-%{release} -Provides: tex(original-wasy.map) = %{epoch}:20210325-%{release} -Provides: tex(original-youngryu-px.map) = %{epoch}:20210325-%{release} -Provides: tex(original-youngryu-tx.map) = %{epoch}:20210325-%{release} -Provides: tex(qx-base.map) = %{epoch}:20210325-%{release} -Provides: tex(qx-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(t5-base.map) = %{epoch}:20210325-%{release} -Provides: tex(t5-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(texnansi-base.map) = %{epoch}:20210325-%{release} -Provides: tex(texnansi-os-public-lm.map) = %{epoch}:20210325-%{release} -Provides: tex(tlig.map) = %{epoch}:20210325-%{release} -Provides: tex(contnav.tfm) = %{epoch}:20210325-%{release} -Provides: tex(contnav.pfb) = %{epoch}:20210325-%{release} -Provides: tex(bidi-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(export-example.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-cweb.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-datastrc.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-educat.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-format.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-layout.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-narrowtt.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-newmat.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-pictex.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-streams.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-subsub.tex) = %{epoch}:20210325-%{release} -Provides: tex(metatex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-arrange.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-combine.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-common.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-copy.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-ideas.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-listing.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-markdown.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-precache.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-select.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-sql.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-timing.tex) = %{epoch}:20210325-%{release} -Provides: tex(mtx-context-xml.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-abr-04.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-cdr-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-00.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-faq-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-mag-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-00.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-02.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-03.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-04.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-05.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-06.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-07.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-08.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-09.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-10.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-11.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-12.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-13.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-14.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-15.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-16.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-18.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-19.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-22.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-23.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-26.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-27.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-50.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-61.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-62.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-63.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-64.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-66.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-67.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-68.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-93.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-pre-96.tex) = %{epoch}:20210325-%{release} -Provides: tex(s-ptj-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(status-mkiv.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-mis.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-mpe.tex) = %{epoch}:20210325-%{release} -Provides: tex(supp-pdf.tex) = %{epoch}:20210325-%{release} -Provides: tex(x-dir-01.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-ams.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-fr.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa-it.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-apa.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-aps.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-num-fr.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-num.tex) = %{epoch}:20210325-%{release} -Provides: tex(bibl-ssa.tex) = %{epoch}:20210325-%{release} -Provides: tex(mag-0000.tex) = %{epoch}:20210325-%{release} -Provides: tex(setup-qr.tex) = %{epoch}:20210325-%{release} -Provides: tex(aesop-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(bryson.tex) = %{epoch}:20210325-%{release} -Provides: tex(cervantes-es.tex) = %{epoch}:20210325-%{release} -Provides: tex(darwin.tex) = %{epoch}:20210325-%{release} -Provides: tex(davis.tex) = %{epoch}:20210325-%{release} -Provides: tex(dawkins.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-mps.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-tex.tex) = %{epoch}:20210325-%{release} -Provides: tex(demo-xml.tex) = %{epoch}:20210325-%{release} -Provides: tex(douglas.tex) = %{epoch}:20210325-%{release} -Provides: tex(hawking.tex) = %{epoch}:20210325-%{release} -Provides: tex(khatt-ar.tex) = %{epoch}:20210325-%{release} -Provides: tex(khatt-en.tex) = %{epoch}:20210325-%{release} -Provides: tex(knuth.tex) = %{epoch}:20210325-%{release} -Provides: tex(linden.tex) = %{epoch}:20210325-%{release} -Provides: tex(lorem.tex) = %{epoch}:20210325-%{release} -Provides: tex(materie.tex) = %{epoch}:20210325-%{release} -Provides: tex(montgomery.tex) = %{epoch}:20210325-%{release} -Provides: tex(quevedo-es.tex) = %{epoch}:20210325-%{release} -Provides: tex(reich.tex) = %{epoch}:20210325-%{release} -Provides: tex(sample.tex) = %{epoch}:20210325-%{release} -Provides: tex(samples.tex) = %{epoch}:20210325-%{release} -Provides: tex(thuan.tex) = %{epoch}:20210325-%{release} -Provides: tex(tufte.tex) = %{epoch}:20210325-%{release} -Provides: tex(ward.tex) = %{epoch}:20210325-%{release} -Provides: tex(weisman.tex) = %{epoch}:20210325-%{release} -Provides: tex(zapf.tex) = %{epoch}:20210325-%{release} -Provides: tex(context-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-basics.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-fonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-languages.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-mplib.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-plain.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-preprocessor.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-swiglib-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-swiglib.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatex-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-de.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-en.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-nl.tex) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-de.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-en.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-ch-nl.sty) = %{epoch}:20210325-%{release} -Provides: tex(m-pictex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-context +%package -n %{shortname}-context +Version: svn66546 +Provides: texlive-context = %{epoch}:%{source_date}-%{release} +Provides: tex-context = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-context-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-bin < 7:20170520 +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-context-doc < 7:20170520 +License: GPL-1.0-or-later OR LPPL-1.3c +Summary: The ConTeXt macro package +Requires: texlive-base +Requires: texlive-kpathsea +# for /usr/bin/realpath +Requires: coreutils, lua +Requires(post,postun): coreutils, lua +Requires: texlive-metapost +%if %{without bootstrap} +Requires: texlive-pdftex +Requires: texlive-xetex +%endif +Requires: texlive-amsfonts +Requires: texlive-lm +Requires: texlive-lm-math +Requires: texlive-luatex +Requires: texlive-manfnt-font +Requires: texlive-mflogo-font +Requires: texlive-mptopdf +Requires: texlive-stmaryrd +Requires: ruby +Requires: tex(pstricks.sty) +Requires: tex(pst-plot.sty) +Provides: tex(aesop-de.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(aristotle-grc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bidi-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bryson.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(capek-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(capek-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(carey.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(carrol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cervantes-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-lmtx-error.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-performance.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(context-todo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(contnav.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(darwin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(davis.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dawkins.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-mps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-tex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(demo-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dequincey.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(douglas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dyrynk-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dyrynk-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(export-example.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(filenames.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gray.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(greenfield.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hawking.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(herbert-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(herbert-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hviezdoslav-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hviezdoslav-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(i-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jaros-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jaros-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(jojomayer.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-ar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(khatt-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(klein.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(knuth.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kollar-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kollar-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(komensky-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(komensky-vlnka-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(krdel-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(kun-cz.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(linden.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lorem.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics-prepare.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-basics.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-core.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-gadgets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-languages.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-mplib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-pdf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-preprocessor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-swiglib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatex-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-de.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-en.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-ch-nl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-pictex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-tikz-pgfplots.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(m-tikz-pgfplotstable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(materie.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mcnish.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(montgomery.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-arrange.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-combine.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-common.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-compare.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-copy.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-domotica.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-hashed.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-ideas.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-listing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-meaning.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-module.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-precache.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-select.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-setters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-setups.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-sql.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-timing.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-trim.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtx-context-xml.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(original-context-symbol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(poe.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pope-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pope-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(quevedo-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(reich.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abbreviations-extras.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-abbreviations-logos.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-cdr-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-01.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-02.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-faq-03.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-00.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-06.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-07.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-08.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-12.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-13.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-16.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-18.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-22.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-23.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-26.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-27.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-50.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-66.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-67.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-93.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(s-pre-96.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(samples.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sapolsky.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(scite-context-readme.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shakespeare-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shakespeare-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(shelley-fr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(slova-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(smrek-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(smrek-vlnka-sk.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(stork.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(thuan.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tlig.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tufte.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(vallejo-trilce-es.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(waltham.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ward.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(weisman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(welcome-to-context.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(zapf.tex) = %{epoch}:%{source_date}-%{release} +# shell and lua +BuildArch: noarch + +%description -n %{shortname}-context A full featured, parameter driven macro package, which fully supports advanced interactive documents. See the ConTeXt garden for a wealth of support information. -%package -n texlive-context-doc +# This package exists because it is 90M and most people do not need it + +%package -n %{shortname}-context-doc +Version: svn66546 +Provides: texlive-context-doc = %{epoch}:%{source_date}-%{release} Requires: texlive-context -License: CC-BY-SA-4.0 and GPL-1.0-or-later and GPL-2.0-only and CC-BY-NC-SA-3.0 and CC-BY-NC-4.0 and gust-font-1.0 and BSD-3-Clause -Provides: tex-context-doc = %{epoch}:20210325-%{release} +Provides: tex-context-doc = %{epoch}:%{source_date}-%{release} Summary: Documentation for context +License: GPL-1.0-or-later OR LPPL-1.3c -%description -n texlive-context-doc +%description -n %{shortname}-context-doc Documentation for context. -%package -n texlive-convbkmk -Provides: tex-convbkmk = %{epoch}:20210325-%{release} -Provides: texlive-convbkmk-bin = %{epoch}:20210325-%{release} -Provides: tex-convbkmk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-convbkmk-bin < 7:20180414 -Provides: tex-convbkmk-doc = %{epoch}:20210325-%{release} -Provides: texlive-convbkmk-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-convbkmk-doc < 7:20180414 -License: MIT -Summary: Correct platex/uplatex bookmarks in PDF created with hyperref -Requires: texlive-base texlive-kpathsea ruby -BuildArch: noarch - -%description -n texlive-convbkmk +%package -n %{shortname}-convbkmk +Version: svn49252 +Provides: texlive-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-convbkmk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-bin < 7:20170520 +Provides: tex-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-convbkmk-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-convbkmk-doc < 7:20170520 +License: MIT +Summary: Correct platex/uplatex bookmarks in PDF created with hyperref +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby script +BuildArch: noarch + +%description -n %{shortname}-convbkmk The package provides a small Ruby script that corrects bookmarks in PDF files created by platex/uplatex, using hyperref. -%package -n texlive-crossrefware -Provides: tex-crossrefware = %{epoch}:20210325-%{release} -Provides: texlive-crossrefware-bin = %{epoch}:20210325-%{release} -Provides: tex-crossrefware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-crossrefware-bin < 7:20180414 -Provides: tex-crossrefware-doc = %{epoch}:20210325-%{release} -Provides: texlive-crossrefware-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-crossrefware-doc < 7:20180414 -License: GPL+ -Summary: Scripts for working with crossref.org -BuildArch: noarch - -%description -n texlive-crossrefware +%package -n %{shortname}-crossrefware +Version: svn64754 +Provides: texlive-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-crossrefware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-bin < 7:20170520 +Provides: tex-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-crossrefware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-crossrefware-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Scripts for working with crossref.org +# Just perl. +BuildArch: noarch + +%description -n %{shortname}-crossrefware This bundle contains the following scripts: bibdoiadd.pl: add DOI numbers to papers in a given bib file, bibzbladd.pl: add Zbl numbers to papers in a given bib file, ltx2crossrefxml.pl: a tool for the creation of XML files for submitting to the parent site -%package -n texlive-cslatex -Provides: tex-cslatex = %{epoch}:20210325-%{release} -Provides: texlive-cslatex-bin = %{epoch}:20210325-%{release} -Provides: tex-cslatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cslatex-bin < 7:20180414 -License: GPL+ -Summary: LaTeX support for Czech/Slovak typesetting -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-latex -Requires: texlive-cm -Requires: texlive-csplain -Requires: texlive-hyphen-base -Requires: texlive-latex-fonts -Requires: texlive-tex-ini-files +%package -n %{shortname}-cslatex +Version: svn66186 +Provides: texlive-cslatex = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-cslatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cslatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cslatex-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: LaTeX support for Czech/Slovak typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(atbegshi.sty) +Requires: tex(atveryend.sty) +Requires: texlive-cm +Requires: texlive-csplain +Requires: tex(everyshi.sty) +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data Requires(post,postun): coreutils -Requires: tex(czech.ldf) tex(slovak.ldf) -Provides: tex(czech.sty) = %{epoch}:20210325-%{release} -Provides: tex(fonttext.cfg) = %{epoch}:20210325-%{release} -Provides: tex(hyphen.cfg) = %{epoch}:20210325-%{release} -Provides: tex(il2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(il2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(slovak.sty) = %{epoch}:20210325-%{release} -Provides: tex(cspsfont.tex) = %{epoch}:20210325-%{release} -Provides: tex(il2pag.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pbk.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pcr.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2phv.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2phvn.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2ppl.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2ptm.fd) = %{epoch}:20210325-%{release} -Provides: tex(il2pzc.fd) = %{epoch}:20210325-%{release} -Provides: tex(nhelvet.sty) = %{epoch}:20210325-%{release} -Provides: tex(ntimes.sty) = %{epoch}:20210325-%{release} -Provides: tex(xl2pag.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pbk.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pcr.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2phv.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2phvn.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2ppl.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2ptm.fd) = %{epoch}:20210325-%{release} -Provides: tex(xl2pzc.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cslatex +Requires: tex(czech.ldf) +Requires: tex(slovak.ldf) +Provides: tex(cspsfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czech.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphen.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2pzc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(nhelvet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntimes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(slovak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pag.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pbk.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pcr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phv.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2phvn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ppl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2ptm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(xl2pzc.fd) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-cslatex LaTeX support for Czech/Slovak typesetting -%package -n texlive-csplain -Provides: tex-csplain = %{epoch}:20210325-%{release} -Provides: texlive-csplain-bin = %{epoch}:20210325-%{release} -Provides: tex-csplain-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-csplain-bin < 7:20180414 -License: GPLv2+ -Summary: Plain TeX multilanguage support -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-tex -Requires: texlive-cm +%package -n %{shortname}-csplain +Version: svn62771 +Provides: texlive-csplain = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-csplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-csplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-csplain-bin < 7:20170520 +License: GPL-2.0-or-later +Summary: Plain TeX multilanguage support +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex +Requires: texlive-cm Requires(post,postun): coreutils -Requires: texlive-cs -Requires: texlive-hyphen-base -Requires: texlive-plain -Requires: texlive-enctex -Requires: texlive-tex-ini-files -Requires: texlive-luatex -Requires: texlive-luatex85 -Provides: tex(csenc-k.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-p.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-u.tex) = %{epoch}:20210325-%{release} -Provides: tex(csenc-w.tex) = %{epoch}:20210325-%{release} -Provides: tex(csfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(csfontsm.tex) = %{epoch}:20210325-%{release} -Provides: tex(czhyphen.tex) = %{epoch}:20210325-%{release} -Provides: tex(extcode.tex) = %{epoch}:20210325-%{release} -Provides: tex(fonttabs.tex) = %{epoch}:20210325-%{release} -Provides: tex(il2code.tex) = %{epoch}:20210325-%{release} -Provides: tex(plaina4.tex) = %{epoch}:20210325-%{release} -Provides: tex(skhyphen.tex) = %{epoch}:20210325-%{release} -Provides: tex(t1code.tex) = %{epoch}:20210325-%{release} -Provides: tex(t1enc-u.tex) = %{epoch}:20210325-%{release} -Provides: tex(ucode.tex) = %{epoch}:20210325-%{release} -Provides: tex(uni-lcuc.tex) = %{epoch}:20210325-%{release} -Provides: tex(ams-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(cavantga.tex) = %{epoch}:20210325-%{release} -Provides: tex(cbookman.tex) = %{epoch}:20210325-%{release} -Provides: tex(chars-8z.tex) = %{epoch}:20210325-%{release} -Provides: tex(chelvet.tex) = %{epoch}:20210325-%{release} -Provides: tex(cncent.tex) = %{epoch}:20210325-%{release} -Provides: tex(cpalatin.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-adventor.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-all.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-antt.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-arev.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-bera.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-bonum.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-charter.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-cursor.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-heros.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-pagella.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-polta.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-schola.tex) = %{epoch}:20210325-%{release} -Provides: tex(cs-termes.tex) = %{epoch}:20210325-%{release} -Provides: tex(ctimes.tex) = %{epoch}:20210325-%{release} -Provides: tex(cyrchars.tex) = %{epoch}:20210325-%{release} -Provides: tex(dcfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(ecfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(exchars.tex) = %{epoch}:20210325-%{release} -Provides: tex(lmfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(luafonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(ntx-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(tx-math.tex) = %{epoch}:20210325-%{release} -Provides: tex(unifam.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib-iso690.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib-simple.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-bib.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac-xetex.tex) = %{epoch}:20210325-%{release} -Provides: tex(opmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfuni.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-csplain +Requires: texlive-cs +Requires: texlive-hyphen-base +Requires: texlive-plain +Requires: texlive-enctex +Requires: texlive-tex-ini-files +Requires: texlive-luatex +Requires: texlive-luatex85 +Provides: tex(csenc-k.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-p.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csenc-w.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csfontsm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(czhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(extcode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttabs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(il2code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(plaina4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(skhyphen.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1code.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc-u.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(uni-lcuc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ams-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cavantga.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cbookman.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chars-8z.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chelvet.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cncent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cpalatin.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-adventor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-all.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-antt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-arev.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bera.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-bonum.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-charter.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-cursor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-heros.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-pagella.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-polta.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-schola.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cs-termes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctimes.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cyrchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ecfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exchars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lmfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luafonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ntx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tx-math.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(unifam.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-iso690.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib-simple.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-bib.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac-xetex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(opmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfuni.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-csplain CSplain is a small extension of basic Plain TeX macros, the formats csplain and pdfcsplain can be generated. It supports: hyphenation of words for 50+ languages, simple and powerfull @@ -1419,16 +1784,20 @@ bibliography, index, toc, tables,etc.) by Plain TeX macros. The OPmac macros can generate and bibliography without any external program. -%package -n texlive-ctan-o-mat -Provides: tex-ctan-o-mat = %{epoch}:20210325-%{release} -Provides: texlive-ctan-o-mat-bin = %{epoch}:20210325-%{release} -License: BSD -Summary: Upload or validate a package for CTAN -Requires: texlive-base texlive-kpathsea -Requires: perl-interpreter -BuildArch: noarch +%package -n %{shortname}-ctan-o-mat +Version: svn51578 +Provides: texlive-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: tex-ctan-o-mat = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctan-o-mat-bin = %{epoch}:%{source_date}-%{release} +License: BSD-3-Clause +Summary: Upload or validate a package for CTAN +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter +#perl +BuildArch: noarch -%description -n texlive-ctan-o-mat +%description -n %{shortname}-ctan-o-mat This program can be used to automate the upload of a package to CTAN. The description of the package is contained in a configuration file. The provided information is validated in @@ -1443,33 +1812,40 @@ requires an Internet connection to the CTAN server. Even the validation retrieves the known attributes and the basic constraints from the server. -%package -n texlive-ctanbib -Provides: tex-ctanbib = %{epoch}:20210325-%{release} -Provides: texlive-ctanbib-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanbib-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Summary: Export ctan entries to bib format -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-ctanbib +Version: svn66068 +Provides: texlive-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanbib-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Export ctan entries to bib format +Requires: texlive-base +Requires: texlive-kpathsea +#lua BuildArch: noarch -%description -n texlive-ctanbib +%description -n %{shortname}-ctanbib This script can generate BibTeX records for LaTeX packages hosted on CTAN. -%package -n texlive-ctanify -Provides: tex-ctanify = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-ctanify-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanify-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanify-bin < 7:20180414 -Provides: tex-ctanify-doc = %{epoch}:20210325-%{release} -Provides: texlive-ctanify-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanify-doc < 7:20180414 -Summary: Prepare a package for upload to CTAN -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ctanify +%package -n %{shortname}-ctanify +Version: svn44129 +Provides: texlive-ctanify = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanify-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-bin < 7:20170520 +Provides: tex-ctanify-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanify-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanify-doc < 7:20170520 +License: LPPL-1.3c +Summary: Prepare a package for upload to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanify Given a list of filenames, ctanify creates a tarball (a .tar.gz file) with the files laid out in CTAN's preferred structure. The tarball additionally contains a ZIP (.zip) file with copies @@ -1479,203 +1855,236 @@ package, or by those who need to incorporate it in a distribution. (The TDS ZIP file will be installed in the CTAN install/ tree.) -%package -n texlive-ctanupload -Provides: tex-ctanupload = %{epoch}:20210325-%{release} -Provides: texlive-ctanupload-bin = %{epoch}:20210325-%{release} -Provides: tex-ctanupload-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanupload-bin < 7:20180414 -Provides: tex-ctanupload-doc = %{epoch}:20210325-%{release} -Provides: texlive-ctanupload-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctanupload-doc < 7:20180414 -License: GPLv3+ -Summary: Support for users uploading to CTAN -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ctanupload +%package -n %{shortname}-ctanupload +Version: svn26313 +Provides: texlive-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctanupload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-bin < 7:20170520 +Provides: tex-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctanupload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctanupload-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Support for users uploading to CTAN +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ctanupload The package provides a Perl script that allows the uploads of a contribution to CTAN from the command line. The aim is to simplify the release process for LaTeX package authors. -%package -n texlive-ctie -Provides: tex-ctie = %{epoch}:20210325-%{release} texlive-ctie-bin = %{epoch}:20210325-%{release} -Provides: tex-ctie-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ctie-bin < 7:20180414 -License: GPL+ -Summary: C version of tie (merging Web change files) -Requires: texlive-base texlive-kpathsea - -%description -n texlive-ctie +%package -n %{shortname}-ctie +Version: svn66186 +Provides: texlive-ctie = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie = %{epoch}:%{source_date}-%{release} +Provides: texlive-ctie-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ctie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ctie-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: C version of tie (merging Web change files) +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ctie This is a version of tie converted for use with cweb. -%package -n texlive-cweb -Provides: tex-cweb = %{epoch}:20210325-%{release} texlive-cweb-bin = %{epoch}:20210325-%{release} -License: MIT and LPPL-1.3c -Provides: tex-cweb-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cweb-bin < 7:20180414 -Provides: tex-cweb-doc = %{epoch}:20210325-%{release} -Provides: texlive-cweb-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cweb-doc < 7:20180414 -Summary: A Web system in C -Requires: texlive-base texlive-kpathsea -Provides: tex(cwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfXcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfdcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdffcwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdficwebmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfwebmac.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-cweb -The Cweb system is a system for Structured Software -Documentation (also known as Literate Programming) in the -programming language C. - -%package -n texlive-cyrillic -Provides: tex-cyrillic = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-cyrillic-bin = %{epoch}:20210325-%{release} -Provides: tex-cyrillic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-bin < 7:20180414 -Provides: tex-cyrillic-doc = %{epoch}:20210325-%{release} -Provides: texlive-cyrillic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-doc < 7:20180414 -Provides: texlive-cyrillic-bin-bin = %{epoch}:20210325-%{release} -Provides: tex-cyrillic-bin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-cyrillic-bin-bin < 7:20180414 -Summary: Support for Cyrillic fonts in LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(fontenc.sty) -Provides: tex(cp1251.def) = %{epoch}:20210325-%{release} -Provides: tex(cp855.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866av.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866mav.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866nav.def) = %{epoch}:20210325-%{release} -Provides: tex(cp866tat.def) = %{epoch}:20210325-%{release} -Provides: tex(ctt.def) = %{epoch}:20210325-%{release} -Provides: tex(dbk.def) = %{epoch}:20210325-%{release} -Provides: tex(iso88595.def) = %{epoch}:20210325-%{release} -Provides: tex(isoir111.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-r.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-ru.def) = %{epoch}:20210325-%{release} -Provides: tex(koi8-u.def) = %{epoch}:20210325-%{release} -Provides: tex(lcy.sty) = %{epoch}:20210325-%{release} -Provides: tex(lcyccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcycmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcydefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(lcyenc.def) = %{epoch}:20210325-%{release} -Provides: tex(lcylcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(lcylcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(maccyr.def) = %{epoch}:20210325-%{release} -Provides: tex(macukr.def) = %{epoch}:20210325-%{release} -Provides: tex(mik.def) = %{epoch}:20210325-%{release} -Provides: tex(mls.def) = %{epoch}:20210325-%{release} -Provides: tex(mnk.def) = %{epoch}:20210325-%{release} -Provides: tex(mos.def) = %{epoch}:20210325-%{release} -Provides: tex(ncc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot2ccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wlcyr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wlcyss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wncyr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot2wncyss.fd) = %{epoch}:20210325-%{release} -Provides: tex(pt154.def) = %{epoch}:20210325-%{release} -Provides: tex(pt254.def) = %{epoch}:20210325-%{release} -Provides: tex(t2accr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2acmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2aenc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2alcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2alcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2bcmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2benc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2blcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2blcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2cccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2ccmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2cenc.def) = %{epoch}:20210325-%{release} -Provides: tex(t2clcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t2clcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2ccr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmbr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmtl.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2enc.def) = %{epoch}:20210325-%{release} -Provides: tex(x2lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(x2lcmtt.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-cyrillic +%package -n %{shortname}-cweb +Version: svn66186 +Provides: texlive-cweb = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cweb-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-bin < 7:20170520 +Provides: tex-cweb-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cweb-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cweb-doc < 7:20170520 +License: Knuth-CTAN +Summary: A Web system in C +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(Xcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctproofmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cttwinxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_ecma94.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_hp8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_mac8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cweb_pc850.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dctproofmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dcwebstrings.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fcwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(icwebmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfctwimac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfwebtocfront.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(twinx-startup.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-cweb +A highly portable and extended version of Levy/Knuth CWEB 3.64c +for UNIX, Windows, Mac (and possibly other operating systems). +TeX macros, CWEB macros, and NLS catalogs are included for +German, French (partially), and Italian program documentation +on any machine. + +%package -n %{shortname}-cyrillic +Version: svn63613 +Provides: texlive-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin < 7:20170520 +Provides: tex-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-cyrillic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-doc < 7:20170520 +Provides: texlive-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-cyrillic-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-cyrillic-bin-bin < 7:20170520 +License: LPPL-1.3c +Summary: Support for Cyrillic fonts in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fontenc.sty) +Provides: tex(cp1251.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp855.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866av.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866mav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866nav.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp866tat.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ctt.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(dbk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(iso88595.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(isoir111.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-r.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-ru.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(koi8-u.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcycmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcydefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcyenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(lcylcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(maccyr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(macukr.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mik.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mls.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mnk.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mos.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ncc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wlcyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot2wncyss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt154.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(pt254.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2accr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2acmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2aenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2alcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2bcmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2benc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2blcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2ccmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2cenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t2clcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2ccr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmbr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtl.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(x2lcmtt.fd) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-cyrillic This bundle of macros files provides macro support (including font encoding macros) for the use of Cyrillic characters in fonts encoded under the T2* and X2 encodings. These encodings cover (between them) pretty much every language that is written in a Cyrillic alphabet. -%package -n texlive-de-macro -Provides: tex-de-macro = %{epoch}:20210325-%{release} -Provides: texlive-de-macro-bin = %{epoch}:20210325-%{release} -Provides: tex-de-macro-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-de-macro-bin < 7:20180414 -Provides: tex-de-macro-doc = %{epoch}:20210325-%{release} -Provides: texlive-de-macro-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-de-macro-doc < 7:20180414 -License: AFL -Summary: Expand private macros in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-de-macro +%package -n %{shortname}-de-macro +Version: svn61719 +Provides: texlive-de-macro = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-de-macro-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-bin < 7:20170520 +Provides: tex-de-macro-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-de-macro-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-de-macro-doc < 7:20170520 +License: AFL-2.1 +Summary: Expand private macros in a document +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-de-macro De-macro is a Python script that helps authors who like to use private LaTeX macros (for example, as abbreviations). A technical editor or a cooperating author may balk at such a @@ -1684,46 +2093,61 @@ running de-macro on it. De-macro will expand macros defined in \(re)newcommand or \(re)newenvironment commands, within the document, or in the document's "private" package file. -%package -n texlive-detex -Provides: tex-detex = %{epoch}:20210325-%{release} -Provides: texlive-detex-bin = %{epoch}:20210325-%{release} -Provides: tex-detex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-detex-bin < 7:20180414 -License: NCSA -Summary: Strip TeX from a source file -Requires: texlive-base texlive-kpathsea - -%description -n texlive-detex +%package -n %{shortname}-detex +Version: svn66186 +Provides: texlive-detex = %{epoch}:%{source_date}-%{release} +Provides: tex-detex = %{epoch}:%{source_date}-%{release} +Provides: texlive-detex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-detex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-detex-bin < 7:20170520 +License: NCSA +Summary: Strip TeX from a source file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-detex Detex is a program to remove TeX constructs from a text file. It recognizes the \input command. The program assumes it is dealing with LaTeX input if it sees the string \begin{document} in the text. In this case, it also recognizes the \include and -\includeonly commands. - -%package -n texlive-diadia -Provides: tex-diadia = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: texlive-diadia-bin = %{epoch}:20210325-%{release} -Provides: tex-diadia-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-diadia-bin < 7:20180414 -Provides: tex-diadia-doc = %{epoch}:20210325-%{release} -Provides: texlive-diadia-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-diadia-doc < 7:20180414 -Summary: Package to keep a diabetes diary -Requires: texlive-base texlive-kpathsea -Requires: tex(xkeyval.sty) tex(pgfplots.sty) -Requires: tex(pgfplotstable.sty) tex(pgfcalendar.sty) -Requires: tex(tabularx.sty) tex(booktabs.sty) -Requires: tex(colortbl.sty) tex(ifthen.sty) -Requires: tex(calc.sty) tex(translations.sty) -Requires: tex(amsmath.sty) tex(tcolorbox.sty) -Requires: tex(environ.sty) tex(multicol.sty) -Requires: tex(amssymb.sty) -Provides: tex(diadia.cfg) = %{epoch}:20210325-%{release} -Provides: tex(diadia.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-diadia +\includeonly commands. The author now considers this program to +be "retired" and Piotr Kubowicz's OpenDetex as its successor. + +%package -n %{shortname}-diadia +Version: svn37656 +Provides: texlive-diadia = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-diadia-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-bin < 7:20170520 +Provides: tex-diadia-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-diadia-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-diadia-doc < 7:20170520 +License: LPPL-1.3c +Summary: Package to keep a diabetes diary +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(pgfplots.sty) +Requires: tex(pgfplotstable.sty) +Requires: tex(pgfcalendar.sty) +Requires: tex(tabularx.sty) +Requires: tex(booktabs.sty) +Requires: tex(colortbl.sty) +Requires: tex(ifthen.sty) +Requires: tex(calc.sty) +Requires: tex(translations.sty) +Requires: tex(amsmath.sty) +Requires: tex(tcolorbox.sty) +Requires: tex(environ.sty) +Requires: tex(multicol.sty) +Requires: tex(amssymb.sty) +Provides: tex(diadia.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(diadia.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-diadia The diadia package allows you to keep a diabetes diary. Usually, this means keeping record of certain medical values like blood sugar, blood pressure, pulse or weight. It might @@ -1735,20 +2159,38 @@ typesets formatted tables and derived plots. Furthermore, it supports medication charts and info boxes. Supported languages: English, German. Feel free to provide other translation files! -%package -n texlive-dosepsbin -Provides: tex-dosepsbin = %{epoch}:20210325-%{release} -Provides: texlive-dosepsbin-bin = %{epoch}:20210325-%{release} -Provides: tex-dosepsbin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dosepsbin-bin < 7:20180414 -Provides: tex-dosepsbin-doc = %{epoch}:20210325-%{release} -Provides: texlive-dosepsbin-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dosepsbin-doc < 7:20180414 -License: GPLv2 or Artistic -Summary: Deal with DOS binary EPS files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dosepsbin +%package -n %{shortname}-digestif +Summary: Editor plugin for LaTeX, ConTeXt etc. +Version: svn65223 +License: GPL-3.0-or-later AND LPPL-1.3c AND GFDL-1.3-no-invariants-or-later +Requires: texlive-base texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-digestif +Digestif is a code analyzer, and a language server, for LaTeX, +plain TeX, ConTeXt and Texinfo. It provides context-sensitive +completion, documentation, code navigation, and related +functionality to any text editor that speaks the LSP protocol. + +%package -n %{shortname}-dosepsbin +Version: svn29752 +Provides: texlive-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dosepsbin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-bin < 7:20170520 +Provides: tex-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dosepsbin-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dosepsbin-doc < 7:20170520 +License: GPL-2.0-only +Summary: Deal with DOS binary EPS files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-dosepsbin A Encapsulated PostScript (EPS) file may given in a special binary format to support the inclusion of a thumbnail. This file format, commonly known as DOS EPS format starts with a @@ -1760,15 +2202,19 @@ package provides a Perl program that will extract any of the sections of such a file, in particular providing a 'text'-form EPS file for use with (La)TeX. -%package -n texlive-dtl -Provides: tex-dtl = %{epoch}:20210325-%{release} texlive-dtl-bin = %{epoch}:20210325-%{release} -Provides: tex-dtl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtl-bin < 7:20180414 -License: Public Domain -Summary: Tools to dis-assemble and re-assemble DVI files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dtl +%package -n %{shortname}-dtl +Version: svn62387 +Provides: texlive-dtl = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtl-bin < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Tools to dis-assemble and re-assemble DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dtl DTL (DVI Text Language) is a means of expressing the content of a DVI file, which is readily readable by humans. The DTL bundle contains an assembler dt2dv (which produces DVI files from DTL @@ -1776,169 +2222,201 @@ files) and a disassembler dv2dt (which produces DTL files from DVI files). The DTL bundle was developed so as to avoid some infelicities of dvitype (among other pressing reasons). -%package -n texlive-dtxgen -Provides: tex-dtxgen = %{epoch}:20210325-%{release} -Provides: texlive-dtxgen-bin = %{epoch}:20210325-%{release} -Provides: tex-dtxgen-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtxgen-bin < 7:20180414 -Provides: tex-dtxgen-doc = %{epoch}:20210325-%{release} -Provides: texlive-dtxgen-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dtxgen-doc < 7:20180414 -License: GPL+ -Summary: Creates a template for a self-extracting .dtx file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dtxgen +%package -n %{shortname}-dtxgen +Version: svn51663 +Provides: texlive-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dtxgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-bin < 7:20170520 +Provides: tex-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dtxgen-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dtxgen-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Creates a template for a self-extracting .dtx file +Requires: texlive-base +Requires: texlive-kpathsea +# bash +BuildArch: noarch + +%description -n %{shortname}-dtxgen The bash script dtxgen creates a template for a self-extracting .dtx file. It is useful for those who plan to create a new Documented LaTeX Source (.dtx) file. -%package -n texlive-dvi2tty -Provides: tex-dvi2tty = %{epoch}:20210325-%{release} -Provides: texlive-dvi2tty-bin = %{epoch}:20210325-%{release} -Provides: tex-dvi2tty-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvi2tty-bin < 7:20180414 -License: GPL+ -Summary: Produce ASCII from DVI -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvi2tty +%package -n %{shortname}-dvi2tty +Version: svn66186 +Provides: texlive-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvi2tty-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvi2tty-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Produce ASCII from DVI +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvi2tty A DVI driver to produce an ASCII representation of the document. The original version was written in Pascal, and the present author translated the program to C. -%package -n texlive-dviasm -Provides: tex-dviasm = %{epoch}:20210325-%{release} -Provides: texlive-dviasm-bin = %{epoch}:20210325-%{release} -Provides: tex-dviasm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviasm-bin < 7:20180414 -Provides: tex-dviasm-doc = %{epoch}:20210325-%{release} -Provides: texlive-dviasm-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviasm-doc < 7:20180414 -License: GPLv3+ -Summary: A utility for editing DVI files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-dviasm +%package -n %{shortname}-dviasm +Version: svn64430 +Provides: texlive-dviasm = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviasm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-bin < 7:20170520 +Provides: tex-dviasm-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviasm-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviasm-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: A utility for editing DVI files +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-dviasm A Python script to support changing or creating DVI files via disassembling into text, editing, and then reassembling into binary format. It supports advanced features such as adding a preprint number or watermarks. -%package -n texlive-dvicopy -Provides: tex-dvicopy = %{epoch}:20210325-%{release} -Provides: texlive-dvicopy-bin = %{epoch}:20210325-%{release} -Provides: tex-dvicopy-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvicopy-bin < 7:20180414 -License: GPL+ -Summary: Copy DVI files, flattening VFs -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvicopy +%package -n %{shortname}-dvicopy +Version: svn66186 +Provides: texlive-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvicopy-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvicopy-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Copy DVI files, flattening VFs +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvicopy DVICOPY is a utility program that allows one to take a DVI file that references composite fonts (VF) and convert it into a DVI file that does not contain such references. It also serves as a basis for writing DVI drivers (much like DVItype). -%package -n texlive-dvidvi -Provides: tex-dvidvi = %{epoch}:20210325-%{release} -Provides: texlive-dvidvi-bin = %{epoch}:20210325-%{release} -Provides: tex-dvidvi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvidvi-bin < 7:20180414 -License: Copyright only -Summary: Convert one DVI file into another -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvidvi +%package -n %{shortname}-dvidvi +Version: svn65952 +Provides: texlive-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvidvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvidvi-bin < 7:20170520 +License: LicenseRef-Fedora-UltraPermissive +Summary: Convert one DVI file into another +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvidvi The output DVI file's contents are specified by page selection commands; series of pages and page number ranges may be specified, as well as inclusions and exclusions. -%package -n texlive-dviinfox -Provides: tex-dviinfox = %{epoch}:20210325-%{release} -Provides: texlive-dviinfox-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: Perl script to print DVI meta information -BuildArch: noarch -Requires: texlive-base texlive-kpathsea -Requires: perl-interpreter +%package -n %{shortname}-dviinfox +Version: svn59216 +Provides: texlive-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: tex-dviinfox = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviinfox-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Perl script to print DVI meta information +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: perl-interpreter -%description -n texlive-dviinfox +%description -n %{shortname}-dviinfox The package provides a perl script which prints information about a DVI file. It also supports XeTeX XDV format. -%package -n texlive-dviljk -Provides: tex-dviljk = %{epoch}:20210325-%{release} -Provides: texlive-dviljk-bin = %{epoch}:20210325-%{release} -Provides: tex-dviljk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dviljk-bin < 7:20180414 -License: GPL+ -Summary: DVI to Laserjet output -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dviljk +%package -n %{shortname}-dviljk +Version: svn66186 +Provides: texlive-dviljk = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviljk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviljk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dviljk-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: DVI to Laserjet output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviljk A dvi driver for the LaserJet printers, using kpathsea recursive file searching. -%package -n texlive-dviout-util -Provides: tex-dviout-util = %{epoch}:20210325-%{release} -Provides: texlive-dviout-util-bin = %{epoch}:20210325-%{release} -Provides: tex-dviout-util-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: DVI output utilities -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-dviout-util +%package -n %{shortname}-dviout-util +Version: svn66186 +Provides: texlive-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util = %{epoch}:%{source_date}-%{release} +Provides: texlive-dviout-util-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dviout-util-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: DVI output utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dviout-util This is a partial repackaging of elements of the DVIOUT package by Toshio OSHIMA, Yoshiki OTOBE, and Kazunori ASAYAMA. Here we don't include the main DVI previewer, but just want small utility programs. -%package -n texlive-dvipdfmx -Provides: tex-dvipdfmx = %{epoch}:20210325-%{release} -Provides: texlive-dvipdfmx-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipdfmx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipdfmx-bin < 7:20180414 -Provides: tex-dvipdfmx-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvipdfmx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipdfmx-doc < 7:20180414 -Provides: dvipdfmx = %{epoch}:20210325-%{release} dvipdfm = %{epoch}:20210325-%{release} -License: GPL+ -Summary: An extended version of dvipdfm -Requires: texlive-base texlive-glyphlist -Requires: texlive-kpathsea -Provides: tex(dvipdfmx.cfg) = %{epoch}:20210325-%{release} -Provides: tex(cid-x.map) = %{epoch}:20210325-%{release} -Provides: tex(ckx.map) = %{epoch}:20210325-%{release} - -%description -n texlive-dvipdfmx +%package -n %{shortname}-dvipdfmx +Version: svn66203 +Provides: texlive-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipdfmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-bin < 7:20170520 +Provides: tex-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipdfmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipdfmx-doc < 7:20170520 +Provides: dvipdfmx = %{epoch}:%{source_date}-%{release} +Provides: dvipdfm = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: An extended version of dvipdfm +Requires: texlive-base +Requires: texlive-glyphlist +Requires: texlive-kpathsea +Requires: texlive-xetex +Provides: tex(dvipdfmx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cid-x.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ckx.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-dvipdfmx Dvipdfmx (formerly dvipdfm-cjk) is a development of dvipdfm created to support multi-byte character encodings and large character sets for East Asian languages. Dvipdfmx, if "called" with the name dvipdfm, operates in a "dvipdfm compatibility" mode, so that users of the both packages need only keep one executable. A secondary design goal is to support as many "PDF" -features as does pdfTeX. There being no documentation as such, -users are advised to consult the documentation of dvipdfm (as -well, of course, as the package Readme. - -%package -n texlive-dvipng -Provides: tex-dvipng = %{epoch}:20210325-%{release} -Provides: texlive-dvipng-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipng-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipng-bin < 7:20180414 -Provides: tex-dvipng-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvipng-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipng-doc < 7:20180414 -Provides: dvipng = %{epoch}:20210325-%{release} -License: LGPLv2+ -Summary: A fast DVI to PNG/GIF converter -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvipng +features as does pdfTeX. + +%package -n %{shortname}-dvipng +Version: svn66203 +Provides: texlive-dvipng = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipng-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-bin < 7:20170520 +Provides: tex-dvipng-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipng-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipng-doc < 7:20170520 +Provides: dvipng = %{epoch}:%{source_date}-%{release} +License: LGPL-2.1-or-later +Summary: A fast DVI to PNG/GIF converter +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipng This program makes PNG and/or GIF graphics from DVI files as obtained from TeX and its relatives. Its benefits include: Speed. It offers very fast rendering of DVI as bitmap files, @@ -1954,151 +2432,179 @@ input file through this interface. Support for PK, VF, PostScript Type1, and TrueType fonts, colour specials, and inclusion of PostScript, PNG, JPEG or GIF images. -%package -n texlive-dvipos -Provides: tex-dvipos = %{epoch}:20210325-%{release} -Provides: texlive-dvipos-bin = %{epoch}:20210325-%{release} -Provides: tex-dvipos-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvipos-bin < 7:20180414 -Summary: dvipos package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvipos -dvipos package. - -%package -n texlive-dvips -Provides: tetex-dvips = %{epoch}:20210325-%{release} -Provides: tex-dvips = %{epoch}:20210325-%{release} -Provides: texlive-dvips-bin = %{epoch}:20210325-%{release} -Provides: tex-dvips-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvips-bin < 7:20180414 -Provides: tex-dvips-doc = %{epoch}:20210325-%{release} -Provides: texlive-dvips-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvips-doc < 7:20180414 -License: GPL+ -Summary: A DVI to PostScript driver -Requires: texlive-base texlive-kpathsea -Provides: tex(canonex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(cx.cfg) = %{epoch}:20210325-%{release} -Provides: tex(deskjet.cfg) = %{epoch}:20210325-%{release} -Provides: tex(dfaxhigh.cfg) = %{epoch}:20210325-%{release} -Provides: tex(dvired.cfg) = %{epoch}:20210325-%{release} -Provides: tex(epson.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ibmvga.cfg) = %{epoch}:20210325-%{release} -Provides: tex(ljfour.cfg) = %{epoch}:20210325-%{release} -Provides: tex(qms.cfg) = %{epoch}:20210325-%{release} -Provides: tex(toshiba.cfg) = %{epoch}:20210325-%{release} -Provides: tex(6w.enc) = %{epoch}:20210325-%{release} -Provides: tex(7t.enc) = %{epoch}:20210325-%{release} -Provides: tex(8a.enc) = %{epoch}:20210325-%{release} -Provides: tex(8r.enc) = %{epoch}:20210325-%{release} -Provides: tex(ad.enc) = %{epoch}:20210325-%{release} -Provides: tex(ansinew.enc) = %{epoch}:20210325-%{release} -Provides: tex(asex.enc) = %{epoch}:20210325-%{release} -Provides: tex(asexp.enc) = %{epoch}:20210325-%{release} -Provides: tex(dc.enc) = %{epoch}:20210325-%{release} -Provides: tex(dvips.enc) = %{epoch}:20210325-%{release} -Provides: tex(ec.enc) = %{epoch}:20210325-%{release} -Provides: tex(extex.enc) = %{epoch}:20210325-%{release} -Provides: tex(funky.enc) = %{epoch}:20210325-%{release} -Provides: tex(odvips.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-cs-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-ec-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-l7x-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-qx-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-rm-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2a-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2b-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t2c-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-t5-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-texnansi-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(q-ts1-uni.enc) = %{epoch}:20210325-%{release} -Provides: tex(qx.enc) = %{epoch}:20210325-%{release} -Provides: tex(stormex.enc) = %{epoch}:20210325-%{release} -Provides: tex(tex256.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmext.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmital.enc) = %{epoch}:20210325-%{release} -Provides: tex(texmsym.enc) = %{epoch}:20210325-%{release} -Provides: tex(texnansx.enc) = %{epoch}:20210325-%{release} -Provides: tex(blackdvi.sty) = %{epoch}:20210325-%{release} -Provides: tex(blackdvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(colordvi.sty) = %{epoch}:20210325-%{release} -Provides: tex(colordvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(rotate.sty) = %{epoch}:20210325-%{release} -Provides: tex(rotate.tex) = %{epoch}:20210325-%{release} -Provides: tex(dvips) = %{epoch}:20210325-%{release} -Requires: texlive-latex-fonts - -%description -n texlive-dvips +%package -n %{shortname}-dvipos +Version: svn66186 +Provides: texlive-dvipos = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvipos-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvipos-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvipos-bin < 7:20170520 +License: LPPL-1.3c +Summary: support DVI pos: specials used by ConTeXt DVI output +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-dvipos +support DVI pos: specials used by ConTeXt DVI output + +%package -n %{shortname}-dvips +Version: svn66203 +Provides: texlive-dvips = %{epoch}:%{source_date}-%{release} +Provides: tetex-dvips = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvips-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-bin < 7:20170520 +Provides: tex-dvips-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvips-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvips-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A DVI to PostScript driver +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(canonex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(cx.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(deskjet.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dfaxhigh.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvired.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(epson.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ibmvga.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(ljfour.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(qms.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(toshiba.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(6w.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(7t.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(8r.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ad.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(asexp.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dc.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips-all.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ec.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(extex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(funky.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(odvips.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-cs-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ec-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-l7x-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-qx-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-rm-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2a-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2b-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t2c-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-t5-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-texnansi-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(q-ts1-uni.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(stormex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex256.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmext.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmital.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmsym.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(texnansx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(blackdvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colordvi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotate.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips) = %{epoch}:%{source_date}-%{release} +Requires: texlive-latex-fonts + +%description -n %{shortname}-dvips This package has been withdrawn from CTAN, and bundled into the distributions' package sets. The current sources of dvips may be found in the distribution of dvipsk which forms part of the TeX Live sources. -%package -n texlive-dvisvgm -Provides: tex-dvisvgm = %{epoch}:20210325-%{release} -Provides: texlive-dvisvgm-bin = %{epoch}:20210325-%{release} -Provides: tex-dvisvgm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-dvisvgm-bin < 7:20180414 -License: GPL+ -Summary: Convert DVI files to Scalable Vector Graphics format (SVG) -Requires: texlive-base texlive-kpathsea - -%description -n texlive-dvisvgm -Dvisvgm is a command line utility that converts TeX DVI files -to the XML-based Scalable Vector Graphics (SVG) format. It -provides full font support including virtual fonts, font maps, -and sub-fonts. If necessary, dvisvgm vectorizes Metafont's -bitmap output in order to always create lossless scalable -output. The embedded SVG fonts can optionally be replaced with -graphics paths so that applications that don't support SVG -fonts are enabled to render the graphics properly. Besides many -other features, dvisvgm also supports color, emTeX, tpic, PDF -mapfile and PostScript specials. - -%package -n texlive-ebong -Provides: tex-ebong = %{epoch}:20210325-%{release} -Provides: texlive-ebong-bin = %{epoch}:20210325-%{release} -Provides: tex-ebong-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ebong-bin < 7:20180414 -Provides: tex-ebong-doc = %{epoch}:20210325-%{release} -Provides: texlive-ebong-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ebong-doc < 7:20180414 -License: Public Domain -Summary: Utility for writing Bengali in Rapid Roman Format -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ebong +%package -n %{shortname}-dvisvgm +Version: svn66532 +Provides: texlive-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm = %{epoch}:%{source_date}-%{release} +Provides: texlive-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-dvisvgm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-dvisvgm-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG) +Requires: texlive-base +Requires: texlive-kpathsea +# for mutool +#Requires: mupdf + +%description -n %{shortname}-dvisvgm +Dvisvgm is a command line utility that converts TeX DVI as well +as EPS and PDF files to the XML-based Scalable Vector Graphics +(SVG) format. It provides full font support including virtual +fonts, font maps, and sub-fonts. If necessary, dvisvgm +vectorizes Metafont's bitmap output in order to always create +lossless scalable output. The embedded SVG fonts can optionally +be replaced with graphics paths so that applications that do +not support SVG fonts are enabled to render the graphics +properly. Besides many other features, dvisvgm also supports +color, emTeX, tpic, papersize, PDF mapfile and PostScript +specials. + +%package -n %{shortname}-ebong +Version: svn55475 +Provides: texlive-ebong = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ebong-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-bin < 7:20170520 +Provides: tex-ebong-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ebong-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ebong-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Utility for writing Bengali in Rapid Roman Format +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-ebong A tool (preprocessor) for writing your pRaa-ne-r ka-thaa in the bengali langauage. It allows one to write the text in Rapid Roman Bangla and convert it to the bangtex format by a python program. All LaTeX markups are preserved in the target file. -%package -n texlive-eplain -Provides: tex-eplain = %{epoch}:20210325-%{release} -Provides: texlive-eplain-bin = %{epoch}:20210325-%{release} -Provides: tex-eplain-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-eplain-bin < 7:20180414 -Provides: tex-eplain-doc = %{epoch}:20210325-%{release} -Provides: texlive-eplain-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-eplain-doc < 7:20180414 -License: GPLv2+ -Summary: Extended plain TeX macros -Requires: texlive-base texlive-kpathsea -Requires: texlive-pdftex texlive-babel -Requires: texlive-cm texlive-hyphen-base -Requires: texlive-latex-fonts texlive-l3backend -Requires: texlive-l3kernel texlive-l3packages -Requires: texlive-tex-ini-files texlive-unicode-data -Requires: texlive-dehyph texlive-hyph-utf8 -Requires: texlive-knuth-lib +%package -n %{shortname}-eplain +Version: svn64721 +Provides: texlive-eplain = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-eplain-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-bin < 7:20170520 +Provides: tex-eplain-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-eplain-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-eplain-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Extended plain TeX macros +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-knuth-lib Requires(post,postun): coreutils -Provides: tex(arrow.tex) = %{epoch}:20210325-%{release} -Provides: tex(btxmac.tex) = %{epoch}:20210325-%{release} -Provides: tex(eplain.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(arrow.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(btxmac.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(eplain.tex) = %{epoch}:%{source_date}-%{release} +# No actual binaries in here +BuildArch: noarch -%description -n texlive-eplain +%description -n %{shortname}-eplain An extended version of the plain TeX format, adding support for bibliographies, tables of contents, enumerated lists, verbatim input of files, numbered equations, tables, two-column output, @@ -2108,40 +2614,48 @@ notably graphics, graphicx (an extended of version of graphics), color, autopict (a package instance of the LaTeX picture code), psfrag, and url. -%package -n texlive-epspdf -Provides: tex-epspdf = %{epoch}:20210325-%{release} -Provides: texlive-epspdf-bin = %{epoch}:20210325-%{release} -Provides: tex-epspdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-epspdf-bin < 7:20180414 -Provides: tex-epspdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-epspdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-epspdf-doc < 7:20180414 -License: GPL+ -Summary: Converter for PostScript, EPS and PDF -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-epspdf +%package -n %{shortname}-epspdf +Version: svn66115 +Provides: texlive-epspdf = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epspdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-bin < 7:20170520 +Provides: tex-epspdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epspdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epspdf-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Converter for PostScript, EPS and PDF +Requires: texlive-base +Requires: texlive-kpathsea +# tcl and lua +BuildArch: noarch + +%description -n %{shortname}-epspdf Epspdftk.tcl is a GUI ps/eps/pdf converter. Epspdf.tlu, its command-line backend, can be used by itself. Options include grayscaling, cropping margins and single-page selection. Some conversion options are made possible by converting in multiple steps. -%package -n texlive-epstopdf -Provides: tex-epstopdf = %{epoch}:20210325-%{release} -Provides: texlive-epstopdf-bin = %{epoch}:20210325-%{release} -Provides: tex-epstopdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-epstopdf-bin < 7:20180414 -Provides: tex-epstopdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-epstopdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-epstopdf-doc < 7:20180414 -License: BSD -Summary: Convert EPS to 'encapsulated' PDF using Ghostscript -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-epstopdf +%package -n %{shortname}-epstopdf +Version: svn66461 +Provides: texlive-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-epstopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-bin < 7:20170520 +Provides: tex-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-epstopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-epstopdf-doc < 7:20170520 +License: BSD-3-Clause +Summary: Convert EPS to 'encapsulated' PDF using Ghostscript +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-epstopdf Epstopdf is a Perl script that converts an EPS file to an 'encapsulated' PDF file (a single page file whose media box is the same as the original EPS's bounding box). The resulting @@ -2155,22 +2669,27 @@ epstopdf package, which will run the epstopdf script "on the fly", thus giving the illusion that PDFLaTeX is accepting EPS graphic files. -%package -n texlive-exceltex -Provides: tex-exceltex = %{epoch}:20210325-%{release} -Provides: texlive-exceltex-bin = %{epoch}:20210325-%{release} -Provides: tex-exceltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-exceltex-bin < 7:20180414 -Provides: tex-exceltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-exceltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-exceltex-doc < 7:20180414 -License: GPL+ -Summary: Get data from Excel files into LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(ulem.sty) tex(color.sty) -Provides: tex(exceltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-exceltex +%package -n %{shortname}-exceltex +Version: svn26313 +Provides: texlive-exceltex = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-exceltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-bin < 7:20170520 +Provides: tex-exceltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-exceltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-exceltex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Get data from Excel files into LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ulem.sty) +Requires: tex(color.sty) +Provides: tex(exceltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-exceltex Exceltex is a LaTeX package combined with a helper program written in Perl. It provides an easy to use yet powerfull and flexible way to get data from Spreadsheets into LaTeX. In @@ -2183,71 +2702,84 @@ the Spreadsheet::ParseExcel Perl module) and because most spreadsheet applications are able to read and write Excel files. -%package -n texlive-fig4latex -Provides: tex-fig4latex = %{epoch}:20210325-%{release} -Provides: texlive-fig4latex-bin = %{epoch}:20210325-%{release} -Provides: tex-fig4latex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fig4latex-bin < 7:20180414 -Provides: tex-fig4latex-doc = %{epoch}:20210325-%{release} -Provides: texlive-fig4latex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fig4latex-doc < 7:20180414 -License: GPLv3+ -Summary: Management of figures for large LaTeX documents -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-fig4latex +%package -n %{shortname}-fig4latex +Version: svn26313 +Provides: texlive-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fig4latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-bin < 7:20170520 +Provides: tex-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fig4latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fig4latex-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Management of figures for large LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fig4latex Fig4LaTeX simplifies management of the figures in a large LaTeX document. Fig4LaTeX is appropriate for projects that include figures with graphics created by XFig -- in particular, graphics which use the combined PS/LaTeX (or PDF/LaTeX) export method. An example document (with its output) is provided. -%package -n texlive-findhyph -Provides: tex-findhyph = %{epoch}:20210325-%{release} -Provides: texlive-findhyph-bin = %{epoch}:20210325-%{release} -Provides: tex-findhyph-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-findhyph-bin < 7:20180414 -Provides: tex-findhyph-doc = %{epoch}:20210325-%{release} -Provides: texlive-findhyph-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-findhyph-doc < 7:20180414 -License: GPL+ -Summary: Find hyphenated words in a document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-findhyph +%package -n %{shortname}-findhyph +Version: svn47444 +Provides: texlive-findhyph = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-findhyph-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-bin < 7:20170520 +Provides: tex-findhyph-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-findhyph-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-findhyph-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Find hyphenated words in a document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-findhyph Findhyph is a Perl script that will analyse the log file from running your document with \tracingparagraphs=1 set. The output contains enough context to enable you to find the hyphenated word that's being referenced. -%package -n texlive-fontinst -Provides: tex-fontinst = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-fontinst-bin = %{epoch}:20210325-%{release} -Provides: tex-fontinst-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontinst-bin < 7:20180414 -Provides: tex-fontinst-doc = %{epoch}:20210325-%{release} -Provides: texlive-fontinst-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontinst-doc < 7:20180414 -Summary: Help with installing fonts for TeX and LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(color.sty) tex(amstext.sty) -Provides: tex(bbox.sty) = %{epoch}:20210325-%{release} -Provides: tex(cfntinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(finstmsc.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(multislot.sty) = %{epoch}:20210325-%{release} -Provides: tex(xfntinst.sty) = %{epoch}:20210325-%{release} -Provides: tex(csc2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(csckrn2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(osf2x.tex) = %{epoch}:20210325-%{release} -Provides: tex(fontdoc.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-fontinst +%package -n %{shortname}-fontinst +Version: svn62517 +Provides: texlive-fontinst = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontinst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-bin < 7:20170520 +Provides: tex-fontinst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontinst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontinst-doc < 7:20170520 +License: LPPL-1.3c +Summary: Help with installing fonts for TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(color.sty) +Requires: tex(amstext.sty) +Provides: tex(bbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(finstmsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(multislot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(xfntinst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(csc2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(csckrn2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(osf2x.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontdoc.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-fontinst TeX macros for converting Adobe Font Metric files to TeX metric and virtual font format. Fontinst helps mainly with the number crunching and shovelling parts of font installation. This means @@ -2262,79 +2794,122 @@ for files or work with binary file formats; those tasks must normally be done manually or with the help of some other tool, such as the pltotf and vptovf programs. -%package -n texlive-fontools -Provides: tex-fontools = %{epoch}:20210325-%{release} -Provides: texlive-fontools-bin = %{epoch}:20210325-%{release} -Provides: tex-fontools-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontools-bin < 7:20180414 -Provides: tex-fontools-doc = %{epoch}:20210325-%{release} -Provides: texlive-fontools-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontools-doc < 7:20180414 -License: GPLv2+ -Summary: Tools to simplify using fonts (especially TT/OTF ones) -Requires: texlive-base texlive-kpathsea -Provides: tex(fontools_ly1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_ot1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_t1.enc) = %{epoch}:20210325-%{release} -Provides: tex(fontools_ts1.enc) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-fontools -This package provides a few tools to ease using fonts -(especially Truetype/Opentype ones) with Latex and fontinst: -afm2afm - reencode .afm files; designed to replace fontinst's -\reencodefont for big .afm files; autoinst - simplify the use -of the LCDF TypeTools by creating a command file for otftotfm, -plus .fd and .sty files; and ot2kpx - extract all kerning pairs -from an OpenType font. - -%package -n texlive-fontware -Provides: tex-fontware = %{epoch}:20210325-%{release} -Provides: texlive-fontware-bin = %{epoch}:20210325-%{release} -Provides: tex-fontware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fontware-bin < 7:20180414 -Summary: fontware package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-fontware -fontware package. - -%package -n texlive-fragmaster -Provides: tex-fragmaster = %{epoch}:20210325-%{release} -Provides: texlive-fragmaster-bin = %{epoch}:20210325-%{release} -Provides: tex-fragmaster-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-fragmaster-bin < 7:20180414 -Provides: tex-fragmaster-doc = %{epoch}:20210325-%{release} -Provides: texlive-fragmaster-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-fragmaster-doc < 7:20180414 -License: GPL+ -Summary: Using psfrag with PDFLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-fragmaster +%package -n %{shortname}-fontools +Version: svn65706 +Provides: texlive-fontools = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-bin < 7:20170520 +Provides: tex-fontools-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontools-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontools-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Tools to simplify using fonts (especially TT/OTF ones) +Requires: texlive-base +Requires: texlive-kpathsea +# for otfinfo +Requires: texlive-lcdftypetools +# For vptovf +Requires: texlive-fontware +Provides: tex(fontools_cs.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_l7x.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_lgr.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ly1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_oml.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ot1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_qx.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2a.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2b.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t2c.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t3.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_t5.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts1.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontools_ts3.enc) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-fontools +This package provides tools to simplify using OpenType fonts +with LaTeX. By far the most important program in this bundle is +autoinst: autoinst - a wrapper script around Eddie Kohler's +LCDF TypeTools. Autoinst aims to automate the installation of +OpenType fonts in LaTeX by calling the LCDF TypeTools (with the +correct options) for all fonts you wish to install, and +generating the necessary .fd and .sty files. In addition, this +bundle contains a few other, less important utilities: afm2afm +- re-encode .afm files, ot2kpx - extract kerning pairs from +OpenType fonts, splitttc - split an OpenType Collection file +(ttc or otc) into individual fonts. + +%package -n %{shortname}-fontware +Version: svn66186 +Provides: texlive-fontware = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware = %{epoch}:%{source_date}-%{release} +Provides: texlive-fontware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fontware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fontware-bin < 7:20170520 +License: LPPL-1.3c +Summary: Tools for virtual font metrics +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-fontware +Virtual font metrics are usually created in a textual form, the +Virtual Property List, but programs that use them need to use +binary files (the Virtual Font and the TeX Font Metric). The +present two programs translate between the two forms: - vptovf +takes a VPL file and generates a VF file and a TFM file; - +vftovp takes a VF file and a TFM file and generates a VPL file. +The programs are to be found in every distribution of TeX. + +%package -n %{shortname}-fragmaster +Version: svn26313 +Provides: texlive-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-fragmaster-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-bin < 7:20170520 +Provides: tex-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-fragmaster-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-fragmaster-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Using psfrag with PDFLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-fragmaster Fragmaster enables you to use psfrag with PDFLaTeX. It takes EPS files and psfrag substitution definition files, and produces PDF and EPS files with the substitutions included. -%package -n texlive-getmap -Provides: tex-getmap = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: texlive-getmap-bin = %{epoch}:20210325-%{release} -Provides: tex-getmap-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-getmap-bin < 7:20180414 -Provides: tex-getmap-doc = %{epoch}:20210325-%{release} -Provides: texlive-getmap-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-getmap-doc < 7:20180414 -Summary: Download OpenStreetMap maps for use in documents -Requires: texlive-base texlive-kpathsea -Requires: tex(xkeyval.sty) tex(stringenc.sty) -Requires: tex(ifthen.sty) -Provides: tex(getmap.cfg) = %{epoch}:20210325-%{release} -Provides: tex(getmap.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-getmap +%package -n %{shortname}-getmap +Version: svn50589 +Provides: texlive-getmap = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-getmap-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-bin < 7:20170520 +Provides: tex-getmap-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-getmap-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-getmap-doc < 7:20170520 +License: LPPL-1.3c +Summary: Download OpenStreetMap maps for use in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(xkeyval.sty) +Requires: tex(stringenc.sty) +Requires: tex(ifthen.sty) +Provides: tex(getmap.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(getmap.sty) = %{epoch}:%{source_date}-%{release} +# lua and shell +BuildArch: noarch + +%description -n %{shortname}-getmap The package provides a simple interface to OpenStreetMap, and to Google Maps "map images". In the simplest case, it is sufficient to specify the address you need (if you don't, the @@ -2344,68 +2919,122 @@ LaTeX must be running with \write 18 enabled). The ("external") lua script may be used from the command line; a bash version is provided. -%package -n texlive-git-latexdiff -Summary: Call latexdiff on two Git revisions of a file -License: BSD -Requires: texlive-base texlive-kpathsea -Requires: git, texlive-latexdiff +%package -n %{shortname}-git-latexdiff +Version: svn54732 +Provides: texlive-git-latexdiff = %{epoch}:%{source_date}-%{release} +Summary: Call latexdiff on two Git revisions of a file +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea +Requires: git, texlive-latexdiff -%description -n texlive-git-latexdiff +%description -n %{shortname}-git-latexdiff git-latexdiff is a tool to graphically visualize differences between different versions of a LaTeX file. Technically, it is a wrapper around git and latexdiff. -%package -n texlive-glossaries -Provides: tex-glossaries = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-glossaries-bin = %{epoch}:20210325-%{release} -Provides: tex-glossaries-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-glossaries-bin < 7:20180414 -Provides: tex-glossaries-doc = %{epoch}:20210325-%{release} -Provides: texlive-glossaries-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-glossaries-doc < 7:20180414 -Summary: Create glossaries and lists of acronyms -Requires: texlive-base texlive-kpathsea -Requires: tex(tracklang.sty) tex(ifthen.sty) -Requires: tex(xkeyval.sty) tex(mfirstuc.sty) -Requires: tex(textcase.sty) tex(xfor.sty) -Requires: tex(datatool-base.sty) tex(amsgen.sty) -Requires: tex(etoolbox.sty) tex(glossary-super.sty) -Requires: tex(glossary-tree.sty) tex(translator.sty) -Requires: tex(accsupp.sty) tex(longtable.sty) -Requires: tex(array.sty) tex(multicol.sty) -Requires: tex(supertabular.sty) -Provides: tex(glossaries-babel.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-compatible-207.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-compatible-307.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-polyglossia.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-prefix.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossaries-accsupp.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-hypernav.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-inline.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-list.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-long.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-longragged.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-mcols.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-super.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-superragged.sty) = %{epoch}:20210325-%{release} -Provides: tex(glossary-tree.sty) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronym.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-brief.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-cite.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-images.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-long.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-multipar.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-parent.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(example-glossaries-url.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-glossaries +%package -n %{shortname}-glossaries +Version: svn64919 +Provides: texlive-glossaries = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-glossaries-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-bin < 7:20170520 +Provides: tex-glossaries-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-glossaries-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-glossaries-doc < 7:20170520 +License: LPPL-1.3c +Summary: Create glossaries and lists of acronyms +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-amsmath +Requires: texlive-datatool +Requires: texlive-etoolbox +Requires: texlive-mfirstuc +Requires: texlive-tracklang +Requires: texlive-xfor +Requires: texlive-xkeyval +Requires: tex(accsupp.sty) +Requires: tex(amsgen.sty) +Requires: tex(array.sty) +Requires: tex(booktabs.sty) +Requires: tex(ifthen.sty) +Requires: tex(longtable.sty) +Requires: tex(multicol.sty) +Requires: tex(shellesc.sty) +Requires: tex(supertabular.sty) +Requires: tex(textcase.sty) +Requires: tex(translator.sty) +Provides: tex(example-glossaries-acronym-desc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronym.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-acronyms-lang.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-brief.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childmultipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-childnoname.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-cite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-images.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-long.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-longchild.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-multipar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-parent.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbolnames.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-url.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(example-glossaries-user.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-babel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-207.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-compatible-307.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-polyglossia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries-prefix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-hypernav.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-inline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-list.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-long.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longbooktabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-longragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-mcols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-super.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-superragged.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree-2020-03-19.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree-2021-11-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(glossary-tree.sty) = %{epoch}:%{source_date}-%{release} +# perl and lua +BuildArch: noarch + +%description -n %{shortname}-glossaries The glossaries package supports acronyms and multiple glossaries, and has provision for operation in several languages (using the facilities of either babel or @@ -2420,83 +3049,153 @@ There is provision for loading a database of terms, but only terms used in the text will be added to the relevant glossary. The package uses an indexing program to provide the actual glossary; either makeindex or xindy may serve this purpose, and -a Perl script is provided to serve as interface. The package -distribution also provides the mfirstuc package, for changing -the first letter of a word to upper case. The package -supersedes the author's glossary package (which is now -obsolete), and a conversion tool is provided. - -%package -n texlive-glyphlist -Provides: tex-glyphlist = %{epoch}:20210325-%{release} -License: Apache-2.0 -Summary: glyphlist package -BuildArch: noarch -Requires: texlive-base texlive-kpathsea - -%description -n texlive-glyphlist +a Perl script is provided to serve as interface. This package +requires the mfirstuc package. The package supersedes the +author's glossary package (which is now obsolete). + +%package -n %{shortname}-glyphlist +Version: svn54074 +Provides: texlive-glyphlist = %{epoch}:%{source_date}-%{release} +Provides: tex-glyphlist = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: glyphlist package +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-glyphlist glyphlist package. -%package -n texlive-gregoriotex -Provides: tex-gregoriotex = %{epoch}:20210325-%{release} -Provides: texlive-gregoriotex-bin = %{epoch}:20210325-%{release} -Provides: tex-gregoriotex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-gregoriotex-bin < 7:20180414 -Provides: tex-gregoriotex-doc = %{epoch}:20210325-%{release} -Provides: texlive-gregoriotex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-gregoriotex-doc < 7:20180414 -License: GPLv3 -Summary: Engraving Gregorian Chant scores -Requires: texlive-base texlive-kpathsea -Provides: tex(gregoriosyms.sty) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex.sty) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-signs.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-syllable.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-main.tex) = %{epoch}:20210325-%{release} -Provides: tex(gsp-default.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-nabc.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-symbols.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-chars.tex) = %{epoch}:20210325-%{release} -Provides: tex(gregoriotex-spaces.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-gregoriotex +%package -n %{shortname}-gregoriotex +Version: svn58331 +Provides: texlive-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gregoriotex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-bin < 7:20170520 +Provides: tex-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-gregoriotex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gregoriotex-doc < 7:20170520 +License: GPL-3.0-only +Summary: Engraving Gregorian Chant scores +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(iftex.sty) +Requires: tex(kvoptions.sty) +Requires: tex(luacolor.sty) +Requires: tex(luamplib.sty) +Requires: tex(luaotfload.sty) +Requires: tex(luatexbase.sty) +Requires: tex(xcolor.sty) +Requires: tex(xstring.sty) +Provides: tex(gregoriosyms.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-signs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-syllable.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-main.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gsp-default.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-nabc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-symbols.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-chars.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(gregoriotex-spaces.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-gregoriotex Gregorio is a software application for engraving Gregorian Chant scores on a computer. Gregorio's main job is to convert a gabc file (simple text representation of a score) into a GregorioTeX file, which makes TeX able to create a PDF of your score. -%package -n texlive-gsftopk -Provides: tex-gsftopk = %{epoch}:20210325-%{release} -Provides: texlive-gsftopk-bin = %{epoch}:20210325-%{release} -Provides: tex-gsftopk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-gsftopk-bin < 7:20180414 -License: GPL+ -Summary: Convert "ghostscript fonts" to PK files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-gsftopk +%package -n %{shortname}-gsftopk +Version: svn52851 +Provides: texlive-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk = %{epoch}:%{source_date}-%{release} +Provides: texlive-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-gsftopk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-gsftopk-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Convert "ghostscript fonts" to PK files +Requires: texlive-base +Requires: texlive-kpathsea +# Does not exist in a package anymore +# Requires: tex(psfonts.map) + +%description -n %{shortname}-gsftopk Designed for use with xdvi and dvips this utility converts Adobe Type 1 fonts to PK bitmap format. It should not ordinarily be much used nowadays, since both its target applications are now capable of dealing with Type 1 fonts, direct. -%package -n texlive-hyperxmp -Summary: Embed XMP metadata within a LaTeX document -License: LPPL-1.3c -Requires: texlive-base texlive-kpathsea -Requires: tex(atenddvi.sty) -Requires: tex(kvoptions.sty) -Requires: tex(pdfescape.sty) -Requires: tex(stringenc.sty) -Requires: tex(intcalc.sty) -Requires: tex(ifxetex.sty) -Provides: tex(hyperxmp.sty) = %{epoch}:20210325-%{release} -Provides: texlive-hyperxmp-doc = %{epoch}:20210325-%{release} -Provides: tex-hyperxmp-doc = %{epoch}:20210325-%{release} - -%description -n texlive-hyperxmp +%package -n %{shortname}-hitex +Version: svn65883 +Provides: texlive-hitex = %{epoch}:%{source_date}-%{release} +Provides: texlive-hitex-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: A TeX extension writing HINT output for on-screen reading +Requires: texlive-base, texlive-kpathsea +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-everyshi +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Provides: tex(hiltxpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(hiplainpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifhint.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-hitex +An extension of TeX which generates HINT output. The HINT file +format is an alternative to the DVI and PDF formats which was +designed specifically for on-screen reading of documents. +Especially on mobile devices, reading DVI or PDF documents can +be cumbersome. Mobile devices are available in a large variety +of sizes but typically are not large enough to display +documents formated for a4/letter-size paper. To compensate for +the limitations of a small screen, users are used to +alternating between landscape (few long lines) and portrait +(more short lines) mode. The HINT format supports variable and +varying screen sizes, leveraging the ability of TeX to format a +document for nearly-arbitrary values of \hsize and \vsize. + +%package -n %{shortname}-hyperxmp +Version: svn65980 +Provides: texlive-hyperxmp = %{epoch}:%{source_date}-%{release} +Summary: Embed XMP metadata within a LaTeX document +License: LPPL-1.3c +Requires: texlive-base texlive-kpathsea +Requires: tex(atenddvi.sty) +Requires: tex(etoolbox.sty) +Requires: tex(hyperref.sty) +Requires: tex(ifdraft.sty) +Requires: tex(ifluatex.sty) +Requires: tex(ifmtarg.sty) +Requires: tex(iftex.sty) +Requires: tex(ifthen.sty) +Requires: tex(intcalc.sty) +Requires: tex(kvoptions.sty) +Requires: tex(luacode.sty) +Requires: tex(pdfescape.sty) +Requires: tex(stringenc.sty) +Requires: tex(totpages.sty) +Provides: tex(hyperxmp.sty) = %{epoch}:%{source_date}-%{release} +Provides: texlive-hyperxmp-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-hyperxmp-doc = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-hyperxmp XMP (eXtensible Metadata Platform) is a mechanism proposed by Adobe for embedding document metadata within the document itself. The metadata is designed to be easy to extract, even by @@ -2517,19 +3216,24 @@ address/URL. Hyperxmp currently embeds XMP only within PDF documents; it is compatible with pdfLaTeX, XeLaTeX, LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. -%package -n texlive-installfont -Provides: tex-installfont = %{epoch}:20210325-%{release} -Provides: texlive-installfont-bin = %{epoch}:20210325-%{release} -Provides: tex-installfont-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-installfont-bin < 7:20180414 -Provides: tex-installfont-doc = %{epoch}:20210325-%{release} -Provides: texlive-installfont-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-installfont-doc < 7:20180414 -Summary: A bash script for installing a LaTeX font family -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-installfont +%package -n %{shortname}-installfont +Version: svn31205 +Provides: texlive-installfont = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-installfont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-bin < 7:20170520 +Provides: tex-installfont-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-installfont-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-installfont-doc < 7:20170520 +License: LPPL-1.3c +Summary: A bash script for installing a LaTeX font family +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-installfont With this script you can install a LaTeX font family (PostScript Type 1, TrueType and OpenType formats are supported). Font series from light to ultra bold, and (faked) @@ -2540,87 +3244,96 @@ font files (in PostScript Type1 format) named in the Karl Berry scheme (e.g. 5bbr8a.pfb). After running the script, you should have a working font installation in your local TeX tree. -%package -n texlive-jadetex -Provides: tex-jadetex = %{epoch}:20210325-%{release} -Provides: texlive-jadetex-bin = %{epoch}:20210325-%{release} -Provides: tex-jadetex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-jadetex-bin < 7:20180414 -Provides: tex-jadetex-doc = %{epoch}:20210325-%{release} -Provides: texlive-jadetex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-jadetex-doc < 7:20180414 -Provides: jadetex = %{epoch}:20210325-%{release} -License: MIT -Summary: Macros supporting Jade DSSSL output -Requires: texlive-base texlive-kpathsea -Requires: texlive-latex texlive-passivetex -Requires: texlive-pdftex -Requires: texlive-tex -Requires: texlive-amsfonts -Requires: texlive-atbegshi -Requires: texlive-atveryend -Requires: texlive-auxhook -Requires: texlive-babel -Requires: texlive-bigintcalc -Requires: texlive-bitset -Requires: texlive-cm -Requires: texlive-colortbl -Requires: texlive-cyrillic -Requires: texlive-dehyph -Requires: texlive-ec -Requires: texlive-etexcmds -Requires: texlive-fancyhdr -Requires: texlive-graphics -Requires: texlive-graphics-cfg -Requires: texlive-graphics-def -Requires: texlive-hycolor -Requires: texlive-hyperref -Requires: texlive-hyph-utf8 -Requires: texlive-iftex -Requires: texlive-infwarerr -Requires: texlive-intcalc -Requires: texlive-kvdefinekeys -Requires: texlive-kvoptions -Requires: texlive-kvsetkeys -Requires: texlive-l3kernel -Requires: texlive-latex-fonts -Requires: texlive-latexconfig -Requires: texlive-letltxmacro -Requires: texlive-ltxcmds -Requires: texlive-marvosym -Requires: texlive-pdfescape -Requires: texlive-pdftexcmds -Requires: texlive-psnfss -Requires: texlive-rerunfilecheck -Requires: texlive-stmaryrd -Requires: texlive-symbol -Requires: texlive-tex-ini-files -Requires: texlive-tipa -Requires: texlive-tools -Requires: texlive-ulem -Requires: texlive-uniquecounter -Requires: texlive-unicode-data -Requires: texlive-url -Requires: texlive-wasysym -Requires: texlive-zapfding +%package -n %{shortname}-jadetex +Version: svn63654 +Provides: texlive-jadetex = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-jadetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-bin < 7:20170520 +Provides: tex-jadetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jadetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jadetex-doc < 7:20170520 +Provides: jadetex = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Macros supporting Jade DSSSL output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-passivetex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-amsfonts +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-auxhook +Requires: texlive-babel +Requires: texlive-bigintcalc +Requires: texlive-bitset +Requires: texlive-cm +Requires: texlive-colortbl +Requires: texlive-cyrillic +Requires: texlive-dehyph +Requires: texlive-ec +Requires: texlive-etexcmds +Requires: texlive-fancyhdr +Requires: texlive-graphics +Requires: texlive-graphics-cfg +Requires: texlive-graphics-def +Requires: texlive-hycolor +Requires: texlive-hyperref +Requires: texlive-hyph-utf8 +Requires: texlive-iftex +Requires: texlive-infwarerr +Requires: texlive-intcalc +Requires: texlive-kvdefinekeys +Requires: texlive-kvoptions +Requires: texlive-kvsetkeys +Requires: texlive-l3kernel +Requires: texlive-latex-fonts +Requires: texlive-latexconfig +Requires: texlive-letltxmacro +Requires: texlive-ltxcmds +Requires: texlive-marvosym +Requires: texlive-pdfescape +Requires: texlive-pdftexcmds +Requires: texlive-psnfss +Requires: texlive-rerunfilecheck +Requires: texlive-stmaryrd +Requires: texlive-symbol +Requires: texlive-tex-ini-files +Requires: texlive-tipa +Requires: texlive-tools +Requires: texlive-ulem +Requires: texlive-uniquecounter +Requires: texlive-unicode-data +Requires: texlive-url +Requires: texlive-wasysym +Requires: texlive-zapfding Requires(post,postun): coreutils -Provides: tex(dsssl.def) = %{epoch}:20210325-%{release} -Provides: tex(uentities.sty) = %{epoch}:20210325-%{release} -Provides: tex(ut1omlgc.fd) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(dsssl.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(uentities.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ut1omlgc.fd) = %{epoch}:%{source_date}-%{release} +# no binaries +BuildArch: noarch -%description -n texlive-jadetex +%description -n %{shortname}-jadetex Macro package on top of LaTeX to typeset TeX output of the Jade DSSSL implementation. -%package -n texlive-jfmutil -Provides: tex-jfmutil = %{epoch}:20210325-%{release} -Provides: texlive-jfmutil-bin = %{epoch}:20210325-%{release} -License: MIT -Summary: Utility to process pTeX-extended TFM and VF -BuildArch: noarch -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-jfmutil +Version: svn60987 +Provides: texlive-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: tex-jfmutil = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfmutil-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Utility to process pTeX-extended TFM and VF +# perl +BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea -%description -n texlive-jfmutil +%description -n %{shortname}-jfmutil This program provides functionality to process data files (JFM and VF) that form logical fonts used in (u)pTeX. The functions currently available include: The mutual conversion between @@ -2631,85 +3344,101 @@ counterpart to the vftovp/vptovf programs. The mutual conversion between VF files alone and files in the "ZVP0 format", which is a subset of the ZVP format. -%package -n texlive-ketcindy -Provides: tex-ketcindy = %{epoch}:20210325-%{release} -Provides: tex-ketcindy-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: Macros for graphic generation and Cinderella plugin -Requires: texlive-base -Requires: texlive-kpathsea -Provides: tex(ketlayer.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketlayer2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketmedia.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketpic.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketpic2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketslide.sty) = %{epoch}:20210325-%{release} -Provides: tex(ketslide2.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-ketcindy +%package -n %{shortname}-ketcindy +Version: svn58661 +Provides: texlive-ketcindy = %{epoch}:%{source_date}-%{release} +Provides: tex-ketcindy = %{epoch}:%{source_date}-%{release} +Provides: tex-ketcindy-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Macros for graphic generation and Cinderella plugin +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(ketlayer.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketlayer2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketmedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketpic2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ketslide2.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ketcindy KETpic is a macro package designed for computer algebra systems (CAS) to generate LaTeX source codes for high-quality mathematical artwork. KETcindy is a plugin for Cinderella that allows to generate graphics using KETpic. The generated code can be included in any LaTeX document. -%package -n texlive-kotex-utils -Provides: tex-kotex-utils = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-kotex-utils-bin = %{epoch}:20210325-%{release} -Provides: tex-kotex-utils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-kotex-utils-bin < 7:20180414 -Provides: tex-kotex-utils-doc = %{epoch}:20210325-%{release} -Provides: texlive-kotex-utils-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-kotex-utils-doc < 7:20180414 -Summary: Utility scripts and support files for typesetting Korean -Requires: texlive-base texlive-kotex-utf -Requires: texlive-kpathsea -BuildArch: noarch - -%description -n texlive-kotex-utils +%package -n %{shortname}-kotex-utils +Version: svn38727 +Provides: texlive-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kotex-utils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-bin < 7:20170520 +Provides: tex-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kotex-utils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kotex-utils-doc < 7:20170520 +License: LPPL-1.3c +Summary: Utility scripts and support files for typesetting Korean +Requires: texlive-base +Requires: texlive-kotex-utf +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-kotex-utils The bundle provides scripts and support files for index generation in Korean language typesetting. The files belong to the ko.TeX bundle. -%package -n texlive-kpathsea -License: LGPLv2+ -Summary: Path searching library for TeX-related files -Provides: kpathsea = %{epoch}:20210325-%{release} -Obsoletes: kpathsea < 20210325 -Provides: tex-kpathsea = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-bin = %{epoch}:20210325-%{release} -Provides: tex-kpathsea-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-bin < 7:20180414 -Provides: tex-kpathsea-doc = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-doc < 7:20180414 -Requires: coreutils grep texlive-base -Requires(post): texlive-texlive-scripts = %{epoch}:20210325-%{release} -Provides: tex(fmtutil.cnf) = %{epoch}:20210325-%{release} -Provides: tex(mktex.cnf) = %{epoch}:20210325-%{release} -Provides: tex(texmf.cnf) = %{epoch}:20210325-%{release} - -%description -n texlive-kpathsea +%package -n %{shortname}-kpathsea +Version: svn66209 +Provides: texlive-kpathsea = %{epoch}:%{source_date}-%{release} +License: LGPL-2.1-or-later +Summary: Path searching library for TeX-related files +Provides: kpathsea = %{epoch}:%{source_date}-%{release} +Obsoletes: kpathsea < %{source_date} +Provides: tex-kpathsea = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-kpathsea-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-bin < 7:20170520 +Provides: tex-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-kpathsea-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-doc < 7:20170520 +Requires: coreutils, grep +Requires: texlive-base +# We absolutely need this to go in first, since the trigger needs it +Requires(post): texlive-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: tex(fmtutil.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mktex.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(texmf.cnf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-kpathsea Kpathsea is a library and utility programs which provide path searching facilities for TeX file types, including the self- locating feature required for movable installations, layered on top of a general search mechanism. -%package -n texlive-l3build -Provides: tex-l3build = %{epoch}:20210325-%{release} -Provides: texlive-l3build-bin = %{epoch}:20210325-%{release} -Provides: tex-l3build-doc = %{epoch}:20210325-%{release} -Provides: texlive-l3build-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-l3build-doc < 7:20210325 -License: MIT -Summary: A testing and building system for (La)TeX -Provides: tex(regression-test.tex) = %{epoch}:20210325-%{release} -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-l3build +%package -n %{shortname}-l3build +Version: svn66471 +Provides: texlive-l3build = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-l3build-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-l3build-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-l3build-doc < 7:20180414 +License: LPPL-1.3c +Summary: A testing and building system for (La)TeX +Provides: tex(regression-test.tex) = %{epoch}:%{source_date}-%{release} +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +# lua +BuildArch: noarch + +%description -n %{shortname}-l3build The build system supports testing and building LaTeX3 code, on Linux, Mac OS X and Windows systems. The package offers: A unit testing system for (La)TeX code (whether kernel code or @@ -2717,196 +3446,209 @@ contributed packages); A system for typesetting package documentation; and An automated process for creating CTAN releases. -%package -n texlive-lacheck -Provides: tex-lacheck = %{epoch}:20210325-%{release} -Provides: texlive-lacheck-bin = %{epoch}:20210325-%{release} -Provides: tex-lacheck-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lacheck-bin < 7:20180414 -License: GPL+ -Summary: LaTeX checker -Requires: texlive-base texlive-kpathsea - -%description -n texlive-lacheck +%package -n %{shortname}-lacheck +Version: svn66186 +Provides: texlive-lacheck = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck = %{epoch}:%{source_date}-%{release} +Provides: texlive-lacheck-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lacheck-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lacheck-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: LaTeX checker +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-lacheck Lacheck is a tool for finding common mistakes in LaTeX documents. The distribution includes sources, and executables for OS/2 and Win32 environments. -%package -n texlive-latex -Provides: tex-latex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tetex-latex = %{epoch}:20210325-%{release} -Provides: texlive-latex-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-bin < 7:20180414 -Provides: texlive-latex-bin-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-bin-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-bin-bin < 7:20180414 -Provides: tex-latex-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-doc < 7:20180414 -# texlive-latex-base-dev is a development package of texlive-latex -# for stability we don't use this. -#!BuildIgnore: texlive-latex-base-dev -Summary: A TeX macro package that defines LaTeX -Requires: texlive-base -Requires: tex(expl3.sty) -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-pdftex -Requires: texlive-latexconfig -Requires: texlive-latex-fonts -Requires: texlive-cm-super -Requires: texlive-psnfss +%package -n %{shortname}-latex +Version: svn65161 +Provides: texlive-latex = %{epoch}:%{source_date}-%{release} +Provides: tex-latex = %{epoch}:%{source_date}-%{release} +Provides: tetex-latex = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin < 7:20170520 +Provides: texlive-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-bin-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-bin-bin < 7:20170520 +Provides: tex-latex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-doc < 7:20170520 +License: LPPL-1.3c +Summary: A TeX macro package that defines LaTeX +Requires: texlive-base +Requires: tex(expl3.sty) +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-pdftex +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +# As a result of changes in textcomp, it requests TS1 fonts for some things +# most notably, \textbullet. Since people probably want a working itemize +# even on rather minimal installs, we add an explicit Requires on texlive-cm-super +# here. (bz1867927) +Requires: texlive-cm-super +# Another font dependency +Requires: texlive-psnfss Requires(post,postun): coreutils -Requires: tex(multicol.sty) tex(url.sty) -Requires: tex(hyperref.sty) -Provides: tex(alltt.sty) = %{epoch}:20210325-%{release} -Provides: tex(ansinew.def) = %{epoch}:20210325-%{release} -Provides: tex(applemac.def) = %{epoch}:20210325-%{release} -Provides: tex(article.cls) = %{epoch}:20210325-%{release} -Provides: tex(article.sty) = %{epoch}:20210325-%{release} -Provides: tex(ascii.def) = %{epoch}:20210325-%{release} -Provides: tex(bezier.sty) = %{epoch}:20210325-%{release} -Provides: tex(bk10.clo) = %{epoch}:20210325-%{release} -Provides: tex(bk11.clo) = %{epoch}:20210325-%{release} -Provides: tex(bk12.clo) = %{epoch}:20210325-%{release} -Provides: tex(book.cls) = %{epoch}:20210325-%{release} -Provides: tex(book.sty) = %{epoch}:20210325-%{release} -Provides: tex(cp1250.def) = %{epoch}:20210325-%{release} -Provides: tex(cp1252.def) = %{epoch}:20210325-%{release} -Provides: tex(cp1257.def) = %{epoch}:20210325-%{release} -Provides: tex(cp437.def) = %{epoch}:20210325-%{release} -Provides: tex(cp437de.def) = %{epoch}:20210325-%{release} -Provides: tex(cp850.def) = %{epoch}:20210325-%{release} -Provides: tex(cp852.def) = %{epoch}:20210325-%{release} -Provides: tex(cp858.def) = %{epoch}:20210325-%{release} -Provides: tex(cp865.def) = %{epoch}:20210325-%{release} -Provides: tex(decmulti.def) = %{epoch}:20210325-%{release} -Provides: tex(doc.sty) = %{epoch}:20210325-%{release} -Provides: tex(docstrip.tex) = %{epoch}:20210325-%{release} -Provides: tex(exscale.sty) = %{epoch}:20210325-%{release} -Provides: tex(fix-cm.sty) = %{epoch}:20210325-%{release} -Provides: tex(fixltx2e.sty) = %{epoch}:20210325-%{release} -Provides: tex(flafter.sty) = %{epoch}:20210325-%{release} -Provides: tex(fleqn.clo) = %{epoch}:20210325-%{release} -Provides: tex(fleqn.sty) = %{epoch}:20210325-%{release} -Provides: tex(fltrace.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontenc.sty) = %{epoch}:20210325-%{release} -Provides: tex(fontmath.cfg) = %{epoch}:20210325-%{release} -Provides: tex(fonttext.cfg) = %{epoch}:20210325-%{release} -Provides: tex(graphpap.sty) = %{epoch}:20210325-%{release} -Provides: tex(idx.tex) = %{epoch}:20210325-%{release} -Provides: tex(ifthen.sty) = %{epoch}:20210325-%{release} -Provides: tex(inputenc.sty) = %{epoch}:20210325-%{release} -Provides: tex(lablst.tex) = %{epoch}:20210325-%{release} -Provides: tex(latex209.def) = %{epoch}:20210325-%{release} -Provides: tex(latexbug.tex) = %{epoch}:20210325-%{release} -Provides: tex(latexrelease.sty) = %{epoch}:20210325-%{release} -Provides: tex(latexsym.sty) = %{epoch}:20210325-%{release} -Provides: tex(latin1.def) = %{epoch}:20210325-%{release} -Provides: tex(latin10.def) = %{epoch}:20210325-%{release} -Provides: tex(latin2.def) = %{epoch}:20210325-%{release} -Provides: tex(latin3.def) = %{epoch}:20210325-%{release} -Provides: tex(latin4.def) = %{epoch}:20210325-%{release} -Provides: tex(latin5.def) = %{epoch}:20210325-%{release} -Provides: tex(latin9.def) = %{epoch}:20210325-%{release} -Provides: tex(leqno.clo) = %{epoch}:20210325-%{release} -Provides: tex(leqno.sty) = %{epoch}:20210325-%{release} -Provides: tex(letter.cls) = %{epoch}:20210325-%{release} -Provides: tex(letter.sty) = %{epoch}:20210325-%{release} -Provides: tex(lppl.tex) = %{epoch}:20210325-%{release} -Provides: tex(ltnews.cls) = %{epoch}:20210325-%{release} -Provides: tex(ltxcheck.tex) = %{epoch}:20210325-%{release} -Provides: tex(ltxdoc.cls) = %{epoch}:20210325-%{release} -Provides: tex(ltxguide.cls) = %{epoch}:20210325-%{release} -Provides: tex(macce.def) = %{epoch}:20210325-%{release} -Provides: tex(makeidx.sty) = %{epoch}:20210325-%{release} -Provides: tex(minimal.cls) = %{epoch}:20210325-%{release} -Provides: tex(newlfont.sty) = %{epoch}:20210325-%{release} -Provides: tex(next.def) = %{epoch}:20210325-%{release} -Provides: tex(nfssfont.tex) = %{epoch}:20210325-%{release} -Provides: tex(oldlfont.sty) = %{epoch}:20210325-%{release} -Provides: tex(omlcmm.fd) = %{epoch}:20210325-%{release} -Provides: tex(omlcmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(omlenc.def) = %{epoch}:20210325-%{release} -Provides: tex(omllcmm.fd) = %{epoch}:20210325-%{release} -Provides: tex(omscmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(omscmsy.fd) = %{epoch}:20210325-%{release} -Provides: tex(omsenc.def) = %{epoch}:20210325-%{release} -Provides: tex(omslcmsy.fd) = %{epoch}:20210325-%{release} -Provides: tex(omxcmex.fd) = %{epoch}:20210325-%{release} -Provides: tex(omxlcmex.fd) = %{epoch}:20210325-%{release} -Provides: tex(openbib.sty) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(ot1lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot1lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ot4enc.def) = %{epoch}:20210325-%{release} -Provides: tex(preload.cfg) = %{epoch}:20210325-%{release} -Provides: tex(proc.cls) = %{epoch}:20210325-%{release} -Provides: tex(proc.sty) = %{epoch}:20210325-%{release} -Provides: tex(report.cls) = %{epoch}:20210325-%{release} -Provides: tex(report.sty) = %{epoch}:20210325-%{release} -Provides: tex(sample2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(sfonts.def) = %{epoch}:20210325-%{release} -Provides: tex(shortvrb.sty) = %{epoch}:20210325-%{release} -Provides: tex(showidx.sty) = %{epoch}:20210325-%{release} -Provides: tex(size10.clo) = %{epoch}:20210325-%{release} -Provides: tex(size11.clo) = %{epoch}:20210325-%{release} -Provides: tex(size12.clo) = %{epoch}:20210325-%{release} -Provides: tex(slides.cls) = %{epoch}:20210325-%{release} -Provides: tex(slides.def) = %{epoch}:20210325-%{release} -Provides: tex(slides.sty) = %{epoch}:20210325-%{release} -Provides: tex(small2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(source2e.tex) = %{epoch}:20210325-%{release} -Provides: tex(syntonly.sty) = %{epoch}:20210325-%{release} -Provides: tex(t1cmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmfib.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmfr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(t1enc.sty) = %{epoch}:20210325-%{release} -Provides: tex(t1lcmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(t1lcmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(testpage.tex) = %{epoch}:20210325-%{release} -Provides: tex(texsys.cfg) = %{epoch}:20210325-%{release} -Provides: tex(textcomp.sty) = %{epoch}:20210325-%{release} -Provides: tex(tracefnt.sty) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1cmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ts1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(tuenc.def) = %{epoch}:20210325-%{release} -Provides: tex(tulmdh.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmssq.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmssq.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(tulmvtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmr.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmss.fd) = %{epoch}:20210325-%{release} -Provides: tex(ucmtt.fd) = %{epoch}:20210325-%{release} -Provides: tex(ulasy.fd) = %{epoch}:20210325-%{release} -Provides: tex(ullasy.fd) = %{epoch}:20210325-%{release} -Provides: tex(utf8-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(utf8.def) = %{epoch}:20210325-%{release} -Provides: tex(utf8test.tex) = %{epoch}:20210325-%{release} -Provides: texlive-texmf-latex = %{epoch}:20210325-%{release} -Obsoletes: texlive-texmf-latex < 20210325 -BuildArch: noarch - -%description -n texlive-latex +Requires: tex(multicol.sty) +Requires: tex(url.sty) +Requires: tex(hyperref.sty) +Requires: tex(hypdoc.sty) +Provides: tex(alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ansinew.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(applemac.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(article.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ascii.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(atbegshi-ltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(atveryend-ltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bezier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(bk12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(book.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1250.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1252.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp1257.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp437de.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp850.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp852.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp858.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(cp865.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(decmulti.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc-2016-02-15.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc-2021-06-01.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(doc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(docstrip.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(exscale.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fix-cm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fixltx2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(fleqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fontmath.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(fonttext.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(graphpap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(idx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifthen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(inputenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lablst.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex209.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexrelease.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latexsym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin1.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin10.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin2.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin3.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin4.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin5.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(latin9.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(leqno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(letter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lppl.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltnews.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxcheck.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxdoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(ltxguide.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(macce.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(minimal.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(newlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(next.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(nfssfont.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(oldlfont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlcmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omlenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omllcmm.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omscmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omsenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(omslcmsy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(omxlcmex.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(openbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ot4enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(preload.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(proc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(report.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(sample2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(sfonts.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(shortvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(size10.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size11.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(size12.clo) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(slides.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(small2e.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(source2edoc.cls) = %{epoch}:%{source_date}-%{release} +Provides: tex(structuredlog.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfib.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmfr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1enc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(t1lcmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(testpage.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsys.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp-2018-08-11.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tracefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1cmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ts1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuenc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmdh.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmssq.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(tulmvtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmr.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmss.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ucmtt.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ulasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(ullasy.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8-2018.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(utf8.def) = %{epoch}:%{source_date}-%{release} +Provides: texlive-texmf-latex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texmf-latex < %{source_date} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-latex LaTeX is a widely-used macro package for TeX, providing many basic document formating commands extended by a wide range of packages. It is a development of Leslie Lamport's LaTeX 2.09, @@ -2922,39 +3664,47 @@ user commands, font selection and control, class and package writing, font encodings, configuration options and modification of LaTeX. -%package -n texlive-latex-git-log -Provides: tex-latex-git-log = %{epoch}:20210325-%{release} -Provides: texlive-latex-git-log-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-git-log-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-git-log-bin < 7:20180414 -Provides: tex-latex-git-log-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-git-log-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-git-log-doc < 7:20180414 -License: GPLv3+ -Summary: Typeset git log information -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex-git-log +%package -n %{shortname}-latex-git-log +Version: svn54010 +Provides: texlive-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-git-log-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-bin < 7:20170520 +Provides: tex-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-git-log-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-git-log-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Typeset git log information +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latex-git-log The program is run within a git repository, and outputs the entire version history, as a LaTeX table. That output will typically be redirected to a file; the author recommends typesetting in landscape orientation. -%package -n texlive-latex-papersize -Provides: tex-latex-papersize = %{epoch}:20210325-%{release} -Provides: texlive-latex-papersize-bin = %{epoch}:20210325-%{release} -Provides: tex-latex-papersize-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-papersize-bin < 7:20180414 -Provides: tex-latex-papersize-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex-papersize-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex-papersize-doc < 7:20180414 -License: ASL 2.0 -Summary: Calculate LaTeX settings for any font and paper size -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex-papersize +%package -n %{shortname}-latex-papersize +Version: svn53131 +Provides: texlive-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex-papersize-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-bin < 7:20170520 +Provides: tex-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex-papersize-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex-papersize-doc < 7:20170520 +License: Apache-2.0 +Summary: Calculate LaTeX settings for any font and paper size +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-latex-papersize The package is a Python script, whose typical use is when preparing printed material for users with low vision. The most effective way of doing this is to print on (notional) small @@ -2962,71 +3712,89 @@ paper, and then to magnify the result; the script calculates the settings for various font and paper sizes. More details are to be read in the script itself. -%package -n texlive-latex2man -Provides: tex-latex2man = %{epoch}:20210325-%{release} -Provides: texlive-latex2man-bin = %{epoch}:20210325-%{release} -Provides: tex-latex2man-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2man-bin < 7:20180414 -Provides: tex-latex2man-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex2man-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2man-doc < 7:20180414 -Summary: Translate LaTeX-based manual pages into Unix man format -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyheadings.sty) tex(fancyhdr.sty) -Provides: tex(latex2man.cfg) = %{epoch}:20210325-%{release} -Provides: tex(latex2man.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-latex2man +%package -n %{shortname}-latex2man +Version: svn64477 +Provides: texlive-latex2man = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2man-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-bin < 7:20170520 +Provides: tex-latex2man-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2man-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2man-doc < 7:20170520 +License: LPPL-1.3c +Summary: Translate LaTeX-based manual pages into Unix man format +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyheadings.sty) +Requires: tex(fancyhdr.sty) +Provides: tex(latex2man.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(latex2man.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-latex2man A tool to translate UNIX manual pages written with LaTeX into a man-page format understood by the Unix man(1) command. Alternatively HTML or TexInfo code can be produced. Output of parts of the text may be supressed using the conditional text feature. -%package -n texlive-latex2nemeth -Provides: tex-latex2nemeth = %{epoch}:20210325-%{release} -Provides: texlive-latex2nemeth-bin = %{epoch}:20210325-%{release} -Provides: tex-latex2nemeth-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2nemeth-bin < 7:20180414 -Provides: tex-latex2nemeth-doc = %{epoch}:20210325-%{release} -Provides: texlive-latex2nemeth-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latex2nemeth-doc < 7:20180414 -License: GPLv3 -Summary: Convert LaTeX source to Braille with math in Nemeth -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latex2nemeth +%package -n %{shortname}-latex2nemeth +Version: svn65269 +Provides: texlive-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latex2nemeth-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-bin < 7:20170520 +Provides: tex-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latex2nemeth-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latex2nemeth-doc < 7:20170520 +License: GPL-3.0-only +Summary: Convert LaTeX source to Braille with math in Nemeth +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latex2nemeth After many failed attempts to transcribe real math notes and books to Braille/Nemeth in order to deal with a real situation (blind student in Math Dept.), we decided to develop a new program that follows a direct, from LaTeX to Braille/Nemeth, -approach. Other attempts (such as tex4ht) failed because they -all needed an extra step to go from xml to Braille, and this -step (say, with liblouis) produced incomprehensible output -(liblouis focuses in Office apps). Our main target was the -Greek language which is only Braille level 1, but English at -level 1 is supported as well. Simple pictures in PSTricks are -also supported in order to produce tactile graphics with -specialized equipment. Note that embossing will need -LibreOffice and odt2braille as this project does not deal with -embossers' drivers. - -%package -n texlive-latexdiff -Provides: tex-latexdiff = %{epoch}:20210325-%{release} -Provides: texlive-latexdiff-bin = %{epoch}:20210325-%{release} -Provides: tex-latexdiff-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexdiff-bin < 7:20180414 -Provides: tex-latexdiff-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexdiff-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexdiff-doc < 7:20180414 -License: GPLv3+ -Summary: Determine and mark up significant differences between LaTeX files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexdiff +approach. Our main target was the Greek language which is only +Braille level 1, but English at level 1 is supported as well. +Simple pictures in PSTricks are also supported in order to +produce tactile graphics with specialized equipment. Note that +embossing will need LibreOffice and odt2braille as this project +does not deal with embossers' drivers. What's new in version +1.1 In this version, the support of the user level commands of +the amsmath package was added, as described in its user guide, +with the exception of commutative diagrams (amscd package) as +well as structures that are irrelevant to visually impared +persons. Also, the Unicode mathematics symbols of the +unicode-math package that are represented by the Nemeth code +are now supported by latex2nemeth. We would like to acknowledge +support by the TUGfund for this project (TUGfund project 33). + +%package -n %{shortname}-latexdiff +Version: svn64980 +Provides: texlive-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-bin < 7:20170520 +Provides: tex-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexdiff-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Determine and mark up significant differences between LaTeX files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexdiff Latexdiff is a Perl script for visual mark up and revision of significant differences between two LaTeX files. Various options are available for visual markup using standard LaTeX @@ -3038,73 +3806,89 @@ all changes. Manual editing of the difference file can be used to override this default behaviour and accept or reject selected changes only. -%package -n texlive-latexfileversion -Provides: tex-latexfileversion = %{epoch}:20210325-%{release} -License: LPPL-1.2 -Provides: texlive-latexfileversion-bin = %{epoch}:20210325-%{release} -Provides: tex-latexfileversion-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexfileversion-bin < 7:20180414 -Provides: tex-latexfileversion-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexfileversion-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexfileversion-doc < 7:20180414 -Summary: Prints the version and date of a LaTeX class or style file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexfileversion +%package -n %{shortname}-latexfileversion +Version: svn29349 +Provides: texlive-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexfileversion-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-bin < 7:20170520 +Provides: tex-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexfileversion-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexfileversion-doc < 7:20170520 +License: LPPL-1.3c +Summary: Prints the version and date of a LaTeX class or style file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-latexfileversion This simple shell script prints the version and date of a LaTeX class or style file. Syntax: latexfileversion This programme handles style files (extension .sty), class files (extension .cls), and other TeX input files. The file extension must be given. -%package -n texlive-latexindent -Provides: tex-latexindent = %{epoch}:20210325-%{release} -Provides: texlive-latexindent-bin = %{epoch}:20210325-%{release} -Provides: tex-latexindent-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexindent-bin < 7:20180414 -Provides: tex-latexindent-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexindent-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexindent-doc < 7:20180414 -License: GPLv3+ -Summary: Indent a LaTeX document, highlighting the programming structure -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexindent +%package -n %{shortname}-latexindent +Version: svn65937 +Provides: texlive-latexindent = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexindent-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-bin < 7:20170520 +Provides: tex-latexindent-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexindent-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexindent-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Indent a LaTeX document, highlighting the programming structure +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexindent The Perl script processes a LaTeX file, indenting parts so as to highlight the structure for the reader. -%package -n texlive-latexpand -Provides: tex-latexpand = %{epoch}:20210325-%{release} -Provides: texlive-latexpand-bin = %{epoch}:20210325-%{release} -Provides: tex-latexpand-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexpand-bin < 7:20180414 -Provides: tex-latexpand-doc = %{epoch}:20210325-%{release} -Provides: texlive-latexpand-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-latexpand-doc < 7:20180414 -License: BSD -Summary: Expand \input and \include in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-latexpand +%package -n %{shortname}-latexpand +Version: svn66226 +Provides: texlive-latexpand = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-latexpand-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-bin < 7:20170520 +Provides: tex-latexpand-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-latexpand-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-latexpand-doc < 7:20170520 +License: BSD-3-Clause +Summary: Expand \input and \include in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-latexpand Latexpand is a Perl script that simply replaces \input and \include commands with the content of the file input/included. The script does not deal with \includeonly commands. -%package -n texlive-lcdftypetools -Provides: tex-lcdftypetools = %{epoch}:20210325-%{release} -Provides: lcdf-typetools = %{epoch}:20210325-%{release} -Provides: texlive-lcdftypetools-bin = %{epoch}:20210325-%{release} -Provides: tex-lcdftypetools-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lcdftypetools-bin < 7:20180414 -License: GPL+ -Summary: A bundle of outline font manipulation tools -Requires: texlive-base texlive-kpathsea -Requires: texlive-glyphlist - -%description -n texlive-lcdftypetools +%package -n %{shortname}-lcdftypetools +Version: svn52851 +Provides: texlive-lcdtypetools = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools = %{epoch}:%{source_date}-%{release} +# This is a mistake in the texlive package. Will be fixed in next major TL update. +Provides: lcdf-typetools = %{epoch}:%{source_date}-%{release} +Provides: texlive-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lcdftypetools-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lcdftypetools-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: A bundle of outline font manipulation tools +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-glyphlist + +%description -n %{shortname}-lcdftypetools This bundle of tools comprises: Cfftot1, which translates a Compact Font Format (CFF) font, or a PostScript-flavored OpenType font, into PostScript Type 1 format. It correctly @@ -3124,93 +3908,118 @@ T1reencode, which replaces a font's internal encoding with one you specify; and T1testpage, which creates a PostScript proof for a Type 1 font. -%package -n texlive-lib -Summary: Shared libraries for TeX-related files -Provides: texlive-kpathsea-lib = %{epoch}:20210325-%{release} -Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 -Obsoletes: texlive-kpathsea-lib < 2015 -Provides: bundled(lua) = 5.2.4 +%package -n %{shortname}-lib +Summary: Shared libraries for TeX-related files +Provides: texlive-kpathsea-lib = %{epoch}:%{source_date}-%{release} +# We have to straight up lie about this to ensure the upgrade. +Provides: texlive-kpathsea-lib(%{__isa}) = 6:2016 +Obsoletes: texlive-kpathsea-lib < 2015 +Provides: bundled(lua) = 5.2.4 -%description -n texlive-lib +%description -n %{shortname}-lib TeX specific shared libraries. -%package -n texlive-lib-devel -Summary: Development files for TeX specific shared libraries -Requires: texlive-lib%{?_isa} -Provides: texlive-kpathsea-lib-devel = %{epoch}:20210325-%{release} -Obsoletes: texlive-kpathsea-lib-devel < 2015 +%package -n %{shortname}-lib-devel +Summary: Development files for TeX specific shared libraries +Requires: %{shortname}-lib%{?_isa} +Provides: texlive-kpathsea-lib-devel = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-kpathsea-lib-devel < 2015 -%description -n texlive-lib-devel +%description -n %{shortname}-lib-devel Development files for TeX specific shared libraries. -%package -n texlive-lilyglyphs -Provides: tex-lilyglyphs = %{epoch}:20210325-%{release} -License: GPL-1.0-or-later and OFL-1.1 -Provides: texlive-lilyglyphs-bin = %{epoch}:20210325-%{release} -Provides: tex-lilyglyphs-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lilyglyphs-bin < 7:20180414 -Provides: tex-lilyglyphs-doc = %{epoch}:20210325-%{release} -Provides: texlive-lilyglyphs-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lilyglyphs-doc < 7:20180414 -Summary: Access lilypond fragments and glyphs, in LaTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(keyval.sty) tex(pgf.sty) -Requires: tex(adjustbox.sty) -Provides: tex(emmentaler-11.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-13.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-14.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-16.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-18.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-20.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-23.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-26.otf) = %{epoch}:20210325-%{release} -Provides: tex(emmentaler-brace.otf) = %{epoch}:20210325-%{release} -Provides: tex(lilyglyphs.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-lilyglyphs +%package -n %{shortname}-lilyglyphs +Version: svn56473 +Provides: texlive-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lilyglyphs-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-bin < 7:20170520 +Provides: tex-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lilyglyphs-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lilyglyphs-doc < 7:20170520 +License: LPPL-1.3c +Summary: Access lilypond fragments and glyphs, in LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(adjustbox.sty) +Requires: tex(booktabs.sty) +Requires: tex(fancyref.sty) +Requires: tex(fontspec.sty) +Requires: tex(hologo.sty) +Requires: tex(keyval.sty) +Requires: tex(listings.sty) +Requires: tex(longtable.sty) +Requires: tex(mdwlist.sty) +Requires: tex(microtype.sty) +Requires: tex(pgf.sty) +Requires: tex(selnolig.sty) +Provides: tex(emmentaler-11.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-13.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-14.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-16.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-18.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-20.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-23.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-26.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(emmentaler-brace.otf) = %{epoch}:%{source_date}-%{release} +Provides: tex(lilyglyphs.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-lilyglyphs The package provides the means to include arbitrary elements of Lilypond notation, including symbols from Lilypond's Emmentaler font, in a LaTeX document. The package uses OpenType fonts, and as a result must be compiled with LuaLaTeX or XeLaTeX. -%package -n texlive-listbib -Provides: tex-listbib = %{epoch}:20210325-%{release} -Provides: texlive-listbib-bin = %{epoch}:20210325-%{release} -Provides: tex-listbib-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-listbib-bin < 7:20180414 -Provides: tex-listbib-doc = %{epoch}:20210325-%{release} -Provides: texlive-listbib-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-listbib-doc < 7:20180414 -License: GPL+ -Summary: Lists contents of BibTeX files -Requires: texlive-base texlive-kpathsea -Provides: tex(listbib.cfg) = %{epoch}:20210325-%{release} -Provides: tex(listbib.sty) = %{epoch}:20210325-%{release} -Provides: tex(listbib.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-listbib +%package -n %{shortname}-listbib +Version: svn29349 +Provides: texlive-listbib = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listbib-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-bin < 7:20170520 +Provides: tex-listbib-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listbib-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listbib-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Lists contents of BibTeX files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(listbib.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(listbib.tex) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listbib Generates listings of bibliographic data bases in BibTeX format -- for example for archival purposes. Included is a listbib.bst which is better suited for this purpose than the standard styles. -%package -n texlive-listings-ext -Provides: tex-listings-ext = %{epoch}:20210325-%{release} -Provides: texlive-listings-ext-bin = %{epoch}:20210325-%{release} -Provides: tex-listings-ext-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-listings-ext-bin < 7:20180414 -Provides: tex-listings-ext-doc = %{epoch}:20210325-%{release} -Provides: texlive-listings-ext-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-listings-ext-doc < 7:20180414 -Summary: Automated input of source -Requires: texlive-base texlive-kpathsea -Requires: tex(listings.sty) tex(xkeyval.sty) -Provides: tex(listings-ext.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-listings-ext +%package -n %{shortname}-listings-ext +Version: svn29349 +Provides: texlive-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-listings-ext-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-bin < 7:20170520 +Provides: tex-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-listings-ext-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-listings-ext-doc < 7:20170520 +License: LPPL-1.3a +Summary: Automated input of source +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(listings.sty) +Requires: tex(xkeyval.sty) +Provides: tex(listings-ext.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-listings-ext The package provides a means of marking a source, so that samples of it may be included in a document (by means of the listings package) in a stable fashion, regardless of any change @@ -3219,12 +4028,14 @@ blocks of source. These tags are processed by a shell script to make a steering file that is used by the package when LaTeX is being run. -%package -n texlive-light-latex-make -Summary: llmk: A build tool for LaTeX documents -License: MIT -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-light-latex-make +Version: svn66473 +Provides: texlive-light-latex-make = %{epoch}:%{source_date}-%{release} +Summary: llmk: A build tool for LaTeX documents +License: MIT +Requires: texlive-base texlive-kpathsea -%description -n texlive-light-latex-make +%description -n %{shortname}-light-latex-make This program is yet another build tool specific for LaTeX documents. Its aim is to provide a simple way to specify a workflow of processing LaTeX documents and encourage people to @@ -3243,35 +4054,40 @@ that for a LaTeX document with an llmk setup, the process of typesetting the document will be reproduced in any TeX environment with the program. - -%package -n texlive-lollipop -Provides: tex-lollipop = %{epoch}:20210325-%{release} -Provides: texlive-lollipop-bin = %{epoch}:20210325-%{release} -Provides: tex-lollipop-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lollipop-bin < 7:20180414 -Provides: tex-lollipop-doc = %{epoch}:20210325-%{release} -Provides: texlive-lollipop-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lollipop-doc < 7:20180414 -License: GPLv3+ -Summary: TeX made easy -Requires: texlive-base texlive-kpathsea -Requires: texlive-cm texlive-hyphen-base texlive-tex +%package -n %{shortname}-lollipop +Version: svn45678 +Provides: texlive-lollipop = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lollipop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-bin < 7:20170520 +Provides: tex-lollipop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lollipop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lollipop-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: TeX made easy +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-tex Requires(post,postun): coreutils -Provides: tex(lollipop-define.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-document.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-float.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-fontdefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-fonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-heading.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-lists.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-output.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-plain.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-text.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop-tools.tex) = %{epoch}:20210325-%{release} -Provides: tex(lollipop.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-lollipop +Provides: tex(lollipop-define.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-document.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-float.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fontdefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-fonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-heading.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-lists.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-output.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-plain.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-text.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop-tools.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(lollipop.tex) = %{epoch}:%{source_date}-%{release} +# no actual binaries here +BuildArch: noarch + +%description -n %{shortname}-lollipop Lollipop is "TeX made easy" -- it is a macro package that functions as a toolbox for writing TeX macros. Its main aim is to make macro writing so easy that implementing a fully new @@ -3285,20 +4101,24 @@ mechanism offers. In addition, development of support for Lollipop documents written in RTL languages (such as Persian) is underway. -%package -n texlive-ltxfileinfo -Provides: tex-ltxfileinfo = %{epoch}:20210325-%{release} -Provides: texlive-ltxfileinfo-bin = %{epoch}:20210325-%{release} -Provides: tex-ltxfileinfo-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltxfileinfo-bin < 7:20180414 -Provides: tex-ltxfileinfo-doc = %{epoch}:20210325-%{release} -Provides: texlive-ltxfileinfo-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltxfileinfo-doc < 7:20180414 -License: GPL+ -Summary: Print version information for a LaTeX file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ltxfileinfo +%package -n %{shortname}-ltxfileinfo +Version: svn38663 +Provides: texlive-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltxfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-bin < 7:20170520 +Provides: tex-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltxfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltxfileinfo-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Print version information for a LaTeX file +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-ltxfileinfo ltxfileinfo displays version information for LaTeX files. If no path information is given, the file is searched using kpsewhich. As an extra, for developers, the script will (use @@ -3306,241 +4126,896 @@ the --star or --color options) check the valididity of the \Provides... statements in the files. The script uses code from Uwe Luck's readprov.sty. -%package -n texlive-ltximg -Provides: tex-ltximg = %{epoch}:20210325-%{release} -Provides: texlive-ltximg-bin = %{epoch}:20210325-%{release} -Provides: tex-ltximg-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltximg-bin < 7:20180414 -Provides: tex-ltximg-doc = %{epoch}:20210325-%{release} -Provides: texlive-ltximg-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ltximg-doc < 7:20180414 -License: GPLv2+ -Summary: Split LaTeX files to sanitise a conversion process -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ltximg +%package -n %{shortname}-ltximg +Version: svn59335 +Provides: texlive-ltximg = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-ltximg-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-bin < 7:20170520 +Provides: tex-ltximg-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ltximg-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ltximg-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Split LaTeX files to sanitise a conversion process +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-ltximg The package provides a Perl script that extracts all TikZ and PStricks environments for separate processing to produce images (in eps, pdf, png or jpg format) for use by a converter or the preview bundle. -%package -n texlive-luaotfload -Provides: tex-luaotfload = %{epoch}:20210325-%{release} -Provides: texlive-luaotfload-bin = %{epoch}:20210325-%{release} -Provides: tex-luaotfload-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-luaotfload-bin < 7:20180414 -Provides: tex-luaotfload-doc = %{epoch}:20210325-%{release} -Provides: texlive-luaotfload-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-luaotfload-doc < 7:20180414 -License: GPLv2+ -Summary: OpenType 'loader' for Plain TeX and LaTeX -Requires: texlive-base texlive-kpathsea -Requires: texlive-lualibs texlive-lua-alt-getopt -Requires: tex(luatexbase.sty) -Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:20210325-%{release} -Provides: tex(luaotfload.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-luaotfload +%package -n %{shortname}-luafindfont +Version: svn64936 +Provides: texlive-luafindfont = %{epoch}:%{source_date}-%{release} +Provides: texlive-luafindfont-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Search fonts in the LuaTeX font database +Requires: texlive-base, texlive-kpathsea, lua >= 5.3 +# lua +BuildArch: noarch + +%description -n %{shortname}-luafindfont +This Lua script searches for fonts in the font database. It requires Lua 5.3. + +%package -n %{shortname}-luaotfload +Version: svn64616 +Provides: texlive-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luaotfload-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-bin < 7:20170520 +Provides: tex-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luaotfload-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luaotfload-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: OpenType 'loader' for Plain TeX and LaTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-lualibs +Requires: texlive-lua-alt-getopt +Requires: texlive-lua-uni-algos +Requires: tex(luatexbase.sty) +Provides: tex(luaotfload-blacklist.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(luaotfload.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-luaotfload The package adopts the TrueType/OpenType Font loader code provided in ConTeXt, and adapts it to use in Plain TeX and LaTeX. It works under LuaLaTeX only. -%package -n texlive-luahbtex -Provides: tex-luahbtex = %{epoch}:20210325-%{release} -Provides: texlive-luahbtex-bin = %{epoch}:20210325-%{release} -Provides: tex-luahbtex-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: LuaTeX with HarfBuzz library for glyph shaping -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-cm -Requires: texlive-etex -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-hyph-utf8 - -%description -n texlive-luahbtex +%package -n %{shortname}-luahbtex +Version: svn66186 +Provides: texlive-luahbtex = %{epoch}:%{source_date}-%{release} +Provides: tex-luahbtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luahbtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luahbtex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: LuaTeX with HarfBuzz library for glyph shaping +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luahbtex LuaTeX with HarfBuzz library for glyph shaping. -%package -n texlive-luajittex -Provides: tex-luajittex = %{epoch}:20210325-%{release} -Provides: tex-luajittex-bin = %{epoch}:20210325-%{release} -Provides: texlive-luajittex-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Requires: texlive-cm -Requires: texlive-etex -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-hyph-utf8 - -%description -n texlive-luajittex +%package -n %{shortname}-luajittex +Version: svn66186 +Provides: texlive-luajittex = %{epoch}:%{source_date}-%{release} +Provides: tex-luajittex = %{epoch}:%{source_date}-%{release} +Provides: tex-luajittex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-luajittex-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 + +%description -n %{shortname}-luajittex LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz. -%package -n texlive-luatex -Provides: tex-luatex = %{epoch}:20210325-%{release} -Provides: texlive-luatex-bin = %{epoch}:20210325-%{release} -Provides: tex-luatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-luatex-bin < 7:20180414 -Provides: tex-luatex-doc = %{epoch}:20210325-%{release} -Provides: texlive-luatex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-luatex-doc < 7:20180414 -License: GPLv2+ -Summary: The LuaTeX engine -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-luatex +Version: svn66967 +Provides: texlive-luatex = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-luatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-bin < 7:20170520 +Provides: tex-luatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-luatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-luatex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: The LuaTeX engine +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: texlive-cm texlive-etex -Requires: texlive-hyphen-base texlive-knuth-lib -Requires: texlive-plain texlive-tex-ini-files -Requires: texlive-unicode-data texlive-hyph-utf8 tex(luatex.def) -Provides: tex(luatex-unicode-letters.tex) = %{epoch}:20210325-%{release} -Provides: tex(luatexiniconfig.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-luatex -LuaTeX is an extended version of pdfTeX using Lua as an +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-hyph-utf8 +Requires: tex(luatex.def) +Provides: tex(luatex-unicode-letters.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(luatexiniconfig.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-luatex +LuaTeX is a greatly extended version of pdfTeX using Lua as an embedded scripting language. The LuaTeX project's main objective is to provide an open and configurable variant of TeX -while at the same time offering downward compatibility. LuaTeX -uses Unicode (as UTF-8) as its default input encoding, and is -able to use modern (OpenType) fonts (for both text and -mathematics). It should be noted that LuaTeX is still under -development; its specification has been declared stable, but -absolute stability may not in practice be assumed. - -%package -n texlive-lwarp -Provides: tex-lwarp = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-lwarp-bin = %{epoch}:20210325-%{release} -Provides: tex-lwarp-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-lwarp-bin < 7:20180414 -Provides: tex-lwarp-doc = %{epoch}:20210325-%{release} -Provides: texlive-lwarp-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-lwarp-doc < 7:20180414 -Summary: Converts LaTeX to HTML -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-lwarp -The package causes LaTeX to directly produce HTML5 output, -using external utility programs only for the final conversion -of text and images. Math may be represented by SVG files or -MathJax. Documents may be produced by LaTeX, LuaLaTeX, or -XeLaTeX. A texlua script removes the need for system utilities -such as make and gawk, and also supports xindy and latexmk. -Configuration is automatic at the first manual compile. Print -and HTML versions of each document may coexist, each with its -own set of auxiliary files. Support files are self-generated on -request. Assistance is provided for HTML import into EPUB -conversion software and word processors. - -%package -n texlive-lyluatex -Summary: Commands to include lilypond scores within a (Lua)LaTeX document -Version: svn47584 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(lyluatex.lua) = %{epoch}:20210325-%{release} -Provides: tex(lyluatex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch -Requires: tex(currfile.sty) -Requires: tex(environ.sty) -Requires: tex(graphicx.sty) -Requires: tex(luaotfload.sty) -Requires: tex(luatexbase.sty) -Requires: tex(metalogo.sty) -Requires: tex(minibox.sty) -Requires: tex(pdfpages.sty) -Requires: tex(xkeyval.sty) - -%description -n texlive-lyluatex +while at the same time offering substantive backward +compatibility. LuaTeX uses Unicode (as UTF-8) as its default +input encoding, and is able to use modern (OpenType and +TrueType) fonts (for both text and mathematics). + +%package -n %{shortname}-lwarp +Version: svn66259 +Provides: texlive-lwarp = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-lwarp-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-bin < 7:20170520 +Provides: tex-lwarp-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-lwarp-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-lwarp-doc < 7:20170520 +License: LPPL-1.3c +Summary: Converts LaTeX to HTML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(lwarp-2in1.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-2up.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-CJK.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-CJKutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-DotArrow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-SIunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a4.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a4wide.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-a5comb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-abstract.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-academicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accents.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accessibility.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-accsupp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-acro.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-acronym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-addlines.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-adjmulticol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-afterpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-algorithm2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-algorithmicx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-alltt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amscdx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amsmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-amsthm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-anonchap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-anysize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-appendix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-arabicfront.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-array.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-arydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-asymptote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-atbegshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-attachfile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-attachfile2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-authblk.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-autobreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-autonum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-awesomebox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-axessibility.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-axodraw2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-backnaur.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-backref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-balance.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bbding.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-beamerarticle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-biblatex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bibunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigdelim.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bigstrut.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bitpattern.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-blowup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-booklet.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bookmark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-booktabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bophook.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bounddvi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-boxedminipage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-boxedminipage2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-braket.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-breakurl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-breqn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bsheaders.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bussproofs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bxpapersize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-bytefield.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cancel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-canoniclayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-caption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-caption3.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cases.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ccicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-centerlastline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changebar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changelayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changepage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-changes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chappg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chapterbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemformula.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemgreek.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemmacros.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chemnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chkfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-chngpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-citeref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-classicthesis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cleveref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-clrdblpg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cmbright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cmdtrack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-color.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-colortbl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-letters.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-newpxtxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-nonunicode.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-overlaysymbols.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-mathjax-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-common-multimedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-continue.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-copyrightbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-crop.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ctable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cuted.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-cutwin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dblfloatfix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dblfnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dcolumn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-decimal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-decorule.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-diagbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dingbat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dotlessi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-dprogress.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftcopy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-draftwatermark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-drftcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-easy-todo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ebook.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-econometrics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ellipsis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-embrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-emptypage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endheads.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-endnotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-engtlc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enotez.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enumerate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-enumitem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epigraph.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epsfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epstopdf-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-epstopdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eqlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eqparbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-errata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eso-pic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-esvect.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-etoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-eurosym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-everypage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-everyshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-extarrows.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-extramarks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancybox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyhdr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancypar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancytabs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fancyvrb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fewerfloatpages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-figcaps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-figsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fitbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fix2col.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixme.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fixmetodonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flafter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flippdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-float.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatflt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatpag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-floatrow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fltrace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-flushend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnbreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fncychap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnlineno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnpara.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fnpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontawesome.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontawesome5.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontaxes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fontenc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footmisc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnotebackref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnotehyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnoterange.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-footnpag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-foreign.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-forest.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fouridx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fourier.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-framed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-froufrou.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ftcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ftnright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullminipage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fullwidth.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fvextra.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-fwlw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gensymb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gentombow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-geometry.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ghsystem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gloss.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-glossaries.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gmeometric.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-graphics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-graphicx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grffile.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grid-system.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-grid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-gridset.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hanging.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hepunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hhline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hhtensor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypdestopt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hypernat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyperref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyperxmp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-hyphenat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-idxlayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ifoddpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-imakeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-index.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-inputtrc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-intopdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-isomath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-isotope.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-jurabib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-karnaugh-map.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-keyfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-keystroke.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-kpfonts-otf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-kpfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layaureo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-layouts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-leading.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-leftidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-letterspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lettrine.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-libertinust1math.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lineno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lips.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lipsum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-listings.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-listliketab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjp-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lltjp-tascmac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-longtable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lscape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltablex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltxgrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ltxtable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lua-check-hyphen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lua-visual-debug.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luacolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luamplib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luatexko.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luatodonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-luavlna.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-lyluatex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-magaz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-makeidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-manyfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginfit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginfix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marginnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-marvosym.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathalpha.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathastext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathdesign.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathdots.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathfixs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathpazo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathptmx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathspec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mathtools.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mattens.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-maybemath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mdframed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mdwmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-media9.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-memhfixc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-menukeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-metalogo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-metalogox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mhchem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-microtype.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-midfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-midpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minibox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minitoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-minted.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mismath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mleftright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-morefloats.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-moreverb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-movie15.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mparhack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multibib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multicolrule.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multimedia.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multiobjective.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multirow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-multitoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-musicography.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-mwe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nameauth.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nameref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-natbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccfancyhdr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccfoots.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nccmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-needspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newpxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newtxmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-newtxsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nextpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nfssext-cfr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nicefrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-niceframe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nicematrix.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-noitcrul.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nolbreaks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nomencl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nonfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nonumonpart.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nopageno.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-notes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-notespages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-nowidow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ntheorem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-octave.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-orcidlink.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-overpic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagegrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagenote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pagesel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-paralist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parnotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-parskip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-patch-komascript.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-patch-memoir.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pbalance.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolfoot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolmk.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcomment.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdflscape.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfmarginpar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfpages.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfprivacy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfsync.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdftricks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pdfx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-perpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pfnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-phfqit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-physics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-physunits.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-picinpar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pifont.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pinlabel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-placeins.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plarydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plextarydshln.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plextcolorbl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-plimsoll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-prelim2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-prettyref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-preview.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-psfrag.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-psfragx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pst-eps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pstool.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pstricks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxatbegshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxeveryshi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxftnright.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-pxjahyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-quotchap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-quoting.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ragged2e.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-realscripts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-refcheck.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-register.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-relsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-repeatindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-repltext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-returntogrid.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rlepsf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rmathbr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rmpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-romanbar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-romanbarpagenumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rotating.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rotfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-rviewport.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-savetrees.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scalefnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scalerel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-schemata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrextend.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrhack.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer-notecolumn.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer-scrpage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrlayer.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-scrpage2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-section.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sectionbreak.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sectsty.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-selectp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-semantic-markup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-seqsplit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-setspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shadethm.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shadow.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shapepar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showkeys.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showlabels.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-showtags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-shuffle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sidecap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sidenotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-simplebnf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-siunitx-v2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-siunitx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-skmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-slantsc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-slashed.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soul.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soulpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-soulutf8.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-splitbib.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-splitidx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-srcltx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-srctex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stackengine.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statex2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statistics.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-statmath.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-steinmetz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-stfloats.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-struktex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subcaption.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-subsupscripts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-supertabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-svg.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-swfigure.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-sympytex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-syntonly.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabfigures.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tablefootnote.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabls.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabularx.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tabulary.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-mc-code-generic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf-mc-code-lua.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tagpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tascmac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tcolorbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tensor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-termcal.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textarea.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textcomp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textfit.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-textpos.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-theorem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thinsp.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thm-listof.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thm-restate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thmbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thmtools.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threadcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threeparttable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-threeparttablex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thumb.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-thumbs.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tikz-imagelabels.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tikz.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titleps.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titleref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titlesec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titletoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-titling.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocbasic.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocbibind.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocdata.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocenter.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocloft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tocstyle.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-todo.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-todonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-topcapt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-tram.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-transparent.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-trimclip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-trivfloat.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-truncate.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-turnthepage.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-twoup.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-txfonts.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-txgreeks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-typearea.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-typicons.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ulem.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-umoline.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-underscore.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-unicode-math.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-units.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-unitsdef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-upgreek.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-upref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-url.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-ushort.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-uspace.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-varioref.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-verse.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-versonotes.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vertbars.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vmargin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vowel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vpe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-vwcol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wallpaper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-watermark.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-widetable.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-widows-and-orphans.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-witharrows.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wrapfig.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-wrapfig2.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xbmks.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xcolor.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xechangebar.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xellipsis.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xetexko.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xevlna.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xfakebold.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xfrac.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xltabular.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xltxtra.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xmpincl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xpiano.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xpinyin.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xr-hyper.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xtab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xunicode.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xurl.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-xy.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-zhlineskip.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp-zwpagelayout.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(lwarp.sty) = %{epoch}:%{source_date}-%{release} + +# lua +BuildArch: noarch + +%description -n %{shortname}-lwarp +This package converts LaTeX to HTML by using LaTeX to process +the user's document and generate HTML tags. External utility +programs are only used for the final conversion of text and +images. Math may be represented by SVG files or MathJax. +Hundreds of LaTeX packages are supported, and their load order +is automatically verified. Documents may be produced by LaTeX, +LuaLaTeX, XeLaTeX, and by several CJK engines, classes, and +packages. A texlua script automates compilation, index, +glossary, and batch image processing, and also supports +latexmk. Configuration is semi-automatic at the first manual +compile. Support files are self-generated. Print and HTML +versions of each document may coexist. Assistance is provided +for HTML import into EPUB conversion software and word +processors. Requirements include the commonly-available Poppler +utilities, and Perl. Detailed installation instructions are +included for each of the major operating systems and TeX +distributions. A quick-start tutorial is provided. + +%package -n %{shortname}-lyluatex +Version: svn66278 +Provides: texlive-lyluatex = %{epoch}:%{source_date}-%{release} +Summary: Commands to include lilypond scores within a (Lua)LaTeX document +License: MIT +Requires: texlive-base texlive-kpathsea +Provides: tex(lyluatex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(lyluatex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch +Requires: tex(currfile.sty) +Requires: tex(environ.sty) +Requires: tex(graphicx.sty) +Requires: tex(luaotfload.sty) +Requires: tex(luaoptions.sty) +Requires: tex(luatexbase.sty) +Requires: tex(metalogo.sty) +Requires: tex(minibox.sty) +Requires: tex(pdfpages.sty) +Requires: tex(xkeyval.sty) + +%description -n %{shortname}-lyluatex This package provides macros for the inclusion of LilyPond scores within LuaLaTeX. It calls LilyPond to compile scores, then includes the produced files. -%package -n texlive-make4ht -Provides: tex-make4ht = %{epoch}:20210325-%{release} -Provides: texlive-make4ht-bin = %{epoch}:20210325-%{release} -Provides: tex-make4ht-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-make4ht-bin < 7:20180414 -Provides: tex-make4ht-doc = %{epoch}:20210325-%{release} -Provides: texlive-make4ht-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-make4ht-doc < 7:20180414 -Summary: A build system for tex4ht -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-make4ht -make4ht is a simple build system for tex4ht. It is both -executable, which simplifies tex4ht execution, and a library -which can be used to create customized conversion programs. - -%package -n texlive-makedtx -Provides: tex-makedtx = %{epoch}:20210325-%{release} -License: LPPL-1.3c and BSD-3-Clause and GPL-2.0-or-later -Provides: texlive-makedtx-bin = %{epoch}:20210325-%{release} -Provides: tex-makedtx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-makedtx-bin < 7:20180414 -Provides: tex-makedtx-doc = %{epoch}:20210325-%{release} -Provides: texlive-makedtx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-makedtx-doc < 7:20180414 -Summary: Perl script to help generate dtx and ins files -Requires: texlive-base texlive-kpathsea -Provides: tex(creatdtx.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-makedtx +%package -n %{shortname}-make4ht +Version: svn66130 +Provides: texlive-make4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-make4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-bin < 7:20170520 +Provides: tex-make4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-make4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-make4ht-doc < 7:20170520 +License: LPPL-1.3c +Summary: A build system for tex4ht +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(tex4ht.sty) +# lua +BuildArch: noarch + +%description -n %{shortname}-make4ht +make4ht is a simple build system for tex4ht, a TeX to XML +converter. It provides a command line tool that drives the +conversion process. It also provides a library which can be +used to create customized conversion tools. + +%package -n %{shortname}-makedtx +Version: svn46702 +Provides: texlive-makedtx = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makedtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-bin < 7:20170520 +Provides: tex-makedtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makedtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makedtx-doc < 7:20170520 +License: LPPL-1.3c +Summary: Perl script to help generate dtx and ins files +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(creatdtx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-makedtx The makedtx bundle is provided to help LaTeX2e developers to write the code and documentation in separate files, and then combine them into a single .dtx file for distribution. It automatically generates the character table, and also writes the associated installation (.ins) script. -%package -n texlive-makeindex -Provides: tex-makeindex = %{epoch}:20210325-%{release} -Provides: texlive-makeindex-bin = %{epoch}:20210325-%{release} -Provides: tex-makeindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-makeindex-bin < 7:20180414 -Provides: tex-makeindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-makeindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-makeindex-doc < 7:20180414 -License: MakeIndex -Summary: Provides sorted index from unsorted raw data -Requires: texlive-base texlive-kpathsea -Requires: texlive-makeindex -Provides: tex(idxmac.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-makeindex +%package -n %{shortname}-makeindex +Version: svn62517 +Provides: texlive-makeindex = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-makeindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-bin < 7:20170520 +Provides: tex-makeindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-makeindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-makeindex-doc < 7:20170520 +License: MakeIndex +Summary: Provides sorted index from unsorted raw data +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-makeindex +Provides: tex(idxmac.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-makeindex MakeIndex is a computer program which provides a sorted index from unsorted raw data. MakeIndex can process raw data output by various programs, however, it is generally used with LaTeX and troff. -%package -n texlive-match_parens -Provides: tex-match_parens = %{epoch}:20210325-%{release} -Provides: texlive-match_parens-bin = %{epoch}:20210325-%{release} -Provides: tex-match_parens-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-match_parens-bin < 7:20180414 -Provides: tex-match_parens-doc = %{epoch}:20210325-%{release} -Provides: texlive-match_parens-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-match_parens-doc < 7:20180414 -License: GPL+ -Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts -Requires: texlive-base texlive-kpathsea -Requires: ruby -BuildArch: noarch - -%description -n texlive-match_parens +%package -n %{shortname}-match_parens +Version: svn36270 +Provides: texlive-match_parens = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-match_parens-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-bin < 7:20170520 +Provides: tex-match_parens-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-match_parens-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-match_parens-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Find mismatches of parentheses, braces, (angle) brackets, in texts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: ruby +# ruby +BuildArch: noarch + +%description -n %{shortname}-match_parens Mismatches of parentheses, braces, (angle) brackets, especially in TeX sources which may be rich in those, may be difficult to trace. This little script helps you by writing your text to @@ -3548,22 +5023,28 @@ standard output, after adding a left margin to your text, which will normally be almost empty, but will clearly show any mismatches. -%package -n texlive-mathspic -Provides: tex-mathspic = %{epoch}:20210325-%{release} -Provides: texlive-mathspic-bin = %{epoch}:20210325-%{release} -Provides: tex-mathspic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mathspic-bin < 7:20180414 -Provides: tex-mathspic-doc = %{epoch}:20210325-%{release} -Provides: texlive-mathspic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mathspic-doc < 7:20180414 -Summary: A Perl filter program for use with PiCTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(prepictex.tex) tex(pictexwd.tex) -Requires: tex(postpictex.tex) -Provides: tex(mathspic.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-mathspic +%package -n %{shortname}-mathspic +Version: svn31957 +Provides: texlive-mathspic = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mathspic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-bin < 7:20170520 +Provides: tex-mathspic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mathspic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mathspic-doc < 7:20170520 +License: LPPL-1.3c +Summary: A Perl filter program for use with PiCTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(prepictex.tex) +Requires: tex(pictexwd.tex) +Requires: tex(postpictex.tex) +Provides: tex(mathspic.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-mathspic MathsPIC(Perl) is a development of the earlier MathsPIC(DOS) program, now implemented as a Perl script, being much more portable than the earlier program. MathsPIC parses a plain text @@ -3577,172 +5058,160 @@ manipulating named points and also allows the use of variables and maths (advance, multiply, and divide)--in short--it takes the pain out of PiCTeX. -%package -n texlive-metafont -Provides: tex-metafont = %{epoch}:20210325-%{release} -Provides: texlive-metafont-bin = %{epoch}:20210325-%{release} -Provides: tex-metafont-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-metafont-bin < 7:20180414 -Summary: A system for specifying fonts -Requires: texlive-base texlive-kpathsea -Requires: texlive-modes +%package -n %{shortname}-metafont +Version: svn66186 +Provides: texlive-metafont = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont = %{epoch}:%{source_date}-%{release} +Provides: texlive-metafont-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metafont-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metafont-bin < 7:20170520 +License: Knuth-CTAN +Summary: A system for specifying fonts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-modes Requires(post,postun): coreutils -Provides: tex(mf.mf) = %{epoch}:20210325-%{release} -Provides: tex(plain.mf) = %{epoch}:20210325-%{release} -Provides: tex(cmmf.ini) = %{epoch}:20210325-%{release} -Provides: tex(mf.ini) = %{epoch}:20210325-%{release} -Provides: tex(mode2dpi.mf) = %{epoch}:20210325-%{release} -Provides: tex(mode2dpixy.mf) = %{epoch}:20210325-%{release} -Provides: tex(modename.mf) = %{epoch}:20210325-%{release} -Provides: tex(modes.mf) = %{epoch}:20210325-%{release} -Provides: tex(ps2mfbas.mf) = %{epoch}:20210325-%{release} - -%description -n texlive-metafont -The program takes a semi-algorithmic specification of a font, -and produces a bitmap font (whose properties are defined by a -set of parameters of the target device), and a set metrics for -use by TeX. The bitmap output may be converted into a format -directly usable by a device driver, etc., by the tools provided -in the parallel mfware distribution. - -%package -n texlive-metapost -Provides: tex-metapost = %{epoch}:20210325-%{release} -Provides: texlive-metapost-bin = %{epoch}:20210325-%{release} -Provides: tex-metapost-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-metapost-bin < 7:20180414 -Provides: tex-metapost-doc = %{epoch}:20210325-%{release} -Provides: texlive-metapost-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-metapost-doc < 7:20180414 -License: LGPLv2+ -Summary: A development of Metafont for creating graphics -Requires: texlive-base texlive-kpathsea -Provides: tex(freeeuro.afm) = %{epoch}:20210325-%{release} -Provides: tex(psyrgo.afm) = %{epoch}:20210325-%{release} -Provides: tex(zpzdr-reversed.afm) = %{epoch}:20210325-%{release} -Provides: tex(groff.enc) = %{epoch}:20210325-%{release} -Provides: tex(troff-updmap.map) = %{epoch}:20210325-%{release} -Provides: tex(troff.map) = %{epoch}:20210325-%{release} -Provides: tex(freeeuro.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagd8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagdo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagk8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pagko8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkd8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkdi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkl8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pbkli8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrbo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pcrro8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvb8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvbo8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvbo8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvr8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvro8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(phvro8gn.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pncri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pplri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(psyrgo.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmb8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmbi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmr8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(ptmri8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(pzcmi8g.tfm) = %{epoch}:20210325-%{release} -Provides: tex(zpzdr-reversed.tfm) = %{epoch}:20210325-%{release} -Provides: tex(freeeuro.pfa) = %{epoch}:20210325-%{release} -Provides: tex(mfplain.ini) = %{epoch}:20210325-%{release} -Provides: tex(trfonts.map) = %{epoch}:20210325-%{release} -Provides: tex(mproof.tex) = %{epoch}:20210325-%{release} -Provides: tex(mpsproof.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-metapost +Provides: tex(mf.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(plain.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(cmmf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mf.ini) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpi.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(mode2dpixy.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modename.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(modes.mf) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2mfbas.mf) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metafont +The program takes a programmatic specification of a font, and +produces a bitmap font (whose properties are defined by a set +of parameters of the target device), and metrics for use by +TeX. The bitmap output may be converted into a format directly +usable by a device driver, etc., by the tools provided in the +parallel mfware distribution. Third parties have developed +tools to convert the bitmap output to outline fonts. The +distribution includes the source of Knuth's Metafont book; this +source is there to read, as an example of writing TeX -- it +should not be processed without Knuth's direct permission. The +mailing list tex-fonts@math.utah.edu is the best for general +discussion of Metafont usage; the tex-k@tug.org list is best +for bug reports about building the software, etc. + +%package -n %{shortname}-metapost +Version: svn66264 +Provides: texlive-metapost = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-metapost-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-bin < 7:20170520 +Provides: tex-metapost-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-metapost-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-metapost-doc < 7:20170520 +License: LGPL-2.1-or-later +Summary: A development of Metafont for creating graphics +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(groff.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(mproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mpsproof.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(trfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff-updmap.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(troff.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-metapost MetaPost uses a language based on that of Metafont to produce precise technical illustrations. Its output is scalable PostScript or SVG, rather than the bitmaps Metafont creates. -%package -n texlive-mex -Provides: tex-mex = %{epoch}:20210325-%{release} texlive-mex-bin = %{epoch}:20210325-%{release} -Provides: tex-mex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mex-bin < 7:20180414 -Provides: tex-mex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mex-doc < 7:20180414 -License: Public Domain -Summary: Polish formats for TeX -Requires: texlive-base -Requires: texlive-enctex -Requires: texlive-hyph-utf8 -Requires: texlive-hyphen-base -Requires: texlive-hyphen-polish -Requires: texlive-knuth-lib -Requires: texlive-kpathsea -Requires: texlive-pdftex -Requires: texlive-pl -Requires: texlive-plain -Requires: texlive-tex -Requires: texlive-tex-ini-files -Requires: texlive-utf8mex +%package -n %{shortname}-mex +Version: svn58661 +Provides: texlive-mex = %{epoch}:%{source_date}-%{release} +Provides: tex-mex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-bin < 7:20170520 +Provides: tex-mex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mex-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Polish formats for TeX +Requires: texlive-base +Requires: texlive-enctex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-hyphen-polish +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-pl +Requires: texlive-plain +Requires: texlive-tex +Requires: texlive-tex-ini-files +Requires: texlive-utf8mex Requires(post,postun): coreutils -Provides: tex(lamex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex1.tex) = %{epoch}:20210325-%{release} -Provides: tex(mex2.tex) = %{epoch}:20210325-%{release} -Provides: tex(mexconf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-mex +Provides: tex(lamex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex1.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mex2.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mexconf.tex) = %{epoch}:%{source_date}-%{release} +# just symlinks +BuildArch: noarch + +%description -n %{shortname}-mex MeX is an adaptation of Plain TeX (MeX) and LaTeX209 (LaMeX) formats to the Polish language and to Polish printing customs. It contains a complete set of Metafont sources of Polish fonts, hyphenation rules for the Polish language and sources of formats. -%package -n texlive-mflua -Provides: tex-mflua = %{epoch}:20210325-%{release} -Provides: texlive-mflua-bin = %{epoch}:20210325-%{release} -Provides: tex-mflua-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mflua-bin < 7:20180414 -License: GPL+ -Summary: A METAFONT compliant program with a Lua interpreter embedded -Requires: texlive-base texlive-kpathsea - -%description -n texlive-mflua +%package -n %{shortname}-mflua +Version: svn62774 +Provides: texlive-mflua = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua = %{epoch}:%{source_date}-%{release} +Provides: texlive-mflua-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mflua-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mflua-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: A METAFONT compliant program with a Lua interpreter embedded +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mflua A METAFONT compliant program with a Lua interpreter embedded. -%package -n texlive-mfware -Provides: tex-mfware = %{epoch}:20210325-%{release} -Provides: texlive-mfware-bin = %{epoch}:20210325-%{release} -Provides: tex-mfware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mfware-bin < 7:20180414 -License: Public Domain -Summary: Supporting tools for use with Metafont -Requires: texlive-base texlive-kpathsea - -%description -n texlive-mfware +%package -n %{shortname}-mfware +Version: svn66186 +Provides: texlive-mfware = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware = %{epoch}:%{source_date}-%{release} +Provides: texlive-mfware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mfware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mfware-bin < 7:20170520 +License: Knuth-CTAN +Summary: Supporting tools for use with Metafont +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-mfware A collection of programs (as web source) for processing the output of Metafont. -%package -n texlive-mf2pt1 -Provides: tex-mf2pt1 = %{epoch}:20210325-%{release} -Provides: texlive-mf2pt1-bin = %{epoch}:20210325-%{release} -Provides: tex-mf2pt1-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mf2pt1-bin < 7:20180414 -Provides: tex-mf2pt1-doc = %{epoch}:20210325-%{release} -Provides: texlive-mf2pt1-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mf2pt1-doc < 7:20180414 -Summary: Produce PostScript Type 1 fonts from Metafont source -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mf2pt1 +%package -n %{shortname}-mf2pt1 +Version: svn61217 +Provides: texlive-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1 = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mf2pt1-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-bin < 7:20170520 +Provides: tex-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mf2pt1-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mf2pt1-doc < 7:20170520 +License: LPPL-1.3c +Summary: Produce PostScript Type 1 fonts from Metafont source +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mf2pt1 mf2pt1 facilitates producing PostScript Type 1 fonts from a Metafont source file. It is not, as the name may imply, an automatic converter of arbitrary Metafont fonts to Type 1 @@ -3752,40 +5221,48 @@ Type 1 output with more accurate control points than can be reverse-engineered by TeXtrace, mftrace, and other programs which convert bitmaps to outline fonts. -%package -n texlive-mkgrkindex -Provides: tex-mkgrkindex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-mkgrkindex-bin = %{epoch}:20210325-%{release} -Provides: tex-mkgrkindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkgrkindex-bin < 7:20180414 -Provides: tex-mkgrkindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkgrkindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkgrkindex-doc < 7:20180414 -Summary: Makeindex working with Greek -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkgrkindex +%package -n %{shortname}-mkgrkindex +Version: svn26313 +Provides: texlive-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkgrkindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-bin < 7:20170520 +Provides: tex-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkgrkindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkgrkindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Makeindex working with Greek +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkgrkindex Makeindex is resolutely stuck with Latin-based alphabets, so will not deal with Greek indexes, unaided. This package provides a Perl script that will transmute the index of a Greek document in such a way that makeindex will sort the entries according to the rules of the Greek alphabet. -%package -n texlive-mkjobtexmf -Provides: tex-mkjobtexmf = %{epoch}:20210325-%{release} -Provides: texlive-mkjobtexmf-bin = %{epoch}:20210325-%{release} -Provides: tex-mkjobtexmf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkjobtexmf-bin < 7:20180414 -Provides: tex-mkjobtexmf-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkjobtexmf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkjobtexmf-doc < 7:20180414 -License: GPLv2 or Artistic -Summary: Generate a texmf tree for a particular job -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkjobtexmf +%package -n %{shortname}-mkjobtexmf +Version: svn29725 +Provides: texlive-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkjobtexmf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-bin < 7:20170520 +Provides: tex-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkjobtexmf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkjobtexmf-doc < 7:20170520 +License: GPL-2.0-only +Summary: Generate a texmf tree for a particular job +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkjobtexmf The package provides a Perl script, which runs a program and tries to find the names of file used. Two methods are available, option -recorder of (Web2C) TeX and the program @@ -3794,20 +5271,24 @@ checks the found files and tries sort them in this texmf tree. The script may be used for archiving purposes or to speed up later TeX runs. -%package -n texlive-mkpic -Provides: tex-mkpic = %{epoch}:20210325-%{release} -Provides: texlive-mkpic-bin = %{epoch}:20210325-%{release} -Provides: tex-mkpic-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkpic-bin < 7:20180414 -Provides: tex-mkpic-doc = %{epoch}:20210325-%{release} -Provides: texlive-mkpic-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mkpic-doc < 7:20180414 -License: GPL+ -Summary: Perl interface to mfpic -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-mkpic +%package -n %{shortname}-mkpic +Version: svn33700 +Provides: texlive-mkpic = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mkpic-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-bin < 7:20170520 +Provides: tex-mkpic-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mkpic-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mkpic-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Perl interface to mfpic +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-mkpic mkpic provides an easy interface for making small pictures with mfpic. To this end you create an input file consisting of commands, one per line, with space separated parameters (or you @@ -3815,58 +5296,67 @@ modify the DATA section of the mkpic script, which is used if you run it without an input file). For an extensive description see the file mkpicdoc.pdf, which is part of the distribution. -%package -n texlive-mltex -Provides: tex-mltex = %{epoch}:20210325-%{release} -Provides: texlive-mltex-bin = %{epoch}:20210325-%{release} -Provides: tex-mltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mltex-bin < 7:20180414 -Provides: tex-mltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-mltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mltex-doc < 7:20180414 -License: LPPL-1.3c -Summary: The MLTeX system -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-latex -Requires: texlive-pdftex -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-babel -Requires: texlive-dehyph -Requires: texlive-hyph-utf8 -Requires: texlive-l3kernel -Requires: texlive-latexconfig -Requires: texlive-latex-fonts -Requires: texlive-unicode-data -Requires: texlive-knuth-lib -Requires: texlive-plain +%package -n %{shortname}-mltex +Version: svn62145 +Provides: texlive-mltex = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-bin < 7:20170520 +Provides: tex-mltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mltex-doc < 7:20170520 +License: Knuth-CTAN +Summary: The MLTeX system +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-babel +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-l3kernel +Requires: texlive-latexconfig +Requires: texlive-latex-fonts +Requires: texlive-unicode-data +Requires: texlive-knuth-lib +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(lo1enc.def) = %{epoch}:20210325-%{release} -Provides: tex(mlltxchg.def) = %{epoch}:20210325-%{release} -Provides: tex(mltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(lo1enc.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mlltxchg.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(mltex.sty) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch -%description -n texlive-mltex +%description -n %{shortname}-mltex MLTeX is a modification of TeX version >=3.0 that allows the hyphenation of words with accented letters using ordinary Computer Modern (CM) fonts. The system is distributed as a TeX change file. -%package -n texlive-mptopdf -Provides: tex-mptopdf = %{epoch}:20210325-%{release} -Provides: texlive-mptopdf-bin = %{epoch}:20210325-%{release} -Provides: tex-mptopdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-mptopdf-bin < 7:20180414 -Provides: tex-mptopdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-mptopdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-mptopdf-doc < 7:20180414 -Summary: mpost to PDF, native MetaPost graphics inclusion -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-mptopdf +Version: svn65952 +Provides: texlive-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-mptopdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-bin < 7:20170520 +Provides: tex-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-mptopdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-mptopdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: mpost to PDF, native MetaPost graphics inclusion +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(mptopdf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch +Provides: tex(mptopdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch -%description -n texlive-mptopdf +%description -n %{shortname}-mptopdf The mptopdf script does standalone conversion from mpost to PDF, using the supp-* and syst-* files. They also allow native MetaPost graphics inclusion in LaTeX (via pdftex.def) and @@ -3876,21 +5366,25 @@ pull them out to this separate package for the benefit of LaTeX users who do not install the rest of ConTeXt. This can be found on CTAN in macros/pdftex/graphics. -%package -n texlive-multibibliography -Provides: tex-multibibliography = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-multibibliography-bin = %{epoch}:20210325-%{release} -Provides: tex-multibibliography-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-multibibliography-bin < 7:20180414 -Provides: tex-multibibliography-doc = %{epoch}:20210325-%{release} -Provides: texlive-multibibliography-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-multibibliography-doc < 7:20180414 -Summary: Multiple versions of a bibliography, with different sort orders -Requires: texlive-base texlive-kpathsea -Provides: tex(multibibliography.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-multibibliography +%package -n %{shortname}-multibibliography +Version: svn30939 +Provides: texlive-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-multibibliography-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-bin < 7:20170520 +Provides: tex-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-multibibliography-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-multibibliography-doc < 7:20170520 +License: LPPL-1.3c +Summary: Multiple versions of a bibliography, with different sort orders +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(multibibliography.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-multibibliography Conventional standards for bibliography styles impose a forced choice between index and name/year citations, and corresponding references. The package avoids this choice, by providing @@ -3899,67 +5393,77 @@ references. Inline citations, that integrate these heterogeneous styles, are also supported (and work with other bibliography packages). -%package -n texlive-musixtex -Provides: tex-musixtex = %{epoch}:20210325-%{release} -Provides: texlive-musixtex-bin = %{epoch}:20210325-%{release} -Provides: tex-musixtex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtex-bin < 7:20180414 -Provides: tex-musixtex-doc = %{epoch}:20210325-%{release} -Provides: texlive-musixtex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtex-doc < 7:20180414 -License: GPLv2+ -Summary: Sophisticated music typesetting -Requires: texlive-base texlive-kpathsea -Provides: tex(musixadd.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixadf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbar.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbbm.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixblx.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixbm.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcho.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcpt.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcrd.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdat.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdbr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixdia.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixec.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixeng.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixesf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixevo.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixext.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixfll.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixgre.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixgui.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhor.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhou.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixhv.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixinv.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixlit.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixlyr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixmad.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixper.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixplt.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixpoi.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixppff.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixps.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixref.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixslu.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixsqr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixste.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixstf.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixstr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixsty.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtex.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtmr.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtri.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixcpt.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixcrd.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixfll.sty) = %{epoch}:20210325-%{release} -Provides: tex(musixltx.tex) = %{epoch}:20210325-%{release} -Provides: tex(musixtex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-musixtex +%package -n %{shortname}-musixtex +Version: svn65519 +Provides: texlive-musixtex = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-bin < 7:20170520 +Provides: tex-musixtex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtex-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Sophisticated music typesetting +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(musixadd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixadf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbar.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixblx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcho.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcpt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixcrd.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdat.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdbr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixdia.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixec.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixeng.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixesf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixevo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixfll.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixftab.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgre.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixgui.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhou.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixhv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixinv.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixjt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixltx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixlyr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmad.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixmkm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixper.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixplt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixpoi.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixppff.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixps.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixref.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixslu.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsqr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixste.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstf.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixstr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixsty.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixthacc.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtmr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixtri.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(musixvbm.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tuplet.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-musixtex MusiXTeX provides a set of macros, based on the earlier MusicTeX, for typesetting music with TeX. To produce optimal spacing, MusixTeX is a three-pass system: etex, musixflx, and @@ -3974,21 +5478,24 @@ are universally acknowledged to be challenging to use directly: the pmx preprocessor compiles a simpler input language to MusixTeX macros. -%package -n texlive-musixtnt -Provides: tex-musixtnt = %{epoch}:20210325-%{release} -Provides: texlive-musixtnt-bin = %{epoch}:20210325-%{release} -Provides: tex-musixtnt-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtnt-bin < 7:20180414 -Provides: tex-musixtnt-doc = %{epoch}:20210325-%{release} -Provides: texlive-musixtnt-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-musixtnt-doc < 7:20180414 -License: GPLv2+ -Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands -Requires: texlive-base texlive-kpathsea -Requires: texlive-musixtex -Provides: tex(musixtnt.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-musixtnt +%package -n %{shortname}-musixtnt +Version: svn40307 +Provides: texlive-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-musixtnt-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-bin < 7:20170520 +Provides: tex-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-musixtnt-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-musixtnt-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A MusiXTeX extension library that enables transformations of the effect of notes commands +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-musixtex +Provides: tex(musixtnt.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-musixtnt The package includes an archive containing a MusiXTeX extension library musixtnt, and documentation for a program: msxlint. musixtnt.tex provides a macro \TransformNotes that @@ -4002,102 +5509,120 @@ instrument score. msxlint detects incorrectly formatted notes lines in a MusiXTeX source file. This should be used before using \TransformNotes. -%package -n texlive-m-tx -Provides: tex-m-tx = %{epoch}:20210325-%{release} texlive-m-tx-bin = %{epoch}:20210325-%{release} -Provides: tex-m-tx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-m-tx-bin < 7:20180414 -Provides: tex-m-tx-doc = %{epoch}:20210325-%{release} -Provides: texlive-m-tx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-m-tx-doc < 7:20180414 -License: GPL+ -Summary: A preprocessor for pmx -Requires: texlive-base texlive-kpathsea -Provides: tex(mtx.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-m-tx +%package -n %{shortname}-m-tx +Version: svn64182 +Provides: texlive-m-tx = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-m-tx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-bin < 7:20170520 +Provides: tex-m-tx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-m-tx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-m-tx-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A preprocessor for pmx +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(mtx.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtxlatex.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-m-tx M-Tx is a preprocessor to pmx, which is itself a preprocessor to musixtex, a music typesetting system. The prime motivation to the development of M-Tx was to provide lyrics for music to be typeset. In fact, pmx now provides a lyrics interface, but M- Tx continues in use by those who prefer its language. -%package -n texlive-oberdiek -Provides: tex-oberdiek = %{epoch}:20210325-%{release} -Provides: tex-oberdiek-doc = %{epoch}:20210325-%{release} -Provides: texlive-oberdiek-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-oberdiek-doc < 7:20180414 -License: LPPL-1.3c -Summary: A bundle of packages submitted by Heiko Oberdiek -Requires: texlive-base texlive-kpathsea -Requires: tex(ifluatex.sty) tex(intcalc.sty) -Requires: tex(ifpdf.sty) tex(etexcmds.sty) -Requires: tex(kvoptions.sty) tex(ifxetex.sty) -Requires: tex(etex.sty) tex(color.sty) -Requires: tex(keyval.sty) tex(soul.sty) -Requires: tex(remreset.sty) tex(makematch.sty) -Requires: tex(zref-lastpage.sty) tex(hyperref.sty) -Requires: tex(fp-basic.sty) tex(fp-snap.sty) -Requires: tex(graphics.sty) tex(amsmath.sty) -Requires: tex(grfext.sty) tex(hypdoc.sty) -Requires: tex(array.sty) tex(fontspec.sty) -Requires: tex(unicode-math.sty) tex(doc.sty) -Requires: tex(calc.sty) tex(thumbpdf.sty) -Requires: tex(inputenc.sty) tex(listings.sty) -Requires: tex(tikz.sty) tex(everyshi.sty) -Requires: tex(parallel.sty) tex(parcolumns.sty) -Requires: tex(lscape.sty) tex(index.sty) -Requires: tex(zref-pagelayout.sty) -Provides: tex(aliascnt.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-base.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-dvips.def) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize.sty) = %{epoch}:20210325-%{release} -Provides: tex(bmpsize-test.tex) = %{epoch}:20210325-%{release} -Provides: tex(centernot.sty) = %{epoch}:20210325-%{release} -Provides: tex(chemarr.sty) = %{epoch}:20210325-%{release} -Provides: tex(classlist.sty) = %{epoch}:20210325-%{release} -Provides: tex(colonequals.sty) = %{epoch}:20210325-%{release} -Provides: tex(dvipscol.sty) = %{epoch}:20210325-%{release} -Provides: tex(engord.sty) = %{epoch}:20210325-%{release} -Provides: tex(enparen.sty) = %{epoch}:20210325-%{release} -Provides: tex(eolgrab.sty) = %{epoch}:20210325-%{release} -Provides: tex(fibnum.sty) = %{epoch}:20210325-%{release} -Provides: tex(flags.sty) = %{epoch}:20210325-%{release} -Provides: tex(holtxdoc.sty) = %{epoch}:20210325-%{release} -Provides: tex(hopatch.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypbmsec.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypcap.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypdestopt.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypdoc.sty) = %{epoch}:20210325-%{release} -Provides: tex(hypgotoe.sty) = %{epoch}:20210325-%{release} -Provides: tex(hyphsubst.sty) = %{epoch}:20210325-%{release} -Provides: tex(ifdraft.sty) = %{epoch}:20210325-%{release} -Provides: tex(iflang.sty) = %{epoch}:20210325-%{release} -Provides: tex(pagegrid.sty) = %{epoch}:20210325-%{release} -Provides: tex(pagesel.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolfoot.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolparallel.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolparcolumns.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcol.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfcrypt.sty) = %{epoch}:20210325-%{release} -Provides: tex(pdfrender.sty) = %{epoch}:20210325-%{release} -Provides: tex(protecteddef.sty) = %{epoch}:20210325-%{release} -Provides: tex(resizegather.sty) = %{epoch}:20210325-%{release} -Provides: tex(rotchiffre.sty) = %{epoch}:20210325-%{release} -Provides: tex(scrindex.sty) = %{epoch}:20210325-%{release} -Provides: tex(setouterhbox.sty) = %{epoch}:20210325-%{release} -Provides: tex(settobox.sty) = %{epoch}:20210325-%{release} -Provides: tex(stackrel.sty) = %{epoch}:20210325-%{release} -Provides: tex(stampinclude.sty) = %{epoch}:20210325-%{release} -Provides: tex(tabularht.sty) = %{epoch}:20210325-%{release} -Provides: tex(tabularkv.sty) = %{epoch}:20210325-%{release} -Provides: tex(telprint.sty) = %{epoch}:20210325-%{release} -Provides: tex(thepdfnumber.sty) = %{epoch}:20210325-%{release} -Provides: tex(twoopt.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-oberdiek +%package -n %{shortname}-oberdiek +Version: svn65521 +Provides: texlive-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek = %{epoch}:%{source_date}-%{release} +Provides: tex-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-oberdiek-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-oberdiek-doc < 7:20170520 +License: LPPL-1.3c +Summary: A bundle of packages submitted by Heiko Oberdiek +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-auxhook +Requires: texlive-grfext +Requires: texlive-grffile +Requires: texlive-iftex +Requires: texlive-kvoptions +Requires: texlive-infwarerr +Requires: texlive-pdftexcmds +# To complete the bundle +Requires: tex(amsmath.sty) +Requires: tex(array.sty) +Requires: tex(atveryend.sty) +Requires: tex(bigintcalc.sty) +Requires: tex(color.sty) +Requires: tex(etexcmds.sty) +Requires: tex(fontspec.sty) +Requires: tex(fp-basic.sty) +Requires: tex(fp-snap.sty) +Requires: tex(graphics.sty) +Requires: tex(hologo.sty) +Requires: tex(hypdoc.sty) +Requires: tex(hyperref.sty) +Requires: tex(index.sty) +Requires: tex(intcalc.sty) +Requires: tex(keyval.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(letltxmacro.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(parallel.sty) +Requires: tex(parcolumns.sty) +Requires: tex(pdfcol.sty) +Requires: tex(pdfescape.sty) +Requires: tex(remreset.sty) +Requires: tex(unicode-math.sty) +Requires: tex(uniquecounter.sty) +Requires: tex(zref-base.sty) +Provides: tex(aliascnt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-base.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfm.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvipdfmx.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-dvips.def) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize-test.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bmpsize.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(centernot.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(chemarr.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(classlist.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(colonequals.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipscol.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(engord.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(enparen.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(eolgrab.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(fibnum.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(flags.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(holtxdoc.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypbmsec.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypcap.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hypgotoe.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hyphsubst.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(ifdraft.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(iflang.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparallel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolparcolumns.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcrypt.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfrender.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(protecteddef.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(resizegather.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rotchiffre.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(scrindex.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(setouterhbox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(settobox.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stackrel.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(stampinclude.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularht.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(tabularkv.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(telprint.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thepdfnumber.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(twoopt.sty) = %{epoch}:%{source_date}-%{release} +BuildArch: noarch + +%description -n %{shortname}-oberdiek The bundle comprises packages to provide: aliascnt: 'alias counters'; bmpsize: get bitmap size and resolution data; centernot: a horizontally-centred \not symbol; chemarr: @@ -4108,105 +5633,174 @@ stack management; engord: define counter-printing operations producing English ordinals; eolgrab: collect arguments delimited by end of line; flags: setting and clearing flags in bit fields and converting the bit field into a decimal number; -holtxdoc: extra documentation macros; hopatch: safely apply -package patches; hypbmsec: bookmarks in sectioning commands; -hypcap: anjusting anchors of captions; hypdestopt: optimising -hyperref's pdfTeX driver destinations; hypdoc: hyper-references -in the LaTeX standard doc package; hypgotoe: experimental -package for links to embedded files; hyphsubst: substitute -hyphenation patterns; ifdraft: switch for option draft; iflang: -provides expandable checks for the current language; pagegrid: -prints a page grid in the background; pagesel: select pages of -a document for output; pdfcolfoot: using pdfTeX's color stack -for footnotes; pdfcol: macros for setting and maintaining new -color stacks; pdfcolparallel: fixes colour problems in package -parallel; pdfcolparcolumns: fixes colour problems in package -parcolumns; pdfcrypt: setting PDF encryption; pdfrender: -control PDF rendering modes; protecteddef: define a command -that protected against expansion; resizegather: automatically -resize overly large equations; rotchiffre: performs simple -rotation cyphers; scrindex: redefines environment 'theindex' of -package 'index', if a class from KOMA-Script is loaded; -setouterhbox: set \hbox in outer horizontal mode; settobox: -getting box sizes; soul and adds some support for UTF-8; -stackrel: extensions of the \stackrel command; stampinclude: -selects the files for \include by inspecting the timestamp of -the .aux file(s); tabularht: tabulars with height -specification; tabularkv: key value interface for tabular -parameters; telprint: print German telephone numbers; -thepdfnumber: canonical numbers for use in PDF files and -elsewhere; twoopt: commands with two optional arguments; Each -of the packages is represented by two files, a .dtx (documented -source) and a PDF file; the .ins file necessary for -installation is extracted by running the .dtx file with Plain -TeX. - - -%package -n texlive-omegaware -Provides: tex-omegaware = %{epoch}:20210325-%{release} -Provides: texlive-omegaware-bin = %{epoch}:20210325-%{release} -Provides: tex-omegaware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-omegaware-bin < 7:20180414 -Provides: tex-omegaware-doc = %{epoch}:20210325-%{release} -Provides: texlive-omegaware-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-omegaware-doc < 7:20180414 -Summary: Omegaware package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-omegaware -Omegaware package. - -%package -n texlive-optex -License: Public Domain -Summary: LuaTeX format based on Plain TeX and OPmac -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-amsfonts -Requires: texlive-cm -Requires: texlive-ec -Requires: texlive-hyphen-base -Requires: texlive-lm -Requires: texlive-luatex -Requires: texlive-rsfs - -%description -n texlive-optex +holtxdoc: extra documentation macros; hypbmsec: bookmarks in +sectioning commands; hypcap: anjusting anchors of captions; +hypgotoe: experimental package for links to embedded files; +hyphsubst: substitute hyphenation patterns; ifdraft: switch for +option draft; iflang: provides expandable checks for the +current language; pdfcolparallel: fixes colour problems in +package parallel; pdfcolparcolumns: fixes colour problems in +package parcolumns; pdfcrypt: setting PDF encryption; +pdfrender: control PDF rendering modes; protecteddef: define a +command that protected against expansion; resizegather: +automatically resize overly large equations; rotchiffre: +performs simple rotation cyphers; scrindex: redefines +environment 'theindex' of package 'index', if a class from +KOMA-Script is loaded; setouterhbox: set \hbox in outer +horizontal mode; settobox: getting box sizes; stackrel: +extensions of the \stackrel command; stampinclude: selects the +files for \include by inspecting the timestamp of the .aux +file(s); tabularht: tabulars with height specification; +tabularkv: key value interface for tabular parameters; +telprint: print German telephone numbers; thepdfnumber: +canonical numbers for use in PDF files and elsewhere; twoopt: +commands with two optional arguments; Each of the packages is +represented by two files, a .dtx (documented source) and a PDF +file; the .ins file necessary for installation is extracted by +running the .dtx file with Plain TeX. + +%package -n %{shortname}-omegaware +Version: svn66186 +Provides: texlive-omegaware = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-omegaware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-bin < 7:20170520 +Provides: tex-omegaware-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-omegaware-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-omegaware-doc < 7:20170520 +License: LPPL-1.3c +Summary: A wide-character-set extension of TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-omegaware +A development of TeX, which deals in multi-octet Unicode +characters, to enable native treatment of a wide range of +languages without changing character-set. Work on Omega has +ceased (the TeX Live package contains only support files); its +compatible successor is aleph, which is itself also in major +maintenance mode only. Ongoing projects developing Omega (and +Aleph) ideas include Omega-2 and LuaTeX. + +%package -n %{shortname}-optex +Version: svn66513 +Provides: texlive-optex = %{epoch}:%{source_date}-%{release} +License: LicenseRef-Fedora-Public-Domain +Summary: LuaTeX format based on Plain TeX and OPmac +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-amsfonts +Requires: texlive-cm +Requires: texlive-ec +Requires: texlive-hyphen-base +Requires: texlive-librarian +Requires: texlive-lm +Requires: texlive-luaotfload +Requires: texlive-luatex +Requires: texlive-rsfs +Requires: texlive-unicode-data +Provides: tex(op-demo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-letter-cs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-letter-en.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-mathalign.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(op-slides.tex) = %{epoch}:%{source_date}-%{release} + + +%description -n %{shortname}-optex OpTeX is a LuaTeX format based on Plain TeX macros with power from OPmac (fonts selection system, colors, external graphics, references, hyperlinks, ...) with unicode fonts. -%package -n texlive-patgen -Provides: tex-patgen = %{epoch}:20210325-%{release} -Provides: texlive-patgen-bin = %{epoch}:20210325-%{release} -Provides: tex-patgen-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-patgen-bin < 7:20180414 -License: Public Domain -Summary: Generate hyphenation patterns -Requires: texlive-base texlive-kpathsea - -%description -n texlive-patgen -This is the last version of the program distributed by Knuth; -it advertises itself as a pattern generator for "the algorithm -used in TeX", but, of course, the patterns used in modern -distributions are Unicode-based. - -%package -n texlive-pax -Provides: tex-pax = %{epoch}:20210325-%{release} texlive-pax-bin = %{epoch}:20210325-%{release} -Provides: tex-pax-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pax-bin < 7:20180414 -Provides: tex-pax-doc = %{epoch}:20210325-%{release} -Provides: texlive-pax-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pax-doc < 7:20180414 -License: GPLv2+ -Summary: Extract and reinsert PDF annotations with pdfTeX -Requires: texlive-base texlive-kpathsea -Requires: tex(ifpdf.sty) tex(graphicx.sty) -Requires: tex(ltxcmds.sty) tex(kvsetkeys.sty) -Requires: tex(kvoptions.sty) tex(auxhook.sty) -Requires: tex(etexcmds.sty) -Provides: tex(pax.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pax +%package -n %{shortname}-optexcount +Version: svn59817 +Provides: texlive-optexcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-optexcount-bin = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: Python script for counting words in OpTeX documents +Requires: texlive-base, texlive-kpathsea +#python +BuildArch: noarch + +%description -n %{shortname}-optexcount +OpTeXcount is a basic python utility that analyzes OpTeX source code. It is +inspired by already existing TeXcount for LaTeX. The functionality is really +lightweight and basic. It counts words and other elements of OpTeX document +and sorts them out into individual categories. Users can print the source code +with highlighted words using several colors,so they see what is considered as +word, header etc. + +%package -n %{shortname}-pagelayout +Summary: Layout graphic rich documents +Version: svn66392 +License: LPPL-1.3c +Requires: texlive-base texlive-kpathsea +Provides: tex(pagelayout.cls) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pagelayout +The pagelayout class enables you to layout pages declaratively +using simple macros for pages, covers, grids, templates, text, +and graphics to create graphic rich, perfectly typeset, and +print ready PDFs. The integration of Inkscape allows your to +create box shadows. The integration of ImageMagick allows you +to configure compression and sharpening for bitmap graphics to +export web, print or preview versions of your document. +Parallelized image optimization, caching, and a draft mode +enable fast PDF creation and a responsive workflow, even for +large documents with lots of photos and graphics. The +pagelayout class also integrates the Pgf/TikZ and tcolorbox +LaTeX packages. + +%package -n %{shortname}-patgen +Version: svn66186 +Provides: texlive-patgen = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen = %{epoch}:%{source_date}-%{release} +Provides: texlive-patgen-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-patgen-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-patgen-bin < 7:20170520 +License: Knuth-CTAN +Summary: Generate hyphenation patterns +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-patgen +Patgen takes a list of hyphenated words and generates a set of +patterns that can be used by the TeX 82 hyphenation algorithm. +Patgen was originally written by Frank M. Liang as part of his +Stanford Ph.D. work, and has always been distributed alongside +the other programs coming from the Stanford TeX project. It was +updated in 1991 by Peter Breitenlohner for the new 8-bit +features of TeX version 3. (These updates related to +input/output and programming overhead; the actual pattern +generation algorithms were not changed.) Patgen is currently +maintained as part of TeX Live. + +%package -n %{shortname}-pax +Version: svn63509 +Provides: texlive-pax = %{epoch}:%{source_date}-%{release} +Provides: tex-pax = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pax-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-bin < 7:20170520 +Provides: tex-pax-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pax-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pax-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Extract and reinsert PDF annotations with pdfTeX +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(graphicx.sty) +Requires: tex(ltxcmds.sty) +Requires: tex(kvsetkeys.sty) +Requires: tex(kvoptions.sty) +Requires: tex(auxhook.sty) +Requires: tex(etexcmds.sty) +Provides: tex(pax.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-pax If PDF files are included using pdfTeX, PDF annotations are stripped. The pax project offers a solution without altering pdfTeX. A Java program (pax.jar) parses the PDF file that will @@ -4217,21 +5811,26 @@ if a PDF file is included, the package looks for the file with the annotation data, reads them and puts the annotations in the right place. -%package -n texlive-pdfbook2 -Provides: tex-pdfbook2 = %{epoch}:20210325-%{release} -Provides: texlive-pdfbook2-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfbook2-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfbook2-bin < 7:20180414 -Provides: tex-pdfbook2-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfbook2-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfbook2-doc < 7:20180414 -License: GPLv3+ -Summary: Create booklets from PDF files -Requires: texlive-base texlive-kpathsea -Requires: texlive-pdfcrop texlive-pdfjam -BuildArch: noarch - -%description -n texlive-pdfbook2 +%package -n %{shortname}-pdfbook2 +Version: svn53521 +Provides: texlive-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2 = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfbook2-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-bin < 7:20170520 +Provides: tex-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfbook2-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfbook2-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Create booklets from PDF files +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdfcrop +Requires: texlive-pdfjam +# python +BuildArch: noarch + +%description -n %{shortname}-pdfbook2 This python program creates print-ready PDF files from some input PDF files for booklet printing. The resulting files need to be printed in landscape/long edge double sided printing. The @@ -4245,174 +5844,210 @@ the binding occurs. The output is written to INPUT-book.pdf. Existing files will be overwritten. All input files are processed seperately. -%package -n texlive-pdfcrop -Provides: tex-pdfcrop = %{epoch}:20210325-%{release} -Provides: texlive-pdfcrop-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfcrop-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfcrop-bin < 7:20180414 -Provides: tex-pdfcrop-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfcrop-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfcrop-doc < 7:20180414 -Summary: Crop PDF graphics -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdfcrop +%package -n %{shortname}-pdfcrop +Version: svn55435 +Provides: texlive-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfcrop-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-bin < 7:20170520 +Provides: tex-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfcrop-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfcrop-doc < 7:20170520 +License: LPPL-1.3c +Summary: Crop PDF graphics +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +# perl +BuildArch: noarch + +%description -n %{shortname}-pdfcrop A Perl script that can either trim pages of any whitespace border, or trim them of a fixed border. -%package -n texlive-pdfjam -Provides: tex-pdfjam = %{epoch}:20210325-%{release} -Provides: texlive-pdfjam-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfjam-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfjam-bin < 7:20180414 -Provides: tex-pdfjam-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfjam-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfjam-doc < 7:20180414 -License: GPLv2+ -Summary: Shell scripts interfacing to pdfpages -Requires: texlive-base texlive-collection-latex -Requires: texlive-kpathsea texlive-latex -Requires: tex(pdfpages.sty) -BuildArch: noarch - -%description -n texlive-pdfjam +%package -n %{shortname}-pdfjam +Version: svn56991 +Provides: texlive-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfjam-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-bin < 7:20170520 +Provides: tex-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfjam-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfjam-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Shell scripts interfacing to pdfpages +Requires: texlive-base +Requires: texlive-collection-latex +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: tex(pdfpages.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfjam This is a collection of shell scripts which provide an interface to the pdfpages LaTeX package. They do such jobs as selecting pages, concatenating files, doing n-up formatting, and so on. -%package -n texlive-pdflatexpicscale -Provides: tex-pdflatexpicscale = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pdflatexpicscale-bin = %{epoch}:20210325-%{release} -Provides: tex-pdflatexpicscale-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdflatexpicscale-bin < 7:20180414 -Provides: tex-pdflatexpicscale-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdflatexpicscale-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdflatexpicscale-doc < 7:20180414 -Summary: Support software for downscaling graphics to be included by pdfLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdflatexpicscale +%package -n %{shortname}-pdflatexpicscale +Version: svn46617 +Provides: texlive-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdflatexpicscale-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-bin < 7:20170520 +Provides: tex-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdflatexpicscale-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdflatexpicscale-doc < 7:20170520 +License: LPPL-1.3c +Summary: Support software for downscaling graphics to be included by pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pdflatexpicscale The package provides a script to scale pictures down to a target resolution before creating a PDF document with pdfLaTeX. -%package -n texlive-pdftex -Provides: tex-pdftex = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-bin = %{epoch}:20210325-%{release} -Provides: tex-pdftex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdftex-bin < 7:20180414 -Provides: tex-pdftex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdftex-doc < 7:20180414 -License: GPL+ -Summary: A TeX extension for direct creation of PDF -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-pdftex +Version: svn66243 +Provides: texlive-pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-bin < 7:20170520 +Provides: tex-pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdftex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A TeX extension for direct creation of PDF +Requires: texlive-base +Requires: texlive-kpathsea Requires(post,postun): coreutils -Requires: tex-graphics-def texlive-cm -Requires: texlive-etex texlive-hyphen-base -Requires: texlive-knuth-lib texlive-plain -Requires: tex-tex-ini-files texlive-hyph-utf8 -Provides: tex(dummy-space.map) = %{epoch}:20210325-%{release} -Provides: tex(dummy-space.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dummy-space.pfb) = %{epoch}:20210325-%{release} -Provides: tex(pdftex-dvi.tex) = %{epoch}:20210325-%{release} -Provides: tex(glyphtounicode.tex) = %{epoch}:20210325-%{release} -Provides: tex(pdfcolor.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-pdftex -An extension of TeX which can be configured to directly -generate PDF documents instead of DVI. All current free TeX -distributions including TeX live, MacTeX and MiKTeX include -pdfTeX (Plain TeX) and pdfLaTeX (LaTeX). ConTeXt was designed -around use of pdfTeX (though it is now migrating towards -LuaTeX). - -%package -n texlive-pdftex-quiet -Provides: tex-pdftex-quiet = %{epoch}:20210325-%{release} -Provides: texlive-pdftex-quiet-bin = %{epoch}:20210325-%{release} -Provides: tex-pdftex-quiet-bin = %{epoch}:20210325-%{release} -License: GPLv3 -Summary: Bash utility to reduce the output of the pdftex command -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-pdftex +Requires: tex-graphics-def +Requires: texlive-cm +Requires: texlive-dehyph +Requires: texlive-etex +Requires: texlive-hyph-utf8 +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain +Requires: tex-tex-ini-files +Provides: tex(dummy-space.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(glyphtounicode.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdfcolor.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex-dvi.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pdftex +An extension of TeX which can directly generate PDF documents +as well as DVI output. All current free TeX distributions +including TeX Live, MacTeX and MiKTeX include pdfTeX (Plain +TeX) and pdfLaTeX (LaTeX), among many other formats based on +the pdfTeX engine. + +%package -n %{shortname}-pdftex-quiet +Version: svn49169 +Provides: texlive-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftex-quiet-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-only +Summary: Bash utility to reduce the output of the pdftex command +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex #bash BuildArch: noarch -%description -n texlive-pdftex-quiet +%description -n %{shortname}-pdftex-quiet This is a tool in BASH serving to reduce the output of `pdftex` command and see only relevant errors in red bold font to fight them ASAP. -%package -n texlive-pdftosrc -Provides: tex-pdftosrc = %{epoch}:20210325-%{release} -Provides: tex-pdftosrc-bin = %{epoch}:20210325-%{release} -Provides: texlive-pdftosrc-bin = %{epoch}:20210325-%{release} -License: GPLv2+ -Summary: Extract source file or stream from PDF file -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-pdftosrc +%package -n %{shortname}-pdftosrc +Version: svn66186 +Provides: texlive-pdftosrc = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftosrc = %{epoch}:%{source_date}-%{release} +Provides: tex-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdftosrc-bin = %{epoch}:%{source_date}-%{release} +License: GPL-2.0-or-later +Summary: Extract source file or stream from PDF file +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-pdftosrc Extracts an embedded source file, or extracts and uncompresses a PDF stream given by object number. Developed as part of the pdfTeX source tree. -%package -n texlive-pdfxup -Provides: tex-pdfxup = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pdfxup-bin = %{epoch}:20210325-%{release} -Provides: tex-pdfxup-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfxup-bin < 7:20180414 -Provides: tex-pdfxup-doc = %{epoch}:20210325-%{release} -Provides: texlive-pdfxup-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pdfxup-doc < 7:20180414 -Summary: Create n-up PDF pages with minimal margins -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pdfxup +%package -n %{shortname}-pdfxup +Version: svn59001 +Provides: texlive-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pdfxup-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-bin < 7:20170520 +Provides: tex-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pdfxup-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pdfxup-doc < 7:20170520 +License: LPPL-1.3c +Summary: Create n-up PDF pages with minimal margins +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-pdfxup pdfxup is a unix/linux shell script that creates a PDF document where each page is obtained by combining several pages of a PDF file given as output. -%package -n texlive-pedigree-perl -Provides: tex-pedigree-perl = %{epoch}:20210325-%{release} -Provides: texlive-pedigree-perl-bin = %{epoch}:20210325-%{release} -Provides: tex-pedigree-perl-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pedigree-perl-bin < 7:20180414 -Provides: tex-pedigree-perl-doc = %{epoch}:20210325-%{release} -Provides: texlive-pedigree-perl-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pedigree-perl-doc < 7:20180414 -License: GPLv2+ -Summary: Generate TeX pedigree files from CSV files -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pedigree-perl +%package -n %{shortname}-pedigree-perl +Version: svn64227 +Provides: texlive-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pedigree-perl-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-bin < 7:20170520 +Provides: tex-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pedigree-perl-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pedigree-perl-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Generate TeX pedigree files from CSV files +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pedigree-perl This program generates TeX commands to typeset pedigrees -- either TeX fragments or full LaTeX files, to be processed by the authors' pst-pdgr package. The program has support for multilanguage pedigrees (at the present moment the English and Russian languages are supported). -%package -n texlive-perltex -Provides: tex-perltex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-perltex-bin = %{epoch}:20210325-%{release} -Provides: tex-perltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-perltex-bin < 7:20180414 -Provides: tex-perltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-perltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-perltex-doc < 7:20180414 -Summary: Define LaTeX macros in terms of Perl code -Requires: texlive-base texlive-kpathsea -Provides: tex(perltex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-perltex +%package -n %{shortname}-perltex +Version: svn52162 +Provides: texlive-perltex = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-perltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-bin < 7:20170520 +Provides: tex-perltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-perltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-perltex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Define LaTeX macros in terms of Perl code +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(perltex.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-perltex PerlTeX is a combination Perl script (perltex.pl) and LaTeX2e package (perltex.sty) that, together, give the user the ability to define LaTeX macros in terms of Perl code. Once defined, a @@ -4425,51 +6060,60 @@ provided is a switch to generate a PerlTeX-free, document- specific, noperltex.sty that is useful when distributing a document to places where PerlTeX is not available. -%package -n texlive-petri-nets -Provides: tex-petri-nets = %{epoch}:20210325-%{release} -Provides: texlive-petri-nets-bin = %{epoch}:20210325-%{release} -Provides: tex-petri-nets-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-petri-nets-bin < 7:20180414 -Provides: tex-petri-nets-doc = %{epoch}:20210325-%{release} -Provides: texlive-petri-nets-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-petri-nets-doc < 7:20180414 -License: GPL+ -Summary: A set of TeX/LaTeX packages for drawing Petri nets -Requires: texlive-base texlive-kpathsea -Provides: tex(pndraw.sty) = %{epoch}:20210325-%{release} -Provides: tex(pndraw.tex) = %{epoch}:20210325-%{release} -Provides: tex(pnets.sty) = %{epoch}:20210325-%{release} -Provides: tex(pnets.tex) = %{epoch}:20210325-%{release} -Provides: tex(pntext.sty) = %{epoch}:20210325-%{release} -Provides: tex(pntext.tex) = %{epoch}:20210325-%{release} -Provides: tex(pnversion.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-petri-nets +%package -n %{shortname}-petri-nets +Version: svn39165 +Provides: texlive-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-petri-nets-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-bin < 7:20170520 +Provides: tex-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-petri-nets-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-petri-nets-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: A set of TeX/LaTeX packages for drawing Petri nets +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pndraw.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pndraw.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnets.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(pntext.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pnversion.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-petri-nets Petri-nets offers a set of TeX/LaTeX packages about Petri nets and related models. Three packages are available: the first allows the user to draw Petri-nets in PostScript documents; the second defines macros related to PBC, M-nets and B(PN) models; and a third that combines the other two. -%package -n texlive-pfarrei -Provides: tex-pfarrei = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-pfarrei-bin = %{epoch}:20210325-%{release} -Provides: tex-pfarrei-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pfarrei-bin < 7:20180414 -Provides: tex-pfarrei-doc = %{epoch}:20210325-%{release} -Provides: texlive-pfarrei-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pfarrei-doc < 7:20180414 -Summary: LaTeX support of pastors' and priests' work -Requires: texlive-base texlive-kpathsea -Requires: tex(ifpdf.sty) tex(pdfpages.sty) -Requires: tex(keyval.sty) -Provides: tex(a5toa4.tex) = %{epoch}:20210325-%{release} -Provides: tex(pfarrei.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pfarrei +%package -n %{shortname}-pfarrei +Version: svn31934 +Provides: texlive-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-pfarrei-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-bin < 7:20170520 +Provides: tex-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pfarrei-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pfarrei-doc < 7:20170520 +License: LPPL-1.3c +Summary: LaTeX support of pastors' and priests' work +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifpdf.sty) +Requires: tex(pdfpages.sty) +Requires: tex(keyval.sty) +Provides: tex(a5toa4.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(pfarrei.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pfarrei In "Die TeXnische Komodie" (issue 1/2013) Christian Justen described his use of LaTeX in his work as priest (similar requirements may be encountered in the work of pastors and @@ -4478,37 +6122,46 @@ onto A4 landscape paper, either side-by-side or as a booklet. Justen made two bash scripts for this job; the package provides one texlua script for both requirements. -%package -n texlive-pkfix -Provides: tex-pkfix = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: tex-pkfix-bin = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-bin < 7:20180414 -Provides: tex-pkfix-doc = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-doc < 7:20180414 -Summary: Replace pk fonts in PostScript with Type 1 fonts -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pkfix +%package -n %{shortname}-pkfix +Version: svn26032 +Provides: texlive-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-bin < 7:20170520 +Provides: tex-pkfix-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-doc < 7:20170520 +License: LPPL-1.3c +Summary: Replace pk fonts in PostScript with Type 1 fonts +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix The perl script pkfix looks for DVIPSBitmapFont comments in PostScript files, generated by 'not too old' dvips, and replaces them by type 1 versions of the fonts, if possible. -%package -n texlive-pkfix-helper -Provides: tex-pkfix-helper = %{epoch}:20210325-%{release} -Provides: tex-pkfix-helper-bin = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-helper-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-helper-bin < 7:20180414 -Provides: tex-pkfix-helper-doc = %{epoch}:20210325-%{release} -Provides: texlive-pkfix-helper-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pkfix-helper-doc < 7:20180414 -Summary: Make PostScript files accessible to pkfix -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pkfix-helper +%package -n %{shortname}-pkfix-helper +Version: svn56061 +Provides: texlive-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper = %{epoch}:%{source_date}-%{release} +Provides: tex-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-bin < 7:20170520 +Provides: tex-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pkfix-helper-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pkfix-helper-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make PostScript files accessible to pkfix +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pkfix-helper Pkfix is a useful utility for replacing resolution-dependent bitmapped fonts in a dvips-produced PostScript file with the corresponding resolution-independent vector fonts. @@ -4522,61 +6175,70 @@ processing by pkfix. pkfix-helper can sometimes process documents fully autonomously but does require the user to verify and, if needed, correct its decisions. -%package -n texlive-pmx -Provides: tex-pmx = %{epoch}:20210325-%{release} tex-pmx-bin = %{epoch}:20210325-%{release} -Provides: texlive-pmx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmx-bin < 7:20180414 -Provides: tex-pmx-doc = %{epoch}:20210325-%{release} -Provides: texlive-pmx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmx-doc < 7:20180414 -License: GPLv2+ -Summary: Preprocessor for MusiXTeX -Requires: texlive-base texlive-kpathsea -Provides: tex(pmx.tex) = %{epoch}:20210325-%{release} - -%description -n texlive-pmx -PMX is a preprocessor for MusiXTeX. It builds the TeX input -file from a file in a much simpler language, making most of the -layout decisions by itself. An auxiliary program makes single- -player parts from a multi-player score. For proof-listening, -PMX can make a MIDI file of your score. The present version -requires at least version 1.15 of MusiXTeX, running on an e-tex- -enhanced TeX system. - -%package -n texlive-pmxchords -Provides: tex-pmxchords = %{epoch}:20210325-%{release} -Provides: tex-pmxchords-bin = %{epoch}:20210325-%{release} -Provides: texlive-pmxchords-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmxchords-bin < 7:20180414 -Provides: tex-pmxchords-doc = %{epoch}:20210325-%{release} -Provides: texlive-pmxchords-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pmxchords-doc < 7:20180414 -License: GPLv2+ -Summary: Produce chord information to go with pmx output -Requires: texlive-base texlive-kpathsea -Provides: tex(chords.tex) = %{epoch}:20210325-%{release} -Provides: tex(chordsCZ.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pmxchords +%package -n %{shortname}-pmx +Version: svn65926 +Provides: texlive-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx = %{epoch}:%{source_date}-%{release} +Provides: tex-pmx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-bin < 7:20170520 +Provides: tex-pmx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmx-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Preprocessor for MusiXTeX +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(pmx.tex) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-pmx +PMX provides a preprocessor for MusiXTeX. pmxab builds a TeX +input file based on a .pmx input file in a much simpler +language, making most of the layout decisions by itself. It has +most of MusiXTeX's functionality, but it also permits in-line +TeX to give access to virtually all of MusiXTeX. For +proof-listening, pmxab will make a MIDI file of your score. +scor2prt is an auxiliary program that makes parts from a score. + +%package -n %{shortname}-pmxchords +Version: svn39249 +Provides: texlive-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords = %{epoch}:%{source_date}-%{release} +Provides: tex-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-bin < 7:20170520 +Provides: tex-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pmxchords-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pmxchords-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Produce chord information to go with pmx output +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(chords.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(chordsCZ.tex) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-pmxchords The bundle supplements pmx, providing the means of typesetting chords above the notes of a score. The bundle contains: macros for typing the chords; a Lua script to transpose chord macros to the required key signature; and support scripts for common requirements. -# No psutils for you today! -%if 0 -%package -n texlive-psutils -Provides: tex-psutils = %{epoch}:20210325-%{release} -Provides: tex-psutils-bin = %{epoch}:20210325-%{release} -Provides: texlive-psutils-bin = %{epoch}:20210325-%{release} -License: psutils -Summary: The TeXLive fork of the PS Utilities -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-psutils +%if %{without psutils} +%package -n %{shortname}-psutils +Version: svn61719 +Provides: texlive-psutils = %{epoch}:%{source_date}-%{release} +Provides: tex-psutils = %{epoch}:%{source_date}-%{release} +Provides: tex-psutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-psutils-bin = %{epoch}:%{source_date}-%{release} +License: psutils +Summary: The TeXLive fork of the PS Utilities +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-psutils Utilities for manipulating PostScript documents. Page selection and rearrangement are supported, including arrangement into signatures for booklet printing, and page merging for n-up printing. @@ -4585,20 +6247,24 @@ This package contains a fork of the psutils binaries adjusted for TexLive. All of the standard binaries have been namespaced with a "tl-" prefix. %endif -%package -n texlive-pst2pdf -Provides: tex-pst2pdf = %{epoch}:20210325-%{release} -Provides: tex-pst2pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-pst2pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst2pdf-bin < 7:20180414 -Provides: tex-pst2pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-pst2pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst2pdf-doc < 7:20180414 -License: GPLv2+ -Summary: A script to compile pstricks documents via pdftex -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-pst2pdf +%package -n %{shortname}-pst2pdf +Version: svn56172 +Provides: texlive-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-bin < 7:20170520 +Provides: tex-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst2pdf-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A script to compile pstricks documents via pdftex +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-pst2pdf The script extracts the preamble of the document and runs all \begin{postscript}...\end{postscript} \begin{pspicture}...\end{pspicture} and @@ -4608,22 +6274,31 @@ PNG and PDF files of these snippets. In a final PDFLaTeX run the script replaces the environments with \includegraphics to include the processed snippets. -%package -n texlive-pst-pdf -Provides: tex-pst-pdf = %{epoch}:20210325-%{release} -Provides: tex-pst-pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-pst-pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst-pdf-bin < 7:20180414 -Provides: tex-pst-pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-pst-pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pst-pdf-doc < 7:20180414 -Summary: Make PDF versions of graphics by processing between runs -Requires: texlive-base texlive-kpathsea -Requires: tex(graphicx.sty) tex(pstricks.sty) -Requires: tex(environ.sty) -Provides: tex(pst-pdf.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pst-pdf +%package -n %{shortname}-pst-pdf +Version: svn56622 +Provides: texlive-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-bin < 7:20170520 +Provides: tex-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pst-pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pst-pdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make PDF versions of graphics by processing between runs +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(graphicx.sty) +Requires: tex(pstricks.sty) +Requires: tex(environ.sty) +Requires: tex(preview.sty) +Requires: texlive-iftex +Requires: tex(luatex85.sty) +Provides: tex(pst-pdf.sty) = %{epoch}:%{source_date}-%{release} +# shell +BuildArch: noarch + +%description -n %{shortname}-pst-pdf The package pst-pdf simplifies the use of graphics from PSTricks and other PostScript code in PDF documents. As in building a bibliography with BibTEX, additional external @@ -4633,14 +6308,16 @@ material. In the final document these contents will be inserted instead of the original PostScript code. The package works with pstricks and requires a recent version of the preview package. -%package -n texlive-ps2eps -Provides: tex-ps2eps = %{epoch}:20210325-%{release} -License: GPL+ -Summary: Produce Encapsulated PostScript from PostScript -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-ps2eps +Version: svn62856 +Provides: texlive-ps2eps = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2eps = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: Produce Encapsulated PostScript from PostScript +Requires: texlive-base +Requires: texlive-kpathsea -%description -n texlive-ps2eps +%description -n %{shortname}-ps2eps Produce Encapsulated PostScript Files (EPS/EPSF) from a one-page PostScript document, or any PostScript document. A correct Bounding Box is calculated for the EPS files and some @@ -4657,77 +6334,306 @@ dpi to get the correct bounding box. Included in the distribution is the bbox program, an application to produce Bounding Box values for rawppm or rawpbm format files. -%package -n texlive-ps2pk -Provides: tex-ps2pk = %{epoch}:20210325-%{release} -Provides: tex-ps2pk-bin = %{epoch}:20210325-%{release} -Provides: texlive-ps2pk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pk-bin < 7:20180414 -Provides: texlive-ps2pkm = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pkm < 7:20180414 -Provides: texlive-ps2pkm-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ps2pkm-bin < 7:20180414 -License: MIT -Summary: Generate a PK font from an Adobe Type 1 font -Requires: texlive-base texlive-kpathsea - -%description -n texlive-ps2pk +%package -n %{shortname}-ps2pk +Version: svn66186 +Provides: texlive-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk = %{epoch}:%{source_date}-%{release} +Provides: tex-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ps2pk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pk-bin < 7:20170520 +Provides: texlive-ps2pkm = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm < 7:20170520 +Provides: texlive-ps2pkm-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ps2pkm-bin < 7:20170520 +License: MIT +Summary: Generate a PK font from an Adobe Type 1 font +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-ps2pk Generates a PK file from an Adobe Type 1 font. PK fonts are (or used to be) valuable in enabling previewers to view documents generated that use Type 1 fonts. The program makes use of code donated to the X consortium by IBM. -%package -n texlive-ptex -Provides: tex-ptex = %{epoch}:20210325-%{release} tex-ptex-bin = %{epoch}:20210325-%{release} -Provides: texlive-ptex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-bin < 7:20180414 -Provides: tex-ptex-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-doc < 7:20180414 -Provides: texlive-platex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-platex-bin < 7:20180414 -License: BSD -Summary: A TeX system for publishing in Japanese -Requires: texlive-adobemapping texlive-base texlive-cm -Requires: texlive-hyph-utf8 texlive-ipaex texlive-etex -Requires: texlive-japanese texlive-japanese-otf texlive-hyphen-base -Requires: texlive-kpathsea texlive-latex -Requires: texlive-ptex-base texlive-ptex-fonts -Requires: texlive-plain texlive-tex -Requires: tex(oldlfont.sty) tex(shortvrb.sty) +%package -n %{shortname}-ptex +Version: svn66186 +Provides: texlive-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-bin < 7:20170520 +Provides: tex-ptex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-doc < 7:20170520 +Provides: texlive-platex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-platex-bin < 7:20170520 +License: BSD-3-Clause +Summary: A TeX system for publishing in Japanese +Requires: texlive-adobemapping +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-latex +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-ptex-fonts +Requires: texlive-tex +Requires: tex(oldlfont.sty) +Requires: tex(shortvrb.sty) Requires(post,postun): coreutils -Provides: tex(morisawa.map) = %{epoch}:20210325-%{release} -%description -n texlive-ptex +%description -n %{shortname}-ptex PTeX adds features related to vertical writing, and deals with -other problems in typesetting Japanese. A set of additions to a -TEXMF tree, for use with PTeX, may be found in package PTeX- -texmf. PTeX is distributed as WEB change files. - -%package -n texlive-ptex-fontmaps -Provides: tex-ptex-fontmaps = %{epoch}:20210325-%{release} -Provides: tex-ptex-fontmaps = %{epoch}:20210325-%{release} -Provides: texlive-ptex-fontmaps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-fontmaps-bin < 7:20180414 -Provides: tex-ptex-fontmaps-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex-fontmaps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex-fontmaps-doc < 7:20180414 -Provides: tex-jfontmaps = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps <= 6:svn40613 -Provides: tex-jfontmaps-bin = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 -Provides: tex-jfontmaps-doc = %{epoch}:20210325-%{release} -Provides: texlive-jfontmaps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 -License: GPLv3 -Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex -Requires: texlive-arphic-ttf texlive-baekmuk -Requires: texlive-base texlive-ipaex -Requires: texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ptex-fontmaps +other problems in typesetting Japanese. A manual (in both +Japanese and English) is distributed as package pTeX-manual. + +%package -n %{shortname}-ptex-fontmaps +Version: svn65953 +Provides: texlive-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex-fontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-bin < 7:20170520 +Provides: tex-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex-fontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex-fontmaps-doc < 7:20170520 +Provides: tex-jfontmaps = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps <= 6:svn40613 +Provides: tex-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-bin <= 6:svn29848.0 +Provides: tex-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-jfontmaps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-jfontmaps-doc <= 6:svn40613 +License: GPL-3.0-only +Summary: Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex +Requires: texlive-arphic-ttf +Requires: texlive-baekmuk +Requires: texlive-base +Requires: texlive-ipaex +Requires: texlive-kpathsea +Provides: tex(otf-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-apple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-baekmuk.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-solaris.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ko-unfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-fandol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-founder.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-dynacomware.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-ms-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-tc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-up-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(otf-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-haranoaji-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-pron-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-ex-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noEmbed-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-osx-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ptex-yu-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-bizud.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-canon.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-haranoaji-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-pron-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino-pron.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-hiragino.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ipa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ipaex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-apple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-baekmuk.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-solaris.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ko-unfonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-kozuka.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-ex-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo-ex.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-moga-mobo.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-pr6n-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa-pr6n.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-morisawa.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noEmbed-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-fandol.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-founder.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-ms-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-otc-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-adobe.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-arphic.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-cjkunifonts-ttf.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-cjkunifonts.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-dynacomware.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-haranoaji.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-ms-win10.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-ms.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noEmbed.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noto-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-noto.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-sourcehan-otc.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-tc-sourcehan.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-ume.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-osx-04.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-osx.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-win.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(uptex-yu-win10.map) = %{epoch}:%{source_date}-%{release} +# shell and perl +BuildArch: noarch + +%description -n %{shortname}-ptex-fontmaps This package provides font maps and setup tools for Japanese, Korean, Traditional Chinese, and Simplified Chinese. It is the successor of the jfontmaps package. The files in this package @@ -4735,39 +6641,48 @@ contain font maps for dvipdfmx to make various Japanese/Chinese/Korean fonts available for (u)ptex and related programs and formats. -%package -n texlive-ptex2pdf -Provides: tex-ptex2pdf = %{epoch}:20210325-%{release} -Provides: tex-ptex2pdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-ptex2pdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex2pdf-bin < 7:20180414 -Provides: tex-ptex2pdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-ptex2pdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ptex2pdf-doc < 7:20180414 -License: GPLv2+ -Summary: Convert Japanese TeX documents to PDF -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-ptex2pdf +%package -n %{shortname}-ptex2pdf +Version: svn65953 +Provides: texlive-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf = %{epoch}:%{source_date}-%{release} +Provides: tex-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-bin < 7:20170520 +Provides: tex-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ptex2pdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ptex2pdf-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: Convert Japanese TeX documents to PDF +Requires: texlive-base +Requires: texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-ptex2pdf The Lua script provides system-independent support of Japanese typesetting engines in TeXworks. As TeXworks typesetting setup does not allow for multistep processing, this script runs one of the ptex-based programs (ptex, uptex, eptex, platex, uplatex) followed by dvipdfmx. -%package -n texlive-purifyeps -Provides: tex-purifyeps = %{epoch}:20210325-%{release} -Provides: tex-purifyeps-bin = %{epoch}:20210325-%{release} -Provides: texlive-purifyeps-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-purifyeps-bin < 7:20180414 -Provides: tex-purifyeps-doc = %{epoch}:20210325-%{release} -Provides: texlive-purifyeps-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-purifyeps-doc < 7:20180414 -Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-purifyeps +%package -n %{shortname}-purifyeps +Version: svn29725 +Provides: texlive-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps = %{epoch}:%{source_date}-%{release} +Provides: tex-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-bin < 7:20170520 +Provides: tex-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-purifyeps-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-purifyeps-doc < 7:20170520 +License: LPPL-1.3c +Summary: Make EPS work with both LaTeX/dvips and pdfLaTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-purifyeps While pdfLaTeX has a number of nice features, its primary shortcoming relative to standard LaTeX+dvips is that it is unable to read ordinary Encapsulated PostScript (EPS) files, @@ -4778,51 +6693,69 @@ LaTeX2e graphics packages can parse MetaPost-produced EPS directly. Hence, purifyeps need only convert an arbitrary EPS file into the same stylized format that MetaPost outputs. -%package -n texlive-pygmentex -Provides: tex-pygmentex = %{epoch}:20210325-%{release} -License: BSD-3-Clause -Provides: tex-pygmentex-bin = %{epoch}:20210325-%{release} -Provides: texlive-pygmentex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pygmentex-bin < 7:20180414 -Provides: tex-pygmentex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pygmentex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-doc < 7:20180414 -Summary: Use Pygments to format code listings in documents -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyvrb.sty) tex(color.sty) -Requires: tex(ifthen.sty) tex(caption.sty) -Requires: tex(pgfkeys.sty) tex(efbox.sty) -Requires: tex(mdframed.sty) tex(fvextra.sty) -Provides: tex(pygmentex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pygmentex +%package -n %{shortname}-pygmentex +Version: svn64131 +Provides: texlive-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex = %{epoch}:%{source_date}-%{release} +Provides: tex-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pygmentex-bin < 7:20170520 +Provides: tex-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pygmentex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Use Pygments to format code listings in documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(color.sty) +Requires: tex(ifthen.sty) +Requires: tex(caption.sty) +Requires: tex(pgfkeys.sty) +Requires: tex(efbox.sty) +Requires: tex(mdframed.sty) +Requires: tex(fvextra.sty) +Requires: tex(shellesc.sty) +Provides: tex(pygmentex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pygmentex PygmenTeX is a Python-based LaTeX package that can be used for typesetting code listings in a LaTeX document using Pygments. Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. -%package -n texlive-pythontex -Provides: tex-pythontex = %{epoch}:20210325-%{release} -License: BSD-3-Clause and LPPL-1.3c -Provides: tex-pythontex-bin = %{epoch}:20210325-%{release} -Provides: texlive-pythontex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-bin < 7:20180414 -Provides: tex-pythontex-doc = %{epoch}:20210325-%{release} -Provides: texlive-pythontex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-pythontex-doc < 7:20180414 -Summary: Run Python from within a document, typesetting the results -Requires: texlive-base texlive-kpathsea -Requires: tex(fancyvrb.sty) tex(etex.sty) -Requires: tex(etoolbox.sty) tex(xstring.sty) -Requires: tex(pgfopts.sty) tex(newfloat.sty) -Requires: tex(currfile.sty) tex(xcolor.sty) -Requires: tex(upquote.sty) -Provides: tex(pythontex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-pythontex +%package -n %{shortname}-pythontex +Version: svn59514 +Provides: texlive-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex = %{epoch}:%{source_date}-%{release} +Provides: tex-pythontex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-bin < 7:20170520 +Provides: tex-pythontex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-pythontex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-pythontex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Run Python from within a document, typesetting the results +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(etex.sty) +Requires: tex(etoolbox.sty) +Requires: tex(xstring.sty) +Requires: tex(pgfopts.sty) +Requires: tex(newfloat.sty) +Requires: tex(currfile.sty) +Requires: tex(xcolor.sty) +Requires: tex(upquote.sty) +Requires: tex(fvextra.sty) +Provides: tex(pythontex.sty) = %{epoch}:%{source_date}-%{release} +# python +BuildArch: noarch + +%description -n %{shortname}-pythontex The package allows you to enter Python code within a LaTeX document, execute the code, and access its output in the original document. Python code is only executed when it has @@ -4839,39 +6772,51 @@ which all Python code has been replaced by its output. This is useful for journal submissions, sharing documents, and conversion to other formats. -%package -n texlive-rubik -Provides: tex-rubik = %{epoch}:20210325-%{release} -License: LPPL-1.3c and GPL-1.0-or-later -Provides: tex-rubik-bin = %{epoch}:20210325-%{release} -Provides: texlive-rubik-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-rubik-bin < 7:20180414 -Provides: tex-rubik-doc = %{epoch}:20210325-%{release} -Provides: texlive-rubik-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-rubik-doc < 7:20180414 -Summary: Document Rubik cube configurations and rotation sequences -Requires: texlive-base texlive-kpathsea -Requires: tex(tikz.sty) tex(fancyvrb.sty) -Provides: tex(rubikcube.sty) = %{epoch}:20210325-%{release} -Provides: tex(rubikrotation.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-rubik +%package -n %{shortname}-rubik +Version: svn46791 +Provides: texlive-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik = %{epoch}:%{source_date}-%{release} +Provides: tex-rubik-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-bin < 7:20170520 +Provides: tex-rubik-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-rubik-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-rubik-doc < 7:20170520 +License: LPPL-1.3c +Summary: Document Rubik cube configurations and rotation sequences +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(fancyvrb.sty) +Requires: tex(forarray.sty) +Requires: tex(ifluatex.sty) +Requires: tex(ifthen.sty) +Requires: tex(shellesc.sty) +Requires: tex(tikz.sty) +Provides: tex(rubikcube.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(rubikrotation.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-rubik The bundle provides two packages: rubikcube provides commands for typesetting Rubik cubes and their transformations; and rubikrotation which can process a sequence of Rubik rotation moves, with the help of a Perl package executed via \write18 (shell escape) commands. -%package -n texlive-seetexk -Provides: tex-seetexk = %{epoch}:20210325-%{release} -Provides: tex-seetexk-bin = %{epoch}:20210325-%{release} -Provides: texlive-seetexk-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-seetexk-bin < 7:20180414 -License: MIT -Summary: Utilities for manipulating DVI files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-seetexk +%package -n %{shortname}-seetexk +Version: svn57972 +Provides: texlive-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk = %{epoch}:%{source_date}-%{release} +Provides: tex-seetexk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-seetexk-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-seetexk-bin < 7:20170520 +License: MIT +Summary: Utilities for manipulating DVI files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-seetexk The collection comprises: dvibook, which will rearrange the pages of a DVI file into 'signatures' as used when printing a book; dviconcat, for concatenating pages of DVI file(s); @@ -4882,12 +6827,14 @@ manipulating the files, from the old SeeTeX project. The utilities are provided as C source with Imakefiles, and an MS- DOS version of dvibook is also provided. -%package -n texlive-spix -Summary: Yet another TeX compilation tool: simple, human readable, no option, no magic -License: GPLv3+ -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-spix +Version: svn65050 +Provides: texlive-spix = %{epoch}:%{source_date}-%{release} +Summary: Yet another TeX compilation tool: simple, human readable, no option, no magic +License: GPL-3.0-or-later +Requires: texlive-base texlive-kpathsea -%description -n texlive-spix +%description -n %{shortname}-spix SpiX offers a way to store information about the compilation process for a tex file inside the tex file itself. Just write the commands as comments in the tex files, and SpiX will @@ -4896,22 +6843,26 @@ file (so that you are not missing some piece of information that is located somewhere else), in a human-readable format (no need to know SpiX to understand it). -%package -n texlive-splitindex -Provides: tex-splitindex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-splitindex-bin = %{epoch}:20210325-%{release} -Provides: texlive-splitindex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-splitindex-bin < 7:20180414 -Provides: tex-splitindex-doc = %{epoch}:20210325-%{release} -Provides: texlive-splitindex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-splitindex-doc < 7:20180414 -Summary: Unlimited number of indexes -Requires: texlive-base texlive-kpathsea -Provides: tex(splitindex.tex) = %{epoch}:20210325-%{release} -Provides: tex(splitidx.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-splitindex +%package -n %{shortname}-splitindex +Version: svn39766 +Provides: texlive-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex = %{epoch}:%{source_date}-%{release} +Provides: tex-splitindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-bin < 7:20170520 +Provides: tex-splitindex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-splitindex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-splitindex-doc < 7:20170520 +License: LPPL-1.3c +Summary: Unlimited number of indexes +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(splitindex.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(splitidx.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-splitindex SplitIndex consists of a LaTeX package, splitidx, and a small program, splitindex. The package may be used to produce one index or several indexes. Without splitindex (for example, @@ -4922,20 +6873,24 @@ single file \jobname.idx and the program splits that file into several raw index files and calls your favorite index processor for each of the files. -%package -n texlive-srcredact -Provides: tex-srcredact = %{epoch}:20210325-%{release} -Provides: tex-srcredact-bin = %{epoch}:20210325-%{release} -Provides: texlive-srcredact-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-srcredact-bin < 7:20180414 -Provides: tex-srcredact-doc = %{epoch}:20210325-%{release} -Provides: texlive-srcredact-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-srcredact-doc < 7:20180414 -License: GPLv2+ -Summary: A tool for redacting sources -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-srcredact +%package -n %{shortname}-srcredact +Version: svn38710 +Provides: texlive-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact = %{epoch}:%{source_date}-%{release} +Provides: tex-srcredact-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-bin < 7:20170520 +Provides: tex-srcredact-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-srcredact-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-srcredact-doc < 7:20170520 +License: GPL-2.0-or-later +Summary: A tool for redacting sources +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-srcredact This package provides a tool to keep a master source, consisting of different "chunks" intended for different audiences. The tool allows to extract the versions intended for @@ -4944,20 +6899,24 @@ of these versions into the master document. This work was commissioned by the Consumer Financial Protection Bureau, United States Treasury. -%package -n texlive-sty2dtx -Provides: tex-sty2dtx = %{epoch}:20210325-%{release} -Provides: tex-sty2dtx-bin = %{epoch}:20210325-%{release} -Provides: texlive-sty2dtx-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-sty2dtx-bin < 7:20180414 -Provides: tex-sty2dtx-doc = %{epoch}:20210325-%{release} -Provides: texlive-sty2dtx-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-sty2dtx-doc < 7:20180414 -License: GPLv3+ -Summary: Create a .dtx file from a .sty file -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-sty2dtx +%package -n %{shortname}-sty2dtx +Version: svn64967 +Provides: texlive-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx = %{epoch}:%{source_date}-%{release} +Provides: tex-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-bin < 7:20170520 +Provides: tex-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-sty2dtx-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-sty2dtx-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Create a .dtx file from a .sty file +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-sty2dtx The package provides a Perl script that converts a .sty file (LaTeX package) to .dtx format (documented LaTeX source), by surrounding macro definitions with macro and macrocode @@ -4972,25 +6931,31 @@ file from 'dtxtut' is used. User level macros are added automatically to the 'Usage' section of the .dtx file. A corresponding .ins file can be generated as well. -%package -n texlive-svn-multi -Provides: tex-svn-multi = %{epoch}:20210325-%{release} -License: LPPL-1.3c and GPL-3.0-or-later and GPL-3.0-only -Provides: tex-svn-multi-bin = %{epoch}:20210325-%{release} -Provides: texlive-svn-multi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-svn-multi-bin < 7:20180414 -Provides: tex-svn-multi-doc = %{epoch}:20210325-%{release} -Provides: texlive-svn-multi-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-svn-multi-doc < 7:20180414 -Summary: Subversion keywords in multi-file LaTeX documents -Requires: texlive-base texlive-kpathsea -Requires: tex(kvoptions.sty) tex(filehook.sty) -Requires: tex(currfile.sty) tex(graphics.sty) -Requires: tex(pgf.sty) -Provides: tex(svn-multi.sty) = %{epoch}:20210325-%{release} -Provides: tex(svnkw.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-svn-multi +%package -n %{shortname}-svn-multi +Version: svn64967 +Provides: texlive-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi = %{epoch}:%{source_date}-%{release} +Provides: tex-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-bin < 7:20170520 +Provides: tex-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-svn-multi-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-svn-multi-doc < 7:20170520 +License: LPPL-1.3c +Summary: Subversion keywords in multi-file LaTeX documents +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(kvoptions.sty) +Requires: tex(filehook.sty) +Requires: tex(currfile.sty) +Requires: tex(graphics.sty) +Requires: tex(pgf.sty) +Provides: tex(svn-multi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(svnkw.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-svn-multi This package lets you typeset keywords of the version control system Subversion inside your LaTeX files anywhere you like. Unlike the otherwise similar package svn the use of multiple @@ -4999,29 +6964,42 @@ uses the author's filehook and currfile packages. The package interacts with an external Perl script, to retrieve information necessary for the required output. -%package -n texlive-synctex -Provides: tex-synctex = %{epoch}:20210325-%{release} -Provides: tex-synctex-bin = %{epoch}:20210325-%{release} -Provides: texlive-synctex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-synctex-bin < 7:20180414 -Summary: synctex package -Requires: texlive-base texlive-kpathsea - -%description -n texlive-synctex -synctex package. - -%package -n texlive-tex -Provides: tex-tex = %{epoch}:20210325-%{release} tex-tex-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex-bin < 7:20180414 -License: GPL-3.0-or-later and GPL-3.0-only and OFL-1.1 and LPPL-1.3c and GPL-2.0-or-later -Summary: A sophisticated typesetting engine -Requires: texlive-base texlive-cm -Requires: texlive-hyphen-base texlive-knuth-lib -Requires: texlive-kpathsea texlive-plain +%package -n %{shortname}-synctex +Version: svn66203 +Provides: texlive-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex = %{epoch}:%{source_date}-%{release} +Provides: tex-synctex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-synctex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-synctex-bin < 7:20170520 +License: LPPL-1.3c +Summary: engine-level feature synchronizing output and source +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-synctex +SyncTeX allows navigating between the TeX source and (usually +PDF) output, in both directions, given a SyncTeX-aware front +end. It is compiled into most engines and can be enabled with +the --synctex=1 option. It is developed as part of TeX Live. + +%package -n %{shortname}-tex +Version: svn66186 +Provides: texlive-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex = %{epoch}:%{source_date}-%{release} +Provides: tex-tex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex-bin < 7:20170520 +License: Knuth-CTAN +Summary: A sophisticated typesetting engine +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain Requires(post,postun): coreutils -%description -n texlive-tex +%description -n %{shortname}-tex TeX is a typesetting system that incorporates a macro processor. A TeX source document specifies or incorporates a number of macro definitions that instruct the TeX engine how to @@ -5032,86 +7010,129 @@ suitable for TeX. TeX has been, and continues, a basis and an inspiration for several other programs, including e-TeX and PDFTeX. -%package -n texlive-tex4ebook -Provides: tex-tex4ebook = %{epoch}:20210325-%{release} -Provides: tex-tex4ebook-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex4ebook-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ebook-bin < 7:20180414 -Provides: tex-tex4ebook-doc = %{epoch}:20210325-%{release} -Provides: texlive-tex4ebook-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ebook-doc < 7:20180414 -Summary: Convertor from LaTeX to ebook formats -Requires: texlive-base texlive-kpathsea -Requires: tex(etoolbox.sty) tex(kvoptions.sty) -Requires: tex(graphicx.sty) -Provides: tex(tex4ebook.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-tex4ebook +%package -n %{shortname}-tex4ebook +Version: svn66332 +Provides: texlive-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-bin < 7:20170520 +Provides: tex-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ebook-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ebook-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convertor from LaTeX to ebook formats +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(etoolbox.sty) +Requires: tex(kvoptions.sty) +Requires: tex(graphicx.sty) +Requires: texlive-make4ht +Requires: texlive-tex4ht +Provides: tex(tex4ebook.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-tex4ebook This is a bundle of lua scripts and LaTeX packages for conversion of LaTeX files to ebook formats such as epub, mobi and epub3. tex4ht is used as conversion engine. -%package -n texlive-tex4ht -Provides: tex-tex4ht = %{epoch}:20210325-%{release} -License: LPPL-1.3a and LPPL-1.3c -Provides: tex-tex4ht-bin = %{epoch}:20210325-%{release} -Provides: texlive-tex4ht-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ht-bin < 7:20180414 -Provides: tex-tex4ht-doc = %{epoch}:20210325-%{release} -Provides: texlive-tex4ht-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tex4ht-doc < 7:20180414 -Summary: Convert (La)TeX to HTML/XML -Requires: texlive-base texlive-kpathsea -Provides: tex(m-tex4ht.tex) = %{epoch}:20210325-%{release} -Provides: tex(tex4ht.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-tex4ht +%package -n %{shortname}-tex4ht +Version: svn66530 +Provides: texlive-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht = %{epoch}:%{source_date}-%{release} +Provides: tex-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-bin < 7:20170520 +Provides: tex-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tex4ht-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tex4ht-doc < 7:20170520 +License: LPPL-1.3c +Summary: Convert (La)TeX to HTML/XML +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(m-tex4ht.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex4ht.sty) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-tex4ht A converter from TeX and LaTeX to SGML-based formats such as -(X)HTML, MathML, OpenDocument, and DocBook, providing a +(X)HTML, MathML, OpenDocument, and Docbook, providing a configurable (La)TeX-based authoring system for hypertext. -Tex4ht does not parse (La)TeX source (so that it avoids the -difficulties encountered by many other converters, arising from -the irregularity of (La)TeX syntax). Instead, Tex4ht uses -(La)TeX itself (with an extra macro package) to produce a non- -standard DVI file that it can then process. This technique -allows TeX4ht to approach the robustness characteristic of -restricted-syntax systems such as hyperlatex and gellmu. - -%package -n texlive-texcount -Provides: tex-texcount = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texcount-bin = %{epoch}:20210325-%{release} -Provides: texlive-texcount-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texcount-bin < 7:20180414 -Provides: tex-texcount-doc = %{epoch}:20210325-%{release} -Provides: texlive-texcount-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texcount-doc < 7:20180414 -Summary: Count words in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texcount +TeX4ht does not independently parse (La)TeX source (so it +avoids the difficulties encountered by many other converters, +arising from the irregularity of (La)TeX syntax). Instead, +TeX4ht uses (La)TeX itself (with myriad macro modifications) to +produce a helper DVI file that it can then process. This +technique allows TeX4ht to approach the robustness +characteristic of restricted-syntax systems such as gellmu. +Full releases of TeX4ht are no longer made, both because it is +technically difficult to do so and because their utility is +questionable. Nevertheless, TeX4ht is actively maintained. So, +current source files are held on CTAN, and updated from the +development repository frequently. Creating the myriad derived +files from them is nontrivial, and generally done with the +Makefile in development, from which the TeX4ht package in TeX +Live is updated. + +%if 0 +%package -n %{shortname}-texaccents +Summary: Convert composite accented characters to Unicode +Version: svn64447 +License: MIT +Requires: texlive-base texlive-kpathsea +Requires: snobol4 +# snobol4 +BuildArch: noarch + +%description -n %{shortname}-texaccents +This small utility, written in SNOBOL, converts the composition +of special characters to Unicode, e. g. \"{a} - a, \k{a} - a, +... +%endif + +%package -n %{shortname}-texcount +Version: svn49013 +Provides: texlive-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount = %{epoch}:%{source_date}-%{release} +Provides: tex-texcount-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-bin < 7:20170520 +Provides: tex-texcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texcount-doc < 7:20170520 +License: LPPL-1.3c +Summary: Count words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texcount TeXcount is a Perl script that counts words in the text of LaTeX files. It has rules for handling most of the common macros, and can provide colour-coded output showing which parts of the text have been counted. The package script is available as a Web service via its home page. -%package -n texlive-texdef -Provides: tex-texdef = %{epoch}:20210325-%{release} -Provides: tex-texdef-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdef-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdef-bin < 7:20180414 -Provides: tex-texdef-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdef-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdef-doc < 7:20180414 -License: GPLv3+ -Summary: Display the definitions of TeX commands -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdef +%package -n %{shortname}-texdef +Version: svn64967 +Provides: texlive-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef = %{epoch}:%{source_date}-%{release} +Provides: tex-texdef-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-bin < 7:20170520 +Provides: tex-texdef-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdef-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdef-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: Display the definitions of TeX commands +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdef The (Perl) script displays the definition of (La)TeX command sequences/macros. Various options allow the selection of the used class and package files and other things which can have @@ -5129,73 +7150,91 @@ including flavours (pdf(la)tex, lua(la)tex, xe(la)tex, ...). The flavour can be selected using an command line option or over the script name: latexdef will use LaTeX as default, etc. -%package -n texlive-texdiff -Provides: tex-texdiff = %{epoch}:20210325-%{release} -Provides: tex-texdiff-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdiff-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdiff-bin < 7:20180414 -Provides: tex-texdiff-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdiff-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdiff-doc < 7:20180414 -License: GPL+ or Artistic -Summary: Compares two (La)TeX documents to create a merged version showing changes -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdiff +%package -n %{shortname}-texdiff +Version: svn29752 +Provides: texlive-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff = %{epoch}:%{source_date}-%{release} +Provides: tex-texdiff-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-bin < 7:20170520 +Provides: tex-texdiff-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdiff-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdiff-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Compares two (La)TeX documents to create a merged version showing changes +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdiff Texdiff compares two (La)TeX documents to create a merged version showing changes, similar to that of 'Change Tracking' in some word processors. -%package -n texlive-texdirflatten -Provides: tex-texdirflatten = %{epoch}:20210325-%{release} -Provides: tex-texdirflatten-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdirflatten-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdirflatten-bin < 7:20180414 -License: GPL+ or Artistic -Summary: Collect files related to a LaTeX job in a single directory -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texdirflatten +%package -n %{shortname}-texdirflatten +Version: svn55064 +Provides: texlive-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten = %{epoch}:%{source_date}-%{release} +Provides: tex-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdirflatten-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdirflatten-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Collect files related to a LaTeX job in a single directory +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texdirflatten The Perl script parses a LaTeX file recursively, scanning all child files, and collects details of any included and other data files. These component files, are then all put into a single directory (thus "flattening" the document's directory tree). -%package -n texlive-texdoc -Provides: tex-texdoc = %{epoch}:20210325-%{release} -Provides: tex-texdoc-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdoc-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdoc-bin < 7:20180414 -Provides: tex-texdoc-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdoc-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texdoc-doc < 7:20180414 -License: GPL+ -Summary: Documentation access for TeX distributions -Requires: texlive-base texlive-kpathsea -Provides: tex(texdoc.cnf) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texdoc -TeXdoc is an application for easy access to the package -documentation of a TeX distributions (i.e., .dvi, .pdf or .ps -files on the $TEXDOCS tree). It is distributed with TeX-Live -and a derivative is distributed with miktex. - -%package -n texlive-texdoctk -Provides: tex-texdoctk = %{epoch}:20210325-%{release} -Provides: tex-texdoctk-bin = %{epoch}:20210325-%{release} -Provides: tex-texdoctk-doc = %{epoch}:20210325-%{release} -Provides: texlive-texdoctk-bin = %{epoch}:20210325-%{release} -Provides: texlive-texdoctk-doc = %{epoch}:20210325-%{release} -License: GPL+ -Summary: Easy access to package documentation -Requires: texlive-base texlive-kpathsea -Provides: tex(texdoctk.dat) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texdoctk +%package -n %{shortname}-texdoc +Version: svn66227 +Provides: texlive-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoc-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-bin < 7:20170520 +Provides: tex-texdoc-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoc-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texdoc-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Documentation access for TeX distributions +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoc.cnf) = %{epoch}:%{source_date}-%{release} +# lua and perl +BuildArch: noarch + +%description -n %{shortname}-texdoc +texdoc is a Lua script providing easy access to the +documentation in TeX Live: PDF, DVI, plain text files, and +more. Viewing and other configuration can be extensively +customized. It is distributed with TeX Live; MiKTeX provides a +program by the same name to do the same job, but its +implementation is unrelated. + +%package -n %{shortname}-texdoctk +Version: svn62186 +Provides: texlive-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-texdoctk-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texdoctk-doc = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later +Summary: Easy access to package documentation +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(texdoctk.dat) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texdoctk A Perl/Tk-based GUI for easy access to package documentation for TeX on Unix platforms; the databases it uses are based on the texmf/doc subtrees of teTeX, but database files for local @@ -5208,39 +7247,47 @@ these programs can be configured by the sysadmin or user. Now only distributed as part of TeX Live, which includes a Windows executable. -%package -n texlive-texfot -Provides: tex-texfot = %{epoch}:20210325-%{release} -Provides: tex-texfot-bin = %{epoch}:20210325-%{release} -Provides: texlive-texfot-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texfot-bin < 7:20180414 -Provides: tex-texfot-doc = %{epoch}:20210325-%{release} -Provides: texlive-texfot-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texfot-doc < 7:20180414 -License: Public Domain -Summary: Filter clutter from the output of a TeX run -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texfot +%package -n %{shortname}-texfot +Version: svn65545 +Provides: texlive-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot = %{epoch}:%{source_date}-%{release} +Provides: tex-texfot-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-bin < 7:20170520 +Provides: tex-texfot-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texfot-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texfot-doc < 7:20170520 +License: LicenseRef-Fedora-Public-Domain +Summary: Filter clutter from the output of a TeX run +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texfot The package provides a small Perl script to filter the online output from a TeX run, attempting to show only those messages which probably deserve some change in the source. The TeX invocation itself need not change. -%package -n texlive-texliveonfly -Provides: tex-texliveonfly = %{epoch}:20210325-%{release} -Provides: tex-texliveonfly-bin = %{epoch}:20210325-%{release} -Provides: texlive-texliveonfly-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texliveonfly-bin < 7:20180414 -Provides: tex-texliveonfly-doc = %{epoch}:20210325-%{release} -Provides: texlive-texliveonfly-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texliveonfly-doc < 7:20180414 -License: GPLv3+ -Summary: On-the-fly download of missing TeX live packages -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texliveonfly +%package -n %{shortname}-texliveonfly +Version: svn55777 +Provides: texlive-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly = %{epoch}:%{source_date}-%{release} +Provides: tex-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-bin < 7:20170520 +Provides: tex-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texliveonfly-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texliveonfly-doc < 7:20170520 +License: GPL-3.0-or-later +Summary: On-the-fly download of missing TeX live packages +Requires: texlive-base +Requires: texlive-kpathsea +# python +BuildArch: noarch + +%description -n %{shortname}-texliveonfly The package provides a script that performs 'on the fly' downloads of missing packages, while a document is being compiled. (This feature is already available in the MikTeX @@ -5250,107 +7297,188 @@ your (LaTeX) compilation command with texliveonfly.py file.tex synctex=1 -interaction=nonstopmode", which may all be changed). The script is designed to work on Linux distributions. -%package -n texlive-texlive-en -Provides: tex-texlive-en = %{epoch}:20210325-%{release} -Provides: tex-texlive-en-doc = %{epoch}:20210325-%{release} -Provides: texlive-texlive-en-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive-en-doc < 7:20180414 -Summary: TeX Live manual (English) -Requires: texlive-base texlive-kpathsea -BuildArch: noarch +%package -n %{shortname}-texlive-en +Version: svn66572 +Provides: texlive-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-en-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-en-doc < 7:20170520 +License: LPPL-1.3c +Summary: TeX Live manual (English) +Requires: texlive-base +Requires: texlive-kpathsea +BuildArch: noarch -%description -n texlive-texlive-en +%description -n %{shortname}-texlive-en TeX Live manual (English). -%package -n texlive-texlive-scripts -Provides: tex-texlive-scripts = %{epoch}:20210325-%{release} -Provides: texlive-texlive-scripts-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive-scripts-bin < 7:20180414 -License: GPL-2.0-only and GPL-2.0-or-later -Summary: TeX Live infrastructure programs -Requires: texlive-base texlive-kpathsea -Requires: texlive-texlive.infra -Requires: texlive-gsftopk -Provides: texlive-tetex = %{epoch}:20210325-%{release} -# oe latest version is 20180414 -Obsoletes: texlive-tetex < 7:20200327 -BuildArch: noarch - -%description -n texlive-texlive-scripts +%package -n %{shortname}-texlive-scripts +Version: svn66584 +Provides: texlive-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-scripts = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive-scripts-bin < 7:20170520 +License: LPPL-1.3c +Summary: TeX Live infrastructure programs +Requires: texlive-base +Requires: texlive-kpathsea = %{epoch}:%{source_date}-%{release} +Requires: texlive-texlive.infra +Requires: texlive-gsftopk +Provides: tex(09fbbfac.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(0ef0afca.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(10037936.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(1b6d048e.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(71414f53.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(74afc74c.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(aae443f0.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(b6a4d7c7.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(base14flags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(bbad153f.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(d9b29452.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvipdfm35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvips35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(f7b6d320.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(mathpple.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(mtex.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(pdftex35.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(ps2pk35.map) = %{epoch}:%{source_date}-%{release} +Provides: texlive-tetex = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tetex < 7:20200327 +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive-scripts Includes install-tl, tl-portable, rungs, etc.; not needed for tlmgr to run but still ours. Not included in tlcritical. -%package -n texlive-texlive-scripts-extra -Provides: tex-texlive-scripts-extra = %{epoch}:20210325-%{release} -Provides: texlive-texlive-scripts-extra-bin = %{epoch}:20210325-%{release} -License: GPL-1.0-or-later -Summary: TeX Live scripts -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-texlive.infra -Obsoletes: texlive-texconfig < 7:20180414 -Obsoletes: texlive-pstools < 7:20180414 -Obsoletes: texlive-pdftools < 7:20180414 +%package -n %{shortname}-texlive-scripts-extra +Version: svn62517 +Provides: texlive-texlive-scripts-extra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive-scripts-extra = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive-scripts-extra-bin = %{epoch}:%{source_date}-%{release} +License: GPL-1.0-or-later AND LPPL-1.3c AND LicenseRef-Fedora-Public-Domain +Summary: TeX Live scripts +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-texlive.infra +Obsoletes: texlive-texconfig < 7:20200327 +Obsoletes: texlive-pstools < 7:20200327 +Obsoletes: texlive-pdftools < 7:20200327 +# perl and shell BuildArch: noarch -%description -n texlive-texlive-scripts-extra +%description -n %{shortname}-texlive-scripts-extra Miscellaneous scripts maintained as part of TeX Live, but not important for the infrastructure. Thus, this is not part of scheme-infraonly or tlcritical, just a normal package. -%package -n texlive-texlive.infra -Provides: tex-texlive.infra = %{epoch}:20210325-%{release} -License: GPL-2.0-only and GPL-2.0-or-later and Artistic-1.0-Perl OR GPL-1.0-or-later -Provides: tex-texlive.infra-bin = %{epoch}:20210325-%{release} -Provides: texlive-texlive.infra-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive.infra-bin < 7:20180414 -Provides: tex-texlive.infra-doc = %{epoch}:20210325-%{release} -Provides: texlive-texlive.infra-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texlive.infra-doc < 7:20180414 -Summary: Basic TeX Live infrastructure -Requires: texlive-base texlive-kpathsea -Provides: tex(fmtutil-hdr.cnf) = %{epoch}:20210325-%{release} -Provides: tex(updmap-hdr.cfg) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texlive.infra -This package contains the files needed to get the TeX Live -tools (notably tlmgr) running: perl modules, xz binaries, plus -(sometimes) tar and wget. These files end up in the standalone -install packages, and in the tlcritical repository. - -%package -n texlive-texloganalyser -Provides: tex-texloganalyser = %{epoch}:20210325-%{release} -Provides: tex-texloganalyser-bin = %{epoch}:20210325-%{release} -Provides: texlive-texloganalyser-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texloganalyser-bin < 7:20180414 -Provides: tex-texloganalyser-doc = %{epoch}:20210325-%{release} -Provides: texlive-texloganalyser-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texloganalyser-doc < 7:20180414 -License: BSD -Summary: Analyse TeX logs -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-texloganalyser +%package -n %{shortname}-texlive.infra +Version: svn66512 +Provides: texlive-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra = %{epoch}:%{source_date}-%{release} +Provides: tex-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-bin < 7:20170520 +Provides: tex-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlive.infra-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texlive.infra-doc < 7:20170520 +License: LPPL-1.3c +Summary: Basic TeX Live infrastructure +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(fmtutil-hdr.cnf) = %{epoch}:%{source_date}-%{release} +Provides: tex(updmap-hdr.cfg) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-texlive.infra +This package contains the files needed to get tlmgr running: +perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and +various other support files. This package also represents the +tlcritical recovery scripts. The standalone installer is close, +but not the same; it's defined in 00texlive.installer. + +%package -n %{shortname}-texloganalyser +Version: svn54526 +Provides: texlive-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser = %{epoch}:%{source_date}-%{release} +Provides: tex-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-bin < 7:20170520 +Provides: tex-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texloganalyser-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texloganalyser-doc < 7:20170520 +License: BSD-3-Clause +Summary: Analyse TeX logs +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texloganalyser The perl script allows the user to extract (and display) elements of the log file. -%package -n texlive-texosquery -Provides: tex-texosquery = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texosquery-bin = %{epoch}:20210325-%{release} -Provides: texlive-texosquery-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texosquery-bin < 7:20180414 -Provides: tex-texosquery-doc = %{epoch}:20210325-%{release} -Provides: texlive-texosquery-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texosquery-doc < 7:20180414 -Summary: Cross-platform Java application to query OS information -Requires: texlive-base texlive-kpathsea -Requires: java-headless -BuildArch: noarch - -%description -n texlive-texosquery +%package -n %{shortname}-texlogfilter +Version: svn62792 +Provides: texlive-texlogfilter = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlogfilter-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Filter LaTeX engines output or log file +Requires: texlive-base, texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-texlogfilter +texlogfilter is a Perl script designed to filter LaTeX engines output or log +file (LaTeX, pdfLaTeX, LuaLaTeX or XeLaTeX). It reduces the LaTeX output or log +to keep only warnings and errors. The result is colorised. Options allow to +mask specific warnings, such as box or references/citations warnings. It's also +possible to add custom filter patterns. + +%package -n %{shortname}-texlogsieve +Version: svn64301 +Provides: texlive-texlogsieve = %{epoch}:%{source_date}-%{release} +Provides: texlive-texlogsieve-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: Filter and summarize LaTeX log files +Requires: texlive-base, texlive-kpathsea +# lua +BuildArch: noarch + +%description -n %{shortname}-texlogsieve +texlogsieve reads a LaTeX log file (or the standard input if no file is +specified), filters out less relevant messages, and displays a summary report. +It is a texlua script, similar in spirit to tools such as texfot, +texloganalyser, rubber-info, textlog_extract, texlogparser, and others. +Highlights: Two reports: the most important messages from the log file followed +by a summary of repeated messages, undefined references etc.; The program goes +to great lengths to correctly handle TeX line wrapping and does a much better +job at that than existing tools; Multiline messages are treated as a single +entity; Several options to control which messages should be filtered out; No +messages are accidentally removed; The summary report is currently simple, but +useful. + +%package -n %{shortname}-texosquery +Version: svn53676 +Provides: texlive-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery = %{epoch}:%{source_date}-%{release} +Provides: tex-texosquery-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-bin < 7:20170520 +Provides: tex-texosquery-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texosquery-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texosquery-doc < 7:20170520 +License: LPPL-1.3c +Summary: Cross-platform Java application to query OS information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: java-headless +# shell +BuildArch: noarch + +%description -n %{shortname}-texosquery This package provides a cross-platform Java application to query OS information designed for use in TeX's shell escape mechanism. The application can query the following: locale and @@ -5373,18 +7501,20 @@ TeX's default special characters (and some other potentially problematic characters) is temporarily changed to 12 while reading the result. -%package -n texlive-texplate -Provides: tex-texplate = %{epoch}:20210325-%{release} -Provides: tex-texplate-bin = %{epoch}:20210325-%{release} -Provides: texlive-texplate-bin = %{epoch}:20210325-%{release} -License: BSD -Summary: A tool for creating document structures based on templates -Requires: texlive-base -Requires: texlive-kpathsea +%package -n %{shortname}-texplate +Version: svn61719 +Provides: texlive-texplate = %{epoch}:%{source_date}-%{release} +Provides: tex-texplate = %{epoch}:%{source_date}-%{release} +Provides: tex-texplate-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texplate-bin = %{epoch}:%{source_date}-%{release} +License: BSD-3-Clause +Summary: A tool for creating document structures based on templates +Requires: texlive-base +Requires: texlive-kpathsea # So much java BuildArch: noarch -%description -n texlive-texplate +%description -n %{shortname}-texplate TeXplate is a tool for creating document structures based on templates. The application name is a word play on TeX and template, so the purpose seems quite obvious: we want to @@ -5395,48 +7525,52 @@ theses: the application is powerful enough to generate any text-based structure, given that a corresponding template exists. -%package -n texlive-texsis -Provides: tex-texsis = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-texsis-bin = %{epoch}:20210325-%{release} -Provides: texlive-texsis-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texsis-bin < 7:20180414 -Provides: tex-texsis-doc = %{epoch}:20210325-%{release} -Provides: texlive-texsis-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-texsis-doc < 7:20180414 -Summary: Plain TeX macros for Physicist -Requires: texlive-base -Requires: texlive-kpathsea texlive-pdftex -Requires: texlive-tex -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-knuth-lib -Requires: texlive-plain +%package -n %{shortname}-texsis +Version: svn45678 +Provides: texlive-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis = %{epoch}:%{source_date}-%{release} +Provides: tex-texsis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-bin < 7:20170520 +Provides: tex-texsis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-texsis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texsis-doc < 7:20170520 +License: LPPL-1.3c +Summary: Plain TeX macros for Physicists +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-knuth-lib +Requires: texlive-plain Requires(post,postun): coreutils -Provides: tex(TXSconts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSdcol.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSenvmt.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSeqns.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfigs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfmts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSfonts.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXShead.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSinit.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSletr.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSmacs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSmemo.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSprns.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSrefs.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSruled.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsects.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsite.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXSsymb.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXStags.tex) = %{epoch}:20210325-%{release} -Provides: tex(TXStitle.tex) = %{epoch}:20210325-%{release} -Provides: tex(texsis.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-texsis +Provides: tex(TXSconts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSdcol.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSenvmt.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSeqns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfigs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfmts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSfonts.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXShead.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSinit.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSletr.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSmemo.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSprns.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSrefs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSruled.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsects.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsite.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXSsymb.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStags.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(TXStitle.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(texsis.tex) = %{epoch}:%{source_date}-%{release} +# symlinks only +BuildArch: noarch + +%description -n %{shortname}-texsis TeXsis is a TeX macro package which provides useful features for typesetting research papers and related documents. For example, it includes support specifically for: Automatic @@ -5454,16 +7588,19 @@ constructing ruled tables. TeXsis was originally developed for physicists, but others may also find it useful. It is completely compatible with Plain TeX. -%package -n texlive-texware -Provides: tex-texware = %{epoch}:20210325-%{release} -Provides: tex-texware-bin = %{epoch}:20210325-%{release} -Provides: texlive-texware-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-texware-bin < 7:20180414 -License: Public domain -Summary: Utility programs for use with TeX -Requires: texlive-base texlive-kpathsea - -%description -n texlive-texware +%package -n %{shortname}-texware +Version: svn66186 +Provides: texlive-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware = %{epoch}:%{source_date}-%{release} +Provides: tex-texware-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-texware-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-texware-bin < 7:20170520 +License: Knuth-CTAN +Summary: Utility programs for use with TeX +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-texware Basic utitility programs, comprising: - dvitype, which converts a TeX output (DVI) file to a plain text file (see also the DVI Text Language suite); - pooltype, which converts a TeX-suite @@ -5471,23 +7608,28 @@ program's "pool" (string) file into human-readable form; and - tftopl and pltotf, which convert TeX Font Metric (TFM) file to human readable Property List (PL) files and vice versa. -%package -n texlive-thumbpdf -Provides: tex-thumbpdf = %{epoch}:20210325-%{release} -License: LPPL-1.3a -Provides: tex-thumbpdf-bin = %{epoch}:20210325-%{release} -Provides: texlive-thumbpdf-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-thumbpdf-bin < 7:20180414 -Provides: tex-thumbpdf-doc = %{epoch}:20210325-%{release} -Provides: texlive-thumbpdf-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-thumbpdf-doc < 7:20180414 -Summary: Thumbnails for pdfTeX and dvips/ps2pdf -Requires: texlive-base texlive-kpathsea -Requires: tex(ifluatex.sty) ghostscript -Provides: tex(thumbpdf.sty) = %{epoch}:20210325-%{release} -Provides: tex(thumbpdf.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-thumbpdf +%package -n %{shortname}-thumbpdf +Version: svn62518 +Provides: texlive-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf = %{epoch}:%{source_date}-%{release} +Provides: tex-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-bin < 7:20170520 +Provides: tex-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-thumbpdf-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-thumbpdf-doc < 7:20170520 +License: LPPL-1.3c +Summary: Thumbnails for pdfTeX and dvips/ps2pdf +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifluatex.sty) +Requires: ghostscript +Provides: tex(thumbpdf.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(thumbpdf.tex) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-thumbpdf A Perl script that provides support for thumbnails in pdfTeX and dvips/ps2pdf. The script uses ghostscript to generate the thumbnails which get represented in a TeX readable file that is @@ -5495,97 +7637,125 @@ read by the package thumbpdf.sty to automatically include the thumbnails. This arrangement works with both plain TeX and LaTeX. -%package -n texlive-tie -Provides: tex-tie = %{epoch}:20210325-%{release} tex-tie-bin = %{epoch}:20210325-%{release} -Provides: texlive-tie-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tie-bin < 7:20180414 -Summary: Allow multiple web change files -Requires: texlive-base texlive-kpathsea - -%description -n texlive-tie +%package -n %{shortname}-tie +Version: svn66186 +Provides: texlive-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie = %{epoch}:%{source_date}-%{release} +Provides: tex-tie-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tie-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tie-bin < 7:20170520 +License: Latex2e +Summary: Allow multiple web change files +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-tie Tie was originally developed to allow web programmers to apply more than one change file to their source. The program may also be used to create a new version of a .web file that incorporates existing changes. -%package -n texlive-tikztosvg -Summary: A utility for rendering TikZ diagrams to SVG -License: GPLv3 -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-tikztosvg +Version: svn60289 +Provides: texlive-tikztosvg = %{epoch}:%{source_date}-%{release} +Summary: A utility for rendering TikZ diagrams to SVG +License: GPL-3.0-only +Requires: texlive-base texlive-kpathsea -%description -n texlive-tikztosvg +%description -n %{shortname}-tikztosvg This package provides a shell script that calls XeTeX and pdf2svg to convert TikZ environments to SVG files. -%package -n texlive-tpic2pdftex -Provides: tex-tpic2pdftex = %{epoch}:20210325-%{release} -Provides: tex-tpic2pdftex-bin = %{epoch}:20210325-%{release} -Provides: texlive-tpic2pdftex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-tpic2pdftex-bin < 7:20180414 -Provides: tex-tpic2pdftex-doc = %{epoch}:20210325-%{release} -Provides: texlive-tpic2pdftex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-tpic2pdftex-doc < 7:20180414 -License: GPL+ -Summary: Use tpic commands in PDFTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-tpic2pdftex +%package -n %{shortname}-tpic2pdftex +Version: svn52851 +Provides: texlive-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex = %{epoch}:%{source_date}-%{release} +Provides: tex-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-bin < 7:20170520 +Provides: tex-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-tpic2pdftex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-tpic2pdftex-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Use tpic commands in PDFTeX +Requires: texlive-base +Requires: texlive-kpathsea +# awk +BuildArch: noarch + +%description -n %{shortname}-tpic2pdftex The AWK script converts pic language, embedded inline (delimited by .PS and .PE markers), to \pdfliteral commands. -%package -n texlive-ttfutils -Provides: tex-ttfutils = %{epoch}:20210325-%{release} -Provides: tex-ttfutils-bin = %{epoch}:20210325-%{release} -Provides: texlive-ttfutils-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ttfutils-bin < 7:20180414 -Provides: tex-ttfutils-doc = %{epoch}:20210325-%{release} -Provides: texlive-ttfutils-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ttfutils-doc < 7:20180414 -Summary: Linux TrueType utilities -Requires: texlive-base texlive-kpathsea -Provides: tex(T1-WGL4.enc) = %{epoch}:20210325-%{release} -Provides: tex(ttf2pk.cfg) = %{epoch}:20210325-%{release} - -%description -n texlive-ttfutils -Linux TrueType utilities. - -%package -n texlive-typeoutfileinfo -Provides: tex-typeoutfileinfo = %{epoch}:20210325-%{release} -Provides: tex-typeoutfileinfo-bin = %{epoch}:20210325-%{release} -Provides: texlive-typeoutfileinfo-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-typeoutfileinfo-bin < 7:20180414 -Provides: tex-typeoutfileinfo-doc = %{epoch}:20210325-%{release} -Provides: texlive-typeoutfileinfo-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-typeoutfileinfo-doc < 7:20180414 -Summary: Display class/package/file information -Requires: texlive-base texlive-kpathsea -Requires: tex(readprov.sty) -BuildArch: noarch - -%description -n texlive-typeoutfileinfo +%package -n %{shortname}-ttfutils +Version: svn66186 +Provides: texlive-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils = %{epoch}:%{source_date}-%{release} +Provides: tex-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-bin < 7:20170520 +Provides: tex-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ttfutils-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ttfutils-doc < 7:20170520 +License: LPPL-1.3c +Summary: convert TrueType to TFM and PK fonts +Requires: texlive-base +Requires: texlive-kpathsea +Provides: tex(T1-WGL4.enc) = %{epoch}:%{source_date}-%{release} +Provides: tex(ttf2pk.cfg) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-ttfutils +Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the +underlying library. + +%package -n %{shortname}-typeoutfileinfo +Version: svn29349 +Provides: texlive-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo = %{epoch}:%{source_date}-%{release} +Provides: tex-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-bin < 7:20170520 +Provides: tex-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-typeoutfileinfo-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-typeoutfileinfo-doc < 7:20170520 +License: LPPL-1.3c +Summary: Display class/package/file information +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(readprov.sty) +# shell +BuildArch: noarch + +%description -n %{shortname}-typeoutfileinfo The package provides a minimalist shell script, for Unix systems, that displays the information content in a \ProvidesFile, \ProvidesPackage or \ProvidesClass command in a LaTeX source file. The package requires that the readprov package is available. -%package -n texlive-ulqda -Provides: tex-ulqda = %{epoch}:20210325-%{release} -Provides: tex-ulqda-bin = %{epoch}:20210325-%{release} -Provides: texlive-ulqda-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-ulqda-bin < 7:20180414 -Provides: tex-ulqda-doc = %{epoch}:20210325-%{release} -Provides: texlive-ulqda-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-ulqda-doc < 7:20180414 -Summary: Support of Qualitative Data Analysis -Requires: texlive-base texlive-kpathsea -Requires: tex(multicol.sty) tex(tikz.sty) -Requires: tex(dot2texi.sty) tex(soul.sty) -Provides: tex(ulqda.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-ulqda +%package -n %{shortname}-ulqda +Version: svn26313 +Provides: texlive-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda = %{epoch}:%{source_date}-%{release} +Provides: tex-ulqda-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-bin < 7:20170520 +Provides: tex-ulqda-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-ulqda-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-ulqda-doc < 7:20170520 +License: LPPL-1.3c +Summary: Support of Qualitative Data Analysis +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(multicol.sty) +Requires: tex(tikz.sty) +Requires: tex(dot2texi.sty) +Requires: tex(soul.sty) +Provides: tex(ulqda.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-ulqda The package is for use in Qualitative Data Analysis research. It supports the integration of Qualitative Data Analysis (QDA) research tasks, specifically for Grounded Theory, into the @@ -5594,214 +7764,135 @@ such as interview transcripts and field notes by providing the LaTeX user with macros which are used to markup textual information -- for example, in-depth interviews. -%package -n texlive-uptex -Provides: tex-uptex = %{epoch}:20210325-%{release} -Provides: tex-uptex-bin = %{epoch}:20210325-%{release} -Provides: tex-uptex-doc = %{epoch}:20210325-%{release} -Provides: tex-uplatex = %{epoch}:20210325-%{release} -Provides: tex-uplatex-bin = %{epoch}:20210325-%{release} -Provides: tex-uplatex-doc = %{epoch}:20210325-%{release} -Provides: texlive-uptex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-uptex-bin < 7:20180414 -Provides: texlive-uplatex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-uplatex-bin < 7:20180414 -Provides: texlive-uplatex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-uplatex-doc < 7:20180414 -Provides: texlive-uptex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-uptex-doc < 7:20180414 -License: BSD -Summary: Binaries for uptex -Requires: texlive-base texlive-convbkmk texlive-etex texlive-hyphen-base -Requires: texlive-hyph-utf8 texlive-ipaex texlive-knuth-lib -Requires: texlive-japanese texlive-japanese-otf texlive-uptex-fonts -Requires: texlive-kpathsea texlive-ptex texlive-ptex-base texlive-uptex-base - -%description -n texlive-uptex -upTeX is an extension of pTeX, using UTF-8 input and producing UTF-8 -output. It was originally designed to improve support for Japanese, -but is also useful for documents in Chinese and Korean. It can -process Chinese simplified, Chinese traditional, Japanese, and Korean -simultaneously, and can also produce original LaTeX with \inputenc{utf8} -and Babel (Latin/Cyrillic/Greek etc.) by switching its \kcatcode -tables. - -%package -n texlive-urlbst -Provides: tex-urlbst = %{epoch}:20210325-%{release} -Provides: tex-urlbst-bin = %{epoch}:20210325-%{release} -Provides: texlive-urlbst-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-urlbst-bin < 7:20180414 -Provides: tex-urlbst-doc = %{epoch}:20210325-%{release} -Provides: texlive-urlbst-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-urlbst-doc < 7:20180414 -License: GPL+ -Summary: Web support for BibTeX -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-urlbst +%package -n %{shortname}-upmendex +Summary: Multilingual index processor +Version: svn66381 +License: BSD-3-Clause +Requires: texlive-base texlive-kpathsea +Provides: tex-upmendex = %{epoch}:%{source_date}-%{release} +Provides: tex-upmendex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-upmendex-bin = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-upmendex +The package is a multilingual index processor with the +following features: Mostly compatible with makeindex and upper +compatible with mendex. Supports UTF-8 and works with upLaTeX, +XeLaTeX and LuaLaTeX. Supports Latin (including non-English), +Greek, Cyrillic, Korean Hangul and Chinese Han (Hanzi +ideographs) scripts, as well as Japanese Kana. Supports +Devanagari, Thai, Arabic and Hebrew scripts (experimental). +Supports four kinds of sort orders (Pinyin, Radical-Stroke, +Stroke and Zhuyin) for Chinese Han scripts (Hanzi ideographs). +Applies International Components for Unicode (ICU) for sorting +process. + +%package -n %{shortname}-uptex +Version: svn66381 +Provides: texlive-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uptex-doc = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-uplatex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-uptex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-bin < 7:20170520 +Provides: texlive-uplatex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-bin < 7:20170520 +Provides: texlive-uplatex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uplatex-doc < 7:20170520 +Provides: texlive-uptex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-uptex-doc < 7:20170520 +License: BSD-3-Clause +Summary: Unicode version of pTeX +Requires: texlive-base +Requires: texlive-cm +Requires: texlive-convbkmk +Requires: texlive-etex +Requires: texlive-hyphen-base +Requires: texlive-hyph-utf8 +Requires: texlive-ipaex +Requires: texlive-japanese-otf +Requires: texlive-knuth-lib +Requires: texlive-kpathsea +Requires: texlive-plain +Requires: texlive-ptex-base +Requires: texlive-uptex-base +Requires: texlive-uptex-fonts + +%description -n %{shortname}-uptex +upTeX is an extension of pTeX, using UTF-8 input and producing +UTF-8 output. It was originally designed to improve support for +Japanese, but is also useful for documents in Chinese and +Korean. It can process Chinese simplified, Chinese traditional, +Japanese, and Korean simultaneously, and can also process +original LaTeX with \inputenc{utf8} and Babel +(Latin/Cyrillic/Greek etc.) by switching its \kcatcode tables. + +%package -n %{shortname}-urlbst +Version: svn65694 +Provides: texlive-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst = %{epoch}:%{source_date}-%{release} +Provides: tex-urlbst-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-bin < 7:20170520 +Provides: tex-urlbst-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-urlbst-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-urlbst-doc < 7:20170520 +License: GPL-1.0-or-later +Summary: Web support for BibTeX +Requires: texlive-base +Requires: texlive-kpathsea +# perl +BuildArch: noarch + +%description -n %{shortname}-urlbst Supports a new BibTeX 'webpage' entry type and 'url', 'lastchecked', and 'eprint' and 'DOI' fields. The Perl script urlbst can be used to add this support to an arbitrary .bst file which has a reasonably conventional structure. The result is meant to be robust rather than pretty. -%package -n texlive-velthuis -Provides: tex-velthuis = %{epoch}:20210325-%{release} -Provides: tex-velthuis-bin = %{epoch}:20210325-%{release} -Provides: texlive-velthuis-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-velthuis-bin < 7:20180414 -Provides: tex-velthuis-doc = %{epoch}:20210325-%{release} -Provides: texlive-velthuis-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-velthuis-doc < 7:20180414 -Provides: texlive-devnag = %{epoch}:20210325-%{release} -Obsoletes: texlive-devnag < 7:20180414 -Provides: texlive-devnag-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-devnag-bin < 7:20180414 -License: GPL+ -Summary: Typeset Devanagari -Requires: texlive-base texlive-kpathsea -Requires: tex-xetex-devanagari -Requires: tex(hindicaptions.sty) tex(cite.sty) -Requires: tex(ifxetex.sty) -Provides: tex(dvng.map) = %{epoch}:20210325-%{release} -Provides: tex(dvnb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnc9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnci9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvng9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvngi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnni9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpb9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpc9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn10.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn8.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn9.tfm) = %{epoch}:20210325-%{release} -Provides: tex(dvnb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnc9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvncbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnci9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvng9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvngi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnnbi9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvnni9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpb9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpc9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn10.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn8.pfb) = %{epoch}:20210325-%{release} -Provides: tex(dvpnn9.pfb) = %{epoch}:20210325-%{release} -Provides: tex(hindi.ldf) = %{epoch}:20210325-%{release} -Provides: tex(hindi.sty) = %{epoch}:20210325-%{release} -Provides: tex(dev.sty) = %{epoch}:20210325-%{release} -Provides: tex(dev209.sty) = %{epoch}:20210325-%{release} -Provides: tex(devanagari.sty) = %{epoch}:20210325-%{release} -Provides: tex(dvngcite.sty) = %{epoch}:20210325-%{release} -Provides: tex(udn.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnb.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnc.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnn.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnp.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpb.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpc.fd) = %{epoch}:20210325-%{release} -Provides: tex(udnpn.fd) = %{epoch}:20210325-%{release} -Provides: tex(dnmacs.tex) = %{epoch}:20210325-%{release} -Provides: tex(hindicaptions.sty) = %{epoch}:20210325-%{release} - -%description -n texlive-velthuis +%package -n %{shortname}-velthuis +Version: svn66186 +Provides: texlive-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis = %{epoch}:%{source_date}-%{release} +Provides: tex-velthuis-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-bin < 7:20170520 +Provides: tex-velthuis-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-velthuis-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-velthuis-doc < 7:20170520 +Provides: texlive-devnag = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag < 7:20170520 +Provides: texlive-devnag-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-devnag-bin < 7:20170520 +License: GPL-1.0-or-later +Summary: Typeset Devanagari +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex-xetex-devanagari +Requires: tex(hindicaptions.sty) +Requires: tex(cite.sty) +Requires: tex(ifxetex.sty) +Provides: tex(dev.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dev209.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(devanagari.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(dnmacs.tex) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvng.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(dvngcite.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindi.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(hindicaptions.sty) = %{epoch}:%{source_date}-%{release} +Provides: tex(udn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnn.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnp.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpb.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpc.fd) = %{epoch}:%{source_date}-%{release} +Provides: tex(udnpn.fd) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-velthuis Frans Velthuis' preprocessor for Devanagari text, and fonts and macros to use when typesetting the processed text. The macros provide features that support Sanskrit, Hindi, Marathi, Nepali, @@ -5811,43 +7902,48 @@ formats. Users of modern TeX distributions may care to try the XeTeX based package, which is far preferable for users who can type Unicode text. -%package -n texlive-vlna -Provides: tex-vlna = %{epoch}:20210325-%{release} tex-vlna-bin = %{epoch}:20210325-%{release} -Provides: texlive-vlna-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-vlna-bin < 7:20180414 -Provides: tex-vlna-doc = %{epoch}:20210325-%{release} -Provides: texlive-vlna-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-vlna-doc < 7:20180414 -Summary: Adds tilde after each non-syllabic preposition -Requires: texlive-base texlive-kpathsea - -%description -n texlive-vlna -There exists a special Czech and Slovak typographical rule: -you cannot leave the non-syllabic preposition on the end of one -line and continue writting text on next line. For example, you -cannot write down the text "v lese" (in a forest) like -"vlese". The program vlna adds the asciitilde between -such preposition and the next word and removes the space(s) in -this place. It means, the program converts "v lese" to -"v~lese". You can use this program as a preporcessor before -TeXing. Moreower, you can set another sequence to store instead -asciitilte (see the -x option). - -%package -n texlive-vpe -Provides: tex-vpe = %{epoch}:20210325-%{release} tex-vpe-bin = %{epoch}:20210325-%{release} -Provides: texlive-vpe-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-vpe-bin < 7:20180414 -Provides: tex-vpe-doc = %{epoch}:20210325-%{release} -Provides: texlive-vpe-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-vpe-doc < 7:20180414 -Summary: Source specials for PDF output -Requires: texlive-base texlive-kpathsea -Requires: tex(keyval.sty) tex(color.sty) -Requires: tex(pifont.sty) -Provides: tex(vpe.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-vpe +%package -n %{shortname}-vlna +Version: svn66186 +Provides: texlive-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna = %{epoch}:%{source_date}-%{release} +Provides: tex-vlna-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-bin < 7:20170520 +Provides: tex-vlna-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vlna-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vlna-doc < 7:20170520 +License: LPPL-1.3c +Summary: Adds ~ after non-syllabic preposition, for Czech/Slovak +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-vlna +Preprocessor for TeX source implementing the Czech/Slovak +typographical rule forbidding a non-syllabic preposition alone +at the end of a line. + +%package -n %{shortname}-vpe +Version: svn26039 +Provides: texlive-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe = %{epoch}:%{source_date}-%{release} +Provides: tex-vpe-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-bin < 7:20170520 +Provides: tex-vpe-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-vpe-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-vpe-doc < 7:20170520 +License: LPPL-1.3c +Summary: Source specials for PDF output +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(keyval.sty) +Requires: tex(color.sty) +Requires: tex(pifont.sty) +Provides: tex(vpe.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-vpe VPE is a system to make the equivalent of "source special" marks in a PDF file. Clicking on a mark will activate an editor, pointing at the source line that produced the text that @@ -5857,57 +7953,68 @@ via LaTeX/dvips, pdfTeX (version 0.14 or better), and LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the (pdf)TeX processor should be run with shell escapes enabled. -%package -n texlive-web -Provides: tex-web = %{epoch}:20210325-%{release} tex-web-bin = %{epoch}:20210325-%{release} -Provides: texlive-web-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-web-bin < 7:20180414 -License: LPPL-1.3c and MIT -Summary: Original web programs tangle and weave -Requires: texlive-base texlive-kpathsea - -%description -n texlive-web +%package -n %{shortname}-web +Version: svn66186 +Provides: texlive-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web = %{epoch}:%{source_date}-%{release} +Provides: tex-web-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-web-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-web-bin < 7:20170520 +License: Knuth-CTAN +Summary: The original literate programming system +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-web The system processes 'web' files in two ways: firstly to rearrange them to produce compilable code (using the program tangle), and secondly to produce a TeX source (using the program weave) that may be typeset for comfortable reading. -%package -n texlive-webquiz -Provides: tex-webquiz = %{epoch}:20210325-%{release} -Provides: tex-webquiz-bin = %{epoch}:20210325-%{release} -Provides: texlive-webquiz-bin = %{epoch}:20210325-%{release} -License: GPLv3+ -Summary: A LaTeX package for writing online quizzes -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-tex4ht -Requires: texlive-make4ht -Requires: tex(tikz.sty) -Requires: tex(pstricks.sty) -Requires: texlive-dvisvgm -Requires: ghostscript -Requires: python3 -BuildArch: noarch - -%description -n texlive-webquiz +%package -n %{shortname}-webquiz +Version: svn58808 +Provides: texlive-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz = %{epoch}:%{source_date}-%{release} +Provides: tex-webquiz-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-webquiz-bin = %{epoch}:%{source_date}-%{release} +License: GPL-3.0-or-later +Summary: A LaTeX package for writing online quizzes +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-tex4ht +Requires: texlive-make4ht +Requires: tex(tikz.sty) +Requires: tex(pstricks.sty) +Requires: texlive-dvisvgm +Requires: ghostscript +Requires: python3 +# python3 +BuildArch: noarch + +%description -n %{shortname}-webquiz WebQuiz makes it possible to use LaTeX to write interactive online quizzes. The quizzes are first written in LaTeX and then converted into HTML using WebQuiz, which is written in python. The conversion from LaTeX to HTML is done behind the scenes using TeX4ht. The idea is that you should be able to produce nice online quizzes using WebQuiz and basic knowledge of LaTeX. -%package -n texlive-wordcount -Provides: tex-wordcount = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: texlive-wordcount-bin = %{epoch}:20210325-%{release} -Provides: tex-wordcount-doc = %{epoch}:20210325-%{release} -Provides: texlive-wordcount-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-wordcount-doc < 7:20210325 -Provides: tex(wordcount.tex) = %{epoch}:20210325-%{release} -Summary: Estimate the number of words in a LaTeX document -Requires: texlive-base texlive-kpathsea -BuildArch: noarch - -%description -n texlive-wordcount +%package -n %{shortname}-wordcount +Version: svn46165 +Provides: texlive-wordcount = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-bin = %{epoch}:%{source_date}-%{release} +Provides: tex-wordcount-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-wordcount-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-wordcount-doc < 7:20180414 +Provides: tex(wordcount.tex) = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Estimate the number of words in a LaTeX document +Requires: texlive-base +Requires: texlive-kpathsea +# shell +BuildArch: noarch + +%description -n %{shortname}-wordcount The package provides a relatively easy way of estimating the number of words in a LaTeX document that does not require dvitty or other DVI converters. It does however require @@ -5916,148 +8023,179 @@ particular string and report the number of matching lines. An accompanying shell script wordcount.sh contains more information in its comments. -%package -n texlive-xdvi -License: MIT -Summary: A DVI previewer for the X Window System -Provides: tex-xdvi = %{epoch}:20210325-%{release} tex-xdvi-bin = %{epoch}:20210325-%{release} -Provides: texlive-xdvi-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xdvi-bin < 7:20180414 -Provides: xdvi = %{epoch}:20210325-%{release} xdvik = %{epoch}:20210325-%{release} -Requires: texlive-kpathsea texlive-base - -%description -n texlive-xdvi +%package -n %{shortname}-xdvi +Version: svn62387 +Provides: texlive-xdvi = %{epoch}:%{source_date}-%{release} +License: MIT +Summary: A DVI previewer for the X Window System +Provides: tex-xdvi = %{epoch}:%{source_date}-%{release} +Provides: tex-xdvi-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xdvi-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xdvi-bin < 7:20170520 +Provides: xdvi = %{epoch}:%{source_date}-%{release} +Provides: xdvik = %{epoch}:%{source_date}-%{release} +Requires: texlive-kpathsea +Requires: texlive-base + +%description -n %{shortname}-xdvi The canonical previewer for use on Unix and other X-windows based systems. -%package -n texlive-xetex -Provides: tex-xetex = %{epoch}:20210325-%{release} -Provides: tex-xetex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xetex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xetex-bin < 7:20180414 -Provides: tex-xetex-doc = %{epoch}:20210325-%{release} -Provides: texlive-xetex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xetex-doc < 7:20180414 -License: MIT -Summary: Unicode and OpenType-enabled TeX engine -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-xetexconfig -Requires: texlive-latex -Requires: texlive-dvipdfmx -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-etex -Requires: texlive-plain -Requires: texlive-babel -Requires: texlive-l3kernel -Requires: texlive-latex-fonts -Requires: texlive-lm -Requires: teckit +%package -n %{shortname}-xetex +Version: svn66203 +Provides: texlive-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex = %{epoch}:%{source_date}-%{release} +Provides: tex-xetex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-bin < 7:20170520 +Provides: tex-xetex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xetex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xetex-doc < 7:20170520 +License: MIT +Summary: Unicode and OpenType-enabled TeX engine +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-atbegshi +Requires: texlive-atveryend +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-dvipdfmx +Requires: texlive-etex +Requires: texlive-everyshi +Requires: texlive-firstaid +Requires: texlive-hyphen-base +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-latex +Requires: texlive-latex-fonts +Requires: texlive-lm +Requires: texlive-plain +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-xetexconfig +Requires: teckit Requires(post,postun): coreutils -Requires: tex(xetex.def) -Provides: tex(qx-unicode.map) = %{epoch}:20210325-%{release} -Provides: tex(tex-text.map) = %{epoch}:20210325-%{release} - -%description -n texlive-xetex -XeTeX is an extension of TeX that integrates TeX's typesetting capabilities -with (a) the Unicode text encoding standard (supporting most of the world’s -scripts) and (b) modern font technologies (TrueType and OpenType) and text -layout services (AAT, OpenType layout, SIL Graphite) provided by the host -operating system and available libraries. - -With XeTeX, the advanced typographic features provided by OpenType fonts become -available for all TeX users, as well as support for complex non-roman scripts. -XeTeX also eliminates the complex task of managing a TeX font installation. -XeTeX is now part of the standard TeX distribution TeXLive and works well with -TeX macro packages like LaTeX and ConTeXt. - -%package -n texlive-xindex -Provides: tex-xindex = %{epoch}:20210325-%{release} -Provides: tex-xindex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xindex-bin = %{epoch}:20210325-%{release} -License: LPPL-1.3c and MIT -Summary: Unicode compatible index program for LaTeX -Requires: lua >= 5.3 -Requires: texlive-base -Requires: texlive-kpathsea -Requires: texlive-luatex -Provides: tex(xindex.lua) = %{epoch}:20210325-%{release} -Provides: tex(xindex.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-xindex +Requires: tex(xetex.def) +Provides: tex(qx-unicode.map) = %{epoch}:%{source_date}-%{release} +Provides: tex(tex-text.map) = %{epoch}:%{source_date}-%{release} + +%description -n %{shortname}-xetex +XeTeX is a TeX typesetting engine using Unicode and supporting +modern font technologies such as OpenType, TrueType or Apple +Advanced Typography (AAT), including OpenType mathematics +fonts. XeTeX supports many extensions that reflect its origins +in linguistic research; it also supports micro-typography (as +available in pdfTeX). XeTeX was developed by the SIL (the first +version was specifically developed for those studying +linguistics, and using Macintosh computers). XeTeX's immediate +output is an extended variant of DVI format, which is +ordinarily processed by a tightly bound processor (called +xdvipdfmx), that produces PDF. XeTeX is released as part of TeX +Live; documentation has arisen separately. Source code is +available from ctan:/systems/texlive/Source/. + +%package -n %{shortname}-xindex +Version: svn65597 +Provides: texlive-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex = %{epoch}:%{source_date}-%{release} +Provides: tex-xindex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindex-bin = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Unicode compatible index program for LaTeX +Requires: lua >= 5.3 +Requires: texlive-base +Requires: texlive-kpathsea +Requires: texlive-luatex +Requires: tex(imakeidx.sty) +Requires: tex(makeidx.sty) +Requires: tex(xkeyval.sty) +Provides: tex(xindex.lua) = %{epoch}:%{source_date}-%{release} +Provides: tex(xindex.sty) = %{epoch}:%{source_date}-%{release} +# lua +BuildArch: noarch + +%description -n %{shortname}-xindex Unicode compatible index program for LaTeX. -%ifarch empty -%package -n texlive-xindy -Provides: tex-xindy = %{epoch}:20210325-%{release} -Provides: tex-xindy-bin = %{epoch}:20210325-%{release} -Provides: tex-xindy-doc = %{epoch}:20210325-%{release} -Provides: texlive-xindy-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xindy-bin <= 6:svn41316 -Provides: tex-xindy-doc = %{epoch}:20210325-%{release} -Provides: texlive-xindy-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xindy-doc <= 6:svn41316 -License: GPLv2+ -Summary: A general-purpose index processor -Requires: texlive-base texlive-kpathsea -Requires: clisp - -%description -n texlive-xindy +%package -n %{shortname}-xindy +Version: svn65958 +Provides: texlive-xindy = %{epoch}:%{source_date}-%{release} +Provides: tex-xindy = %{epoch}:%{source_date}-%{release} +%if %{without bootstrap} +Provides: tex-xindy-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-bin = %{epoch}:%{source_date}-%{release} +%endif +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-bin <= 6:svn41316 +Provides: tex-xindy-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xindy-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xindy-doc <= 6:svn41316 +License: GPL-2.0-or-later +Summary: A general-purpose index processor +# There are some arch specific binaries in here. +# BuildArch: noarch +Requires: texlive-base +Requires: texlive-kpathsea +Requires: clisp + +%description -n %{shortname}-xindy Xindy was deceloped after an impasse had been encountered in the attempt to complete internationalisation of makeindex. Xindy can be used to process indexes for documents marked up using (La)TeX, Nroff family and SGML-based languages. Xindy is highly configurable, both in markup terms and in terms of the collating order of the text being processed. -%endif -%package -n texlive-xml2pmx -Summary: Convert MusicXML to PMX and MusiXTeX -License: GPLv3+ -Requires: texlive-base texlive-kpathsea +%package -n %{shortname}-xml2pmx +Version: svn57972 +Provides: texlive-xml2pmx = %{epoch}:%{source_date}-%{release} +Summary: Convert MusicXML to PMX and MusiXTeX +License: GPL-3.0-or-later +Requires: texlive-base texlive-kpathsea -%description -n texlive-xml2pmx +%description -n %{shortname}-xml2pmx This program translates MusicXML files to input suitable for PMX and MusiXTeX processing. This package supports Windows, MacOS and Linux systems. -%package -n texlive-xmltex -Provides: tex-xmltex = %{epoch}:20210325-%{release} -License: LPPL-1.3c -Provides: tex-xmltex-bin = %{epoch}:20210325-%{release} -Provides: texlive-xmltex-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-xmltex-bin < 7:20180414 -Provides: tex-xmltex-doc = %{epoch}:20210325-%{release} -Provides: texlive-xmltex-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-xmltex-doc < 7:20180414 -Provides: xmltex = %{epoch}:20210325-%{release} -Summary: Support for parsing XML documents -Requires: texlive-base -Requires: texlive-kpathsea-bin, tex-kpathsea -Requires: texlive-latex -Requires: texlive-pdftex -Requires: texlive-tex -Requires: texlive-xmltexconfig -Requires: texlive-babel -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-latex-fonts -Requires: texlive-l3backend -Requires: texlive-l3kernel -Requires: texlive-l3packages -Requires: texlive-tex-ini-files -Requires: texlive-unicode-data -Requires: texlive-dehyph -Requires: texlive-hyph-utf8 -Requires: texlive-latexconfig -Provides: tex(xmltex.cfg) = %{epoch}:20210325-%{release} -Provides: tex(xmltex.tex) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-xmltex +%package -n %{shortname}-xmltex +Version: svn62145 +Provides: texlive-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex = %{epoch}:%{source_date}-%{release} +Provides: tex-xmltex-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-bin < 7:20170520 +Provides: tex-xmltex-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-xmltex-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-xmltex-doc < 7:20170520 +Provides: xmltex = %{epoch}:%{source_date}-%{release} +License: LPPL-1.3c +Summary: Support for parsing XML documents +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Requires: texlive-latex +Requires: texlive-pdftex +Requires: texlive-tex +Requires: texlive-xmltexconfig +Requires: texlive-babel +Requires: texlive-cm +Requires: texlive-hyphen-base +Requires: texlive-latex-fonts +Requires: texlive-l3backend +Requires: texlive-l3kernel +Requires: texlive-l3packages +Requires: texlive-tex-ini-files +Requires: texlive-unicode-data +Requires: texlive-dehyph +Requires: texlive-hyph-utf8 +Requires: texlive-latexconfig +Provides: tex(xmltex.cfg) = %{epoch}:%{source_date}-%{release} +Provides: tex(xmltex.tex) = %{epoch}:%{source_date}-%{release} +# symlinks +BuildArch: noarch + +%description -n %{shortname}-xmltex The package provides an implementation of a parser for documents matching the XML 1.0 and XML Namespace Recommendations. In addition to parsing commands are provided @@ -6067,16 +8205,18 @@ subset of TEI, MathML, are included. Element and Attribute names, as well as character data, may use any characters allowed in XML, using UTF-8 or a suitable 8-bit encoding. -%package -n texlive-xpdfopen -Provides: tex-xpdfopen = %{epoch}:20210325-%{release} -Provides: tex-xpdfopen-bin = %{epoch}:20210325-%{release} -Provides: texlive-xpdfopen-bin = %{epoch}:20210325-%{release} -License: Public Domain -Summary: Commands to control PDF readers, under X11 -Requires: texlive-base -Requires: texlive-kpathsea - -%description -n texlive-xpdfopen +%package -n %{shortname}-xpdfopen +Version: svn65952 +Provides: texlive-xpdfopen = %{epoch}:%{source_date}-%{release} +Provides: tex-xpdfopen = %{epoch}:%{source_date}-%{release} +Provides: tex-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-xpdfopen-bin = %{epoch}:%{source_date}-%{release} +License: LicenseRef-Fedora-Public-Domain +Summary: Commands to control PDF readers, under X11 +Requires: texlive-base +Requires: texlive-kpathsea + +%description -n %{shortname}-xpdfopen The command-line programs pdfopen and pdfclose allow you to control the X Window System version of Adobe's Acrobat Reader from the command line or from within a (shell) script. The @@ -6084,21 +8224,26 @@ programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf and evince. This version derives from one written by Fabrice Popineau for Microsoft operating systems. -%package -n texlive-yplan -Provides: tex-yplan = %{epoch}:20210325-%{release} -Provides: tex-yplan-bin = %{epoch}:20210325-%{release} -Provides: texlive-yplan-bin = %{epoch}:20210325-%{release} -Obsoletes: texlive-yplan-bin < 7:20180414 -Provides: tex-yplan-doc = %{epoch}:20210325-%{release} -Provides: texlive-yplan-doc = %{epoch}:20210325-%{release} -Obsoletes: texlive-yplan-doc < 7:20180414 -Summary: Daily planner type calendar -Requires: texlive-base texlive-kpathsea -Requires: tex(ifthen.sty) -Provides: tex(yplan.sty) = %{epoch}:20210325-%{release} -BuildArch: noarch - -%description -n texlive-yplan +%package -n %{shortname}-yplan +Version: svn34398 +Provides: texlive-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan = %{epoch}:%{source_date}-%{release} +Provides: tex-yplan-bin = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-bin = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-bin < 7:20170520 +Provides: tex-yplan-doc = %{epoch}:%{source_date}-%{release} +Provides: texlive-yplan-doc = %{epoch}:%{source_date}-%{release} +Obsoletes: texlive-yplan-doc < 7:20170520 +License: LPPL-1.3c +Summary: Daily planner type calendar +Requires: texlive-base +Requires: texlive-kpathsea +Requires: tex(ifthen.sty) +Provides: tex(yplan.sty) = %{epoch}:%{source_date}-%{release} +# perl +BuildArch: noarch + +%description -n %{shortname}-yplan Prints two six-monthly vertical-type daily planner (i.e., months along the top, days downwards), with each 6-month period fitting onto a single A4 (or US letter) sheet. The package @@ -6109,44 +8254,171 @@ year's planner automatically. (The last manually-generated LaTeX file remains on the archive.) %prep -%autosetup -c -n texlive-20210325-source -p1 -[ -e texlive-20210325-source ] && mv texlive-20210325-source source +%setup -q -c -T +# xz -dc %%{SOURCE0} | tar x +tar xf %{SOURCE0} +[ -e %{source_name} ] && mv %{source_name} source +%patch -P1 -p0 +%patch -P2 -p1 -b .format +%patch -P5 -p0 +%if %{with poppler} +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P7 -p1 -b .newpoppler +%endif +%endif +%patch -P8 -p1 -b .texinfo-fix +# %%patch -P11 -p1 -b .dt +# %%patch -P15 -p1 -b .disabletest +%patch -P17 -p1 -b .annocheck +%if %{with poppler} +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P18 -p1 -b .poppler-0.73 +%endif +%if 0%{?fedora} || 0%{?rhel} >= 8 +%patch -P23 -p1 -b .poppler-0.84 +%endif +%if 0%{?fedora} >= 33 || 0%{?rhel} >= 9 +%patch -P29 -p1 -b .poppler090 +%endif +%endif +%patch -P30 -p1 -b .out_of_memory +%if %{with poppler} +%patch -P31 -p1 -b .poppler-xpdf-fix +%if 0%{?fedora} >= 36 || 0%{?rhel} > 9 +%patch -P34 -p1 -b .poppler22 +%patch -P35 -p1 -b .poppler-crash-fix +%endif +%if 0%{?fedora} >= 37 || 0%{?rhel} > 9 +%patch -P36 -p1 -b .poppler-22.08.0 +%endif +%else +%patch -P32 -p1 -b .configure-no-GfxFont-decRefCnt +%endif +%if 0%{?fedora} >= 38 || 0%{?rhel} > 9 +%patch -P37 -p1 -b .libpaper2 +%endif +# Setup copies of the licenses for l in `unxz -c %{SOURCE3} | tar t`; do -ln -s %{_datadir}/texlive/licenses/$l $l +ln -s %{_texdir}/licenses/$l $l done +%patch -P44 -p1 -b .pdf-header-order-fix +%patch -P48 -p1 -b .gcc-14-typefixes +%patch -P49 -p1 -b .gcc-15-ftbfs +%patch -P50 -p1 +%patch -P51 -p1 +%patch -P52 -p1 + +# Disable broken tests +# updmap-cmdline-test.pl is not useful and it will fail because it finds the system perl bits instead of the local copy +sed -i 's|TESTS = tests/updmap-cmdline-test.pl||g' source/texk/texlive/Makefile.in +sed -i 's|TESTS = tests/updmap-cmdline-test.pl||g' source/texk/texlive/Makefile.am +# bibtex8 fails on x86_64 and i686, but not really. I think this test might also be using the older system bits +sed -i 's|bibtex8_tests = tests/bibtex8.test|bibtex8_tests =|g' source/texk/bibtex-x/Makefile.in +sed -i 's|bibtex8_tests = tests/bibtex8.test|bibtex8_tests =|g' source/texk/bibtex-x/Makefile.am + +# Value here is "16" not "15" because we have a source0 at index 1. +# Source15 at index 16 is our first "normal" noarch source file. +# Also, this macro has to be here, not at the top, or it will not evaluate properly. :P %global mysources %{lua: for index,value in ipairs(sources) do if index >= 16 then print(value.." ") end end} +# Drop source/libs/xpdf dir, we use system ver (if at all) +#rm -rf source/libs/xpdf + %build + +%if %{without bootstrap} +cat /usr/share/texlive/kpathsea.log || : +# DEBUG +# Okay. Lets look at things. +# 1. /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf should exist and be valid. +ls -l /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf || : +# cat /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf + +# Check for ls-R files +ls -l /usr/share/texlive/texmf-config/ls-R || : +ls -l /usr/share/texlive/texmf-dist/ls-R || : +ls -l /usr/share/texlive/texmf-local/ls-R || : +ls -l /usr/share/texlive/texmf-var/ls-R || : + +# 2. kpsewhich -all fmtutil.cnf +# We should see /usr/share/texlive/texmf-dist/web2c/fmtutil.cnf +kpsewhich -version || : + +kpsewhich --debug -1 -all fmtutil.cnf || : + +# 3. fmtutil-sys --all +# This should recreate all format files, may not be able to do that here (non-root) +fmtutil-sys --all || : + +# 4. mktexfmt latex should succeed +mktexfmt latex || : + +# Make texlive generate latex.fmt, so that multiple threads do not race to +# make it during the xindy build. +cat > dummy.tex << EOF +\documentclass{article} +\begin{document} +This is a document. +\end{document} +EOF +latex dummy.tex +rm -f dummy.* +%endif + +# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118112 %ifarch loongarch64 -export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -fcommon" -export CXXFLAGS="$RPM_OPT_FLAGS -std=c++17 -fno-strict-aliasing -fcommon" +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing" %else -export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security -fcommon" -export CXXFLAGS="$RPM_OPT_FLAGS -std=c++17 -fno-strict-aliasing -Werror=format-security -fcommon" +export CFLAGS="$RPM_OPT_FLAGS -std=gnu17 -fno-strict-aliasing -Werror=format-security" +export CXXFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security" %endif -export LDFLAGS="%{build_ldflags}" + cd source PREF=`pwd`/inst -install -d work +mkdir -p work %global _configure ../configure cd work +%if %{without poppler} +export GLIB_LIBS=`pkg-config --libs glib-2.0` +export PAPER_LIBS="-lpaper" +export FONTCONFIG_LIBS=`pkg-config --libs fontconfig` +#export XPDF_INCLUDES="-I/usr/include/xpdf -I/usr/include/xpdf/fofi -I/usr/include/xpdf/goo -I/usr/include/xpdf/splash" +export XPDF_LIBS="-lxpdfcore -lfofi -lgoo -lsplash $GLIB_LIBS $PAPER_LIBS $FONTCONFIG_LIBS" +%endif %configure \ --prefix=$PREF --datadir=$PREF --libdir=$PREF/lib --includedir=$PREF/include --datarootdir=$PREF/share --mandir=$PREF/share/man \ ---infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng --without-system-xpdf \ ---with-system-gd --without-system-t1lib --without-system-teckit --with-system-freetype2 --with-system-poppler --with-system-zziplib \ +--infodir=$PREF/share/info --exec_prefix=$PREF --bindir=$PREF/bin --with-system-zlib --with-system-libpng \ +--with-system-gd --without-system-t1lib --with-system-teckit --with-system-freetype2 --with-system-zziplib \ --with-system-cairo --with-system-icu --with-system-harfbuzz --with-system-graphite2 --with-system-libgs --with-system-pixman \ --with-system-libpaper --without-system-potrace --with-pic --with-xdvi-x-toolkit=xaw --with-system-mpfr --with-system-gmp \ --enable-shared --enable-compiler-warnings=max --without-cxx-runtime-hack \ ---disable-native-texlive-build --disable-t1utils --disable-psutils --disable-biber --disable-ptexenc --disable-largefile \ ---disable-xindy --disable-xindy-docs --disable-xindy-make-rules \ -%ifarch aarch64 riscv64 loongarch64 ppc64le +--disable-native-texlive-build --disable-t1utils --disable-biber --disable-ptexenc --disable-largefile \ +%if %{without psutils} +--enable-psutils \ +%else +--disable-psutils \ +%endif +%if %{with poppler} +--with-system-poppler --without-system-xpdf \ +%else +--without-system-xpdf \ +%endif +%ifarch %{power64} s390 s390x riscv64 loongarch64 --disable-luajittex --disable-mfluajit --disable-luajithbtex --disable-mfluajit-nowin \ %endif +%if %{without bootstrap} +--enable-xindy \ +%else +--disable-xindy \ +%endif +--disable-xindy-docs --disable-xindy-rules \ --disable-rpath +# disable rpath for i in `find . -name libtool`; do sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' $i sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' $i @@ -6155,46 +8427,64 @@ done %make_build world STRIPPROG=/bin/true STRIP=/bin/true %install -install -d %{buildroot}%{_datadir}/texlive/texmf-config/web2c -install -d %{buildroot}%{_var}/lib/texmf +# make directories +mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c +mkdir -p %{buildroot}%{_texmf_var} -cd %{buildroot}%{_datadir}/texlive/texmf-config/web2c +# make symlinks +pushd %{buildroot}%{_texdir}/texmf-config/web2c ln -s ../../texmf-dist/web2c/updmap.cfg updmap.cfg -cd - +popd -cd %{buildroot}%{_datadir} -install -d texlive/texmf-local/texmf-compat +# make compatibility symlink +pushd %{buildroot}%{_datadir} +mkdir -p texlive/texmf-local/texmf-compat ln -s texlive/texmf-local/texmf-compat texmf -cd - - -install -d %{buildroot}%{_datadir}/fonts -cd %{buildroot}%{_datadir}/fonts +popd + +# make opentype fontdir symlinks +# NOTE: fontawesome, stix, oldstandard are a conflict, so we just add Requires for the +# corresponding system font packages for them. +# NOTE: We might have to handle this differently if there are lots of conflicts later. +# DO NOT MAKE A SYMLINK FOR public/ebgaramond +# The EB Garamond upstream font decided to map some historical flags (i.e., flags +# obsolete for centuries) to the Unicode flag emoji code points. +# Since most other fonts do not include the relevant code points, Fontconfig decides to +# pick up the EB Garamond flags through the fallback font mechanism for almost all +# fonts on the system, including DejaVu Sans, Liberation Sans, etc. +mkdir -p %{buildroot}%{_datadir}/fonts +pushd %{buildroot}%{_datadir}/fonts for i in public/lilyglyphs ; do j=`echo $i | cut -d / -f 2` - ln -s %{_datadir}/texlive/texmf-dist/fonts/opentype/$i $j + ln -s %{_texdir}/texmf-dist/fonts/opentype/$i $j done -cd - +popd -install -d %{buildroot}%{_bindir} +# install binaries +mkdir -p %{buildroot}%{_bindir} rm -f source/inst/bin/man cp -a source/inst/bin/* %{buildroot}%{_bindir} -install -d %{buildroot}%{_libdir} +# install libs +mkdir -p %{buildroot}%{_libdir} cp -d source/inst/lib/*.so* %{buildroot}%{_libdir} cp -a source/inst/lib/pkgconfig %{buildroot}%{_libdir} -install -d %{buildroot}%{_includedir} +# install includes +mkdir -p %{buildroot}%{_includedir} cp -r source/inst/include/* %{buildroot}%{_includedir} -install -d %{buildroot}%{_datadir} -install -d %{buildroot}%{_datadir}/texlive -cd source/inst/share +# install shared files +mkdir -p %{buildroot}%{_datadir} +mkdir -p %{buildroot}%{_texdir} +pushd source/inst/share cp -a info %{buildroot}%{_datadir}/ cp -a man %{buildroot}%{_datadir}/ -cp -a texmf-dist %{buildroot}%{_datadir}/texlive/ -cd - +cp -a texmf-dist %{buildroot}%{_texdir}/ +popd -cd %{buildroot}%{_bindir} +# 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,` @@ -6202,16 +8492,17 @@ rm -f $i ln -s $l $i fi done -cd - +popd -cd %{buildroot}%{_datadir}/texlive +# install noarch bits +pushd %{buildroot}%{_texdir} echo %{mysources} for noarchsrc in %{mysources}; do xz -dc $noarchsrc | tar x done -cd - - -cd %{buildroot}%{_datadir}/texlive/texmf-dist +popd +# Do the weird noarch bits +pushd %{buildroot}%{_texdir}/texmf-dist xz -dc %{SOURCE5} | tar x xz -dc %{SOURCE6} | tar x xz -dc %{SOURCE7} | tar x @@ -6222,68 +8513,162 @@ xz -dc %{SOURCE11} | tar x xz -dc %{SOURCE12} | tar x xz -dc %{SOURCE13} | tar x xz -dc %{SOURCE14} | tar x -cd - +popd + +# We want the texmf.cnf we patched, not the vanilla one from the kpathsea.tar.xz +cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_texdir}/texmf-dist/web2c/texmf.cnf -cp -a source/texk/kpathsea/texmf.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf +# Apply fixes +# We do it here because this is the first time we have the complete tree. +# bz1384067 +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst -sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_datadir}/texlive/texmf-dist/bibtex/bst/base/acm.bst -sed -i 's|\\sc |\\scshape |g' %{buildroot}%{_datadir}/texlive/texmf-dist/bibtex/bst/base/siam.bst +# Patches to component tarballs +pushd %{buildroot}%{_texdir}/texmf-dist -install -d %{buildroot}%{_sysconfdir}/texlive/web2c -install -d %{buildroot}%{_sysconfdir}/texlive/dvips/config -install -d %{buildroot}%{_sysconfdir}/texlive/tex/generic/config +# neuter tlmgr a bit +patch -p1 < %{_sourcedir}/texlive-20190410-tlmgr-ignore-warning.patch +# Fix texmfcnf.lua +patch -p1 < %{_sourcedir}/texlive-fedora-texmfcnf.lua.patch -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/mktex.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/texmf.cnf %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg %{buildroot}%{_sysconfdir}/texlive/web2c/ -ln -s %{_sysconfdir}/texlive/web2c/updmap.cfg %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg +# Fix interpreter on perl scripts +patch -p1 < %{_sourcedir}/texlive-base-20230311-fix-scripts.patch +popd + +# config files in /etc symlinked +mkdir -p %{buildroot}%{_sysconfdir}/texlive/web2c +mkdir -p %{buildroot}%{_sysconfdir}/texlive/dvips/config +mkdir -p %{buildroot}%{_sysconfdir}/texlive/tex/generic/config + +for i in mktex.cnf texmfcnf.lua texmf.cnf updmap.cfg; do + mv %{buildroot}%{_texdir}/texmf-dist/web2c/$i %{buildroot}%{_sysconfdir}/texlive/web2c/ + ln -s %{_sysconfdir}/texlive/web2c/$i %{buildroot}%{_texdir}/texmf-dist/web2c/$i +done +# configure texmf-local - make it visible to kpathsea sed -i -e 's|^TEXMFLOCAL.*|TEXMFLOCAL = $TEXMFROOT/texmf-local//|' %{buildroot}%{_sysconfdir}/texlive/web2c/texmf.cnf -mv %{buildroot}%{_datadir}/texlive/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ -ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_datadir}/texlive/texmf-dist/dvips/config/config.ps +mv %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps %{buildroot}%{_sysconfdir}/texlive/dvips/config/ +ln -s %{_sysconfdir}/texlive/dvips/config/config.ps %{buildroot}%{_texdir}/texmf-dist/dvips/config/config.ps -mv %{buildroot}%{_datadir}/texlive/texmf-dist/web2c/fmtutil.cnf %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf +# Move the stock fmtutil.cnf under /etc and make sure everything is commented out +mv %{buildroot}%{usr_fmtutil_cnf} %{buildroot}%{etc_fmtutil_cnf} sed -i '/^[a-z].*$/s/^/\#\!\ /' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf -mkdir %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d -for i in $(grep '^# from .*:$' %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf|sed 's/^# from //; s/:$//'); do - echo "#" > %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d/$i - sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{_sysconfdir}/texlive/web2c/fmtutil.cnf >> %{buildroot}%{_datadir}/texlive/fmtutil.cnf.d/$i +# Split the stock texmf.cnf file: +# * Look for lines like "# from foo:" and use those as the names of the files +# we generate. +# * Take the text starting at "# from foo:" and ending just before the next +# line containing just '#' (or EOF). +# * remove '#!' +# * Add a single line containing '#' to the beginning +# * Stuff that into a file named "foo" in %%_texdir/fmtutil.cnf.d +# +# This is a bit fragile as the precise format of the stock fmtutil.cnf file +# could change. +# The leading '#' and the "# from foo:" line are added to the output only to +# match the existing format of the file, just in case some tool cares. +mkdir %{buildroot}%{_texdir}/fmtutil.cnf.d +for i in $(grep '^# from .*:$' %{buildroot}%{etc_fmtutil_cnf}|sed 's/^# from //; s/:$//'); do + echo "#" > %{buildroot}%{fmtutil_cnf_d}/$i + sed -n "s/^#! //; /^# from $i:\$/,/^#\$/{/^#\$/!p}" %{buildroot}%{etc_fmtutil_cnf} >> %{buildroot}%{fmtutil_cnf_d}/$i done +# Install the fmtutil.cnf generation script install -D -p -m 755 -t %{buildroot}%{_sbindir} %{SOURCE4} -install -d %{buildroot}%{_rpmmacrodir} +# create macro file for building texlive +mkdir -p %{buildroot}%{_rpmmacrodir} cp -a %{SOURCE1} %{buildroot}%{_rpmmacrodir}/macros.texlive -cp %{SOURCE2} %{buildroot}%{_datadir}/texlive +# install texlive.tlpdb +cp %{SOURCE2} %{buildroot}%{_texdir} +# make a symlink so texdoc is happy +pushd %{buildroot}%{_texdir}/tlpkg +ln -s ../texlive.tlpdb . +popd -install -d %{buildroot}%{_datadir}/texlive/licenses -cd %{buildroot}%{_datadir}/texlive/licenses +# install licenses +mkdir -p %{buildroot}%{_texdir}/licenses +pushd %{buildroot}%{_texdir}/licenses xz -dc %{SOURCE3} | tar x -cd - - -cd %{buildroot}%{_datadir}/texlive +popd + +# nuke useless tlmgr packaging stuff and doc droppings +rm -f %{buildroot}/%{_texdir}/install-tl +rm -rf %{buildroot}%{_texdir}/tlpkg/gpg/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tltcl/ +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ +# texconfig needs tlmgr.pl +# We're only including what it needs, no more. +# rm -f %{buildroot}%{_texdir}/texmf-dist/doc/man/man1/tlmgr.1 +# rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +# rm -f %{buildroot}%{_bindir}/tlmgr +# rm -f %{buildroot}%{_texdir}/tlpkg/installer/config.guess +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl.orig +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tl-errmess.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/tlmgrgui.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-win32.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstall-windows.pl +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/texlive/uninstq.vbs +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlcockpit/tlcockpit.sh +rm -f %{buildroot}%{_texdir}/texmf-dist/scripts/tlshell/tlshell.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/COPYING.MinGW-runtime.txt +rm -f %{buildroot}%{_texdir}/tlpkg/installer/ctan-mirrors.pl +rm -rf %{buildroot}%{_texdir}/tlpkg/installer/curl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-extl.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-perltk.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-text.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-menu-wizard.pl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/install-tl-gui.tcl +rm -f %{buildroot}%{_texdir}/tlpkg/installer/texlive.png +rm -f %{buildroot}%{_bindir}/tlcockpit +rm -f %{buildroot}%{_bindir}/tlshell +rm -rf %{buildroot}%{_datadir}/info/dir +rm -rf %{buildroot}%{_texdir}/readme-txt.dir/README.* +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/*.pdf +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/man/man*/Makefile +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/info/dir +# nuke unwanted ptexenc devel files +rm -rf %{buildroot}%{_includedir}/ptexenc +# nuke context windows files +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/mswin/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/win64/* +rm -f %{buildroot}/%{_texdir}/texmf-dist/scripts/context/stubs/source/* + +# Make this perl module show up in @INC +mkdir -p %{buildroot}%{_datadir}/perl5 +ln -s %{_texdir}/tlpkg/TeXLive %{buildroot}%{_datadir}/perl5/TeXLive + +# not sure why this is here +rm -rf %{buildroot}%{_texdir}/texmf-dist/source/fonts/zhmetrics/ttfonts.map + +pushd %{buildroot}%{_texdir} +# ALWAYS NUKE THIS IF IT IS HERE. rm -rf texmf-var -ln -s %{_var}/lib/texmf texmf-var -cd - +# AND NOW WE MAKE THE SYMLINK. +ln -s %{_texmf_var} texmf-var +popd -cd %{buildroot}%{_bindir} +# sync built/distro binaries +pushd %{buildroot}%{_bindir} [ ! -e mfplain ] && ln -s mpost mfplain [ ! -e texlua ] && ln -s luatex texlua [ ! -e texluac ] && ln -s luatex texluac +# remove latexmk +# This lives in the "latexmk" package in Fedora. rm -f latexmk -rm -rf %{buildroot}%{_datadir}/texlive/texmf-dist/scripts/latexmk +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/latexmk rm -f %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man/man1/latexmk.* -rm -rf %{buildroot}%{_bindir}/teckit_compile - +# Fix symlinks for helper scripts rm -f bibexport.sh ln -s /usr/share/texlive/texmf-dist/scripts/bibexport/bibexport.sh bibexport.sh rm -f texmfstart @@ -6292,49 +8677,141 @@ rm -rf mktexmf ln -s /usr/share/texlive/texmf-dist/scripts/texlive/mktexmf mktexmf rm -rf mkjobtexmf ln -s /usr/share/texlive/texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl mkjobtexmf +rm -rf digestif +ln -s /usr/share/texlive/texmf-dist/scripts/digestif/digestif.texlua digestif + +# make a mtxrun stub +rm -f mtxrun +cat > mtxrun << EOF +#!/bin/sh +env LUATEXDIR=/usr/share/texlive/texmf-dist/scripts/context/lua luatex --luaonly mtxrun.lua "\$@" +EOF +chmod 0755 mtxrun + +# fix context rm -f context cat > context << EOF +#!/bin/sh export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; -export TEXMFCACHE=\$HOME/.cache/texlive; +export TEXMFCACHE=\$(realpath \$HOME/.cache/texlive); %{_bindir}/mtxrun --script context "\$@" EOF chmod 0755 context -cd - -install -d %{buildroot}%{_datadir}/ -install -d %{buildroot}%{_infodir}/ -cp -R %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man %{buildroot}%{_datadir}/ -find %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man -type f | xargs rm -f -mv %{buildroot}%{_datadir}/texlive/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ +%if 0 +# fix texaccents +# TODO: Detect snobol4 version rather than hardcoding it here. +rm -f texaccents +cat > texaccents << EOF +#!/bin/sh +env SNOPATH=/usr/lib64/snobol4/2.3.1/lib:/usr/share/texlive/texmf-dist/scripts/texaccents /usr/bin/snobol4 /usr/share/texlive/texmf-dist/scripts/texaccents/texaccents.sno "\$@" +EOF +chmod 0755 texaccents +popd +# more texaccents fixes +mv %{buildroot}%{_texdir}/texmf-dist/source/support/texaccents/* %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents +sed -i 's|host.inc|host.sno|g' %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents/texaccents.sno +sed -i 's|repl.inc|repl.sno|g' %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents/grepl.inc +%endif +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/support/texaccents +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/texaccents +rm -rf %{buildroot}%{_texdir}/texmf-dist/source/support/texaccents +rm -rf %{buildroot}%{_bindir}/texaccents + +# Move docs +mkdir -p %{buildroot}%{_datadir}/ +mkdir -p %{buildroot}%{_infodir}/ +cp -R %{buildroot}%{_texdir}/texmf-dist/doc/man %{buildroot}%{_datadir}/ +find %{buildroot}%{_texdir}/texmf-dist/doc/man -type f | xargs rm -f +mv %{buildroot}%{_texdir}/texmf-dist/doc/info/* %{buildroot}%{_infodir}/ +rm -rf %{buildroot}%{_mandir}/man1/texaccents.1.gz + +# Remove cjk-gs-integrate files +# Yes, we probably should remove the source, but there is a possibility that we will +# re-add this subpackage at some point. +rm -rf %{buildroot}%{_bindir}/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate +rm -rf %{buildroot}%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate + +# Fix pkgconfig files for file in $(find %{buildroot}%{_libdir}/pkgconfig/ -type f -name '*.pc') -do sed -i 's|%{_builddir}/%{name}-%{version}/source/inst|/usr|g' $file +do sed -i 's|%{_builddir}/%{name}-%{source_date}/source/inst|/usr|g' $file sed -i 's|/usr/lib|%{_libdir}|g' $file done -cd %{buildroot} +# Python fixup +# Change shebang in all relevant files in this directory and all subdirectories +# See `man find` for how the `-exec command {} +` syntax works +pushd %{buildroot} find -type f -exec sed -i '1s|^#!/usr/bin/python$|#!%{__python3}|' {} + find -type f -exec sed -i '1s|^#!/usr/bin/env python$|#!%{__python3}|' {} + -sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_datadir}/texlive/texmf-dist/scripts/de-macro/de-macro -cd - +sed -i '1s|^#!/usr/bin/python |#!%{__python3} |' ./%{_texdir}/texmf-dist/scripts/de-macro/de-macro + +# Get rid of the python2 variant bits from pythontex (we need them to generate the py3 bits, but not in the package) +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/pythontex2.py +rm -rf ./%{_texdir}/texmf-dist/scripts/pythontex/depythontex2.py +popd + +# One dir to own +mkdir -p %{buildroot}%{_texdir}/texmf-dist/tex/generic/context/third + +%if %{without psutils} +# TeXLive has a fork of psutils +# we namespace those binaries to avoid conflicts with the upstream psutils +pushd %{buildroot}%{_bindir} +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops +do mv $i tl-$i +done +popd +# we also rename the manpages +pushd %{buildroot}%{_mandir}/man1/ +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops psutils +do mv $i.1 tl-$i.1 +done +popd +# and move the config file +mkdir -p %{buildroot}%{_sysconfdir}/texlive/psutils +mv %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg %{buildroot}%{_sysconfdir}/texlive/psutils/paper.cfg +ln -s %{_sysconfdir}/texlive/psutils/paper.cfg %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg +%else +pushd %{buildroot}%{_mandir}/man1/ +for i in epsffit extractres includeres psbook psjoin psnup psresize psselect pstops psutils +do rm -f $i.1 +done +popd +rm -f %{buildroot}%{_texdir}/texmf-dist/psutils/paper.cfg +rm -f %{buildroot}%{_texdir}/texmf-dist/dvips/getafm/getafm.ps +rm -rf %{buildroot}%{_texdir}/texmf-dist/scripts/psutils +%endif +# Some (most) of the binaries are ending up with RPATH despite our best efforts. for i in afm2pl afm2tfm aleph bibtex bibtex8 bibtexu chkdvifont chktex ctie ctangle ctwill ctwill-refsort ctwill-twinx cweave detex disdvi dt2dv dv2dt dvi2tty dvibook dviconcat dvicopy dvilj dvilj2p dvilj4 dvilj4l dvipng \ - dvipos dvips dviselect dvispc dvisvgm dvitodvi dvitype eptex euptex gftodvi gftopk gftype gregorio gsftopk hbf2gf kpsewhich luahbtex luatex mag makeindex makejvf mendex mf mflua mft mf-nowin mpost otftotfm msxlint \ + dvipos dvips dviselect dvispc dvisvgm dvitodvi dvitype eptex euptex gftodvi gftopk gftype gregorio gsftopk hbf2gf hitex kpsewhich luahbtex luatex mag makeindex makejvf mendex mf mflua mft mf-nowin mpost otftotfm msxlint \ odvicopy odvitype omfonts otangle otp2ocp outocp patgen pbibtex pdftex pdftosrc pktogf pdvitype pfb2pfa pk2bm pktype pltotf pmpost pooltype ppltotf ps2pk ptex ptftopl synctex t4ht tangle tex tex4ht tftopl tie \ - ttf2afm ttf2pk ttf2tfm ttfdump upbibtex updvitype upmendex upmpost uppltotf uptex uptftopl vftovp vptovf weave wofm2opl wopl2ofm wovf2ovp wovp2ovf xdvi-xaw xdvipdfmx xetex; do +%if %{without psutils} + tl-epsffit tl-psbook tl-psnup tl-psresize tl-psselect tl-pstops \ +%endif + ttf2afm ttf2pk ttf2tfm ttfdump twill upbibtex updvitype upmendex upmpost uppltotf uptex uptftopl vftovp vptovf weave wofm2opl wopl2ofm wovf2ovp wovp2ovf xdvi-xaw xdvipdfmx xetex; do chrpath --delete %{buildroot}%{_bindir}/$i done -%ifnarch aarch64 riscv64 loongarch64 ppc64le -for i in luajittex luajithbtex mfluajit;do -chrpath --delete %{buildroot}%{_bindir}/$i -done +%ifnarch %{power64} s390 s390x riscv64 loongarch64 +chrpath --delete %{buildroot}%{_bindir}/luajithbtex +chrpath --delete %{buildroot}%{_bindir}/luajittex +chrpath --delete %{buildroot}%{_bindir}/mfluajit %endif +# And remove the rpath from this library. chrpath --delete %{buildroot}%{_libdir}/libptexenc.so.* -mv %{buildroot}%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map %{buildroot}%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.oldmap +# This map file provided by texlive-scripts is not useful and confuses lots of things when it ends up in pdftex.map +# Renaming it should prevent it from being included +mv %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.map %{buildroot}%{_texdir}/texmf-dist/fonts/map/dvips/tetex/dvipdfm35.oldmap + +# SCRIPTLETS %pretrans -p path = "/usr/share/texmf" @@ -6352,28 +8829,40 @@ if st and st.type == "directory" then end %pre -rm -rf %{_datadir}/texlive/texmf-var -rm -rf %{_var}/lib/texmf/* +rm -rf %{_texdir}/texmf-var +rm -rf %{_texmf_var}/* : %posttrans if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then -[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_var}/lib/texmf/ +[ -x /sbin/restorecon ] && /sbin/restorecon -R %{_texmf_var}/ fi : -%transfiletriggerin -n texlive-kpathsea -- %{_datadir}/texlive -%{_bindir}/texhash 2> /dev/null || : +%transfiletriggerin -n %{shortname}-context -- %{_texdir} +export TEXMFLOCAL=/usr/share/texlive/texmf-local +%{_bindir}/mtxrun --generate &> /dev/null || : + +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir} +# Commented lines are DEBUG mode +# touch /usr/share/texlive/kpathsea.log +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --version 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr --verbose 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +# /usr/bin/sh -x %{_bindir}/texhash 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : export TEXMF=/usr/share/texlive/texmf-dist export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c export TEXMFCACHE=/var/lib/texmf -%{_bindir}/mtxrun --generate &> /dev/null || : +# %{_bindir}/fmtutil-sys --all 2>&1 | tee -a /usr/share/texlive/kpathsea.log || : %{_bindir}/fmtutil-sys --all &> /dev/null || : -%transfiletriggerpostun -n texlive-kpathsea -- %{_datadir}/texlive -%{_bindir}/texhash 2> /dev/null || : +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir} +/usr/share/texlive/texmf-dist/scripts/texlive/mktexlsr 2> /dev/null || : -%transfiletriggerin -n texlive-kpathsea -- %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ +%transfiletriggerin -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# MixedMap list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMixedMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# Map list, from directory with _EVERY_ tex subpackage unpacked: for i in `grep -r "addMap" tlpkg/ |cut -d ":" -f 2- | sort -n | uniq | cut -d " " -f 3`; do printf "$i|"; done +# NO OTHER MAPS SHOULD BE ADDED. That road leads to madness. list=`grep "\.map" | sort -n | uniq` while read -r line; do [ -z "$line" ] && continue @@ -6386,351 +8875,297 @@ while read -r line; do fi fi done <<< "$list" -# No updmap-map now, so we need to make system maps here. +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updmap-sys --quiet --force 2>&1 || : -%transfiletriggerpostun -n texlive-kpathsea -- %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ +%transfiletriggerpostun -n %{shortname}-kpathsea -- %{_texdir}/texmf-dist/fonts/map/dvips/ +# I am not sure we need to do this, but it is not harmful. +# TODO: see if we can safely remove everything above the updmap-sys calls list=`grep "\.map" | sort -n | uniq` while read -r line; do [ -z "$line" ] && continue shortfile=`basename "$line"` - if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cyrillic.map|dvng.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then + if `echo $shortfile | grep -Eq 'allrunes.map|arabtex.map|arss.map|artm.map|bbold.map|cbgreek-full.map|ccpl.map|cmextra.map|cmll.map|cm.map|cm-super-t1.map|cm-super-t2a.map|cm-super-t2b.map|cm-super-t2c.map|cm-super-ts1.map|cm-super-x2.map|cmtext-bsr-interpolated.map|cmupint.map|cyrillic.map|esint.map|ethiop.map|eurosym.map|hfbright.map|iby.map|latxfont.map|lxfonts.map|manfnt.map|mflogo.map|mongolian.map|musix.map|pigpen.map|plother.map|pltext.map|rsfs.map|semaf.map|stmaryrd.map|symbols.map|tipa.map|trajan.map|vnrother.map|vnrtext.map|wasy.map|xypic.map|yhmath.map'`; then %{_bindir}/updmap-sys --nomkmap --disable MixedMap=$shortfile >/dev/null 2>&1 || : else - %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + if `echo $shortfile | grep -Eq 'accanthis.map|Acorn.map|aesupp.map|Alegreya.map|AlgolRevived.map|almendra.map|AnnSton.map|AnonymousPro.map|antt.map|ap.map|arabi.map|archaicprw.map|arev.map|arevvn.map|arimo.map|ArrowsADF.map|ArtNouvc.map|ArtNouv.map|ascii.map|ascmac.map|aspectratio.map|atkinson.map|augie.map|auncial.map|aurical.map|Baskervaldx.map|BaskervilleF.map|belleek.map|bera.map|beuron.map|bguq.map|bitter.map|bkaiu.map|boondox.map|bsmiu.map|BulletsADF.map|burmese.map|cabin.map|caladea.map|calligra.map|cantarell.map|carlito.map|Carrickc.map|CascadiaCodThree.map|ccicons.map|charter.map|chartervn.map|chemarrow.map|cherokee.map|Chivo.map|cinzel.map|cjhebrew.map|Clara.map|ClearSans.map|clm.map|cmathbb.map|cmbrightvn.map|cmcyr.map|cmexb.map|cmin.map|cm-lgc.map|cmsrb.map|Cochineal.map|Coelacanth.map|comfortaa.map|ComicNeueAngular.map|ComicNeue.map|concretevn.map|CormorantGaramond.map|countriesofeurope.map|CourierOneZeroPitch.map|crimson.map|CrimsonPro.map|cs-charter.map|csfonts.map|cuprum.map|cyklop.map|dad.map|dante.map|dejavu-type1.map|dgj.map|dictsym.map|dmj.map|Domitian.map|droidsans.map|droidsansmono.map|droidserif.map|DSSerif.map|dstroke.map|dutchcal.map|EBGaramond.map|EBGaramond-Maths.map|Eichenla.map|EileenBl.map|Eileen.map|Elzevier.map|epigrafica.map|epiolmec.map|erewhon.map|esrelation.map|ESSTIX.map|esvect.map|ETbb.map|fbb.map|fdsymbol.map|fetamont.map|fge.map|fira.map|foekfont.map|fonetika.map|fontawesome5.map|fontawesome.map|forum.map|fourier.map|fourier-utopia-expert.map|fpls.map|frcursive.map|GaramondLibre.map|garuda-c90.map|gbsnu.map|gentium-type1.map|gfsartemisia.map|gfsbaskerville.map|gfsbodoni.map|gfscomplutum.map|gfsdidot.map|gfsneohellenic.map|gfsporson.map|gfssolomos.map|gillius.map|gkaiu.map|go.map|GotIn.map|GoudyIn.map|gptimes.map|grotesqvn.map|Gudea.map|hacm.map|Heuristica.map|HindMadurai.map|ibarra.map|icelandic.map|imfellEnglish.map|InriaSans.map|InriaSerif.map|Inter.map|ipaex-type1.map|iwona.map|josefin.map|Junicode.map|kerkis.map|Kinigcap.map|knitfont.map|Konanur.map|kpfonts.map|Kramer.map|kurier.map|l7x-urwvn.map|lato.map|libertinegc.map|libertine.map|libertinus.map|libertinust1math.map|LibreBaskerville.map|LibreBodoni.map|LibreCaslon.map|LibreFranklin.map|linearA.map|LinguisticsPro.map|lm.map|LobsterTwo.map|Magra.map|marcellus.map|marvosym.map|mathabx.map|mc2j.map|mcj.map|mdbch.map|mdgreek.map|mdici.map|mdpgd.map|mdpus.map|mdput.map|mdsymbol.map|mdugm.map|merriweather.map|miama.map|mintspirit.map|mlm.map|MnSymbol.map|Montserrat.map|MorrisIn.map|mr2j.map|mrj.map|mxedruli.map|nanumfonts.map|nectec.map|newpx.map|newtx.map|newtxsf.map|newtxtt.map|nf.map|niceframe.map|nimbus15.map|norasi-c90.map|noto.map|NotoMath.map|Nouveaud.map|oasy.map|ocrb.map|oinuit.map|OldStandard.map|omega.map|opensans.map|OrnementsADF.map|overlock.map|paratype-type1.map|pazo.map|pbsi.map|phaistos.map|PlayfairDisplay.map|plex.map|plimsoll.map|PoiretOne.map|prodint.map|pxfonts.map|pxtx.map|qag.map|qbk.map|qcr.map|qcs.map|qhv.map|qpl.map|qtm.map|quattrocento.map|qzc.map|Raleway.map|recycle.map|roboto.map|rojud.map|Romantik.map|Rosario.map|Rothdn.map|RoyalIn.map|rsfso.map|Sanremo.map|sansmathaccent.map|sansmathfonts.map|scanpages.map|ScholaX.map|sipa.map|SkakNew.map|skt.map|SourceCodePro.map|SourceSansPro.map|SourceSerifPro.map|spectral.map|sqrcaps.map|Starburst.map|starfont.map|STEPGreekTest.map|STEP.map|SticksTooText.map|stix2.map|stix.map|superiors.map|svrsymbols.map|syriac.map|tabvar.map|tempora.map|tfrupee.map|TheanoDidot.map|TheanoModern.map|TheanoOldStyle.map|tinos.map|tlwg.map|txfonts.map|txttvn.map|TXUprCal.map|Typocaps.map|uag.map|uaq.map|ubk.map|ucr.map|ugq.map|uhv.map|umj.map|unc.map|universalis.map|upl.map|urwvn.map|usy.map|utm.map|utopia.map|uzc.map|uzd.map|vntopia.map|XCharter.map|ybd.map|ybv.map|yes.map|yfrak.map|yly.map|yrd.map|yv1.map|yv2.map|yv3.map|yvo.map|yvt.map|Zallman.map|Zeroswald.map|zi4.map'`; then + %{_bindir}/updmap-sys --nomkmap --disable Map=$shortfile >/dev/null 2>&1 || : + fi fi done <<< "$list" -# No updmap-map now, so we need to make system maps here. +# With the demise of updmap-map, we need to make system maps here. +# %{_bindir}/updmap-sys --quiet --nomkmap >/dev/null || : yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updmap-sys --quiet --force 2>&1 || : -%transfiletriggerin -n texlive-kpathsea -P 2000000 -- %{_datadir}/texlive/fmtutil.cnf.d/ -%{_sbindir}/generate-fmtutilcnf %{_datadir}/texlive +%transfiletriggerin -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} -%transfiletriggerpostun -n texlive-kpathsea -P 2000000 -- %{_datadir}/texlive/fmtutil.cnf.d/ -%{_sbindir}/generate-fmtutilcnf %{_datadir}/texlive +%transfiletriggerpostun -n %{shortname}-kpathsea -P 2000000 -- %{_texdir}/fmtutil.cnf.d/ +%{_sbindir}/generate-fmtutilcnf %{_texdir} %files -%{_datadir}/texlive/licenses/ -%{_datadir}/texlive/texlive.tlpdb +%{_texdir}/licenses/ +%{_texdir}/texlive.tlpdb +%{_texdir}/tlpkg/texlive.tlpdb %{_rpmmacrodir}/macros.texlive -%dir %{_sysconfdir}/texlive -%dir %{_sysconfdir}/texlive/dvips -%dir %{_sysconfdir}/texlive/dvips/config -%dir %{_sysconfdir}/texlive/tex -%dir %{_sysconfdir}/texlive/tex/generic -%dir %{_sysconfdir}/texlive/tex/generic/config -%dir %{_sysconfdir}/texlive/web2c -%dir %{_datadir}/texlive -%dir %{_datadir}/texlive/texmf-dist -%dir %{_datadir}/texlive/texmf-dist/bibtex/ -%dir %{_datadir}/texlive/texmf-dist/bibtex/csf -%dir %{_datadir}/texlive/texmf-dist/bibtex/csf/base -%dir %{_datadir}/texlive/texmf-dist/doc -%dir %{_datadir}/texlive/texmf-dist/doc/info -%dir %{_datadir}/texlive/texmf-dist/doc/man -%dir %{_datadir}/texlive/texmf-dist/doc/man/man1 -%dir %{_datadir}/texlive/texmf-dist/doc/man/man5 -%dir %{_datadir}/texlive/texmf-dist/dvips -%dir %{_datadir}/texlive/texmf-dist/dvips/config -%dir %{_datadir}/texlive/texmf-dist/fonts -%dir %{_datadir}/texlive/texmf-dist/fonts/cmap -%dir %{_datadir}/texlive/texmf-dist/fonts/enc -%dir %{_datadir}/texlive/texmf-dist/fonts/enc/dvips -%dir %{_datadir}/texlive/texmf-dist/fonts/map -%dir %{_datadir}/texlive/texmf-dist/fonts/map/dvips -%dir %{_datadir}/texlive/texmf-dist/fonts/map/glyphlist -%dir %{_datadir}/texlive/texmf-dist/fonts/sfd -%dir %{_datadir}/texlive/texmf-dist/scripts -%dir %{_datadir}/texlive/texmf-dist/scripts/texlive -%dir %{_datadir}/texlive/texmf-dist/source -%dir %{_datadir}/texlive/texmf-dist/source/fonts -%dir %{_datadir}/texlive/texmf-dist/source/fonts/zhmetrics -%dir %{_datadir}/texlive/texmf-dist/tex -%dir %{_datadir}/texlive/texmf-dist/tex/generic -%dir %{_datadir}/texlive/texmf-dist/tex/generic/bibtex -%dir %{_datadir}/texlive/texmf-dist/tex/generic/config -%dir %{_datadir}/texlive/texmf-dist/tex/latex -%dir %{_datadir}/texlive/texmf-dist/tex/lualatex -%dir %{_datadir}/texlive/texmf-dist/tex/luatex -%dir %{_datadir}/texlive/texmf-dist/tex/xelatex -%dir %{_datadir}/texlive/texmf-dist/web2c +# Mostly we own directories. +%dir %{_sysconfdir}/%{shortname} +%dir %{_sysconfdir}/%{shortname}/dvips +%dir %{_sysconfdir}/%{shortname}/dvips/config +%dir %{_sysconfdir}/%{shortname}/tex +%dir %{_sysconfdir}/%{shortname}/tex/generic +%dir %{_sysconfdir}/%{shortname}/tex/generic/config +%dir %{_sysconfdir}/%{shortname}/web2c +%dir %{_texdir} +%dir %{_texdir}/texmf-dist +%dir %{_texdir}/texmf-dist/bibtex/ +%dir %{_texdir}/texmf-dist/bibtex/csf +%dir %{_texdir}/texmf-dist/bibtex/csf/base +%dir %{_texdir}/texmf-dist/doc +%dir %{_texdir}/texmf-dist/doc/info +%dir %{_texdir}/texmf-dist/doc/man +%dir %{_texdir}/texmf-dist/doc/man/man1 +%dir %{_texdir}/texmf-dist/doc/man/man5 +%dir %{_texdir}/texmf-dist/dvips +%dir %{_texdir}/texmf-dist/dvips/config +%dir %{_texdir}/texmf-dist/fonts +%dir %{_texdir}/texmf-dist/fonts/cmap +%dir %{_texdir}/texmf-dist/fonts/enc +%dir %{_texdir}/texmf-dist/fonts/enc/dvips +%dir %{_texdir}/texmf-dist/fonts/map +%dir %{_texdir}/texmf-dist/fonts/map/dvips +%dir %{_texdir}/texmf-dist/fonts/map/glyphlist +%dir %{_texdir}/texmf-dist/fonts/sfd +%dir %{_texdir}/texmf-dist/scripts +%dir %{_texdir}/texmf-dist/scripts/texlive +%dir %{_texdir}/texmf-dist/source +%dir %{_texdir}/texmf-dist/source/fonts +%dir %{_texdir}/texmf-dist/source/fonts/zhmetrics +%dir %{_texdir}/texmf-dist/tex +%dir %{_texdir}/texmf-dist/tex/generic +%dir %{_texdir}/texmf-dist/tex/generic/bibtex +%dir %{_texdir}/texmf-dist/tex/generic/config +%dir %{_texdir}/texmf-dist/tex/latex +%dir %{_texdir}/texmf-dist/tex/lualatex +%dir %{_texdir}/texmf-dist/tex/luatex +%dir %{_texdir}/texmf-dist/tex/xelatex +%dir %{_texdir}/texmf-dist/web2c %dir %{_texmf_var} -%{_datadir}/texlive/texmf-var -%{_datadir}/texlive/texmf-local/ +%doc %{_texdir}/doc.html +%{_texdir}/texmf-var +%{_texdir}/texmf-local/ %{_datadir}/texmf %ghost %{_datadir}/texmf.rpmmoved -%exclude %{_datadir}/texlive/install-tl -%exclude %{_datadir}/texlive/tlpkg/gpg/ -%exclude %{_datadir}/texlive/tlpkg/tltcl/ -%exclude %{_datadir}/texlive/tlpkg/tlpobj/ -%exclude %{_datadir}/texlive/texmf-dist/tlpkg/tlpobj/ - -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgr.pl.orig -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tl-errmess.vbs -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgrgui.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/uninstall-win32.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/uninstq.vbs -%exclude %{_datadir}/texlive/texmf-dist/scripts/tlcockpit/tlcockpit.sh -%exclude %{_datadir}/texlive/texmf-dist/scripts/tlshell/tlshell.tcl -%exclude %{_datadir}/texlive/tlpkg/installer/COPYING.MinGW-runtime.txt -%exclude %{_datadir}/texlive/tlpkg/installer/ctan-mirrors.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-extl.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-perltk.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-text.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-menu-wizard.pl -%exclude %{_datadir}/texlive/tlpkg/installer/install-tl-gui.tcl -%exclude %{_datadir}/texlive/tlpkg/installer/texlive.png -%exclude %{_bindir}//tlcockpit -%exclude %{_bindir}//tlshell -%exclude %{_datadir}/info/dir -%exclude %{_datadir}/texlive/readme-txt.dir/README.* -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/*.pdf -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/*.pdf -%exclude %{_datadir}/texlive/texmf-dist/doc/man/Makefile -%exclude %{_datadir}/texlive/texmf-dist/doc/man/man*/Makefile -%exclude %{_datadir}/texlive/texmf-dist/doc/info/dir -%exclude %{_includedir}/ptexenc - -%exclude %{_bindir}/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/scripts/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/doc/fonts/cjk-gs-integrate -%exclude %{_datadir}/texlive/texmf-dist/fonts/misc/cjk-gs-integrate - -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/mswin/* -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/win64/* -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/stubs/source/* - -%exclude %{_datadir}/texlive/texmf-dist/source/fonts/zhmetrics/ttfonts.map -# Don't know why it's here -%exclude %{_datadir}/man/man1/*.man1.pdf.gz -%exclude %{_datadir}/man/man5/*.man5.pdf.gz -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/extractres.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/includeres.pl -%exclude %{_datadir}/texlive/texmf-dist/scripts/texlive/psjoin.pl - -# Look, we disabled psutils. -%exclude %{_bindir}/epsffit -%exclude %{_bindir}/extractres -%exclude %{_bindir}/includeres -%exclude %{_bindir}/psbook -%exclude %{_bindir}/psjoin -%exclude %{_bindir}/psnup -%exclude %{_bindir}/psresize -%exclude %{_bindir}/psselect -%exclude %{_bindir}/pstops -%exclude %{_mandir}/man1/epsffit.1* -%exclude %{_mandir}/man1/extractres.1* -%exclude %{_mandir}/man1/includeres.1* -%exclude %{_mandir}/man1/psbook.1* -%exclude %{_mandir}/man1/psjoin.1* -%exclude %{_mandir}/man1/psnup.1* -%exclude %{_mandir}/man1/psresize.1* -%exclude %{_mandir}/man1/psselect.1* -%exclude %{_mandir}/man1/pstops.1* -%exclude %{_mandir}/man1/psutils.1* -%exclude %{_sysconfdir}/texlive/psutils -%exclude %{_datadir}/texlive/texmf-dist/scripts/psutils -%exclude %{_datadir}/texlive/texmf-dist/dvips/getafm/ -%exclude %{_datadir}/texlive/texmf-dist/psutils/paper.cfg - -%files -n texlive-a2ping + +%files -n %{shortname}-a2ping %license gpl.txt %{_bindir}/a2ping -%{_datadir}/texlive/texmf-dist/scripts/a2ping/ +%{_texdir}/texmf-dist/scripts/a2ping/ %{_mandir}/man1/a2ping.1* -%doc %{_datadir}/texlive/texmf-dist/doc/support/a2ping/ +%doc %{_texdir}/texmf-dist/doc/support/a2ping/ -%files -n texlive-accfonts +%files -n %{shortname}-accfonts %license gpl.txt %{_bindir}/mkt1font %{_bindir}/vpl2ovp %{_bindir}/vpl2vpl -%{_datadir}/texlive/texmf-dist/scripts/accfonts/ -%{_datadir}/texlive/texmf-dist/tex/latex/accfonts/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/accfonts/ +%{_texdir}/texmf-dist/scripts/accfonts/ +%{_texdir}/texmf-dist/tex/latex/accfonts/ +%doc %{_texdir}/texmf-dist/doc/fonts/accfonts/ -%files -n texlive-adhocfilelist +%files -n %{shortname}-adhocfilelist %license lppl1.txt %{_bindir}/adhocfilelist -%{_datadir}/texlive/texmf-dist/scripts/adhocfilelist/ -%{_datadir}/texlive/texmf-dist/tex/support/adhocfilelist/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/adhocfilelist/ +%{_texdir}/texmf-dist/scripts/adhocfilelist/ +%{_texdir}/texmf-dist/tex/support/adhocfilelist/ +%doc %{_texdir}/texmf-dist/doc/support/adhocfilelist/ -%files -n texlive-afm2pl +%files -n %{shortname}-afm2pl %license lppl1.txt %{_bindir}/afm2pl %{_mandir}/man1/afm2pl.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/afm2pl/ -%{_datadir}/texlive/texmf-dist/fonts/lig/afm2pl/ -%{_datadir}/texlive/texmf-dist/tex/fontinst/afm2pl/ +%{_texdir}/texmf-dist/fonts/enc/dvips/afm2pl/ +%{_texdir}/texmf-dist/fonts/lig/afm2pl/ +%{_texdir}/texmf-dist/tex/fontinst/afm2pl/ -%files -n texlive-albatross +%files -n %{shortname}-albatross %license bsd.txt %{_bindir}/albatross %{_mandir}/man1/albatross.* -%doc %{_datadir}/texlive/texmf-dist/doc/support/albatross -%{_datadir}/texlive/texmf-dist/scripts/albatross +%doc %{_texdir}/texmf-dist/doc/support/albatross +%{_texdir}/texmf-dist/scripts/albatross -%files -n texlive-aleph +%files -n %{shortname}-aleph %license gpl.txt %{_bindir}/aleph # symlink to aleph, not created in 2021 # %%{_bindir}/lamed %{_mandir}/man1/aleph.1* -%{_mandir}/man1/lamed.1* -%{_datadir}/texlive/fmtutil.cnf.d/aleph -%doc %{_datadir}/texlive/texmf-dist/doc/aleph/ +# %%{_mandir}/man1/lamed.1* +%{fmtutil_cnf_d}/aleph +%doc %{_texdir}/texmf-dist/doc/aleph/ -%files -n texlive-amstex +%files -n %{shortname}-amstex %license lppl1.txt %{_bindir}/amstex %{_mandir}/man1/amstex.1* -%{_datadir}/texlive/texmf-dist/tex/amstex/base/ -%{_datadir}/texlive/texmf-dist/tex/amstex/config/ -%{_datadir}/texlive/fmtutil.cnf.d/amstex -%doc %{_datadir}/texlive/texmf-dist/doc/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/base/ +%{_texdir}/texmf-dist/tex/amstex/config/ +%{fmtutil_cnf_d}/amstex +%doc %{_texdir}/texmf-dist/doc/amstex/base/ -%files -n texlive-arara +%files -n %{shortname}-arara %license bsd.txt %{_bindir}/arara %{_mandir}/man1/arara.* -%{_datadir}/texlive/texmf-dist/scripts/arara/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/arara/ +%{_texdir}/texmf-dist/scripts/arara/ +%doc %{_texdir}/texmf-dist/doc/support/arara/ -%files -n texlive-attachfile2 +%files -n %{shortname}-attachfile2 %license lppl1.3.txt %{_bindir}/pdfatfi %{_mandir}/man1/pdfatfi.1* -%{_datadir}/texlive/texmf-dist/scripts/attachfile2/ -%{_datadir}/texlive/texmf-dist/tex/latex/attachfile2/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/attachfile2/ +%{_texdir}/texmf-dist/scripts/attachfile2/ +%{_texdir}/texmf-dist/tex/latex/attachfile2/ +%doc %{_texdir}/texmf-dist/doc/latex/attachfile2/ -%files -n texlive-authorindex +%files -n %{shortname}-authorindex %license lppl1.txt %{_bindir}/authorindex -%{_datadir}/texlive/texmf-dist/scripts/authorindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/authorindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/authorindex/ +%{_texdir}/texmf-dist/scripts/authorindex/ +%{_texdir}/texmf-dist/tex/latex/authorindex/ +%doc %{_texdir}/texmf-dist/doc/latex/authorindex/ -%files -n texlive-autosp +%files -n %{shortname}-autosp %license gpl2.txt %{_bindir}/autosp %{_bindir}/tex2aspc %{_mandir}/man1/autosp.1* %{_mandir}/man1/tex2aspc.1* -%doc %{_datadir}/texlive/texmf-dist/doc/generic/autosp/ +%doc %{_texdir}/texmf-dist/doc/generic/autosp/ -%files -n texlive-axodraw2 +%files -n %{shortname}-axodraw2 %license gpl3.txt %{_bindir}/axohelp %{_mandir}/man1/axohelp.1* -%{_datadir}/texlive/texmf-dist/tex/latex/axodraw2/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/axodraw2/ +%{_texdir}/texmf-dist/tex/latex/axodraw2/ +%doc %{_texdir}/texmf-dist/doc/latex/axodraw2/ -%files -n texlive-bib2gls +%files -n %{shortname}-bib2gls %license gpl3.txt %{_bindir}/bib2gls %{_bindir}/convertgls2bib -%{_datadir}/texlive/texmf-dist/scripts/bib2gls/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/bib2gls/ - -%files -n texlive-bibexport +%{_mandir}/man1/bib2gls.1* +%{_mandir}/man1/convertgls2bib.1* +%{_texdir}/texmf-dist/scripts/bib2gls/ +%doc %{_texdir}/texmf-dist/doc/support/bib2gls/ + +%files -n %{shortname}-bibcop +%license mit.txt +%doc %{_texdir}/texmf-dist/doc/bibtex/bibcop +%{_bindir}/bibcop +%{_mandir}/man1/bibcop.1* +%{_texdir}/texmf-dist/scripts/bibcop +%{_texdir}/texmf-dist/tex/latex/bibcop + +%files -n %{shortname}-bibexport %license lppl1.3.txt %{_bindir}/bibexport %{_bindir}/bibexport.sh -%{_datadir}/texlive/texmf-dist/bibtex/bst/bibexport/ -%{_datadir}/texlive/texmf-dist/scripts/bibexport/ -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/bibexport/ +%{_texdir}/texmf-dist/bibtex/bst/bibexport/ +%{_texdir}/texmf-dist/scripts/bibexport/ +%doc %{_texdir}/texmf-dist/doc/bibtex/bibexport/ -%files -n texlive-bibtex +%files -n %{shortname}-bibtex %license knuth.txt %{_bindir}/bibtex %{_mandir}/man1/bibtex.1* -%{_datadir}/texlive/texmf-dist/bibtex/bib/base/xampl.bib -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/abbrv.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/acm.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/alpha.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/apalike.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/ieeetr.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/plain.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/siam.bst -%{_datadir}/texlive/texmf-dist/bibtex/bst/base/unsrt.bst -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/README -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxbst.doc -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.bib -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.pdf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxdoc.tex -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxhak.pdf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/base/btxhak.tex -%{_datadir}/texlive/texmf-dist/tex/generic/bibtex/apalike.sty -%{_datadir}/texlive/texmf-dist/tex/generic/bibtex/apalike.tex - -%files -n texlive-bibtexu +%{_texdir}/texmf-dist/bibtex/bib/base/xampl.bib +%{_texdir}/texmf-dist/bibtex/bst/base/abbrv.bst +%{_texdir}/texmf-dist/bibtex/bst/base/acm.bst +%{_texdir}/texmf-dist/bibtex/bst/base/alpha.bst +%{_texdir}/texmf-dist/bibtex/bst/base/apalike.bst +%{_texdir}/texmf-dist/bibtex/bst/base/ieeetr.bst +%{_texdir}/texmf-dist/bibtex/bst/base/plain.bst +%{_texdir}/texmf-dist/bibtex/bst/base/siam.bst +%{_texdir}/texmf-dist/bibtex/bst/base/unsrt.bst +%doc %{_texdir}/texmf-dist/doc/bibtex/base/README +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxbst.doc +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.bib +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxdoc.tex +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.pdf +%doc %{_texdir}/texmf-dist/doc/bibtex/base/btxhak.tex +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.sty +%{_texdir}/texmf-dist/tex/generic/bibtex/apalike.tex + +%files -n %{shortname}-bibtexu %license lppl1.txt %{_bindir}/bibtexu -%doc %{_datadir}/texlive/texmf-dist/doc/bibtexu/ +%doc %{_texdir}/texmf-dist/doc/bibtexu/ %{_mandir}/man1/bibtexu.1* -%files -n texlive-bibtex8 +%files -n %{shortname}-bibtex8 %license gpl.txt %{_bindir}/bibtex8 -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/88591lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/88591sca.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/README.TEXLIVE -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/ascii.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp437lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp850lat.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp850sca.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/cp866rus.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/base/csfile.txt -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/88592pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf -%{_datadir}/texlive/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex8/ +%{_texdir}/texmf-dist/bibtex/csf/base/88591lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/88591sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/README.TEXLIVE +%{_texdir}/texmf-dist/bibtex/csf/base/ascii.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp437lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850lat.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp850sca.csf +%{_texdir}/texmf-dist/bibtex/csf/base/cp866rus.csf +%{_texdir}/texmf-dist/bibtex/csf/base/csfile.txt +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/88592pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/cp852pl.csf +%{_texdir}/texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf +%doc %{_texdir}/texmf-dist/doc/bibtex8/ %{_mandir}/man1/bibtex8.1* -%files -n texlive-bundledoc +%files -n %{shortname}-bundledoc %license lppl1.txt %{_bindir}/arlatex %{_bindir}/bundledoc %{_mandir}/man1/arlatex.1* %{_mandir}/man1/bundledoc.1* -%{_datadir}/texlive/texmf-dist/scripts/bundledoc/ -%{_datadir}/texlive/texmf-dist/tex/latex/bundledoc/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/bundledoc/ +%{_texdir}/texmf-dist/scripts/bundledoc/ +%{_texdir}/texmf-dist/tex/latex/bundledoc/ +%doc %{_texdir}/texmf-dist/doc/support/bundledoc/ -%files -n texlive-cachepic +%files -n %{shortname}-cachepic %license lppl1.3.txt %{_bindir}/cachepic -%{_datadir}/texlive/texmf-dist/scripts/cachepic/ -%{_datadir}/texlive/texmf-dist/tex/latex/cachepic/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/cachepic/ +%{_texdir}/texmf-dist/scripts/cachepic/ +%{_texdir}/texmf-dist/tex/latex/cachepic/ +%doc %{_texdir}/texmf-dist/doc/latex/cachepic/ -%files -n texlive-checkcites +%files -n %{shortname}-checkcites %license lppl1.3.txt %{_bindir}/checkcites -%{_datadir}/texlive/texmf-dist/scripts/checkcites/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/checkcites/ +%{_texdir}/texmf-dist/scripts/checkcites/ +%doc %{_texdir}/texmf-dist/doc/support/checkcites/ -%files -n texlive-checklistings +%files -n %{shortname}-checklistings %license lppl1.2.txt %{_bindir}/checklistings -%{_datadir}/texlive/texmf-dist/scripts/checklistings/ -%{_datadir}/texlive/texmf-dist/tex/latex/checklistings/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/checklistings/ +%{_texdir}/texmf-dist/scripts/checklistings/ +%{_texdir}/texmf-dist/tex/latex/checklistings/ +%doc %{_texdir}/texmf-dist/doc/latex/checklistings/ -%files -n texlive-chklref +%files -n %{shortname}-chklref %license gpl3.txt %{_bindir}/chklref %{_mandir}/man1/chklref.1* -%{_datadir}/texlive/texmf-dist/scripts/chklref/ -%{_datadir}/texlive/texmf-dist/tex/latex/chklref/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/chklref/ +%{_texdir}/texmf-dist/scripts/chklref/ +%{_texdir}/texmf-dist/tex/latex/chklref/ +%doc %{_texdir}/texmf-dist/doc/support/chklref/ -%files -n texlive-chktex +%files -n %{shortname}-chktex %license gpl.txt %{_bindir}/chktex %{_bindir}/chkweb @@ -6738,20 +9173,28 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/chktex.1* %{_mandir}/man1/chkweb.1* %{_mandir}/man1/deweb.1* -%{_datadir}/texlive/texmf-dist/chktex/ -%{_datadir}/texlive/texmf-dist/scripts/chktex/ -%doc %{_datadir}/texlive/texmf-dist/doc/chktex/ +%{_texdir}/texmf-dist/chktex/ +%{_texdir}/texmf-dist/scripts/chktex/ +%doc %{_texdir}/texmf-dist/doc/chktex/ + +%files -n %{shortname}-citation-style-language +%license mit.txt cc-by-sa-3.txt +%{_bindir}/citeproc-lua +%{_mandir}/man1/citeproc-lua.1* +%{_texdir}/texmf-dist/scripts/citation-style-language/ +%{_texdir}/texmf-dist/tex/latex/citation-style-language/ +%doc %{_texdir}/texmf-dist/doc/latex/citation-style-language/ %if 0 -%files -n texlive-cjk-gs-integrate +%files -n %{shortname}-cjk-gs-integrate %license gpl3.txt %{_bindir}/cjk-gs-integrate -%{_datadir}/texlive/texmf-dist/scripts/cjk-gs-integrate/ -%{_datadir}/texlive/texmf-dist/fonts/misc/cjk-gs-integrate/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/scripts/cjk-gs-integrate/ +%{_texdir}/texmf-dist/fonts/misc/cjk-gs-integrate/ +%doc %{_texdir}/texmf-dist/doc/fonts/cjk-gs-integrate/ %endif -%files -n texlive-cjkutils +%files -n %{shortname}-cjkutils %license lppl1.txt %{_bindir}/bg5+latex %{_bindir}/bg5+pdflatex @@ -6781,30 +9224,31 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/extconv.1* %{_mandir}/man1/hbf2gf.1* %{_mandir}/man1/sjisconv.1* -%{_datadir}/texlive/texmf-dist/hbf2gf/ +%{_texdir}/texmf-dist/hbf2gf/ -%files -n texlive-clojure-pamphlet +%files -n %{shortname}-clojure-pamphlet %license gpl3.txt %{_bindir}/pamphletangler -%{_datadir}/texlive/texmf-dist/scripts/clojure-pamphlet/ -%{_datadir}/texlive/texmf-dist/tex/latex/clojure-pamphlet/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/clojure-pamphlet/ +%{_mandir}/man1/pamphletangler.1* +%{_texdir}/texmf-dist/scripts/clojure-pamphlet/ +%{_texdir}/texmf-dist/tex/latex/clojure-pamphlet/ +%doc %{_texdir}/texmf-dist/doc/support/clojure-pamphlet/ -%files -n texlive-cluttex +%files -n %{shortname}-cluttex %license gpl3.txt %{_bindir}/cllualatex %{_bindir}/cluttex %{_bindir}/clxelatex -%{_datadir}/texlive/texmf-dist/scripts/cluttex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/cluttex/ +%{_texdir}/texmf-dist/scripts/cluttex/ +%doc %{_texdir}/texmf-dist/doc/support/cluttex/ -%files -n texlive-context +%files -n %{shortname}-context %{_bindir}/context -%{_bindir}/contextjit -%{_bindir}/luatools +# %%{_bindir}/contextjit +# %%{_bindir}/luatools %{_bindir}/mtxrun -%{_bindir}/mtxrunjit -%{_bindir}/texexec +# %%{_bindir}/mtxrunjit +# %%{_bindir}/texexec %{_bindir}/texmfstart %{_mandir}/man1/context.1* %{_mandir}/man1/luatools.1* @@ -6835,6 +9279,7 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/mtx-rsync.1* %{_mandir}/man1/mtx-scite.1* %{_mandir}/man1/mtx-server.1* +%{_mandir}/man1/mtx-spell.1* %{_mandir}/man1/mtx-texworks.1* %{_mandir}/man1/mtx-timing.1* %{_mandir}/man1/mtx-tools.1* @@ -6845,44 +9290,49 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/mtx-watch.1* %{_mandir}/man1/mtx-youless.1* %{_mandir}/man1/mtxrun.1* -%{_mandir}/man1/texexec.1* -%{_mandir}/man1/texmfstart.1* -%{_datadir}/texlive/texmf-dist/bibtex/bst/context/ -%{_datadir}/texlive/texmf-dist/context/ -%{_datadir}/texlive/texmf-dist/fonts/afm/hoekwater/context/contnav.afm -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap -%{_datadir}/texlive/texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/context/ -# %%{_datadir}/texlive/texmf-dist/fonts/fea/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/luatex/context/ -%{_datadir}/texlive/texmf-dist/fonts/map/pdftex/context/ -%{_datadir}/texlive/texmf-dist/fonts/misc/xetex/fontmapping/context/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/hoekwater/context/ -%{_datadir}/texlive/texmf-dist/fonts/type1/hoekwater/context/ -%{_datadir}/texlive/texmf-dist/metapost/context/ -%exclude %{_datadir}/texlive/texmf-dist/scripts/context/perl/mptopdf.pl -%{_datadir}/texlive/texmf-dist/scripts/context/ -%{_datadir}/texlive/texmf-dist/tex/context/ -%exclude %{_datadir}/texlive/texmf-dist/tex/generic/context/mptopdf -%{_datadir}/texlive/texmf-dist/tex/generic/context/ -%{_datadir}/texlive/texmf-dist/tex/latex/context/ -%{_datadir}/texlive/fmtutil.cnf.d/context - -%files -n texlive-context-doc -%doc %{_datadir}/texlive/texmf-dist/doc/context/ - -%files -n texlive-convbkmk +# %%{_mandir}/man1/texexec.1* +# %%{_mandir}/man1/texmfstart.1* +%{_texdir}/texmf-dist/bibtex/bst/context/ +%{_texdir}/texmf-dist/context/ +%{_texdir}/texmf-dist/fonts/afm/hoekwater/context/contnav.afm +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-CNS1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-GB1-4.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Identity-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-5.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap +%{_texdir}/texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap +# %%{_texdir}/texmf-dist/fonts/enc/dvips/context/ +# %%{_texdir}/texmf-dist/fonts/fea/context/ +%{_texdir}/texmf-dist/fonts/map/dvips/context/ +%{_texdir}/texmf-dist/fonts/map/luatex/context/ +%{_texdir}/texmf-dist/fonts/map/pdftex/context/ +%{_texdir}/texmf-dist/fonts/misc/xetex/fontmapping/context/ +%{_texdir}/texmf-dist/fonts/tfm/hoekwater/context/ +%{_texdir}/texmf-dist/fonts/type1/hoekwater/context/ +%{_texdir}/texmf-dist/metapost/context/ +%exclude %{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/scripts/context/ +%{_texdir}/texmf-dist/tex/context/ +# these four are in mptopdf +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%exclude %{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%exclude %{_texdir}/texmf-dist/tex/generic/context/mptopdf +%{_texdir}/texmf-dist/tex/generic/context/ +%{_texdir}/texmf-dist/tex/latex/context/ +# %%{fmtutil_cnf_d}/context + +%files -n %{shortname}-context-doc +%doc %{_texdir}/texmf-dist/doc/context/ + +%files -n %{shortname}-convbkmk %{_bindir}/convbkmk -%{_datadir}/texlive/texmf-dist/scripts/convbkmk/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/convbkmk/ +%{_texdir}/texmf-dist/scripts/convbkmk/ +%doc %{_texdir}/texmf-dist/doc/support/convbkmk/ -%files -n texlive-crossrefware +%files -n %{shortname}-crossrefware %license gpl.txt %{_bindir}/bbl2bib %{_bindir}/bibdoiadd @@ -6896,146 +9346,153 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/biburl2doi.1* %{_mandir}/man1/bibzbladd.1* %{_mandir}/man1/ltx2crossrefxml.1* -%{_datadir}/texlive/texmf-dist/scripts/crossrefware/ -%{_datadir}/texlive/texmf-dist/tex/latex/crossrefware/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/crossrefware/ +%{_texdir}/texmf-dist/scripts/crossrefware/ +%{_texdir}/texmf-dist/tex/latex/crossrefware/ +%doc %{_texdir}/texmf-dist/doc/support/crossrefware/ -%files -n texlive-cslatex +%files -n %{shortname}-cslatex %license gpl.txt %{_bindir}/cslatex %{_bindir}/pdfcslatex -%{_datadir}/texlive/texmf-dist/tex/cslatex/ -%{_datadir}/texlive/fmtutil.cnf.d/cslatex +%{_texdir}/texmf-dist/tex/cslatex/ +%{fmtutil_cnf_d}/cslatex -%files -n texlive-csplain +%files -n %{shortname}-csplain %{_bindir}/csplain %{_bindir}/pdfcsplain -%{_datadir}/texlive/texmf-dist/tex/csplain/ -%{_datadir}/texlive/fmtutil.cnf.d/csplain +%{_texdir}/texmf-dist/tex/csplain/ +%{fmtutil_cnf_d}/csplain -%files -n texlive-ctan-o-mat +%files -n %{shortname}-ctan-o-mat %license bsd.txt %{_bindir}/ctan-o-mat %{_mandir}/man1/ctan-o-mat.1* -%{_datadir}/texlive/texmf-dist/scripts/ctan-o-mat/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctan-o-mat/ +%{_texdir}/texmf-dist/scripts/ctan-o-mat/ +%doc %{_texdir}/texmf-dist/doc/support/ctan-o-mat/ -%files -n texlive-ctanbib +%files -n %{shortname}-ctanbib %license lppl1.3.txt %{_bindir}/ctanbib %{_mandir}/man1/ctanbib.1* -%{_datadir}/texlive/texmf-dist/scripts/ctanbib/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctanbib/ +%{_texdir}/texmf-dist/scripts/ctanbib/ +%doc %{_texdir}/texmf-dist/doc/support/ctanbib/ -%files -n texlive-ctanify +%files -n %{shortname}-ctanify %license lppl1.3.txt %{_bindir}/ctanify %{_mandir}/man1/ctanify.1* -%{_datadir}/texlive/texmf-dist/scripts/ctanify/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ctanify/ +%{_texdir}/texmf-dist/scripts/ctanify/ +%doc %{_texdir}/texmf-dist/doc/latex/ctanify/ -%files -n texlive-ctanupload +%files -n %{shortname}-ctanupload %license gpl3.txt %{_bindir}/ctanupload -%{_datadir}/texlive/texmf-dist/scripts/ctanupload/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ctanupload/ +%{_texdir}/texmf-dist/scripts/ctanupload/ +%doc %{_texdir}/texmf-dist/doc/support/ctanupload/ -%files -n texlive-ctie +%files -n %{shortname}-ctie %license gpl.txt %{_bindir}/ctie %{_mandir}/man1/ctie.1* -%files -n texlive-cweb +%files -n %{shortname}-cweb %license knuth.txt %{_bindir}/ctangle %{_bindir}/ctwill %{_bindir}/ctwill-refsort %{_bindir}/ctwill-twinx %{_bindir}/cweave +%{_bindir}/twill %{_mandir}/man1/ctangle.1* %{_mandir}/man1/ctwill.1* %{_mandir}/man1/ctwill-refsort.1* %{_mandir}/man1/ctwill-twinx.1* %{_mandir}/man1/cweave.1* %{_mandir}/man1/cweb.1* -%{_datadir}/texlive/texmf-dist/tex/plain/cweb/ -%doc %{_datadir}/texlive/texmf-dist/doc/plain/cweb/ +%{_mandir}/man1/twill.1* +%{_texdir}/texmf-dist/tex/plain/cweb/ -%files -n texlive-cyrillic +%files -n %{shortname}-cyrillic %license lppl1.3.txt %{_bindir}/rubibtex %{_bindir}/rumakeindex %{_mandir}/man1/rubibtex.1* %{_mandir}/man1/rumakeindex.1* -%{_datadir}/texlive/texmf-dist/tex/latex/cyrillic/ -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/rubibtex.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/rumakeindex.sh -%doc %{_datadir}/texlive/texmf-dist/doc/latex/cyrillic/ +%{_texdir}/texmf-dist/tex/latex/cyrillic/ +%{_texdir}/texmf-dist/scripts/texlive-extra/rubibtex.sh +%{_texdir}/texmf-dist/scripts/texlive-extra/rumakeindex.sh +%doc %{_texdir}/texmf-dist/doc/latex/cyrillic/ -%files -n texlive-de-macro +%files -n %{shortname}-de-macro %{_bindir}/de-macro -%{_datadir}/texlive/texmf-dist/scripts/de-macro/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/de-macro/ +%{_texdir}/texmf-dist/scripts/de-macro/ +%doc %{_texdir}/texmf-dist/doc/support/de-macro/ -%files -n texlive-detex +%files -n %{shortname}-detex %{_bindir}/detex %{_mandir}/man1/detex.1* -%files -n texlive-diadia +%files -n %{shortname}-diadia %license lppl1.txt %{_bindir}/diadia -%{_datadir}/texlive/texmf-dist/scripts/diadia/ -%{_datadir}/texlive/texmf-dist/tex/latex/diadia/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/diadia/ +%{_texdir}/texmf-dist/scripts/diadia/ +%{_texdir}/texmf-dist/tex/latex/diadia/ +%doc %{_texdir}/texmf-dist/doc/latex/diadia/ + +%files -n %{shortname}-digestif +%license gpl3.txt lppl1.3.txt fdl.txt +%{_bindir}/digestif +%{_texdir}/texmf-dist/scripts/digestif +%doc %{_texdir}/texmf-dist/doc/support/digestif -%files -n texlive-dosepsbin +%files -n %{shortname}-dosepsbin %{_bindir}/dosepsbin %{_mandir}/man1/dosepsbin.1* -%{_datadir}/texlive/texmf-dist/scripts/dosepsbin/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/dosepsbin/ +%{_texdir}/texmf-dist/scripts/dosepsbin/ +%doc %{_texdir}/texmf-dist/doc/support/dosepsbin/ -%files -n texlive-dtl +%files -n %{shortname}-dtl %license pd.txt %{_bindir}/dt2dv %{_bindir}/dv2dt %{_mandir}/man1/dt2dv.1* %{_mandir}/man1/dv2dt.1* -%files -n texlive-dtxgen +%files -n %{shortname}-dtxgen %license gpl.txt %{_bindir}/dtxgen -%{_datadir}/texlive/texmf-dist/scripts/dtxgen/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/dtxgen/ +%{_texdir}/texmf-dist/scripts/dtxgen/ +%doc %{_texdir}/texmf-dist/doc/support/dtxgen/ -%files -n texlive-dvi2tty +%files -n %{shortname}-dvi2tty %license gpl.txt %{_bindir}/disdvi %{_bindir}/dvi2tty %{_mandir}/man1/disdvi.1* %{_mandir}/man1/dvi2tty.1* -%files -n texlive-dviasm +%files -n %{shortname}-dviasm %license gpl3.txt %{_bindir}/dviasm %{_mandir}/man1/dviasm.1* -%{_datadir}/texlive/texmf-dist/scripts/dviasm/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/dviasm/ +%{_texdir}/texmf-dist/scripts/dviasm/ +%doc %{_texdir}/texmf-dist/doc/latex/dviasm/ -%files -n texlive-dvicopy +%files -n %{shortname}-dvicopy %license gpl.txt %{_bindir}/dvicopy %{_mandir}/man1/dvicopy.1* -%files -n texlive-dvidvi +%files -n %{shortname}-dvidvi %{_bindir}/dvidvi %{_mandir}/man1/dvidvi.1* -%files -n texlive-dviinfox +%files -n %{shortname}-dviinfox %{_bindir}/dviinfox -%{_datadir}/texlive/texmf-dist/scripts/dviinfox/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/dviinfox/ +%{_texdir}/texmf-dist/scripts/dviinfox/ +%doc %{_texdir}/texmf-dist/doc/latex/dviinfox/ -%files -n texlive-dviljk +%files -n %{shortname}-dviljk %license gpl.txt %{_bindir}/dvihp %{_bindir}/dvilj @@ -7050,13 +9507,13 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/dvilj4l.1* %{_mandir}/man1/dvilj6.1* -%files -n texlive-dviout-util +%files -n %{shortname}-dviout-util %{_bindir}/chkdvifont %{_bindir}/dvispc %{_mandir}/man1/chkdvifont.1* %{_mandir}/man1/dvispc.1* -%files -n texlive-dvipdfmx +%files -n %{shortname}-dvipdfmx %license gpl.txt %{_bindir}/dvipdfm %{_bindir}/dvipdfmx @@ -7069,137 +9526,137 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ebb.1* %{_mandir}/man1/extractbb.1* %{_mandir}/man1/xdvipdfmx.1* -%{_datadir}/texlive/texmf-dist/dvipdfmx/ -%{_datadir}/texlive/texmf-dist/fonts/cmap/dvipdfmx/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ -%exclude %{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ -%{_datadir}/texlive/tlpkg/tlpostcode/dvipdfmx.pl -%doc %{_datadir}/texlive/texmf-dist/doc/dvipdfm/ -%doc %{_datadir}/texlive/texmf-dist/doc/dvipdfmx/ - -%files -n texlive-dvipng +%{_texdir}/texmf-dist/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/cmap/dvipdfmx/ +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ +%exclude %{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps/ +%{_texdir}/tlpkg/tlpostcode/dvipdfmx.pl +%doc %{_texdir}/texmf-dist/doc/dvipdfm/ +%doc %{_texdir}/texmf-dist/doc/dvipdfmx/ + +%files -n %{shortname}-dvipng %license lgpl2.1.txt %{_bindir}/dvigif %{_bindir}/dvipng %{_mandir}/man1/dvigif.1* %{_mandir}/man1/dvipng.1* %{_infodir}/dvipng.info* -%doc %{_datadir}/texlive/texmf-dist/doc/dvipng/ +%doc %{_texdir}/texmf-dist/doc/dvipng/ -%files -n texlive-dvipos +%files -n %{shortname}-dvipos %license lppl1.txt %{_bindir}/dvipos %{_mandir}/man1/dvipos.1* -%files -n texlive-dvips +%files -n %{shortname}-dvips %license gpl.txt %{_bindir}/afm2tfm %{_bindir}/dvips %{_mandir}/man1/afm2tfm.1* %{_mandir}/man1/dvips.1* %{_infodir}/dvips.info* -%{_datadir}/texlive/texmf-dist/dvips/base/ -%{_datadir}/texlive/texmf-dist/dvips/config/alt-rule.pro -%{_datadir}/texlive/texmf-dist/dvips/config/canonex.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/config.bakoma -%{_datadir}/texlive/texmf-dist/dvips/config/config.canonex -%{_datadir}/texlive/texmf-dist/dvips/config/config.cx -%{_datadir}/texlive/texmf-dist/dvips/config/config.deskjet -%{_datadir}/texlive/texmf-dist/dvips/config/config.dvired -%{_datadir}/texlive/texmf-dist/dvips/config/config.epson -%{_datadir}/texlive/texmf-dist/dvips/config/config.ibmvga -%{_datadir}/texlive/texmf-dist/dvips/config/config.ljfour -%{_datadir}/texlive/texmf-dist/dvips/config/config.luc -%{_datadir}/texlive/texmf-dist/dvips/config/config.mbn -%{_datadir}/texlive/texmf-dist/dvips/config/config.mga -%{_datadir}/texlive/texmf-dist/dvips/config/config.mirrorprint -%{_datadir}/texlive/texmf-dist/dvips/config/config.ot2 +%{_texdir}/texmf-dist/dvips/base/ +%{_texdir}/texmf-dist/dvips/config/alt-rule.pro +%{_texdir}/texmf-dist/dvips/config/canonex.cfg +%{_texdir}/texmf-dist/dvips/config/config.bakoma +%{_texdir}/texmf-dist/dvips/config/config.canonex +%{_texdir}/texmf-dist/dvips/config/config.cx +%{_texdir}/texmf-dist/dvips/config/config.deskjet +%{_texdir}/texmf-dist/dvips/config/config.dvired +%{_texdir}/texmf-dist/dvips/config/config.epson +%{_texdir}/texmf-dist/dvips/config/config.ibmvga +%{_texdir}/texmf-dist/dvips/config/config.ljfour +%{_texdir}/texmf-dist/dvips/config/config.luc +%{_texdir}/texmf-dist/dvips/config/config.mbn +%{_texdir}/texmf-dist/dvips/config/config.mga +%{_texdir}/texmf-dist/dvips/config/config.mirrorprint +%{_texdir}/texmf-dist/dvips/config/config.ot2 %config(noreplace) %{_sysconfdir}/texlive/dvips/config/config.ps -%{_datadir}/texlive/texmf-dist/dvips/config/config.ps -%{_datadir}/texlive/texmf-dist/dvips/config/config.qms -%{_datadir}/texlive/texmf-dist/dvips/config/config.toshiba -%{_datadir}/texlive/texmf-dist/dvips/config/config.unms -%{_datadir}/texlive/texmf-dist/dvips/config/config.xyp -%{_datadir}/texlive/texmf-dist/dvips/config/cx.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/deskjet.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/dfaxhigh.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/dvired.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/epson.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/ibmvga.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/ljfour.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/qms.cfg -%{_datadir}/texlive/texmf-dist/dvips/config/toshiba.cfg -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/base/ -%dir %{_datadir}/texlive/texmf-dist/fonts/map/dvips/ -%{_datadir}/texlive/texmf-dist/tex/generic/dvips/ -%doc %{_datadir}/texlive/texmf-dist/doc/dvips/ - -%files -n texlive-dvisvgm +%{_texdir}/texmf-dist/dvips/config/config.ps +%{_texdir}/texmf-dist/dvips/config/config.qms +%{_texdir}/texmf-dist/dvips/config/config.toshiba +%{_texdir}/texmf-dist/dvips/config/config.unms +%{_texdir}/texmf-dist/dvips/config/config.xyp +%{_texdir}/texmf-dist/dvips/config/cx.cfg +%{_texdir}/texmf-dist/dvips/config/deskjet.cfg +%{_texdir}/texmf-dist/dvips/config/dfaxhigh.cfg +%{_texdir}/texmf-dist/dvips/config/dvired.cfg +%{_texdir}/texmf-dist/dvips/config/epson.cfg +%{_texdir}/texmf-dist/dvips/config/ibmvga.cfg +%{_texdir}/texmf-dist/dvips/config/ljfour.cfg +%{_texdir}/texmf-dist/dvips/config/qms.cfg +%{_texdir}/texmf-dist/dvips/config/toshiba.cfg +%{_texdir}/texmf-dist/fonts/enc/dvips/base/ +%dir %{_texdir}/texmf-dist/fonts/map/dvips/ +%{_texdir}/texmf-dist/tex/generic/dvips/ +%doc %{_texdir}/texmf-dist/doc/dvips/ + +%files -n %{shortname}-dvisvgm %license gpl.txt %{_bindir}/dvisvgm %{_mandir}/man1/dvisvgm.1* -%files -n texlive-ebong +%files -n %{shortname}-ebong %license pd.txt %{_bindir}/ebong -%{_datadir}/texlive/texmf-dist/scripts/ebong/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ebong/ +%{_texdir}/texmf-dist/scripts/ebong/ +%doc %{_texdir}/texmf-dist/doc/latex/ebong/ -%files -n texlive-eplain +%files -n %{shortname}-eplain %license gpl2.txt %{_bindir}/eplain %{_mandir}/man1/eplain.1* %{_infodir}/eplain.info* -%{_datadir}/texlive/texmf-dist/tex/eplain/ -%{_datadir}/texlive/fmtutil.cnf.d/eplain -%doc %{_datadir}/texlive/texmf-dist/doc/eplain/ +%{_texdir}/texmf-dist/tex/eplain/ +%{fmtutil_cnf_d}/eplain +%doc %{_texdir}/texmf-dist/doc/eplain/ -%files -n texlive-epspdf +%files -n %{shortname}-epspdf %license gpl.txt %{_bindir}/epspdf %{_bindir}/epspdftk %{_infodir}/epspdf.info* -%{_datadir}/texlive/texmf-dist/scripts/epspdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/epspdf/ +%{_texdir}/texmf-dist/scripts/epspdf/ +%doc %{_texdir}/texmf-dist/doc/support/epspdf/ -%files -n texlive-epstopdf +%files -n %{shortname}-epstopdf %{_bindir}/epstopdf %{_bindir}/repstopdf %{_mandir}/man1/epstopdf.1* %{_mandir}/man1/repstopdf.1* -%{_datadir}/texlive/texmf-dist/scripts/epstopdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/epstopdf/ +%{_texdir}/texmf-dist/scripts/epstopdf/ +%doc %{_texdir}/texmf-dist/doc/support/epstopdf/ -%files -n texlive-exceltex +%files -n %{shortname}-exceltex %license gpl.txt %{_bindir}/exceltex -%{_datadir}/texlive/texmf-dist/scripts/exceltex/ -%{_datadir}/texlive/texmf-dist/tex/latex/exceltex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/exceltex/ +%{_texdir}/texmf-dist/scripts/exceltex/ +%{_texdir}/texmf-dist/tex/latex/exceltex/ +%doc %{_texdir}/texmf-dist/doc/latex/exceltex/ -%files -n texlive-fig4latex +%files -n %{shortname}-fig4latex %license gpl3.txt %{_bindir}/fig4latex -%{_datadir}/texlive/texmf-dist/scripts/fig4latex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fig4latex/ +%{_texdir}/texmf-dist/scripts/fig4latex/ +%doc %{_texdir}/texmf-dist/doc/support/fig4latex/ -%files -n texlive-findhyph +%files -n %{shortname}-findhyph %license gpl.txt %{_bindir}/findhyph %{_mandir}/man1/findhyph.1* -%{_datadir}/texlive/texmf-dist/scripts/findhyph/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/findhyph/ +%{_texdir}/texmf-dist/scripts/findhyph/ +%doc %{_texdir}/texmf-dist/doc/support/findhyph/ -%files -n texlive-fontinst +%files -n %{shortname}-fontinst %license lppl1.txt %{_bindir}/fontinst %{_mandir}/man1/fontinst.1* -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/fontinst.sh -%{_datadir}/texlive/texmf-dist/tex/fontinst/ -%{_datadir}/texlive/texmf-dist/tex/latex/fontinst/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/fontinst/ +%{_texdir}/texmf-dist/scripts/texlive-extra/fontinst.sh +%{_texdir}/texmf-dist/tex/fontinst/ +%{_texdir}/texmf-dist/tex/latex/fontinst/ +%doc %{_texdir}/texmf-dist/doc/fonts/fontinst/ -%files -n texlive-fontools +%files -n %{shortname}-fontools %license gpl2.txt %{_bindir}/afm2afm %{_bindir}/autoinst @@ -7207,11 +9664,11 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/afm2afm.1* %{_mandir}/man1/autoinst.1* %{_mandir}/man1/ot2kpx.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/fontools/ -%{_datadir}/texlive/texmf-dist/scripts/fontools/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fontools/ +%{_texdir}/texmf-dist/fonts/enc/dvips/fontools/ +%{_texdir}/texmf-dist/scripts/fontools/ +%doc %{_texdir}/texmf-dist/doc/support/fontools/ -%files -n texlive-fontware +%files -n %{shortname}-fontware %license lppl1.txt %{_bindir}/pltotf %{_bindir}/tftopl @@ -7222,99 +9679,112 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/vftovp.1* %{_mandir}/man1/vptovf.1* -%files -n texlive-fragmaster +%files -n %{shortname}-fragmaster %license gpl.txt %{_bindir}/fragmaster -%{_datadir}/texlive/texmf-dist/scripts/fragmaster/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/fragmaster/ +%{_texdir}/texmf-dist/scripts/fragmaster/ +%doc %{_texdir}/texmf-dist/doc/support/fragmaster/ -%files -n texlive-getmap +%files -n %{shortname}-getmap %license lppl1.txt %{_bindir}/getmapdl -%{_datadir}/texlive/texmf-dist/scripts/getmap/ -%{_datadir}/texlive/texmf-dist/tex/latex/getmap/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/getmap/ +%{_texdir}/texmf-dist/scripts/getmap/ +%{_texdir}/texmf-dist/tex/latex/getmap/ +%doc %{_texdir}/texmf-dist/doc/latex/getmap/ -%files -n texlive-git-latexdiff +%files -n %{shortname}-git-latexdiff %{_bindir}/git-latexdiff %{_mandir}/man1/git-latexdiff.* -%doc %{_datadir}/texlive/texmf-dist/doc/support/git-latexdiff -%{_datadir}/texlive/texmf-dist/scripts/git-latexdiff +%doc %{_texdir}/texmf-dist/doc/support/git-latexdiff +%{_texdir}/texmf-dist/scripts/git-latexdiff -%files -n texlive-glossaries +%files -n %{shortname}-glossaries %license lppl1.3.txt %{_bindir}/makeglossaries %{_bindir}/makeglossaries-lite %{_mandir}/man1/makeglossaries.1* %{_mandir}/man1/makeglossaries-lite.1* -%{_datadir}/texlive/texmf-dist/scripts/glossaries/ -%{_datadir}/texlive/texmf-dist/tex/latex/glossaries/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/glossaries/ +%{_texdir}/texmf-dist/scripts/glossaries/ +%{_texdir}/texmf-dist/tex/latex/glossaries/ +%doc %{_texdir}/texmf-dist/doc/latex/glossaries/ -%files -n texlive-glyphlist -%{_datadir}/texlive/texmf-dist/fonts/map/glyphlist/ +%files -n %{shortname}-glyphlist +%{_texdir}/texmf-dist/fonts/map/glyphlist/ -%files -n texlive-gregoriotex +%files -n %{shortname}-gregoriotex %license gpl3.txt %{_bindir}/gregorio -%{_datadir}/texlive/texmf-dist/scripts/gregoriotex/ -%{_datadir}/texlive/texmf-dist/tex/lualatex/gregoriotex/ -%{_datadir}/texlive/texmf-dist/tex/luatex/gregoriotex/ -%{_datadir}/texlive/texmf-dist/fonts/source/gregoriotex/ -%{_datadir}/texlive/texmf-dist/fonts/truetype/public/gregoriotex/ -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/gregoriotex/ - -%files -n texlive-gsftopk +%{_texdir}/texmf-dist/scripts/gregoriotex/ +%{_texdir}/texmf-dist/tex/lualatex/gregoriotex/ +%{_texdir}/texmf-dist/tex/luatex/gregoriotex/ +%{_texdir}/texmf-dist/fonts/source/gregoriotex/ +%{_texdir}/texmf-dist/fonts/truetype/public/gregoriotex/ +%doc %{_texdir}/texmf-dist/doc/luatex/gregoriotex/ + +%files -n %{shortname}-gsftopk %license gpl.txt %{_bindir}/gsftopk %{_mandir}/man1/gsftopk.1* -%{_datadir}/texlive/texmf-dist/dvips/gsftopk/ - -%files -n texlive-hyperxmp +%{_texdir}/texmf-dist/dvips/gsftopk/ + +%files -n %{shortname}-hitex +%{_bindir}/hilatex +%{_bindir}/hishrink +%{_bindir}/histretch +%{_bindir}/hitex +%{_mandir}/man1/hishrink.1* +%{_mandir}/man1/histretch.1* +%{_mandir}/man1/hitex.1* +%{_texdir}/fmtutil.cnf.d/hitex +%{_texdir}/texmf-dist/makeindex/hitex/ +%{_texdir}/texmf-dist/tex/hitex/ +%doc %{_texdir}/texmf-dist/doc/hitex/ + +%files -n %{shortname}-hyperxmp %license lppl1.3c.txt %{_bindir}/hyperxmp-add-bytecount %{_mandir}/man1/hyperxmp* -%doc %{_datadir}/texlive/texmf-dist/doc/latex/hyperxmp -%{_datadir}/texlive/texmf-dist/scripts/hyperxmp -%{_datadir}/texlive/texmf-dist/tex/latex/hyperxmp +%doc %{_texdir}/texmf-dist/doc/latex/hyperxmp +%{_texdir}/texmf-dist/scripts/hyperxmp +%{_texdir}/texmf-dist/tex/latex/hyperxmp -%files -n texlive-installfont +%files -n %{shortname}-installfont %license lppl1.txt %{_bindir}/installfont-tl -%{_datadir}/texlive/texmf-dist/scripts/installfont/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/installfont/ +%{_texdir}/texmf-dist/scripts/installfont/ +%doc %{_texdir}/texmf-dist/doc/support/installfont/ -%files -n texlive-jadetex +%files -n %{shortname}-jadetex %{_bindir}/jadetex %{_bindir}/pdfjadetex %{_mandir}/man1/jadetex.1* %{_mandir}/man1/pdfjadetex.1* -%{_datadir}/texlive/texmf-dist/tex/jadetex/ -%{_datadir}/texlive/fmtutil.cnf.d/jadetex -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/jadetex/ +%{_texdir}/texmf-dist/tex/jadetex/ +%{fmtutil_cnf_d}/jadetex +%doc %{_texdir}/texmf-dist/doc/otherformats/jadetex/ -%files -n texlive-jfmutil +%files -n %{shortname}-jfmutil %{_bindir}/jfmutil -%{_datadir}/texlive/texmf-dist/scripts/jfmutil/ -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/jfmutil/ +%{_texdir}/texmf-dist/scripts/jfmutil/ +%doc %{_texdir}/texmf-dist/doc/fonts/jfmutil/ -%files -n texlive-ketcindy +%files -n %{shortname}-ketcindy %license gpl3.txt %{_bindir}/ketcindy -%{_datadir}/texlive/texmf-dist/scripts/ketcindy/ -%{_datadir}/texlive/texmf-dist/tex/latex/ketcindy/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ketcindy/ +%{_texdir}/texmf-dist/scripts/ketcindy/ +%{_texdir}/texmf-dist/tex/latex/ketcindy/ +%doc %{_texdir}/texmf-dist/doc/support/ketcindy/ -%files -n texlive-kotex-utils +%files -n %{shortname}-kotex-utils %license lppl1.txt %{_bindir}/jamo-normalize %{_bindir}/komkindex %{_bindir}/ttf2kotexfont -%{_datadir}/texlive/texmf-dist/makeindex/kotex-utils/ -%{_datadir}/texlive/texmf-dist/scripts/kotex-utils/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/kotex-utils/ +%{_texdir}/texmf-dist/makeindex/kotex-utils/ +%{_texdir}/texmf-dist/scripts/kotex-utils/ +%doc %{_texdir}/texmf-dist/doc/latex/kotex-utils/ -%files -n texlive-kpathsea +%files -n %{shortname}-kpathsea %license lgpl2.1.txt %{_bindir}/kpseaccess %{_bindir}/kpsereadlink @@ -7335,59 +9805,58 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/texhash.1* %{_mandir}/man5/fmtutil.cnf.5* %{_infodir}/kpathsea.info* -%{_infodir}/tds.info* %{_infodir}/web2c.info* -%{_datadir}/texlive/texmf-dist/web2c/amiga-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp1250t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp227.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp852-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp852-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/cp8bit.tcx -%{_datadir}/texlive/texmf-dist/web2c/empty.tcx +%{_texdir}/texmf-dist/web2c/amiga-pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250cs.tcx +%{_texdir}/texmf-dist/web2c/cp1250pl.tcx +%{_texdir}/texmf-dist/web2c/cp1250t1.tcx +%{_texdir}/texmf-dist/web2c/cp227.tcx +%{_texdir}/texmf-dist/web2c/cp852-cs.tcx +%{_texdir}/texmf-dist/web2c/cp852-pl.tcx +%{_texdir}/texmf-dist/web2c/cp8bit.tcx +%{_texdir}/texmf-dist/web2c/empty.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/fmtutil.cnf -%ghost %{_datadir}/texlive/texmf-dist/web2c/fmtutil.cnf -%{_datadir}/texlive/texmf-dist/web2c/il1-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/il2-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/kam-cs.tcx -%{_datadir}/texlive/texmf-dist/web2c/kam-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/macce-pl.tcx -%{_datadir}/texlive/texmf-dist/web2c/macce-t1.tcx -%{_datadir}/texlive/texmf-dist/web2c/maz-pl.tcx +%ghost %{_texdir}/texmf-dist/web2c/fmtutil.cnf +%{_texdir}/texmf-dist/web2c/il1-t1.tcx +%{_texdir}/texmf-dist/web2c/il2-cs.tcx +%{_texdir}/texmf-dist/web2c/il2-pl.tcx +%{_texdir}/texmf-dist/web2c/il2-t1.tcx +%{_texdir}/texmf-dist/web2c/kam-cs.tcx +%{_texdir}/texmf-dist/web2c/kam-t1.tcx +%{_texdir}/texmf-dist/web2c/macce-pl.tcx +%{_texdir}/texmf-dist/web2c/macce-t1.tcx +%{_texdir}/texmf-dist/web2c/maz-pl.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/mktex.cnf -%{_datadir}/texlive/texmf-dist/web2c/mktex.cnf -%{_datadir}/texlive/texmf-dist/web2c/mktex.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexdir -%{_datadir}/texlive/texmf-dist/web2c/mktexdir.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexnam -%{_datadir}/texlive/texmf-dist/web2c/mktexnam.opt -%{_datadir}/texlive/texmf-dist/web2c/mktexupd -%{_datadir}/texlive/texmf-dist/web2c/natural.tcx -%{_datadir}/texlive/texmf-dist/web2c/tcvn-t5.tcx +%{_texdir}/texmf-dist/web2c/mktex.cnf +%{_texdir}/texmf-dist/web2c/mktex.opt +%{_texdir}/texmf-dist/web2c/mktexdir +%{_texdir}/texmf-dist/web2c/mktexdir.opt +%{_texdir}/texmf-dist/web2c/mktexnam +%{_texdir}/texmf-dist/web2c/mktexnam.opt +%{_texdir}/texmf-dist/web2c/mktexupd +%{_texdir}/texmf-dist/web2c/natural.tcx +%{_texdir}/texmf-dist/web2c/tcvn-t5.tcx %config(noreplace) %{_sysconfdir}/texlive/web2c/texmf.cnf -%{_datadir}/texlive/texmf-dist/web2c/texmf.cnf -%{_datadir}/texlive/texmf-dist/web2c/viscii-t5.tcx -%dir %{_datadir}/texlive/fmtutil.cnf.d -%doc %{_datadir}/texlive/texmf-dist/doc/kpathsea/ -%doc %{_datadir}/texlive/texmf-dist/doc/web2c/ +%{_texdir}/texmf-dist/web2c/texmf.cnf +%{_texdir}/texmf-dist/web2c/viscii-t5.tcx +%dir %{fmtutil_cnf_d} +%doc %{_texdir}/texmf-dist/doc/kpathsea/ +%doc %{_texdir}/texmf-dist/doc/web2c/ -%files -n texlive-l3build +%files -n %{shortname}-l3build %license lppl1.3.txt %{_bindir}/l3build %{_mandir}/man1/l3build.1* -%{_datadir}/texlive/texmf-dist/scripts/l3build/ -%{_datadir}/texlive/texmf-dist/tex/latex/l3build/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/l3build/ +%{_texdir}/texmf-dist/scripts/l3build/ +%{_texdir}/texmf-dist/tex/latex/l3build/ +%doc %{_texdir}/texmf-dist/doc/latex/l3build/ -%files -n texlive-lacheck +%files -n %{shortname}-lacheck %license gpl.txt %{_bindir}/lacheck %{_mandir}/man1/lacheck.1* -%files -n texlive-latex +%files -n %{shortname}-latex %license lppl1.3.txt %{_bindir}/dvilualatex %{_bindir}/latex @@ -7395,40 +9864,40 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/pdflatex %{_mandir}/man1/latex.1* %{_mandir}/man1/pdflatex.1* -%{_datadir}/texlive/texmf-dist/makeindex/latex/ -%{_datadir}/texlive/texmf-dist/tex/latex/base/ -%{_datadir}/texlive/fmtutil.cnf.d/latex-bin -%doc %{_datadir}/texlive/texmf-dist/doc/latex/base/ +%{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/tex/latex/base/ +%{fmtutil_cnf_d}/latex-bin +%doc %{_texdir}/texmf-dist/doc/latex/base/ -%files -n texlive-latex-git-log +%files -n %{shortname}-latex-git-log %license gpl3.txt %{_bindir}/latex-git-log %{_mandir}/man1/latex-git-log.1* -%{_datadir}/texlive/texmf-dist/scripts/latex-git-log/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex-git-log/ +%{_texdir}/texmf-dist/scripts/latex-git-log/ +%doc %{_texdir}/texmf-dist/doc/support/latex-git-log/ -%files -n texlive-latex-papersize +%files -n %{shortname}-latex-papersize %license apache2.txt %{_bindir}/latex-papersize -%{_datadir}/texlive/texmf-dist/scripts/latex-papersize -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex-papersize/ +%{_texdir}/texmf-dist/scripts/latex-papersize +%doc %{_texdir}/texmf-dist/doc/support/latex-papersize/ -%files -n texlive-latex2man +%files -n %{shortname}-latex2man %license lppl1.txt %{_bindir}/latex2man %{_mandir}/man1/latex2man.1* %{_infodir}/latex2man.info* -%{_datadir}/texlive/texmf-dist/scripts/latex2man/ -%{_datadir}/texlive/texmf-dist/tex/latex/latex2man/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex2man/ +%{_texdir}/texmf-dist/scripts/latex2man/ +%{_texdir}/texmf-dist/tex/latex/latex2man/ +%doc %{_texdir}/texmf-dist/doc/support/latex2man/ -%files -n texlive-latex2nemeth +%files -n %{shortname}-latex2nemeth %license gpl3.txt %{_bindir}/latex2nemeth -%{_datadir}/texlive/texmf-dist/scripts/latex2nemeth -%doc %{_datadir}/texlive/texmf-dist/doc/support/latex2nemeth +%{_texdir}/texmf-dist/scripts/latex2nemeth +%doc %{_texdir}/texmf-dist/doc/support/latex2nemeth -%files -n texlive-latexdiff +%files -n %{shortname}-latexdiff %license gpl3.txt %{_bindir}/latexdiff %{_bindir}/latexdiff-vc @@ -7436,28 +9905,28 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/latexdiff-vc.1* %{_mandir}/man1/latexdiff.1* %{_mandir}/man1/latexrevise.1* -%{_datadir}/texlive/texmf-dist/scripts/latexdiff/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexdiff/ +%{_texdir}/texmf-dist/scripts/latexdiff/ +%doc %{_texdir}/texmf-dist/doc/support/latexdiff/ -%files -n texlive-latexfileversion +%files -n %{shortname}-latexfileversion %license lppl1.txt %{_bindir}/latexfileversion -%{_datadir}/texlive/texmf-dist/scripts/latexfileversion/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexfileversion/ +%{_texdir}/texmf-dist/scripts/latexfileversion/ +%doc %{_texdir}/texmf-dist/doc/support/latexfileversion/ -%files -n texlive-latexpand +%files -n %{shortname}-latexpand %license bsd.txt %{_bindir}/latexpand -%{_datadir}/texlive/texmf-dist/scripts/latexpand/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexpand/ +%{_texdir}/texmf-dist/scripts/latexpand/ +%doc %{_texdir}/texmf-dist/doc/support/latexpand/ -%files -n texlive-latexindent +%files -n %{shortname}-latexindent %license gpl3.txt %{_bindir}/latexindent -%{_datadir}/texlive/texmf-dist/scripts/latexindent/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/latexindent/ +%{_texdir}/texmf-dist/scripts/latexindent/ +%doc %{_texdir}/texmf-dist/doc/support/latexindent/ -%files -n texlive-lcdftypetools +%files -n %{shortname}-lcdftypetools %license gpl.txt %{_bindir}/cfftot1 %{_bindir}/mmafm @@ -7482,105 +9951,114 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/t1testpage.1* %{_mandir}/man1/ttftotype42.1* -%files -n texlive-lib +%files -n %{shortname}-lib %{_libdir}/*.so.* -%dir %{_datadir}/texlive/texmf-config -%dir %{_datadir}/texlive/texmf-config/web2c -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-config/ls-R -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-dist/ls-R -%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_datadir}/texlive/texmf-local/ls-R +%dir %{_texdir}/texmf-config +%dir %{_texdir}/texmf-config/web2c +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-config/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-dist/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-local/ls-R -%files -n texlive-lib-devel +%files -n %{shortname}-lib-devel %dir %{_includedir}/kpathsea %{_includedir}/kpathsea/* %{_includedir}/synctex/ %{_includedir}/texlua53/ -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_includedir}/texluajit/ %endif %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc -%files -n texlive-light-latex-make +%files -n %{shortname}-light-latex-make %{_bindir}/llmk %{_mandir}/man1/llmk* -%doc %{_datadir}/texlive/texmf-dist/doc/support/light-latex-make -%{_datadir}/texlive/texmf-dist/scripts/light-latex-make +%doc %{_texdir}/texmf-dist/doc/support/light-latex-make +%{_texdir}/texmf-dist/scripts/light-latex-make -%files -n texlive-lilyglyphs +%files -n %{shortname}-lilyglyphs %license lppl1.3.txt %{_bindir}/lily-glyph-commands %{_bindir}/lily-image-commands %{_bindir}/lily-rebuild-pdfs %{_datadir}/fonts/lilyglyphs -%{_datadir}/texlive/texmf-dist/fonts/opentype/public/lilyglyphs/ -%{_datadir}/texlive/texmf-dist/scripts/lilyglyphs/ -%{_datadir}/texlive/texmf-dist/tex/latex/lilyglyphs/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/lilyglyphs/ +%{_texdir}/texmf-dist/fonts/opentype/public/lilyglyphs/ +%{_texdir}/texmf-dist/scripts/lilyglyphs/ +%{_texdir}/texmf-dist/tex/latex/lilyglyphs/ +%doc %{_texdir}/texmf-dist/doc/latex/lilyglyphs/ -%files -n texlive-listbib +%files -n %{shortname}-listbib %license gpl.txt %{_bindir}/listbib -%{_datadir}/texlive/texmf-dist/bibtex/bst/listbib/ -%{_datadir}/texlive/texmf-dist/scripts/listbib/ -%{_datadir}/texlive/texmf-dist/tex/latex/listbib/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/listbib/ +%{_texdir}/texmf-dist/bibtex/bst/listbib/ +%{_texdir}/texmf-dist/scripts/listbib/ +%{_texdir}/texmf-dist/tex/latex/listbib/ +%doc %{_texdir}/texmf-dist/doc/latex/listbib/ -%files -n texlive-listings-ext +%files -n %{shortname}-listings-ext %license lppl1.2.txt %{_bindir}/listings-ext.sh -%{_datadir}/texlive/texmf-dist/scripts/listings-ext/ -%{_datadir}/texlive/texmf-dist/tex/latex/listings-ext/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/listings-ext/ +%{_texdir}/texmf-dist/scripts/listings-ext/ +%{_texdir}/texmf-dist/tex/latex/listings-ext/ +%doc %{_texdir}/texmf-dist/doc/latex/listings-ext/ -%files -n texlive-lollipop +%files -n %{shortname}-lollipop %license gpl3.txt %{_bindir}/lollipop -%{_datadir}/texlive/texmf-dist/tex/lollipop/ -%{_datadir}/texlive/fmtutil.cnf.d/lollipop -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/lollipop/ +%{_texdir}/texmf-dist/tex/lollipop/ +%{fmtutil_cnf_d}/lollipop +%doc %{_texdir}/texmf-dist/doc/otherformats/lollipop/ -%files -n texlive-ltxfileinfo +%files -n %{shortname}-ltxfileinfo %license gpl.txt %{_bindir}/ltxfileinfo -%{_datadir}/texlive/texmf-dist/scripts/ltxfileinfo/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ltxfileinfo/ +%{_texdir}/texmf-dist/scripts/ltxfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/ltxfileinfo/ -%files -n texlive-ltximg +%files -n %{shortname}-ltximg %license gpl2.txt %{_bindir}/ltximg -%{_datadir}/texlive/texmf-dist/scripts/ltximg/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/ltximg/ +%{_mandir}/man1/ltximg.1* +%{_texdir}/texmf-dist/scripts/ltximg/ +%doc %{_texdir}/texmf-dist/doc/support/ltximg/ + +%files -n %{shortname}-luafindfont +%license lppl1.3c.txt +%{_bindir}/luafindfont +%{_mandir}/man1/luafindfont.1* +%{_texdir}/texmf-dist/scripts/luafindfont/ +%doc %{_texdir}/texmf-dist/doc/support/luafindfont/ -%files -n texlive-luaotfload +%files -n %{shortname}-luaotfload %license gpl2.txt %{_bindir}/luaotfload-tool %{_mandir}/man1/luaotfload-tool.1* %{_mandir}/man5/luaotfload.conf.5* -%{_datadir}/texlive/texmf-dist/scripts/luaotfload/ -%{_datadir}/texlive/texmf-dist/tex/luatex/luaotfload/ -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/luaotfload/ +%{_texdir}/texmf-dist/scripts/luaotfload/ +%{_texdir}/texmf-dist/tex/luatex/luaotfload/ +%doc %{_texdir}/texmf-dist/doc/luatex/luaotfload/ -%files -n texlive-luahbtex +%files -n %{shortname}-luahbtex %license gpl2.txt %{_bindir}/luahbtex %{_bindir}/lualatex-dev %{_mandir}/man1/luahbtex.1* %{_mandir}/man1/lualatex-dev.1* -%{_datadir}/texlive/fmtutil.cnf.d/luahbtex +%{fmtutil_cnf_d}/luahbtex -%files -n texlive-luajittex +%files -n %{shortname}-luajittex %license gpl2.txt -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_bindir}/luajittex %{_bindir}/luajithbtex %{_bindir}/texluajit %{_bindir}/texluajitc %endif +%{_mandir}/man1/luajithbtex.1* %{_mandir}/man1/luajittex.1* -%{_datadir}/texlive/fmtutil.cnf.d/luajittex +%{fmtutil_cnf_d}/luajittex -%files -n texlive-luatex +%files -n %{shortname}-luatex %license gpl2.txt %{_bindir}/dviluatex %{_bindir}/dvilualatex-dev @@ -7593,62 +10071,63 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/luatex.1* %{_mandir}/man1/texlua.1* %{_mandir}/man1/texluac.1* -%{_datadir}/texlive/texmf-dist/tex/generic/config/luatex-unicode-letters.tex -%{_datadir}/texlive/texmf-dist/tex/generic/config/luatexiniconfig.tex -%{_datadir}/texlive/texmf-dist/web2c/texmfcnf.lua -%{_datadir}/texlive/fmtutil.cnf.d/luatex -%doc %{_datadir}/texlive/texmf-dist/doc/luatex/base/ - -%files -n texlive-lwarp +%{_sysconfdir}/texlive/web2c/texmfcnf.lua +%{_texdir}/texmf-dist/tex/generic/config/luatex-unicode-letters.tex +%{_texdir}/texmf-dist/tex/generic/config/luatexiniconfig.tex +%{_texdir}/texmf-dist/web2c/texmfcnf.lua +%{fmtutil_cnf_d}/luatex +%doc %{_texdir}/texmf-dist/doc/luatex/base/ + +%files -n %{shortname}-lwarp %license lppl1.3.txt %{_bindir}/lwarpmk -%{_datadir}/texlive/texmf-dist/scripts/lwarp -%{_datadir}/texlive/texmf-dist/tex/latex/lwarp -%doc %{_datadir}/texlive/texmf-dist/doc/latex/lwarp +%{_texdir}/texmf-dist/scripts/lwarp +%{_texdir}/texmf-dist/tex/latex/lwarp +%doc %{_texdir}/texmf-dist/doc/latex/lwarp -%files -n texlive-lyluatex -%{_datadir}/texlive/texmf-dist/scripts/lyluatex/ -%{_datadir}/texlive/texmf-dist/tex/luatex/lyluatex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/lyluatex/ +%files -n %{shortname}-lyluatex +%{_texdir}/texmf-dist/scripts/lyluatex/ +%{_texdir}/texmf-dist/tex/luatex/lyluatex/ +%doc %{_texdir}/texmf-dist/doc/support/lyluatex/ -%files -n texlive-make4ht +%files -n %{shortname}-make4ht %license lppl1.3.txt %{_bindir}/make4ht -%{_datadir}/texlive/texmf-dist/scripts/make4ht/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/make4ht/ +%{_texdir}/texmf-dist/scripts/make4ht/ +%doc %{_texdir}/texmf-dist/doc/support/make4ht/ -%files -n texlive-makedtx +%files -n %{shortname}-makedtx %license lppl1.txt %{_bindir}/makedtx -%{_datadir}/texlive/texmf-dist/scripts/makedtx/ -%{_datadir}/texlive/texmf-dist/tex/latex/makedtx/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/makedtx/ +%{_texdir}/texmf-dist/scripts/makedtx/ +%{_texdir}/texmf-dist/tex/latex/makedtx/ +%doc %{_texdir}/texmf-dist/doc/support/makedtx/ -%files -n texlive-makeindex +%files -n %{shortname}-makeindex %{_bindir}/makeindex %{_bindir}/mkindex %{_mandir}/man1/makeindex.1* %{_mandir}/man1/mkindex.1* -%exclude %{_datadir}/texlive/texmf-dist/makeindex/latex/ -%{_datadir}/texlive/texmf-dist/makeindex/ -%{_datadir}/texlive/texmf-dist/tex/plain/makeindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/makeindex/ +%exclude %{_texdir}/texmf-dist/makeindex/latex/ +%{_texdir}/texmf-dist/makeindex/ +%{_texdir}/texmf-dist/tex/plain/makeindex/ +%doc %{_texdir}/texmf-dist/doc/support/makeindex/ -%files -n texlive-match_parens +%files -n %{shortname}-match_parens %license gpl.txt %{_bindir}/match_parens -%{_datadir}/texlive/texmf-dist/scripts/match_parens/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/match_parens/ +%{_texdir}/texmf-dist/scripts/match_parens/ +%doc %{_texdir}/texmf-dist/doc/support/match_parens/ -%files -n texlive-mathspic +%files -n %{shortname}-mathspic %license lppl1.txt %{_bindir}/mathspic %{_mandir}/man1/mathspic.1* -%{_datadir}/texlive/texmf-dist/scripts/mathspic/ -%{_datadir}/texlive/texmf-dist/tex/latex/mathspic/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/mathspic/ +%{_texdir}/texmf-dist/scripts/mathspic/ +%{_texdir}/texmf-dist/tex/latex/mathspic/ +%doc %{_texdir}/texmf-dist/doc/latex/mathspic/ -%files -n texlive-metafont +%files -n %{shortname}-metafont %license knuth.txt %{_bindir}/inimf %{_bindir}/mf @@ -7656,10 +10135,10 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/inimf.1.* %{_mandir}/man1/mf-nowin.1* %{_mandir}/man1/mf.1* -%{_datadir}/texlive/texmf-dist/metafont/ -%{_datadir}/texlive/fmtutil.cnf.d/metafont +%{_texdir}/texmf-dist/metafont/ +%{fmtutil_cnf_d}/metafont -%files -n texlive-metapost +%files -n %{shortname}-metapost %license lgpl2.1.txt %{_bindir}/dvitomp %{_bindir}/mfplain @@ -7667,37 +10146,37 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/r-mpost %{_mandir}/man1/dvitomp.1* %{_mandir}/man1/mpost.1* -%{_datadir}/texlive/texmf-dist/fonts/afm/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/metapost/ -%{_datadir}/texlive/texmf-dist/fonts/type1/metapost/ -%exclude %{_datadir}/texlive/texmf-dist/metapost/context/ -%{_datadir}/texlive/texmf-dist/metapost/ -%{_datadir}/texlive/texmf-dist/tex/generic/metapost/ -%doc %{_datadir}/texlive/texmf-dist/doc/metapost/ - -%files -n texlive-mex +%{_texdir}/texmf-dist/fonts/afm/metapost/ +%{_texdir}/texmf-dist/fonts/enc/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/map/dvips/metapost/ +%{_texdir}/texmf-dist/fonts/tfm/metapost/ +%{_texdir}/texmf-dist/fonts/type1/metapost/ +%exclude %{_texdir}/texmf-dist/metapost/context/ +%{_texdir}/texmf-dist/metapost/ +%{_texdir}/texmf-dist/tex/generic/metapost/ +%doc %{_texdir}/texmf-dist/doc/metapost/ + +%files -n %{shortname}-mex %license pd.txt %{_bindir}/mex %{_bindir}/pdfmex %{_bindir}/utf8mex -%{_datadir}/texlive/texmf-dist/tex/mex/ -%{_datadir}/texlive/fmtutil.cnf.d/mex -%doc %{_datadir}/texlive/texmf-dist/doc/mex/ +%{_texdir}/texmf-dist/tex/mex/ +%{fmtutil_cnf_d}/mex +%doc %{_texdir}/texmf-dist/doc/mex/ -%files -n texlive-mflua +%files -n %{shortname}-mflua %license gpl2.txt %{_bindir}/mflua %{_bindir}/mflua-nowin -%ifnarch aarch64 riscv64 loongarch64 ppc64le +%ifnarch %{power64} s390 s390x riscv64 loongarch64 %{_bindir}/mfluajit %{_bindir}/mfluajit-nowin %endif -%{_datadir}/texlive/fmtutil.cnf.d/mflua -%{_datadir}/texlive/texmf-dist/scripts/mflua/ +%{fmtutil_cnf_d}/mflua +%{_texdir}/texmf-dist/scripts/mflua/ -%files -n texlive-mfware +%files -n %{shortname}-mfware %license knuth.txt %{_bindir}/gftodvi %{_bindir}/gftopk @@ -7711,101 +10190,101 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/mft.1* %{_mandir}/man1/pktogf.1* %{_mandir}/man1/pktype.1* -%{_datadir}/texlive/texmf-dist/mft/ +%{_texdir}/texmf-dist/mft/ -%files -n texlive-mf2pt1 +%files -n %{shortname}-mf2pt1 %license lppl1.txt %{_bindir}/mf2pt1 %{_infodir}/mf2pt1.info* -%{_datadir}/texlive/texmf-dist/metapost/mf2pt1/ -%{_datadir}/texlive/texmf-dist/scripts/mf2pt1/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mf2pt1/ +%{_texdir}/texmf-dist/metapost/mf2pt1/ +%{_texdir}/texmf-dist/scripts/mf2pt1/ +%doc %{_texdir}/texmf-dist/doc/support/mf2pt1/ -%files -n texlive-mkgrkindex +%files -n %{shortname}-mkgrkindex %{_bindir}/mkgrkindex -%{_datadir}/texlive/texmf-dist/makeindex/mkgrkindex/ -%{_datadir}/texlive/texmf-dist/scripts/mkgrkindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mkgrkindex/ +%{_texdir}/texmf-dist/makeindex/mkgrkindex/ +%{_texdir}/texmf-dist/scripts/mkgrkindex/ +%doc %{_texdir}/texmf-dist/doc/support/mkgrkindex/ -%files -n texlive-mkjobtexmf +%files -n %{shortname}-mkjobtexmf %{_bindir}/mkjobtexmf %{_mandir}/man1/mkjobtexmf.1* -%{_datadir}/texlive/texmf-dist/scripts/mkjobtexmf/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/mkjobtexmf/ +%{_texdir}/texmf-dist/scripts/mkjobtexmf/ +%doc %{_texdir}/texmf-dist/doc/generic/mkjobtexmf/ -%files -n texlive-mkpic +%files -n %{shortname}-mkpic %license gpl.txt %{_bindir}/mkpic -%{_datadir}/texlive/texmf-dist/scripts/mkpic/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/mkpic/ +%{_texdir}/texmf-dist/scripts/mkpic/ +%doc %{_texdir}/texmf-dist/doc/support/mkpic/ -%files -n texlive-mltex +%files -n %{shortname}-mltex %license knuth.txt %{_bindir}/mllatex %{_bindir}/mltex -%{_datadir}/texlive/texmf-dist/tex/latex/mltex/ -%{_datadir}/texlive/texmf-dist/tex/mltex/ -%{_datadir}/texlive/fmtutil.cnf.d/mltex -%doc %{_datadir}/texlive/texmf-dist/doc/latex/mltex/ +%{_texdir}/texmf-dist/tex/latex/mltex/ +%{_texdir}/texmf-dist/tex/mltex/ +%{fmtutil_cnf_d}/mltex +%doc %{_texdir}/texmf-dist/doc/latex/mltex/ -%files -n texlive-mptopdf +%files -n %{shortname}-mptopdf %license lppl1.txt %{_bindir}/mptopdf %{_mandir}/man1/mptopdf.1* -%{_datadir}/texlive/texmf-dist/scripts/context/perl/mptopdf.pl -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-mis.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-mpe.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii -%{_datadir}/texlive/texmf-dist/tex/context/base/mkii/syst-tex.mkii -%{_datadir}/texlive/texmf-dist/tex/generic/context/mptopdf/ -%{_datadir}/texlive/fmtutil.cnf.d/mptopdf -%doc %{_datadir}/texlive/texmf-dist/doc/context/scripts/mkii/mptopdf.man - -%files -n texlive-multibibliography +%{_texdir}/texmf-dist/scripts/context/perl/mptopdf.pl +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mis.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-mpe.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +%{_texdir}/texmf-dist/tex/context/base/mkii/syst-tex.mkii +%{_texdir}/texmf-dist/tex/generic/context/mptopdf/ +%{fmtutil_cnf_d}/mptopdf +%doc %{_texdir}/texmf-dist/doc/context/scripts/mkii/mptopdf.man + +%files -n %{shortname}-multibibliography %license lppl1.3.txt %{_bindir}/multibibliography -%{_datadir}/texlive/texmf-dist/bibtex/bst/multibibliography/ -%{_datadir}/texlive/texmf-dist/scripts/multibibliography/ -%{_datadir}/texlive/texmf-dist/tex/latex/multibibliography/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/multibibliography/ +%{_texdir}/texmf-dist/bibtex/bst/multibibliography/ +%{_texdir}/texmf-dist/scripts/multibibliography/ +%{_texdir}/texmf-dist/tex/latex/multibibliography/ +%doc %{_texdir}/texmf-dist/doc/latex/multibibliography/ -%files -n texlive-musixtex +%files -n %{shortname}-musixtex %license gpl2.txt %{_bindir}/musixflx %{_bindir}/musixtex %{_mandir}/man1/musixflx.1* %{_mandir}/man1/musixtex.1* -%{_datadir}/texlive/texmf-dist/dvips/musixtex/ -%{_datadir}/texlive/texmf-dist/scripts/musixtex/ -%{_datadir}/texlive/texmf-dist/tex/generic/musixtex/ -%{_datadir}/texlive/texmf-dist/tex/latex/musixtex/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/musixtex/ +%{_texdir}/texmf-dist/dvips/musixtex/ +%{_texdir}/texmf-dist/scripts/musixtex/ +%{_texdir}/texmf-dist/tex/generic/musixtex/ +%{_texdir}/texmf-dist/tex/latex/musixtex/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtex/ -%files -n texlive-musixtnt +%files -n %{shortname}-musixtnt %license gpl2.txt %{_bindir}/msxlint %{_mandir}/man1/msxlint.1* -%{_datadir}/texlive/texmf-dist/tex/generic/musixtnt/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/musixtnt/ +%{_texdir}/texmf-dist/tex/generic/musixtnt/ +%doc %{_texdir}/texmf-dist/doc/generic/musixtnt/ -%files -n texlive-m-tx +%files -n %{shortname}-m-tx %license gpl.txt %{_bindir}/m-tx %{_bindir}/prepmx %{_mandir}/man1/prepmx.1* -%{_datadir}/texlive/texmf-dist/scripts/m-tx/ -%{_datadir}/texlive/texmf-dist/tex/generic/m-tx/ -%{_datadir}/texlive/texmf-dist/tex/latex/m-tx/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/m-tx/ +%{_texdir}/texmf-dist/scripts/m-tx/ +%{_texdir}/texmf-dist/tex/generic/m-tx/ +%{_texdir}/texmf-dist/tex/latex/m-tx/ +%doc %{_texdir}/texmf-dist/doc/generic/m-tx/ -%files -n texlive-oberdiek +%files -n %{shortname}-oberdiek %license lppl1.txt -%{_datadir}/texlive/texmf-dist/bibtex/bib/oberdiek/ -%{_datadir}/texlive/texmf-dist/tex/generic/oberdiek/ -%{_datadir}/texlive/texmf-dist/tex/latex/oberdiek/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/oberdiek/ +%{_texdir}/texmf-dist/bibtex/bib/oberdiek/ +%{_texdir}/texmf-dist/tex/generic/oberdiek/ +%{_texdir}/texmf-dist/tex/latex/oberdiek/ +%doc %{_texdir}/texmf-dist/doc/latex/oberdiek/ -%files -n texlive-omegaware +%files -n %{shortname}-omegaware %license lppl1.txt %{_bindir}/odvicopy %{_bindir}/odvitype @@ -7830,52 +10309,67 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ovf2ovp.1* %{_mandir}/man1/ovp2ovf.1* -%files -n texlive-optex +%files -n %{shortname}-optex %{_bindir}/optex -%{_datadir}/texlive/fmtutil.cnf.d/optex +%{fmtutil_cnf_d}/optex %{_mandir}/man1/optex.1* -%{_datadir}/texlive/texmf-dist/tex/optex/ -%doc %{_datadir}/texlive/texmf-dist/doc/optex/ +%{_texdir}/texmf-dist/tex/optex/ +%doc %{_texdir}/texmf-dist/doc/optex/ + +%files -n %{shortname}-optexcount +%{_bindir}/optexcount +%{_texdir}/texmf-dist/scripts/optexcount/ +%doc %{_texdir}/texmf-dist/doc/support/optexcount/ -%files -n texlive-patgen +%files -n %{shortname}-pagelayout +%license lppl1.3c.txt +%doc %{_texdir}/texmf-dist/doc/latex/pagelayout +%{_bindir}/pagelayoutapi +%{_bindir}/textestvis +%{_mandir}/man1/pagelayoutapi.1* +%{_mandir}/man1/textestvis.1* +%{_texdir}/texmf-dist/scripts/pagelayout +%{_texdir}/texmf-dist/tex/latex/pagelayout + +%files -n %{shortname}-patgen %license knuth.txt %{_bindir}/patgen %{_mandir}/man1/patgen.1* -%files -n texlive-pax +%files -n %{shortname}-pax %{_bindir}/pdfannotextractor -%{_datadir}/texlive/texmf-dist/scripts/pax/ -%{_datadir}/texlive/texmf-dist/tex/latex/pax/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pax/ +%{_texdir}/texmf-dist/scripts/pax/ +%{_texdir}/texmf-dist/tex/latex/pax/ +%doc %{_texdir}/texmf-dist/doc/latex/pax/ -%files -n texlive-pdfbook2 +%files -n %{shortname}-pdfbook2 %license gpl3.txt %{_bindir}/pdfbook2 %{_mandir}/man1/pdfbook2.1* -%{_datadir}/texlive/texmf-dist/scripts/pdfbook2/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfbook2/ +%{_texdir}/texmf-dist/scripts/pdfbook2/ +%doc %{_texdir}/texmf-dist/doc/support/pdfbook2/ -%files -n texlive-pdfcrop +%files -n %{shortname}-pdfcrop %license lppl1.txt %{_bindir}/pdfcrop %{_bindir}/rpdfcrop -%{_datadir}/texlive/texmf-dist/scripts/pdfcrop/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfcrop/ +%{_texdir}/texmf-dist/scripts/pdfcrop/ +%doc %{_texdir}/texmf-dist/doc/support/pdfcrop/ -%files -n texlive-pdfjam +%files -n %{shortname}-pdfjam %license gpl2.txt %{_bindir}/pdfjam %{_mandir}/man1/pdfjam.1* -%{_datadir}/texlive/texmf-dist/scripts/pdfjam/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfjam/ +%{_texdir}/texmf-dist/scripts/pdfjam/ +%doc %{_texdir}/texmf-dist/doc/support/pdfjam/ -%files -n texlive-pdflatexpicscale +%files -n %{shortname}-pdflatexpicscale %license lppl.txt %{_bindir}/pdflatexpicscale -%{_datadir}/texlive/texmf-dist/scripts/pdflatexpicscale -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdflatexpicscale +%{_texdir}/texmf-dist/scripts/pdflatexpicscale +%doc %{_texdir}/texmf-dist/doc/support/pdflatexpicscale -%files -n texlive-pdftex +%files -n %{shortname}-pdftex %license gpl.txt %{_bindir}/etex %{_bindir}/latex-dev @@ -7887,146 +10381,145 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/pdfetex.1* %{_mandir}/man1/pdflatex-dev.1* %{_mandir}/man1/pdftex.1* -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map -%{_datadir}/texlive/texmf-dist/fonts/tfm/public/pdftex/ -%{_datadir}/texlive/texmf-dist/fonts/type1/public/pdftex/ -%{_datadir}/texlive/texmf-dist/scripts/simpdftex/simpdftex -%{_datadir}/texlive/texmf-dist/tex/generic/config/pdftex-dvi.tex -%{_datadir}/texlive/texmf-dist/tex/generic/pdftex/ -%{_datadir}/texlive/fmtutil.cnf.d/latex-bin-dev -%{_datadir}/texlive/fmtutil.cnf.d/pdftex -%doc %{_datadir}/texlive/texmf-dist/doc/pdftex/ - -%files -n texlive-pdftex-quiet +%{_texdir}/texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map +%{_texdir}/texmf-dist/fonts/tfm/public/pdftex/ +%{_texdir}/texmf-dist/fonts/type1/public/pdftex/ +%{_texdir}/texmf-dist/scripts/simpdftex/simpdftex +%{_texdir}/texmf-dist/tex/generic/config/pdftex-dvi.tex +%{_texdir}/texmf-dist/tex/generic/pdftex/ +%{fmtutil_cnf_d}/latex-bin-dev +%{fmtutil_cnf_d}/pdftex +%doc %{_texdir}/texmf-dist/doc/pdftex/ + +%files -n %{shortname}-pdftex-quiet %license gpl3.txt %{_bindir}/pdftex-quiet -%{_datadir}/texlive/texmf-dist/scripts/pdftex-quiet/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdftex-quiet/ +%{_texdir}/texmf-dist/scripts/pdftex-quiet/ +%doc %{_texdir}/texmf-dist/doc/support/pdftex-quiet/ -%files -n texlive-pdftosrc +%files -n %{shortname}-pdftosrc %license gpl2.txt %{_bindir}/pdftosrc %{_mandir}/man1/pdftosrc.1* -%files -n texlive-pdfxup +%files -n %{shortname}-pdfxup %license lppl1.3.txt %{_bindir}/pdfxup %{_mandir}/man1/pdfxup.1* -%{_datadir}/texlive/texmf-dist/tex/latex/pdfxup/ -%{_datadir}/texlive/texmf-dist/scripts/pdfxup/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pdfxup/ +%{_texdir}/texmf-dist/tex/latex/pdfxup/ +%{_texdir}/texmf-dist/scripts/pdfxup/ +%doc %{_texdir}/texmf-dist/doc/support/pdfxup/ -%files -n texlive-pedigree-perl +%files -n %{shortname}-pedigree-perl %license gpl2.txt %{_bindir}/pedigree %{_mandir}/man1/pedigree.1* -%{_datadir}/texlive/texmf-dist/scripts/pedigree-perl/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pedigree-perl/ +%{_texdir}/texmf-dist/scripts/pedigree-perl/ +%doc %{_texdir}/texmf-dist/doc/support/pedigree-perl/ -%files -n texlive-perltex +%files -n %{shortname}-perltex %license lppl1.txt %{_bindir}/perltex %{_mandir}/man1/perltex.1* -%{_datadir}/texlive/texmf-dist/scripts/perltex/ -%{_datadir}/texlive/texmf-dist/tex/latex/perltex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/perltex/ +%{_texdir}/texmf-dist/scripts/perltex/ +%{_texdir}/texmf-dist/tex/latex/perltex/ +%doc %{_texdir}/texmf-dist/doc/latex/perltex/ -%files -n texlive-petri-nets +%files -n %{shortname}-petri-nets %license gpl.txt %{_bindir}/pn2pdf -%{_datadir}/texlive/texmf-dist/scripts/petri-nets/ -%{_datadir}/texlive/texmf-dist/tex/generic/petri-nets/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/petri-nets/ +%{_texdir}/texmf-dist/scripts/petri-nets/ +%{_texdir}/texmf-dist/tex/generic/petri-nets/ +%doc %{_texdir}/texmf-dist/doc/generic/petri-nets/ -%files -n texlive-pfarrei +%files -n %{shortname}-pfarrei %license lppl1.3.txt %{_bindir}/a5toa4 %{_bindir}/pfarrei -%{_datadir}/texlive/texmf-dist/scripts/pfarrei/ -%{_datadir}/texlive/texmf-dist/tex/latex/pfarrei/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pfarrei/ +%{_texdir}/texmf-dist/scripts/pfarrei/ +%{_texdir}/texmf-dist/tex/latex/pfarrei/ +%doc %{_texdir}/texmf-dist/doc/latex/pfarrei/ -%files -n texlive-pkfix +%files -n %{shortname}-pkfix %license lppl1.3.txt %{_bindir}/pkfix -%{_datadir}/texlive/texmf-dist/scripts/pkfix/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pkfix/ +%{_texdir}/texmf-dist/scripts/pkfix/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix/ -%files -n texlive-pkfix-helper +%files -n %{shortname}-pkfix-helper %license lppl1.txt %{_bindir}/pkfix-helper %{_mandir}/man1/pkfix-helper.1* -%{_datadir}/texlive/texmf-dist/scripts/pkfix-helper/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pkfix-helper/ +%{_texdir}/texmf-dist/scripts/pkfix-helper/ +%doc %{_texdir}/texmf-dist/doc/support/pkfix-helper/ -%files -n texlive-pmx +%files -n %{shortname}-pmx %license gpl2.txt %{_bindir}/pmxab %{_bindir}/scor2prt %{_mandir}/man1/pmxab.1* %{_mandir}/man1/scor2prt.1* -%{_datadir}/texlive/texmf-dist/tex/generic/pmx/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/pmx/ +%{_texdir}/texmf-dist/tex/generic/pmx/ +%doc %{_texdir}/texmf-dist/doc/generic/pmx/ -%files -n texlive-pmxchords +%files -n %{shortname}-pmxchords %license gpl2.txt %{_bindir}/pmxchords %{_mandir}/man1/pmxchords.1* -%{_datadir}/texlive/texmf-dist/scripts/pmxchords/ -%{_datadir}/texlive/texmf-dist/tex/generic/pmxchords/ -%doc %{_datadir}/texlive/texmf-dist/doc/pmxchords/ +%{_texdir}/texmf-dist/scripts/pmxchords/ +%{_texdir}/texmf-dist/tex/generic/pmxchords/ +%doc %{_texdir}/texmf-dist/doc/pmxchords/ -%files -n texlive-pst2pdf +%files -n %{shortname}-pst2pdf %license gpl2.txt %{_bindir}/pst2pdf -%{_datadir}/texlive/texmf-dist/scripts/pst2pdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/pst2pdf/ +%{_texdir}/texmf-dist/scripts/pst2pdf/ +%doc %{_texdir}/texmf-dist/doc/support/pst2pdf/ -%files -n texlive-pst-pdf +%files -n %{shortname}-pst-pdf %license lppl1.txt %{_bindir}/ps4pdf -%{_datadir}/texlive/texmf-dist/scripts/pst-pdf/ -%{_datadir}/texlive/texmf-dist/tex/latex/pst-pdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pst-pdf/ - -# No psutils for you today! -%if 0 -%files -n texlive-psutils -%{_bindir}/epsffit -%{_bindir}/extractres -%{_bindir}/includeres -%{_bindir}/psbook -%{_bindir}/psjoin -%{_bindir}/psnup -%{_bindir}/psresize -%{_bindir}/psselect -%{_bindir}/pstops -%{_mandir}/man1/epsffit.1* -%{_mandir}/man1/extractres.1* -%{_mandir}/man1/includeres.1* -%{_mandir}/man1/psbook.1* -%{_mandir}/man1/psjoin.1* -%{_mandir}/man1/psnup.1* -%{_mandir}/man1/psresize.1* -%{_mandir}/man1/psselect.1* -%{_mandir}/man1/pstops.1* -%{_mandir}/man1/psutils.1* -%{_datadir}/texlive/texmf-dist/dvips/getafm/ -%{_datadir}/texlive/texmf-dist/psutils/ +%{_texdir}/texmf-dist/scripts/pst-pdf/ +%{_texdir}/texmf-dist/tex/latex/pst-pdf/ +%doc %{_texdir}/texmf-dist/doc/latex/pst-pdf/ + +%if %{without psutils} +%files -n %{shortname}-psutils +%{_bindir}/tl-epsffit +%{_bindir}/tl-extractres +%{_bindir}/tl-includeres +%{_bindir}/tl-psbook +%{_bindir}/tl-psjoin +%{_bindir}/tl-psnup +%{_bindir}/tl-psresize +%{_bindir}/tl-psselect +%{_bindir}/tl-pstops +%{_mandir}/man1/tl-epsffit.1* +%{_mandir}/man1/tl-extractres.1* +%{_mandir}/man1/tl-includeres.1* +%{_mandir}/man1/tl-psbook.1* +%{_mandir}/man1/tl-psjoin.1* +%{_mandir}/man1/tl-psnup.1* +%{_mandir}/man1/tl-psresize.1* +%{_mandir}/man1/tl-psselect.1* +%{_mandir}/man1/tl-pstops.1* +%{_mandir}/man1/tl-psutils.1* +%{_texdir}/texmf-dist/dvips/getafm/ +%{_texdir}/texmf-dist/psutils/ %dir %{_sysconfdir}/texlive/psutils %config(noreplace) %{_sysconfdir}/texlive/psutils/paper.cfg -%{_datadir}/texlive/texmf-dist/scripts/psutils +%{_texdir}/texmf-dist/scripts/psutils %endif -%files -n texlive-ps2eps +%files -n %{shortname}-ps2eps %license gpl.txt %{_bindir}/bbox %{_bindir}/ps2eps %{_mandir}/man1/bbox.1* %{_mandir}/man1/ps2eps.1* -%{_datadir}/texlive/texmf-dist/scripts/ps2eps/ +%{_texdir}/texmf-dist/scripts/ps2eps/ -%files -n texlive-ps2pk +%files -n %{shortname}-ps2pk %license other-free.txt %{_bindir}/mag %{_bindir}/pfb2pfa @@ -8037,7 +10530,7 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/pk2bm.1* %{_mandir}/man1/ps2pk.1* -%files -n texlive-ptex +%files -n %{shortname}-ptex %{_bindir}/eptex %{_bindir}/makejvf %{_bindir}/mendex @@ -8054,65 +10547,66 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/eptex.1* %{_mandir}/man1/makejvf.1* %{_mandir}/man1/mendex.1* +%{_mandir}/man1/pbibtex.1* %{_mandir}/man1/platex-dev.1* %{_mandir}/man1/ppltotf.1* %{_mandir}/man1/ptex.1* %{_mandir}/man1/ptftopl.1* -%{_datadir}/texlive/fmtutil.cnf.d/platex -%{_datadir}/texlive/fmtutil.cnf.d/ptex +%{fmtutil_cnf_d}/platex +%{fmtutil_cnf_d}/ptex -%files -n texlive-ptex-fontmaps +%files -n %{shortname}-ptex-fontmaps %license gpl3.txt %license pd.txt %{_bindir}/kanji-config-updmap %{_bindir}/kanji-config-updmap-sys %{_bindir}/kanji-config-updmap-user %{_bindir}/kanji-fontmap-creator -%{_datadir}/texlive/texmf-dist/fonts/cmap/ptex-fontmaps -%{_datadir}/texlive/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps -%{_datadir}/texlive/texmf-dist/fonts/misc/ptex-fontmaps/ -%{_datadir}/texlive/texmf-dist/scripts/ptex-fontmaps -%{_datadir}/texlive/tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl -%doc %{_datadir}/texlive/texmf-dist/doc/fonts/ptex-fontmaps - -%files -n texlive-ptex2pdf +%{_texdir}/texmf-dist/fonts/cmap/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/map/dvipdfmx/ptex-fontmaps +%{_texdir}/texmf-dist/fonts/misc/ptex-fontmaps/ +%{_texdir}/texmf-dist/scripts/ptex-fontmaps +%{_texdir}/tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/fonts/ptex-fontmaps + +%files -n %{shortname}-ptex2pdf %license gpl2.txt %{_bindir}/ptex2pdf -%{_datadir}/texlive/texmf-dist/scripts/ptex2pdf/ -%{_datadir}/texlive/tlpkg/tlpostcode/ptex2pdf-tlpost.pl -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ptex2pdf/ +%{_texdir}/texmf-dist/scripts/ptex2pdf/ +%{_texdir}/tlpkg/tlpostcode/ptex2pdf-tlpost.pl +%doc %{_texdir}/texmf-dist/doc/latex/ptex2pdf/ -%files -n texlive-purifyeps +%files -n %{shortname}-purifyeps %license lppl1.txt %{_bindir}/purifyeps %{_mandir}/man1/purifyeps.1* -%{_datadir}/texlive/texmf-dist/scripts/purifyeps/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/purifyeps/ +%{_texdir}/texmf-dist/scripts/purifyeps/ +%doc %{_texdir}/texmf-dist/doc/support/purifyeps/ -%files -n texlive-pygmentex +%files -n %{shortname}-pygmentex %license lppl1.3.txt %{_bindir}/pygmentex -%{_datadir}/texlive/texmf-dist/scripts/pygmentex/ -%{_datadir}/texlive/texmf-dist/tex/latex/pygmentex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pygmentex/ +%{_texdir}/texmf-dist/scripts/pygmentex/ +%{_texdir}/texmf-dist/tex/latex/pygmentex/ +%doc %{_texdir}/texmf-dist/doc/latex/pygmentex/ -%files -n texlive-pythontex +%files -n %{shortname}-pythontex %license lppl1.3.txt %{_bindir}/depythontex %{_bindir}/pythontex -%{_datadir}/texlive/texmf-dist/scripts/pythontex/ -%{_datadir}/texlive/texmf-dist/tex/latex/pythontex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/pythontex/ +%{_texdir}/texmf-dist/scripts/pythontex/ +%{_texdir}/texmf-dist/tex/latex/pythontex/ +%doc %{_texdir}/texmf-dist/doc/latex/pythontex/ -%files -n texlive-rubik +%files -n %{shortname}-rubik %license lppl1.3.txt %{_bindir}/rubikrotation %{_mandir}/man1/rubikrotation.1* -%{_datadir}/texlive/texmf-dist/scripts/rubik/ -%{_datadir}/texlive/texmf-dist/tex/latex/rubik/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/rubik/ +%{_texdir}/texmf-dist/scripts/rubik/ +%{_texdir}/texmf-dist/tex/latex/rubik/ +%doc %{_texdir}/texmf-dist/doc/latex/rubik/ -%files -n texlive-seetexk +%files -n %{shortname}-seetexk %{_bindir}/dvibook %{_bindir}/dviconcat %{_bindir}/dviselect @@ -8122,66 +10616,66 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/dviselect.1* %{_mandir}/man1/dvitodvi.1* -%files -n texlive-spix +%files -n %{shortname}-spix %license gpl3.txt %{_bindir}/spix %{_mandir}/man1/spix* -%doc %{_datadir}/texlive/texmf-dist/doc/support/spix -%{_datadir}/texlive/texmf-dist/scripts/spix +%doc %{_texdir}/texmf-dist/doc/support/spix +%{_texdir}/texmf-dist/scripts/spix -%files -n texlive-splitindex +%files -n %{shortname}-splitindex %license lppl1.txt %{_bindir}/splitindex %{_mandir}/man1/splitindex.1* -%{_datadir}/texlive/texmf-dist/scripts/splitindex/ -%{_datadir}/texlive/texmf-dist/tex/generic/splitindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/splitindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/splitindex/ +%{_texdir}/texmf-dist/scripts/splitindex/ +%{_texdir}/texmf-dist/tex/generic/splitindex/ +%{_texdir}/texmf-dist/tex/latex/splitindex/ +%doc %{_texdir}/texmf-dist/doc/latex/splitindex/ -%files -n texlive-srcredact +%files -n %{shortname}-srcredact %license gpl2.txt %{_bindir}/srcredact %{_mandir}/man1/srcredact.1* -%{_datadir}/texlive/texmf-dist/scripts/srcredact/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/srcredact/ +%{_texdir}/texmf-dist/scripts/srcredact/ +%doc %{_texdir}/texmf-dist/doc/support/srcredact/ -%files -n texlive-sty2dtx +%files -n %{shortname}-sty2dtx %license gpl3.txt %{_bindir}/sty2dtx %{_mandir}/man1/sty2dtx.1* -%{_datadir}/texlive/texmf-dist/scripts/sty2dtx/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/sty2dtx/ +%{_texdir}/texmf-dist/scripts/sty2dtx/ +%doc %{_texdir}/texmf-dist/doc/support/sty2dtx/ -%files -n texlive-svn-multi +%files -n %{shortname}-svn-multi %license lppl1.txt %{_bindir}/svn-multi -%{_datadir}/texlive/texmf-dist/scripts/svn-multi/ -%{_datadir}/texlive/texmf-dist/tex/latex/svn-multi/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/svn-multi/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/svn-multi/ +%{_texdir}/texmf-dist/scripts/svn-multi/ +%{_texdir}/texmf-dist/tex/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/latex/svn-multi/ +%doc %{_texdir}/texmf-dist/doc/support/svn-multi/ -%files -n texlive-synctex +%files -n %{shortname}-synctex %license lppl1.txt %{_bindir}/synctex %{_mandir}/man1/synctex.1* %{_mandir}/man5/synctex.5* -%files -n texlive-tex +%files -n %{shortname}-tex %license knuth.txt %{_bindir}/initex %{_bindir}/tex %{_mandir}/man1/initex.1* %{_mandir}/man1/tex.1* -%{_datadir}/texlive/fmtutil.cnf.d/tex +%{fmtutil_cnf_d}/tex -%files -n texlive-tex4ebook +%files -n %{shortname}-tex4ebook %license lppl1.3.txt %{_bindir}/tex4ebook -%{_datadir}/texlive/texmf-dist/scripts/tex4ebook/ -%{_datadir}/texlive/texmf-dist/tex/latex/tex4ebook/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/tex4ebook/ +%{_texdir}/texmf-dist/scripts/tex4ebook/ +%{_texdir}/texmf-dist/tex/latex/tex4ebook/ +%doc %{_texdir}/texmf-dist/doc/support/tex4ebook/ -%files -n texlive-tex4ht +%files -n %{shortname}-tex4ht %license lppl1.txt %{_bindir}/ht %{_bindir}/htcontext @@ -8195,72 +10689,81 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/t4ht %{_bindir}/tex4ht %{_bindir}/xhlatex -%{_datadir}/texlive/texmf-dist/scripts/tex4ht/ -%{_datadir}/texlive/texmf-dist/tex/generic/tex4ht/ -%{_datadir}/texlive/texmf-dist/tex4ht/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/tex4ht/ +%{_texdir}/texmf-dist/scripts/tex4ht/ +%{_texdir}/texmf-dist/tex/generic/tex4ht/ +%{_texdir}/texmf-dist/tex4ht/ +%doc %{_texdir}/texmf-dist/doc/generic/tex4ht/ + +%if 0 +%files -n %{shortname}-texaccents +%license mit.txt +%{_bindir}/texaccents +%{_mandir}/man1/texaccents.1* +%doc %{_texdir}/texmf-dist/doc/support/texaccents +%{_texdir}/texmf-dist/scripts/texaccents +%endif -%files -n texlive-texcount +%files -n %{shortname}-texcount %license lppl1.txt %{_bindir}/texcount -%{_datadir}/texlive/texmf-dist/scripts/texcount/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texcount/ +%{_texdir}/texmf-dist/scripts/texcount/ +%doc %{_texdir}/texmf-dist/doc/support/texcount/ -%files -n texlive-texdef +%files -n %{shortname}-texdef %license gpl3.txt %{_bindir}/latexdef %{_bindir}/texdef -%{_datadir}/texlive/texmf-dist/scripts/texdef/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdef/ +%{_texdir}/texmf-dist/scripts/texdef/ +%doc %{_texdir}/texmf-dist/doc/support/texdef/ -%files -n texlive-texdiff +%files -n %{shortname}-texdiff %license gpl.txt %{_bindir}/texdiff -%{_datadir}/texlive/texmf-dist/scripts/texdiff +%{_texdir}/texmf-dist/scripts/texdiff %{_mandir}/man1/texdiff.1* -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdiff/ +%doc %{_texdir}/texmf-dist/doc/support/texdiff/ -%files -n texlive-texdirflatten +%files -n %{shortname}-texdirflatten %{_bindir}/texdirflatten %{_mandir}/man1/texdirflatten.1* -%{_datadir}/texlive/texmf-dist/scripts/texdirflatten/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdirflatten/ +%{_texdir}/texmf-dist/scripts/texdirflatten/ +%doc %{_texdir}/texmf-dist/doc/support/texdirflatten/ -%files -n texlive-texdoc +%files -n %{shortname}-texdoc %license gpl.txt %{_bindir}/texdoc %{_mandir}/man1/texdoc.1* -%{_datadir}/texlive/texmf-dist/scripts/texdoc/ -%{_datadir}/texlive/texmf-dist/texdoc/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texdoc/ +%{_texdir}/texmf-dist/scripts/texdoc/ +%{_texdir}/texmf-dist/texdoc/ +%doc %{_texdir}/texmf-dist/doc/support/texdoc/ -%files -n texlive-texdoctk +%files -n %{shortname}-texdoctk %license gpl.txt %{_bindir}/texdoctk %{_mandir}/man1/texdoctk.1* -%{_datadir}/texlive/texmf-dist/scripts/texdoctk/ -%{_datadir}/texlive/texmf-dist/texdoctk/ +%{_texdir}/texmf-dist/scripts/texdoctk/ +%{_texdir}/texmf-dist/texdoctk/ -%files -n texlive-texfot +%files -n %{shortname}-texfot %license pd.txt %{_bindir}/texfot %{_mandir}/man1/texfot.1* -%{_datadir}/texlive/texmf-dist/scripts/texfot/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texfot/ +%{_texdir}/texmf-dist/scripts/texfot/ +%doc %{_texdir}/texmf-dist/doc/support/texfot/ -%files -n texlive-texliveonfly +%files -n %{shortname}-texliveonfly %license gpl3.txt %{_bindir}/texliveonfly -%{_datadir}/texlive/texmf-dist/scripts/texliveonfly/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texliveonfly/ +%{_texdir}/texmf-dist/scripts/texliveonfly/ +%doc %{_texdir}/texmf-dist/doc/support/texliveonfly/ -%files -n texlive-texlive-en +%files -n %{shortname}-texlive-en %{_infodir}/tlbuild.info* -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/texlive-en/ -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/tlbuild/tlbuild.html -%doc %{_datadir}/texlive/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf +%doc %{_texdir}/texmf-dist/doc/texlive/texlive-en/ +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.html +%doc %{_texdir}/texmf-dist/doc/texlive/tlbuild/tlbuild.pdf -%files -n texlive-texlive-scripts +%files -n %{shortname}-texlive-scripts %license lppl1.txt %{_bindir}/fmtutil %{_bindir}/fmtutil-sys @@ -8285,25 +10788,26 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/updmap-sys.1* %{_mandir}/man1/updmap-user.1* %{_mandir}/man5/updmap.cfg.5* -%{_datadir}/texlive/texmf-config/web2c/updmap.cfg +%{_texdir}/texmf-config/web2c/updmap.cfg %config(noreplace) %{_sysconfdir}/texlive/web2c/updmap.cfg -%{_datadir}/texlive/texmf-dist/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/fonts/enc/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/tetex/ -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil-sys.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil-user.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/fmtutil.pl -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexlsr* -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexmf -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktexpk -%{_datadir}/texlive/texmf-dist/scripts/texlive/mktextfm -%{_datadir}/texlive/texmf-dist/scripts/texlive/rungs.tlu -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap-sys.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap-user.sh -%{_datadir}/texlive/texmf-dist/scripts/texlive/updmap.pl -%{_datadir}/texlive/texmf-dist/web2c/updmap.cfg - -%files -n texlive-texlive-scripts-extra +%{_texdir}/texmf-dist/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/enc/dvips/tetex/ +%{_texdir}/texmf-dist/fonts/map/dvips/tetex/ +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil-user.sh +%{_texdir}/texmf-dist/scripts/texlive/fmtutil.pl +%{_texdir}/texmf-dist/scripts/texlive/mktexlsr* +%{_texdir}/texmf-dist/scripts/texlive/mktexmf +%{_texdir}/texmf-dist/scripts/texlive/mktexpk +%{_texdir}/texmf-dist/scripts/texlive/mktextfm +%{_texdir}/texmf-dist/scripts/texlive/rungs.lua +# %%{_texdir}/texmf-dist/scripts/texlive/rungs.tlu +%{_texdir}/texmf-dist/scripts/texlive/updmap-sys.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap-user.sh +%{_texdir}/texmf-dist/scripts/texlive/updmap.pl +%{_texdir}/texmf-dist/web2c/updmap.cfg + +%files -n %{shortname}-texlive-scripts-extra %license gpl.txt %license lppl1.txt %{_bindir}/allcm @@ -8337,114 +10841,128 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/texconfig-sys.1* %{_mandir}/man1/texconfig.1* %{_mandir}/man1/texlinks.1* -%{_datadir}/texlive/texmf-dist/texconfig/ -%{_datadir}/texlive/texmf-dist/scripts/texlive-extra/ +%{_texdir}/texmf-dist/texconfig/ +%{_texdir}/texmf-dist/scripts/texlive-extra/ -%files -n texlive-texlive.infra +%files -n %{shortname}-texlive.infra %license lppl1.txt %{_bindir}/tlmgr -%{_datadir}/texlive/texmf-dist/web2c/fmtutil-hdr.cnf -%{_datadir}/texlive/texmf-dist/web2c/updmap-hdr.cfg -%{_datadir}/texlive/LICENSE.CTAN -%{_datadir}/texlive/LICENSE.TL -%{_datadir}/texlive/README -%{_datadir}/texlive/README.usergroups -%{_datadir}/texlive/index.html -%{_datadir}/texlive/readme-html.dir/readme.cs.html -%{_datadir}/texlive/readme-html.dir/readme.de.html -%{_datadir}/texlive/readme-html.dir/readme.en.html -%{_datadir}/texlive/readme-html.dir/readme.es.html -%{_datadir}/texlive/readme-html.dir/readme.fr.html -%{_datadir}/texlive/readme-html.dir/readme.it.html -%{_datadir}/texlive/readme-html.dir/readme.ja.html -%{_datadir}/texlive/readme-html.dir/readme.pl.html -%{_datadir}/texlive/readme-html.dir/readme.pt-br.html -%{_datadir}/texlive/readme-html.dir/readme.ru.html -%{_datadir}/texlive/readme-html.dir/readme.sk.html -%{_datadir}/texlive/readme-html.dir/readme.sr.html -%{_datadir}/texlive/readme-html.dir/readme.vi.html -%{_datadir}/texlive/readme-html.dir/readme.zh-cn.html -%{_datadir}/texlive/release-texlive.txt -%{_datadir}/texlive/texmf-dist/scripts/texlive/tlmgr.pl -%{_datadir}/texlive/tlpkg/installer/config.guess -%{_datadir}/texlive/tlpkg/TeXLive/TLConfFile.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLConfig.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLCrypto.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLDownload.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPDB.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPOBJ.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPSRC.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLPaper.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLTREE.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLUtils.pm -%{_datadir}/texlive/tlpkg/TeXLive/TLWinGoo.pm -%{_datadir}/texlive/tlpkg/TeXLive/TeXCatalogue.pm -%{_datadir}/texlive/tlpkg/TeXLive/trans.pl +%{_texdir}/texmf-dist/web2c/fmtutil-hdr.cnf +%{_texdir}/texmf-dist/web2c/updmap-hdr.cfg +%{_texdir}/LICENSE.CTAN +%{_texdir}/LICENSE.TL +%{_texdir}/README +%{_texdir}/README.usergroups +%{_texdir}/index.html +%{_texdir}/readme-html.dir/readme.cs.html +%{_texdir}/readme-html.dir/readme.de.html +%{_texdir}/readme-html.dir/readme.en.html +%{_texdir}/readme-html.dir/readme.es.html +%{_texdir}/readme-html.dir/readme.fr.html +%{_texdir}/readme-html.dir/readme.it.html +%{_texdir}/readme-html.dir/readme.ja.html +%{_texdir}/readme-html.dir/readme.pl.html +%{_texdir}/readme-html.dir/readme.pt-br.html +%{_texdir}/readme-html.dir/readme.ru.html +%{_texdir}/readme-html.dir/readme.sk.html +%{_texdir}/readme-html.dir/readme.sr.html +%{_texdir}/readme-html.dir/readme.vi.html +%{_texdir}/readme-html.dir/readme.zh-cn.html +%{_texdir}/release-texlive.txt +%{_texdir}/texmf-dist/scripts/texlive/tlmgr.pl +%{_texdir}/tlpkg/installer/config.guess +%{_texdir}/tlpkg/TeXLive/TLConfFile.pm +%{_texdir}/tlpkg/TeXLive/TLConfig.pm +%{_texdir}/tlpkg/TeXLive/TLCrypto.pm +%{_texdir}/tlpkg/TeXLive/TLDownload.pm +%{_texdir}/tlpkg/TeXLive/TLPDB.pm +%{_texdir}/tlpkg/TeXLive/TLPOBJ.pm +%{_texdir}/tlpkg/TeXLive/TLPSRC.pm +%{_texdir}/tlpkg/TeXLive/TLPaper.pm +%{_texdir}/tlpkg/TeXLive/TLTREE.pm +%{_texdir}/tlpkg/TeXLive/TLUtils.pm +%{_texdir}/tlpkg/TeXLive/TLWinGoo.pm +%{_texdir}/tlpkg/TeXLive/TeXCatalogue.pm +%{_texdir}/tlpkg/TeXLive/trans.pl +%{_datadir}/perl5/TeXLive %{_mandir}/man1/tlmgr.1* -%doc %{_datadir}/texlive/texmf-dist/scripts/texlive/NEWS -%doc %{_datadir}/texlive/tlpkg/README +%doc %{_texdir}/texmf-dist/scripts/texlive/NEWS +%doc %{_texdir}/tlpkg/README -%files -n texlive-texloganalyser +%files -n %{shortname}-texloganalyser %{_bindir}/texloganalyser -%{_datadir}/texlive/texmf-dist/scripts/texloganalyser/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/texloganalyser/ +%{_texdir}/texmf-dist/scripts/texloganalyser/ +%doc %{_texdir}/texmf-dist/doc/support/texloganalyser/ + +%files -n %{shortname}-texlogfilter +%{_bindir}/texlogfilter +%{_mandir}/man1/texlogfilter.1* +%{_texdir}/texmf-dist/scripts/texlogfilter/ +%doc %{_texdir}/texmf-dist/doc/support/texlogfilter/ + +%files -n %{shortname}-texlogsieve +%license gpl3.txt +%{_bindir}/texlogsieve +%{_mandir}/man1/texlogsieve.1* +%{_texdir}/texmf-dist/scripts/texlogsieve/ +%doc %{_texdir}/texmf-dist/doc/support/texlogsieve/ -%files -n texlive-texosquery +%files -n %{shortname}-texosquery %license lppl1.3.txt %{_bindir}/texosquery* -%{_datadir}/texlive/texmf-dist/scripts/texosquery -%{_datadir}/texlive/texmf-dist/tex/latex/texosquery -%doc %{_datadir}/texlive/texmf-dist/doc/support/texosquery +%{_texdir}/texmf-dist/scripts/texosquery +%{_texdir}/texmf-dist/tex/latex/texosquery +%doc %{_texdir}/texmf-dist/doc/support/texosquery -%files -n texlive-texplate +%files -n %{shortname}-texplate %license bsd.txt %{_bindir}/texplate -%{_datadir}/texlive/texmf-dist/scripts/texplate -%doc %{_datadir}/texlive/texmf-dist/doc/support/texplate +%{_texdir}/texmf-dist/scripts/texplate +%doc %{_texdir}/texmf-dist/doc/support/texplate -%files -n texlive-texsis +%files -n %{shortname}-texsis %license lppl1.txt %{_bindir}/texsis %{_mandir}/man1/texsis.1* -%{_datadir}/texlive/texmf-dist/bibtex/bst/texsis/ -%{_datadir}/texlive/texmf-dist/tex/texsis/ -%{_datadir}/texlive/fmtutil.cnf.d/texsis -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/texsis/ +%{_texdir}/texmf-dist/bibtex/bst/texsis/ +%{_texdir}/texmf-dist/tex/texsis/ +%{fmtutil_cnf_d}/texsis +%doc %{_texdir}/texmf-dist/doc/otherformats/texsis/ -%files -n texlive-texware +%files -n %{shortname}-texware %license knuth.txt %{_bindir}/dvitype %{_bindir}/pooltype %{_mandir}/man1/dvitype.1* %{_mandir}/man1/pooltype.1* -%files -n texlive-thumbpdf +%files -n %{shortname}-thumbpdf %license lppl1.txt %{_bindir}/thumbpdf %{_mandir}/man1/thumbpdf.1* -%{_datadir}/texlive/texmf-dist/scripts/thumbpdf/ -%{_datadir}/texlive/texmf-dist/tex/generic/thumbpdf/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/thumbpdf/ +%{_texdir}/texmf-dist/scripts/thumbpdf/ +%{_texdir}/texmf-dist/tex/generic/thumbpdf/ +%doc %{_texdir}/texmf-dist/doc/generic/thumbpdf/ -%files -n texlive-tie +%files -n %{shortname}-tie %{_bindir}/tie %{_mandir}/man1/tie.1* -%files -n texlive-tikztosvg +%files -n %{shortname}-tikztosvg %license gpl3.txt %{_bindir}/tikztosvg %{_mandir}/man1/tikztosvg* -%doc %{_datadir}/texlive/texmf-dist/doc/support/tikztosvg -%{_datadir}/texlive/texmf-dist/scripts/tikztosvg +%doc %{_texdir}/texmf-dist/doc/support/tikztosvg +%{_texdir}/texmf-dist/scripts/tikztosvg -%files -n texlive-tpic2pdftex +%files -n %{shortname}-tpic2pdftex %license gpl.txt %{_bindir}/tpic2pdftex %{_mandir}/man1/tpic2pdftex.1* -%doc %{_datadir}/texlive/texmf-dist/doc/tpic2pdftex/ +%doc %{_texdir}/texmf-dist/doc/tpic2pdftex/ -%files -n texlive-ttfutils +%files -n %{shortname}-ttfutils %license lppl1.txt %{_bindir}/ttf2afm %{_bindir}/ttf2pk @@ -8454,25 +10972,31 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_mandir}/man1/ttf2pk.1* %{_mandir}/man1/ttf2tfm.1* %{_mandir}/man1/ttfdump.1* -%{_datadir}/texlive/texmf-dist/fonts/enc/ttf2pk/ -%{_datadir}/texlive/texmf-dist/fonts/sfd/ttf2pk/ -%{_datadir}/texlive/texmf-dist/ttf2pk/ -%doc %{_datadir}/texlive/texmf-dist/doc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/enc/ttf2pk/ +%{_texdir}/texmf-dist/fonts/sfd/ttf2pk/ +%{_texdir}/texmf-dist/ttf2pk/ +%doc %{_texdir}/texmf-dist/doc/ttf2pk/ -%files -n texlive-typeoutfileinfo +%files -n %{shortname}-typeoutfileinfo %license lppl1.3.txt %{_bindir}/typeoutfileinfo -%{_datadir}/texlive/texmf-dist/scripts/typeoutfileinfo/ -%doc %{_datadir}/texlive/texmf-dist/doc/support/typeoutfileinfo/ +%{_texdir}/texmf-dist/scripts/typeoutfileinfo/ +%doc %{_texdir}/texmf-dist/doc/support/typeoutfileinfo/ -%files -n texlive-ulqda +%files -n %{shortname}-ulqda %license lppl1.txt %{_bindir}/ulqda -%{_datadir}/texlive/texmf-dist/scripts/ulqda/ -%{_datadir}/texlive/texmf-dist/tex/latex/ulqda/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/ulqda/ +%{_texdir}/texmf-dist/scripts/ulqda/ +%{_texdir}/texmf-dist/tex/latex/ulqda/ +%doc %{_texdir}/texmf-dist/doc/latex/ulqda/ + +%files -n %{shortname}-upmendex +%license bsd.txt +%{_bindir}/upmendex +%{_mandir}/man1/upmendex.1* +%doc %{_texdir}/texmf-dist/doc/support/upmendex/ -%files -n texlive-uptex +%files -n %{shortname}-uptex %{_bindir}/euptex %{_bindir}/r-upmpost %{_bindir}/upbibtex @@ -8480,149 +11004,158 @@ yes | %{_bindir}/updmap-sys --quiet --syncwithtrees >/dev/null 2>&1 || : %{_bindir}/updvitype %{_bindir}/uplatex %{_bindir}/uplatex-dev -%{_bindir}/upmendex %{_bindir}/upmpost %{_bindir}/uppltotf %{_bindir}/uptex %{_bindir}/uptftopl %{_bindir}/wovp2ovf %{_mandir}/man1/euptex.1* +%{_mandir}/man1/upbibtex.1* %{_mandir}/man1/uplatex.1* %{_mandir}/man1/uplatex-dev.1* -%{_mandir}/man1/upmendex.1* %{_mandir}/man1/uppltotf.1* %{_mandir}/man1/uptex.1* %{_mandir}/man1/uptftopl.1* -%{_datadir}/texlive/fmtutil.cnf.d/uplatex -%{_datadir}/texlive/fmtutil.cnf.d/uptex -%doc %{_datadir}/texlive/texmf-dist/doc/upmendex/ -%doc %{_datadir}/texlive/texmf-dist/doc/uplatex/ +%{fmtutil_cnf_d}/uplatex +%{fmtutil_cnf_d}/uptex +%doc %{_texdir}/texmf-dist/doc/uplatex/ -%files -n texlive-urlbst +%files -n %{shortname}-urlbst %license gpl.txt %{_bindir}/urlbst -%{_datadir}/texlive/texmf-dist/bibtex/bst/urlbst/ -%{_datadir}/texlive/texmf-dist/scripts/urlbst/ -%doc %{_datadir}/texlive/texmf-dist/doc/bibtex/urlbst/ +%{_texdir}/texmf-dist/bibtex/bst/urlbst/ +%{_texdir}/texmf-dist/scripts/urlbst/ +%doc %{_texdir}/texmf-dist/doc/bibtex/urlbst/ -%files -n texlive-velthuis +%files -n %{shortname}-velthuis %license gpl.txt %{_bindir}/devnag %{_mandir}/man1/devnag.1* -%{_datadir}/texlive/texmf-dist/fonts/afm/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/map/dvips/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/source/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/tfm/public/velthuis/ -%{_datadir}/texlive/texmf-dist/fonts/type1/public/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/generic/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/latex/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/plain/velthuis/ -%{_datadir}/texlive/texmf-dist/tex/xelatex/velthuis/ -%doc %{_datadir}/texlive/texmf-dist/doc/generic/velthuis/ - -%files -n texlive-vlna +%{_texdir}/texmf-dist/fonts/afm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/map/dvips/velthuis/ +%{_texdir}/texmf-dist/fonts/source/public/velthuis/ +%{_texdir}/texmf-dist/fonts/tfm/public/velthuis/ +%{_texdir}/texmf-dist/fonts/type1/public/velthuis/ +%{_texdir}/texmf-dist/tex/generic/velthuis/ +%{_texdir}/texmf-dist/tex/latex/velthuis/ +%{_texdir}/texmf-dist/tex/plain/velthuis/ +%{_texdir}/texmf-dist/tex/xelatex/velthuis/ +%doc %{_texdir}/texmf-dist/doc/generic/velthuis/ + +%files -n %{shortname}-vlna %license lppl1.txt %{_bindir}/vlna %{_mandir}/man1/vlna.1* -%doc %{_datadir}/texlive/texmf-dist/doc/vlna/ +%doc %{_texdir}/texmf-dist/doc/vlna/ -%files -n texlive-vpe +%files -n %{shortname}-vpe %license lppl1.txt %{_bindir}/vpe -%{_datadir}/texlive/texmf-dist/scripts/vpe/ -%{_datadir}/texlive/texmf-dist/tex/latex/vpe/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/vpe/ +%{_texdir}/texmf-dist/scripts/vpe/ +%{_texdir}/texmf-dist/tex/latex/vpe/ +%doc %{_texdir}/texmf-dist/doc/latex/vpe/ -%files -n texlive-web +%files -n %{shortname}-web %license knuth.txt %{_bindir}/tangle %{_bindir}/weave %{_mandir}/man1/tangle.1* %{_mandir}/man1/weave.1* -%files -n texlive-webquiz +%files -n %{shortname}-webquiz %license gpl.txt %{_bindir}/webquiz %{_mandir}/man1/webquiz.1* -%{_datadir}/texlive/texmf-dist/scripts/webquiz/ -%{_datadir}/texlive/texmf-dist/tex/latex/webquiz/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/webquiz/ +%{_texdir}/texmf-dist/scripts/webquiz/ +%{_texdir}/texmf-dist/tex/latex/webquiz/ +%doc %{_texdir}/texmf-dist/doc/latex/webquiz/ -%files -n texlive-wordcount +%files -n %{shortname}-wordcount %license lppl1.txt %{_bindir}/wordcount -%{_datadir}/texlive/texmf-dist/scripts/wordcount/ -%{_datadir}/texlive/texmf-dist/tex/latex/wordcount/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/wordcount/ +%{_texdir}/texmf-dist/scripts/wordcount/ +%{_texdir}/texmf-dist/tex/latex/wordcount/ +%doc %{_texdir}/texmf-dist/doc/latex/wordcount/ -%files -n texlive-xdvi +%files -n %{shortname}-xdvi %{_bindir}/xdvi %{_bindir}/xdvi-xaw %{_mandir}/man1/xdvi.1* -%{_datadir}/texlive/texmf-dist/dvips/xdvi/ -%{_datadir}/texlive/texmf-dist/xdvi/ +%{_texdir}/texmf-dist/dvips/xdvi/ +%{_texdir}/texmf-dist/xdvi/ -%files -n texlive-xetex +%files -n %{shortname}-xetex %license other-free.txt %{_bindir}/xdvipdfmx %{_bindir}/xelatex %{_bindir}/xelatex-dev +%{_bindir}/xelatex-unsafe %{_bindir}/xetex +%{_bindir}/xetex-unsafe %{_mandir}/man1/xelatex.1* %{_mandir}/man1/xelatex-dev.1* +%{_mandir}/man1/xelatex-unsafe.1* %{_mandir}/man1/xetex.1* -%{_datadir}/texlive/tlpkg/tlpostcode/xetex.pl -%{_datadir}/texlive/texmf-dist/fonts/misc/xetex/ -%{_datadir}/texlive/fmtutil.cnf.d/xelatex-dev -%{_datadir}/texlive/fmtutil.cnf.d/xetex -%doc %{_datadir}/texlive/texmf-dist/doc/xetex/ - -%files -n texlive-xindex +%{_mandir}/man1/xetex-unsafe.1* +%{_texdir}/tlpkg/tlpostcode/xetex.pl +%{_texdir}/texmf-dist/fonts/misc/xetex/ +%{fmtutil_cnf_d}/xelatex-dev +%{fmtutil_cnf_d}/xetex +%doc %{_texdir}/texmf-dist/doc/xetex/ + +%files -n %{shortname}-xindex %license lppl1.3.txt %{_bindir}/xindex -%{_datadir}/texlive/texmf-dist/scripts/xindex/ -%{_datadir}/texlive/texmf-dist/tex/latex/xindex/ -%{_datadir}/texlive/texmf-dist/tex/lualatex/xindex/ -%doc %{_datadir}/texlive/texmf-dist/doc/lualatex/xindex/ +%{_texdir}/texmf-dist/scripts/xindex/ +%{_texdir}/texmf-dist/tex/latex/xindex/ +%{_texdir}/texmf-dist/tex/lualatex/xindex/ +%doc %{_texdir}/texmf-dist/doc/lualatex/xindex/ -%ifarch empty -%files -n texlive-xindy +%files -n %{shortname}-xindy %license gpl.txt +%if %{without bootstrap} +%{_bindir}/tex2xindy +%{_bindir}/texindy +%{_bindir}/xindy +%{_bindir}/xindy.mem +%endif %{_mandir}/man1/xindy.1* %{_mandir}/man1/texindy.1* %{_mandir}/man1/tex2xindy.1* -%{_datadir}/texlive/texmf-dist/scripts/xindy/ -%{_datadir}/texlive/texmf-dist/xindy/ -%doc %{_datadir}/texlive/texmf-dist/doc/xindy/ -%endif +%{_texdir}/texmf-dist/scripts/xindy/ +%{_texdir}/texmf-dist/xindy/ +%doc %{_texdir}/texmf-dist/doc/xindy/ -%files -n texlive-xml2pmx +%files -n %{shortname}-xml2pmx %license gpl3.txt %{_bindir}/xml2pmx %{_mandir}/man1/xml2pmx* -%files -n texlive-xmltex +%files -n %{shortname}-xmltex %license lppl1.txt %{_bindir}/pdfxmltex %{_bindir}/xmltex -%{_datadir}/texlive/texmf-dist/tex/xmltex/ -%{_datadir}/texlive/fmtutil.cnf.d/xmltex -%doc %{_datadir}/texlive/texmf-dist/doc/otherformats/xmltex/ +%{_texdir}/texmf-dist/tex/xmltex/ +%{fmtutil_cnf_d}/xmltex +%doc %{_texdir}/texmf-dist/doc/otherformats/xmltex/ -%files -n texlive-xpdfopen +%files -n %{shortname}-xpdfopen %{_bindir}/pdfclose %{_bindir}/pdfopen %{_mandir}/man1/pdfclose.1* %{_mandir}/man1/pdfopen.1* -%files -n texlive-yplan +%files -n %{shortname}-yplan %license lppl1.txt %{_bindir}/yplan -%{_datadir}/texlive/texmf-dist/scripts/yplan/ -%{_datadir}/texlive/texmf-dist/tex/latex/yplan/ -%doc %{_datadir}/texlive/texmf-dist/doc/latex/yplan/ +%{_texdir}/texmf-dist/scripts/yplan/ +%{_texdir}/texmf-dist/tex/latex/yplan/ +%doc %{_texdir}/texmf-dist/doc/latex/yplan/ %changelog +* Mon Nov 03 2025 wangkai <13474090681@163.com> - 10:20230311-1 +- Update to 20230311 + * Thu Mar 06 2025 yaoxin <1024769339@qq.com> - 9:20210325-11 - Fix build failure caused by icu update to 76 diff --git a/texlive-base.yaml b/texlive-base.yaml deleted file mode 100644 index 00bbaf050db91e87f0ad529e5c29027a1bf150ae..0000000000000000000000000000000000000000 --- a/texlive-base.yaml +++ /dev/null @@ -1,4 +0,0 @@ -version_control: NA -src_repo: NA -tag_prefix: NA -seperator: NA diff --git a/texlive-en.doc.tar.xz b/texlive-en.doc.tar.xz index bb5f6c60e8e63ebf8167e400235aae439546e7ab..a6d3b1d36764811e67f066dc6106c6fd065e9d44 100644 Binary files a/texlive-en.doc.tar.xz and b/texlive-en.doc.tar.xz differ diff --git a/texlive-fedora-texmfcnf.lua.patch b/texlive-fedora-texmfcnf.lua.patch new file mode 100644 index 0000000000000000000000000000000000000000..42607b94dc5aacce4c3629b8b4c00dc2b796df5b --- /dev/null +++ b/texlive-fedora-texmfcnf.lua.patch @@ -0,0 +1,59 @@ +diff -up ./web2c/texmfcnf.lua.fedora ./web2c/texmfcnf.lua +--- ./web2c/texmfcnf.lua.fedora 2023-05-25 10:25:41.195939763 -0400 ++++ ./web2c/texmfcnf.lua 2023-05-25 10:33:33.761097942 -0400 +@@ -11,6 +11,7 @@ return { + comment = "ConTeXt MkIV and LMTX configuration file", + author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", + target = "texlive", ++ -- modified for Fedora, based on Preining Norbert's work in Debian + + content = { + +@@ -52,7 +53,7 @@ return { + + TEXMFVAR = "home:" .. hiddentexlivepath .. "/texmf-var", + TEXMFCONFIG = "home:" .. hiddentexlivepath .. "/texmf-config", +- TEXMFSYSVAR = "selfautoparent:texmf-var", ++ TEXMFSYSVAR = "/var/lib/texmf", + TEXMFCACHE = "$TEXMFSYSVAR;$TEXMFVAR", + + -- I don't like this texmf under home and texmf-home would make more sense. One never knows +@@ -62,7 +63,7 @@ return { + -- By using prefixes we don't get expanded paths in the cache __path__ entry. This makes the + -- tex root relocatable. + +- TEXMFOS = "selfautodir:", ++ -- TEXMFOS = "selfautodir:", + + -- standalone: + +@@ -73,14 +74,15 @@ return { + + -- texlive: + +- TEXMFDIST = "selfautoparent:texmf-dist", +- TEXMFSYSCONFIG = "selfautoparent:texmf-config", ++ TEXMFDIST = "/usr/share/texlive/texmf-dist", ++ TEXMFFEDORA = "/usr/share/texmf", ++ TEXMFSYSCONFIG = "/usr/share/texlive/texmf-config", + + -- The texmf-local path is only used for (maybe) some additional configuration file. + +- TEXMFLOCAL = "selfautoparent:texmf-local", +- TEXMFFONTS = "selfautoparent:texmf-fonts", +- TEXMFPROJECT = "selfautoparent:texmf-project", ++ TEXMFLOCAL = "/usr/share/texlive/texmf-local", ++ -- TEXMFFONTS = "selfautoparent:texmf-fonts", ++ -- TEXMFPROJECT = "selfautoparent:texmf-project", + + TEXMFHOME = "home:texmf", + -- TEXMFHOME = os.name == "macosx" and "home:Library/texmf" or "home:texmf", +@@ -94,7 +96,7 @@ return { + + -- texlive: + +- TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFPROJECT,!!$TEXMFFONTS,!!$TEXMFLOCAL,!!$TEXMFDIST}", ++ TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFLOCAL,!!$TEXMFFEDORA,!!$TEXMFDIST}", + + TEXFONTMAPS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/map/{pdftex,dvips}//", + ENCFONTS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/enc/{dvips,pdftex}//", diff --git a/texlive-licenses.tar.xz b/texlive-licenses.tar.xz index 1c33a007397d034547f430d3d912a2c401ad5085..6bdf4e0a97a7ab1dde8d9863241fc27547e119f1 100644 Binary files a/texlive-licenses.tar.xz and b/texlive-licenses.tar.xz differ diff --git a/texlive-scripts-extra.doc.tar.xz b/texlive-scripts-extra.doc.tar.xz index 65c98a3a4b3399b4b014e0862b03a275835a0275..28dfa44528f2f99b9609c74b11532602eaff213f 100644 Binary files a/texlive-scripts-extra.doc.tar.xz and b/texlive-scripts-extra.doc.tar.xz differ diff --git a/texlive-scripts-extra.tar.xz b/texlive-scripts-extra.tar.xz index 16dc36b62e5aa6f96e533eca481c64f5aabd1fde..11b1c1e68414b4f230391550f1d37b9ed8fd8079 100644 Binary files a/texlive-scripts-extra.tar.xz and b/texlive-scripts-extra.tar.xz differ diff --git a/texlive-scripts.doc.tar.xz b/texlive-scripts.doc.tar.xz index a4fcb57e4e94f9b872f95fcf71a290b3ec799348..f4551169aba38dbab3cfcde0c697b16b6061d45f 100644 Binary files a/texlive-scripts.doc.tar.xz and b/texlive-scripts.doc.tar.xz differ diff --git a/texlive-scripts.tar.xz b/texlive-scripts.tar.xz index 089d17931eef00d049566181c7d4ff3516a6f920..2dbb3dcf9d84c1d4a924adc0c9de61661023ddc0 100644 Binary files a/texlive-scripts.tar.xz and b/texlive-scripts.tar.xz differ diff --git a/texlive.infra.doc.tar.xz b/texlive.infra.doc.tar.xz index c7cb4dc50cd33b1a74e42e06159100c5a9021cd7..b653b6f5aeb47c40a0c198e84c3675f9e43d67c9 100644 Binary files a/texlive.infra.doc.tar.xz and b/texlive.infra.doc.tar.xz differ diff --git a/texlive.infra.tar.xz b/texlive.infra.tar.xz index 2757056c6ef4c4b3e22973fa8b6a9bebcb71ff30..0efebc4cac45519789d6f7f90c53cf78dbf0790f 100644 Binary files a/texlive.infra.tar.xz and b/texlive.infra.tar.xz differ diff --git a/texlive.tlpdb b/texlive.tlpdb index 563f9c76f3270b83c1077f995feedd6d3120f973..62b20b92a83e04c2a4a1e5944ca7ba4d01b304b3 100644 --- a/texlive.tlpdb +++ b/texlive.tlpdb @@ -25,12 +25,12 @@ depend container_split_doc_files/1 depend container_split_src_files/1 depend frozen/0 depend minrelease/2016 -depend release/2021 -depend revision/59092 +depend release/2023 +depend revision/66597 name 00texlive.image category TLCore -revision 59079 +revision 66579 shortdesc TeX Live files only in the source repository longdesc The files here are not copied by the installer and containers longdesc are not built for them; they exist only in the source @@ -40,7 +40,7 @@ longdesc IgnorePatterns in the check_files routine in tlmgr.pl augment longdesc this list. Those are not included in the source/ tarball. For longdesc information on the 00texlive prefix see longdesc 00texlive.installation(.tlpsrc) -runfiles size=13860 +runfiles size=12966 .mkisofsrc autorun.inf texmf-dist/README @@ -66,15 +66,18 @@ runfiles size=13860 tlpkg/bin/archive/tl-fix-container-infos tlpkg/bin/archive/tl-update-keywords tlpkg/bin/archive/tl-update-testcow + tlpkg/bin/c2a tlpkg/bin/c2b tlpkg/bin/c2l tlpkg/bin/c2lx tlpkg/bin/cmp-textfiles tlpkg/bin/ctan2tl tlpkg/bin/deref-symlinks + tlpkg/bin/etex-answer-y tlpkg/bin/htmltext tlpkg/bin/pdflatex-preserve-pdf tlpkg/bin/tl-check-files-by-format + tlpkg/bin/tl-check-fmtshare tlpkg/bin/tl-check-fmttriggers tlpkg/bin/tl-check-symlinks tlpkg/bin/tl-check-tlnet-consistency @@ -83,6 +86,7 @@ runfiles size=13860 tlpkg/bin/tl-dump-texcatalogue tlpkg/bin/tl-fix-container-links tlpkg/bin/tl-makeself-from-tlnet + tlpkg/bin/tl-print-dependencies tlpkg/bin/tl-prune-platforms tlpkg/bin/tl-sign-file tlpkg/bin/tl-try-install @@ -99,6 +103,7 @@ runfiles size=13860 tlpkg/bin/tl-update-linked-scripts tlpkg/bin/tl-update-man tlpkg/bin/tl-update-messages + tlpkg/bin/tl-update-news tlpkg/bin/tl-update-nsis tlpkg/bin/tl-update-tlcritical tlpkg/bin/tl-update-tlnet @@ -206,10 +211,13 @@ runfiles size=13860 tlpkg/dev/mktextex.pl tlpkg/dev/mktexupd.texlua tlpkg/dev/profiles/README + tlpkg/dev/profiles/TLbasic.pro + tlpkg/dev/profiles/TLbookpub.pro tlpkg/dev/profiles/TLcomma.pro tlpkg/dev/profiles/TLctx.pro tlpkg/dev/profiles/TLfmt.pro tlpkg/dev/profiles/TLfull.pro + tlpkg/dev/profiles/TLhyphtest.pro tlpkg/dev/profiles/TLinfra+exe.pro tlpkg/dev/profiles/TLinfra+none.pro tlpkg/dev/profiles/TLinfra+sys.pro @@ -219,9 +227,11 @@ runfiles size=13860 tlpkg/dev/profiles/TLmeddoc.pro tlpkg/dev/profiles/TLmedfmt.pro tlpkg/dev/profiles/TLmin.pro + tlpkg/dev/profiles/TLminall.pro tlpkg/dev/profiles/TLmindoc.pro tlpkg/dev/profiles/TLminfmt.pro tlpkg/dev/profiles/TLminfmtpaper.pro + tlpkg/dev/profiles/TLportable.pro tlpkg/dev/profiles/TLroot.pro tlpkg/dev/profiles/TLsmall.pro tlpkg/dev/profiles/TLspace.pro @@ -340,10 +350,10 @@ runfiles size=13860 tlpkg/doc/packages.txt tlpkg/doc/releng.txt tlpkg/doc/repository-setup.txt - tlpkg/libexec/bin-cjkutils.pl tlpkg/libexec/c90.pl tlpkg/libexec/cjk-build.pl tlpkg/libexec/cjk.pl + tlpkg/libexec/cjkutils.pl tlpkg/libexec/ctan2tds tlpkg/libexec/dnp.pl tlpkg/libexec/garuda-c90.pl @@ -362,17 +372,6 @@ runfiles size=13860 tlpkg/tlpsrc/00texlive.installer.tlpsrc tlpkg/tlpsrc/12many.tlpsrc tlpkg/tlpsrc/2up.tlpsrc - tlpkg/tlpsrc/Asana-Math.tlpsrc - tlpkg/tlpsrc/ESIEEcv.tlpsrc - tlpkg/tlpsrc/GS1.tlpsrc - tlpkg/tlpsrc/HA-prosper.tlpsrc - tlpkg/tlpsrc/IEEEconf.tlpsrc - tlpkg/tlpsrc/IEEEtran.tlpsrc - tlpkg/tlpsrc/MemoirChapStyles.tlpsrc - tlpkg/tlpsrc/SIstyle.tlpsrc - tlpkg/tlpsrc/SIunits.tlpsrc - tlpkg/tlpsrc/Tabbing.tlpsrc - tlpkg/tlpsrc/Type1fonts.tlpsrc tlpkg/tlpsrc/a0poster.tlpsrc tlpkg/tlpsrc/a2ping.tlpsrc tlpkg/tlpsrc/a4wide.tlpsrc @@ -384,7 +383,10 @@ runfiles size=13860 tlpkg/tlpsrc/abc.tlpsrc tlpkg/tlpsrc/abnt.tlpsrc tlpkg/tlpsrc/abntex2.tlpsrc + tlpkg/tlpsrc/abntexto.tlpsrc + tlpkg/tlpsrc/aboensis.tlpsrc tlpkg/tlpsrc/abraces.tlpsrc + tlpkg/tlpsrc/abspos.tlpsrc tlpkg/tlpsrc/abstract.tlpsrc tlpkg/tlpsrc/abstyles.tlpsrc tlpkg/tlpsrc/academicons.tlpsrc @@ -430,6 +432,7 @@ runfiles size=13860 tlpkg/tlpsrc/akletter.tlpsrc tlpkg/tlpsrc/akshar.tlpsrc tlpkg/tlpsrc/albatross.tlpsrc + tlpkg/tlpsrc/alchemist.tlpsrc tlpkg/tlpsrc/alegreya.tlpsrc tlpkg/tlpsrc/aleph.tlpsrc tlpkg/tlpsrc/alertmessage.tlpsrc @@ -450,8 +453,9 @@ runfiles size=13860 tlpkg/tlpsrc/alnumsec.tlpsrc tlpkg/tlpsrc/alpha-persian.tlpsrc tlpkg/tlpsrc/alphalph.tlpsrc + tlpkg/tlpsrc/alterqcm.tlpsrc tlpkg/tlpsrc/altfont.tlpsrc - tlpkg/tlpsrc/ametsoc.tlpsrc + tlpkg/tlpsrc/altsubsup.tlpsrc tlpkg/tlpsrc/amiri.tlpsrc tlpkg/tlpsrc/amiweb2c-guide.tlpsrc tlpkg/tlpsrc/amsaddr.tlpsrc @@ -467,8 +471,10 @@ runfiles size=13860 tlpkg/tlpsrc/amsrefs.tlpsrc tlpkg/tlpsrc/amstex.tlpsrc tlpkg/tlpsrc/amsthdoc-it.tlpsrc + tlpkg/tlpsrc/andika.tlpsrc tlpkg/tlpsrc/animate.tlpsrc tlpkg/tlpsrc/annee-scolaire.tlpsrc + tlpkg/tlpsrc/annotate-equations.tlpsrc tlpkg/tlpsrc/annotate.tlpsrc tlpkg/tlpsrc/anonchap.tlpsrc tlpkg/tlpsrc/anonymous-acm.tlpsrc @@ -488,6 +494,7 @@ runfiles size=13860 tlpkg/tlpsrc/apa6e.tlpsrc tlpkg/tlpsrc/apa7.tlpsrc tlpkg/tlpsrc/apacite.tlpsrc + tlpkg/tlpsrc/apalike-ejor.tlpsrc tlpkg/tlpsrc/apalike-german.tlpsrc tlpkg/tlpsrc/apalike2.tlpsrc tlpkg/tlpsrc/apnum.tlpsrc @@ -499,6 +506,7 @@ runfiles size=13860 tlpkg/tlpsrc/apxproof.tlpsrc tlpkg/tlpsrc/arabi-add.tlpsrc tlpkg/tlpsrc/arabi.tlpsrc + tlpkg/tlpsrc/arabic-book.tlpsrc tlpkg/tlpsrc/arabicfront.tlpsrc tlpkg/tlpsrc/arabluatex.tlpsrc tlpkg/tlpsrc/arabtex.tlpsrc @@ -523,6 +531,7 @@ runfiles size=13860 tlpkg/tlpsrc/arvo.tlpsrc tlpkg/tlpsrc/arydshln.tlpsrc tlpkg/tlpsrc/asaetr.tlpsrc + tlpkg/tlpsrc/asana-math.tlpsrc tlpkg/tlpsrc/asapsym.tlpsrc tlpkg/tlpsrc/ascelike.tlpsrc tlpkg/tlpsrc/ascii-chart.tlpsrc @@ -537,6 +546,7 @@ runfiles size=13860 tlpkg/tlpsrc/assignment.tlpsrc tlpkg/tlpsrc/assoccnt.tlpsrc tlpkg/tlpsrc/association-matrix.tlpsrc + tlpkg/tlpsrc/asternote.tlpsrc tlpkg/tlpsrc/astro.tlpsrc tlpkg/tlpsrc/asyfig.tlpsrc tlpkg/tlpsrc/asymptote-by-example-zh-cn.tlpsrc @@ -546,6 +556,7 @@ runfiles size=13860 tlpkg/tlpsrc/asypictureb.tlpsrc tlpkg/tlpsrc/atbegshi.tlpsrc tlpkg/tlpsrc/atenddvi.tlpsrc + tlpkg/tlpsrc/atendofenv.tlpsrc tlpkg/tlpsrc/atkinson.tlpsrc tlpkg/tlpsrc/attachfile.tlpsrc tlpkg/tlpsrc/attachfile2.tlpsrc @@ -568,6 +579,7 @@ runfiles size=13860 tlpkg/tlpsrc/automata.tlpsrc tlpkg/tlpsrc/autonum.tlpsrc tlpkg/tlpsrc/autopdf.tlpsrc + tlpkg/tlpsrc/autopuncitems.tlpsrc tlpkg/tlpsrc/autosp.tlpsrc tlpkg/tlpsrc/auxhook.tlpsrc tlpkg/tlpsrc/avantgar.tlpsrc @@ -609,6 +621,7 @@ runfiles size=13860 tlpkg/tlpsrc/babel-kurmanji.tlpsrc tlpkg/tlpsrc/babel-latin.tlpsrc tlpkg/tlpsrc/babel-latvian.tlpsrc + tlpkg/tlpsrc/babel-lithuanian.tlpsrc tlpkg/tlpsrc/babel-macedonian.tlpsrc tlpkg/tlpsrc/babel-malay.tlpsrc tlpkg/tlpsrc/babel-norsk.tlpsrc @@ -639,6 +652,7 @@ runfiles size=13860 tlpkg/tlpsrc/backnaur.tlpsrc tlpkg/tlpsrc/baekmuk.tlpsrc tlpkg/tlpsrc/bagpipe.tlpsrc + tlpkg/tlpsrc/bangla.tlpsrc tlpkg/tlpsrc/bangorcsthesis.tlpsrc tlpkg/tlpsrc/bangorexam.tlpsrc tlpkg/tlpsrc/bangtex.tlpsrc @@ -662,9 +676,10 @@ runfiles size=13860 tlpkg/tlpsrc/bbm.tlpsrc tlpkg/tlpsrc/bbold-type1.tlpsrc tlpkg/tlpsrc/bbold.tlpsrc + tlpkg/tlpsrc/bboldx.tlpsrc tlpkg/tlpsrc/bchart.tlpsrc tlpkg/tlpsrc/bclogo.tlpsrc - tlpkg/tlpsrc/beamer-FUBerlin.tlpsrc + tlpkg/tlpsrc/beamer-fuberlin.tlpsrc tlpkg/tlpsrc/beamer-rl.tlpsrc tlpkg/tlpsrc/beamer-tut-pt.tlpsrc tlpkg/tlpsrc/beamer-verona.tlpsrc @@ -678,6 +693,7 @@ runfiles size=13860 tlpkg/tlpsrc/beamerposter.tlpsrc tlpkg/tlpsrc/beamersubframe.tlpsrc tlpkg/tlpsrc/beamerswitch.tlpsrc + tlpkg/tlpsrc/beamertheme-arguelles.tlpsrc tlpkg/tlpsrc/beamertheme-cuerna.tlpsrc tlpkg/tlpsrc/beamertheme-detlevcm.tlpsrc tlpkg/tlpsrc/beamertheme-epyt.tlpsrc @@ -688,8 +704,12 @@ runfiles size=13860 tlpkg/tlpsrc/beamertheme-phnompenh.tlpsrc tlpkg/tlpsrc/beamertheme-pure-minimalistic.tlpsrc tlpkg/tlpsrc/beamertheme-saintpetersburg.tlpsrc + tlpkg/tlpsrc/beamertheme-simpledarkblue.tlpsrc + tlpkg/tlpsrc/beamertheme-simpleplus.tlpsrc + tlpkg/tlpsrc/beamertheme-tcolorbox.tlpsrc tlpkg/tlpsrc/beamertheme-trigon.tlpsrc tlpkg/tlpsrc/beamertheme-upenn-bc.tlpsrc + tlpkg/tlpsrc/beamerthemeamurmaple.tlpsrc tlpkg/tlpsrc/beamerthemejltree.tlpsrc tlpkg/tlpsrc/beamerthemelalic.tlpsrc tlpkg/tlpsrc/beamerthemenirma.tlpsrc @@ -712,12 +732,15 @@ runfiles size=13860 tlpkg/tlpsrc/bewerbung.tlpsrc tlpkg/tlpsrc/bez123.tlpsrc tlpkg/tlpsrc/bezierplot.tlpsrc + tlpkg/tlpsrc/bfh-ci.tlpsrc tlpkg/tlpsrc/bgteubner.tlpsrc tlpkg/tlpsrc/bguq.tlpsrc tlpkg/tlpsrc/bhcexam.tlpsrc tlpkg/tlpsrc/bib-fr.tlpsrc tlpkg/tlpsrc/bib2gls.tlpsrc tlpkg/tlpsrc/bibarts.tlpsrc + tlpkg/tlpsrc/bibcop.tlpsrc + tlpkg/tlpsrc/biber-ms.tlpsrc tlpkg/tlpsrc/biber.tlpsrc tlpkg/tlpsrc/bibexport.tlpsrc tlpkg/tlpsrc/bibhtml.tlpsrc @@ -737,6 +760,7 @@ runfiles size=13860 tlpkg/tlpsrc/biblatex-chem.tlpsrc tlpkg/tlpsrc/biblatex-chicago.tlpsrc tlpkg/tlpsrc/biblatex-claves.tlpsrc + tlpkg/tlpsrc/biblatex-cv.tlpsrc tlpkg/tlpsrc/biblatex-dw.tlpsrc tlpkg/tlpsrc/biblatex-enc.tlpsrc tlpkg/tlpsrc/biblatex-ext.tlpsrc @@ -751,11 +775,13 @@ runfiles size=13860 tlpkg/tlpsrc/biblatex-jura2.tlpsrc tlpkg/tlpsrc/biblatex-juradiss.tlpsrc tlpkg/tlpsrc/biblatex-license.tlpsrc + tlpkg/tlpsrc/biblatex-lncs.tlpsrc tlpkg/tlpsrc/biblatex-lni.tlpsrc tlpkg/tlpsrc/biblatex-luh-ipw.tlpsrc tlpkg/tlpsrc/biblatex-manuscripts-philology.tlpsrc tlpkg/tlpsrc/biblatex-mla.tlpsrc tlpkg/tlpsrc/biblatex-morenames.tlpsrc + tlpkg/tlpsrc/biblatex-ms.tlpsrc tlpkg/tlpsrc/biblatex-multiple-dm.tlpsrc tlpkg/tlpsrc/biblatex-musuos.tlpsrc tlpkg/tlpsrc/biblatex-nature.tlpsrc @@ -766,6 +792,7 @@ runfiles size=13860 tlpkg/tlpsrc/biblatex-philosophy.tlpsrc tlpkg/tlpsrc/biblatex-phys.tlpsrc tlpkg/tlpsrc/biblatex-publist.tlpsrc + tlpkg/tlpsrc/biblatex-readbbl.tlpsrc tlpkg/tlpsrc/biblatex-realauthor.tlpsrc tlpkg/tlpsrc/biblatex-sbl.tlpsrc tlpkg/tlpsrc/biblatex-science.tlpsrc @@ -773,6 +800,7 @@ runfiles size=13860 tlpkg/tlpsrc/biblatex-socialscienceshuberlin.tlpsrc tlpkg/tlpsrc/biblatex-software.tlpsrc tlpkg/tlpsrc/biblatex-source-division.tlpsrc + tlpkg/tlpsrc/biblatex-spbasic.tlpsrc tlpkg/tlpsrc/biblatex-subseries.tlpsrc tlpkg/tlpsrc/biblatex-swiss-legal.tlpsrc tlpkg/tlpsrc/biblatex-trad.tlpsrc @@ -806,6 +834,7 @@ runfiles size=13860 tlpkg/tlpsrc/bigfoot.tlpsrc tlpkg/tlpsrc/bigintcalc.tlpsrc tlpkg/tlpsrc/bigints.tlpsrc + tlpkg/tlpsrc/bilingualpages.tlpsrc tlpkg/tlpsrc/binarytree.tlpsrc tlpkg/tlpsrc/binomexp.tlpsrc tlpkg/tlpsrc/biochemistry-colors.tlpsrc @@ -817,17 +846,22 @@ runfiles size=13860 tlpkg/tlpsrc/bitset.tlpsrc tlpkg/tlpsrc/bitter.tlpsrc tlpkg/tlpsrc/bizcard.tlpsrc + tlpkg/tlpsrc/bjfuthesis.tlpsrc tlpkg/tlpsrc/blacklettert1.tlpsrc tlpkg/tlpsrc/blindtext.tlpsrc tlpkg/tlpsrc/blkarray.tlpsrc tlpkg/tlpsrc/blochsphere.tlpsrc tlpkg/tlpsrc/block.tlpsrc tlpkg/tlpsrc/blockdraw_mp.tlpsrc + tlpkg/tlpsrc/blopentype.tlpsrc tlpkg/tlpsrc/bloques.tlpsrc tlpkg/tlpsrc/blowup.tlpsrc tlpkg/tlpsrc/blox.tlpsrc + tlpkg/tlpsrc/bmstu-iu8.tlpsrc + tlpkg/tlpsrc/bmstu.tlpsrc tlpkg/tlpsrc/bnumexpr.tlpsrc tlpkg/tlpsrc/bodegraph.tlpsrc + tlpkg/tlpsrc/bodeplot.tlpsrc tlpkg/tlpsrc/bohr.tlpsrc tlpkg/tlpsrc/boisik.tlpsrc tlpkg/tlpsrc/boites.tlpsrc @@ -835,6 +869,7 @@ runfiles size=13860 tlpkg/tlpsrc/boldtensors.tlpsrc tlpkg/tlpsrc/bondgraph.tlpsrc tlpkg/tlpsrc/bondgraphs.tlpsrc + tlpkg/tlpsrc/book-of-common-prayer.tlpsrc tlpkg/tlpsrc/bookcover.tlpsrc tlpkg/tlpsrc/bookdb.tlpsrc tlpkg/tlpsrc/bookest.tlpsrc @@ -897,6 +932,7 @@ runfiles size=13860 tlpkg/tlpsrc/bxtexlogo.tlpsrc tlpkg/tlpsrc/bxwareki.tlpsrc tlpkg/tlpsrc/byo-twemojis.tlpsrc + tlpkg/tlpsrc/byrne.tlpsrc tlpkg/tlpsrc/bytefield.tlpsrc tlpkg/tlpsrc/c-pascal.tlpsrc tlpkg/tlpsrc/c90.tlpsrc @@ -924,6 +960,7 @@ runfiles size=13860 tlpkg/tlpsrc/carlisle.tlpsrc tlpkg/tlpsrc/carlito.tlpsrc tlpkg/tlpsrc/carolmin-ps.tlpsrc + tlpkg/tlpsrc/cartonaugh.tlpsrc tlpkg/tlpsrc/cascade.tlpsrc tlpkg/tlpsrc/cascadia-code.tlpsrc tlpkg/tlpsrc/cascadilla.tlpsrc @@ -946,6 +983,7 @@ runfiles size=13860 tlpkg/tlpsrc/ccool.tlpsrc tlpkg/tlpsrc/cd-cover.tlpsrc tlpkg/tlpsrc/cd.tlpsrc + tlpkg/tlpsrc/cdcmd.tlpsrc tlpkg/tlpsrc/cdpbundl.tlpsrc tlpkg/tlpsrc/cell.tlpsrc tlpkg/tlpsrc/cellprops.tlpsrc @@ -982,6 +1020,7 @@ runfiles size=13860 tlpkg/tlpsrc/chemgreek.tlpsrc tlpkg/tlpsrc/chemmacros.tlpsrc tlpkg/tlpsrc/chemnum.tlpsrc + tlpkg/tlpsrc/chemobabel.tlpsrc tlpkg/tlpsrc/chemplants.tlpsrc tlpkg/tlpsrc/chemschemex.tlpsrc tlpkg/tlpsrc/chemsec.tlpsrc @@ -1001,6 +1040,7 @@ runfiles size=13860 tlpkg/tlpsrc/chifoot.tlpsrc tlpkg/tlpsrc/childdoc.tlpsrc tlpkg/tlpsrc/chinese-jfm.tlpsrc + tlpkg/tlpsrc/chinesechess.tlpsrc tlpkg/tlpsrc/chivo.tlpsrc tlpkg/tlpsrc/chkfloat.tlpsrc tlpkg/tlpsrc/chklref.tlpsrc @@ -1017,8 +1057,10 @@ runfiles size=13860 tlpkg/tlpsrc/cinzel.tlpsrc tlpkg/tlpsrc/circ.tlpsrc tlpkg/tlpsrc/circledsteps.tlpsrc + tlpkg/tlpsrc/circledtext.tlpsrc tlpkg/tlpsrc/circuit-macros.tlpsrc tlpkg/tlpsrc/circuitikz.tlpsrc + tlpkg/tlpsrc/citation-style-language.tlpsrc tlpkg/tlpsrc/cite.tlpsrc tlpkg/tlpsrc/citeall.tlpsrc tlpkg/tlpsrc/citeref.tlpsrc @@ -1037,7 +1079,9 @@ runfiles size=13860 tlpkg/tlpsrc/clearsans.tlpsrc tlpkg/tlpsrc/clefval.tlpsrc tlpkg/tlpsrc/cleveref.tlpsrc + tlpkg/tlpsrc/clicks.tlpsrc tlpkg/tlpsrc/clipboard.tlpsrc + tlpkg/tlpsrc/clistmap.tlpsrc tlpkg/tlpsrc/clock.tlpsrc tlpkg/tlpsrc/clojure-pamphlet.tlpsrc tlpkg/tlpsrc/cloze.tlpsrc @@ -1074,11 +1118,14 @@ runfiles size=13860 tlpkg/tlpsrc/cntperchap.tlpsrc tlpkg/tlpsrc/cochineal.tlpsrc tlpkg/tlpsrc/codeanatomy.tlpsrc + tlpkg/tlpsrc/codebox.tlpsrc tlpkg/tlpsrc/codedoc.tlpsrc + tlpkg/tlpsrc/codehigh.tlpsrc tlpkg/tlpsrc/codepage.tlpsrc tlpkg/tlpsrc/codesection.tlpsrc tlpkg/tlpsrc/codicefiscaleitaliano.tlpsrc tlpkg/tlpsrc/coelacanth.tlpsrc + tlpkg/tlpsrc/coffeestains.tlpsrc tlpkg/tlpsrc/collcell.tlpsrc tlpkg/tlpsrc/collectbox.tlpsrc tlpkg/tlpsrc/collection-basic.tlpsrc @@ -1126,6 +1173,7 @@ runfiles size=13860 tlpkg/tlpsrc/colophon.tlpsrc tlpkg/tlpsrc/color-edits.tlpsrc tlpkg/tlpsrc/colordoc.tlpsrc + tlpkg/tlpsrc/colorframed.tlpsrc tlpkg/tlpsrc/colorinfo.tlpsrc tlpkg/tlpsrc/coloring.tlpsrc tlpkg/tlpsrc/colorist.tlpsrc @@ -1148,16 +1196,18 @@ runfiles size=13860 tlpkg/tlpsrc/commath.tlpsrc tlpkg/tlpsrc/commedit.tlpsrc tlpkg/tlpsrc/comment.tlpsrc + tlpkg/tlpsrc/commonunicode.tlpsrc tlpkg/tlpsrc/commutative-diagrams.tlpsrc tlpkg/tlpsrc/compactbib.tlpsrc tlpkg/tlpsrc/compare.tlpsrc tlpkg/tlpsrc/competences.tlpsrc tlpkg/tlpsrc/complexity.tlpsrc - tlpkg/tlpsrc/components-of-TeX.tlpsrc + tlpkg/tlpsrc/components.tlpsrc tlpkg/tlpsrc/comprehensive.tlpsrc tlpkg/tlpsrc/computational-complexity.tlpsrc tlpkg/tlpsrc/concepts.tlpsrc tlpkg/tlpsrc/concmath-fonts.tlpsrc + tlpkg/tlpsrc/concmath-otf.tlpsrc tlpkg/tlpsrc/concmath.tlpsrc tlpkg/tlpsrc/concprog.tlpsrc tlpkg/tlpsrc/concrete.tlpsrc @@ -1183,12 +1233,10 @@ runfiles size=13860 tlpkg/tlpsrc/context-gantt.tlpsrc tlpkg/tlpsrc/context-gnuplot.tlpsrc tlpkg/tlpsrc/context-handlecsv.tlpsrc - tlpkg/tlpsrc/context-inifile.tlpsrc tlpkg/tlpsrc/context-layout.tlpsrc tlpkg/tlpsrc/context-letter.tlpsrc tlpkg/tlpsrc/context-lettrine.tlpsrc tlpkg/tlpsrc/context-mathsets.tlpsrc - tlpkg/tlpsrc/context-notes-zh-cn.tlpsrc tlpkg/tlpsrc/context-rst.tlpsrc tlpkg/tlpsrc/context-ruby.tlpsrc tlpkg/tlpsrc/context-simplefonts.tlpsrc @@ -1209,10 +1257,13 @@ runfiles size=13860 tlpkg/tlpsrc/cooking.tlpsrc tlpkg/tlpsrc/cookingsymbols.tlpsrc tlpkg/tlpsrc/cool.tlpsrc + tlpkg/tlpsrc/coolfn.tlpsrc tlpkg/tlpsrc/coollist.tlpsrc tlpkg/tlpsrc/coolstr.tlpsrc tlpkg/tlpsrc/coolthms.tlpsrc tlpkg/tlpsrc/cooltooltips.tlpsrc + tlpkg/tlpsrc/coop-writing.tlpsrc + tlpkg/tlpsrc/cooperhewitt.tlpsrc tlpkg/tlpsrc/coordsys.tlpsrc tlpkg/tlpsrc/copyedit.tlpsrc tlpkg/tlpsrc/copyrightbox.tlpsrc @@ -1229,20 +1280,26 @@ runfiles size=13860 tlpkg/tlpsrc/coverpage.tlpsrc tlpkg/tlpsrc/covington.tlpsrc tlpkg/tlpsrc/cprotect.tlpsrc + tlpkg/tlpsrc/cprotectinside.tlpsrc tlpkg/tlpsrc/cqubeamer.tlpsrc tlpkg/tlpsrc/cquthesis.tlpsrc tlpkg/tlpsrc/crbox.tlpsrc + tlpkg/tlpsrc/create-theorem.tlpsrc + tlpkg/tlpsrc/crefthe.tlpsrc tlpkg/tlpsrc/crimson.tlpsrc tlpkg/tlpsrc/crimsonpro.tlpsrc tlpkg/tlpsrc/crop.tlpsrc + tlpkg/tlpsrc/crossrefenum.tlpsrc tlpkg/tlpsrc/crossreference.tlpsrc tlpkg/tlpsrc/crossreftools.tlpsrc tlpkg/tlpsrc/crossrefware.tlpsrc tlpkg/tlpsrc/crossword.tlpsrc tlpkg/tlpsrc/crosswrd.tlpsrc + tlpkg/tlpsrc/crumbs.tlpsrc tlpkg/tlpsrc/cryptocode.tlpsrc tlpkg/tlpsrc/cryst.tlpsrc tlpkg/tlpsrc/cs.tlpsrc + tlpkg/tlpsrc/csassignments.tlpsrc tlpkg/tlpsrc/csbulletin.tlpsrc tlpkg/tlpsrc/cslatex.tlpsrc tlpkg/tlpsrc/csplain.tlpsrc @@ -1274,9 +1331,11 @@ runfiles size=13860 tlpkg/tlpsrc/curve2e.tlpsrc tlpkg/tlpsrc/curves.tlpsrc tlpkg/tlpsrc/custom-bib.tlpsrc + tlpkg/tlpsrc/customdice.tlpsrc tlpkg/tlpsrc/cutwin.tlpsrc tlpkg/tlpsrc/cv.tlpsrc tlpkg/tlpsrc/cv4tw.tlpsrc + tlpkg/tlpsrc/cvss.tlpsrc tlpkg/tlpsrc/cweb-latex.tlpsrc tlpkg/tlpsrc/cweb-old.tlpsrc tlpkg/tlpsrc/cweb.tlpsrc @@ -1289,6 +1348,7 @@ runfiles size=13860 tlpkg/tlpsrc/dad.tlpsrc tlpkg/tlpsrc/dancers.tlpsrc tlpkg/tlpsrc/dantelogo.tlpsrc + tlpkg/tlpsrc/darkmode.tlpsrc tlpkg/tlpsrc/dashbox.tlpsrc tlpkg/tlpsrc/dashrule.tlpsrc tlpkg/tlpsrc/dashundergaps.tlpsrc @@ -1297,6 +1357,7 @@ runfiles size=13860 tlpkg/tlpsrc/datax.tlpsrc tlpkg/tlpsrc/dateiliste.tlpsrc tlpkg/tlpsrc/datenumber.tlpsrc + tlpkg/tlpsrc/datestamp.tlpsrc tlpkg/tlpsrc/datetime.tlpsrc tlpkg/tlpsrc/datetime2-bahasai.tlpsrc tlpkg/tlpsrc/datetime2-basque.tlpsrc @@ -1342,10 +1403,12 @@ runfiles size=13860 tlpkg/tlpsrc/datetime2-welsh.tlpsrc tlpkg/tlpsrc/datetime2.tlpsrc tlpkg/tlpsrc/dblfloatfix.tlpsrc + tlpkg/tlpsrc/dbshow.tlpsrc tlpkg/tlpsrc/dccpaper.tlpsrc tlpkg/tlpsrc/dcpic.tlpsrc tlpkg/tlpsrc/ddphonism.tlpsrc tlpkg/tlpsrc/de-macro.tlpsrc + tlpkg/tlpsrc/debate.tlpsrc tlpkg/tlpsrc/decimal.tlpsrc tlpkg/tlpsrc/decision-table.tlpsrc tlpkg/tlpsrc/decorule.tlpsrc @@ -1357,6 +1420,7 @@ runfiles size=13860 tlpkg/tlpsrc/delimseasy.tlpsrc tlpkg/tlpsrc/delimset.tlpsrc tlpkg/tlpsrc/delimtxt.tlpsrc + tlpkg/tlpsrc/democodetools.tlpsrc tlpkg/tlpsrc/denisbdoc.tlpsrc tlpkg/tlpsrc/derivative.tlpsrc tlpkg/tlpsrc/detex.tlpsrc @@ -1372,6 +1436,7 @@ runfiles size=13860 tlpkg/tlpsrc/dickimaw.tlpsrc tlpkg/tlpsrc/dictsym.tlpsrc tlpkg/tlpsrc/diffcoeff.tlpsrc + tlpkg/tlpsrc/digestif.tlpsrc tlpkg/tlpsrc/digiconfigs.tlpsrc tlpkg/tlpsrc/dijkstra.tlpsrc tlpkg/tlpsrc/dimnum.tlpsrc @@ -1394,6 +1459,7 @@ runfiles size=13860 tlpkg/tlpsrc/doclicense.tlpsrc tlpkg/tlpsrc/docmfp.tlpsrc tlpkg/tlpsrc/docmute.tlpsrc + tlpkg/tlpsrc/docshots.tlpsrc tlpkg/tlpsrc/docsurvey.tlpsrc tlpkg/tlpsrc/doctools.tlpsrc tlpkg/tlpsrc/documentation.tlpsrc @@ -1454,7 +1520,7 @@ runfiles size=13860 tlpkg/tlpsrc/dviinfox.tlpsrc tlpkg/tlpsrc/dviljk.tlpsrc tlpkg/tlpsrc/dviout-util.tlpsrc - tlpkg/tlpsrc/dviout.win32.tlpsrc + tlpkg/tlpsrc/dviout.windows.tlpsrc tlpkg/tlpsrc/dvipdfmx.tlpsrc tlpkg/tlpsrc/dvipng.tlpsrc tlpkg/tlpsrc/dvipos.tlpsrc @@ -1468,6 +1534,7 @@ runfiles size=13860 tlpkg/tlpsrc/e-french.tlpsrc tlpkg/tlpsrc/ean.tlpsrc tlpkg/tlpsrc/ean13isbn.tlpsrc + tlpkg/tlpsrc/easing.tlpsrc tlpkg/tlpsrc/easy-todo.tlpsrc tlpkg/tlpsrc/easy.tlpsrc tlpkg/tlpsrc/easybook.tlpsrc @@ -1502,7 +1569,6 @@ runfiles size=13860 tlpkg/tlpsrc/edichokey.tlpsrc tlpkg/tlpsrc/edmac.tlpsrc tlpkg/tlpsrc/edmargin.tlpsrc - tlpkg/tlpsrc/ednotes.tlpsrc tlpkg/tlpsrc/eemeir.tlpsrc tlpkg/tlpsrc/eepic.tlpsrc tlpkg/tlpsrc/efbox.tlpsrc @@ -1521,9 +1587,6 @@ runfiles size=13860 tlpkg/tlpsrc/electrum.tlpsrc tlpkg/tlpsrc/eledform.tlpsrc tlpkg/tlpsrc/eledmac.tlpsrc - tlpkg/tlpsrc/elegantbook.tlpsrc - tlpkg/tlpsrc/elegantnote.tlpsrc - tlpkg/tlpsrc/elegantpaper.tlpsrc tlpkg/tlpsrc/elements.tlpsrc tlpkg/tlpsrc/ellipse.tlpsrc tlpkg/tlpsrc/ellipsis.tlpsrc @@ -1566,6 +1629,7 @@ runfiles size=13860 tlpkg/tlpsrc/envbig.tlpsrc tlpkg/tlpsrc/environ.tlpsrc tlpkg/tlpsrc/envlab.tlpsrc + tlpkg/tlpsrc/eolang.tlpsrc tlpkg/tlpsrc/epigrafica.tlpsrc tlpkg/tlpsrc/epigram.tlpsrc tlpkg/tlpsrc/epigraph-keys.tlpsrc @@ -1598,6 +1662,7 @@ runfiles size=13860 tlpkg/tlpsrc/es-tex-faq.tlpsrc tlpkg/tlpsrc/esami.tlpsrc tlpkg/tlpsrc/esdiff.tlpsrc + tlpkg/tlpsrc/esieecv.tlpsrc tlpkg/tlpsrc/esindex.tlpsrc tlpkg/tlpsrc/esint-type1.tlpsrc tlpkg/tlpsrc/esint.tlpsrc @@ -1618,6 +1683,7 @@ runfiles size=13860 tlpkg/tlpsrc/etextools.tlpsrc tlpkg/tlpsrc/ethiop-t1.tlpsrc tlpkg/tlpsrc/ethiop.tlpsrc + tlpkg/tlpsrc/etl.tlpsrc tlpkg/tlpsrc/etoc.tlpsrc tlpkg/tlpsrc/etoolbox-de.tlpsrc tlpkg/tlpsrc/etoolbox.tlpsrc @@ -1626,6 +1692,7 @@ runfiles size=13860 tlpkg/tlpsrc/euenc.tlpsrc tlpkg/tlpsrc/euflag.tlpsrc tlpkg/tlpsrc/eukdate.tlpsrc + tlpkg/tlpsrc/euler-math.tlpsrc tlpkg/tlpsrc/euler.tlpsrc tlpkg/tlpsrc/eulerpx.tlpsrc tlpkg/tlpsrc/eulervm.tlpsrc @@ -1635,12 +1702,15 @@ runfiles size=13860 tlpkg/tlpsrc/europecv.tlpsrc tlpkg/tlpsrc/eurosym.tlpsrc tlpkg/tlpsrc/euxm.tlpsrc + tlpkg/tlpsrc/evangelion-jfm.tlpsrc tlpkg/tlpsrc/everyhook.tlpsrc tlpkg/tlpsrc/everypage.tlpsrc tlpkg/tlpsrc/everysel.tlpsrc tlpkg/tlpsrc/everyshi.tlpsrc + tlpkg/tlpsrc/exam-lite.tlpsrc tlpkg/tlpsrc/exam-n.tlpsrc tlpkg/tlpsrc/exam-randomizechoices.tlpsrc + tlpkg/tlpsrc/exam-zh.tlpsrc tlpkg/tlpsrc/exam.tlpsrc tlpkg/tlpsrc/examdesign.tlpsrc tlpkg/tlpsrc/example.tlpsrc @@ -1655,11 +1725,9 @@ runfiles size=13860 tlpkg/tlpsrc/exframe.tlpsrc tlpkg/tlpsrc/exp-testopt.tlpsrc tlpkg/tlpsrc/expdlist.tlpsrc + tlpkg/tlpsrc/expex-acro.tlpsrc tlpkg/tlpsrc/expex.tlpsrc - tlpkg/tlpsrc/expkv-cs.tlpsrc - tlpkg/tlpsrc/expkv-def.tlpsrc - tlpkg/tlpsrc/expkv-opt.tlpsrc - tlpkg/tlpsrc/expkv.tlpsrc + tlpkg/tlpsrc/expkv-bundle.tlpsrc tlpkg/tlpsrc/export.tlpsrc tlpkg/tlpsrc/expose-expl3-dunkerque-2019.tlpsrc tlpkg/tlpsrc/expressg.tlpsrc @@ -1675,6 +1743,7 @@ runfiles size=13860 tlpkg/tlpsrc/facture-belge-simple-sans-tva.tlpsrc tlpkg/tlpsrc/facture.tlpsrc tlpkg/tlpsrc/faktor.tlpsrc + tlpkg/tlpsrc/familytree.tlpsrc tlpkg/tlpsrc/fancybox.tlpsrc tlpkg/tlpsrc/fancyhandout.tlpsrc tlpkg/tlpsrc/fancyhdr-it.tlpsrc @@ -1682,6 +1751,7 @@ runfiles size=13860 tlpkg/tlpsrc/fancylabel.tlpsrc tlpkg/tlpsrc/fancynum.tlpsrc tlpkg/tlpsrc/fancypar.tlpsrc + tlpkg/tlpsrc/fancyqr.tlpsrc tlpkg/tlpsrc/fancyref.tlpsrc tlpkg/tlpsrc/fancyslides.tlpsrc tlpkg/tlpsrc/fancytabs.tlpsrc @@ -1710,10 +1780,10 @@ runfiles size=13860 tlpkg/tlpsrc/feyn.tlpsrc tlpkg/tlpsrc/feynmf.tlpsrc tlpkg/tlpsrc/feynmp-auto.tlpsrc + tlpkg/tlpsrc/ffcode.tlpsrc tlpkg/tlpsrc/ffslides.tlpsrc tlpkg/tlpsrc/fge.tlpsrc tlpkg/tlpsrc/fgruler.tlpsrc - tlpkg/tlpsrc/fibeamer.tlpsrc tlpkg/tlpsrc/fifinddo-info.tlpsrc tlpkg/tlpsrc/fifo-stack.tlpsrc tlpkg/tlpsrc/fig4latex.tlpsrc @@ -1721,6 +1791,7 @@ runfiles size=13860 tlpkg/tlpsrc/figbib.tlpsrc tlpkg/tlpsrc/figchild.tlpsrc tlpkg/tlpsrc/figflow.tlpsrc + tlpkg/tlpsrc/figput.tlpsrc tlpkg/tlpsrc/figsize.tlpsrc tlpkg/tlpsrc/filecontents.tlpsrc tlpkg/tlpsrc/filecontentsdef.tlpsrc @@ -1737,14 +1808,17 @@ runfiles size=13860 tlpkg/tlpsrc/firamath.tlpsrc tlpkg/tlpsrc/first-latex-doc.tlpsrc tlpkg/tlpsrc/firstaid.tlpsrc + tlpkg/tlpsrc/fistrum.tlpsrc tlpkg/tlpsrc/fitbox.tlpsrc tlpkg/tlpsrc/fithesis.tlpsrc tlpkg/tlpsrc/fix2col.tlpsrc tlpkg/tlpsrc/fixcmex.tlpsrc + tlpkg/tlpsrc/fixdif.tlpsrc tlpkg/tlpsrc/fixfoot.tlpsrc tlpkg/tlpsrc/fixjfm.tlpsrc tlpkg/tlpsrc/fixlatvian.tlpsrc tlpkg/tlpsrc/fixltxhyph.tlpsrc + tlpkg/tlpsrc/fixmath.tlpsrc tlpkg/tlpsrc/fixme.tlpsrc tlpkg/tlpsrc/fixmetodonotes.tlpsrc tlpkg/tlpsrc/fixpdfmag.tlpsrc @@ -1755,6 +1829,7 @@ runfiles size=13860 tlpkg/tlpsrc/flagderiv.tlpsrc tlpkg/tlpsrc/flashcards.tlpsrc tlpkg/tlpsrc/flashmovie.tlpsrc + tlpkg/tlpsrc/flexipage.tlpsrc tlpkg/tlpsrc/flipbook.tlpsrc tlpkg/tlpsrc/flippdf.tlpsrc tlpkg/tlpsrc/float.tlpsrc @@ -1786,6 +1861,7 @@ runfiles size=13860 tlpkg/tlpsrc/fontbook.tlpsrc tlpkg/tlpsrc/fontch.tlpsrc tlpkg/tlpsrc/fontinst.tlpsrc + tlpkg/tlpsrc/fontinstallationguide.tlpsrc tlpkg/tlpsrc/fontmfizz.tlpsrc tlpkg/tlpsrc/fontname.tlpsrc tlpkg/tlpsrc/fontools.tlpsrc @@ -1809,6 +1885,7 @@ runfiles size=13860 tlpkg/tlpsrc/forest-quickstart.tlpsrc tlpkg/tlpsrc/forest.tlpsrc tlpkg/tlpsrc/forloop.tlpsrc + tlpkg/tlpsrc/formal-grammar.tlpsrc tlpkg/tlpsrc/formation-latex-ul.tlpsrc tlpkg/tlpsrc/formlett.tlpsrc tlpkg/tlpsrc/forms16be.tlpsrc @@ -1841,6 +1918,7 @@ runfiles size=13860 tlpkg/tlpsrc/fullminipage.tlpsrc tlpkg/tlpsrc/fullwidth.tlpsrc tlpkg/tlpsrc/functan.tlpsrc + tlpkg/tlpsrc/functional.tlpsrc tlpkg/tlpsrc/fundus-calligra.tlpsrc tlpkg/tlpsrc/fundus-cyr.tlpsrc tlpkg/tlpsrc/fundus-sueterlin.tlpsrc @@ -1850,13 +1928,13 @@ runfiles size=13860 tlpkg/tlpsrc/gaceta.tlpsrc tlpkg/tlpsrc/galois.tlpsrc tlpkg/tlpsrc/gamebook.tlpsrc + tlpkg/tlpsrc/gamebooklib.tlpsrc tlpkg/tlpsrc/gammas.tlpsrc tlpkg/tlpsrc/garamond-libre.tlpsrc tlpkg/tlpsrc/garamond-math.tlpsrc tlpkg/tlpsrc/garrigues.tlpsrc tlpkg/tlpsrc/garuda-c90.tlpsrc tlpkg/tlpsrc/gastex.tlpsrc - tlpkg/tlpsrc/gatech-thesis.tlpsrc tlpkg/tlpsrc/gates.tlpsrc tlpkg/tlpsrc/gatherenum.tlpsrc tlpkg/tlpsrc/gauss.tlpsrc @@ -1871,10 +1949,12 @@ runfiles size=13860 tlpkg/tlpsrc/genealogy.tlpsrc tlpkg/tlpsrc/genealogytree.tlpsrc tlpkg/tlpsrc/genmpage.tlpsrc + tlpkg/tlpsrc/gensymb.tlpsrc tlpkg/tlpsrc/gentium-tug.tlpsrc tlpkg/tlpsrc/gentle.tlpsrc tlpkg/tlpsrc/gentombow.tlpsrc tlpkg/tlpsrc/geometry.tlpsrc + tlpkg/tlpsrc/geradwp.tlpsrc tlpkg/tlpsrc/german.tlpsrc tlpkg/tlpsrc/germbib.tlpsrc tlpkg/tlpsrc/germkorr.tlpsrc @@ -1884,6 +1964,7 @@ runfiles size=13860 tlpkg/tlpsrc/getmap.tlpsrc tlpkg/tlpsrc/getoptk.tlpsrc tlpkg/tlpsrc/gettitlestring.tlpsrc + tlpkg/tlpsrc/gfdl.tlpsrc tlpkg/tlpsrc/gfnotation.tlpsrc tlpkg/tlpsrc/gfsartemisia.tlpsrc tlpkg/tlpsrc/gfsbaskerville.tlpsrc @@ -1907,6 +1988,7 @@ runfiles size=13860 tlpkg/tlpsrc/gitinfo.tlpsrc tlpkg/tlpsrc/gitinfo2.tlpsrc tlpkg/tlpsrc/gitlog.tlpsrc + tlpkg/tlpsrc/gitstatus.tlpsrc tlpkg/tlpsrc/gitver.tlpsrc tlpkg/tlpsrc/globalvals.tlpsrc tlpkg/tlpsrc/glosmathtools.tlpsrc @@ -1947,7 +2029,9 @@ runfiles size=13860 tlpkg/tlpsrc/gothic.tlpsrc tlpkg/tlpsrc/gotoh.tlpsrc tlpkg/tlpsrc/grabbox.tlpsrc + tlpkg/tlpsrc/gradient-text.tlpsrc tlpkg/tlpsrc/gradientframe.tlpsrc + tlpkg/tlpsrc/grading-scheme.tlpsrc tlpkg/tlpsrc/gradstudentresume.tlpsrc tlpkg/tlpsrc/grafcet.tlpsrc tlpkg/tlpsrc/grant.tlpsrc @@ -1957,6 +2041,7 @@ runfiles size=13860 tlpkg/tlpsrc/graphics-def.tlpsrc tlpkg/tlpsrc/graphics-pln.tlpsrc tlpkg/tlpsrc/graphics.tlpsrc + tlpkg/tlpsrc/graphicscache.tlpsrc tlpkg/tlpsrc/graphicx-psmin.tlpsrc tlpkg/tlpsrc/graphicxbox.tlpsrc tlpkg/tlpsrc/graphicxpsd.tlpsrc @@ -1980,6 +2065,7 @@ runfiles size=13860 tlpkg/tlpsrc/gridslides.tlpsrc tlpkg/tlpsrc/grotesq.tlpsrc tlpkg/tlpsrc/grundgesetze.tlpsrc + tlpkg/tlpsrc/gs1.tlpsrc tlpkg/tlpsrc/gsemthesis.tlpsrc tlpkg/tlpsrc/gsftopk.tlpsrc tlpkg/tlpsrc/gtl.tlpsrc @@ -1996,16 +2082,20 @@ runfiles size=13860 tlpkg/tlpsrc/gustprog.tlpsrc tlpkg/tlpsrc/gzt.tlpsrc tlpkg/tlpsrc/h2020proposal.tlpsrc + tlpkg/tlpsrc/ha-prosper.tlpsrc tlpkg/tlpsrc/hackthefootline.tlpsrc tlpkg/tlpsrc/hacm.tlpsrc tlpkg/tlpsrc/hagenberg-thesis.tlpsrc tlpkg/tlpsrc/halloweenmath.tlpsrc + tlpkg/tlpsrc/hamnosys.tlpsrc tlpkg/tlpsrc/handin.tlpsrc tlpkg/tlpsrc/handout.tlpsrc + tlpkg/tlpsrc/handoutwithnotes.tlpsrc tlpkg/tlpsrc/hands.tlpsrc tlpkg/tlpsrc/hang.tlpsrc tlpkg/tlpsrc/hanging.tlpsrc tlpkg/tlpsrc/hanoi.tlpsrc + tlpkg/tlpsrc/hanzibox.tlpsrc tlpkg/tlpsrc/happy4th.tlpsrc tlpkg/tlpsrc/har2nat.tlpsrc tlpkg/tlpsrc/haranoaji-extra.tlpsrc @@ -2025,25 +2115,42 @@ runfiles size=13860 tlpkg/tlpsrc/hecthese.tlpsrc tlpkg/tlpsrc/helmholtz-ellis-ji-notation.tlpsrc tlpkg/tlpsrc/helvetic.tlpsrc + tlpkg/tlpsrc/hep-acronym.tlpsrc + tlpkg/tlpsrc/hep-bibliography.tlpsrc + tlpkg/tlpsrc/hep-float.tlpsrc + tlpkg/tlpsrc/hep-font.tlpsrc + tlpkg/tlpsrc/hep-math-font.tlpsrc + tlpkg/tlpsrc/hep-math.tlpsrc tlpkg/tlpsrc/hep-paper.tlpsrc + tlpkg/tlpsrc/hep-reference.tlpsrc + tlpkg/tlpsrc/hep-text.tlpsrc + tlpkg/tlpsrc/hep-title.tlpsrc tlpkg/tlpsrc/hep.tlpsrc tlpkg/tlpsrc/hepnames.tlpsrc tlpkg/tlpsrc/hepparticles.tlpsrc tlpkg/tlpsrc/hepthesis.tlpsrc tlpkg/tlpsrc/hepunits.tlpsrc tlpkg/tlpsrc/here.tlpsrc + tlpkg/tlpsrc/hereapplies.tlpsrc + tlpkg/tlpsrc/heros-otf.tlpsrc + tlpkg/tlpsrc/hershey-mp.tlpsrc tlpkg/tlpsrc/heuristica.tlpsrc + tlpkg/tlpsrc/hexboard.tlpsrc tlpkg/tlpsrc/hexgame.tlpsrc tlpkg/tlpsrc/hf-tikz.tlpsrc tlpkg/tlpsrc/hfbright.tlpsrc tlpkg/tlpsrc/hfoldsty.tlpsrc + tlpkg/tlpsrc/hfutexam.tlpsrc + tlpkg/tlpsrc/hfutthesis.tlpsrc tlpkg/tlpsrc/hhtensor.tlpsrc + tlpkg/tlpsrc/hideanswer.tlpsrc tlpkg/tlpsrc/highlightlatex.tlpsrc tlpkg/tlpsrc/hindawi-latex-template.tlpsrc tlpkg/tlpsrc/hindmadurai.tlpsrc tlpkg/tlpsrc/histogr.tlpsrc tlpkg/tlpsrc/historische-zeitschrift.tlpsrc tlpkg/tlpsrc/hitec.tlpsrc + tlpkg/tlpsrc/hitex.tlpsrc tlpkg/tlpsrc/hithesis.tlpsrc tlpkg/tlpsrc/hitreport.tlpsrc tlpkg/tlpsrc/hitszbeamer.tlpsrc @@ -2059,18 +2166,25 @@ runfiles size=13860 tlpkg/tlpsrc/hopatch.tlpsrc tlpkg/tlpsrc/horoscop.tlpsrc tlpkg/tlpsrc/hpsdiss.tlpsrc + tlpkg/tlpsrc/href-ul.tlpsrc tlpkg/tlpsrc/hrefhide.tlpsrc tlpkg/tlpsrc/hrlatex.tlpsrc tlpkg/tlpsrc/hu-berlin-bundle.tlpsrc tlpkg/tlpsrc/huawei.tlpsrc + tlpkg/tlpsrc/huaz.tlpsrc tlpkg/tlpsrc/hulipsum.tlpsrc tlpkg/tlpsrc/hustthesis.tlpsrc tlpkg/tlpsrc/hvarabic.tlpsrc + tlpkg/tlpsrc/hvextern.tlpsrc tlpkg/tlpsrc/hvfloat.tlpsrc tlpkg/tlpsrc/hvindex.tlpsrc + tlpkg/tlpsrc/hvlogos.tlpsrc + tlpkg/tlpsrc/hvpygmentex.tlpsrc tlpkg/tlpsrc/hvqrurl.tlpsrc + tlpkg/tlpsrc/hwemoji.tlpsrc tlpkg/tlpsrc/hycolor.tlpsrc tlpkg/tlpsrc/hypdestopt.tlpsrc + tlpkg/tlpsrc/hypdoc.tlpsrc tlpkg/tlpsrc/hypdvips.tlpsrc tlpkg/tlpsrc/hyper.tlpsrc tlpkg/tlpsrc/hyperbar.tlpsrc @@ -2143,6 +2257,7 @@ runfiles size=13860 tlpkg/tlpsrc/hyphenex.tlpsrc tlpkg/tlpsrc/hyplain.tlpsrc tlpkg/tlpsrc/ibarra.tlpsrc + tlpkg/tlpsrc/ibrackets.tlpsrc tlpkg/tlpsrc/ibycus-babel.tlpsrc tlpkg/tlpsrc/ibygrk.tlpsrc tlpkg/tlpsrc/icite.tlpsrc @@ -2150,8 +2265,13 @@ runfiles size=13860 tlpkg/tlpsrc/identkey.tlpsrc tlpkg/tlpsrc/idxcmds.tlpsrc tlpkg/tlpsrc/idxlayout.tlpsrc + tlpkg/tlpsrc/ieeeconf.tlpsrc tlpkg/tlpsrc/ieeepes.tlpsrc + tlpkg/tlpsrc/ieeetran.tlpsrc + tlpkg/tlpsrc/ieejtran.tlpsrc tlpkg/tlpsrc/ietfbibs.tlpsrc + tlpkg/tlpsrc/iexec.tlpsrc + tlpkg/tlpsrc/ifallfalse.tlpsrc tlpkg/tlpsrc/iffont.tlpsrc tlpkg/tlpsrc/ifmslide.tlpsrc tlpkg/tlpsrc/ifmtarg.tlpsrc @@ -2189,8 +2309,10 @@ runfiles size=13860 tlpkg/tlpsrc/inline-images.tlpsrc tlpkg/tlpsrc/inlinebib.tlpsrc tlpkg/tlpsrc/inlinedef.tlpsrc + tlpkg/tlpsrc/inlinelabel.tlpsrc tlpkg/tlpsrc/innerscript.tlpsrc tlpkg/tlpsrc/inputenx.tlpsrc + tlpkg/tlpsrc/inputnormalization.tlpsrc tlpkg/tlpsrc/inputtrc.tlpsrc tlpkg/tlpsrc/inriafonts.tlpsrc tlpkg/tlpsrc/insbox.tlpsrc @@ -2234,10 +2356,12 @@ runfiles size=13860 tlpkg/tlpsrc/jacow.tlpsrc tlpkg/tlpsrc/jadetex.tlpsrc tlpkg/tlpsrc/jamtimes.tlpsrc - tlpkg/tlpsrc/japanese-otf-uptex.tlpsrc + tlpkg/tlpsrc/japanese-mathformulas.tlpsrc tlpkg/tlpsrc/japanese-otf.tlpsrc tlpkg/tlpsrc/jbact.tlpsrc + tlpkg/tlpsrc/jeuxcartes.tlpsrc tlpkg/tlpsrc/jfmutil.tlpsrc + tlpkg/tlpsrc/jieeetran.tlpsrc tlpkg/tlpsrc/jigsaw.tlpsrc tlpkg/tlpsrc/jkmath.tlpsrc tlpkg/tlpsrc/jknapltx.tlpsrc @@ -2247,9 +2371,14 @@ runfiles size=13860 tlpkg/tlpsrc/jmb.tlpsrc tlpkg/tlpsrc/jmlr.tlpsrc tlpkg/tlpsrc/jmn.tlpsrc + tlpkg/tlpsrc/jmsdelim.tlpsrc tlpkg/tlpsrc/jneurosci.tlpsrc tlpkg/tlpsrc/jnuexam.tlpsrc + tlpkg/tlpsrc/jobname-suffix.tlpsrc tlpkg/tlpsrc/josefin.tlpsrc + tlpkg/tlpsrc/jourcl.tlpsrc + tlpkg/tlpsrc/jpneduenumerate.tlpsrc + tlpkg/tlpsrc/jpnedumathsymbols.tlpsrc tlpkg/tlpsrc/jpsj.tlpsrc tlpkg/tlpsrc/js-misc.tlpsrc tlpkg/tlpsrc/jsclasses.tlpsrc @@ -2263,25 +2392,32 @@ runfiles size=13860 tlpkg/tlpsrc/juramisc.tlpsrc tlpkg/tlpsrc/jurarsp.tlpsrc tlpkg/tlpsrc/jvlisting.tlpsrc + tlpkg/tlpsrc/jwjournal.tlpsrc tlpkg/tlpsrc/kalendarium.tlpsrc tlpkg/tlpsrc/kanaparser.tlpsrc + tlpkg/tlpsrc/kanbun.tlpsrc tlpkg/tlpsrc/kantlipsum.tlpsrc tlpkg/tlpsrc/karnaugh-map.tlpsrc tlpkg/tlpsrc/karnaugh.tlpsrc tlpkg/tlpsrc/karnaughmap.tlpsrc tlpkg/tlpsrc/kastrup.tlpsrc + tlpkg/tlpsrc/kaytannollista-latexia.tlpsrc tlpkg/tlpsrc/kblocks.tlpsrc tlpkg/tlpsrc/kdgdocs.tlpsrc + tlpkg/tlpsrc/kdpcover.tlpsrc tlpkg/tlpsrc/kerkis.tlpsrc tlpkg/tlpsrc/kerntest.tlpsrc tlpkg/tlpsrc/ketcindy.tlpsrc tlpkg/tlpsrc/keycommand.tlpsrc tlpkg/tlpsrc/keyfloat.tlpsrc tlpkg/tlpsrc/keyindex.tlpsrc + tlpkg/tlpsrc/keyparse.tlpsrc tlpkg/tlpsrc/keyreader.tlpsrc tlpkg/tlpsrc/keystroke.tlpsrc tlpkg/tlpsrc/keyval2e.tlpsrc tlpkg/tlpsrc/keyvaltable.tlpsrc + tlpkg/tlpsrc/kfupm-math-exam.tlpsrc + tlpkg/tlpsrc/kinematikz.tlpsrc tlpkg/tlpsrc/kix.tlpsrc tlpkg/tlpsrc/kixfont.tlpsrc tlpkg/tlpsrc/kluwer.tlpsrc @@ -2289,6 +2425,7 @@ runfiles size=13860 tlpkg/tlpsrc/knittingpattern.tlpsrc tlpkg/tlpsrc/knowledge.tlpsrc tlpkg/tlpsrc/knuth-errata.tlpsrc + tlpkg/tlpsrc/knuth-hint.tlpsrc tlpkg/tlpsrc/knuth-lib.tlpsrc tlpkg/tlpsrc/knuth-local.tlpsrc tlpkg/tlpsrc/knuth-pdf.tlpsrc @@ -2335,7 +2472,9 @@ runfiles size=13860 tlpkg/tlpsrc/ladder.tlpsrc tlpkg/tlpsrc/lambda-lists.tlpsrc tlpkg/tlpsrc/lambda.tlpsrc + tlpkg/tlpsrc/lambdax.tlpsrc tlpkg/tlpsrc/langcode.tlpsrc + tlpkg/tlpsrc/langnames.tlpsrc tlpkg/tlpsrc/langsci-avm.tlpsrc tlpkg/tlpsrc/langsci.tlpsrc tlpkg/tlpsrc/lapdf.tlpsrc @@ -2350,9 +2489,12 @@ runfiles size=13860 tlpkg/tlpsrc/latex-doc-ptr.tlpsrc tlpkg/tlpsrc/latex-firstaid-dev.tlpsrc tlpkg/tlpsrc/latex-fonts.tlpsrc + tlpkg/tlpsrc/latex-for-undergraduates.tlpsrc tlpkg/tlpsrc/latex-git-log.tlpsrc tlpkg/tlpsrc/latex-graphics-companion.tlpsrc tlpkg/tlpsrc/latex-graphics-dev.tlpsrc + tlpkg/tlpsrc/latex-lab-dev.tlpsrc + tlpkg/tlpsrc/latex-lab.tlpsrc tlpkg/tlpsrc/latex-make.tlpsrc tlpkg/tlpsrc/latex-mr.tlpsrc tlpkg/tlpsrc/latex-notes-zh-cn.tlpsrc @@ -2412,6 +2554,7 @@ runfiles size=13860 tlpkg/tlpsrc/leftindex.tlpsrc tlpkg/tlpsrc/leipzig.tlpsrc tlpkg/tlpsrc/lengthconvert.tlpsrc + tlpkg/tlpsrc/letgut.tlpsrc tlpkg/tlpsrc/letltxmacro.tlpsrc tlpkg/tlpsrc/letterspacing.tlpsrc tlpkg/tlpsrc/letterswitharrows.tlpsrc @@ -2424,6 +2567,7 @@ runfiles size=13860 tlpkg/tlpsrc/lexref.tlpsrc tlpkg/tlpsrc/lfb.tlpsrc tlpkg/tlpsrc/lgreek.tlpsrc + tlpkg/tlpsrc/lgrmath.tlpsrc tlpkg/tlpsrc/lh.tlpsrc tlpkg/tlpsrc/lhcyr.tlpsrc tlpkg/tlpsrc/lhelp.tlpsrc @@ -2442,11 +2586,14 @@ runfiles size=13860 tlpkg/tlpsrc/librefranklin.tlpsrc tlpkg/tlpsrc/libris.tlpsrc tlpkg/tlpsrc/lie-hasse.tlpsrc + tlpkg/tlpsrc/liftarm.tlpsrc tlpkg/tlpsrc/light-latex-make.tlpsrc + tlpkg/tlpsrc/ligtype.tlpsrc tlpkg/tlpsrc/lilyglyphs.tlpsrc tlpkg/tlpsrc/limap.tlpsrc tlpkg/tlpsrc/limecv.tlpsrc - tlpkg/tlpsrc/linearA.tlpsrc + tlpkg/tlpsrc/lineara.tlpsrc + tlpkg/tlpsrc/linebreaker.tlpsrc tlpkg/tlpsrc/linegoal.tlpsrc tlpkg/tlpsrc/lineno.tlpsrc tlpkg/tlpsrc/ling-macros.tlpsrc @@ -2468,6 +2615,7 @@ runfiles size=13860 tlpkg/tlpsrc/lithuanian.tlpsrc tlpkg/tlpsrc/liturg.tlpsrc tlpkg/tlpsrc/lkproof.tlpsrc + tlpkg/tlpsrc/llncs.tlpsrc tlpkg/tlpsrc/llncsconf.tlpsrc tlpkg/tlpsrc/lm-math.tlpsrc tlpkg/tlpsrc/lm.tlpsrc @@ -2489,6 +2637,7 @@ runfiles size=13860 tlpkg/tlpsrc/longfigure.tlpsrc tlpkg/tlpsrc/longnamefilelist.tlpsrc tlpkg/tlpsrc/loops.tlpsrc + tlpkg/tlpsrc/lparse.tlpsrc tlpkg/tlpsrc/lpform.tlpsrc tlpkg/tlpsrc/lpic.tlpsrc tlpkg/tlpsrc/lplfitch.tlpsrc @@ -2523,6 +2672,8 @@ runfiles size=13860 tlpkg/tlpsrc/lstbayes.tlpsrc tlpkg/tlpsrc/lstfiracode.tlpsrc tlpkg/tlpsrc/lt3graph.tlpsrc + tlpkg/tlpsrc/lt3luabridge.tlpsrc + tlpkg/tlpsrc/lt3rawobjects.tlpsrc tlpkg/tlpsrc/ltablex.tlpsrc tlpkg/tlpsrc/ltabptch.tlpsrc tlpkg/tlpsrc/ltb2bib.tlpsrc @@ -2543,10 +2694,17 @@ runfiles size=13860 tlpkg/tlpsrc/lua-ul.tlpsrc tlpkg/tlpsrc/lua-uni-algos.tlpsrc tlpkg/tlpsrc/lua-visual-debug.tlpsrc + tlpkg/tlpsrc/lua-widow-control.tlpsrc + tlpkg/tlpsrc/luaaddplot.tlpsrc tlpkg/tlpsrc/luabibentry.tlpsrc tlpkg/tlpsrc/luabidi.tlpsrc + tlpkg/tlpsrc/luacas.tlpsrc + tlpkg/tlpsrc/luacensor.tlpsrc tlpkg/tlpsrc/luacode.tlpsrc tlpkg/tlpsrc/luacolor.tlpsrc + tlpkg/tlpsrc/luacomplex.tlpsrc + tlpkg/tlpsrc/luafindfont.tlpsrc + tlpkg/tlpsrc/luagcd.tlpsrc tlpkg/tlpsrc/luahbtex.tlpsrc tlpkg/tlpsrc/luahyphenrules.tlpsrc tlpkg/tlpsrc/luaimageembed.tlpsrc @@ -2560,12 +2718,20 @@ runfiles size=13860 tlpkg/tlpsrc/lualatex-math.tlpsrc tlpkg/tlpsrc/lualatex-truncate.tlpsrc tlpkg/tlpsrc/lualibs.tlpsrc + tlpkg/tlpsrc/lualinalg.tlpsrc + tlpkg/tlpsrc/luamathalign.tlpsrc + tlpkg/tlpsrc/luamaths.tlpsrc tlpkg/tlpsrc/luamesh.tlpsrc + tlpkg/tlpsrc/luamodulartables.tlpsrc tlpkg/tlpsrc/luamplib.tlpsrc + tlpkg/tlpsrc/luaoptions.tlpsrc tlpkg/tlpsrc/luaotfload.tlpsrc tlpkg/tlpsrc/luapackageloader.tlpsrc tlpkg/tlpsrc/luaprogtable.tlpsrc + tlpkg/tlpsrc/luapstricks.tlpsrc + tlpkg/tlpsrc/luaquotes.tlpsrc tlpkg/tlpsrc/luarandom.tlpsrc + tlpkg/tlpsrc/luaset.tlpsrc tlpkg/tlpsrc/luasseq.tlpsrc tlpkg/tlpsrc/luatex.tlpsrc tlpkg/tlpsrc/luatex85.tlpsrc @@ -2574,18 +2740,22 @@ runfiles size=13860 tlpkg/tlpsrc/luatexko.tlpsrc tlpkg/tlpsrc/luatextra.tlpsrc tlpkg/tlpsrc/luatodonotes.tlpsrc + tlpkg/tlpsrc/luatruthtable.tlpsrc tlpkg/tlpsrc/luavlna.tlpsrc tlpkg/tlpsrc/luaxml.tlpsrc + tlpkg/tlpsrc/lutabulartools.tlpsrc tlpkg/tlpsrc/lwarp.tlpsrc tlpkg/tlpsrc/lxfonts.tlpsrc tlpkg/tlpsrc/ly1.tlpsrc tlpkg/tlpsrc/lyluatex.tlpsrc tlpkg/tlpsrc/m-tx.tlpsrc + tlpkg/tlpsrc/macrolist.tlpsrc tlpkg/tlpsrc/macros2e.tlpsrc tlpkg/tlpsrc/macroswap.tlpsrc tlpkg/tlpsrc/mafr.tlpsrc tlpkg/tlpsrc/magaz.tlpsrc tlpkg/tlpsrc/magicnum.tlpsrc + tlpkg/tlpsrc/magicwatermark.tlpsrc tlpkg/tlpsrc/magra.tlpsrc tlpkg/tlpsrc/mahjong.tlpsrc tlpkg/tlpsrc/mailing.tlpsrc @@ -2601,6 +2771,7 @@ runfiles size=13860 tlpkg/tlpsrc/makedtx.tlpsrc tlpkg/tlpsrc/makeglos.tlpsrc tlpkg/tlpsrc/makeindex.tlpsrc + tlpkg/tlpsrc/makelabels.tlpsrc tlpkg/tlpsrc/makeplot.tlpsrc tlpkg/tlpsrc/maker.tlpsrc tlpkg/tlpsrc/makerobust.tlpsrc @@ -2640,6 +2811,7 @@ runfiles size=13860 tlpkg/tlpsrc/mathpazo.tlpsrc tlpkg/tlpsrc/mathpunctspace.tlpsrc tlpkg/tlpsrc/maths-symbols.tlpsrc + tlpkg/tlpsrc/mathsemantics.tlpsrc tlpkg/tlpsrc/mathspec.tlpsrc tlpkg/tlpsrc/mathspic.tlpsrc tlpkg/tlpsrc/mathtools.tlpsrc @@ -2647,6 +2819,7 @@ runfiles size=13860 tlpkg/tlpsrc/matrix-skeleton.tlpsrc tlpkg/tlpsrc/mattens.tlpsrc tlpkg/tlpsrc/maybemath.tlpsrc + tlpkg/tlpsrc/maze.tlpsrc tlpkg/tlpsrc/mcaption.tlpsrc tlpkg/tlpsrc/mceinleger.tlpsrc tlpkg/tlpsrc/mcexam.tlpsrc @@ -2658,6 +2831,7 @@ runfiles size=13860 tlpkg/tlpsrc/mdputu.tlpsrc tlpkg/tlpsrc/mdsymbol.tlpsrc tlpkg/tlpsrc/mdwtools.tlpsrc + tlpkg/tlpsrc/mecaso.tlpsrc tlpkg/tlpsrc/media4svg.tlpsrc tlpkg/tlpsrc/media9.tlpsrc tlpkg/tlpsrc/medstarbeamer.tlpsrc @@ -2666,6 +2840,7 @@ runfiles size=13860 tlpkg/tlpsrc/memdesign.tlpsrc tlpkg/tlpsrc/memexsupp.tlpsrc tlpkg/tlpsrc/memoir.tlpsrc + tlpkg/tlpsrc/memoirchapterstyles.tlpsrc tlpkg/tlpsrc/memory.tlpsrc tlpkg/tlpsrc/memorygraphs.tlpsrc tlpkg/tlpsrc/mendex-doc.tlpsrc @@ -2676,6 +2851,7 @@ runfiles size=13860 tlpkg/tlpsrc/menukeys.tlpsrc tlpkg/tlpsrc/mercatormap.tlpsrc tlpkg/tlpsrc/merriweather.tlpsrc + tlpkg/tlpsrc/messagepassing.tlpsrc tlpkg/tlpsrc/metafont-beginners.tlpsrc tlpkg/tlpsrc/metafont.tlpsrc tlpkg/tlpsrc/metago.tlpsrc @@ -2721,6 +2897,12 @@ runfiles size=13860 tlpkg/tlpsrc/minibox.tlpsrc tlpkg/tlpsrc/minidocument.tlpsrc tlpkg/tlpsrc/minifp.tlpsrc + tlpkg/tlpsrc/minim-hatching.tlpsrc + tlpkg/tlpsrc/minim-math.tlpsrc + tlpkg/tlpsrc/minim-mp.tlpsrc + tlpkg/tlpsrc/minim-pdf.tlpsrc + tlpkg/tlpsrc/minim-xmp.tlpsrc + tlpkg/tlpsrc/minim.tlpsrc tlpkg/tlpsrc/minimalist.tlpsrc tlpkg/tlpsrc/minipage-marginpar.tlpsrc tlpkg/tlpsrc/miniplot.tlpsrc @@ -2800,8 +2982,10 @@ runfiles size=13860 tlpkg/tlpsrc/multido.tlpsrc tlpkg/tlpsrc/multienv.tlpsrc tlpkg/tlpsrc/multiexpand.tlpsrc + tlpkg/tlpsrc/multifootnote.tlpsrc tlpkg/tlpsrc/multilang.tlpsrc tlpkg/tlpsrc/multiobjective.tlpsrc + tlpkg/tlpsrc/multiple-choice.tlpsrc tlpkg/tlpsrc/multirow.tlpsrc tlpkg/tlpsrc/munich.tlpsrc tlpkg/tlpsrc/musical.tlpsrc @@ -2825,8 +3009,10 @@ runfiles size=13860 tlpkg/tlpsrc/na-box.tlpsrc tlpkg/tlpsrc/na-position.tlpsrc tlpkg/tlpsrc/nag.tlpsrc + tlpkg/tlpsrc/naive-ebnf.tlpsrc tlpkg/tlpsrc/nameauth.tlpsrc tlpkg/tlpsrc/namedef.tlpsrc + tlpkg/tlpsrc/namedtensor.tlpsrc tlpkg/tlpsrc/namespc.tlpsrc tlpkg/tlpsrc/nanicolle.tlpsrc tlpkg/tlpsrc/nanumtype1.tlpsrc @@ -2839,13 +3025,16 @@ runfiles size=13860 tlpkg/tlpsrc/navydocs.tlpsrc tlpkg/tlpsrc/ncclatex.tlpsrc tlpkg/tlpsrc/ncctools.tlpsrc + tlpkg/tlpsrc/nchairx.tlpsrc tlpkg/tlpsrc/ncntrsbk.tlpsrc tlpkg/tlpsrc/nddiss.tlpsrc + tlpkg/tlpsrc/ndsu-thesis-2022.tlpsrc tlpkg/tlpsrc/ndsu-thesis.tlpsrc tlpkg/tlpsrc/needspace.tlpsrc tlpkg/tlpsrc/nestquot.tlpsrc tlpkg/tlpsrc/neuralnetwork.tlpsrc tlpkg/tlpsrc/nevelok.tlpsrc + tlpkg/tlpsrc/newcastle-bst.tlpsrc tlpkg/tlpsrc/newcommand.tlpsrc tlpkg/tlpsrc/newcomputermodern.tlpsrc tlpkg/tlpsrc/newenviron.tlpsrc @@ -2876,10 +3065,14 @@ runfiles size=13860 tlpkg/tlpsrc/nimsticks.tlpsrc tlpkg/tlpsrc/ninecolors.tlpsrc tlpkg/tlpsrc/njurepo.tlpsrc + tlpkg/tlpsrc/njustthesis.tlpsrc + tlpkg/tlpsrc/njuthesis.tlpsrc + tlpkg/tlpsrc/njuvisual.tlpsrc tlpkg/tlpsrc/nkarta.tlpsrc tlpkg/tlpsrc/nl-interval.tlpsrc tlpkg/tlpsrc/nlctdoc.tlpsrc tlpkg/tlpsrc/nmbib.tlpsrc + tlpkg/tlpsrc/nndraw.tlpsrc tlpkg/tlpsrc/nnext.tlpsrc tlpkg/tlpsrc/noconflict.tlpsrc tlpkg/tlpsrc/nodetree.tlpsrc @@ -2906,7 +3099,6 @@ runfiles size=13860 tlpkg/tlpsrc/novel.tlpsrc tlpkg/tlpsrc/nowidow.tlpsrc tlpkg/tlpsrc/nox.tlpsrc - tlpkg/tlpsrc/npp-for-context.tlpsrc tlpkg/tlpsrc/nrc.tlpsrc tlpkg/tlpsrc/ntgclass.tlpsrc tlpkg/tlpsrc/nth.tlpsrc @@ -2916,6 +3108,8 @@ runfiles size=13860 tlpkg/tlpsrc/nucleardata.tlpsrc tlpkg/tlpsrc/numberedblock.tlpsrc tlpkg/tlpsrc/numberpt.tlpsrc + tlpkg/tlpsrc/numerica-plus.tlpsrc + tlpkg/tlpsrc/numerica-tables.tlpsrc tlpkg/tlpsrc/numerica.tlpsrc tlpkg/tlpsrc/numericplots.tlpsrc tlpkg/tlpsrc/numname.tlpsrc @@ -2923,6 +3117,7 @@ runfiles size=13860 tlpkg/tlpsrc/numprint.tlpsrc tlpkg/tlpsrc/numspell.tlpsrc tlpkg/tlpsrc/nunito.tlpsrc + tlpkg/tlpsrc/nwafuthesis.tlpsrc tlpkg/tlpsrc/nwejm.tlpsrc tlpkg/tlpsrc/oberdiek.tlpsrc tlpkg/tlpsrc/objectz.tlpsrc @@ -2951,10 +3146,12 @@ runfiles size=13860 tlpkg/tlpsrc/onlyamsmath.tlpsrc tlpkg/tlpsrc/onrannual.tlpsrc tlpkg/tlpsrc/opcit.tlpsrc + tlpkg/tlpsrc/opencolor.tlpsrc tlpkg/tlpsrc/opensans.tlpsrc tlpkg/tlpsrc/oplotsymbl.tlpsrc tlpkg/tlpsrc/opteng.tlpsrc tlpkg/tlpsrc/optex.tlpsrc + tlpkg/tlpsrc/optexcount.tlpsrc tlpkg/tlpsrc/optidef.tlpsrc tlpkg/tlpsrc/optional.tlpsrc tlpkg/tlpsrc/options.tlpsrc @@ -2971,10 +3168,12 @@ runfiles size=13860 tlpkg/tlpsrc/oubraces.tlpsrc tlpkg/tlpsrc/oup-authoring-template.tlpsrc tlpkg/tlpsrc/outerhbox.tlpsrc + tlpkg/tlpsrc/outilsgeomtikz.tlpsrc tlpkg/tlpsrc/outline.tlpsrc tlpkg/tlpsrc/outliner.tlpsrc tlpkg/tlpsrc/outlines.tlpsrc tlpkg/tlpsrc/outlining.tlpsrc + tlpkg/tlpsrc/overarrows.tlpsrc tlpkg/tlpsrc/overlays.tlpsrc tlpkg/tlpsrc/overlock.tlpsrc tlpkg/tlpsrc/overpic.tlpsrc @@ -2983,11 +3182,16 @@ runfiles size=13860 tlpkg/tlpsrc/padcount.tlpsrc tlpkg/tlpsrc/pagecolor.tlpsrc tlpkg/tlpsrc/pagecont.tlpsrc + tlpkg/tlpsrc/pagegrid.tlpsrc + tlpkg/tlpsrc/pagelayout.tlpsrc + tlpkg/tlpsrc/pagella-otf.tlpsrc tlpkg/tlpsrc/pagenote.tlpsrc tlpkg/tlpsrc/pagerange.tlpsrc tlpkg/tlpsrc/pagesel.tlpsrc tlpkg/tlpsrc/pageslts.tlpsrc tlpkg/tlpsrc/palatino.tlpsrc + tlpkg/tlpsrc/palette.tlpsrc + tlpkg/tlpsrc/pangram.tlpsrc tlpkg/tlpsrc/paper.tlpsrc tlpkg/tlpsrc/papercdcase.tlpsrc tlpkg/tlpsrc/papermas.tlpsrc @@ -3007,6 +3211,7 @@ runfiles size=13860 tlpkg/tlpsrc/pas-crosswords.tlpsrc tlpkg/tlpsrc/pas-cv.tlpsrc tlpkg/tlpsrc/pas-tableur.tlpsrc + tlpkg/tlpsrc/pascaltriangle.tlpsrc tlpkg/tlpsrc/passivetex.tlpsrc tlpkg/tlpsrc/patch.tlpsrc tlpkg/tlpsrc/patchcmd.tlpsrc @@ -3019,22 +3224,27 @@ runfiles size=13860 tlpkg/tlpsrc/pb-diagram.tlpsrc tlpkg/tlpsrc/pbalance.tlpsrc tlpkg/tlpsrc/pbibtex-base.tlpsrc + tlpkg/tlpsrc/pbibtex-manual.tlpsrc tlpkg/tlpsrc/pbox.tlpsrc tlpkg/tlpsrc/pbsheet.tlpsrc tlpkg/tlpsrc/pdf-trans.tlpsrc tlpkg/tlpsrc/pdf14.tlpsrc tlpkg/tlpsrc/pdfarticle.tlpsrc tlpkg/tlpsrc/pdfbook2.tlpsrc + tlpkg/tlpsrc/pdfcol.tlpsrc + tlpkg/tlpsrc/pdfcolfoot.tlpsrc tlpkg/tlpsrc/pdfcolmk.tlpsrc tlpkg/tlpsrc/pdfcomment.tlpsrc tlpkg/tlpsrc/pdfcprot.tlpsrc tlpkg/tlpsrc/pdfcrop.tlpsrc tlpkg/tlpsrc/pdfescape.tlpsrc + tlpkg/tlpsrc/pdfextra.tlpsrc tlpkg/tlpsrc/pdfjam.tlpsrc tlpkg/tlpsrc/pdflatexpicscale.tlpsrc tlpkg/tlpsrc/pdflscape.tlpsrc tlpkg/tlpsrc/pdfmanagement-testphase.tlpsrc tlpkg/tlpsrc/pdfmarginpar.tlpsrc + tlpkg/tlpsrc/pdfmsym.tlpsrc tlpkg/tlpsrc/pdfoverlay.tlpsrc tlpkg/tlpsrc/pdfpagediff.tlpsrc tlpkg/tlpsrc/pdfpages.tlpsrc @@ -3056,6 +3266,7 @@ runfiles size=13860 tlpkg/tlpsrc/pdfxup.tlpsrc tlpkg/tlpsrc/pecha.tlpsrc tlpkg/tlpsrc/pedigree-perl.tlpsrc + tlpkg/tlpsrc/penlight.tlpsrc tlpkg/tlpsrc/penrose.tlpsrc tlpkg/tlpsrc/perception.tlpsrc tlpkg/tlpsrc/perfectcut.tlpsrc @@ -3065,8 +3276,10 @@ runfiles size=13860 tlpkg/tlpsrc/petiteannonce.tlpsrc tlpkg/tlpsrc/petri-nets.tlpsrc tlpkg/tlpsrc/pfarrei.tlpsrc + tlpkg/tlpsrc/pfdicons.tlpsrc tlpkg/tlpsrc/pgf-blur.tlpsrc - tlpkg/tlpsrc/pgf-cmykshadings.tlpsrc + tlpkg/tlpsrc/pgf-interference.tlpsrc + tlpkg/tlpsrc/pgf-periodictable.tlpsrc tlpkg/tlpsrc/pgf-pie.tlpsrc tlpkg/tlpsrc/pgf-soroban.tlpsrc tlpkg/tlpsrc/pgf-spectra.tlpsrc @@ -3075,6 +3288,7 @@ runfiles size=13860 tlpkg/tlpsrc/pgf.tlpsrc tlpkg/tlpsrc/pgfgantt.tlpsrc tlpkg/tlpsrc/pgfkeyx.tlpsrc + tlpkg/tlpsrc/pgfmath-xfp.tlpsrc tlpkg/tlpsrc/pgfmolbio.tlpsrc tlpkg/tlpsrc/pgfmorepages.tlpsrc tlpkg/tlpsrc/pgfopts.tlpsrc @@ -3082,6 +3296,8 @@ runfiles size=13860 tlpkg/tlpsrc/pgfornament.tlpsrc tlpkg/tlpsrc/pgfplots.tlpsrc tlpkg/tlpsrc/phaistos.tlpsrc + tlpkg/tlpsrc/phfcc.tlpsrc + tlpkg/tlpsrc/phfextendedabstract.tlpsrc tlpkg/tlpsrc/phffullpagefigure.tlpsrc tlpkg/tlpsrc/phfnote.tlpsrc tlpkg/tlpsrc/phfparen.tlpsrc @@ -3096,8 +3312,10 @@ runfiles size=13860 tlpkg/tlpsrc/phonetic.tlpsrc tlpkg/tlpsrc/phonrule.tlpsrc tlpkg/tlpsrc/photo.tlpsrc + tlpkg/tlpsrc/photobook.tlpsrc tlpkg/tlpsrc/physconst.tlpsrc tlpkg/tlpsrc/physics.tlpsrc + tlpkg/tlpsrc/physics2.tlpsrc tlpkg/tlpsrc/physunits.tlpsrc tlpkg/tlpsrc/piano.tlpsrc tlpkg/tlpsrc/picinpar.tlpsrc @@ -3112,8 +3330,10 @@ runfiles size=13860 tlpkg/tlpsrc/pinlabel.tlpsrc tlpkg/tlpsrc/pinoutikz.tlpsrc tlpkg/tlpsrc/pitex.tlpsrc + tlpkg/tlpsrc/piton.tlpsrc tlpkg/tlpsrc/pittetd.tlpsrc tlpkg/tlpsrc/pixelart.tlpsrc + tlpkg/tlpsrc/pixelarttikz.tlpsrc tlpkg/tlpsrc/pkfix-helper.tlpsrc tlpkg/tlpsrc/pkfix.tlpsrc tlpkg/tlpsrc/pkgloader.tlpsrc @@ -3165,31 +3385,38 @@ runfiles size=13860 tlpkg/tlpsrc/postage.tlpsrc tlpkg/tlpsrc/postcards.tlpsrc tlpkg/tlpsrc/poster-mac.tlpsrc + tlpkg/tlpsrc/postnotes.tlpsrc tlpkg/tlpsrc/powerdot-fuberlin.tlpsrc tlpkg/tlpsrc/powerdot-tuliplab.tlpsrc tlpkg/tlpsrc/powerdot.tlpsrc tlpkg/tlpsrc/ppr-prv.tlpsrc + tlpkg/tlpsrc/ppt-slides.tlpsrc tlpkg/tlpsrc/pracjourn.tlpsrc tlpkg/tlpsrc/practicalreports.tlpsrc + tlpkg/tlpsrc/precattl.tlpsrc tlpkg/tlpsrc/prelim2e.tlpsrc tlpkg/tlpsrc/preprint.tlpsrc tlpkg/tlpsrc/prerex.tlpsrc tlpkg/tlpsrc/present.tlpsrc tlpkg/tlpsrc/pressrelease.tlpsrc tlpkg/tlpsrc/prettyref.tlpsrc + tlpkg/tlpsrc/prettytok.tlpsrc tlpkg/tlpsrc/preview.tlpsrc tlpkg/tlpsrc/prftree.tlpsrc tlpkg/tlpsrc/principia.tlpsrc tlpkg/tlpsrc/printlen.tlpsrc tlpkg/tlpsrc/proba.tlpsrc tlpkg/tlpsrc/probsoln.tlpsrc - tlpkg/tlpsrc/procIAGssymp.tlpsrc + tlpkg/tlpsrc/prociagssymp.tlpsrc tlpkg/tlpsrc/prodint.tlpsrc tlpkg/tlpsrc/productbox.tlpsrc tlpkg/tlpsrc/profcollege.tlpsrc + tlpkg/tlpsrc/proflabo.tlpsrc + tlpkg/tlpsrc/proflycee.tlpsrc tlpkg/tlpsrc/program.tlpsrc tlpkg/tlpsrc/progress.tlpsrc tlpkg/tlpsrc/progressbar.tlpsrc + tlpkg/tlpsrc/projlib.tlpsrc tlpkg/tlpsrc/proof-at-the-end.tlpsrc tlpkg/tlpsrc/proofread.tlpsrc tlpkg/tlpsrc/prooftrees.tlpsrc @@ -3244,6 +3471,7 @@ runfiles size=13860 tlpkg/tlpsrc/pst-feyn.tlpsrc tlpkg/tlpsrc/pst-fill.tlpsrc tlpkg/tlpsrc/pst-fit.tlpsrc + tlpkg/tlpsrc/pst-flags.tlpsrc tlpkg/tlpsrc/pst-fr3d.tlpsrc tlpkg/tlpsrc/pst-fractal.tlpsrc tlpkg/tlpsrc/pst-fun.tlpsrc @@ -3251,10 +3479,10 @@ runfiles size=13860 tlpkg/tlpsrc/pst-gantt.tlpsrc tlpkg/tlpsrc/pst-geo.tlpsrc tlpkg/tlpsrc/pst-geometrictools.tlpsrc - tlpkg/tlpsrc/pst-ghsb.tlpsrc tlpkg/tlpsrc/pst-gr3d.tlpsrc tlpkg/tlpsrc/pst-grad.tlpsrc tlpkg/tlpsrc/pst-graphicx.tlpsrc + tlpkg/tlpsrc/pst-hsb.tlpsrc tlpkg/tlpsrc/pst-infixplot.tlpsrc tlpkg/tlpsrc/pst-intersect.tlpsrc tlpkg/tlpsrc/pst-jtree.tlpsrc @@ -3345,8 +3573,10 @@ runfiles size=13860 tlpkg/tlpsrc/pxtxalfa.tlpsrc tlpkg/tlpsrc/pxufont.tlpsrc tlpkg/tlpsrc/pygmentex.tlpsrc + tlpkg/tlpsrc/pyluatex.tlpsrc tlpkg/tlpsrc/python.tlpsrc tlpkg/tlpsrc/pythonhighlight.tlpsrc + tlpkg/tlpsrc/pythonimmediate.tlpsrc tlpkg/tlpsrc/pythontex.tlpsrc tlpkg/tlpsrc/qcircuit.tlpsrc tlpkg/tlpsrc/qcm.tlpsrc @@ -3382,6 +3612,7 @@ runfiles size=13860 tlpkg/tlpsrc/randomwalk.tlpsrc tlpkg/tlpsrc/randtext.tlpsrc tlpkg/tlpsrc/rank-2-roots.tlpsrc + tlpkg/tlpsrc/rbt-mathnotes.tlpsrc tlpkg/tlpsrc/rccol.tlpsrc tlpkg/tlpsrc/rcs-multi.tlpsrc tlpkg/tlpsrc/rcs.tlpsrc @@ -3396,6 +3627,7 @@ runfiles size=13860 tlpkg/tlpsrc/recipe.tlpsrc tlpkg/tlpsrc/recipebook.tlpsrc tlpkg/tlpsrc/recipecard.tlpsrc + tlpkg/tlpsrc/recorder-fingering.tlpsrc tlpkg/tlpsrc/rectopma.tlpsrc tlpkg/tlpsrc/recycle.tlpsrc tlpkg/tlpsrc/refcheck.tlpsrc @@ -3416,6 +3648,9 @@ runfiles size=13860 tlpkg/tlpsrc/repere.tlpsrc tlpkg/tlpsrc/repltext.tlpsrc tlpkg/tlpsrc/rerunfilecheck.tlpsrc + tlpkg/tlpsrc/rescansync.tlpsrc + tlpkg/tlpsrc/resmes.tlpsrc + tlpkg/tlpsrc/resolsysteme.tlpsrc tlpkg/tlpsrc/resphilosophica.tlpsrc tlpkg/tlpsrc/rest-api.tlpsrc tlpkg/tlpsrc/resumecls.tlpsrc @@ -3432,6 +3667,7 @@ runfiles size=13860 tlpkg/tlpsrc/rlepsf.tlpsrc tlpkg/tlpsrc/rmathbr.tlpsrc tlpkg/tlpsrc/rmpage.tlpsrc + tlpkg/tlpsrc/robotarm.tlpsrc tlpkg/tlpsrc/roboto.tlpsrc tlpkg/tlpsrc/robustcommand.tlpsrc tlpkg/tlpsrc/robustindex.tlpsrc @@ -3467,6 +3703,7 @@ runfiles size=13860 tlpkg/tlpsrc/ryersonsgsthesis.tlpsrc tlpkg/tlpsrc/ryethesis.tlpsrc tlpkg/tlpsrc/sa-tikz.tlpsrc + tlpkg/tlpsrc/sacsymb.tlpsrc tlpkg/tlpsrc/sageep.tlpsrc tlpkg/tlpsrc/sanitize-umlaut.tlpsrc tlpkg/tlpsrc/sankey.tlpsrc @@ -3480,6 +3717,7 @@ runfiles size=13860 tlpkg/tlpsrc/sauerj.tlpsrc tlpkg/tlpsrc/sauter.tlpsrc tlpkg/tlpsrc/sauterfonts.tlpsrc + tlpkg/tlpsrc/saveenv.tlpsrc tlpkg/tlpsrc/savefnmark.tlpsrc tlpkg/tlpsrc/savesym.tlpsrc tlpkg/tlpsrc/savetrees.tlpsrc @@ -3491,6 +3729,7 @@ runfiles size=13860 tlpkg/tlpsrc/schemabloc.tlpsrc tlpkg/tlpsrc/schemata.tlpsrc tlpkg/tlpsrc/scheme-basic.tlpsrc + tlpkg/tlpsrc/scheme-bookpub.tlpsrc tlpkg/tlpsrc/scheme-context.tlpsrc tlpkg/tlpsrc/scheme-full.tlpsrc tlpkg/tlpsrc/scheme-gust.tlpsrc @@ -3499,6 +3738,7 @@ runfiles size=13860 tlpkg/tlpsrc/scheme-minimal.tlpsrc tlpkg/tlpsrc/scheme-small.tlpsrc tlpkg/tlpsrc/scheme-tetex.tlpsrc + tlpkg/tlpsrc/schola-otf.tlpsrc tlpkg/tlpsrc/scholax.tlpsrc tlpkg/tlpsrc/schooldocs.tlpsrc tlpkg/tlpsrc/schule.tlpsrc @@ -3506,14 +3746,18 @@ runfiles size=13860 tlpkg/tlpsrc/schulschriften.tlpsrc tlpkg/tlpsrc/schwalbe-chess.tlpsrc tlpkg/tlpsrc/scientific-thesis-cover.tlpsrc + tlpkg/tlpsrc/scikgtex.tlpsrc tlpkg/tlpsrc/sciposter.tlpsrc tlpkg/tlpsrc/sclang-prettifier.tlpsrc tlpkg/tlpsrc/scontents.tlpsrc + tlpkg/tlpsrc/scrabble.tlpsrc + tlpkg/tlpsrc/scrambledenvs.tlpsrc tlpkg/tlpsrc/scratch.tlpsrc tlpkg/tlpsrc/scratch3.tlpsrc tlpkg/tlpsrc/scratchx.tlpsrc tlpkg/tlpsrc/screenplay-pkg.tlpsrc tlpkg/tlpsrc/screenplay.tlpsrc + tlpkg/tlpsrc/scripture.tlpsrc tlpkg/tlpsrc/scrjrnl.tlpsrc tlpkg/tlpsrc/scrlayer-fancyhdr.tlpsrc tlpkg/tlpsrc/scrlttr2copy.tlpsrc @@ -3521,6 +3765,7 @@ runfiles size=13860 tlpkg/tlpsrc/sdaps.tlpsrc tlpkg/tlpsrc/sdrt.tlpsrc tlpkg/tlpsrc/sduthesis.tlpsrc + tlpkg/tlpsrc/se2thesis.tlpsrc tlpkg/tlpsrc/secdot.tlpsrc tlpkg/tlpsrc/secnum.tlpsrc tlpkg/tlpsrc/section.tlpsrc @@ -3552,6 +3797,7 @@ runfiles size=13860 tlpkg/tlpsrc/sesstime.tlpsrc tlpkg/tlpsrc/setdeck.tlpsrc tlpkg/tlpsrc/setspace.tlpsrc + tlpkg/tlpsrc/seu-ml-assign.tlpsrc tlpkg/tlpsrc/seuthesis.tlpsrc tlpkg/tlpsrc/seuthesix.tlpsrc tlpkg/tlpsrc/sexam.tlpsrc @@ -3576,30 +3822,38 @@ runfiles size=13860 tlpkg/tlpsrc/showcharinbox.tlpsrc tlpkg/tlpsrc/showdim.tlpsrc tlpkg/tlpsrc/showexpl.tlpsrc - tlpkg/tlpsrc/showhyphens.tlpsrc + tlpkg/tlpsrc/showhyphenation.tlpsrc + tlpkg/tlpsrc/showkerning.tlpsrc tlpkg/tlpsrc/showlabels.tlpsrc tlpkg/tlpsrc/showtags.tlpsrc tlpkg/tlpsrc/shtthesis.tlpsrc tlpkg/tlpsrc/shuffle.tlpsrc tlpkg/tlpsrc/sidecap.tlpsrc tlpkg/tlpsrc/sidenotes.tlpsrc + tlpkg/tlpsrc/sidenotesplus.tlpsrc tlpkg/tlpsrc/sides.tlpsrc tlpkg/tlpsrc/signchart.tlpsrc tlpkg/tlpsrc/silence.tlpsrc + tlpkg/tlpsrc/sillypage.tlpsrc tlpkg/tlpsrc/simple-resume-cv.tlpsrc tlpkg/tlpsrc/simple-thesis-dissertation.tlpsrc tlpkg/tlpsrc/simplebnf.tlpsrc tlpkg/tlpsrc/simplecd.tlpsrc tlpkg/tlpsrc/simplecv.tlpsrc + tlpkg/tlpsrc/simpleicons.tlpsrc tlpkg/tlpsrc/simpleinvoice.tlpsrc tlpkg/tlpsrc/simplekv.tlpsrc + tlpkg/tlpsrc/simplenodes.tlpsrc tlpkg/tlpsrc/simpleoptics.tlpsrc tlpkg/tlpsrc/simpler-wick.tlpsrc + tlpkg/tlpsrc/simples-matrices.tlpsrc tlpkg/tlpsrc/simplewick.tlpsrc tlpkg/tlpsrc/simplified-latex.tlpsrc tlpkg/tlpsrc/simplivre.tlpsrc tlpkg/tlpsrc/simurgh.tlpsrc + tlpkg/tlpsrc/sistyle.tlpsrc tlpkg/tlpsrc/sitem.tlpsrc + tlpkg/tlpsrc/siunits.tlpsrc tlpkg/tlpsrc/siunitx.tlpsrc tlpkg/tlpsrc/skak.tlpsrc tlpkg/tlpsrc/skaknew.tlpsrc @@ -3615,28 +3869,32 @@ runfiles size=13860 tlpkg/tlpsrc/slantsc.tlpsrc tlpkg/tlpsrc/slideshow.tlpsrc tlpkg/tlpsrc/smalltableof.tlpsrc + tlpkg/tlpsrc/smart-eqn.tlpsrc tlpkg/tlpsrc/smartdiagram.tlpsrc tlpkg/tlpsrc/smartref.tlpsrc tlpkg/tlpsrc/smartunits.tlpsrc tlpkg/tlpsrc/smflatex.tlpsrc tlpkg/tlpsrc/snapshot.tlpsrc + tlpkg/tlpsrc/snaptodo.tlpsrc tlpkg/tlpsrc/snotez.tlpsrc tlpkg/tlpsrc/songbook.tlpsrc + tlpkg/tlpsrc/songproj.tlpsrc tlpkg/tlpsrc/songs.tlpsrc tlpkg/tlpsrc/sort-by-letters.tlpsrc tlpkg/tlpsrc/soton.tlpsrc tlpkg/tlpsrc/soul.tlpsrc tlpkg/tlpsrc/soulpos.tlpsrc - tlpkg/tlpsrc/soulutf8.tlpsrc tlpkg/tlpsrc/soup.tlpsrc tlpkg/tlpsrc/sourcecodepro.tlpsrc tlpkg/tlpsrc/sourcesanspro.tlpsrc tlpkg/tlpsrc/sourceserifpro.tlpsrc + tlpkg/tlpsrc/spacekern.tlpsrc tlpkg/tlpsrc/spacingtricks.tlpsrc tlpkg/tlpsrc/spalign.tlpsrc tlpkg/tlpsrc/spark-otf.tlpsrc tlpkg/tlpsrc/sparklines.tlpsrc tlpkg/tlpsrc/spath3.tlpsrc + tlpkg/tlpsrc/spbmark.tlpsrc tlpkg/tlpsrc/spectral.tlpsrc tlpkg/tlpsrc/spectralsequences.tlpsrc tlpkg/tlpsrc/spelling.tlpsrc @@ -3653,6 +3911,7 @@ runfiles size=13860 tlpkg/tlpsrc/spverbatim.tlpsrc tlpkg/tlpsrc/sr-vorl.tlpsrc tlpkg/tlpsrc/srbook-mem.tlpsrc + tlpkg/tlpsrc/srbtiks.tlpsrc tlpkg/tlpsrc/srcltx.tlpsrc tlpkg/tlpsrc/srcredact.tlpsrc tlpkg/tlpsrc/srdp-mathematik.tlpsrc @@ -3665,7 +3924,6 @@ runfiles size=13860 tlpkg/tlpsrc/stanli.tlpsrc tlpkg/tlpsrc/starfont.tlpsrc tlpkg/tlpsrc/startex.tlpsrc - tlpkg/tlpsrc/startlatex2e.tlpsrc tlpkg/tlpsrc/statex.tlpsrc tlpkg/tlpsrc/statex2.tlpsrc tlpkg/tlpsrc/statistics.tlpsrc @@ -3687,6 +3945,7 @@ runfiles size=13860 tlpkg/tlpsrc/stmaryrd.tlpsrc tlpkg/tlpsrc/storebox.tlpsrc tlpkg/tlpsrc/storecmd.tlpsrc + tlpkg/tlpsrc/strands.tlpsrc tlpkg/tlpsrc/stricttex.tlpsrc tlpkg/tlpsrc/stringenc.tlpsrc tlpkg/tlpsrc/stringstrings.tlpsrc @@ -3696,6 +3955,7 @@ runfiles size=13860 tlpkg/tlpsrc/stubs.tlpsrc tlpkg/tlpsrc/studenthandouts.tlpsrc tlpkg/tlpsrc/sty2dtx.tlpsrc + tlpkg/tlpsrc/styledcmd.tlpsrc tlpkg/tlpsrc/suanpan.tlpsrc tlpkg/tlpsrc/subdepth.tlpsrc tlpkg/tlpsrc/subdocs.tlpsrc @@ -3731,7 +3991,9 @@ runfiles size=13860 tlpkg/tlpsrc/swfigure.tlpsrc tlpkg/tlpsrc/swimgraf.tlpsrc tlpkg/tlpsrc/swrule.tlpsrc + tlpkg/tlpsrc/swungdash.tlpsrc tlpkg/tlpsrc/syllogism.tlpsrc + tlpkg/tlpsrc/symbats3.tlpsrc tlpkg/tlpsrc/symbol.tlpsrc tlpkg/tlpsrc/sympytexpackage.tlpsrc tlpkg/tlpsrc/synctex.tlpsrc @@ -3744,12 +4006,12 @@ runfiles size=13860 tlpkg/tlpsrc/t-angles.tlpsrc tlpkg/tlpsrc/t1utils.tlpsrc tlpkg/tlpsrc/t2.tlpsrc + tlpkg/tlpsrc/tabbing.tlpsrc tlpkg/tlpsrc/tabfigures.tlpsrc tlpkg/tlpsrc/table-fct.tlpsrc tlpkg/tlpsrc/tableaux.tlpsrc tlpkg/tlpsrc/tablefootnote.tlpsrc tlpkg/tlpsrc/tableof.tlpsrc - tlpkg/tlpsrc/tablestyles.tlpsrc tlpkg/tlpsrc/tablists.tlpsrc tlpkg/tlpsrc/tablor.tlpsrc tlpkg/tlpsrc/tabls.tlpsrc @@ -3762,14 +4024,17 @@ runfiles size=13860 tlpkg/tlpsrc/tabularborder.tlpsrc tlpkg/tlpsrc/tabularcalc.tlpsrc tlpkg/tlpsrc/tabularew.tlpsrc + tlpkg/tlpsrc/tabularray.tlpsrc tlpkg/tlpsrc/tabulary.tlpsrc tlpkg/tlpsrc/tabvar.tlpsrc tlpkg/tlpsrc/tagging.tlpsrc tlpkg/tlpsrc/tagpair.tlpsrc tlpkg/tlpsrc/tagpdf.tlpsrc tlpkg/tlpsrc/talk.tlpsrc + tlpkg/tlpsrc/talos.tlpsrc tlpkg/tlpsrc/tamefloats.tlpsrc tlpkg/tlpsrc/tamethebeast.tlpsrc + tlpkg/tlpsrc/tangramtikz.tlpsrc tlpkg/tlpsrc/tap.tlpsrc tlpkg/tlpsrc/tapir.tlpsrc tlpkg/tlpsrc/tasks.tlpsrc @@ -3790,8 +4055,10 @@ runfiles size=13860 tlpkg/tlpsrc/tensor.tlpsrc tlpkg/tlpsrc/termcal-de.tlpsrc tlpkg/tlpsrc/termcal.tlpsrc + tlpkg/tlpsrc/termes-otf.tlpsrc tlpkg/tlpsrc/termlist.tlpsrc tlpkg/tlpsrc/termmenu.tlpsrc + tlpkg/tlpsrc/termsim.tlpsrc tlpkg/tlpsrc/testhyphens.tlpsrc tlpkg/tlpsrc/testidx.tlpsrc tlpkg/tlpsrc/tetragonos.tlpsrc @@ -3808,15 +4075,18 @@ runfiles size=13860 tlpkg/tlpsrc/tex-ps.tlpsrc tlpkg/tlpsrc/tex-refs.tlpsrc tlpkg/tlpsrc/tex-virtual-academy-pl.tlpsrc + tlpkg/tlpsrc/tex-vpat.tlpsrc tlpkg/tlpsrc/tex.tlpsrc tlpkg/tlpsrc/tex4ebook.tlpsrc tlpkg/tlpsrc/tex4ht.tlpsrc + tlpkg/tlpsrc/texaccents.tlpsrc tlpkg/tlpsrc/texapi.tlpsrc tlpkg/tlpsrc/texbytopic.tlpsrc tlpkg/tlpsrc/texcount.tlpsrc tlpkg/tlpsrc/texdate.tlpsrc tlpkg/tlpsrc/texdef.tlpsrc tlpkg/tlpsrc/texdiff.tlpsrc + tlpkg/tlpsrc/texdimens.tlpsrc tlpkg/tlpsrc/texdirflatten.tlpsrc tlpkg/tlpsrc/texdoc.tlpsrc tlpkg/tlpsrc/texdoctk.tlpsrc @@ -3828,7 +4098,6 @@ runfiles size=13860 tlpkg/tlpsrc/texlive-common.tlpsrc tlpkg/tlpsrc/texlive-cz.tlpsrc tlpkg/tlpsrc/texlive-de.tlpsrc - tlpkg/tlpsrc/texlive-docindex.tlpsrc tlpkg/tlpsrc/texlive-en.tlpsrc tlpkg/tlpsrc/texlive-es.tlpsrc tlpkg/tlpsrc/texlive-fr.tlpsrc @@ -3844,7 +4113,9 @@ runfiles size=13860 tlpkg/tlpsrc/texlive.infra.tlpsrc tlpkg/tlpsrc/texliveonfly.tlpsrc tlpkg/tlpsrc/texloganalyser.tlpsrc + tlpkg/tlpsrc/texlogfilter.tlpsrc tlpkg/tlpsrc/texlogos.tlpsrc + tlpkg/tlpsrc/texlogsieve.tlpsrc tlpkg/tlpsrc/texmate.tlpsrc tlpkg/tlpsrc/texments.tlpsrc tlpkg/tlpsrc/texnegar.tlpsrc @@ -3855,7 +4126,9 @@ runfiles size=13860 tlpkg/tlpsrc/texproposal.tlpsrc tlpkg/tlpsrc/texshade.tlpsrc tlpkg/tlpsrc/texsis.tlpsrc + tlpkg/tlpsrc/texsurgery.tlpsrc tlpkg/tlpsrc/textcase.tlpsrc + tlpkg/tlpsrc/textcsc.tlpsrc tlpkg/tlpsrc/textfit.tlpsrc tlpkg/tlpsrc/textglos.tlpsrc tlpkg/tlpsrc/textgreek.tlpsrc @@ -3876,6 +4149,7 @@ runfiles size=13860 tlpkg/tlpsrc/theanooldstyle.tlpsrc tlpkg/tlpsrc/theatre.tlpsrc tlpkg/tlpsrc/theoremref.tlpsrc + tlpkg/tlpsrc/thermodynamics.tlpsrc tlpkg/tlpsrc/thesis-ekf.tlpsrc tlpkg/tlpsrc/thesis-gwu.tlpsrc tlpkg/tlpsrc/thesis-qom.tlpsrc @@ -3888,6 +4162,7 @@ runfiles size=13860 tlpkg/tlpsrc/threeparttable.tlpsrc tlpkg/tlpsrc/threeparttablex.tlpsrc tlpkg/tlpsrc/thuaslogos.tlpsrc + tlpkg/tlpsrc/thubeamer.tlpsrc tlpkg/tlpsrc/thucoursework.tlpsrc tlpkg/tlpsrc/thumb.tlpsrc tlpkg/tlpsrc/thumbpdf.tlpsrc @@ -3896,14 +4171,17 @@ runfiles size=13860 tlpkg/tlpsrc/thuthesis.tlpsrc tlpkg/tlpsrc/ticket.tlpsrc tlpkg/tlpsrc/ticollege.tlpsrc + tlpkg/tlpsrc/tidyres.tlpsrc tlpkg/tlpsrc/tie.tlpsrc tlpkg/tlpsrc/tikz-3dplot.tlpsrc tlpkg/tlpsrc/tikz-among-us.tlpsrc + tlpkg/tlpsrc/tikz-bagua.tlpsrc tlpkg/tlpsrc/tikz-bayesnet.tlpsrc tlpkg/tlpsrc/tikz-bbox.tlpsrc tlpkg/tlpsrc/tikz-cd.tlpsrc tlpkg/tlpsrc/tikz-dependency.tlpsrc tlpkg/tlpsrc/tikz-dimline.tlpsrc + tlpkg/tlpsrc/tikz-ext.tlpsrc tlpkg/tlpsrc/tikz-feynhand.tlpsrc tlpkg/tlpsrc/tikz-feynman.tlpsrc tlpkg/tlpsrc/tikz-imagelabels.tlpsrc @@ -3913,6 +4191,7 @@ runfiles size=13860 tlpkg/tlpsrc/tikz-ladder.tlpsrc tlpkg/tlpsrc/tikz-lake-fig.tlpsrc tlpkg/tlpsrc/tikz-layers.tlpsrc + tlpkg/tlpsrc/tikz-mirror-lens.tlpsrc tlpkg/tlpsrc/tikz-nef.tlpsrc tlpkg/tlpsrc/tikz-network.tlpsrc tlpkg/tlpsrc/tikz-opm.tlpsrc @@ -3923,11 +4202,14 @@ runfiles size=13860 tlpkg/tlpsrc/tikz-qtree.tlpsrc tlpkg/tlpsrc/tikz-relay.tlpsrc tlpkg/tlpsrc/tikz-sfc.tlpsrc + tlpkg/tlpsrc/tikz-swigs.tlpsrc tlpkg/tlpsrc/tikz-timing.tlpsrc tlpkg/tlpsrc/tikz-trackschematic.tlpsrc tlpkg/tlpsrc/tikz-truchet.tlpsrc + tlpkg/tlpsrc/tikzbricks.tlpsrc tlpkg/tlpsrc/tikzcodeblocks.tlpsrc tlpkg/tlpsrc/tikzducks.tlpsrc + tlpkg/tlpsrc/tikzfill.tlpsrc tlpkg/tlpsrc/tikzinclude.tlpsrc tlpkg/tlpsrc/tikzlings.tlpsrc tlpkg/tlpsrc/tikzmark.tlpsrc @@ -3937,10 +4219,12 @@ runfiles size=13860 tlpkg/tlpsrc/tikzpagenodes.tlpsrc tlpkg/tlpsrc/tikzpeople.tlpsrc tlpkg/tlpsrc/tikzpfeile.tlpsrc + tlpkg/tlpsrc/tikzpingus.tlpsrc tlpkg/tlpsrc/tikzposter.tlpsrc tlpkg/tlpsrc/tikzscale.tlpsrc tlpkg/tlpsrc/tikzsymbols.tlpsrc tlpkg/tlpsrc/tikztosvg.tlpsrc + tlpkg/tlpsrc/tikzviolinplots.tlpsrc tlpkg/tlpsrc/tile-graphic.tlpsrc tlpkg/tlpsrc/timbreicmc.tlpsrc tlpkg/tlpsrc/times.tlpsrc @@ -3951,6 +4235,7 @@ runfiles size=13860 tlpkg/tlpsrc/tipa.tlpsrc tlpkg/tlpsrc/tipauni.tlpsrc tlpkg/tlpsrc/tipfr.tlpsrc + tlpkg/tlpsrc/tiscreen.tlpsrc tlpkg/tlpsrc/titlecaps.tlpsrc tlpkg/tlpsrc/titlefoot.tlpsrc tlpkg/tlpsrc/titlepages.tlpsrc @@ -3966,14 +4251,17 @@ runfiles size=13860 tlpkg/tlpsrc/tkz-graph.tlpsrc tlpkg/tlpsrc/tkz-orm.tlpsrc tlpkg/tlpsrc/tkz-tab.tlpsrc + tlpkg/tlpsrc/tkzexample.tlpsrc tlpkg/tlpsrc/tlc-article.tlpsrc tlpkg/tlpsrc/tlc2.tlpsrc + tlpkg/tlpsrc/tlc3-examples.tlpsrc tlpkg/tlpsrc/tlcockpit.tlpsrc - tlpkg/tlpsrc/tlgs.win32.tlpsrc + tlpkg/tlpsrc/tlgs.windows.tlpsrc tlpkg/tlpsrc/tlmgr-intro-zh-cn.tlpsrc tlpkg/tlpsrc/tlmgrbasics.tlpsrc - tlpkg/tlpsrc/tlperl.win32.tlpsrc + tlpkg/tlpsrc/tlperl.windows.tlpsrc tlpkg/tlpsrc/tlshell.tlpsrc + tlpkg/tlpsrc/to-be-determined.tlpsrc tlpkg/tlpsrc/tocbibind.tlpsrc tlpkg/tlpsrc/tocdata.tlpsrc tlpkg/tlpsrc/tocloft.tlpsrc @@ -3982,6 +4270,7 @@ runfiles size=13860 tlpkg/tlpsrc/todonotes.tlpsrc tlpkg/tlpsrc/tokcycle.tlpsrc tlpkg/tlpsrc/tokenizer.tlpsrc + tlpkg/tlpsrc/tonevalue.tlpsrc tlpkg/tlpsrc/toolbox.tlpsrc tlpkg/tlpsrc/tools.tlpsrc tlpkg/tlpsrc/topfloat.tlpsrc @@ -3997,6 +4286,7 @@ runfiles size=13860 tlpkg/tlpsrc/tracklang.tlpsrc tlpkg/tlpsrc/trajan.tlpsrc tlpkg/tlpsrc/tram.tlpsrc + tlpkg/tlpsrc/tramlines.tlpsrc tlpkg/tlpsrc/translation-array-fr.tlpsrc tlpkg/tlpsrc/translation-arsclassica-de.tlpsrc tlpkg/tlpsrc/translation-biblatex-de.tlpsrc @@ -4011,6 +4301,7 @@ runfiles size=13860 tlpkg/tlpsrc/translation-tabbing-fr.tlpsrc tlpkg/tlpsrc/translations.tlpsrc tlpkg/tlpsrc/translator.tlpsrc + tlpkg/tlpsrc/transparent-io.tlpsrc tlpkg/tlpsrc/transparent.tlpsrc tlpkg/tlpsrc/tree-dvips.tlpsrc tlpkg/tlpsrc/treetex.tlpsrc @@ -4020,7 +4311,9 @@ runfiles size=13860 tlpkg/tlpsrc/trivfloat.tlpsrc tlpkg/tlpsrc/trsym.tlpsrc tlpkg/tlpsrc/truncate.tlpsrc + tlpkg/tlpsrc/truthtable.tlpsrc tlpkg/tlpsrc/tsemlines.tlpsrc + tlpkg/tlpsrc/tsvtemplate.tlpsrc tlpkg/tlpsrc/ttfutils.tlpsrc tlpkg/tlpsrc/tucv.tlpsrc tlpkg/tlpsrc/tuda-ci.tlpsrc @@ -4035,6 +4328,7 @@ runfiles size=13860 tlpkg/tlpsrc/turnstile.tlpsrc tlpkg/tlpsrc/turnthepage.tlpsrc tlpkg/tlpsrc/twemoji-colr.tlpsrc + tlpkg/tlpsrc/twemojis.tlpsrc tlpkg/tlpsrc/twoinone.tlpsrc tlpkg/tlpsrc/twoup.tlpsrc tlpkg/tlpsrc/txfonts.tlpsrc @@ -4063,14 +4357,17 @@ runfiles size=13860 tlpkg/tlpsrc/ucs.tlpsrc tlpkg/tlpsrc/ucsmonograph.tlpsrc tlpkg/tlpsrc/ucthesis.tlpsrc + tlpkg/tlpsrc/udes-genie-these.tlpsrc tlpkg/tlpsrc/udesoftec.tlpsrc tlpkg/tlpsrc/uebungsblatt.tlpsrc tlpkg/tlpsrc/uestcthesis.tlpsrc + tlpkg/tlpsrc/ufrgscca.tlpsrc tlpkg/tlpsrc/uhc.tlpsrc tlpkg/tlpsrc/uhhassignment.tlpsrc tlpkg/tlpsrc/uhrzeit.tlpsrc tlpkg/tlpsrc/uiucredborder.tlpsrc tlpkg/tlpsrc/uiucthesis.tlpsrc + tlpkg/tlpsrc/ukbill.tlpsrc tlpkg/tlpsrc/ukrhyph.tlpsrc tlpkg/tlpsrc/ulem.tlpsrc tlpkg/tlpsrc/ulqda.tlpsrc @@ -4085,6 +4382,7 @@ runfiles size=13860 tlpkg/tlpsrc/unam-thesis.tlpsrc tlpkg/tlpsrc/unamth-template.tlpsrc tlpkg/tlpsrc/unamthesis.tlpsrc + tlpkg/tlpsrc/unbtex.tlpsrc tlpkg/tlpsrc/undergradmath.tlpsrc tlpkg/tlpsrc/underlin.tlpsrc tlpkg/tlpsrc/underoverlap.tlpsrc @@ -4092,18 +4390,22 @@ runfiles size=13860 tlpkg/tlpsrc/undolabl.tlpsrc tlpkg/tlpsrc/unfonts-core.tlpsrc tlpkg/tlpsrc/unfonts-extra.tlpsrc + tlpkg/tlpsrc/uni-titlepage.tlpsrc tlpkg/tlpsrc/uni-wtal-ger.tlpsrc tlpkg/tlpsrc/uni-wtal-lin.tlpsrc tlpkg/tlpsrc/unicode-alphabets.tlpsrc tlpkg/tlpsrc/unicode-bidi.tlpsrc tlpkg/tlpsrc/unicode-data.tlpsrc tlpkg/tlpsrc/unicode-math.tlpsrc + tlpkg/tlpsrc/unicodefonttable.tlpsrc tlpkg/tlpsrc/unifith.tlpsrc + tlpkg/tlpsrc/unigrazpub.tlpsrc + tlpkg/tlpsrc/unimath-plain-xetex.tlpsrc tlpkg/tlpsrc/uninormalize.tlpsrc tlpkg/tlpsrc/uniquecounter.tlpsrc + tlpkg/tlpsrc/unisc.tlpsrc tlpkg/tlpsrc/unisugar.tlpsrc tlpkg/tlpsrc/unitconv.tlpsrc - tlpkg/tlpsrc/unitipa.tlpsrc tlpkg/tlpsrc/unitn-bimrep.tlpsrc tlpkg/tlpsrc/units.tlpsrc tlpkg/tlpsrc/unitsdef.tlpsrc @@ -4113,11 +4415,13 @@ runfiles size=13860 tlpkg/tlpsrc/unizgklasa.tlpsrc tlpkg/tlpsrc/unravel.tlpsrc tlpkg/tlpsrc/unswcover.tlpsrc + tlpkg/tlpsrc/uol-physics-report.tlpsrc tlpkg/tlpsrc/uothesis.tlpsrc tlpkg/tlpsrc/uowthesis.tlpsrc tlpkg/tlpsrc/uowthesistitlepage.tlpsrc tlpkg/tlpsrc/upca.tlpsrc tlpkg/tlpsrc/uplatex.tlpsrc + tlpkg/tlpsrc/upmendex.tlpsrc tlpkg/tlpsrc/upmethodology.tlpsrc tlpkg/tlpsrc/uppunctlm.tlpsrc tlpkg/tlpsrc/upquote.tlpsrc @@ -4140,6 +4444,11 @@ runfiles size=13860 tlpkg/tlpsrc/utf8mex.tlpsrc tlpkg/tlpsrc/utfsym.tlpsrc tlpkg/tlpsrc/utopia.tlpsrc + tlpkg/tlpsrc/uvaletter.tlpsrc + tlpkg/tlpsrc/uwa-colours.tlpsrc + tlpkg/tlpsrc/uwa-letterhead.tlpsrc + tlpkg/tlpsrc/uwa-pcf.tlpsrc + tlpkg/tlpsrc/uwa-pif.tlpsrc tlpkg/tlpsrc/uwmslide.tlpsrc tlpkg/tlpsrc/uwthesis.tlpsrc tlpkg/tlpsrc/vak.tlpsrc @@ -4171,6 +4480,7 @@ runfiles size=13860 tlpkg/tlpsrc/vertbars.tlpsrc tlpkg/tlpsrc/vgrid.tlpsrc tlpkg/tlpsrc/vhistory.tlpsrc + tlpkg/tlpsrc/visualfaq-fr.tlpsrc tlpkg/tlpsrc/visualfaq.tlpsrc tlpkg/tlpsrc/visualpstricks.tlpsrc tlpkg/tlpsrc/visualtikz.tlpsrc @@ -4187,6 +4497,7 @@ runfiles size=13860 tlpkg/tlpsrc/wadalab.tlpsrc tlpkg/tlpsrc/wallcalendar.tlpsrc tlpkg/tlpsrc/wallpaper.tlpsrc + tlpkg/tlpsrc/wargame.tlpsrc tlpkg/tlpsrc/warning.tlpsrc tlpkg/tlpsrc/warpcol.tlpsrc tlpkg/tlpsrc/was.tlpsrc @@ -4196,12 +4507,13 @@ runfiles size=13860 tlpkg/tlpsrc/web.tlpsrc tlpkg/tlpsrc/webguide.tlpsrc tlpkg/tlpsrc/webquiz.tlpsrc + tlpkg/tlpsrc/wheelchart.tlpsrc tlpkg/tlpsrc/widetable.tlpsrc tlpkg/tlpsrc/widows-and-orphans.tlpsrc tlpkg/tlpsrc/williams.tlpsrc tlpkg/tlpsrc/willowtreebook.tlpsrc tlpkg/tlpsrc/windycity.tlpsrc - tlpkg/tlpsrc/wintools.win32.tlpsrc + tlpkg/tlpsrc/wintools.windows.tlpsrc tlpkg/tlpsrc/withargs.tlpsrc tlpkg/tlpsrc/witharrows.tlpsrc tlpkg/tlpsrc/wnri-latex.tlpsrc @@ -4211,12 +4523,16 @@ runfiles size=13860 tlpkg/tlpsrc/worksheet.tlpsrc tlpkg/tlpsrc/worldflags.tlpsrc tlpkg/tlpsrc/wrapfig.tlpsrc + tlpkg/tlpsrc/wrapfig2.tlpsrc + tlpkg/tlpsrc/wrapstuff.tlpsrc + tlpkg/tlpsrc/writeongrid.tlpsrc tlpkg/tlpsrc/wsemclassic.tlpsrc tlpkg/tlpsrc/wsuipa.tlpsrc tlpkg/tlpsrc/wtref.tlpsrc tlpkg/tlpsrc/xargs.tlpsrc tlpkg/tlpsrc/xassoccnt.tlpsrc tlpkg/tlpsrc/xbmks.tlpsrc + tlpkg/tlpsrc/xcharter-math.tlpsrc tlpkg/tlpsrc/xcharter.tlpsrc tlpkg/tlpsrc/xcite.tlpsrc tlpkg/tlpsrc/xcjk2uni.tlpsrc @@ -4229,6 +4545,7 @@ runfiles size=13860 tlpkg/tlpsrc/xcpdftips.tlpsrc tlpkg/tlpsrc/xdoc.tlpsrc tlpkg/tlpsrc/xduthesis.tlpsrc + tlpkg/tlpsrc/xduts.tlpsrc tlpkg/tlpsrc/xdvi.tlpsrc tlpkg/tlpsrc/xebaposter.tlpsrc tlpkg/tlpsrc/xechangebar.tlpsrc @@ -4265,6 +4582,7 @@ runfiles size=13860 tlpkg/tlpsrc/xindy.tlpsrc tlpkg/tlpsrc/xint.tlpsrc tlpkg/tlpsrc/xintsession.tlpsrc + tlpkg/tlpsrc/xistercian.tlpsrc tlpkg/tlpsrc/xits.tlpsrc tlpkg/tlpsrc/xkcdcolors.tlpsrc tlpkg/tlpsrc/xkeyval.tlpsrc @@ -4304,12 +4622,16 @@ runfiles size=13860 tlpkg/tlpsrc/yafoot.tlpsrc tlpkg/tlpsrc/yagusylo.tlpsrc tlpkg/tlpsrc/yaletter.tlpsrc + tlpkg/tlpsrc/yamlvars.tlpsrc tlpkg/tlpsrc/yannisgr.tlpsrc tlpkg/tlpsrc/yathesis.tlpsrc tlpkg/tlpsrc/yax.tlpsrc tlpkg/tlpsrc/yazd-thesis.tlpsrc + tlpkg/tlpsrc/yb-book.tlpsrc tlpkg/tlpsrc/ycbook.tlpsrc tlpkg/tlpsrc/ydoc.tlpsrc + tlpkg/tlpsrc/yet-another-guide-latex2e.tlpsrc + tlpkg/tlpsrc/yfonts-otf.tlpsrc tlpkg/tlpsrc/yfonts-t1.tlpsrc tlpkg/tlpsrc/yfonts.tlpsrc tlpkg/tlpsrc/yhmath.tlpsrc @@ -4324,6 +4646,7 @@ runfiles size=13860 tlpkg/tlpsrc/zbmath-review-template.tlpsrc tlpkg/tlpsrc/zebra-goodies.tlpsrc tlpkg/tlpsrc/zed-csp.tlpsrc + tlpkg/tlpsrc/zennote.tlpsrc tlpkg/tlpsrc/zhlineskip.tlpsrc tlpkg/tlpsrc/zhlipsum.tlpsrc tlpkg/tlpsrc/zhmetrics-uptex.tlpsrc @@ -4331,11 +4654,16 @@ runfiles size=13860 tlpkg/tlpsrc/zhnumber.tlpsrc tlpkg/tlpsrc/zhspacing.tlpsrc tlpkg/tlpsrc/ziffer.tlpsrc + tlpkg/tlpsrc/zitie.tlpsrc tlpkg/tlpsrc/zlmtt.tlpsrc tlpkg/tlpsrc/zootaxa-bst.tlpsrc + tlpkg/tlpsrc/zref-check.tlpsrc + tlpkg/tlpsrc/zref-clever.tlpsrc + tlpkg/tlpsrc/zref-vario.tlpsrc tlpkg/tlpsrc/zref.tlpsrc tlpkg/tlpsrc/zwgetfdate.tlpsrc tlpkg/tlpsrc/zwpagelayout.tlpsrc + tlpkg/tlpsrc/zx-calculus.tlpsrc tlpkg/tlpsrc/zxjafbfont.tlpsrc tlpkg/tlpsrc/zxjafont.tlpsrc tlpkg/tlpsrc/zxjatype.tlpsrc @@ -4379,11 +4707,11 @@ depend opt_sys_bin:/usr/local/bin depend opt_sys_info:/usr/local/share/info depend opt_sys_man:/usr/local/share/man depend opt_w32_multi_user:1 -depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd armhf-linux i386-cygwin i386-freebsd i386-linux i386-netbsd i386-solaris universal-darwin win32 x86_64-cygwin x86_64-darwinlegacy x86_64-linux x86_64-linuxmusl x86_64-solaris +depend setting_available_architectures:aarch64-linux amd64-freebsd amd64-netbsd armhf-linux i386-freebsd i386-linux i386-netbsd i386-solaris universal-darwin windows x86_64-cygwin x86_64-darwinlegacy x86_64-linux x86_64-linuxmusl x86_64-solaris name 00texlive.installer category TLCore -revision 59083 +revision 66584 shortdesc TeX Live standalone installer package longdesc This package defines the files to go into the installer longdesc archives (install-tl-unx.tar.gz, install-tl.zip) built by the @@ -4393,7 +4721,7 @@ longdesc allowed, but in this case, 00texlive.installer is never used longdesc *except* to build the installer archives, so it's ok. For longdesc information on the 00texlive prefix see longdesc 00texlive.installation(.tlpsrc) -runfiles size=782 +runfiles size=798 install-tl release-texlive.txt tlpkg/installer/COPYING.MinGW-runtime.txt @@ -4408,6 +4736,7 @@ runfiles size=782 tlpkg/installer/texlion.gif tlpkg/installer/tl-cmd.bat tlpkg/installer/tl-tray-menu.ini + tlpkg/installer/wtestopenfiles.exe tlpkg/tltcl/tlmgr.gif tlpkg/tltcl/tltcl.tcl binfiles arch=aarch64-linux size=47 @@ -4415,37 +4744,36 @@ binfiles arch=aarch64-linux size=47 binfiles arch=amd64-freebsd size=206 tlpkg/installer/wget/wget.amd64-freebsd tlpkg/installer/xz/xz.amd64-freebsd -binfiles arch=amd64-netbsd size=552 +binfiles arch=amd64-netbsd size=165 tlpkg/installer/wget/wget.amd64-netbsd tlpkg/installer/xz/xz.amd64-netbsd binfiles arch=armhf-linux size=42 tlpkg/installer/xz/xz.armhf-linux -binfiles arch=i386-cygwin size=50 - tlpkg/installer/xz/xz.i386-cygwin.exe binfiles arch=i386-freebsd size=179 tlpkg/installer/wget/wget.i386-freebsd tlpkg/installer/xz/xz.i386-freebsd binfiles arch=i386-linux size=51 tlpkg/installer/xz/xz.i386-linux -binfiles arch=i386-netbsd size=457 +binfiles arch=i386-netbsd size=172 tlpkg/installer/wget/wget.i386-netbsd tlpkg/installer/xz/xz.i386-netbsd binfiles arch=i386-solaris size=162 tlpkg/installer/wget/wget.i386-solaris tlpkg/installer/xz/xz.i386-solaris -binfiles arch=universal-darwin size=107 +binfiles arch=universal-darwin size=111 tlpkg/installer/xz/xz.universal-darwin -binfiles arch=win32 size=15632 +binfiles arch=windows size=17010 install-tl-windows.bat tlpkg/installer/tar.exe tlpkg/installer/wget/wget.exe tlpkg/installer/xz/xz.exe tlpkg/tlperl/README.TEXLIVE - tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libgcc_s_seh-1.dll tlpkg/tlperl/bin/libstdc++-6.dll tlpkg/tlperl/bin/libwinpthread-1.dll tlpkg/tlperl/bin/perl.exe - tlpkg/tlperl/bin/perl532.dll + tlpkg/tlperl/bin/perl5.34.0.exe + tlpkg/tlperl/bin/perl534.dll tlpkg/tlperl/bin/perlglob.exe tlpkg/tlperl/bin/wperl.exe tlpkg/tlperl/lib/.packlist @@ -4500,7 +4828,7 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/CORE/iperlsys.h tlpkg/tlperl/lib/CORE/keywords.h tlpkg/tlperl/lib/CORE/l1_char_class_tab.h - tlpkg/tlperl/lib/CORE/libperl532.a + tlpkg/tlperl/lib/CORE/libperl534.a tlpkg/tlperl/lib/CORE/malloc_ctl.h tlpkg/tlperl/lib/CORE/metaconfig.h tlpkg/tlperl/lib/CORE/mg.h @@ -4521,6 +4849,7 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/CORE/perl.h tlpkg/tlperl/lib/CORE/perl_inc_macro.h tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perl_siphash.h tlpkg/tlperl/lib/CORE/perlapi.h tlpkg/tlperl/lib/CORE/perlhost.h tlpkg/tlperl/lib/CORE/perlio.h @@ -4538,7 +4867,6 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/CORE/regnodes.h tlpkg/tlperl/lib/CORE/sbox32_hash.h tlpkg/tlperl/lib/CORE/scope.h - tlpkg/tlperl/lib/CORE/stadtx_hash.h tlpkg/tlperl/lib/CORE/sv.h tlpkg/tlperl/lib/CORE/sys/errno2.h tlpkg/tlperl/lib/CORE/sys/socket.h @@ -4723,6 +5051,7 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS390.pm tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm @@ -4741,6 +5070,7 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/ExtUtils/Miniperl.pm tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/PL2Bat.pm tlpkg/tlperl/lib/ExtUtils/Packlist.pm tlpkg/tlperl/lib/ExtUtils/ParseXS.pm tlpkg/tlperl/lib/ExtUtils/ParseXS.pod @@ -5045,6 +5375,11 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/lib/Test2/API/Breakage.pm tlpkg/tlperl/lib/Test2/API/Context.pm tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Event.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Facet.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Hub.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Squasher.pm tlpkg/tlperl/lib/Test2/API/Stack.pm tlpkg/tlperl/lib/Test2/Event.pm tlpkg/tlperl/lib/Test2/Event/Bail.pm @@ -5994,7 +6329,6 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm tlpkg/tlperl/site/lib/Net/HTTP/NB.pm tlpkg/tlperl/site/lib/Net/HTTPS.pm - tlpkg/tlperl/site/lib/Socket.pm tlpkg/tlperl/site/lib/Test/Fatal.pm tlpkg/tlperl/site/lib/Test/Needs.pm tlpkg/tlperl/site/lib/Test/RequiresInternet.pm @@ -6040,6 +6374,7 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/site/lib/URI/mms.pm tlpkg/tlperl/site/lib/URI/news.pm tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/nntps.pm tlpkg/tlperl/site/lib/URI/pop.pm tlpkg/tlperl/site/lib/URI/rlogin.pm tlpkg/tlperl/site/lib/URI/rsync.pm @@ -6093,8 +6428,6 @@ binfiles arch=win32 size=15632 tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist - tlpkg/tlperl/site/lib/auto/Socket/.packlist - tlpkg/tlperl/site/lib/auto/Socket/Socket.dll tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist @@ -6121,29 +6454,23 @@ binfiles arch=win32 size=15632 tlpkg/tltcl/bin/wish.exe tlpkg/tltcl/bin/wish86.exe tlpkg/tltcl/bin/zlib1.dll - tlpkg/tltcl/lib/dde1.4/libtcldde14.dll.a tlpkg/tltcl/lib/dde1.4/pkgIndex.tcl tlpkg/tltcl/lib/dde1.4/tcldde14.dll - tlpkg/tltcl/lib/itcl4.2.1/itcl.tcl - tlpkg/tltcl/lib/itcl4.2.1/itcl421.dll - tlpkg/tltcl/lib/itcl4.2.1/itclConfig.sh - tlpkg/tltcl/lib/itcl4.2.1/itclHullCmds.tcl - tlpkg/tltcl/lib/itcl4.2.1/itclWidget.tcl - tlpkg/tltcl/lib/itcl4.2.1/libitclstub421.a - tlpkg/tltcl/lib/itcl4.2.1/pkgIndex.tcl - tlpkg/tltcl/lib/libtcl86.dll.a - tlpkg/tltcl/lib/libtclstub86.a - tlpkg/tltcl/lib/libtk86.dll.a - tlpkg/tltcl/lib/libtkstub86.a - tlpkg/tltcl/lib/reg1.3/libtclreg13.dll.a + tlpkg/tltcl/lib/itcl4.2.2/itcl.tcl + tlpkg/tltcl/lib/itcl4.2.2/itcl422.dll + tlpkg/tltcl/lib/itcl4.2.2/itclConfig.sh + tlpkg/tltcl/lib/itcl4.2.2/itclHullCmds.tcl + tlpkg/tltcl/lib/itcl4.2.2/itclWidget.tcl + tlpkg/tltcl/lib/itcl4.2.2/pkgIndex.tcl tlpkg/tltcl/lib/reg1.3/pkgIndex.tcl tlpkg/tltcl/lib/reg1.3/tclreg13.dll - tlpkg/tltcl/lib/sqlite3.34.0/pkgIndex.tcl - tlpkg/tltcl/lib/sqlite3.34.0/sqlite3340.dll + tlpkg/tltcl/lib/sqlite3.36.0/pkgIndex.tcl + tlpkg/tltcl/lib/sqlite3.36.0/sqlite3360.dll tlpkg/tltcl/lib/tcl8.6/auto.tcl tlpkg/tltcl/lib/tcl8.6/clock.tcl tlpkg/tltcl/lib/tcl8.6/encoding/ascii.enc tlpkg/tltcl/lib/tcl8.6/encoding/big5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cns11643.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1250.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1251.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1252.enc @@ -6187,6 +6514,7 @@ binfiles arch=win32 size=15632 tlpkg/tltcl/lib/tcl8.6/encoding/iso2022.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-1.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-10.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-11.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-13.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-14.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-15.enc @@ -6902,6 +7230,7 @@ binfiles arch=win32 size=15632 tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guam tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Honolulu tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Johnston + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kanton tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kiritimati tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kosrae tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kwajalein @@ -6967,31 +7296,30 @@ binfiles arch=win32 size=15632 tlpkg/tltcl/lib/tcl8.6/tzdata/WET tlpkg/tltcl/lib/tcl8.6/tzdata/Zulu tlpkg/tltcl/lib/tcl8.6/word.tcl - tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.15.tm + tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.18.tm tlpkg/tltcl/lib/tcl8/8.4/platform/shell-1.1.4.tm tlpkg/tltcl/lib/tcl8/8.5/msgcat-1.6.1.tm tlpkg/tltcl/lib/tcl8/8.5/tcltest-2.5.3.tm tlpkg/tltcl/lib/tcl8/8.6/http-2.9.5.tm - tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.2.tm + tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.3.tm tlpkg/tltcl/lib/tclConfig.sh tlpkg/tltcl/lib/tclooConfig.sh - tlpkg/tltcl/lib/tdbc1.1.2/libtdbcstub112.a - tlpkg/tltcl/lib/tdbc1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbc1.1.2/tdbc.tcl - tlpkg/tltcl/lib/tdbc1.1.2/tdbc112.dll - tlpkg/tltcl/lib/tdbc1.1.2/tdbcConfig.sh - tlpkg/tltcl/lib/tdbcmysql1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql.tcl - tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql112.dll - tlpkg/tltcl/lib/tdbcodbc1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc.tcl - tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc112.dll - tlpkg/tltcl/lib/tdbcpostgres1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres.tcl - tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres112.dll - tlpkg/tltcl/lib/thread2.8.6/pkgIndex.tcl - tlpkg/tltcl/lib/thread2.8.6/thread286.dll - tlpkg/tltcl/lib/thread2.8.6/ttrace.tcl + tlpkg/tltcl/lib/tdbc1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbc1.1.3/tdbc.tcl + tlpkg/tltcl/lib/tdbc1.1.3/tdbc113.dll + tlpkg/tltcl/lib/tdbc1.1.3/tdbcConfig.sh + tlpkg/tltcl/lib/tdbcmysql1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.3/tdbcmysql.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.3/tdbcmysql113.dll + tlpkg/tltcl/lib/tdbcodbc1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.3/tdbcodbc.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.3/tdbcodbc113.dll + tlpkg/tltcl/lib/tdbcpostgres1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.3/tdbcpostgres.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.3/tdbcpostgres113.dll + tlpkg/tltcl/lib/thread2.8.7/pkgIndex.tcl + tlpkg/tltcl/lib/thread2.8.7/thread287.dll + tlpkg/tltcl/lib/thread2.8.7/ttrace.tcl tlpkg/tltcl/lib/tk8.6/bgerror.tcl tlpkg/tltcl/lib/tk8.6/button.tcl tlpkg/tltcl/lib/tk8.6/choosedir.tcl @@ -7237,383 +7565,6 @@ catalogue-license lppl catalogue-topics layout catalogue-version 1.3a -name Asana-Math -category Package -revision 50999 -shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX -relocated 1 -longdesc The Asana-Math font is an OpenType font that includes almost -longdesc all mathematical Unicode symbols and it can be used to typeset -longdesc mathematical text with any software that can understand the -longdesc MATH OpenType table (e.g., XeTeX 0.997 and Microsoft Word -longdesc 2007). The font is beta software. Typesetting support for use -longdesc with LaTeX is provided by the fontspec and unicode-math -longdesc packages. -containersize 673828 -containerchecksum e1ee08540790685aab85c8acb407526f5936478c37d86b266728fdf39bb906bc7f6566bf5eae90b631eb59f59d65d414943a6faab922681199af76102078ed4f -doccontainersize 3748 -doccontainerchecksum 69a6615dda5f7e47fdff1b0b1afc4211f749a929b81f19a554246033e6f5f4a482c3c03a6903b64d83c4daeccb70983dacb35467047a467314637e65a19c917c -docfiles size=3 - RELOC/doc/fonts/Asana-Math/FontLog.txt - RELOC/doc/fonts/Asana-Math/README details="Readme" -runfiles size=330 - RELOC/fonts/opentype/public/Asana-Math/Asana-Math.otf - RELOC/fonts/truetype/public/Asana-Math/ASANA.TTC -catalogue-also stix xits -catalogue-ctan /fonts/Asana-Math -catalogue-license ofl -catalogue-topics font font-maths font-otf font-ttf -catalogue-version 000.958 - -name ESIEEcv -category Package -revision 15878 -shortdesc Curriculum vitae for French use -relocated 1 -longdesc The package allows the user to set up a curriculum vitae as a -longdesc French employer will expect. -containersize 1596 -containerchecksum 79fe8175d0adf25ebf30421eca323f9042bc98792290763b06ba53978bf4962dabab228b9aa6220f859f64356eabd2cc94e71351aac441e64afa3fca8f73f742 -doccontainersize 131168 -doccontainerchecksum 85d731182d5284da69254744a7d9e23326f5344a6585ae95410671cd5721961958480fab4b621d58fe01ff9bf0a602b3f94089dafaf5614fc8d57ad243e9b223 -docfiles size=42 - RELOC/doc/latex/ESIEEcv/ESIEEcv.pdf details="Package documentation" - RELOC/doc/latex/ESIEEcv/cvtest.pdf details="Test/sample document" - RELOC/doc/latex/ESIEEcv/cvtest.tex -srccontainersize 6876 -srccontainerchecksum a63bc1de05f659d72f9fc297436e7aad36db6124f22c2a29c65418a1233c37a0a995bba3267fca6fc83f04efa119315c25937aff733b64b7c78275313209d42c -srcfiles size=6 - RELOC/source/latex/ESIEEcv/ESIEEcv.dtx - RELOC/source/latex/ESIEEcv/ESIEEcv.ins -runfiles size=1 - RELOC/tex/latex/ESIEEcv/ESIEEcv.sty -catalogue-also curve currvita cv europecv vita -catalogue-ctan /macros/latex/contrib/ESIEEcv -catalogue-license lppl -catalogue-topics cv french - -name GS1 -category Package -revision 44822 -shortdesc Typeset EAN barcodes using TeX rules, only -relocated 1 -longdesc The (LaTeX 3) package typesets EAN-8 and EAN-13 barcodes, using -longdesc the facilities of the rule-D package. -containersize 3452 -containerchecksum c71acefcb0ff1cd97792c27435e7eb4f4e32f072a275e5eb7dd13d7b9928ca00318d0acdf605f35cc4a3d7099247c290155d6963ac1560f4b11f37a123fde0b6 -doccontainersize 1137680 -doccontainerchecksum 6e714b1087d228923f38dc3c8680e57de314eab79ab15f0aa247ad002a3aa6a9dac2a253c5688c904408c8d14dadbe307b3d3446b38db767a650989d5ed9e878 -docfiles size=310 - RELOC/doc/latex/GS1/GS1.pdf details="Package documentation" - RELOC/doc/latex/GS1/README details="Readme" - RELOC/doc/latex/GS1/examples/EANBarcode.pdf - RELOC/doc/latex/GS1/examples/EANBarcode.tex - RELOC/doc/latex/GS1/examples/EANControlDigit.pdf - RELOC/doc/latex/GS1/examples/EANControlDigit.tex - RELOC/doc/latex/GS1/examples/GSSetup.pdf - RELOC/doc/latex/GS1/examples/GSSetup.tex - RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/GS_cut_EAN_control_digit.tex - RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/GS_set_EAN_control_digit.tex - RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.pdf - RELOC/doc/latex/GS1/examples/GS_set_code_digit_seq.tex - RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.pdf - RELOC/doc/latex/GS1/examples/int_set_to_EAN_control_digit.tex - RELOC/doc/latex/GS1/rule-D.pdf -srccontainersize 9936 -srccontainerchecksum 3ad67dc4bd1033f828cbc11196a6ce9a25b2abc90348f727423effd6d97acd7fbf617b88740afb9050f481fb403401033c3dc60c3b9ac326467697f9b1d09a49 -srcfiles size=12 - RELOC/source/latex/GS1/GS1.dtx - RELOC/source/latex/GS1/GS1.ins - RELOC/source/latex/GS1/README - RELOC/source/latex/GS1/rule-D.dtx -runfiles size=4 - RELOC/tex/latex/GS1/GS1.sty - RELOC/tex/latex/GS1/rule-D.sty -catalogue-ctan /macros/latex/contrib/gs1 -catalogue-license lppl1.3c -catalogue-topics barcode -catalogue-version 22 - -name HA-prosper -category Package -revision 15878 -shortdesc Patches and improvements for prosper -relocated 1 -longdesc HA-prosper is a patch for prosper that adds new functionality -longdesc to prosper based presentations. Among the new features you will -longdesc find automatic generation of a table of contents on each slide, -longdesc support for notes and portrait slides. The available styles -longdesc demonstrate how to expand the functionality of prosper even -longdesc further. -containersize 28420 -containerchecksum 330df0a8d9b7b7ed5e4d2b74c626576ca8ac852cc84f9c79296141b14892819869cbd0e7f68050b4f3e5d107c43f9939ec9c9248c19ddd20da8d16ee2c25104e -doccontainersize 205052 -doccontainerchecksum 55822b9703d44481ae62dcb690adaba29cee5432b5b8b9f549884f55e943b1575064419712745166a6c0fd0fdfadac60473c6642816e1efac92c8e27c2cca76c -docfiles size=62 - RELOC/doc/latex/HA-prosper/HA-prosper.pdf details="Package documentation" - RELOC/doc/latex/HA-prosper/HAPBigtest.tex - RELOC/doc/latex/HA-prosper/HAPDualslide.tex - RELOC/doc/latex/HA-prosper/HAPIntroduction.tex - RELOC/doc/latex/HA-prosper/README details="Package README" -srccontainersize 38768 -srccontainerchecksum 646cea88f8d725e30257c15bcd198c0a2c9cd6477b956279a38443d5b22ac4c64e795a2ded53649b3d1504bbc66639946c331ba978e775a5fea33696c9bc6c2d -srcfiles size=41 - RELOC/source/latex/HA-prosper/HA-prosper.def - RELOC/source/latex/HA-prosper/HA-prosper.dtx -runfiles size=57 - RELOC/tex/latex/HA-prosper/HA-prosper.cfg - RELOC/tex/latex/HA-prosper/HA-prosper.sty - RELOC/tex/latex/HA-prosper/Styles/Aggie/AMLogo.eps - RELOC/tex/latex/HA-prosper/Styles/Aggie/HAPAggie.sty - RELOC/tex/latex/HA-prosper/Styles/Aggie/files.txt - RELOC/tex/latex/HA-prosper/Styles/Capsules/HAPcapsules.sty - RELOC/tex/latex/HA-prosper/Styles/Ciment/HAPciment.sty - RELOC/tex/latex/HA-prosper/Styles/Fyma/HAPFyma.sty - RELOC/tex/latex/HA-prosper/Styles/HA/HAPHA.sty - RELOC/tex/latex/HA-prosper/Styles/HA/flower.ps - RELOC/tex/latex/HA-prosper/Styles/Lakar/HAPLakar.sty - RELOC/tex/latex/HA-prosper/Styles/Simple/HAPsimple.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCS.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSTealBlue.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/HAPTCSgrad.sty - RELOC/tex/latex/HA-prosper/Styles/TCS/TCSgradlogo.ps - RELOC/tex/latex/HA-prosper/Styles/TCS/TCSlogo.ps - RELOC/tex/latex/HA-prosper/Styles/Tycja/HAPTycja.sty -catalogue-also powerdot -catalogue-ctan /macros/latex/contrib/ha-prosper -catalogue-license lppl -catalogue-topics presentation -catalogue-version 4.21 - -name IEEEconf -category Package -revision 15878 -shortdesc Macros for IEEE conference proceedings -relocated 1 -longdesc The IEEEconf class implements the formatting dictated by the -longdesc IEEE Computer Society Press for conference proceedings. -containersize 2544 -containerchecksum bd35025cabe78886f78333cb4ff186d0363480ea0c1f825456e9b6debc08c0a2dbfc7c703fc9caebaf2a20c47925141cb090d50146f054a76e1aecd861408517 -doccontainersize 177424 -doccontainerchecksum 0316a52d380555afb04358cadd56e6fabe23293bd3b6dd0f0d4e4df9db75e26708dfc7df4c280a8a9759e4c8518050805f197357b2efa43664a984f56dfabb05 -docfiles size=53 - RELOC/doc/latex/IEEEconf/IEEEconf.pdf details="Package documentation" - RELOC/doc/latex/IEEEconf/README details="Readme" -srccontainersize 12540 -srccontainerchecksum 18d0204a051b8c1d0ea034b7c3357228b0dd2f40d44ffc059ee270fc22f284a833eec72527874be0c1414e01ca91f403726c801f75e2f6cd2d0a2b097db5c53a -srcfiles size=11 - RELOC/source/latex/IEEEconf/IEEEconf.dtx - RELOC/source/latex/IEEEconf/IEEEconf.ins -runfiles size=2 - RELOC/tex/latex/IEEEconf/IEEEconf.cls -catalogue-ctan /macros/latex/contrib/IEEEconf -catalogue-license lppl -catalogue-topics confproc class -catalogue-version 1.4 - -name IEEEtran -category Package -revision 51065 -shortdesc Document class for IEEE Transactions journals and conferences -relocated 1 -longdesc The class and its BibTeX style enable authors to produce -longdesc officially-correct output for the Institute of Electrical and -longdesc Electronics Engineers (IEEE) transactions, journals and -longdesc conferences. -containersize 89364 -containerchecksum 7db183824e4a62a9f90046d62d33940573a25d2ebe72de0d57a68340e82e2b4b21fe74e74608cc73fe53b0d889019884aec8e1b11060849a38107280e0fce2f1 -doccontainersize 487244 -doccontainerchecksum 0fab8351fce31d36fc1cee91feea7d09e1acd78d80b0500d8c3fc7f3ce322055b952423e7f39d09f86e99b22aa24405ff5a0f00207f88a3cae8cf39593e9b326 -docfiles size=248 - RELOC/doc/latex/IEEEtran/IEEEtrantools_doc.txt - RELOC/doc/latex/IEEEtran/README details="Readme" - RELOC/doc/latex/IEEEtran/README.TEXLIVE - RELOC/doc/latex/IEEEtran/README.bibtex - RELOC/doc/latex/IEEEtran/README.extras - RELOC/doc/latex/IEEEtran/README.testflow - RELOC/doc/latex/IEEEtran/README.tools - RELOC/doc/latex/IEEEtran/bare_adv.tex - RELOC/doc/latex/IEEEtran/bare_conf.tex - RELOC/doc/latex/IEEEtran/bare_conf_compsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_compsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_comsoc.tex - RELOC/doc/latex/IEEEtran/bare_jrnl_transmag.tex - RELOC/doc/latex/IEEEtran/bibtex/changelog.txt - RELOC/doc/latex/IEEEtran/changelog.txt - RELOC/doc/latex/IEEEtran/testflow.tex - RELOC/doc/latex/IEEEtran/testflow_ctl_A4.pdf - RELOC/doc/latex/IEEEtran/testflow_ctl_LTR.pdf - RELOC/doc/latex/IEEEtran/testflow_doc.pdf - RELOC/doc/latex/IEEEtran/tools/changelog.txt - RELOC/doc/latex/IEEEtran/tux.eps - RELOC/doc/latex/IEEEtran/tux.pdf -runfiles size=205 - RELOC/bibtex/bib/IEEEtran/IEEEabrv.bib - RELOC/bibtex/bib/IEEEtran/IEEEexample.bib - RELOC/bibtex/bib/IEEEtran/IEEEfull.bib - RELOC/bibtex/bst/IEEEtran/IEEEtran.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranN.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranS.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranSA.bst - RELOC/bibtex/bst/IEEEtran/IEEEtranSN.bst - RELOC/tex/latex/IEEEtran/IEEEtran.cls - RELOC/tex/latex/IEEEtran/IEEEtrantools.sty -catalogue-contact-home http://www.michaelshell.org/tex/ieeetran/ -catalogue-ctan /macros/latex/contrib/IEEEtran -catalogue-license lppl1.3 -catalogue-topics journalpub class -catalogue-version 1.8b - -name MemoirChapStyles -category Package -revision 25918 -catalogue memoirchapterstyles -shortdesc Chapter styles in memoir class -relocated 1 -longdesc A showcase of chapter styles available to users of memoir: the -longdesc six provided in the class itself, plus many from elsewhere (by -longdesc the present author and others). The package's resources apply -longdesc only to memoir, but the package draws from a number of sources -longdesc relating to standard classes, including the fncychap package, -longdesc and Vincent Zoonekynd's tutorial on headings. -containersize 604 -containerchecksum 83455766eb557edebad28b73c5decb0a7a23f097bdfb795cad9cc0847af916ab012fd044a63dc9893932ce0f161e831a2a8e7c0138a2157e0f1f4f2211667c16 -doccontainersize 755400 -doccontainerchecksum 32b171486838a762b2cd49af46d3f2a152e9d592735a15a407784cde02e5be9281798302eb094f0c045f895a8f6e86464e9c214bd06f9061c313807ec36cbb1f -docfiles size=461 - RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.pdf details="The document itself" - RELOC/doc/latex/MemoirChapStyles/MemoirChapStyles.tex - RELOC/doc/latex/MemoirChapStyles/README details="Readme" -catalogue-ctan /info/latex-samples/MemoirChapStyles -catalogue-license lppl -catalogue-topics use-sample -catalogue-version 1.7e - -name SIstyle -category Package -revision 54080 -shortdesc Package to typeset SI units, numbers and angles -relocated 1 -longdesc This package typesets SI units, numbers and angles according to -longdesc the ISO requirements. Care is taken with font setup and -longdesc requirements, and language customisation is available. Note -longdesc that this package is (in principle) superseded by siunitx; -longdesc sistyle has maintenance-only support, now. -containersize 3544 -containerchecksum 69bc838535facdc8ba17db91ead53dbc233f7d53e453164611fcd7e194692212ff74f57979023fe14ed8c8df347caeb42d99fae0b14c3cc54c60c8411bdef80d -doccontainersize 323444 -doccontainerchecksum 6fb33be5371932e95e5e3002bb2696d0707d62425f1a539764d195ee119f37441bf288a502770667624746631bd75227a245bbcc2050c1c2d815ce4c8fa6ec85 -docfiles size=126 - RELOC/doc/latex/SIstyle/README details="Readme" - RELOC/doc/latex/SIstyle/SIstyle-2.3a.pdf details="Package documentation" - RELOC/doc/latex/SIstyle/fig1.eps - RELOC/doc/latex/SIstyle/fig1.mps - RELOC/doc/latex/SIstyle/fig2.eps - RELOC/doc/latex/SIstyle/fig2.mps - RELOC/doc/latex/SIstyle/graphs_scr.zip -srccontainersize 18204 -srccontainerchecksum f1e23a9d04b637afd72056e1792a0c795f1b02b96ddd0170e6f412a8159389f8cd79bfdbfd2860fb5b6ca6b1794ff5c0bc59fbaabcdffbd8d69d26b205e60df5 -srcfiles size=19 - RELOC/source/latex/SIstyle/sistyle.dtx - RELOC/source/latex/SIstyle/sistyle.ins -runfiles size=3 - RELOC/tex/latex/SIstyle/sistyle.sty -catalogue-ctan /macros/latex/contrib/sistyle -catalogue-license lppl -catalogue-topics typesetting scientific-docs -catalogue-version 2.3a - -name SIunits -category Package -revision 15878 -shortdesc International System of Units -relocated 1 -longdesc Typeset physical units following the rules of the International -longdesc System of Units (SI). The package requires amstext, for proper -longdesc representation of some values. Note that the package is now -longdesc superseded by siunitx; siunits has maintenance-only support, -longdesc now. -containersize 6064 -containerchecksum b804d61bcdcc9d6f4559a05d8bfa7d8f7a3c378a618e5cd068b29e2661968b7564c36ce2e3d97f7fc7af15c11e89ac61e88ff25318d8c08536181d1f546f260d -doccontainersize 250180 -doccontainerchecksum 09c35a6d2e2d90701ac099eaf06116d4bf5b93652c512969dfe2afae74c9c04d70dcda8a5053d707aed0724fba0a8d9c3487a51fc617fd1a757c596a99b974dc -docfiles size=82 - RELOC/doc/latex/SIunits/README details="Readme" - RELOC/doc/latex/SIunits/SIunits.pdf details="Package documentation" -srccontainersize 34544 -srccontainerchecksum 82081b1c503098847bc5f24c2749fb6abd1a739ccd21b01464119b7b6a92bfbb51666d0f5d14aa335e23a03b72b5eae8fefccf9c790819a4f8cf14b37ff297ad -srcfiles size=40 - RELOC/source/latex/SIunits/SIunits.drv - RELOC/source/latex/SIunits/SIunits.dtx - RELOC/source/latex/SIunits/SIunits.ins -runfiles size=8 - RELOC/tex/latex/SIunits/SIunits.cfg - RELOC/tex/latex/SIunits/SIunits.sty - RELOC/tex/latex/SIunits/binary.sty -catalogue-also sistyle -catalogue-ctan /macros/latex/contrib/SIunits -catalogue-license lppl1.3 -catalogue-topics typesetting scientific-docs -catalogue-version 1.36 - -name Tabbing -category Package -revision 17022 -shortdesc Tabbing with accented letters -relocated 1 -longdesc By default, some of the tabbing environment's commands clash -longdesc with default accent commands; LaTeX provides the odd commands -longdesc \a', etc., to deal with the clash. The package offers a variant -longdesc of the tabbing environment which does not create this -longdesc difficulty, so that users need not learn two sets of accent -longdesc commands. -containersize 1360 -containerchecksum 10d3c274c5838c48bd47f651bfc57aeded8246787e23091307dcabf2794fc9eec19bc3a3af9ae08b812688ebc4fffd295fb01c7be7d61fcd06ccb46ce4f6b739 -doccontainersize 216508 -doccontainerchecksum 1f4eb22039e3bae3897502fe541e595c802fffa94d2cdefed451cf24883e1f41d29e9ea0065d1d68ddee3e166aaa1ba7896dd84bf612e9c007ecc5c1e2d5f616 -docfiles size=58 - RELOC/doc/latex/Tabbing/00readme - RELOC/doc/latex/Tabbing/Tabbing.pdf details="Package documentation (English)" language="en" -srccontainersize 3728 -srccontainerchecksum a4c7b558e6e5ad9eeb8b4e3d81c20edb09d66cd8aaec2b501224fb7f93a40c3771f8e23d2fbfb910158464f98d8172bc691787ef1c2256066fb85e96068f368a -srcfiles size=3 - RELOC/source/latex/Tabbing/Tabbing.dtx - RELOC/source/latex/Tabbing/Tabbing.ins -runfiles size=1 - RELOC/tex/latex/Tabbing/Tabbing.sty -catalogue-ctan /macros/latex/contrib/Tabbing -catalogue-license lppl1 -catalogue-topics alignment macro-supp - -name Type1fonts -category Package -revision 19603 -catalogue fontinstallationguide -shortdesc Font installation guide -relocated 1 -longdesc This guide discusses the most common scenarios you are likely -longdesc to encounter when installing Type 1 PostScript fonts. While the -longdesc individual tools employed in the installation process are -longdesc documented well, the actual difficulty most users are facing -longdesc when trying to install new fonts is understanding how to put -longdesc all the pieces together. This is what this guide is about. -containersize 592 -containerchecksum 858836fc8a955b87f823c25b22fbb4b07f119186ab437e0e7ef7d387bb8295b8a65deb237c649d93afe7d72213745d4cfbe48a51372c69c12d088f5403f22dc3 -doccontainersize 527324 -doccontainerchecksum 5448b85539d29ace8365bd0e197693c0c4c53a145d5182c3f125e11cb3ca8194675ca9553ad53bf7e503b1636f17614ea2e338113f61474d9744dfa91800390e -docfiles size=242 - RELOC/doc/fonts/Type1fonts/README details="Readme" - RELOC/doc/fonts/Type1fonts/examples.zip - RELOC/doc/fonts/Type1fonts/fontinstallationguide.pdf details="The document itself" - RELOC/doc/fonts/Type1fonts/fontinstallationguide.tex -catalogue-ctan /info/Type1fonts/fontinstallationguide -catalogue-license fdl -catalogue-topics font-doc -catalogue-version 2.14 - name a0poster category Package revision 54071 @@ -7710,15 +7661,6 @@ containerchecksum 499493682164f8a6e913b2fa78f3b4328b47f2391f4f0d97e51d35de2b8763 binfiles arch=armhf-linux size=1 bin/armhf-linux/a2ping -name a2ping.i386-cygwin -category TLCore -revision 27321 -shortdesc i386-cygwin files of a2ping -containersize 340 -containerchecksum 839a5581977b46107fb75f28f6553b7ed84fe818034519bb84abf973e31d96d608871deaa4bd80f41407af25872a248fd7b87394754619c0e7f803891fef1b94 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/a2ping - name a2ping.i386-freebsd category TLCore revision 27321 @@ -7764,14 +7706,14 @@ containerchecksum 6cb1d010bc8f7607153dd5c40d2d86d5474d649a1fb0102d231272cac9c20d binfiles arch=universal-darwin size=1 bin/universal-darwin/a2ping -name a2ping.win32 +name a2ping.windows category TLCore -revision 15404 -shortdesc win32 files of a2ping -containersize 684 -containerchecksum 46a5f8cd2bb036702c22c0c938bc564d62e1ca08ffe62f5e05e0cc9506a3ada5431f84f7ea238468a33df53bddfc97765533ae5c40a84d8def706231cf3d9010 -binfiles arch=win32 size=1 - bin/win32/a2ping.exe +revision 65891 +shortdesc windows files of a2ping +containersize 2308 +containerchecksum 23d832798dfff3b08e4624a8f3fbe62579523ba38155b7bcb4817a31aef3fc6b47fc0d5e54281f7fb650feba421f096faee052d72fbe80826050a2b234009541 +binfiles arch=windows size=2 + bin/windows/a2ping.exe name a2ping.x86_64-cygwin category TLCore @@ -7878,33 +7820,36 @@ catalogue-topics bibtex-sty name aalok category Package -revision 57728 +revision 61719 shortdesc LaTeX class file for the Marathi journal 'Aalok' relocated 1 longdesc aalok mraatthii niytkaalikaacii akssrjulnnii krnnyaakritaa longdesc laattek-vrg. This package provides the class file for longdesc typesetting 'Aalok', a Marathi journal with LaTeX. -containersize 6312 -containerchecksum f25d1ac4e5de93e910a445e1830694c8f3a4de7976731a334c2bcb32b6fccac9d4386700b037c6c12556a9f9b575f90616cebc00d05f00f1db0273cc708379c6 -doccontainersize 186892 -doccontainerchecksum 80b48b0a8eb1a75d0860d18d3ee4dbd93df3e7b11f3d22f8ec442bea6e16d0dbd1a4bed74450b7683d5e1eb05b43b1e2ffbe04ca15c52c3b7091746c45cb4675 -docfiles size=54 +containersize 6092 +containerchecksum 03d1585e9b92e26044066d1f5b8d2dec0ad298627cc94fc1ab11e45307f62c573934f1a2cae6c5318a9cb377834d4f5a490144cc07bdebd9dc22cf298315630b +doccontainersize 165976 +doccontainerchecksum 702145c708edf984d24153822036acc0b563038c50423af0cd3cc6b008b7eb3bc8d67eddaac350ac6557650177218260e5adfaf0ca5807130b0e23ec7127470d +docfiles size=55 RELOC/doc/latex/aalok/COPYING + RELOC/doc/latex/aalok/LICENSE.md RELOC/doc/latex/aalok/README.txt details="Readme" RELOC/doc/latex/aalok/aalok.pdf details="Package documentation" language="mr" -srccontainersize 18448 -srccontainerchecksum 389c3ad43370e282bf29b0c80fab0324c66b00c2f379404836f91f77113b0c736c502578317a1b56f37dd25da3f89ac233eab5d21e71f1204c9ce159703f264b +srccontainersize 18636 +srccontainerchecksum b452ccf38dfb3436aa8a6907798101621fb2f5a66077cc24b316760013b0e665ef26d69b444c27cc8521dd6c06828be8a832e061df74bdcc70577f262ae987c3 srcfiles size=21 RELOC/source/latex/aalok/aalok.dtx RELOC/source/latex/aalok/aalok.ins runfiles size=7 RELOC/tex/latex/aalok/aalok.cls -catalogue-contact-bugs https://gitlab.com/aalok/aalok-latex/-/issues -catalogue-contact-repository https://gitlab.com/aalok/aalok-latex +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=aalok +catalogue-contact-home https://puszcza.gnu.org.ua/projects/aalok +catalogue-contact-repository https://git.gnu.org.ua/aalok.git +catalogue-contact-support mailto:aalok-latex@gnu.org.ua catalogue-ctan /macros/unicodetex/latex/aalok -catalogue-license gpl3+ other-free -catalogue-topics class journalpub marathi -catalogue-version 0.2 +catalogue-license gpl3+ other-free fdl +catalogue-topics class journalpub marathi expl3 +catalogue-version 0.6 name aastex category Package @@ -8086,19 +8031,135 @@ catalogue-license lppl1.3 catalogue-topics dissertation class portuguese-br catalogue-version 1.9.7 +name abntexto +category Package +revision 65705 +shortdesc LaTeX class for formatting academic papers in ABNT standards +relocated 1 +longdesc This is a LaTeX class created for Brazilian students to +longdesc facilitate the use of standards from the Associacao Brasileira +longdesc de Normas Tecnicas (ABNT) in academic works like TCCs, +longdesc dissertations, theses. +containersize 7368 +containerchecksum e238ffc706d7902fb782c9f97cdc3dfd0492fb2b33ce1a2e3b6839d128fca3a9cbbe0f89e71ed456eb2bbbf00eafe2139e9bd310146af082d33f7f6cf5edd80d +doccontainersize 97488 +doccontainerchecksum 21bec45fca68bb40227ed64a2893f65b526e19ac635fd521bdb65409b41ef2bd5dab25977e9ca1eb4df715691fed3fc0eb4c2bed200398588997be5cc9271a87 +docfiles size=37 + RELOC/doc/latex/abntexto/README details="Readme" + RELOC/doc/latex/abntexto/abntexto-manual.pdf details="User manual" language="pt-br" + RELOC/doc/latex/abntexto/abntexto.bib + RELOC/doc/latex/abntexto/abntexto.tex +runfiles size=7 + RELOC/tex/latex/abntexto/abntexto.cls +catalogue-ctan /macros/latex/contrib/abntexto +catalogue-license pd +catalogue-topics class dissertation std-conform portuguese-br +catalogue-version 2.0.0-alpha + +name aboensis +category Package +revision 62977 +shortdesc A late medieval OpenType cursive font +relocated 1 +longdesc The package contains the free OpenType medieval cursive font +longdesc Aboensis and a style file to use it in XeLaTeX documents. The +longdesc font is based on Codex Aboensis, that is a law book written in +longdesc Sweden in the 1430s. Since medieval cursive is very difficult +longdesc to read for modern people, the font is not suitable for use as +longdesc an ordinary book font, but is intended for emulating late +longdesc medieval manuscripts. The font contains two sets of initials: +longdesc Lombardic and cursive to go with the basic alphabet, and there +longdesc is support for writing two-colored initials and capitals. There +longdesc are also a large number of abbreviation sigla that can be +longdesc accessed as ligature substitutions. The style file contains +longdesc macros that help to use the extended features of the font such +longdesc as initials and two-colored capitals. There are also macros to +longdesc help achieve even pages with consistent line spacing. +containersize 96600 +containerchecksum 74f569d7f8b942087285964f350e97b15de05a69a09b1aa21d3bee09a017381d4b18b449a55aafcd0009a5941f0bea198b04947a81b331541af6617d5a58ad73 +doccontainersize 35013704 +doccontainerchecksum 84317ef83e712296819b25926adb7522531482b9d17d807cdfd3897f712aae8a8f161a242bffdbe7511478a3e5ec2c1e76fcf51c14661b3465aabbc6b95bbaf2 +docfiles size=9794 + RELOC/doc/fonts/aboensis/Aboensis.glyphs + RELOC/doc/fonts/aboensis/MANIFEST-Aboensis.txt + RELOC/doc/fonts/aboensis/OFL.txt + RELOC/doc/fonts/aboensis/README details="Readme" + RELOC/doc/fonts/aboensis/aboensis.pdf details="Package documentation" + RELOC/doc/fonts/aboensis/ccby4.txt + RELOC/doc/fonts/aboensis/doc/Makefile + RELOC/doc/fonts/aboensis/doc/ab_symbols.tex + RELOC/doc/fonts/aboensis/doc/aboensis.bib + RELOC/doc/fonts/aboensis/doc/aboensis.tex + RELOC/doc/fonts/aboensis/doc/pics/DF1423.jpg + RELOC/doc/fonts/aboensis/doc/pics/DF3001_fol2r.jpg + RELOC/doc/fonts/aboensis/doc/pics/REA-001r.jpg + RELOC/doc/fonts/aboensis/doc/pics/REA-001r2.jpg + RELOC/doc/fonts/aboensis/doc/pics/SDHK20000.jpg + RELOC/doc/fonts/aboensis/doc/pics/SDHK27022.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-18v.png + RELOC/doc/fonts/aboensis/doc/pics/aboensis-27r.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-27v.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-30v.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-37v.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-38v.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-39r.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-39v.jpg + RELOC/doc/fonts/aboensis/doc/pics/aboensis-78v.png + RELOC/doc/fonts/aboensis/doc/pics/aboensis-e14v.jpg + RELOC/doc/fonts/aboensis/doc/pics/budde-9v.png + RELOC/doc/fonts/aboensis/doc/pics/fields.png + RELOC/doc/fonts/aboensis/doc/pics/kalliala_fol16r.jpg + RELOC/doc/fonts/aboensis/doc/pics/kununx_balk.jpg + RELOC/doc/fonts/aboensis/doc/pics/photoshop-alternatives.png + RELOC/doc/fonts/aboensis/doc/pics/photoshop-one.png + RELOC/doc/fonts/aboensis/doc/pics/photoshop-two.png + RELOC/doc/fonts/aboensis/doc/pics/puupuntari.png + RELOC/doc/fonts/aboensis/doc/pics/rea-A.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-B.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-C.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-D.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-E.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-F.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-G.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-H.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-I.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-J.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-K.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-L.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-M.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-N.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-O.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-P.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-Q.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-R.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-S.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-T.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-U.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-V.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-W.jpg + RELOC/doc/fonts/aboensis/doc/pics/rea-Y.jpg + RELOC/doc/fonts/aboensis/doc/pics/viipuri.jpg + RELOC/doc/fonts/aboensis/lppl.txt +runfiles size=39 + RELOC/fonts/opentype/public/aboensis/Aboensis-Regular.otf + RELOC/tex/latex/aboensis/aboensis.sty +catalogue-ctan /fonts/aboensis +catalogue-license ofl lppl1.3c cc-by-4 pd +catalogue-topics font-bookhand font-calligraphic font-medieval font-display font-proportional font-otf font-supp + name abraces category Package -revision 58761 +revision 64967 shortdesc Asymmetric over-/underbraces in maths relocated 1 longdesc The package provides a character key-driven interface to longdesc supplement new constructions of the traditional \overbrace and longdesc \underbrace pairs in an asymmetric or arbitrary way. -containersize 3844 -containerchecksum 1a168bf9f61fbb67bfc8b74fc43d435123d296d92abebf599e1b0d3220eff7400e8e8898c9a97c2e1984dae75c16b40ceb77ffc6493855e63f4ba0fd418debda -doccontainersize 235812 -doccontainerchecksum a505388fe1356354625c78c832bc91c06bda899bb46a058210acc49ccb157283c0d2d5990e4e03b94aad17ea582575b4259e06510841a8b1ead9b4f9cc46e4ab -docfiles size=62 +containersize 3852 +containerchecksum ca6061935e6be1089592f77612de222313e41b8f78f0f14bfc06a8823da052543cf6ef0cb95c585698a8a07b5d3c2954909d85ee2ed300c8602574d34ede2892 +doccontainersize 246364 +doccontainerchecksum 84c9a8585ec4cd16dd8e07140f10e545f99622dd90ff3ed28a7eeaa070ce18cfc9ed64e2bbc9efd0dbd4ebe1c27b68aee66eb091ffd6c8debad1cb502edb6f4e +docfiles size=66 RELOC/doc/latex/abraces/README.md details="Readme" RELOC/doc/latex/abraces/abraces-doc.pdf details="Package documentation" RELOC/doc/latex/abraces/abraces-doc.tex @@ -8108,7 +8169,42 @@ catalogue-contact-repository https://github.com/wgrundlingh/abraces catalogue-ctan /macros/latex/contrib/abraces catalogue-license lppl1.3 catalogue-topics maths maths-symbol -catalogue-version 2.0 +catalogue-version 2.1 + +name abspos +category Package +revision 64465 +shortdesc Absolute placement with coffins +relocated 1 +longdesc This package lets you place contents at an absolute position, +longdesc anchored at some specified part of the contents, similar to how +longdesc TikZ nodes work, though without using the two-pass strategy of +longdesc TikZ. It also avoids messing with the order of beamer overlays, +longdesc which is what happens when one uses the textpos package with +longdesc the overlay option. The solution used is quite straightforward, +longdesc combining coffins (using l3coffins) with the placement +longdesc mechanisms of atbegshi. +containersize 2452 +containerchecksum 87400db8c388db7d7105007ea853d2254451b98daba9a8c61822fb56d143e2dfb75918d40bfe519dfe18b401f944db1569ee41ac768ccac8449e78ae59fb11c0 +doccontainersize 443576 +doccontainerchecksum 90cb62134a36e1cb1589fbc8a6b993c777562eb1eb309dc0cb4f6835ec7174df262957cc9b34631aab4cff5b6aa6818770e26034f5eab29d35ad5d7c4a155cd5 +docfiles size=114 + RELOC/doc/latex/abspos/LICENSE + RELOC/doc/latex/abspos/README.md details="Readme" + RELOC/doc/latex/abspos/abspos.pdf details="Package documentation" + RELOC/doc/latex/abspos/demo.tex +srccontainersize 7180 +srccontainerchecksum 7cf57d88b340d57277e16594e66c076aadba3d505d6f7c66cd1e9407db5d21432d121c3b798d0f86704f12732080a9043c6c843afd16886533065ab70e61b8db +srcfiles size=6 + RELOC/source/latex/abspos/abspos.dtx +runfiles size=2 + RELOC/tex/latex/abspos/abspos.sty +catalogue-contact-bugs https://github.com/mlhetland/abspos.sty/issues +catalogue-contact-repository https://github.com/mlhetland/abspos.sty +catalogue-ctan /macros/latex/contrib/abspos +catalogue-license mit +catalogue-topics layout expl3 +catalogue-version 0.1 name abstract category Package @@ -8178,10 +8274,10 @@ catalogue-topics bibtex-sty name academicons category Package -revision 56119 +revision 62622 shortdesc Font containing high quality icons of online academic profiles relocated 1 -longdesc The academicons package provides access in (La)TeX to 112 high +longdesc The academicons package provides access in (La)TeX to 124 high longdesc quality icons of online academic profiles included in the free longdesc "Academicons" font. This package requires either the Xe(La)TeX longdesc or Lua(La)TeX engine to load the "Academicons" font from the @@ -8194,7 +8290,7 @@ longdesc font was designed by James Walsh and released (see longdesc http://jpswalsh.github.io/academicons/) under the open SIL Open longdesc Font License. This package is a redistribution of the free longdesc "Academicons" font with specific bindings for (La)TeX. It is -longdesc inspired and based on the fontawesome" package. The academicons +longdesc inspired and based on the fontawesome package. The academicons longdesc package provides the generic \aiicon command to access icons, longdesc which takes as mandatory argument the name of the desired icon. longdesc It also provides individual direct commands for each specific @@ -8202,15 +8298,15 @@ longdesc icon. The full list of icons and their respective names and longdesc direct commands can be found in the manual. For example, longdesc \aiicon{googlescholar} yields the same result as longdesc \aiGoogleScholar. -containersize 32636 -containerchecksum 87e2c5436f92e288c94d612380a2bd6736a19b7a6ba714c0d33bfad27aaab79cdf264b585e722055b1d8402be5c0001c1d8759ac3b79d6c2759c90d6a36d2f6a -doccontainersize 103408 -doccontainerchecksum 55f9e0192b8e50126fd573aee69ce5d7f389448f7af9e2973515ae49c552adaadd3eb8f06f019e42d0caa23c2d9a7841ae5fb7f6c0b6eed9a43eb60f7b0dd964 +containersize 35252 +containerchecksum 10fed2cdb2533a7291626eee2f3d46e79fe972eadd83cf7177f22228dcd13422549819dc5e1cf0b03e8397e23badc02a965857aca886ba004a3279efeb49b288 +doccontainersize 103532 +doccontainerchecksum beeb30c90b668edbd135a0067165232efd0919c4e42f9e968a8e0e3250a88ba9d1a4489fc8e8f10c69c27794b1e00c63151877e119ceb33da50b12c42c4fc80d docfiles size=29 RELOC/doc/fonts/academicons/README details="Readme" RELOC/doc/fonts/academicons/academicons.pdf details="Package documentation" RELOC/doc/fonts/academicons/academicons.tex -runfiles size=21 +runfiles size=22 RELOC/fonts/truetype/public/academicons/academicons.ttf RELOC/tex/latex/academicons/academicons.sty RELOC/tex/latex/academicons/tuacademicons.fd @@ -8218,11 +8314,11 @@ catalogue-contact-repository https://github.com/diogo-fernan/academicons catalogue-ctan /fonts/academicons catalogue-license lppl1.3c ofl catalogue-topics font font-supp-symbol font-symbol font-ttf -catalogue-version 1.9.0 +catalogue-version 1.9.1-2 name accanthis category Package -revision 32089 +revision 64844 shortdesc Accanthis fonts, with LaTeX support relocated 1 longdesc Accanthis No. 3 is designed by Hirwin Harendal and is suitable @@ -8231,9 +8327,9 @@ longdesc old style, Sabon, and Bembo. The support files are suitable for longdesc use with all LaTeX engines. execute addMap accanthis.map containersize 368064 -containerchecksum 9edbbdd97ea30709f0e0e1959bac7806c188d610e414f037a4115747f57ce7ad68be67b75506f9ce186c951a2c46c3bcd5b0697bb72d81fc48465906cd245be0 -doccontainersize 300384 -doccontainerchecksum efa2cbf4c11b28dc0a907b62d8818489ca48c458419e37571633adb8403f914c01d28431684705363e56cc100adf7cff6539f19fae9e4b23e6cf3dc210109810 +containerchecksum 5727125c85e06501f009267bab8c1eff674a76db618c6155fd9c6b41bb2407a3a201a008c7f5aa6d73ecf100a3fc917961d20f547c2f6040fe72760a4dcd9a44 +doccontainersize 300388 +doccontainerchecksum 6789c3c330d1e6a0d20364e4e98ef72fd1c6294655f704366b0e6c1fd081d1aea312dc9e6767fb3e076b3cd91ea5a67606e8bf62f7f92af097ba766c99ab0cff docfiles size=84 RELOC/doc/fonts/accanthis/Accanthis-Cat.pdf details="Arkandis catalogue page" language="fr" RELOC/doc/fonts/accanthis/COPYING @@ -8326,8 +8422,8 @@ runfiles size=204 RELOC/tex/latex/accanthis/accanthis.sty catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html catalogue-ctan /fonts/accanthis -catalogue-license gpl2 -catalogue-topics font font-serif font-type1 font-otf +catalogue-license gpl2+ lppl +catalogue-topics font font-body font-proportional font-serif font-type1 font-otf font-supp font-t1enc name accents category Package @@ -8483,17 +8579,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/vpl2ovp bin/armhf-linux/vpl2vpl -name accfonts.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of accfonts -containersize 376 -containerchecksum e0e805fccb816f1a29ed3907f53b720e4b3cb0f4dd5f60a728d128b13ab9ad3cb79150e283f8822e5d59987253a85a54da32e9e38c342931774ce01a12dc3f78 -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/mkt1font - bin/i386-cygwin/vpl2ovp - bin/i386-cygwin/vpl2vpl - name accfonts.i386-freebsd category Package revision 16472 @@ -8549,16 +8634,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/vpl2ovp bin/universal-darwin/vpl2vpl -name accfonts.win32 +name accfonts.windows category Package -revision 15404 -shortdesc win32 files of accfonts -containersize 716 -containerchecksum 41972a6b0f91c1b836af1eab11fc5df535f9ec1d1de3a1d6c7f0747a33b1cfe72398c2136e3049dc832a1337761c46f0cc5c9cabd0ad14586d289c6ade59b318 -binfiles arch=win32 size=3 - bin/win32/mkt1font.exe - bin/win32/vpl2ovp.exe - bin/win32/vpl2vpl.exe +revision 65891 +shortdesc windows files of accfonts +containersize 2388 +containerchecksum cc7ddde398651fefde94cdc4b5003730f102de6b3a6b6d697fd1d487bb9923d3fd5ac6897659dde5a7d64a55191ac00072fb4969627aace39cde998ffe421958 +binfiles arch=windows size=6 + bin/windows/mkt1font.exe + bin/windows/vpl2ovp.exe + bin/windows/vpl2vpl.exe name accfonts.x86_64-cygwin category Package @@ -8656,7 +8741,7 @@ catalogue-version 0.6 name achemso category Package -revision 57479 +revision 65103 shortdesc Support for American Chemical Society journal submissions relocated 1 longdesc The bundle provides the official macros (achemso.cls) and @@ -8664,11 +8749,11 @@ longdesc BibTeX styles (achemso.bst and biochem.bst) for submission to longdesc the journals of the American Chemical Society. The natmove longdesc package, which moves citations relative to punctuation, is longdesc distributed as part of the bundle. -containersize 19268 -containerchecksum 8b9f9131539eaaca0367ddca7918b5f56d0a5520bf5c16dcabedc51c41cc695967ae246751d327f604d27ceea1884b077d0fb9df40c19ef0a719ae50058a6b9b -doccontainersize 860228 -doccontainerchecksum dd5831de3d86fb38a7e74240aec3df7a90546d059e5a008d2a7a65d7f76d67bcda360706b1c6e1b158a7efe1ae126c6812b5713d57646ed7184a31e639127d00 -docfiles size=228 +containersize 19300 +containerchecksum c611a28933960c49f383ddad8dcc8486403eba1e84e981d2221a8e8b6db607dadd93e6b58ffab1c0bfc19ef423b639c673693b113d7e158136c5c30555f68508 +doccontainersize 880816 +doccontainerchecksum e03343efd2179c1fb094fc5b7f46e078949f3ac75c311aa0559e9c3364c3178f3e8452c9a87b4952a76982754e57d5668970f8fea9ac508756aec45b6e11db38 +docfiles size=236 RELOC/doc/latex/achemso/CHANGELOG.md RELOC/doc/latex/achemso/LICENSE.md RELOC/doc/latex/achemso/README.md details="Readme" @@ -8676,9 +8761,8 @@ docfiles size=228 RELOC/doc/latex/achemso/achemso-demo.pdf details="Example of use" RELOC/doc/latex/achemso/achemso-demo.tex RELOC/doc/latex/achemso/achemso.pdf details="Package documentation" - RELOC/doc/latex/achemso/acs-achemso.bib -srccontainersize 31504 -srccontainerchecksum 3e2ed978f71bcd8546cd979944f31db85cffdf7635cc20db4043e6c8ee9c484aa44b1973cc3109a37ef0bd779e1de64f86ff51de786ae1b3c3bf80eea9822e3a +srccontainersize 31496 +srccontainerchecksum ce918746855be7450b253d7cda9dd112fa40314538167deec1b86a58ff6fd69b68d2712789632b332acb1ce92dfe431346b57fd51f92d04aeb2540f4a35cc0c2 srcfiles size=39 RELOC/source/latex/achemso/achemso.dtx RELOC/source/latex/achemso/achemso.ins @@ -8764,26 +8848,33 @@ runfiles size=105 catalogue-ctan /macros/latex/contrib/achemso catalogue-license lppl1.3c catalogue-topics chemistry journalpub bibtex-sty class -catalogue-version 3.13c +catalogue-version 3.13f name acmart category Package -revision 58893 +revision 64967 shortdesc Class for typesetting publications of ACM relocated 1 longdesc This package provides a class for typesetting publications of longdesc the Association for Computing Machinery (ACM). -containersize 38456 -containerchecksum 4de88377bd70e14340ec18396a39262037c09b821efcfb9ed5a9149f38a2cd53088911e59f0e6634b93c29b7ff72569ac059f23c80b87799e7f7843c08384345 -doccontainersize 3532112 -doccontainerchecksum c71866f74f6b0cba3719a696bfc2818a3310fee24c32acc10cee0343e70082721b2216daae36a7753d6c125b44e56dbec0b085fe04fd9c90918c7ca2f7d014a6 -docfiles size=2620 +containersize 42964 +containerchecksum 63bc67438a059caec0efd1c5e74a68cd225ca3d3802045641b041cc9c75013a96e84ba6809f055eebe592a7ef95479e1e84910e471b6168891e49e1d5da03b77 +doccontainersize 4831780 +doccontainerchecksum 5eda87dbf0e40ff096004083d301299734d77b2b65a9148587b241feefda71345d5bd69308e7101375d8985eaf7c9463ba1f8bf8113a1379b3d37b0af8fe8cfa +docfiles size=3441 RELOC/doc/latex/acmart/README details="Readme" RELOC/doc/latex/acmart/acmart.bib RELOC/doc/latex/acmart/acmart.pdf details="Documentation" RELOC/doc/latex/acmart/acmguide.pdf + RELOC/doc/latex/acmart/samples/abbrev.bib + RELOC/doc/latex/acmart/samples/sample-acmcp.pdf + RELOC/doc/latex/acmart/samples/sample-acmcp.tex + RELOC/doc/latex/acmart/samples/sample-acmengage.pdf + RELOC/doc/latex/acmart/samples/sample-acmengage.tex RELOC/doc/latex/acmart/samples/sample-acmlarge.pdf RELOC/doc/latex/acmart/samples/sample-acmlarge.tex + RELOC/doc/latex/acmart/samples/sample-acmsmall-biblatex.pdf + RELOC/doc/latex/acmart/samples/sample-acmsmall-biblatex.tex RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.pdf RELOC/doc/latex/acmart/samples/sample-acmsmall-conf.tex RELOC/doc/latex/acmart/samples/sample-acmsmall-submission.pdf @@ -8800,6 +8891,10 @@ docfiles size=2620 RELOC/doc/latex/acmart/samples/sample-lualatex.tex RELOC/doc/latex/acmart/samples/sample-manuscript.pdf details="Example of use" RELOC/doc/latex/acmart/samples/sample-manuscript.tex + RELOC/doc/latex/acmart/samples/sample-sigconf-biblatex.pdf + RELOC/doc/latex/acmart/samples/sample-sigconf-biblatex.tex + RELOC/doc/latex/acmart/samples/sample-sigconf-i13n.pdf + RELOC/doc/latex/acmart/samples/sample-sigconf-i13n.tex RELOC/doc/latex/acmart/samples/sample-sigconf.pdf RELOC/doc/latex/acmart/samples/sample-sigconf.tex RELOC/doc/latex/acmart/samples/sample-sigplan.pdf @@ -8809,25 +8904,28 @@ docfiles size=2620 RELOC/doc/latex/acmart/samples/samples.dtx RELOC/doc/latex/acmart/samples/samples.ins RELOC/doc/latex/acmart/samples/sampleteaser.pdf -srccontainersize 53824 -srccontainerchecksum 69c661c3c7f90ed3aced2f3f3dbbdcc77098416460e708a90f7824c70203f92a58e7ffa1c095e3e4efdb5af351e13e35c45e625aa8c173b65a0842cf8a2d614d -srcfiles size=63 + RELOC/doc/latex/acmart/samples/software.bib +srccontainersize 61376 +srccontainerchecksum d60835fc235c226a3d5441dd2dfeceeda9a0df5e0b412893a8b8199c3fbcb411590c9a451c72dbd2ac15ef2fa4343c7f586a8f9756815e28c5601fff10e14a67 +srcfiles size=73 RELOC/source/latex/acmart/Makefile RELOC/source/latex/acmart/acmart.dtx RELOC/source/latex/acmart/acmart.ins -runfiles size=54 +runfiles size=67 RELOC/bibtex/bst/acmart/ACM-Reference-Format.bst - RELOC/tex/latex/acmart/ACM-Reference-Format.bbx - RELOC/tex/latex/acmart/ACM-Reference-Format.cbx - RELOC/tex/latex/acmart/ACM-Reference-Format.dbx RELOC/tex/latex/acmart/acmart.cls + RELOC/tex/latex/acmart/acmauthoryear.bbx + RELOC/tex/latex/acmart/acmauthoryear.cbx + RELOC/tex/latex/acmart/acmdatamodel.dbx + RELOC/tex/latex/acmart/acmnumeric.bbx + RELOC/tex/latex/acmart/acmnumeric.cbx catalogue-contact-bugs https://github.com/borisveytsman/acmart/issues catalogue-contact-development https://github.com/borisveytsman/acmart/pulls catalogue-contact-repository https://github.com/borisveytsman/acmart/ catalogue-ctan /macros/latex/contrib/acmart catalogue-license lppl1.3 catalogue-topics class comp-sci comp-theory engineering journalpub -catalogue-version 1.77 +catalogue-version 1.88 name acmconf category Package @@ -8870,7 +8968,7 @@ catalogue-version 1.3 name acro category Package -revision 57447 +revision 62925 shortdesc Typeset acronyms relocated 1 longdesc The package enables the author to create acronyms in a simple @@ -8883,11 +8981,11 @@ longdesc which automatically sorts the list created by \printacronyms. depend etoolbox depend l3kernel depend l3packages -containersize 43672 -containerchecksum 5f0b03e3ceaab172a0c92e7f29795a0878118a07be27f079800703c0f59f127c2ca09b53922d7ce3f16ae772ec28528a69ac407092dccc2f5bb621460e6f38ee -doccontainersize 1223432 -doccontainerchecksum 5d558296f2b0a4442b82e49be12ae1f3dc80d40012d138ce4ef12ee8e22ef1b6d934acf7364c59be0138077311e8dc7b5bfac42478aa68a14750a6c41de1c6a4 -docfiles size=366 +containersize 44440 +containerchecksum 25c0dc9cda98db7ead55613aea92946cd90e7edfa1213d59966eb8fdd93ae1bc7b532f7849c43fb8fa77291b23dc5d8dc80cba4584c991a7b38e55564bd59ea3 +doccontainersize 1246936 +doccontainerchecksum c827f8dc5fa88b67e84e48d0cfb6d47aa5bfa98fbceed86e6262d98111a956d425d0a2f3cf54b18cba7593dfac17accc2cbe71cc04f1ea2157c511d670c41daa +docfiles size=373 RELOC/doc/latex/acro/README details="Readme" RELOC/doc/latex/acro/acro-manual.pdf details="Package documentation" RELOC/doc/latex/acro/acro-manual.tex @@ -8917,7 +9015,7 @@ docfiles size=366 RELOC/doc/latex/acro/examples/acro.example.texsx-542461.tex RELOC/doc/latex/acro/examples/acro.example.units.pdf RELOC/doc/latex/acro/examples/acro.example.units.tex -runfiles size=80 +runfiles size=81 RELOC/tex/latex/acro/acro-examples.sty RELOC/tex/latex/acro/acro.sty RELOC/tex/latex/acro/acro2.sty @@ -8926,7 +9024,7 @@ catalogue-contact-repository https://github.com/cgnieder/acro/ catalogue-ctan /macros/latex/contrib/acro catalogue-license lppl1.3c catalogue-topics acronym expl3 -catalogue-version 3.5 +catalogue-version 3.8 name acronym category Package @@ -8962,27 +9060,27 @@ catalogue-version 1.47 name acroterm category Package -revision 20498 +revision 61719 shortdesc Manage and index acronyms and terms relocated 1 longdesc Yet another package for acronyms: the package offers simple longdesc markup of acronyms and technical terms in the text, giving an longdesc index each of terms and acronyms with their expanded form. -containersize 1424 -containerchecksum fbcd24989570b083ec51365b560ad2a082a136fc8b2b57aaca4a03059f66dcbdca1efe39c959c8f1a049fdd978ab58a6920f914589c242264b9d803124d0e0cd +containersize 1408 +containerchecksum f8ce516ba2de1367bf414061e14c260be31304ce93693a95e6b9ed29d5cf170bb041248eafb76546cfb1547e687d07ec51333177405ffa8a5c9ea76070394832 doccontainersize 157936 -doccontainerchecksum 603375e44822841b1dbf52d7aab0c91c0ed36dcdada7e6fab607ba805fa896473674123a2594714fa0f698c559570431f09ec55ca41720586fd522df24453253 +doccontainerchecksum 66610cbd2e77d8f9b0eda3c61382dc1a8436169017d363a5716e0ad1991849824a1958552af4a14545dcac37191302c0907b505884f7cf1c7d83f8087d888b6a docfiles size=44 RELOC/doc/latex/acroterm/README details="Readme" RELOC/doc/latex/acroterm/acroterm.pdf details="Package documentation" -srccontainersize 3832 -srccontainerchecksum e289d4cce2bcbb70b20d1f59055cc019453e526ff2c0bee6e5a2d04573060d1d4490d89ec717fe55e4dd3754170f794e60acd453b21b884f595ea56bb6f95adc +srccontainersize 3828 +srccontainerchecksum 531b5768a7312bd40797b6cc67abc58050481ef97455219698018a635a298f542506669956211dab32d51dce2c86f3d3d6a2e913c4a0f81f072035a63470e5c0 srcfiles size=4 RELOC/source/latex/acroterm/acroterm.dtx RELOC/source/latex/acroterm/acroterm.ins runfiles size=1 RELOC/tex/latex/acroterm/acroterm.sty -catalogue-contact-repository http://github.com/nichtich/acroterm/ +catalogue-contact-repository https://github.com/nichtich/acroterm/ catalogue-ctan /macros/latex/contrib/acroterm catalogue-license lppl1.3 catalogue-topics acronym glossary @@ -9346,15 +9444,6 @@ containerchecksum dc904c869a6eb42ff9ba92faf1d98ee29e8e6629629a2cc35b8b93d281fff8 binfiles arch=armhf-linux size=1 bin/armhf-linux/adhocfilelist -name adhocfilelist.i386-cygwin -category Package -revision 28038 -shortdesc i386-cygwin files of adhocfilelist -containersize 340 -containerchecksum a327fe4a088d8c2edeef9d5aa36dc012f03bbeb6c0ca730de22a37a7cc5eabb952071f769a935fe4612897ac0e6f2d297b3f5a7c0557d5e9cc9c1ab76d272083 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/adhocfilelist - name adhocfilelist.i386-freebsd category Package revision 28038 @@ -9483,25 +9572,25 @@ catalogue-version 1.7.1 name adjmulticol category Package -revision 54157 +revision 63320 shortdesc Adjusting margins for multicolumn and single column output relocated 1 longdesc The package adds, to the multicol package, the option to change longdesc the margins for multicolumn and unicolumn layout. The package longdesc understands the difference between the even and odd margins for longdesc two side printing. -containersize 3000 -containerchecksum 4243fb86e7122ec721b975c16eebadcdb867313270a7c351543bad78be73eb82780f7eb1878f1901b8c1956d0103531f1973d9ba10bdeded7eeaa51b190a1514 -doccontainersize 299732 -doccontainerchecksum afa625a205d566369b4a702062ff39f62529f2191ec4293b282fe818f4e001b8cc9c65eec3a0df0175586969d77ec83e03b22ff41cff36788375c59d1f20c586 -docfiles size=77 +containersize 3080 +containerchecksum aa3a350cc284bb52e5dd519155d9e74dcf96171e12acfd092ab3be502f09100a37cfb98c4ea99c6db7f7efc4b1edadfea86b29460dcdae212fd38cbb0b0062e0 +doccontainersize 312532 +doccontainerchecksum 393cd068816ef77104ccf294921d6e9213497ce52e8507044783b05859c54ceea208fad8a7af2efcc6b42ac74abac142f883eacd455b0e3f6227c3222d2a5db0 +docfiles size=82 RELOC/doc/latex/adjmulticol/README details="Readme" RELOC/doc/latex/adjmulticol/adjmulticol.bib RELOC/doc/latex/adjmulticol/adjmulticol.pdf details="Package documentation" RELOC/doc/latex/adjmulticol/sample.pdf RELOC/doc/latex/adjmulticol/sample.tex -srccontainersize 7256 -srccontainerchecksum e1a9e8245494eb1bd09e82e914fc0009ac696d94ec0d4499a828bb5187e90741f0ae26cce956429fe802cb5c2af7d9c68454bc11deeca87bae8a531ed2a1d4dd +srccontainersize 7400 +srccontainerchecksum 400b8e4a5a65c49094a127c43d002b93ce38f04eaad154e5edaa1418d9186abc8b14c74570da79953fc44863de2f98748c23d66abfb9b4d03b5024aef9e2082c srcfiles size=7 RELOC/source/latex/adjmulticol/Makefile RELOC/source/latex/adjmulticol/adjmulticol.dtx @@ -9513,11 +9602,11 @@ catalogue-contact-repository https://github.com/borisveytsman/adjmulticol catalogue-ctan /macros/latex/contrib/adjmulticol catalogue-license lppl1.3 catalogue-topics multicol layout -catalogue-version 1.2 +catalogue-version 1.5 name adjustbox category Package -revision 56291 +revision 64967 shortdesc Graphics package-alike macros for "general" boxes relocated 1 longdesc The package provides several macros to adjust boxed content. @@ -9533,12 +9622,16 @@ longdesc content as a box and not as a macro argument. This allows for longdesc all forms of content including special material like verbatim longdesc content. A special feature of collectbox is used to provide longdesc matching environments with the identical names as the macros. -containersize 13596 -containerchecksum 851d9abec7b4eabaf470755cea1200978146f93fca4cb8cdd33adb53f3b427031ea70685b8458fa77c5bd8b842b62524dd713c12a901331778cd854fa862098c -doccontainersize 719424 -doccontainerchecksum 3ddd36dcf4c56390aef552644e053612f1b2a900b2031f63aa6dd5da013916a00ead80a4e677c5225a14055f3b34d972faf17fe42e3cbe1f74b59a3b7d5206d6 -docfiles size=195 - RELOC/doc/latex/adjustbox/README details="Readme" +depend collectbox +depend graphics +depend xkeyval +containersize 13608 +containerchecksum ac12b052b2112d5bcd942888ab69fa20aca6e2b392bf868959b8573ee8611d93042de3f90eace1519a89d0da64d2dcb3046e26fb0f86f46ea3e673e2a2aee2c8 +doccontainersize 739224 +doccontainerchecksum d48b405a472df491b3ac6db23b126a70acda26e4dc2baf8e60569f110af2c4c740708c84fad9b70f689022e8747013198c98ea0bb3c6798f1dd8065a431d1ba5 +docfiles size=203 + RELOC/doc/latex/adjustbox/DEPENDS.txt + RELOC/doc/latex/adjustbox/README.txt details="Readme" RELOC/doc/latex/adjustbox/adjcalc.pdf RELOC/doc/latex/adjustbox/adjustbox.pdf details="Package documentation" RELOC/doc/latex/adjustbox/box.tex @@ -9551,8 +9644,8 @@ docfiles size=195 RELOC/doc/latex/adjustbox/trimclip.pdf RELOC/doc/latex/adjustbox/viewport.tex RELOC/doc/latex/adjustbox/viewport2.tex -srccontainersize 49556 -srccontainerchecksum 0a25cd50b343094fc6a5a07f9196f96c4f391fbf6845cf78f5c76c76c2af0a5c8c9ed79a29d14d3575a416c7fe1c9ae6e455e17d3d03ca09e9f9e1ddb170bf6c +srccontainersize 49568 +srccontainerchecksum 08da88fe2a344716e7184ac2cadf564a90def84c03af8270a2f5e906ae720a7794dcb2707af5e41ab41406b01021029f4272c3e2844e9e36cd913ab56f049ba3 srcfiles size=79 RELOC/source/latex/adjustbox/adjcalc.dtx RELOC/source/latex/adjustbox/adjustbox.dtx @@ -9567,23 +9660,23 @@ runfiles size=24 RELOC/tex/latex/adjustbox/tc-xetex.def RELOC/tex/latex/adjustbox/trimclip.sty catalogue-also gincltex collectbox realboxes -catalogue-contact-bugs https://sourceforge.net/p/adjustbox/tickets/ -catalogue-contact-home https://sourceforge.net/p/adjustbox/ -catalogue-contact-repository https://sourceforge.net/p/adjustbox/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/adjustbox/issues +catalogue-contact-home https://github.com/MartinScharrer/adjustbox +catalogue-contact-repository https://github.com/MartinScharrer/adjustbox.git catalogue-ctan /macros/latex/contrib/adjustbox catalogue-license lppl1.3 catalogue-topics typesetting box-manip -catalogue-version 1.3 +catalogue-version 1.3a name adobemapping category Package -revision 51787 +revision 66552 shortdesc Adobe cmap and pdfmapping files relocated 1 longdesc The package comprises the collection of CMap and PDF mapping longdesc files made available for distribution by Adobe. -containersize 2169892 -containerchecksum 1dd2c4a813bbcd8063d42c1872fd14427bae2e5ce9698ddb0825770653d17798c037da511d43a0939cea1a607f0a7bb7ce974bff72a2ee88c6f56f941cc7510e +containersize 2178116 +containerchecksum 363f7fd337e5a34737608a2bc37521bb526ce726f5c9b5b4d08416e534448306002bc7af1be3f5e6fefcaba16ffc2260c4dea8a486d44dbccad577fb04d6da5b runfiles size=5246 RELOC/fonts/cmap/adobemapping/README RELOC/fonts/cmap/adobemapping/cmap-resources/Adobe-CNS1-7/CMap/Adobe-CNS1-0 @@ -10267,15 +10360,15 @@ catalogue-version 1 name afm2pl category TLCore -revision 54074 +revision 66186 shortdesc convert AFM to TeX property list (.pl) metrics longdesc Program home page: http://tex.aanhet.net/afm2pl/ depend afm2pl.ARCH containersize 9616 -containerchecksum e539a12013dae7b30a83f615fe9f01678a25136a72ce754101aeb6bc8f1d287e006648f3050573ab211eeb00e5ac8082857b15e388d0da4886929a57d018fed2 -doccontainersize 41360 -doccontainerchecksum 771e72385110bfaf133865ceaf9cb85a94dc1037f7390b027b21a9117aaeb00e88f67b191229fbbb61f417ccecd6556335ba1d2ba46a0a65079929a0ccbfb1a7 -docfiles size=15 +containerchecksum 9ec87ccaff69c7467f803e4ce3f3408f8195cb93f571a7c7aa5f195d3de80b480b182831d239d8b2144dc72a5c26f9da58973075b6a939d23a51de0acdb1d199 +doccontainersize 41300 +doccontainerchecksum e18ef6478d02676a3edc048ec1f8bc37e7cca97e62164632dbf02595a051e6d09d19ba8422c4a617523dccfe1a6ed55fc9be34d1c0ffc147bbfa4e5d8f2daf40 +docfiles size=14 texmf-dist/doc/man/man1/afm2pl.1 texmf-dist/doc/man/man1/afm2pl.man1.pdf runfiles size=24 @@ -10298,145 +10391,136 @@ runfiles size=24 name afm2pl.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of afm2pl -containersize 40304 -containerchecksum cd23193f64f252cfd3c788cf5dbe502f048eeb3e4594ef22e752e2a5b2a91cea491d8e2ce50cc51fac7f8a179ee7299a233326b219888b34949e81d501a771e3 +containersize 40284 +containerchecksum 5659556ce026fa201daad739ab5100e710f69dab2cb0c37158a38fff4a55b58cd5e2b7e66e625e35ede3cc645415dc5f1366b6ac220265808740a87c471dafbf binfiles arch=aarch64-linux size=26 bin/aarch64-linux/afm2pl name afm2pl.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of afm2pl -containersize 44224 -containerchecksum 9eb5af477646cfd648020e11aa922bab654cd4b40c7f541f78c9cabaabc89c2ee01269980c9df30c5bfd1eee78b466c5185d9e68da88340cf78cf5aa712f06fc +containersize 44524 +containerchecksum 06cef46a04417da8fcf5b31cb9f6703074ea07ee2b6a3bb1cf8e0458c521db48fd1671cafde1a4f682c9ed5da4eed1bc471f970d435000d0b7bd78859487cea3 binfiles arch=amd64-freebsd size=27 bin/amd64-freebsd/afm2pl name afm2pl.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of afm2pl -containersize 38192 -containerchecksum 17821b83f6335ab41a016fc72c1646ac747bf0dc52ccd11defa02382ebbacf055eb543e13e6520c36f7b5146cabad9ac1ea7c3f0102ad1f87e770800e2dda277 +containersize 38180 +containerchecksum e3124dec6876c59c25a1066e2accd2e4c635ea8996541f0ca13302304d2185adc58f9774bc2002d1db86ea0b5c7fbc25ad82fb39ad407240627af98633826235 binfiles arch=amd64-netbsd size=30 bin/amd64-netbsd/afm2pl name afm2pl.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of afm2pl -containersize 34168 -containerchecksum dfeef30a115c4ad3af5308c5643628c2bdcaa40693ecc7873406061b563fcb3e9fa9cfe07f7147977980d37de2103f3b6dd4fb8c364ea327154cfe97770204aa +containersize 34160 +containerchecksum e90c1503fbb149d83e2de64df55dfe8a87c75fd655e1b76f3e3dad67b7aa5f3dc55338465cff6c0e451920ecbc3e9d2b95fcefdfa41823bc804189179f74b41b binfiles arch=armhf-linux size=21 bin/armhf-linux/afm2pl -name afm2pl.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of afm2pl -containersize 13200 -containerchecksum 93965bf213aca834ad2d990d344c0a0191c2210f90df3bf81222791d5dc3a5c5ff56db69c9eb33440c0d9612ed332e94226ee54cdb47530b3a0b8eff067c323d -binfiles arch=i386-cygwin size=8 - bin/i386-cygwin/afm2pl.exe - name afm2pl.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of afm2pl -containersize 39272 -containerchecksum 1e250cf634418b5c06a3d3a295bdda4ef5db990368eda39d3cf09343c675aaba1e17ebf8f398da0522f0d11e144ee87907984545a6d60a858784abcd64388718 -binfiles arch=i386-freebsd size=23 +containersize 40164 +containerchecksum 290b5375c5be9ce5f1bd00c2e79339e9d2308baeebdf4c9d46bdf7c0e9a8722601a36202e17b505fbffe20efc57dff054f71d9288eed6dc97b0916a1e60d6546 +binfiles arch=i386-freebsd size=24 bin/i386-freebsd/afm2pl name afm2pl.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of afm2pl -containersize 44072 -containerchecksum 1c258bb62d3e450bc046df9b21e77cb90d8e94e258c72b1a231953f9a7759393fff8831ff748acc1eb1755f993eb81721982dfbe2ff5d4c45c22049dfdf30592 -binfiles arch=i386-linux size=26 +containersize 44672 +containerchecksum 0f1c53440728f752bde92f9b2006ae09c0f97ad9e610c688ce7996fec8ade736602ff758bcbd3970d41cd9f1d7b09cc1a21a4f7b1e3092216190eb1c3fd56436 +binfiles arch=i386-linux size=27 bin/i386-linux/afm2pl name afm2pl.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of afm2pl -containersize 35048 -containerchecksum d47edd89b7c38b115fa7e6994fa126826669bffe2f6813dac84baa4d7c1acf1a5879513c77d4a6868f984e918ce7677ad235cd67aceae46f075c7837c9666f64 +containersize 35076 +containerchecksum 4b93a36e79187cae56c405c8a08a64e22224444e5131aa832053642dba672aa2263c2d7420ad2860b78eeffd0203d16d151dd4dc81c0b886763b6f538c8154a1 binfiles arch=i386-netbsd size=27 bin/i386-netbsd/afm2pl name afm2pl.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of afm2pl -containersize 40340 -containerchecksum 134be982744b78840fbab2c8c1b6a813b310746d9158968f9041742b7618b9ab3c1bb2109e4f83f915b139975ef8a311144e7a371bdaf18c355829312004c76a +containersize 40332 +containerchecksum 9f7b30a7b6ba3b08918b6db2a33b4a213783cf36068fd92d4262576d623a8802651b7b0255a7ae0c7645086a6800b4ed4ed2bb71919f96af8e9eb3db8446e20d binfiles arch=i386-solaris size=22 bin/i386-solaris/afm2pl name afm2pl.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of afm2pl -containersize 83320 -containerchecksum 25ab570509df2ab370fb8547e69f588638278b37b1cb0544a6eb42771621c3c40adcc2af4d05b472270724f5fb662391516f874ce48d3bd0dc53b86fe2742bd2 -binfiles arch=universal-darwin size=71 +containersize 83444 +containerchecksum 6a7df69ec13387dca63dd635a26a4e1d9d05fde67af2fde16e2c60aa24f1003ecad13b7a6a64ba44a51e19358f4d345032cdcd1fd0ef3a6cbb8a6b166711fba2 +binfiles arch=universal-darwin size=75 bin/universal-darwin/afm2pl -name afm2pl.win32 +name afm2pl.windows category TLCore -revision 58783 -shortdesc win32 files of afm2pl -containersize 14732 -containerchecksum 49637d1d2a26079ddb47ebfff2bef63a264a9a1ea8eefd948063b127e65ec76400d7b48c589081a027b910d5c8d1cea0f1813aab83fa3fc4028a4a22a6373fcb -binfiles arch=win32 size=9 - bin/win32/afm2pl.exe +revision 65891 +shortdesc windows files of afm2pl +containersize 17200 +containerchecksum b3396895aa8a998b8eaab999c0ff04a77686c87ad5ebe2e629618c26ab2e828b1578a22bde3bcd4d465312e05953743925262f9448c20b0555f210fc6294e48e +binfiles arch=windows size=9 + bin/windows/afm2pl.exe name afm2pl.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of afm2pl -containersize 14404 -containerchecksum 59761aa2d5a5cac8779c702b32eab4f8cf7794d520ec5dc0b0bd0cc41fd079b34155a0c582777aa2fc31ac9a06c76cc31202a59ea7b91dea7312684f18f2f5f0 +containersize 14428 +containerchecksum 66c15f9396dc2b38414e8c4b9a63366b36f3c04a75b414ade04d1bffac2369d644f6c6e857c2ba76bbb1b62e478f281255f10cacfb593306a6c8c66a7850dd26 binfiles arch=x86_64-cygwin size=8 bin/x86_64-cygwin/afm2pl.exe name afm2pl.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of afm2pl -containersize 40656 -containerchecksum 63501087582f0e33084676b6b0cbf954dcbc1696307f8811c3dc38bae60a0a4892d1d4c96c887fa8af81f91a19cd430d2dd204619705dc9bfcc31838a7cb7edb +containersize 40616 +containerchecksum c6ae77eb62b0932896db52ab7297c429290e1fc65ad03d9a040a7fd94109af83e3b2111880dc782781a6dc93c50fb1e5a7873da3ddb5e31fdfbcd2d292c8c3d1 binfiles arch=x86_64-darwinlegacy size=24 bin/x86_64-darwinlegacy/afm2pl name afm2pl.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of afm2pl -containersize 42412 -containerchecksum 33b7261673a1dd6bcf95299a8c96f76299f387f107a8008f5d4dac9fd00aef48c0edb47d7d7d9c57e3a612db7cd3625c83761b2386d050ccac0c8d54256cfbc3 -binfiles arch=x86_64-linux size=24 +containersize 42236 +containerchecksum cfc406a41aecf0fcc50a27ddc3d1572d68c35ed4d44a0f06f0a1b0fbaf08bf7e8f15c3dc1d5d64c43d0aa898ca80a55dda820716da49da712e59465991b5dc89 +binfiles arch=x86_64-linux size=25 bin/x86_64-linux/afm2pl name afm2pl.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of afm2pl -containersize 44016 -containerchecksum 9057db93a942016711d8e4cbe501d73bbb9a5860f69f3c5cdb354b36b18939eef3fba6ef6405a6553443b589d572d8a28b7792418a13cfad9e7caf17438f538b -binfiles arch=x86_64-linuxmusl size=26 +containersize 43600 +containerchecksum 600ae6bcd712915411a8226ce52c05d2596a0e84a66a94490f9bec7b25a98cf3e6339ba8335857aed79532f69295d2a3fd70db96b3acdbd9b28fb0265d58fc38 +binfiles arch=x86_64-linuxmusl size=25 bin/x86_64-linuxmusl/afm2pl name afm2pl.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of afm2pl -containersize 44352 -containerchecksum 5314ec4a27a58c20d2cf96cd502b8acb976983058951a51bf3770d8d581c7cd9fe5445daae533382e88368e00be8ba96f62c19fc5abbb02a4755f3c805d72bfe +containersize 44324 +containerchecksum d1120a44620026ca87eb6ea7b13bba3c0c4aa63d7982af56311248360b328e379800be81c622dc944d3e3872b16c026ec1b37cdb945ca80e2c34b49fb4a4d705 binfiles arch=x86_64-solaris size=26 bin/x86_64-solaris/afm2pl @@ -10745,27 +10829,27 @@ catalogue-version 0.2 name albatross category Package -revision 57416 +revision 65647 shortdesc Find fonts that contain a given glyph longdesc This is a command line tool for finding fonts that contain a longdesc given (Unicode) glyph. It relies on Fontconfig. depend albatross.ARCH -containersize 2828456 -containerchecksum 78f4df49c5d7e4bc942ee80e1e9e7282d3b90b00af2cb946c52fca223b224dbf26c385f81d7a5c05e27e8e52b8de7c1197667e6ee699f8e8834d0d8739bc5f83 -doccontainersize 99644 -doccontainerchecksum 3501da3f5dd2ed9830029f4880e59ec6a837ae6063fc7abf6b3d2cee0357c2fab2c7747676a0a1d719e68cb512e680fd0a2eb77ba09993f86f5e32ae5f8e40bc -docfiles size=42 +containersize 5078704 +containerchecksum 3ca4c3ff3fdbb1b865e62fa96e984f94761bbce1de24cf09d7e5bdee3b4361c6536cfbd2119aeb6aa5df842228004cb78a27e2aa9e5e957cff59ef82b9fb459e +doccontainersize 107996 +doccontainerchecksum dfc9cb6a72ec80fe5f240a8c50c8c98167d069cf13e3502ba281991deadccd094e369a2ef2ae6b089064de77d937c45ad3a3dc70c06fe6fc5e39190b7d652189 +docfiles size=46 texmf-dist/doc/man/man1/albatross.1 texmf-dist/doc/man/man1/albatross.man1.pdf texmf-dist/doc/support/albatross/README.md details="Readme" texmf-dist/doc/support/albatross/albatross-manual.pdf details="Package documentation" texmf-dist/doc/support/albatross/albatross-manual.tex texmf-dist/doc/support/albatross/version.tex -srccontainersize 4824 -srccontainerchecksum fadc69184b89a4d664f9fc8b3d7d18ca3bf9cfc49c62ada68f7b265cf3cc9b196e06b086058bce2f842200f754e8c5f1eb16b5c4f17a9cfa00166d3ae64ceef1 -srcfiles size=2 - texmf-dist/source/support/albatross/albatross-0.3.0-src.zip -runfiles size=766 +srccontainersize 11296 +srccontainerchecksum 93b72dbb855302d42faed5be48e2e4f11ba7b91212a296eac0cda3f13c0eb89e857decff834f7cf05b9164d2ee2ef8eb6174f077026b285dded75e10c1086a2e +srcfiles size=4 + texmf-dist/source/support/albatross/albatross-0.5.0-src.zip +runfiles size=1342 texmf-dist/scripts/albatross/albatross.jar texmf-dist/scripts/albatross/albatross.sh catalogue-contact-bugs https://gitlab.com/islandoftex/albatross/-/issues @@ -10773,8 +10857,8 @@ catalogue-contact-repository https://gitlab.com/islandoftex/albatross/ catalogue-contact-support https://gitter.im/Island-of-TeX/community catalogue-ctan /support/albatross catalogue-license bsd3 -catalogue-topics unicode font-util -catalogue-version 0.3.0 +catalogue-topics unicode font-sel +catalogue-version 0.5.0 name albatross.aarch64-linux category Package @@ -10812,15 +10896,6 @@ containerchecksum 78923c9d8619692a29b41f3874a124a3cf649eee78a6116a3fb60af0c1fb8c binfiles arch=armhf-linux size=1 bin/armhf-linux/albatross -name albatross.i386-cygwin -category Package -revision 57089 -shortdesc i386-cygwin files of albatross -containersize 340 -containerchecksum 9e7676e40c65e93db2b1852b9cb11c4a6c31bbd3ec21e30bc4e0779ee4abf7a7a99456f646a581a2cf682fda2658c2396a7858cfda86aca7771e1454bb5bdc40 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/albatross - name albatross.i386-freebsd category Package revision 57089 @@ -10866,14 +10941,14 @@ containerchecksum 107c66c52898ae5a4d90da608b45d35d45c115be3a3ce21a4a300d7687aeb8 binfiles arch=universal-darwin size=1 bin/universal-darwin/albatross -name albatross.win32 +name albatross.windows category Package -revision 57420 -shortdesc win32 files of albatross -containersize 680 -containerchecksum b6b3f4415412deb19038b0f91272aedba0d9e78605eebb2ae979f9ee2473b40b081aa6963570e78e6146e1283a835338cb521f74c955d2b6bb789d0bd183fcb6 -binfiles arch=win32 size=1 - bin/win32/albatross.exe +revision 65891 +shortdesc windows files of albatross +containersize 2308 +containerchecksum b06d55bbf5c70122d70c75cb891ac771423b618bf357286b27cfb2ba80bd8e02fc92a7ae718c6c7a14c4f452a1f859018700a4b4c540901b374ef081abc084b3 +binfiles arch=windows size=2 + bin/windows/albatross.exe name albatross.x86_64-cygwin category Package @@ -10920,9 +10995,34 @@ containerchecksum 3a88f6538dd7f22302b6b4878f229cbdefa0d690842ee4e8181c4d2fd32652 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/albatross +name alchemist +category Package +revision 66548 +shortdesc Typeset alchemist and astrological symbols +relocated 1 +longdesc This style file makes the alchemical and astrological symbols +longdesc accessible in Unicode. +containersize 3152 +containerchecksum fb9d0b5bc8149c9d364f922bc8f59f029751873cb276edb942a27d5a8f231f4c92f82571032deeb99cae537974c316b528c3db16f62526f43fb1297e0c38735c +doccontainersize 144280 +doccontainerchecksum e8e90471d4cfdc38ad6e67be4fd3f9173b55d5a90c0809c630b24118172082400108c883b4a7ea73542d971f31f657236f42a1d7174af43d535ead2dd185a7f5 +docfiles size=49 + RELOC/doc/fonts/alchemist/README.md details="Readme" + RELOC/doc/fonts/alchemist/alchemist-ref.bib + RELOC/doc/fonts/alchemist/alchemist.pdf details="Package documentation" + RELOC/doc/fonts/alchemist/alchemist.tex + RELOC/doc/fonts/alchemist/manual.sty +runfiles size=4 + RELOC/tex/latex/alchemist/alchemist.sty +catalogue-also starfont +catalogue-ctan /fonts/alchemist +catalogue-license gpl lppl +catalogue-topics astrology +catalogue-version 1.00 + name alegreya category Package -revision 54512 +revision 64384 shortdesc Alegreya fonts with LaTeX support relocated 1 longdesc The Alegreya fonts are designed by Juan Pablo del Peral for @@ -10932,10 +11032,10 @@ longdesc facilitates the reading of long texts. The italic has just as longdesc much care and attention to detail in the design as the roman. longdesc Bold, black, small caps and five number styles are available. execute addMap Alegreya.map -containersize 24434164 -containerchecksum 7136053c90b3c9ae5744a1740e44008b3fea0a25323cb9033a6c2a2d1c72a024645626903913485af24ee08a9614d3fd6e9ba79dfd2206ec29c0fc1b1b98a21c -doccontainersize 1107112 -doccontainerchecksum fb152014915f9bf56ded5eef117169453923a86a8dfb165facd4e3e1db278f31aeab91e49e5e66d6d4a08ea10cba91ee762b4937f75f9623c77ff73b37965ddd +containersize 23710500 +containerchecksum 2bd5aa12890cecfa42b119f456ea63bf8b8f64edc4e2c55ed738cd24a80527245b0219330e1dc89e0a10e8ca17bb17ba928056ebf69955f2481d468a5cf97104 +doccontainersize 1107116 +doccontainerchecksum dcff5d4a47c3649155a79659012aa07123e5108b85804da9c1697d1f93d7b336ef7e37e1272c8e2e8f283971bfbfebc2e0cd2ebae3ff8ee69531629635ed7d74 docfiles size=274 RELOC/doc/fonts/alegreya/OFL.txt RELOC/doc/fonts/alegreya/README details="Readme" @@ -15501,7 +15601,7 @@ catalogue-topics font font-body font-serif font-sans font-proportional font-t1en name aleph category Package -revision 57972 +revision 66203 shortdesc Extended TeX longdesc An development of omega, using most of the extensions of TeX longdesc itself developed for e-TeX. @@ -15514,10 +15614,11 @@ depend latex depend plain execute AddFormat name=aleph engine=aleph options=*aleph.ini fmttriggers=cm,hyphen-base,knuth-lib,plain containersize 540 -containerchecksum 7d9241eab3e1e34f8c1aef85c4f2278680cd147cc4f188194c8c27147df3b9bf2a3bee7c651227aac79996e0745124990950ddc010a4f6662fda4a2f72575211 -doccontainersize 30580 -doccontainerchecksum 87de188abf9880f2e680d6582cfb20d8166eb0c3ed2d3a85971eeac6ba8abea2d7f46b8037c26b719c1289f778d4e94ae1813598e73f8f56f6224e3299852cf6 -docfiles size=12 +containerchecksum 326c0c2327ec391a2e6caa5b7bed74af44be58df05b58dd2d2ed68ac96151282f63cc51dcfad7b84f3fa716b9df1d9fe97e27e4ebefe81d40a1e0ddf06be48e4 +doccontainersize 33756 +doccontainerchecksum 33dbdb3fc2ed1cb698b1b3a1826771475b27e33c19ab102b5f0f403f670abd10330dbdb4223d9f5b96cff001a14dc8d25ecc9a084a612b9db8a1cc6a70bec090 +docfiles size=15 + texmf-dist/doc/aleph/base/ChangeLog texmf-dist/doc/aleph/base/News texmf-dist/doc/aleph/base/readme.txt texmf-dist/doc/man/man1/aleph.1 @@ -15530,146 +15631,137 @@ catalogue-topics engine omega name aleph.aarch64-linux category Package -revision 58389 +revision 66237 shortdesc aarch64-linux files of aleph -containersize 244028 -containerchecksum 70e8e40cdaf3527c80bdd5c00ef201f90c5d8f42e1dcf11bee1383bf55b0928492c4eb9cc0e4930e7d476a68f903bd917000de8820db6a330ab5ec1a22dd9328 +containersize 244480 +containerchecksum fe4724df475cfec10d4702c42d2bda2c3cb1fba2e52ff6b1a5f0d039baa27a57b1ce0b40fc724228f724741608fde327426e4a33de8677b894175b9771f2c6d7 binfiles arch=aarch64-linux size=162 bin/aarch64-linux/aleph name aleph.amd64-freebsd category Package -revision 58388 +revision 66084 shortdesc amd64-freebsd files of aleph -containersize 295704 -containerchecksum b4791fde807ed2dbdbb2346e1e6e5e55739bf6743c62a6a2b21f503e0a46cce46b91a361c1522300fbc1dc19900576c3320e4af3cfceefaa1a68cc363aef1411 -binfiles arch=amd64-freebsd size=190 +containersize 295852 +containerchecksum 5ea961820f29c8009d893d9ad53e62d3c5e25e2dd2a626347a453cd9ac5b87c8c3130718204a4eac4b42de59b3055afecda13207b8e3953fb8f40a9a0d5d9fe9 +binfiles arch=amd64-freebsd size=191 bin/amd64-freebsd/aleph name aleph.amd64-netbsd category Package -revision 58386 +revision 66083 shortdesc amd64-netbsd files of aleph -containersize 219860 -containerchecksum 4e73e6dc8560d68a02812da9aa6b224f67845967518d838ee7a19b6271effa0113ea78d89791e5ad8f100a69ae94ee21ac99e2b6533f9be1691293ba27f5ffe8 -binfiles arch=amd64-netbsd size=192 +containersize 220292 +containerchecksum 3227174f0a6121c7aec29276011dd84660de9a3aee2ae4dee5a47e025f4a9222f83cbdc1d614ddb5af86efd3b27ab59c768bbedf846e586789bc96d234843dd6 +binfiles arch=amd64-netbsd size=193 bin/amd64-netbsd/aleph name aleph.armhf-linux category Package -revision 58428 +revision 66237 shortdesc armhf-linux files of aleph -containersize 204568 -containerchecksum 6d7003241a694c3ccaa44eb4fd0ec232dd89e1ad8ef3af2390a8aef4a40cd3bf97b4848c6792397c1ad9fe6f7303a5ab87081aa6895a00c02fdba3edeaebe1c3 -binfiles arch=armhf-linux size=122 +containersize 205912 +containerchecksum 480aac7501a18507dddc988463ab11e0b7c2829fe185559a6e46dae11c56f5be8e972d3518a2311f44bddbe265da2e7606ec74db08fe47c7cef5e02a9d487de3 +binfiles arch=armhf-linux size=123 bin/armhf-linux/aleph -name aleph.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of aleph -containersize 191084 -containerchecksum ee5f9020bd5fe2fa631f921be5ed1f3527cad798bc54b319454bdd93c737c7de01b42f20017e8192886bd8254e6725d6fcca783db3fa8830b4e0a97959af0ffb -binfiles arch=i386-cygwin size=124 - bin/i386-cygwin/aleph.exe - name aleph.i386-freebsd category Package -revision 58388 +revision 66084 shortdesc i386-freebsd files of aleph -containersize 219408 -containerchecksum 639bedc7e9fdab0e487b13cc69271649752d0b5a58ece81c0e616c213f8cb0815366b81fc7196db13bacdf687caf9ee474e3465ca9e570eee322a05c8dc277ad -binfiles arch=i386-freebsd size=170 +containersize 222312 +containerchecksum edb22dc72cbcdfad783d676dcffadff063534a416aae1447db53fe1e9c01e77be6eef03c32022435eab6cb9c50e604d33a341be504d95985fdd792eff44dfacb +binfiles arch=i386-freebsd size=171 bin/i386-freebsd/aleph name aleph.i386-linux category Package -revision 58378 +revision 66084 shortdesc i386-linux files of aleph -containersize 229596 -containerchecksum 4ac00b097757f1d046e8b8334c72627fa29ff4de9588669a6528e133e33beb835c3254e98526bc7f5a0eadfed44af05e54659ce9042cdf7f67f4480533e36ae7 -binfiles arch=i386-linux size=146 +containersize 231180 +containerchecksum dc2a095df5a82cf00b67705fbf64d2ae2e8f98e4e2ef534d1a00da262261ae70af6c0938577d11308f6967ec9ae6af9e6f336e1a8f709e0acb66b1357dd4a3c9 +binfiles arch=i386-linux size=148 bin/i386-linux/aleph name aleph.i386-netbsd category Package -revision 58386 +revision 66083 shortdesc i386-netbsd files of aleph -containersize 164476 -containerchecksum 8e3aa205232383a5aa6e6fb5176464a0f445be67abfeba4994de51ed94a1aaae280ffca29f313d2fadc1125d87197dacc3fa7db5a365b5560c0d77f4c48d10d8 -binfiles arch=i386-netbsd size=168 +containersize 164856 +containerchecksum 6fd5a794a62b0de98db803e6fdb18e3e4db58aad611a482e18437547971d1cd449bcd85347088f297ad34accc6dab0f2cc5c991a2af5acce618b6b450e645faa +binfiles arch=i386-netbsd size=169 bin/i386-netbsd/aleph name aleph.i386-solaris category Package -revision 58388 +revision 66145 shortdesc i386-solaris files of aleph -containersize 221708 -containerchecksum 3d29fb7c46fc5e1c43f4c560905336315a0869c9d56a2a74239f1abb28e355471c1eae5a78dbec057c5e9ca645684f7725c24c86bf4f229b6cc520c99516bf3c -binfiles arch=i386-solaris size=135 +containersize 222228 +containerchecksum 2408c08935d2378e06d56904a114f96e1d463d91c9c49258bbc6d9b4cb25a79e0fc67e0989bbbd5785131e395f4bfdb77ac2c7a3838b4ae80a36fcaee00cf299 +binfiles arch=i386-solaris size=136 bin/i386-solaris/aleph name aleph.universal-darwin category Package -revision 58418 +revision 66107 shortdesc universal-darwin files of aleph -containersize 561720 -containerchecksum b471f2f2412c873287472b3b98feac730cac6f8cbb362eacbe84d9d671195af0ede0ba7c7b07b554083b4f610e25daaeedc1a35d31fdcf84675e9842b2739581 -binfiles arch=universal-darwin size=421 +containersize 564048 +containerchecksum 89419b82dc5f5f78ce5006f7aadc0e5204d7e491dc4862b840eeefa466be51cba05fe63c3a32836219791a87c26ad48426ec0fa35bfac3d77847570e7679a6d0 +binfiles arch=universal-darwin size=425 bin/universal-darwin/aleph -name aleph.win32 +name aleph.windows category Package -revision 59028 -shortdesc win32 files of aleph -containersize 181444 -containerchecksum 8b4ae93e6f4147f5b78aa0b2881b9094f1a3730baecc69273d90912aacbedf68baae775378fecd560c4085f4bcc32dda6667822d48cf3455db38d5c683e85d12 -binfiles arch=win32 size=113 - bin/win32/aleph.dll - bin/win32/aleph.exe +revision 66043 +shortdesc windows files of aleph +containersize 221640 +containerchecksum 1e03f4e637676c0ca987caef91a3c31c308261f47b05586bb76ba36ca29db8adfcb3d1f6e6f250dbe0dc1c2b2b337be2d0a0d2c4b7f026c20db14ae4115ef373 +binfiles arch=windows size=130 + bin/windows/aleph.dll + bin/windows/aleph.exe name aleph.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of aleph -containersize 224656 -containerchecksum 478fa178e4af4dca6ab0eb85371bfe265e858392bb8a71ff757b4d7b6018ef4175098d6c0e8ca987b5d541b0be04e83f927459e963c10f354321867bdfd25ad0 +containersize 225364 +containerchecksum 138afc5f7855cda80508135e823426f328b6d6e35e9df672175bc3565bdd0e8d0c45729a65ceab074035887cef7f995bfb97dc5c4295833e9a00ca8bb205bbd6 binfiles arch=x86_64-cygwin size=127 bin/x86_64-cygwin/aleph.exe name aleph.x86_64-darwinlegacy category Package -revision 58388 +revision 66084 shortdesc x86_64-darwinlegacy files of aleph -containersize 230240 -containerchecksum d7c3f2e40ebef937464d98cdfa4cc961f222f2c9ef7514ea52c031829c53d316c00bb5a6df90c14510fed9f7ea13395d173fbd942c92af1ec3b5ad8b3085a8e1 +containersize 230592 +containerchecksum dd62a4b9cb31ba46ebef779c8dbea16c28c5eab66b0f15dac1aa6fa9aa6d4b785d47233285e5fe795730d5bac33bdad79ce808638f1b96892f77127ea3c269a2 binfiles arch=x86_64-darwinlegacy size=132 bin/x86_64-darwinlegacy/aleph name aleph.x86_64-linux category Package -revision 58378 +revision 66084 shortdesc x86_64-linux files of aleph -containersize 247640 -containerchecksum 02e007ab1278a2864db2b0434789005c98d9028d41b1832cbc4eb3f9425ee76b77f2e89b8cf44ae403d0e580e49eda4cd098b98eac0bd7994665876dcfdb7068 +containersize 249996 +containerchecksum 271f4bfce170792c851fb305a5684272b7851daa2b9a88c031349d351bf9cba1ee4e36a5eb9a97717aba59a5a8df474be46f5288d21bf9e6f4b0e437aeb06b20 binfiles arch=x86_64-linux size=138 bin/x86_64-linux/aleph name aleph.x86_64-linuxmusl category Package -revision 58378 +revision 66084 shortdesc x86_64-linuxmusl files of aleph -containersize 254656 -containerchecksum ba328f35c8da6486c59f345d20e3cb48134257c321a1810d2784a7dd70acc397ea5b12f241d94ea1d173b9354256451e796b8663323e7b2fcc9fa5d13be12547 -binfiles arch=x86_64-linuxmusl size=151 +containersize 258724 +containerchecksum 797c165ac76da716ed4324f191c16a44f15c007ec8b22d98a9ef6da407b59bbe09fca0fa10652433acd10065405f6eb099f0cef7bbc4d8ec8e73cddd79a87d48 +binfiles arch=x86_64-linuxmusl size=146 bin/x86_64-linuxmusl/aleph name aleph.x86_64-solaris category Package -revision 58388 +revision 66145 shortdesc x86_64-solaris files of aleph -containersize 263508 -containerchecksum 82f8811b2cd9b00aa97c13e6043aa7036e0c6dc8a4d39edc9fbd116def80b680d4462152c0a345dbfe8a4f2ebbfad17a2cfc0c7d97cea924f6160534c48c571c +containersize 264020 +containerchecksum 48d7d90b0fa2256c4f3a9f87dd14308a64fb4967dd55f6ff7552b6c6eecc72a83793864dc2a21010ac492ee598b69f436068232d080002695d515eef9dad7a07 binfiles arch=x86_64-solaris size=150 bin/x86_64-solaris/aleph @@ -16150,7 +16242,7 @@ catalogue-version 0.1 name algpseudocodex category Package -revision 56125 +revision 65860 shortdesc Package for typesetting pseudocode relocated 1 longdesc This package allows typesetting pseudocode in LaTeX. It is @@ -16161,21 +16253,22 @@ longdesc guide lines and the ability to draw boxes around parts of the longdesc code for highlighting differences. This package also has better longdesc support for long code lines spanning several lines and improved longdesc comments. -containersize 6912 -containerchecksum e1cffa46708ef8d6479aeabca45e5d17bf14edfb25973fba5e3e006c0067138a432adfde0ad76f6ec0bafd327d1b2d74dddaf1b131732b5aa267b7fd898b4ef7 -doccontainersize 333648 -doccontainerchecksum 5fa75ffc7847685bdc124faabf54a9bb45a8cc7dfda7df07f9d6c5180038be318190b20ad1fad3fa6d1f6b2e3a267ebf82505e7ff1626546b3846dcf935cae90 -docfiles size=95 +containersize 9192 +containerchecksum 7b69eddad12567fb6fea17a3205c56e695ba73015143239def94e56adde3194dc847ee049ccbdde15e5a402be02c0aa7459f9ad20b1c2e0a1150ac06cc3f24e2 +doccontainersize 352120 +doccontainerchecksum 2ea383e6427973ae31d54d8f04cb45e2ffe649310c66d8d9866160ac7f71af786ab0899b48bc8f7c704fc8b54063df3a5e786d7d808aabc371eea96dc00fdfc6 +docfiles size=93 RELOC/doc/latex/algpseudocodex/README.md details="Readme" - RELOC/doc/latex/algpseudocodex/documentation.pdf details="Package documentation" - RELOC/doc/latex/algpseudocodex/documentation.tex -runfiles size=8 + RELOC/doc/latex/algpseudocodex/algpseudocodex.pdf details="Package documentation" + RELOC/doc/latex/algpseudocodex/algpseudocodex.tex +runfiles size=10 RELOC/tex/latex/algpseudocodex/algpseudocodex.sty +catalogue-contact-bugs https://github.com/chrmatt/algpseudocodex/issues catalogue-contact-repository https://github.com/chrmatt/algpseudocodex catalogue-ctan /macros/latex/contrib/algpseudocodex catalogue-license lppl1.3c catalogue-topics pseudocode -catalogue-version 1.0 +catalogue-version 1.1.0 name algxpar category Package @@ -16737,7 +16830,7 @@ catalogue-version 2.1.1 name almendra category Package -revision 56035 +revision 64539 shortdesc Almendra fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX @@ -16747,10 +16840,10 @@ longdesc Its style is related to the chancery and gothic hands. There longdesc are regular and bold weights with matching italics. There is longdesc also a regular-weight small-caps. execute addMap almendra.map -containersize 314792 -containerchecksum 4e3a7334755c0f1a1d092904cee87a0aa72cbe843901df81b010d1e63a197d9c922223ff4247fa2557a5017e62ab9ee06958058c955ca56afb4cc0aad857eb0f -doccontainersize 29928 -doccontainerchecksum 6674ae47d682e1817263e03f61307af2a6e5ecefe9de30a559ef39d188c0fb80da37ea73b39076e6c38d9c8c7b2513e5e893ab15e198669ad419b30ab7742b53 +containersize 314788 +containerchecksum 9bfdffc9a634df297dc9b5c406c0681ad78b81619900126110b978bc5a7a2ec0f91a1e351100281c794972d87f33c7088725f55928e120a743001080887ad4b3 +doccontainersize 28496 +doccontainerchecksum 477d5d068353d06e591af13e7e970cccd3d5229765f89150e4d9bb5f1de2b0283e4212bc475fdd6771f4e33f046a3e64dd4ca794c3691af95f7e36f77c7eed76 docfiles size=11 RELOC/doc/fonts/almendra/OFL.txt RELOC/doc/fonts/almendra/README details="Readme" @@ -16933,16 +17026,16 @@ catalogue-version 0.03 name alpha-persian category Package -revision 50316 +revision 66115 shortdesc Persian version of alpha.bst relocated 1 longdesc The package provides a Persian version of the alpha BibTeX longdesc style and offers several enhancements. It is compatible with longdesc the hyperref, url, natbib, and cite packages. -containersize 7452 -containerchecksum 9907067b5353b62bb2d25833231c3152974f7f0826237e6b18007043a420018c7901505fcbec45414ba67ca8f90f0213c512b16cbd342413ec000144b5fcb1f2 -doccontainersize 4484924 -doccontainerchecksum aaae11a4d64fcd05b9a98d324356c9b206bf22d5a744f6d9bd124e1c53f2df3ffd7f2901dd63a8dc2addd9783212792e2e3bbc789b1376e8f5f1d5fd28ea3ed3 +containersize 7420 +containerchecksum dc0344deccdbdac04c5a798a52785e913d6da3997b907a07894f86b1b3ed12640a870eabec3bf5916f9835a8a405ae4c692bfb70a63022cf8b52db0c2c3e1382 +doccontainersize 4484928 +doccontainerchecksum a5881df317b723fff5e00a89706584d05d650971a4bd88d3e3f71df1e7dc021289f9737d1d5239d6196be29307599c3bc1ff782c190032dbea9bea0140547866 docfiles size=2423 RELOC/doc/bibtex/alpha-persian/README.txt details="Readme" RELOC/doc/bibtex/alpha-persian/alpha-persian-l.userguide.pdf details="Package documentation (English)" @@ -16982,7 +17075,6 @@ docfiles size=2423 RELOC/doc/bibtex/alpha-persian/xelatexsample.tex runfiles size=10 RELOC/bibtex/bst/alpha-persian/alpha-persian.bst -catalogue-contact-home http://uselatex.com/blog/ catalogue-contact-repository http://qa.parsilatex.com/questions catalogue-contact-support http://qa.parsilatex.com/questions catalogue-ctan /biblio/bibtex/contrib/alpha-persian @@ -17020,6 +17112,71 @@ catalogue-license lppl1.3 catalogue-topics numbers catalogue-version 2.6 +name alterqcm +category Package +revision 59265 +shortdesc Multiple choice questionnaires in two column tables +relocated 1 +longdesc The alterqcm package is a LaTeX2e package, for making multiple +longdesc choices questionnaires in a table with two columns. The aim is +longdesc to provide some useful macros to build QCM in tables. These +longdesc macros may be used by only LaTeX TeX users. The package works +longdesc with utf8, pdfLaTeX, LuaLaTeX and XeLaTeX (with some +longdesc languages). The documentation is in English. +containersize 6916 +containerchecksum 6af82517cdbc64453b7e546afe4886ba6816d44492ca4fce9cec98035166b45bc432503db0c09c44e2e41f3bf8cf18c33a37199025a6f09dce6fdd2849973fcd +doccontainersize 1078332 +doccontainerchecksum f16c2591c79aa8d9f98f36c613617b3068495f814db73bc330d11f6a52b4a6b394a663040de328e6251f16d21acf683adb6cc80a5ce6524c09fac8397439f8b9 +docfiles size=343 + RELOC/doc/latex/alterqcm/README.md details="Readme" language="en" + RELOC/doc/latex/alterqcm/article_post.pdf + RELOC/doc/latex/alterqcm/doc-aq-main.pdf details="Package documentation" + RELOC/doc/latex/alterqcm/examples/iut/qcm-1.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-10.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-2.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-3.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-4.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-5.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-6.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-7.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-8.tex + RELOC/doc/latex/alterqcm/examples/iut/qcm-9.tex + 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_2.tex + RELOC/doc/latex/alterqcm/examples/latex/example_3.tex + RELOC/doc/latex/alterqcm/examples/latex/lang_chinese.tex + RELOC/doc/latex/alterqcm/examples/latex/lang_german.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/test_language.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/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/doc-aq-def.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-excomp.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-first.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-globales.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-greek.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-main.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 +runfiles size=7 + RELOC/tex/latex/alterqcm/alterqcm.sty +catalogue-ctan /macros/latex/contrib/alterqcm +catalogue-license lppl1.3 +catalogue-topics exam +catalogue-version 4.42c + name altfont category Package revision 15878 @@ -17054,38 +17211,39 @@ catalogue-license gpl catalogue-topics font-supp catalogue-version 1.1 -name ametsoc -category Package -revision 36030 -shortdesc Official American Meteorological Society LaTeX Template -relocated 1 -longdesc This bundle contains all the files necessary to write an -longdesc article using LaTeX for the American Meteorological Society -longdesc journals. The article and bibliography style files are provided -longdesc (with documentation) and a blank template for authors to use -longdesc when writing their article. Also available is a separate style -longdesc package used to format a two-column, journal page layout draft -longdesc for the author's personal use. -containersize 16160 -containerchecksum 34d99bedd34ea4195d4b0f60560c80c7d3624c2dcb3137a559eaa1b5a16bf465c39a0c54b6a5e64d2488dd7d4c1c82636d7c3adcee3e2e687a66b51b96fe6c48 -doccontainersize 5648 -doccontainerchecksum 80b64ca57599aab07dbd0d000e67fd002a19a8d8227bf9d635bbbefe84417d1f99cd75d81ff67e0d7a7e28231ab5438b4e51e90bbb5405f566877a4ec87b8d48 -docfiles size=6 - RELOC/doc/latex/ametsoc/README details="Readme" - RELOC/doc/latex/ametsoc/README.TEXLIVE - RELOC/doc/latex/ametsoc/references.bib - RELOC/doc/latex/ametsoc/template.tex -runfiles size=18 - RELOC/bibtex/bst/ametsoc/ametsoc2014.bst - RELOC/tex/latex/ametsoc/ametsoc.cls -catalogue-ctan /macros/latex/contrib/ametsoc -catalogue-license lppl -catalogue-topics journalpub -catalogue-version 4.3.2 +name altsubsup +category Package +revision 62738 +shortdesc Subscripts and superscripts with square brackets +relocated 1 +longdesc A LaTeX package to write alternative and customisable +longdesc subscripts and superscripts, with square brackets in the source +longdesc code. +containersize 1572 +containerchecksum a3e168d93d3d7c2343a539329f8c7ace39f376e0008726affc77630e3d4032cdadc5c301cc15f94d92be4b98cf00bc2c95f29225fcd1def7bb66fd91c0db9c65 +doccontainersize 351632 +doccontainerchecksum e96020ae0cf52a851885326068d10210bc18d68df8047ecb84e40659015734c352c08a8d4f202aa3970b699131c032e36350a9c2ec4254e0f000e49b0029f3d4 +docfiles size=94 + RELOC/doc/latex/altsubsup/LICENSE + RELOC/doc/latex/altsubsup/README.md details="Readme" + RELOC/doc/latex/altsubsup/altsubsup.el + RELOC/doc/latex/altsubsup/altsubsup.pdf details="Package documentation" +srccontainersize 4952 +srccontainerchecksum eb79caa298cd000f6cb9e1c272b2abf788d7e5469bbcbba22bcb48e8b7e7c1f7774ceb9478aeb3588ec69280c5069f1b0c8c207918d44c772f32b558abcae35e +srcfiles size=5 + RELOC/source/latex/altsubsup/altsubsup.dtx + RELOC/source/latex/altsubsup/altsubsup.ins +runfiles size=1 + RELOC/tex/latex/altsubsup/altsubsup.sty +catalogue-contact-home https://gricad-gitlab.univ-grenoble-alpes.fr/labbeju/latex-packages/ +catalogue-ctan /macros/latex/contrib/altsubsup +catalogue-license lppl1.3 +catalogue-topics maths subsup-pos +catalogue-version 1.1 name amiri category Package -revision 55403 +revision 65191 shortdesc A classical Arabic typeface, Naskh style relocated 1 longdesc Amiri is a classical Arabic typeface in Naskh style for @@ -17096,25 +17254,24 @@ longdesc the font is named. The project aims at the revival of the longdesc aesthetics and traditions of Arabic typesetting, and adapting longdesc it to the era of digital typesetting, in a publicly available longdesc form. -containersize 495748 -containerchecksum 36e26c23ddc53de46250f95a0d4a608c7e43e781b56002a62bf96675297aa2e81c9454811b8063080937feab4dd5b1f3782bccff4a1d2376d8484c9d60295fdb -doccontainersize 99476 -doccontainerchecksum 3328c73a7203ca3239036063c7a65faa9119ccb4c1f7fe4229abf49a0bd8216e4bef1a93a18c452a0200d781240dc643888c2d278eb97edfcd1c716ae14478e2 -docfiles size=38 - RELOC/doc/fonts/amiri/Documentation-Arabic.pdf details="Package documentation (Arabic)" language="ar" - RELOC/doc/fonts/amiri/NEWS - RELOC/doc/fonts/amiri/NEWS-Arabic +containersize 467744 +containerchecksum ee2a1598a4040a069cfdaa275793b34bd8c899f65e888f41bec55fef53fae6312e3b9ad1a3dc024aaff1df22f735e0e633a1524b54d7ead9ff482ccc829e8aba +doccontainersize 24708 +doccontainerchecksum 8f50fd9ff492cec24fba7a321a4fdc25d5b427eac31609adbc9fba6a0bcaae8ed895aa6cc860a66106e22ae21dbe9984f9e37f4bc2451f77f5d89ea10d0f5e0a +docfiles size=26 + RELOC/doc/fonts/amiri/Documentation-Arabic.html details="Package documentation (Arabic)" language="ar" + RELOC/doc/fonts/amiri/NEWS-Arabic.md + RELOC/doc/fonts/amiri/NEWS.md RELOC/doc/fonts/amiri/OFL.txt - RELOC/doc/fonts/amiri/README details="Readme" - RELOC/doc/fonts/amiri/README-Arabic details="Readme (Arabic)" language="ar" -runfiles size=621 + RELOC/doc/fonts/amiri/README-Arabic.md details="Readme (Arabic)" language="ar" + RELOC/doc/fonts/amiri/README.md details="Readme" +runfiles size=507 RELOC/fonts/truetype/public/amiri/Amiri-Bold.ttf - RELOC/fonts/truetype/public/amiri/Amiri-BoldSlanted.ttf + RELOC/fonts/truetype/public/amiri/Amiri-BoldItalic.ttf + RELOC/fonts/truetype/public/amiri/Amiri-Italic.ttf RELOC/fonts/truetype/public/amiri/Amiri-Regular.ttf - RELOC/fonts/truetype/public/amiri/Amiri-Slanted.ttf RELOC/fonts/truetype/public/amiri/AmiriQuran.ttf RELOC/fonts/truetype/public/amiri/AmiriQuranColored.ttf - RELOC/tex/latex/amiri/Amiri.fontspec catalogue-contact-bugs https://github.com/alif-type/amiri/issues catalogue-contact-home http://amirifont.org catalogue-contact-repository https://github.com/alif-type/amiri @@ -17122,7 +17279,7 @@ catalogue-contact-support https://github.com/alif-type/amiri/issues catalogue-ctan /fonts/amiri catalogue-license ofl catalogue-topics font font-ttf arabic -catalogue-version 0.113 +catalogue-version 1.000 name amiweb2c-guide category Package @@ -17150,7 +17307,7 @@ catalogue-version 1.0 name amsaddr category Package -revision 29630 +revision 64357 shortdesc Alter the position of affiliations in amsart relocated 1 longdesc The package is to be used with the amsart documentclass. It @@ -17158,24 +17315,26 @@ longdesc lets you move the authors' affiliations either just below the longdesc authors' names on the front page or as footnotes on the first longdesc page. The email addresses are always listed as a footnote on longdesc the front page. -containersize 1912 -containerchecksum 98aecccedd2cbfe9e348a9ca6c66d82da07eac20bbc53dfc5ea79435a20e88bbdc4e17c85723824b216a212c509fcfe96b2b708353cbf7f93773514e5433d8f5 -doccontainersize 194712 -doccontainerchecksum dea731e32c5e02252db95deff66e4160ff3ac9c2b488b218098d9d82754a84d2d5821877c887f51086625c18d1bfb9c544dbb8d2fff4c5aa220463aa8c6d3fbe -docfiles size=49 - RELOC/doc/latex/amsaddr/README details="Readme" +containersize 1932 +containerchecksum 9452effac79a430126a8060827c603c8ce9ce441b187d2fff740a7e8f013727ac4187fa1c148d430ee17fbc1709b8e8f89465b2403ed070d0517304dd7f8aaad +doccontainersize 209324 +doccontainerchecksum 2d501a1adb6fff4f16f0d3f44e6911ccef824cbdfb9e9a61582a00d61d1e92d03fe93f7fe6d4f87eb2575422407e634dc7e543c1ab05a744014f4d3bdd68e3c8 +docfiles size=54 + RELOC/doc/latex/amsaddr/README.md details="Readme" RELOC/doc/latex/amsaddr/amsaddr.pdf details="Package documentation" -srccontainersize 4044 -srccontainerchecksum 007c3c63868f4f4c0fd324d93506ec1c511e7c278bfb81e5f51026248f033586ae8a60ff3b6cc0f94080bcfc7eda895eda21dd01f312ee63d5411eacd775104f +srccontainersize 4056 +srccontainerchecksum 473c8d5289ff0f780956d298cc1527d5abc157a442191f3a321c30ca0d8cc11808c609c71fa50c996d5354534e5b5a16c154cf870a2fbae8120b026d5c8713dc srcfiles size=4 RELOC/source/latex/amsaddr/amsaddr.dtx RELOC/source/latex/amsaddr/amsaddr.ins runfiles size=1 RELOC/tex/latex/amsaddr/amsaddr.sty +catalogue-contact-bugs https://github.com/jlelong/amsaddr/issues +catalogue-contact-repository https://github.com/jlelong/amsaddr catalogue-ctan /macros/latex/contrib/amsaddr catalogue-license lppl catalogue-topics article-like -catalogue-version 1.1 +catalogue-version 1.2 name amscdx category Package @@ -17352,7 +17511,7 @@ catalogue-topics docu-pkg maths-doc scientific-docs name amsfonts category Package -revision 29208 +revision 61937 shortdesc TeX fonts from the American Mathematical Society relocated 1 longdesc An extended set of fonts for use in mathematics, including: @@ -17375,10 +17534,10 @@ execute addMixedMap cmextra.map execute addMixedMap cyrillic.map execute addMixedMap latxfont.map execute addMixedMap symbols.map -containersize 3626276 -containerchecksum ff1256ae20f435327c12424613a15aa8f207e9133325e3a823ca7ef9951b8d52acb56cc69cbf9f3c0860ac43c9a74ae54154d1cd956d7e25612307dcc6e74585 +containersize 3626268 +containerchecksum 6a9f80bc8b6b2afc3ff6ad151a290743d37e10ddeaf7efa969f3fec40cab0492860496c7bf0abeb410124aeaaa15a53640017c8d12b630e68c59dfe186519e52 doccontainersize 1162540 -doccontainerchecksum fe0df1a9efc821e21adc0e21bcfaf2defb1749e3206d7dac8cd9b667747c37303cb2c69283a89aa8740fc3e08e8803408903a2a95eb0b91e910931a8333c2fca +doccontainerchecksum fe0917bf9d65d15155f287626edb17d692db7ef2e888fce30b867bb0c873b0166949b3b5f3965f70b6b237d7b874a7fd3411e53b87368acc7447dc0e8bda55f1 docfiles size=321 RELOC/doc/fonts/amsfonts/OFL-FAQ.txt RELOC/doc/fonts/amsfonts/OFL.txt @@ -17389,8 +17548,8 @@ docfiles size=321 RELOC/doc/fonts/amsfonts/cmmib57.pdf RELOC/doc/fonts/amsfonts/eufrak.pdf details="Eufrak package documentation" RELOC/doc/fonts/amsfonts/euscript.pdf details="Eucal and euscript package documentation" -srccontainersize 49152 -srccontainerchecksum 49a99f519fbba1ae7ba91ffe392b4c1bf7b9246ab573a4f2c8b41fa252f080efe66c5df2acc36a5ea9570e51d55890bd89565ec2174ca7aa98980b49aa060a98 +srccontainersize 49156 +srccontainerchecksum 4145ce58620f84133e8d7a7639fe376631c92398161283c69c9d1119c14e4d404ed067f2aff2fab7cc0c2249d1fcdea81591b45a1cc72bc08835b99ac8a5a6f7 srcfiles size=55 RELOC/source/latex/amsfonts/amsfndoc.cyr RELOC/source/latex/amsfonts/amsfndoc.def @@ -18015,7 +18174,7 @@ runfiles size=1879 RELOC/tex/plain/amsfonts/amssym.def RELOC/tex/plain/amsfonts/amssym.tex RELOC/tex/plain/amsfonts/cyracc.def -catalogue-contact-home http://www.ams.org/tex/amsfonts.html +catalogue-contact-home http://www.ams.org/arc/resources/amsfonts-about.html catalogue-ctan /fonts/amsfonts catalogue-license ofl catalogue-topics font font-maths font-symbol-maths font-bbd font-type1 font-mf @@ -18090,7 +18249,7 @@ catalogue-version 2.0 name amsmath category Package -revision 56514 +revision 63514 catalogue latex-amsmath shortdesc AMS mathematical facilities for LaTeX relocated 1 @@ -18106,11 +18265,11 @@ longdesc contributed packages add still further to its appeal; examples longdesc are empheq, which provides functions for decorating and longdesc highlighting mathematics, and ntheorem, for specifying theorem longdesc (and similar) definitions. -containersize 30860 -containerchecksum 6cf5b39f9b94f5f9d0ffeb021422ee7c04a15c6cbfc0e29e58386c386f356cb311b4cea9134c5211a6aa9e8b6f8a6d7af61960c6aa378887754d2450261b0665 -doccontainersize 2351400 -doccontainerchecksum eb71c5f8e5a05b76cc5cc1eb554843160d6592e4c802f8d0c4fa009489966350698b7fa37fd1fcac1a70e0ecebafd08dfadc81d069bd1a1867e09dd09295128c -docfiles size=667 +containersize 31240 +containerchecksum 3a1f01c2249557038d07f4294a378156cb1b83e9120164e88f5825e09c2d1d930e513d4e10d7db293072ff80cdd025fa52735de86056dc71d5a60742c19be85d +doccontainersize 2420512 +doccontainerchecksum 5280ae6e465401c08d1ba4a28f6f4cb0581aef8f1df1a6299ddb314356927991fb4db0db84fdcc3ab289c019c476c289a4775c776a96d18877273e75179f5626 +docfiles size=717 RELOC/doc/latex/amsmath/README.md details="General README" language="en" RELOC/doc/latex/amsmath/ams-external.txt RELOC/doc/latex/amsmath/ams-internal.txt @@ -18132,9 +18291,9 @@ docfiles size=667 RELOC/doc/latex/amsmath/technote.tex RELOC/doc/latex/amsmath/testmath.pdf details="Examples paper" language="en" RELOC/doc/latex/amsmath/testmath.tex -srccontainersize 65388 -srccontainerchecksum 2566262754978f25ba0bde06a1d6b161ff60e3306400a40e054c0408d932499ce54933e7b0a39875c0bd54ea8a88234e2503bee8a319a5b12388193eab1b0eda -srcfiles size=81 +srccontainersize 66312 +srccontainerchecksum 60817410435a93668e8e19e9e326833c49cf792fdef272d4ccf90ec62c8a9c0d27e7aceb3e1c74572fb44c291d9557309bdb818c4b10f520c0144df2d6286d37 +srcfiles size=82 RELOC/source/latex/amsmath/amsbsy.dtx RELOC/source/latex/amsmath/amsbsy.ins RELOC/source/latex/amsmath/amscd.dtx @@ -18186,7 +18345,7 @@ catalogue-topics docu-pkg italian-doc translation name amsrefs category Package -revision 30646 +revision 61937 shortdesc A LaTeX-based replacement for BibTeX relocated 1 longdesc Amsrefs is a LaTeX package for bibliographies that provides an @@ -18195,9 +18354,9 @@ longdesc files, but adapted to make direct processing by LaTeX easier. longdesc The package can be used either in conjunction with BibTeX or as longdesc a replacement for BibTeX. containersize 27428 -containerchecksum a0993aa374bf845952c934a421d2b344564726207245102dec82915a3cddf33ad8cb1f2d4d48d71ba0263fae0c24c78f0cc21e0b923a875af02d12c602a375d6 -doccontainersize 1938800 -doccontainerchecksum 2c472849194fb72453a541ba443b2232fbf876cd2d4071dd6e6eb65603845ac9715629bbc7b1f44dc0268a809a1a5d74a08f0dc27a81e9b30787a44d133bdd57 +containerchecksum 01416fea668e3717b14086199280582d7547cc7c555e19d2f88b7ee94dfb6863719375a140feaa5ecf7461c6d6c6f0ef52bffb544ff132b34771f11556ecdf09 +doccontainersize 1938804 +doccontainerchecksum b704ccb7bf8a49c141277b240e08ed7d22c71bdb91d625997a726b25ffb2e8f494637cd9ac7cee031f9b45476006441190ba95331e32c4ad3af4e25ecdcc6f6e docfiles size=522 RELOC/doc/latex/amsrefs/amsrdoc.pdf details="Package documentation" RELOC/doc/latex/amsrefs/amsrefs.faq @@ -18215,8 +18374,8 @@ docfiles size=522 RELOC/doc/latex/amsrefs/pcatcode.pdf RELOC/doc/latex/amsrefs/rkeyval.pdf RELOC/doc/latex/amsrefs/textcmds.pdf -srccontainersize 102004 -srccontainerchecksum 9cdfcb0e841f6dcfb23c5fac930d12cc610ae8002aed13a4867bf384fa0f177f834cb58482647c2daf7c52c0267f85e8dc4f93575b14fe58e2a634307b7bab49 +srccontainersize 102000 +srccontainerchecksum 81b8aa65cc79f08133a6390915ed7753db3439448b608ce04330e23c849f876ff2242403b9bb3e08b9642cb0362732adbcefcab9640e75260548dce3938baa25 srcfiles size=129 RELOC/source/latex/amsrefs/README RELOC/source/latex/amsrefs/amsrdoc.tex @@ -18252,7 +18411,7 @@ runfiles size=59 RELOC/tex/latex/amsrefs/rkeyval.sty RELOC/tex/latex/amsrefs/textcmds.sty catalogue-also biblatex -catalogue-contact-home http://www.ams.org/tex/amsrefs.html +catalogue-contact-home https://www.ams.org/arc/resources/amsrefs-about.html catalogue-ctan /macros/latex/contrib/amsrefs catalogue-license lppl1.3 catalogue-topics biblio @@ -18260,7 +18419,7 @@ catalogue-version 2.14 name amstex category Package -revision 57972 +revision 66186 shortdesc American Mathematical Society plain TeX macros longdesc AMS-TeX is a TeX macro package, originally written by Michael longdesc Spivak for the American Mathematical Society (AMS) during @@ -18288,10 +18447,10 @@ depend knuth-lib depend plain depend tex execute AddFormat name=amstex engine=pdftex options="-translate-file=cp227.tcx *amstex.ini" fmttriggers=amsfonts,cm,hyphen-base,knuth-lib,plain -containersize 38372 -containerchecksum d52e4a817f839c95b7718c65b6cba571443f9f25533a9c7412a69b3f15c89e995494ed812ead2ddac9f0952e0e842216a7fd443ecf2360f50a36107241397c19 -doccontainersize 410652 -doccontainerchecksum ed91ca4af98a72f081aa021b598ed58888150a73346d5d8da9ef7171f7d757c6d690169e1eb4b3e409ed8b988b8ffff9475f35ca7a443074080c1c9568ebaa0d +containersize 38380 +containerchecksum 7d309307df0f162f303f4077dbd92a1ef739906ec880b4a6dfd80443358a756d065c8f690e273d4b316016cff60e7ae0b29322d38ecd2a27c8914776643e3545 +doccontainersize 410788 +doccontainerchecksum 440cdecbf6397b0205dd3b0c9308b096d3f75075fa5d8890760ac2e2c7351293a76f4073bee4a6188c527f12999b752d96d5ddee31aaf0dad59edd95d44bf2cc docfiles size=203 texmf-dist/doc/amstex/base/README details="Readme" texmf-dist/doc/amstex/base/amsguide.pdf details="User's guide and installation details" @@ -18317,6 +18476,7 @@ catalogue-contact-home https://www.ams.org/arc/resources/amslatex-about.html catalogue-ctan /macros/amstex catalogue-license lppl catalogue-topics maths +catalogue-version 2.01 name amstex.aarch64-linux category Package @@ -18354,15 +18514,6 @@ containerchecksum 8c9db41ae350c152082ff850c686d6f59cf8def6dfcb1ff7fbfe904842c5f5 binfiles arch=armhf-linux size=1 bin/armhf-linux/amstex -name amstex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of amstex -containersize 324 -containerchecksum fc6dd4b4f0197e5d755c247859654f8273d3d9f360829d2ad19ecc885dfad8f49e9d0acc26ae7aa3032e749fb5eadf11b82bf13b8fbc26377296805e37a94d88 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/amstex - name amstex.i386-freebsd category Package revision 16472 @@ -18408,14 +18559,14 @@ containerchecksum b00ff8a3130902ec09483a23aaed4e712ef70b2e3a4ca541b53d8747261f72 binfiles arch=universal-darwin size=1 bin/universal-darwin/amstex -name amstex.win32 +name amstex.windows category Package -revision 57883 -shortdesc win32 files of amstex -containersize 864 -containerchecksum f3d3b33388747512ac3bba8848fc8e9ec08001604e29d1984b86beac6c8cf2c7da99d3929983cd71108bac2e651e06ba4379db61a697132b729df01d5c4b22bc -binfiles arch=win32 size=1 - bin/win32/amstex.exe +revision 65891 +shortdesc windows files of amstex +containersize 2332 +containerchecksum 7becf6cac23b87b7c807b2c224e4c22aeba345eb19abad679545c9e6714b0205936f26a24213517d2cf49f9d6de40ef883bad16a62eb0532fc723760b53b1777 +binfiles arch=windows size=2 + bin/windows/amstex.exe name amstex.x86_64-cygwin category Package @@ -18476,9 +18627,207 @@ docfiles size=32 RELOC/doc/latex/amsthdoc-it/amsthdoc_it.pdf RELOC/doc/latex/amsthdoc-it/amsthdoc_it.tex +name andika +category Package +revision 64540 +shortdesc andika fonts with support for all LaTeX engines +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Andika family of fonts designed by SIL +longdesc International especially for literacy use, taking into account +longdesc the needs of beginning readers. The focus is on clear, +longdesc easy-to-perceive letterforms that will not be readily confused +longdesc with one another. +execute addMap andika.map +containersize 2853924 +containerchecksum 4da9904459345033aa87deeb0019c8c4a39fbafcd59d973717ed2c4a410ece528944c69669b6a5ecf6ef8bb790f60bba909468e001485c405e7cf8775b7533e5 +doccontainersize 469112 +doccontainerchecksum 50684857dc25ad942aff18eedec04c9e27e4e408f748c208f8527c5096e600d26769ec6f82e2f02e72ab472dfb662f12bb009156293a12daa2dc0676d63ed446 +docfiles size=180 + RELOC/doc/fonts/andika/OFL.txt + RELOC/doc/fonts/andika/README details="Readme" + RELOC/doc/fonts/andika/about.md + RELOC/doc/fonts/andika/about.pdf + RELOC/doc/fonts/andika/andika-samples.pdf details="Font samples" + RELOC/doc/fonts/andika/andika-samples.tex + RELOC/doc/fonts/andika/announcement.md + RELOC/doc/fonts/andika/charset.md + RELOC/doc/fonts/andika/charset.pdf + RELOC/doc/fonts/andika/design.md + RELOC/doc/fonts/andika/design.pdf + RELOC/doc/fonts/andika/developer.md + RELOC/doc/fonts/andika/developer.pdf + RELOC/doc/fonts/andika/faq.md + RELOC/doc/fonts/andika/faq.pdf + RELOC/doc/fonts/andika/features.md + RELOC/doc/fonts/andika/features.pdf + RELOC/doc/fonts/andika/history.md + RELOC/doc/fonts/andika/history.pdf + RELOC/doc/fonts/andika/index.md + RELOC/doc/fonts/andika/index.pdf + RELOC/doc/fonts/andika/resources.md + RELOC/doc/fonts/andika/resources.pdf + RELOC/doc/fonts/andika/support.md + RELOC/doc/fonts/andika/support.pdf + RELOC/doc/fonts/andika/versions.md + RELOC/doc/fonts/andika/versions.pdf +runfiles size=1314 + RELOC/fonts/enc/dvips/andika/a_4x6wej.enc + RELOC/fonts/enc/dvips/andika/a_5kj227.enc + RELOC/fonts/enc/dvips/andika/a_d7tkvq.enc + RELOC/fonts/enc/dvips/andika/a_fh3q3k.enc + RELOC/fonts/enc/dvips/andika/a_fryoln.enc + RELOC/fonts/enc/dvips/andika/a_gn36ar.enc + RELOC/fonts/enc/dvips/andika/a_hrgzjy.enc + RELOC/fonts/enc/dvips/andika/a_k2qdsf.enc + RELOC/fonts/enc/dvips/andika/a_lqpsni.enc + RELOC/fonts/enc/dvips/andika/a_q2mpm3.enc + RELOC/fonts/enc/dvips/andika/a_slnzzz.enc + RELOC/fonts/enc/dvips/andika/a_xvqrq2.enc + RELOC/fonts/enc/dvips/andika/a_zn43lu.enc + RELOC/fonts/enc/dvips/andika/a_zvjtl6.enc + RELOC/fonts/map/dvips/andika/andika.map + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-t1.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/andika/andk-tlf-ts1.tfm + RELOC/fonts/truetype/SIL/andika/Andika-Bold.ttf + RELOC/fonts/truetype/SIL/andika/Andika-BoldItalic.ttf + RELOC/fonts/truetype/SIL/andika/Andika-Italic.ttf + RELOC/fonts/truetype/SIL/andika/Andika-Regular.ttf + RELOC/fonts/type1/SIL/andika/andk-Bold.pfb + RELOC/fonts/type1/SIL/andika/andk-BoldItalic.pfb + RELOC/fonts/type1/SIL/andika/andk-Italic.pfb + RELOC/fonts/type1/SIL/andika/andk-Regular.pfb + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-t1.vf + RELOC/fonts/vf/SIL/andika/andk-Bold-tlf-ts1.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/SIL/andika/andk-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-t1.vf + RELOC/fonts/vf/SIL/andika/andk-Italic-tlf-ts1.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-t1.vf + RELOC/fonts/vf/SIL/andika/andk-tlf-ts1.vf + RELOC/tex/latex/andika/LY1andk-TLF.fd + RELOC/tex/latex/andika/OT1andk-TLF.fd + RELOC/tex/latex/andika/T1andk-TLF.fd + RELOC/tex/latex/andika/T2Aandk-TLF.fd + RELOC/tex/latex/andika/T2Bandk-TLF.fd + RELOC/tex/latex/andika/T2Candk-TLF.fd + RELOC/tex/latex/andika/TS1andk-TLF.fd + RELOC/tex/latex/andika/andika.sty +catalogue-contact-home https://software.sil.org/andika/ +catalogue-ctan /fonts/andika +catalogue-license ofl lppl +catalogue-topics font font-sans font-cyrillic font-ttf font-type1 font-supp +catalogue-version 6.101 + name animate category Package -revision 56583 +revision 64401 shortdesc Create PDF and SVG animations from graphics files and inline graphics relocated 1 longdesc The package provides an interface to create portable, @@ -18486,16 +18835,16 @@ longdesc JavaScript driven PDF and SVG animations from sets of graphics longdesc files or from inline graphics, such as LaTeX picture longdesc environment, PSTricks or pgf/TikZ generated pictures, or just longdesc from typeset text. -containersize 23388 -containerchecksum 29739e0c995ef6c00efdaa730a1e866b13efdb4005db8b8088ce4f1826899adabae41e2b7c0659df256817274ee11dfb7a033eb7b2f11302591a1fd541e1c1be -doccontainersize 3145132 -doccontainerchecksum 95fc8d11094fc1e339ebe7c7db4ea88237790358bbd9bbec8420e3f53bac986ad2b8e6dc5e962c2d0c3f0de348b7b1cbc39b0289cee26276009e914e3ce15943 -docfiles size=957 +containersize 23864 +containerchecksum 5e5d9cf1dc86374ef0f64c3b882d9d39c672dd1042ccc841c40889ac15d312d79433ef46cb45a367b9bc3ae5485bddbfaef9167475f973982d1419c6e49edd1f +doccontainersize 3143336 +doccontainerchecksum f0c9e0b9bc3210347d75d1b3a05ee09ed014ad498f19eb9c71f9cd432b2a8c19aad6e811a4eefb766bf22587a955b86d139ef9aacbc5d27ea51ae001f2640e7c +docfiles size=922 RELOC/doc/latex/animate/ChangeLog RELOC/doc/latex/animate/README.txt RELOC/doc/latex/animate/animate.pdf details="Package documentation" -srccontainersize 30296 -srccontainerchecksum 68a330fe39398265a10c25d452a6a26da8f4bfb28fd0826293c710e90259a401d55dc2b5adb1f29301bd809ccc2176a2e8b4e82a324a098fb9a29ec7f17bd8dd +srccontainersize 30204 +srccontainerchecksum d401b85d3a90b37dc9950e9749bf10bf30b70b09826d0752893f8215962121713043caf9079572602560843ba4f2ea42af455d977578e2c17ab7fa6546976d72 srcfiles size=36 RELOC/source/latex/animate/animate.tex RELOC/source/latex/animate/files/bye_0.eps @@ -18564,6 +18913,33 @@ catalogue-ctan /biblio/bibtex/contrib/misc/annotate.bst catalogue-license other-free catalogue-topics bibtex-sty +name annotate-equations +category Package +revision 65851 +shortdesc Easily annotate math equations using TikZ +relocated 1 +longdesc This package provides commands that make it easy to highlight +longdesc terms in equations and add annotation labels using TikZ. It +longdesc should work with pdfLaTeX as well as LuaLaTeX. +containersize 2928 +containerchecksum bfb32b21539e4565bca6e5ac69bb1503e5265e21b0a9b70227849b0c803fec10cfe480750d2e95eaed98b073e33b8e0de7efda42fc3f7be6166d6d40caa4530a +doccontainersize 208144 +doccontainerchecksum a52c3caf249012fb980cd8487b648452616545b31516bd03aeb2e09fb5ffd5f9930bd31cb52b9b026c193f5de3a39b737bd068a40f3a176ee86fc86eb47eea4d +docfiles size=55 + RELOC/doc/latex/annotate-equations/LICENSE + RELOC/doc/latex/annotate-equations/README.md details="Readme" + RELOC/doc/latex/annotate-equations/annotate-equations.pdf details="Package documentation" + RELOC/doc/latex/annotate-equations/annotate-equations.tex +runfiles size=2 + RELOC/tex/latex/annotate-equations/annotate-equations.sty +catalogue-contact-bugs https://github.com/st--/annotate-equations/issues +catalogue-contact-development https://github.com/st--/annotate-equations/pulls +catalogue-contact-repository https://github.com/st--/annotate-equations +catalogue-ctan /macros/latex/contrib/annotate-equations +catalogue-license mit +catalogue-topics maths decoration pgf-tikz +catalogue-version 0.2.0 + name anonchap category Package revision 17049 @@ -19578,16 +19954,16 @@ catalogue-version 1.0 name aomart category Package -revision 58855 +revision 63442 shortdesc Typeset articles for the Annals of Mathematics relocated 1 longdesc The package provides a class for typesetting articles for The longdesc Annals of Mathematics. -containersize 13416 -containerchecksum ed3914fe0a5cc10f93b4ee248e7b2300fe9bc7b816d0a803042cfa9d035879f34f2a45de5e317c0ee9f4e18017a5f06ca7f9c6d69d932c8019a68ac158739a87 -doccontainersize 1157868 -doccontainerchecksum 19b8331437c2678668e46ff3ac8a2522cc5cb98ef29a04799f29cea76020187b340db5063e44ba82387d03ace41f00ebdc0601eefcead9d4186c702ab87db855 -docfiles size=425 +containersize 13736 +containerchecksum 26216ce5a5069aeab93234a02063961d4895e45d35129a4888107dfa670e319d7d1f1947920700033b31f68bbc3a59fd189feea33305e2893581e8f6d89ab553 +doccontainersize 1186444 +doccontainerchecksum 414142b801b286e4064ebd8a73cd40ba07c5d5cc6441e19f7657f94c2fb97665828d2c664908b8efa91af10d17d7bbf1b1b887de393d3752cbf0213b800e0c15 +docfiles size=451 RELOC/doc/latex/aomart/README details="Readme" RELOC/doc/latex/aomart/aomart.bib RELOC/doc/latex/aomart/aomart.pdf details="Package documentation" @@ -19599,9 +19975,9 @@ docfiles size=425 RELOC/doc/latex/aomart/aomsample1.pdf RELOC/doc/latex/aomart/aomsample1.tex RELOC/doc/latex/aomart/fullref.pl -srccontainersize 21264 -srccontainerchecksum 47d0a4f4cbd7713d7913b5197e66d00a14029da2b1a71e3c3c442bdbfc0c338454eeae4e00f7cc97dbf4d82dcf151cda14bb1eb2824b1091da85989087196b8c -srcfiles size=22 +srccontainersize 22360 +srccontainerchecksum 79fbbac627d55cc394fbbec70c4550c2e889d88483b4e7c2bc19ddfc660be93072a7ffcfae92804b75e2fab47ea91c137c98ab7161e84399d586496940bf14b8 +srcfiles size=23 RELOC/source/latex/aomart/Makefile RELOC/source/latex/aomart/aomart.dtx RELOC/source/latex/aomart/aomart.ins @@ -19612,7 +19988,7 @@ runfiles size=21 catalogue-ctan /macros/latex/contrib/aomart catalogue-license lppl1.3 catalogue-topics journalpub class -catalogue-version 1.25 +catalogue-version 1.27 name apa category Package @@ -19735,7 +20111,7 @@ catalogue-version 0.3 name apa7 category Package -revision 58835 +revision 63974 shortdesc Format documents in APA style (7th edition) relocated 1 longdesc This class formats documents in APA style (7th Edition). It @@ -19744,11 +20120,11 @@ longdesc modes (journal-like appearance, double-spaced manuscript, longdesc double-spaced student manuscript, LaTeX-like document). The longdesc class can mask author identity for copies for use in masked longdesc peer review. The class is a development of the apa6 class. -containersize 14116 -containerchecksum 1ab1c6e902eaf78ae50f7b90d5f8a121f6db61489aee034ed3c1eb194daebedd78b4b74b1f327a378c92eb9263eb289f30b3ba58f9c7d0baf1decc2b8e8b5038 -doccontainersize 730628 -doccontainerchecksum b5e77a65788c37c85f1790e693676f2cef0e54ff1fa4e5d115ffce68460ae2978f8e9163b5f8faed3ced9b38d82f4be791c3debcb569cad0ddcc2a00b1aeb319 -docfiles size=203 +containersize 14252 +containerchecksum 48765b391fc91c657666a94c4e903b3e3f93f0620ab561e6e7a29ce1c03ec52674f33dc314136a0ed35e2cec427e94b6365cfe64b1d50625f443dab6f20eddaf +doccontainersize 745272 +doccontainerchecksum 3d55da4666c2babd231db031e6d72d4bd03b99fc89a581a3f351124956ce61b6275b2c7ced590d4407c1124636b6b2fff0a5cd5766e87ea51e4422db32288805 +docfiles size=213 RELOC/doc/latex/apa7/README.txt details="Readme" RELOC/doc/latex/apa7/apa7.pdf details="Package documentation" RELOC/doc/latex/apa7/samples/Figure1.pdf @@ -19757,12 +20133,12 @@ docfiles size=203 RELOC/doc/latex/apa7/samples/longsample.tex RELOC/doc/latex/apa7/samples/shortsample.pdf RELOC/doc/latex/apa7/samples/shortsample.tex -srccontainersize 32668 -srccontainerchecksum 338284f581e4eabfb550c606182c874b56f5d288afc1fb92df7a450dd2d68d6b41ec488263d9f64227704a4c9306da7b764c93a089d12bfe39a6cc66f242b1a6 +srccontainersize 32888 +srccontainerchecksum f3190097ab50699cf44da16478b36953da636d15ec79ec45471b94a29de91feae603aee65fbcdcb32dadbec1e3981f3b39b7c6c483c77fb0da1922b20e056b56 srcfiles size=38 RELOC/source/latex/apa7/apa7.dtx RELOC/source/latex/apa7/apa7.ins -runfiles size=26 +runfiles size=28 RELOC/tex/latex/apa7/apa7.cls RELOC/tex/latex/apa7/config/APA7american.txt RELOC/tex/latex/apa7/config/APA7british.txt @@ -19773,13 +20149,15 @@ runfiles size=26 RELOC/tex/latex/apa7/config/APA7french.txt RELOC/tex/latex/apa7/config/APA7german.txt RELOC/tex/latex/apa7/config/APA7greek.txt + RELOC/tex/latex/apa7/config/APA7hungarian.txt RELOC/tex/latex/apa7/config/APA7ngerman.txt + RELOC/tex/latex/apa7/config/APA7spanish.txt RELOC/tex/latex/apa7/config/APA7turkish.txt catalogue-contact-repository https://github.com/dan-weiss/apa7-latex-cls-source catalogue-ctan /macros/latex/contrib/apa7 catalogue-license lppl1.3c catalogue-topics apa class journalpub psychology std-conform -catalogue-version 2.12 +catalogue-version 2.16 name apacite category Package @@ -19832,23 +20210,52 @@ catalogue-license lppl catalogue-topics psychology journalpub bibtex-sty bibtex-supp apa catalogue-version 6.03 +name apalike-ejor +category Package +revision 59667 +shortdesc A BibTeX style file for the European Journal of Operational Research +relocated 1 +longdesc This package contains a BibTeX style file, apalike-ejor.bst, +longdesc made to follow the European Journal of Operational Research +longdesc reference style guidelines. It is a fork of apalike version +longdesc 0.99a, by Oren Patashnik, and consists of minor modifications +longdesc of standard APA style. Among other changes it adds support for +longdesc hyperlinked URL and DOI fields (which requires hyperref). +containersize 7016 +containerchecksum b04f10bb77365327f326f2bb6c67347802fe6f9628644711d72b85576f59e06ec9fec168ba382a187f51cb7bc2d619b2d971d55024e4ba82d7f5e3c73f556bc8 +doccontainersize 137380 +doccontainerchecksum a9e091123eaa359ef7ca22d47ce3e069ebdd9e74835e54dc2abbe92073edbb9989d408d5f52f5e83b52f7137b4cbc50fc38e56606f72541ee46aaabbdafb3a40 +docfiles size=44 + RELOC/doc/bibtex/apalike-ejor/LICENSE + RELOC/doc/bibtex/apalike-ejor/README.md details="Readme" + RELOC/doc/bibtex/apalike-ejor/example-references.bib + RELOC/doc/bibtex/apalike-ejor/example.pdf details="Example of use" + RELOC/doc/bibtex/apalike-ejor/example.tex +runfiles size=8 + RELOC/bibtex/bst/apalike-ejor/apalike-ejor.bst +catalogue-contact-bugs https://github.com/adam-rumpf/apalike-ejor/issues +catalogue-contact-repository https://github.com/adam-rumpf/apalike-ejor +catalogue-ctan /biblio/bibtex/contrib/apalike-ejor +catalogue-license lppl1.3c +catalogue-topics bibtex-sty journalpub std-conform +catalogue-version 1.2.0 + name apalike-german category Package -revision 54080 +revision 65403 shortdesc A copy of apalike.bst with German localization relocated 1 longdesc A copy of apalike.bst (which is part of the base BibTeX longdesc distribution) with German localization. -containersize 5840 -containerchecksum 8e9a0dd594dce98e441f256efacedecca7afddcb3d8b6bf64e6490aba74f1f3584c71584b7ec115cb054eb425477ec801a20c84ee75aeedbe588ad6302780612 -doccontainersize 13300 -doccontainerchecksum fe58a0f2be0b8793ef15f07029d1b81232046b92b48a6d8fa00032bbdb482aef3216ca80f5d9c80424f32d75b8d57e4e4e74b5397711209e18b576f6860d3b33 +containersize 5828 +containerchecksum 2d9094953893182276e88db622b68750a5f70a9314ae5b88ca33c8b04a3e4dbb68fa01de9e3f44cc13b41b7bd7ef9c9b618af7c1cabe58045dc03b15277da5bd +doccontainersize 13368 +doccontainerchecksum eae2fa13afb28c51926a1fc4aa8e8e39da35d9a6b3297eb2a1b42bd39580daaf45a782c4cbba16dba6c7a4c315873d6ad1a7b6dd61b4de06cf5628f8d381c63a docfiles size=20 RELOC/doc/bibtex/apalike-german/README.html details="Readme (HTML)" RELOC/doc/bibtex/apalike-german/README.md details="Readme" runfiles size=7 RELOC/bibtex/bst/apalike-german/apalike-german.bst -catalogue-contact-home https://ingram-braun.net/public/programming/tex/apalike-german-bst-bibtex-bibliography-author-date-style/ catalogue-contact-repository https://github.com/CarlOrff/apalike-german catalogue-ctan /biblio/bibtex/contrib/apalike-german catalogue-license lppl1.3c @@ -20081,7 +20488,7 @@ catalogue-version 1.0 name apxproof category Package -revision 56673 +revision 64715 shortdesc Proofs in appendix relocated 1 longdesc The package makes it easier to write articles where proofs and @@ -20096,28 +20503,28 @@ longdesc separate bibliography for the appendix material. It depends on longdesc the following other packages: amsthm, bibunits (if the longdesc bibliography option is set to separate), environ, etoolbox, longdesc fancyvrb, ifthen, and kvoptions. -containersize 4192 -containerchecksum 0a81e01bc885b8e7d4bd69361b185beb8cde62f7a10db4e5441312dfea15c0da7c352a4cb412102bdbedc60d974ddaee6f44451042283f577b9a4b4f54a263c1 -doccontainersize 568272 -doccontainerchecksum a6131b7889d7882a9bfe253f3bfd380498310dc9f0d13ae382d786e3604201c887b98b8555d69cf62067b4c6d5975b16f14169dc10cf4ca5933af3fb843b60b0 -docfiles size=145 +containersize 4644 +containerchecksum 69d21b2d0770baf8d29583e383dfa1714d8ba4d87d65c2f6590ac6d2f5df2304d002490cfededb38eae043ab1cb2b23d7c67fa7880c4e48654f2a34aa9f853bf +doccontainersize 585636 +doccontainerchecksum 2ba3258ee71a0776ee27bf4249288b12d92b7cabecf1601efd9f1855f5a058b9c030a0d4107c026d8362324de9240350e65f8fca1e76ab5e4ebfe718b37ed27e +docfiles size=153 RELOC/doc/latex/apxproof/LICENSE RELOC/doc/latex/apxproof/README.md details="Readme" RELOC/doc/latex/apxproof/apxproof.bib RELOC/doc/latex/apxproof/apxproof.pdf details="Package documentation" -srccontainersize 15596 -srccontainerchecksum 0895ef3552dea3685c529a2adbe8efc7a7010e63b277b8e3740d1a123bbaef1609f05d2085887d013ba9f75155108397153b187f13b6bea8e49954bc75938a2d -srcfiles size=16 +srccontainersize 16428 +srccontainerchecksum 32995f9080055dac2fe74e1c9d65baea4dd824098d1dc1e62232c13c4d67226e0c9cb880f5dc801215a97b2db7a6c665cc7188f42265416c8fc136384c3fa34f +srcfiles size=17 RELOC/source/latex/apxproof/apxproof.dtx RELOC/source/latex/apxproof/apxproof.ins -runfiles size=4 +runfiles size=5 RELOC/tex/latex/apxproof/apxproof.sty catalogue-contact-bugs https://github.com/PierreSenellart/apxproof/issues catalogue-contact-repository https://github.com/PierreSenellart/apxproof catalogue-ctan /macros/latex/contrib/apxproof catalogue-license lppl1.3 catalogue-topics proof appendix -catalogue-version 1.2.1 +catalogue-version 1.2.4 name arabi category Package @@ -20377,6 +20784,38 @@ catalogue-license unknown catalogue-topics arabic catalogue-version 1.0 +name arabic-book +category Package +revision 59594 +shortdesc An Arabic book class +relocated 1 +longdesc This document class provides both Arabic and English support +longdesc for TeX/LaTeX. Input may be in ASCII transliteration or other +longdesc encodings (including UTF-8), and output may be Arabic, Hebrew, +longdesc or any of several languages that use the Arabic script, as can +longdesc be specified by the polyglossia package. The Arabic font is +longdesc presently available in any Arabic fonts style. In order to use +longdesc Amiri font style, the user needs to install the amiri package. +longdesc This document class runs with the XeTeX engine. PDF files +longdesc generated using this class can be searched, and text can be +longdesc copied from them and pasted elsewhere. +containersize 2868 +containerchecksum ac60431be9ebb42e2329c954805ecaef988bb6724eba7638ace659a973de3de9dbffc9ee85b2847531c3fca44e97e7099b1d9412ec754d9d27bde1432480f133 +doccontainersize 542416 +doccontainerchecksum 5ed647dc625397baf5db5cd05c87b2ce5dd44b4acf67ff6337b96989aaf210775f3870b5f1f376219cbbce96e486eed5dd24dc893684aeb7d3490ae62df15f14 +docfiles size=136 + RELOC/doc/xelatex/arabic-book/README.txt details="Readme" + RELOC/doc/xelatex/arabic-book/arabic-book.pdf details="Package documentation" + RELOC/doc/xelatex/arabic-book/arabic-book.tex + RELOC/doc/xelatex/arabic-book/arabic-ref.bib + RELOC/doc/xelatex/arabic-book/fig1.png +runfiles size=2 + RELOC/tex/xelatex/arabic-book/arabic-book.cls +catalogue-ctan /macros/xetex/latex/arabic-book +catalogue-license lppl1.3 +catalogue-topics arabic class book-pub xetex +catalogue-version 1.0 + name arabicfront category Package revision 51474 @@ -20460,7 +20899,7 @@ catalogue-version 1.20 name arabtex category Package -revision 25711 +revision 64260 shortdesc Macros and fonts for typesetting Arabic relocated 1 longdesc ArabTeX is a package extending the capabilities of TeX/LaTeX to @@ -20473,19 +20912,24 @@ longdesc Adobe Type 1). The Arabic font is presently only available in longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with longdesc LaTeX. execute addMixedMap arabtex.map -containersize 235892 -containerchecksum 2dedbd482c223f65e13aae104e2014d2d28bf9f4ae6b90f1a4cf0718eb245d8a94899982f15de326f2eb19e2696045ba8ca9a19a6d903ef7c3e9b575a01d6bbc -doccontainersize 375472 -doccontainerchecksum f20af64239df9bdb82b7fdac6c5f6a222f1277eb877fa1907cbadd4ec6e426745b40733fd2ae726d3050e6f992b14cc91d6386ee02e2bf841d1f249d09df0c71 -docfiles size=198 +containersize 221836 +containerchecksum df47df09eaf935bd8921d8ad475190fe6651f1cbf198473ee82099242b6f4cd63ae5873a2b2fbd7a75a4f9ae77f5ce3f56ffec0e668fdd649c4d3fe051b2ac68 +doccontainersize 930808 +doccontainerchecksum a73aed53cc1cf4f5600312f58e0ae8a29c57fb04ebc87b91f13526c780567a5ba076a0b63b0abed791880efccffcfc52bb0f43131da4b8e2a60b48184d2f66de +docfiles size=364 RELOC/doc/latex/arabtex/announce.txt + RELOC/doc/latex/arabtex/arabdoc.pdf details="Package documentation (draft)" + RELOC/doc/latex/arabtex/arabdoc.tex + RELOC/doc/latex/arabtex/arabdoc0.tex RELOC/doc/latex/arabtex/arabtex-doc.pdf + RELOC/doc/latex/arabtex/arabtex-doc.tex RELOC/doc/latex/arabtex/arabtex.doc RELOC/doc/latex/arabtex/arabtex.faq RELOC/doc/latex/arabtex/arabtex.gif RELOC/doc/latex/arabtex/arabtex.htm details="Outline of the project" RELOC/doc/latex/arabtex/arabtex1.htm RELOC/doc/latex/arabtex/arabtex2.htm + RELOC/doc/latex/arabtex/arwindoc.tex RELOC/doc/latex/arabtex/changes.htm RELOC/doc/latex/arabtex/changes.txt RELOC/doc/latex/arabtex/changes2.txt @@ -20495,23 +20939,30 @@ docfiles size=198 RELOC/doc/latex/arabtex/chg311c.htm RELOC/doc/latex/arabtex/chg311d.htm RELOC/doc/latex/arabtex/guha.ps + RELOC/doc/latex/arabtex/guha.tex RELOC/doc/latex/arabtex/hebrew.305 RELOC/doc/latex/arabtex/install.txt + RELOC/doc/latex/arabtex/kashmiri.tex + RELOC/doc/latex/arabtex/ligtable.tex RELOC/doc/latex/arabtex/lppl.txt RELOC/doc/latex/arabtex/malay.ps + RELOC/doc/latex/arabtex/malay.tex 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/omar.tex RELOC/doc/latex/arabtex/readme.305 RELOC/doc/latex/arabtex/readme.txt details="Readme" RELOC/doc/latex/arabtex/refer.htm RELOC/doc/latex/arabtex/sindhi.ps + RELOC/doc/latex/arabtex/sindhi.tex RELOC/doc/latex/arabtex/tetex.txt RELOC/doc/latex/arabtex/uighur.ps + RELOC/doc/latex/arabtex/uighur.tex RELOC/doc/latex/arabtex/xarbsymb.dat -runfiles size=306 +runfiles size=290 RELOC/fonts/map/dvips/arabtex/arabtex.map RELOC/fonts/source/public/arabtex/arabsymb.mf RELOC/fonts/source/public/arabtex/hcaption.mf @@ -20579,11 +21030,9 @@ runfiles size=306 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 @@ -20601,7 +21050,6 @@ runfiles size=306 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 @@ -20619,18 +21067,12 @@ runfiles size=306 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 @@ -20639,7 +21081,6 @@ runfiles size=306 RELOC/tex/latex/arabtex/xarbskel.sty RELOC/tex/latex/arabtex/xarbsymb.sty RELOC/tex/latex/arabtex/yiddish.sty -catalogue-contact-home http://baobab.informatik.uni-stuttgart.de/ifi/bs/research/arab_e.html catalogue-ctan /language/arabic/arabtex catalogue-license lppl catalogue-topics font arabic font-arabic hebrew font-hebrew font-mf @@ -20836,7 +21277,7 @@ catalogue-version 1.0 name arara category Package -revision 58933 +revision 63760 shortdesc Automation of LaTeX compilation longdesc Arara is comparable with other well-known compilation tools longdesc like latexmk and rubber. The key difference is that arara @@ -20844,53 +21285,39 @@ longdesc determines its actions from metadata in the source code, rather longdesc than relying on indirect resources, such as log file analysis. longdesc Arara requires a Java virtual machine. depend arara.ARCH -containersize 10395304 -containerchecksum 146871757ebe6874abb8fe5098770e061dd6703135cbdf676da6fb41aef3a0a5bda717764824406d0dc519fabcd122dff6e3cea4703813efc16f2b9e82f87242 -doccontainersize 2047932 -doccontainerchecksum 9dd3c3bb595a40bcada4b8f80af410a920211aa40f5157a77356b7978a062322b17e3b141bcc1f84271b2d254beb26fbeae250436de8e9fd02208a4a8fbf0b06 -docfiles size=831 +containersize 11777640 +containerchecksum b30ab2023cea6e606301146c06b34711b4c40b771721724bef178a5df7a1bf3e22ce97675131ee7370acae3b6416d49b28f12d0c02eb7e34885e2609f8dc5ca8 +doccontainersize 5048852 +doccontainerchecksum 0c0b799f6e4f43c6d123f66b6a84e35607b2c10d6241c445376d29a466154634c559cb6282f4e3f66c273342c764b56604e00bc1ee12b4452ef78ab7620aaaf2 +docfiles size=2007 texmf-dist/doc/man/man1/arara.1 texmf-dist/doc/man/man1/arara.man1.pdf texmf-dist/doc/support/arara/README.md details="Readme" + texmf-dist/doc/support/arara/arara-7.0.4-docsrc.zip texmf-dist/doc/support/arara/arara-manual.pdf details="Reference manual" - texmf-dist/doc/support/arara/arara-manual.tex texmf-dist/doc/support/arara/arara-quickstart.pdf details="Quickstart guide" - texmf-dist/doc/support/arara/arara-quickstart.tex - texmf-dist/doc/support/arara/arara.sty - texmf-dist/doc/support/arara/arararc.yaml - texmf-dist/doc/support/arara/chapters/building.tex - texmf-dist/doc/support/arara/chapters/cli.tex - texmf-dist/doc/support/arara/chapters/concepts.tex - texmf-dist/doc/support/arara/chapters/configuration.tex - texmf-dist/doc/support/arara/chapters/deploying.tex - texmf-dist/doc/support/arara/chapters/introduction.tex - texmf-dist/doc/support/arara/chapters/license.tex - texmf-dist/doc/support/arara/chapters/logging.tex - texmf-dist/doc/support/arara/chapters/methods.tex - texmf-dist/doc/support/arara/chapters/mvel.tex - texmf-dist/doc/support/arara/chapters/rules.tex - texmf-dist/doc/support/arara/chapters/yaml.tex - texmf-dist/doc/support/arara/figures/arara.png - texmf-dist/doc/support/arara/figures/dropdown1.pdf - texmf-dist/doc/support/arara/figures/dropdown2.pdf - texmf-dist/doc/support/arara/figures/gl.pdf - texmf-dist/doc/support/arara/figures/inputbox1.pdf - texmf-dist/doc/support/arara/figures/inputbox2.pdf - texmf-dist/doc/support/arara/figures/messagebox1.pdf - texmf-dist/doc/support/arara/figures/messagebox2.pdf - texmf-dist/doc/support/arara/figures/optionbox1.pdf - texmf-dist/doc/support/arara/figures/optionbox2.pdf - texmf-dist/doc/support/arara/logos/bird.pdf - texmf-dist/doc/support/arara/logos/logo1.pdf - texmf-dist/doc/support/arara/logos/logo2.pdf - texmf-dist/doc/support/arara/rules/manual.yaml - texmf-dist/doc/support/arara/rules/quickstart.yaml - texmf-dist/doc/support/arara/version.tex -srccontainersize 100204 -srccontainerchecksum bd2215d1c4d2e6095bb937d7dda0972d4445363857a86385b7ed75ec885a1f0124fe1265210018ea7cc70db6f636fb2bf13fc0836419c73731f0d1a02680ac5d -srcfiles size=33 - texmf-dist/source/support/arara/arara-6.1.0-src.zip -runfiles size=2910 + texmf-dist/doc/support/arara/htmlmanualtopdf.sh + texmf-dist/doc/support/arara/htmlquickstarttopdf.sh + texmf-dist/doc/support/arara/resources/CascadiaMono-ExtraLight.otf + texmf-dist/doc/support/arara/resources/CascadiaMono-ExtraLightItalic.otf + texmf-dist/doc/support/arara/resources/CascadiaMono-Italic.otf + texmf-dist/doc/support/arara/resources/CascadiaMono-Light.otf + texmf-dist/doc/support/arara/resources/CascadiaMono-LightItalic.otf + texmf-dist/doc/support/arara/resources/CascadiaMono-Regular.otf + texmf-dist/doc/support/arara/resources/arara-logo-with-text-bottom.svg + texmf-dist/doc/support/arara/resources/firasans-bold.otf + texmf-dist/doc/support/arara/resources/firasans-italic.otf + texmf-dist/doc/support/arara/resources/firasans-light.otf + texmf-dist/doc/support/arara/resources/firasans-lightitalic.otf + texmf-dist/doc/support/arara/resources/firasans-regular.otf + texmf-dist/doc/support/arara/resources/gitlab-icon.svg + texmf-dist/doc/support/arara/resources/manual.css + texmf-dist/doc/support/arara/resources/version.txt +srccontainersize 115456 +srccontainerchecksum 6cc31f1368d8588d9a7bca3717171c43786ab6ed7a1b3ed159d700324ec42bf588234483a4e56f7322726c30156900086a901f081cfa7010f79cc393a449fe13 +srcfiles size=40 + texmf-dist/source/support/arara/arara-7.0.4-src.zip +runfiles size=3282 texmf-dist/scripts/arara/arara.jar texmf-dist/scripts/arara/arara.sh texmf-dist/scripts/arara/rules/arara-rule-animate.yaml @@ -20965,11 +21392,11 @@ runfiles size=2910 texmf-dist/scripts/arara/rules/arara-rule-xindy.yaml catalogue-contact-bugs https://gitlab.com/islandoftex/arara/issues/ catalogue-contact-repository https://gitlab.com/islandoftex/arara/ -catalogue-contact-support https://gitter.im/Island-of-TeX/arara +catalogue-contact-support https://matrix.to/#/!HfEWIEvFtDplCLSQvz:matrix.org?via=matrix.org catalogue-ctan /support/arara catalogue-license bsd catalogue-topics compilation -catalogue-version 6.1.0 +catalogue-version 7.0.4 name arara.aarch64-linux category Package @@ -21007,15 +21434,6 @@ containerchecksum 240460bae4f6ca4d2bb5db14cc8a552c1efec57285724924a9c3fa24d2b743 binfiles arch=armhf-linux size=1 bin/armhf-linux/arara -name arara.i386-cygwin -category Package -revision 29036 -shortdesc i386-cygwin files of arara -containersize 336 -containerchecksum 960b5c1238d0c992bc07018d993a7e572d6f2cded1e1c80de24f1fc4ebc49a05739f2d0f47dd5c3aa25a8ebe4e7516e56073a6022af825199381135d1eddca47 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/arara - name arara.i386-freebsd category Package revision 29036 @@ -21061,14 +21479,14 @@ containerchecksum b210568b1a0ed68c9f79f1b0e3da02addb8e1b37cba8c7cd8f7094c555f355 binfiles arch=universal-darwin size=1 bin/universal-darwin/arara -name arara.win32 +name arara.windows category Package -revision 29181 -shortdesc win32 files of arara -containersize 680 -containerchecksum 335530dbad34d5c0623945aed99c466e9de500d9214b8f2d6e0824fa12b0c95d05a256a2f97b18a95836f2badce05e93ab57d713dcea501077eb84187b38e9cd -binfiles arch=win32 size=1 - bin/win32/arara.exe +revision 65891 +shortdesc windows files of arara +containersize 2304 +containerchecksum 098b1bd415c3c7aa3e92ebf6ed0e09f24ae073268efe197cc82a6cc4935d970b9c9ee621c31fdd7910943d51ab6e85fcb17981b60ee74f3a5a6bfc8efb493512 +binfiles arch=windows size=2 + bin/windows/arara.exe name arara.x86_64-cygwin category Package @@ -22016,17 +22434,17 @@ catalogue-topics font font-sans font-maths name arimo category Package -revision 42880 +revision 64548 shortdesc Arimo sans serif fonts with LaTeX support relocated 1 longdesc The Arimo family, designed by Steve Matteson, is an innovative, longdesc refreshing sans serif design which is metrically compatible longdesc with Arial. execute addMap arimo.map -containersize 2905304 -containerchecksum 9dfd102a7a58778bdbea8fc9aa8688dce24bc0a8106121da5f5d57246bc72b4c6c5ac11089a496399dab273680da2b4d2735d40bcd2277b555eca67ff936d991 +containersize 2905268 +containerchecksum f1b4c1edbe8a6e8864b121ed5411d4ac33158d68acfeab9905c49eaba315b784e0f2472ec8b61bb3241b202345b6151a0702aec4946a1de67125258c8c2edfb6 doccontainersize 29500 -doccontainerchecksum 481649673936e5a05195b2fbaa7c7a3a702e23ac6998537a7c2b3c53b3a87ef1e1b0234c4254f737ee10bf8809ec03b524ae8e06d3e1ca3bca641d58746afcad +doccontainerchecksum 14bc469a9288fbed519c8f0164f11c4d00369ae672d0c69f5c871aa24f54f8d8a4eaa5f189e30b42ada8e6f30dc8bd925b96b66a53461a2069682b89562c56f8 docfiles size=12 RELOC/doc/fonts/arimo/LICENSE.txt RELOC/doc/fonts/arimo/README details="Readme" @@ -22089,25 +22507,28 @@ catalogue-topics font font-type1 font-virtual font-ttf name armtex category Package -revision 33894 -shortdesc A system for writing Armenian with TeX and LaTeX +revision 64182 +shortdesc A system for writing in 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. +longdesc Armenian letters, from any keyboard which uses an encoding that +longdesc has Armenian letters in the second half (characters 128-255) of +longdesc the extended ASCII table (for example ArmSCII8 Armenian +longdesc standard), from an Armenian keyboard using UTF-8 encoding. +longdesc Users should note that the manuals still mostly describe the +longdesc previous version of the package (ArmTeX 2.0). However, a +longdesc description of the new features of ArmTeX 3.0 is provided at +longdesc the end of the README file. execute addMixedMap arss.map execute addMixedMap artm.map -containersize 527176 -containerchecksum 9e76f19f3b1bdcc771039d0be62c5745e5605b1838c4d7b2df67b14b1babcecf49fa5abb667b0d106a432919dd08e23e82201a62bb4adfde3c2016aeace79bb1 -doccontainersize 429996 -doccontainerchecksum 8df4b5c1aa4b653869383336594ea3bb960ed8bdc2c413464df1aba607c9c310bcb5e8e63a911fc28113a8770573e510d81c6fcdf84242dcf08dd2da33f7dbf9 -docfiles size=175 +containersize 527820 +containerchecksum 853eceb3256407c75cf7d74a514ab8c76f44229c80e740072c3fe2cff17eb47a99b683d089a30c759e6ec5fd14451ee9c94a290cc2606248b6e396f6ca7de5b1 +doccontainersize 431480 +doccontainerchecksum f26c90f18e534735f910f8ea34bce63f21bcb029b6b621398109adb4d99e6ef4470e76037a16b6a86b8ef8e4331267adaf3779772aadb1009d4222d500e26114 +docfiles size=177 + RELOC/doc/generic/armenian/README details="Readme" 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 @@ -22121,8 +22542,7 @@ docfiles size=175 RELOC/doc/generic/armenian/examples/plain/table.tex RELOC/doc/generic/armenian/manual-e.pdf details="Package manual (English)" language="en" RELOC/doc/generic/armenian/manual.pdf details="Package manual (Armenian)" language="hy" - RELOC/doc/generic/armenian/readme.txt -runfiles size=525 +runfiles size=526 RELOC/fonts/afm/public/armenian/arssb10.afm RELOC/fonts/afm/public/armenian/arssbs10.afm RELOC/fonts/afm/public/armenian/arssr10.afm @@ -22188,7 +22608,7 @@ runfiles size=525 catalogue-ctan /language/armenian/armtex catalogue-license lppl catalogue-topics armenian format font font-mf font-type1 -catalogue-version 3.0-beta3 +catalogue-version 3.0-beta4 name around-the-bend category Package @@ -23840,7 +24260,7 @@ catalogue-topics font font-cjk font-ttf name arraycols category Package -revision 56997 +revision 61719 shortdesc New column types for array and tabular environments relocated 1 longdesc This small package provides new column types for array and @@ -23849,15 +24269,15 @@ longdesc with adjusted height for big mathematical expressions. The longdesc columns width can be fixed or calculated like in tabularx longdesc environments. Macros for drawing vertical and horizontal rules longdesc of variable thickness are also provided. -containersize 1316 -containerchecksum 68ee9188b13dfd1e45552fc0845b80df2a497a00af9d70eee726694708b214b9351d7955819d1a9e21deb6873cf5dab90416b05a58ebfcc2d31495992bc989e0 -doccontainersize 459324 -doccontainerchecksum 43c31b4a1cf254891226c796193415d81d299cb0e831e617c61d62728b6bca768cfd813ea4b3b1fb15a702411bebf53bee36e025bf8ae8c287cfed51b90710d1 +containersize 1320 +containerchecksum 3f97d2424091e5690feb3e1e290d1135332ab146019c1b290e8c69ea7f048ecd779dd81c9b3d3f9a0d7c919f1bc9bb949bdccfb3939148a426b336cd22993398 +doccontainersize 459328 +doccontainerchecksum bab50fccd4ec8bbcc64684208eb8ad60b17ee55b534f287d0640562bbe1f1e2ef25698ee2fb80baca9e984e79e36fabb8411e6fa330bb33fad680b00ede665e4 docfiles size=113 RELOC/doc/latex/arraycols/README.md details="Readme" RELOC/doc/latex/arraycols/arraycols.pdf details="Package documentation" srccontainersize 6264 -srccontainerchecksum 65a24651f3cfef479b4027a0e3a687b43016bb02f67ffbc69071f57b43914c4f3cb5ade46616b7841df948562ce3b8d9eb051739280181205d68f64f3104b8d8 +srccontainerchecksum e19bc42fa9a0d2bdd843eed789275f4d5a987adf9061535090f9d56ed182a19bd3950b10730c5cbe640f0261b545cf09212cb771b9a9a44163c6fc052b8c08fd srcfiles size=6 RELOC/source/latex/arraycols/arraycols.dtx RELOC/source/latex/arraycols/arraycols.ins @@ -23866,7 +24286,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/arraycols catalogue-license lppl1.3 catalogue-topics table alignment alignment-supp -catalogue-version 1.1 +catalogue-version 1.2 name arrayjobx category Package @@ -24135,6 +24555,34 @@ catalogue-license pd catalogue-topics journalpub class catalogue-version 1.0a +name asana-math +category Package +revision 59629 +shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX +relocated 1 +longdesc The Asana-Math font is an OpenType font that includes almost +longdesc all mathematical Unicode symbols and it can be used to typeset +longdesc mathematical text with any software that can understand the +longdesc MATH OpenType table (e.g., XeTeX 0.997 and Microsoft Word +longdesc 2007). The font is beta software. Typesetting support for use +longdesc with LaTeX is provided by the fontspec and unicode-math +longdesc packages. +containersize 673612 +containerchecksum 2bbf3e139418db06578af5fc8d3925d96bbe1bd9d472a82d428a059b1a206db131734f1b0e762ca49c896f403faf279b2e47465061dc5bcf0eaa8058474017a3 +doccontainersize 3752 +doccontainerchecksum 86b064ede8b8d77b9722d967de612e4a0e8758a29a6a3909b625fe2fa8ebe9551359a442376e8ee8a9dadf5d295d197328914411144c6f94e0b0fe16692eb128 +docfiles size=3 + RELOC/doc/fonts/asana-math/FontLog.txt + RELOC/doc/fonts/asana-math/README details="Readme" +runfiles size=330 + RELOC/fonts/opentype/public/asana-math/Asana-Math.otf + RELOC/fonts/truetype/public/asana-math/ASANA.TTC +catalogue-also stix xits +catalogue-ctan /fonts/Asana-Math +catalogue-license ofl +catalogue-topics font font-maths font-otf font-ttf +catalogue-version 000.958 + name asapsym category Package revision 40201 @@ -24383,12 +24831,12 @@ catalogue-version 0.2 name asmeconf category Package -revision 57833 +revision 65413 shortdesc A LaTeX template for ASME conference papers relocated 1 longdesc The asmeconf class provides a LaTeX template for ASME longdesc conference papers, following ASME's guidelines for margins, -longdesc fonts, headings, captions, and reference formats as of 2021. +longdesc fonts, headings, captions, and reference formats as of 2022. longdesc This LaTeX template is intended to be used with the longdesc asmeconf.bst BibTeX style, for reference formatting, which is longdesc part of this distribution. Unlike older ASME conference LaTeX @@ -24402,11 +24850,11 @@ longdesc archivability (PDF/A), and multilingual support. The code is longdesc compatible with pdfLaTeX or LuaLaTeX. This LaTeX template is longdesc not a publication of ASME, but it does conform to ASME's longdesc currently published guidelines for conference papers. -containersize 24956 -containerchecksum c9a11e0e1d2fb5ef9c674b571bf8de631fd1b329fef165cd5a1a0028f80a9447757bb769b743c69e29405b1688ae292110cf958f6bfc9092026a3277bcd78b8d -doccontainersize 1473344 -doccontainerchecksum 11db98dc9a9556e7e03b5b5e5284b19ef97c295ba3f21a9e3e0ee2cac712d81a9bbc485b27133f8f2bba158037d4388c1bfbf4dde241715a2386b564a51c45f0 -docfiles size=793 +containersize 29280 +containerchecksum e2545a50595a8276de018afb6037f9d05a5e39ca9bda61b893ba75c61237702f4cb310df75b8c2daca88a4e46683f475e1ad7a1dac5641100f61d25202e952d3 +doccontainersize 2772884 +doccontainerchecksum 1f8587342100f63b3918ff5f11845f9fb10deb193215abbddf5f08ecff232889bbc28ef0f80287fe66420ce5bafa29917c239540ba1b0c860090564c5b3910f8 +docfiles size=2106 RELOC/doc/latex/asmeconf/README.md details="Readme" RELOC/doc/latex/asmeconf/asmeconf-sample.bib RELOC/doc/latex/asmeconf/asmeconf-template.pdf details="Example of use" @@ -24419,10 +24867,15 @@ docfiles size=793 RELOC/doc/latex/asmeconf/examples/asmeconf-fontspec.tex RELOC/doc/latex/asmeconf/examples/asmeconf-lualatex-ode-example.pdf RELOC/doc/latex/asmeconf/examples/asmeconf-lualatex-ode-example.tex + RELOC/doc/latex/asmeconf/examples/asmeconf-wide-equation-example/asmeconf-template-widetext.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-wide-equation-example/asmeconf-template-widetext.tex + RELOC/doc/latex/asmeconf/examples/asmeconf-wide-equation-example/asmewide.sty + RELOC/doc/latex/asmeconf/examples/asmeconf-wide-equation-example/tesseral-harmonic.pdf + RELOC/doc/latex/asmeconf/examples/asmeconf-wide-equation-example/zonal-harmonic2.pdf RELOC/doc/latex/asmeconf/sample-figure-1.pdf RELOC/doc/latex/asmeconf/sample-figure-2a.pdf RELOC/doc/latex/asmeconf/sample-figure-2b.pdf -runfiles size=28 +runfiles size=34 RELOC/bibtex/bst/asmeconf/asmeconf.bst RELOC/tex/latex/asmeconf/asmeconf.cls catalogue-contact-bugs https://github.com/John02139/asmeconf/issues @@ -24430,11 +24883,11 @@ catalogue-contact-support https://github.com/John02139/asmeconf/issues catalogue-ctan /macros/latex/contrib/asmeconf catalogue-license mit catalogue-topics bibtex-sty class confproc engineering scientific-docs -catalogue-version 1.26 +catalogue-version 1.34 name asmejour category Package -revision 57598 +revision 65405 shortdesc A template for ASME journal papers relocated 1 longdesc The asmejour class provides a template to format preprints @@ -24449,25 +24902,30 @@ longdesc column balancing, various math options, government copyright, longdesc and archivability (PDF/A). The class is compatible with longdesc pdfLaTeX or LuaLaTeX. This package is not a publication of longdesc ASME. -containersize 20036 -containerchecksum 9453ee840ea08b6987c40df52f5b011f57642b5e1ee464a52308febbed71c3c3fb8953d2bdf98bb575900005aaa0cc6ea4146b930be5fb2f309474ad5002f39e -doccontainersize 623880 -doccontainerchecksum 2322b31e9c1d619c0e4eee7336aeb37a22d9d3c86684044c318762a3a2887c02bab2a7eb86a512e222f22955c568b587442c15c79e77c205dbf50914e8b9c682 -docfiles size=249 +containersize 22832 +containerchecksum ea16b3b9d8852248ea87cd9da0ec78dde09c1da8af233a27a837aba266a6dadc3703cef6be5e0b5185cf7581076e4e8d7176d06215c2848f1637bcf24ce68195 +doccontainersize 1824200 +doccontainerchecksum 2c9e630113f8870cc0f78c31194754ef2d572534a599991ad16a301f85970cf8a437b719be6afa79711515d10d089486f56024504fc7af24989edcde4b656c70 +docfiles size=1570 RELOC/doc/latex/asmejour/README.md details="Readme" RELOC/doc/latex/asmejour/asmejour-sample.bib RELOC/doc/latex/asmejour/asmejour-template.pdf details="Example of use" RELOC/doc/latex/asmejour/asmejour-template.tex + RELOC/doc/latex/asmejour/asmewide_example/asmejour-wide-equation-examples.pdf + RELOC/doc/latex/asmejour/asmewide_example/asmejour-wide-equation-examples.tex + RELOC/doc/latex/asmejour/asmewide_example/asmewide.sty + RELOC/doc/latex/asmejour/asmewide_example/tesseral-harmonic.pdf + RELOC/doc/latex/asmejour/asmewide_example/zonal-harmonic2.pdf RELOC/doc/latex/asmejour/sample-figure-1.pdf RELOC/doc/latex/asmejour/sample-figure-2a.pdf RELOC/doc/latex/asmejour/sample-figure-2b.pdf -runfiles size=20 +runfiles size=23 RELOC/bibtex/bst/asmejour/asmejour.bst RELOC/tex/latex/asmejour/asmejour.cls catalogue-ctan /macros/latex/contrib/asmejour catalogue-license mit catalogue-topics class journalpub scientific-docs bibtex-sty engineering -catalogue-version 1.15 +catalogue-version 1.20 name aspectratio category Package @@ -24599,7 +25057,7 @@ catalogue-version 0.8 name association-matrix category Package -revision 56759 +revision 64845 shortdesc LaTeX support for creating association matrices relocated 1 longdesc This package allows the creation of association matrices in an @@ -24611,11 +25069,11 @@ longdesc associated. Then, the \amxgenerate command generates a table longdesc that shows in the cells with a blip (*) where the association longdesc was added. The package depends on etoolbox, forloop, ifthen, longdesc textcomp, and xparse. -containersize 3600 -containerchecksum 1f33388d8d9230fb11dc1318cb9c189fb7c14ef7404193d1df35e83863869ab8cd7f918bef8fcfdcadbff29b3c20db7309026d0ee3935e78db0f5e3365f065ae -doccontainersize 251108 -doccontainerchecksum d22756e5fcb921c6f0e80c6d0f5322dda0be1a52a5de60b2a0d7ca719b4d92e4039c395e06f7b4a6fa080aed59e4c4c30ae9ace8139963943134048cc40e6c94 -docfiles size=71 +containersize 4188 +containerchecksum 6b87d01d5559669f6e2d63fc14427d950eba9d790070625cc6acaaf6e308282b7434bce90da78a41858b068121b75a1e1c0ec4453d287aaed94c9e6308a1b5ce +doccontainersize 268584 +doccontainerchecksum e56de37acf6d8c2b53aff0aa78999dd400b18b3bb44ea40f21a7638e463405ce4f48d2041236897f7a281099c1c5d879ffcbda9d6b08d2b0d5fb83193803d157 +docfiles size=76 RELOC/doc/latex/association-matrix/DEPENDS.txt RELOC/doc/latex/association-matrix/LICENCE RELOC/doc/latex/association-matrix/README.md details="Readme" @@ -24623,12 +25081,35 @@ docfiles size=71 RELOC/doc/latex/association-matrix/association-matrix.tex runfiles size=4 RELOC/tex/latex/association-matrix/association-matrix.sty -catalogue-contact-bugs http://github.com/whisperity/association-matrix/issues -catalogue-contact-repository http://github.com/whisperity/association-matrix +catalogue-contact-bugs https://github.com/whisperity/association-matrix/issues +catalogue-contact-repository https://github.com/whisperity/association-matrix catalogue-ctan /macros/latex/contrib/association-matrix catalogue-license lppl1.3c catalogue-topics table matrix expl3 -catalogue-version 1.0 +catalogue-version 1.1 + +name asternote +category Package +revision 63838 +shortdesc Annotation symbols enclosed in square brackets and marked with an asterisk +relocated 1 +longdesc This LaTeX package can output annotation symbols enclosed in +longdesc square brackets and marked with an asterisk. +containersize 1400 +containerchecksum bb1939b53b892744c323bd28f84cbe07d94c30c3f824e9d611f8b044fe8b9b07990fe7709607e7212ac8252d6eaef9a989447f270e26f16e074af0b9bd92cfd4 +doccontainersize 117844 +doccontainerchecksum 31b443d1ad05880fa5c6878fed144a2b1cf20fe855188ca8d879c5d18b7285f16dceb76b2ab7dd6be2f401b898752a674f810af6d3b9ff906a6cd75a80cf51c0 +docfiles size=35 + RELOC/doc/latex/asternote/README.md details="Readme" + RELOC/doc/latex/asternote/asternote.pdf details="Package documentation" language="en,ja" + RELOC/doc/latex/asternote/asternote.tex +runfiles size=2 + RELOC/tex/latex/asternote/asternote.sty +catalogue-contact-home https://www.metaphysica.info/technote/package_asternote/ +catalogue-ctan /macros/latex/contrib/asternote +catalogue-license mit +catalogue-topics japanese footnote +catalogue-version 1.1 name astro category Package @@ -24696,7 +25177,7 @@ catalogue-version 0.1c name asymptote category TLCore -revision 58569 +revision 65952 shortdesc 2D and 3D TeX-Aware Vector Graphics Language longdesc Asymptote is a powerful descriptive vector graphics language longdesc for technical drawing, inspired by MetaPost but with an @@ -24704,11 +25185,11 @@ longdesc improved C++-like syntax. Asymptote provides for figures the longdesc same high-quality level of typesetting that LaTeX does for longdesc scientific text. depend asymptote.ARCH -containersize 360728 -containerchecksum 810f80e2594099f3813ef28d06a4905a0d0e678c16213f2a900c970e3900ad1ba1d72255ef466d847fc03c1ce90db4da41362679e542bbfbf5b0665e194d67a3 -doccontainersize 2342368 -doccontainerchecksum b2d76f550a026ff433193d86c3ddb284efab9d53a2b6e08e22eaefce9f95966315dce373be813b704b7b8447e5de61e3d12173ad295343eacb1a2991a0a915b6 -docfiles size=1274 +containersize 380088 +containerchecksum 542d3cd627809d51ce25d45b196deab802ce04744047e1370fc7e8f05df111c781e4a9587bd5aaa751c40cfa4397f930ab1436dd2749f46fc972b629a786f7bb +doccontainersize 2364548 +doccontainerchecksum 7318f7e97f3cfab0c48b9fa6ca38b8238a41775ef054cc3499506dfd2c67e38ffd19137dffb394dda7fd61a2186450a30c299cf9116f93ff4b9639cad2437a9e +docfiles size=1309 texmf-dist/doc/asymptote/CAD.pdf details="Using Asymptote for 2D CAD" texmf-dist/doc/asymptote/TeXShopAndAsymptote.pdf texmf-dist/doc/asymptote/asy-latex.pdf @@ -24717,6 +25198,7 @@ docfiles size=1274 texmf-dist/doc/asymptote/examples/100d.pdb1 texmf-dist/doc/asymptote/examples/100d.views texmf-dist/doc/asymptote/examples/1overx.asy + texmf-dist/doc/asymptote/examples/AiryDisk.asy texmf-dist/doc/asymptote/examples/BezierPatch.asy texmf-dist/doc/asymptote/examples/BezierSaddle.asy texmf-dist/doc/asymptote/examples/BezierSurface.asy @@ -24743,6 +25225,7 @@ docfiles size=1274 texmf-dist/doc/asymptote/examples/Sierpinski.asy texmf-dist/doc/asymptote/examples/SierpinskiGasket.asy texmf-dist/doc/asymptote/examples/SierpinskiSponge.asy + texmf-dist/doc/asymptote/examples/Viviani.asy texmf-dist/doc/asymptote/examples/advection.asy texmf-dist/doc/asymptote/examples/alignbox.asy texmf-dist/doc/asymptote/examples/alignedaxis.asy @@ -24846,6 +25329,7 @@ docfiles size=1274 texmf-dist/doc/asymptote/examples/genusthree.asy texmf-dist/doc/asymptote/examples/genustwo.asy texmf-dist/doc/asymptote/examples/graphmarkers.asy + texmf-dist/doc/asymptote/examples/graphwithderiv.asy texmf-dist/doc/asymptote/examples/grid.asy texmf-dist/doc/asymptote/examples/grid3xyz.asy texmf-dist/doc/asymptote/examples/hatch.asy @@ -24994,6 +25478,7 @@ docfiles size=1274 texmf-dist/doc/asymptote/examples/superpath.asy texmf-dist/doc/asymptote/examples/tanh.asy texmf-dist/doc/asymptote/examples/teapot.asy + texmf-dist/doc/asymptote/examples/teapotIBL.asy texmf-dist/doc/asymptote/examples/tensor.asy texmf-dist/doc/asymptote/examples/tetra.asy texmf-dist/doc/asymptote/examples/textpath.asy @@ -25015,6 +25500,7 @@ docfiles size=1274 texmf-dist/doc/asymptote/examples/truncatedIcosahedron.asy texmf-dist/doc/asymptote/examples/tvgen.asy texmf-dist/doc/asymptote/examples/twistedtubes.asy + texmf-dist/doc/asymptote/examples/twoSpheres.asy texmf-dist/doc/asymptote/examples/unitcircle.asy texmf-dist/doc/asymptote/examples/unitcircle3.asy texmf-dist/doc/asymptote/examples/unitoctant.asy @@ -25047,8 +25533,9 @@ docfiles size=1274 texmf-dist/doc/man/man1/asy.man1.pdf texmf-dist/doc/man/man1/xasy.1 texmf-dist/doc/man/man1/xasy.man1.pdf -runfiles size=625 +runfiles size=664 texmf-dist/asymptote/CAD.asy + texmf-dist/asymptote/GUI/ContextWindow.py texmf-dist/asymptote/GUI/CustMatTransform.py texmf-dist/asymptote/GUI/DebugFlags.py texmf-dist/asymptote/GUI/GuidesManager.py @@ -25073,7 +25560,6 @@ runfiles size=625 texmf-dist/asymptote/GUI/pyUIClass/widg_editBezier.py texmf-dist/asymptote/GUI/pyUIClass/widgetPointEditor.py texmf-dist/asymptote/GUI/pyUIClass/window1.py - texmf-dist/asymptote/GUI/res/icons.qrc texmf-dist/asymptote/GUI/res/icons/anchor.svg texmf-dist/asymptote/GUI/res/icons/android-arrow-back.svg texmf-dist/asymptote/GUI/res/icons/android-arrow-forward.svg @@ -25091,6 +25577,7 @@ runfiles size=625 texmf-dist/asymptote/GUI/res/icons/android-refresh.svg texmf-dist/asymptote/GUI/res/icons/arrow-move.svg texmf-dist/asymptote/GUI/res/icons/arrow-resize.svg + texmf-dist/asymptote/GUI/res/icons/brush.svg texmf-dist/asymptote/GUI/res/icons/bucket.svg texmf-dist/asymptote/GUI/res/icons/center.svg texmf-dist/asymptote/GUI/res/icons/centerorigin.svg @@ -25110,11 +25597,13 @@ runfiles size=625 texmf-dist/asymptote/GUI/res/icons/opencurve.svg texmf-dist/asymptote/GUI/res/icons/openpolygon.svg texmf-dist/asymptote/GUI/res/icons/plus-round.svg + texmf-dist/asymptote/GUI/res/icons/redo.svg texmf-dist/asymptote/GUI/res/icons/save.svg texmf-dist/asymptote/GUI/res/icons/social-python.svg texmf-dist/asymptote/GUI/res/icons/subdirectory-left.svg texmf-dist/asymptote/GUI/res/icons/text.svg texmf-dist/asymptote/GUI/res/icons/triangle-stroked-15.svg + texmf-dist/asymptote/GUI/res/icons/undo.svg texmf-dist/asymptote/GUI/setup.py texmf-dist/asymptote/GUI/xasy.py texmf-dist/asymptote/GUI/xasy2asy.py @@ -25193,8 +25682,17 @@ runfiles size=625 texmf-dist/asymptote/rationalSimplex.asy texmf-dist/asymptote/reload.js texmf-dist/asymptote/roundedpath.asy + texmf-dist/asymptote/shaders/blend.glsl + texmf-dist/asymptote/shaders/compress.glsl + texmf-dist/asymptote/shaders/count.glsl texmf-dist/asymptote/shaders/fragment.glsl + texmf-dist/asymptote/shaders/screen.glsl + texmf-dist/asymptote/shaders/sum1.glsl + texmf-dist/asymptote/shaders/sum2.glsl + texmf-dist/asymptote/shaders/sum2fast.glsl + texmf-dist/asymptote/shaders/sum3.glsl texmf-dist/asymptote/shaders/vertex.glsl + texmf-dist/asymptote/shaders/zero.glsl texmf-dist/asymptote/simplex.asy texmf-dist/asymptote/size10.asy texmf-dist/asymptote/size11.asy @@ -25214,6 +25712,9 @@ runfiles size=625 texmf-dist/asymptote/tree.asy texmf-dist/asymptote/trembling.asy texmf-dist/asymptote/tube.asy + texmf-dist/asymptote/v3d.asy + texmf-dist/asymptote/v3dheadertypes.asy + texmf-dist/asymptote/v3dtypes.asy texmf-dist/asymptote/version.asy texmf-dist/asymptote/webgl/asygl.js texmf-dist/asymptote/x11colors.asy @@ -25228,7 +25729,7 @@ catalogue-contact-repository https://github.com/vectorgraphics/asymptote catalogue-ctan /graphics/asymptote catalogue-license lgpl3 catalogue-topics graphics graphics-engn -catalogue-version 2.70 +catalogue-version 2.85 name asymptote-by-example-zh-cn category Package @@ -25418,101 +25919,90 @@ catalogue-topics chinese-doc name asymptote.aarch64-linux category TLCore -revision 58149 +revision 66237 shortdesc aarch64-linux files of asymptote -containersize 1020592 -containerchecksum 72bccbc89ba19115b998024069f6efc56ed743be89478196bcb8b452550b5d4afb053e587e355c44755804018b7ca33690beb6c299139cb171cdf0c0f04a7af3 -binfiles arch=aarch64-linux size=911 +containersize 1107084 +containerchecksum ab1895ff6eb00529cd39a78b52927985fdaea8a87db9118305ef72fe303287fbc2f71d0cc81baf4bcbed8b6c83043cf1d469edeaa4dc06b0774362b7d2d2e162 +binfiles arch=aarch64-linux size=974 bin/aarch64-linux/asy name asymptote.amd64-freebsd category TLCore -revision 58425 +revision 66574 shortdesc amd64-freebsd files of asymptote -containersize 1630960 -containerchecksum 9d04369842a3950cc16cbb2b98e79503c8c43a38e4df8cd44c7e2e4e4eaf3dd891e6e8c26120f34f6ba6178c4845b2ce2cfc9ac47c59e5c77815f1fce2869221 -binfiles arch=amd64-freebsd size=1340 +containersize 1720396 +containerchecksum 44eda9c4609007de74b037a245af1f71cea213d5a1b6e7cb43cec9536a139c2417482c6f8f6ba073382d858127b29bd304bb16f214442c01e22bd5f0773acb02 +binfiles arch=amd64-freebsd size=1401 bin/amd64-freebsd/asy bin/amd64-freebsd/xasy name asymptote.amd64-netbsd category TLCore -revision 54635 +revision 59140 shortdesc amd64-netbsd files of asymptote -containersize 1186160 -containerchecksum 725def80b17ec761258f0aaf8f283cb959f27f78dd41b57fafa259e3c6877af4430f8b27de063f2103906c7fb3e5ee0742d128b468bff00e418223741626c270 -binfiles arch=amd64-netbsd size=1365 - bin/amd64-netbsd/asy +containersize 344 +containerchecksum 51fa1df2ad99846fe953d45b317b62c3b86f60fb4c8d464d4d8c5f377c019512c18941de6ba7a0b668cd3ffcb49d34ba3f623c58b16a97aa53634cc1fe6b1371 +binfiles arch=amd64-netbsd size=1 bin/amd64-netbsd/xasy name asymptote.armhf-linux category TLCore -revision 58428 +revision 62706 shortdesc armhf-linux files of asymptote -containersize 932500 -containerchecksum a731aebe7c1b888afe76e6a474df138d1ce5bbc88158be17ee741240b238517d515229879499406db908fb09b9e5f2565355e40e7168a7dbee48a0c7b785b2f6 -binfiles arch=armhf-linux size=781 +containersize 1034648 +containerchecksum 04c4d83b069c9ba82829e85a33189fa27cf9434286e08bbaa96d8e5fc7787e594e9db806be1f1af651fed1bfd90df256a8f338467f8b80a5913b36ed67d278f9 +binfiles arch=armhf-linux size=868 bin/armhf-linux/asy bin/armhf-linux/xasy -name asymptote.i386-cygwin -category TLCore -revision 58424 -shortdesc i386-cygwin files of asymptote -containersize 1147440 -containerchecksum 4eaf9ddc0bba20162f9c4b1e84acdaa946710e362bbbab238c4530d68bef9101c88b4ea3d1c088c6b7efb34d9402474113c1aa3ced6c77bb1bdbf5dbe6fa89d3 -binfiles arch=i386-cygwin size=1101 - bin/i386-cygwin/asy.exe - bin/i386-cygwin/xasy - name asymptote.i386-freebsd category TLCore -revision 58427 +revision 66575 shortdesc i386-freebsd files of asymptote -containersize 1509284 -containerchecksum d8f2b955c87b48febee8e7ddd6cd0a941e5de56d2c7df61a0987fffaed7df5b378a676f7d203705185beacc874c3299590e93edbbef56f0dce41933a8f70c84e -binfiles arch=i386-freebsd size=1651 +containersize 1600020 +containerchecksum c01c8f234511c3e907604cbf0a442f728889c67dcc0b7e8319e41487919a859b92b44ad807f9da78d9a9d5b7e28aedffc1b1f765ea8554e507ab83080f734f7b +binfiles arch=i386-freebsd size=1714 bin/i386-freebsd/asy bin/i386-freebsd/xasy name asymptote.i386-linux category TLCore -revision 57890 +revision 66003 shortdesc i386-linux files of asymptote -containersize 1290472 -containerchecksum c551cbd1e1d45c811ff3b9eefca1abd9d906698bed580da6e1e450e6a3b38bc22e6c371fda5aca3da2af853e029a99b0941311825498c26e74358888bf57efcf -binfiles arch=i386-linux size=1148 +containersize 1728852 +containerchecksum 3900bf315ed06c8bca126e81f1cc2cddeb5cc58e88f2323013639ca5db0eae329de56552a7a7ef7c256171d36d366181c23d845d13bab2924ede78d27a9d3687 +binfiles arch=i386-linux size=1528 bin/i386-linux/asy bin/i386-linux/xasy name asymptote.i386-solaris category TLCore -revision 58500 +revision 62823 shortdesc i386-solaris files of asymptote -containersize 1423068 -containerchecksum 934ae3511d1358f4ebe3989e599cef679fbb577ee1b1e682d86f47c062145c4e47bc5273c5a69ecfc148f954267231cbb1ec6586fa401443bde1f1f928dadaa9 -binfiles arch=i386-solaris size=1358 +containersize 1428832 +containerchecksum c2ad867eb097e36fa3e79588b915250b488c7297c9c3e4984273ef482b552e2f9572238c80f292209e77c984c161cb1d082c3c57206db16217631432f8a46d57 +binfiles arch=i386-solaris size=1366 bin/i386-solaris/asy bin/i386-solaris/xasy name asymptote.universal-darwin category TLCore -revision 58458 +revision 66529 shortdesc universal-darwin files of asymptote -containersize 4413964 -containerchecksum 3a5009ab46885efc1971fbb5919cf86a18ab7b7d98e56e273037aba1e56f9d98427e3e740123824985510ede07b0f1eed7164d5db449fc2ea3a20516a078734c -binfiles arch=universal-darwin size=7405 +containersize 5478100 +containerchecksum dfcd11484a502d688747d2c7eeda8b4534364d913ff326343fd09ce2367d2572b56c7c84af63f83d53d7b11b0cd11cdcf244f3a0ced0339b3773bc000f1e1061 +binfiles arch=universal-darwin size=10732 bin/universal-darwin/asy bin/universal-darwin/xasy -name asymptote.win32 +name asymptote.windows category TLCore -revision 58410 -shortdesc win32 files of asymptote -containersize 7561724 -containerchecksum b7225db8827d49520dc81513436591c66b02eecb5548e58bddd02c7642d3b38305018e3aeb85337227f7310d1bfaf1b609ee7f0aec135bbef567adb52734bfe0 -binfiles arch=win32 size=6702 - bin/win32/asy.exe +revision 65920 +shortdesc windows files of asymptote +containersize 7544148 +containerchecksum b8be2612ea21fe663e774b1bbd2b8f4c27edbddd3aeb32e3f7e72cee295367bf9d1cc4c3f1ad92ac3aa23754fa786e9e469bb7be4ff1c772ee5ccb1d2a658e23 +binfiles arch=windows size=6581 + bin/windows/asy.exe tlpkg/asymptote/asy.exe tlpkg/asymptote/cygwin1.dll tlpkg/asymptote/freeglut.dll @@ -25524,41 +26014,41 @@ binfiles arch=win32 size=6702 name asymptote.x86_64-cygwin category TLCore -revision 58424 +revision 65963 shortdesc x86_64-cygwin files of asymptote -containersize 1239736 -containerchecksum b030fec0efde21c384ebc918c2ff6af2d4dc92375ccadb635a01035ba6088eb340749a86ad045a9d8c890a017c7a5af8058701e654b54efa0fe0015745925400 -binfiles arch=x86_64-cygwin size=1072 +containersize 1239116 +containerchecksum d03466607311632ffd4aab1729416be67ca959b1bf647f748b3f617b73db8ad3b0e2e258d903ce934d225724e517dbfc2df8a1381b01e8d1155b25c52b7b7140 +binfiles arch=x86_64-cygwin size=1071 bin/x86_64-cygwin/asy.exe bin/x86_64-cygwin/xasy name asymptote.x86_64-darwinlegacy category TLCore -revision 58549 +revision 62849 shortdesc x86_64-darwinlegacy files of asymptote -containersize 1767608 -containerchecksum 4a0059ae21976800e596ebd82f0d2e7af31282685ffe466a78b91b19230899a6dc41e4c23b54f2f30eb4339f3abba70c96891043d2a212a6b3057f76b36a65eb -binfiles arch=x86_64-darwinlegacy size=1664 +containersize 2020168 +containerchecksum fe37accc3983975fe071235a20dd748c6bcd145bdf2375722e559390a8c9bd7a0d8100d736e29fba41b6251a93c2844b0411917c454a284cc14e8504c18086df +binfiles arch=x86_64-darwinlegacy size=1890 bin/x86_64-darwinlegacy/asy bin/x86_64-darwinlegacy/xasy name asymptote.x86_64-linux category TLCore -revision 57890 +revision 66003 shortdesc x86_64-linux files of asymptote -containersize 1259484 -containerchecksum b226fe0c87081e18bada5ac4a447699c2536b6f652f122a12c57a0abcdc4e3e5260efcc76dae4abbe90d1d2a27925f30e21a0359df4465379ae5671d0a43982a -binfiles arch=x86_64-linux size=1068 +containersize 1431512 +containerchecksum 61e35d63e20498bb51b7ac1ac2027cc66403a3a789d1c248d25bec0e3cb1165c218b89671fb305779b0f641688d36e1a1894308653593ec40cc511638cb5f273 +binfiles arch=x86_64-linux size=1208 bin/x86_64-linux/asy bin/x86_64-linux/xasy name asymptote.x86_64-solaris category TLCore -revision 58500 +revision 62823 shortdesc x86_64-solaris files of asymptote -containersize 1459608 -containerchecksum e0451d31992b7a58f3f17a99738fa4e5d07a348985223084708d9038f09458b6eb24d56e6fb189500beba8f263a96b6f7ec1d9010b71aefb9252612ab82f69cf -binfiles arch=x86_64-solaris size=1371 +containersize 1461968 +containerchecksum e8feea4ab4d170df74d3648da8c4ad39de5fb0fda8ec8a69ff4e22e2e4c4804fd49ce392831e8340c673fa448305f0e254cff3137a81b44e7bf186ec0e9fe027 +binfiles arch=x86_64-solaris size=1383 bin/x86_64-solaris/asy bin/x86_64-solaris/xasy @@ -25660,9 +26150,38 @@ catalogue-license lppl1.3c catalogue-topics defer-stuff catalogue-version 1.5 +name atendofenv +category Package +revision 62164 +shortdesc Add a custom symbol at the end of an environment +relocated 1 +longdesc This package allows adding a custom symbol at the end of an +longdesc environment (e.g. theorems, definitions, remarks). +containersize 1584 +containerchecksum 04a6c644b9235dce6495c46e2bcc093c03dfadf279d354c8b43b81a0b4a14daae71e7105642bcc95025c55ce92094c01292be2fc379e6c0c720aaa9b5a21ca9b +doccontainersize 91728 +doccontainerchecksum 22249061d4340939e597d50a5ae4c09f8b4514ddcb0862003ec7fff7006bebb207b5926ffcc0d723190b409435279c815a5880c6fc989294f26098c3db15d1d4 +docfiles size=24 + RELOC/doc/latex/atendofenv/LICENSE + RELOC/doc/latex/atendofenv/README.md details="Readme" + RELOC/doc/latex/atendofenv/atendofenv.pdf details="Package documentation" +srccontainersize 3104 +srccontainerchecksum 7b457f3643595f98138aeb25090e7cfc98f2d613689428559aae60898f81d586d509b7124ad3fd77383f9524f8611ac8bfcd361391670cd689f1025cf0078859 +srcfiles size=3 + RELOC/source/latex/atendofenv/atendofenv.dtx + RELOC/source/latex/atendofenv/atendofenv.ins +runfiles size=1 + RELOC/tex/latex/atendofenv/atendofenv.sty +catalogue-also nccthm +catalogue-contact-home https://github.com/fangyi-zhou/at-end-of-env +catalogue-ctan /macros/latex/contrib/atendofenv +catalogue-license pd +catalogue-topics maths +catalogue-version 0.2 + name atkinson category Package -revision 57624 +revision 64385 shortdesc Support for the Atkinson Hyperlegible family of fonts relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -25672,11 +26191,11 @@ longdesc it different from traditional typography design is that it longdesc focuses on letterform distinction to increase character longdesc recognition, ultimately improving readability. execute addMap atkinson.map -containersize 337140 -containerchecksum 902030074772c7b8dcf01cccb3e33fd045b5cf6d72293fa0d48503757321aa35b32eed030cd9dff55d5b17d7cfdd16e9ec301e91b2a5b9bab1a1a901884215cd -doccontainersize 631676 -doccontainerchecksum b0ae498ed9bc0b8275b954b4f95cdf967b7794aaf3f261ff2a0419f14faabfc4f12fa60b41c26171962ad41c32ac40e23df3d958bbcc33f5a1b2355e0c3b61c1 -docfiles size=185 +containersize 337144 +containerchecksum 8b763a29fbd529b91d586e00f13176c1cff3777541816a02913e57e8f8586357331615ba4d16549b9a98a0e049a42b2f49af39b3f950fc4845a46e37435dce2b +doccontainersize 634088 +doccontainerchecksum f5bcfd015fc4292f4568e9d960e921739a9ebcd8f198f648323d475f6ae5d803d3f0ef77d368fa9fe36f53947908e4bcf1cfbdbd621e780221c5e8432ca9db05 +docfiles size=187 RELOC/doc/fonts/atkinson/Atkinson-Hyperlegible-Font-License-2020-1104.pdf RELOC/doc/fonts/atkinson/BIA_AtkinsonHyerlegible-Specimen_200210.pdf RELOC/doc/fonts/atkinson/README details="Readme" @@ -26002,15 +26521,6 @@ containerchecksum 089ea159c41ab74c3e109032da478fb2e647173433b8ba07b20f94ea98b2d6 binfiles arch=armhf-linux size=1 bin/armhf-linux/pdfatfi -name attachfile2.i386-cygwin -category Package -revision 52909 -shortdesc i386-cygwin files of attachfile2 -containersize 344 -containerchecksum 45e2852719afddeb04a5e85e24a3324e4fd509c66dd166f52cb72e6867d5eb34ee35023a2107fbc22351dab5b7c1131443add47bdda9ec649b3f2a10fd78fe1c -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdfatfi - name attachfile2.i386-freebsd category Package revision 52909 @@ -26056,14 +26566,14 @@ containerchecksum 7a2c2a3b8a292ffca71556ccfa81bf5978096dcbbb5ca05b9e67bb3d4a9b71 binfiles arch=universal-darwin size=1 bin/universal-darwin/pdfatfi -name attachfile2.win32 +name attachfile2.windows category Package -revision 15404 -shortdesc win32 files of attachfile2 -containersize 692 -containerchecksum 235a0f778335e16c585f601e79f557808c222d2fc06d6e83eda0bc9bcaa91bbc746ef6d4fb78800a2a89fa754c8f0a6d7478269460e3c39135afddc1d3fdffc1 -binfiles arch=win32 size=1 - bin/win32/pdfatfi.exe +revision 65891 +shortdesc windows files of attachfile2 +containersize 2312 +containerchecksum c458b516f39f49ccd56c8bdc6bf9f2e1f93fe57f11bd448fc8c0062afe81115f1364fbba7093fe3fafc723c2b79316a736254210876688c7a608d2057d4dd5d7 +binfiles arch=windows size=2 + bin/windows/pdfatfi.exe name attachfile2.x86_64-cygwin category Package @@ -26166,16 +26676,16 @@ catalogue-topics dissertation class name augie category Package -revision 18948 +revision 61719 shortdesc Calligraphic font for typesetting handwriting relocated 1 longdesc A calligraphic font for simulating American-style informal longdesc handwriting. The font is distributed in Adobe Type 1 format. execute addMap augie.map -containersize 62096 -containerchecksum e8e40eb1e59b7bbd3e6b042e8c8ed40f604066fff6bffa3b46e0e7b7e5984fb25e880422d392209f6dcae6771339bb49a27bfcc7e9e33bd0b638b0794a5e5098 +containersize 62124 +containerchecksum a862fc140ee85e9f48908e7251dca78f6f328bb194bc1031ce7b521feabc62bb148764e7574341b9ba39a1bc76bb4a718c3cfa45bba7480aff168eb17661d74a doccontainersize 3324 -doccontainerchecksum 40db247d40e98bba2c79e5adbd564b77e09b52c34e75a41bb1447e586f605478e4e7399a8d294b078fbbe508eafe5d0c6a68b7e3b7c875af85016f72c74376f0 +doccontainerchecksum 434c1d88522ae41e8a41fbeda6685a059fafb8f6cdec26d8737b5f6a6ddcf1e4f2a443ffdffa6b62a74f4abd2ed2e947176f59e64bf5691debeb62d9d54e719b docfiles size=6 RELOC/doc/latex/augie/README.augie details="Readme" RELOC/doc/latex/augie/augie.txt @@ -26198,13 +26708,15 @@ runfiles size=30 RELOC/tex/latex/augie/t1augie.fd RELOC/tex/latex/augie/ts1augie.fd catalogue-also twcal +catalogue-contact-bugs https://gitlab.com/kjhtex/augie/-/issues +catalogue-contact-repository https://gitlab.com/kjhtex/augie.git catalogue-ctan /fonts/augie catalogue-license lppl catalogue-topics font font-calligraphic font-type1 name auncial-new category Package -revision 15878 +revision 62977 shortdesc Artificial Uncial font and LaTeX support macros relocated 1 longdesc The auncial-new bundle provides packages and fonts for a script @@ -26218,17 +26730,17 @@ longdesc bookhand fonts. The font follows the B1 encoding developed for longdesc bookhands. Access to the encoding is essential. The encoding longdesc mainly follows the standard T1 encoding. execute addMap auncial.map -containersize 201360 -containerchecksum e6132432d4398f3a9b8b04f331bf0852b662da84a96882758a8ce07e7f50a0ad5317b0d6a51cfa389f55fcb3b105e5aa748d249dc3e6c8b2d52647f6c900bb24 -doccontainersize 318120 -doccontainerchecksum 2ab25dee888444432a2bd1eedeccbbcbeb5fa8008b15b0072e1537116d5c1f5f082818eddf31dc604f73ca1d4fb3bc6d3eb76c1ac712666ef1f86dd06bd19516 +containersize 201344 +containerchecksum 625ddb6342c2ed4e5491e63ae13619b18892bc5d2cc005aac489cf1b6d193a28acdff9404f51b4cc76e8950ac182a4f8d5845bad85fd4c4afbdf33e7b8c225b3 +doccontainersize 318124 +doccontainerchecksum 4d3880a12e8dab72fa5278e4507bdc03786cfe94bfa43e81068629327d1e70a251ca58c7cbf6c58560c03b9e1e4d79257a674370e89c780f5c81589d54084270 docfiles size=90 RELOC/doc/fonts/auncial-new/README details="Readme" RELOC/doc/fonts/auncial-new/auncial.pdf details="Package documentation" RELOC/doc/fonts/auncial-new/tryauncial.pdf details="Font sample, etc." RELOC/doc/fonts/auncial-new/tryauncial.tex srccontainersize 33688 -srccontainerchecksum c5fc0ed2cbf1f4813925dcd2206d479ba4a0699d33872fa36e63b21616c595dbe289a005e1de8db2a7cad30d760161932b4fd0b75c477fc915fc1572f86b7b6f +srccontainerchecksum bb35718db33f7c4cb6889570def1b4f8a47e05896a14c8867ff7dba362028017d4e64d66b31e2f2cef45b749784704ea6cf9c1731543c3277496fc6c128b08fb srcfiles size=64 RELOC/source/fonts/auncial-new/auncial.dtx RELOC/source/fonts/auncial-new/auncial.ins @@ -26248,7 +26760,7 @@ runfiles size=65 RELOC/tex/latex/auncial-new/b1auncl.fd catalogue-ctan /fonts/auncial-new catalogue-license lppl -catalogue-topics font font-bookhand font-type1 +catalogue-topics font font-type1 font-bookhand font-medieval catalogue-version 2.0 name aurical @@ -26404,7 +26916,7 @@ catalogue-version 1.0 name authorarchive category Package -revision 54512 +revision 65777 shortdesc Adds self-archiving information to scientific papers relocated 1 longdesc This is a LaTeX style for producing author self-archiving @@ -26414,11 +26926,11 @@ longdesc conferences IEEE for the two-column layout used by many IEEE longdesc conferences LNCS for the LNCS layout (as used by Springer) LNI longdesc for the Lecture Notes in Informatics, published by the GI ENTCS longdesc for the Elsevier ENTCS layout -containersize 3660 -containerchecksum 6e72515c162d80e1efcb1f07bd94a1b32b9bd78b3b9ac056e516171347cdf2460ade2a6e91ef5a4606cfe5e4d365b517fe9271f4a84d89df81b53e68efe2dd91 -doccontainersize 1209504 -doccontainerchecksum cbe7eade3c961bdf9e0c973529f5eddf7b11cdff6a9683db96c72a35aec82ea036027c8e05b11e564fff9e3f20546a881378d2570c961c194aa7969624395c94 -docfiles size=408 +containersize 3704 +containerchecksum d5695336d18c4b84ef2b611b9ebcf502a974ed884625a2296666fdcf54a757f6682c0f9689713d134c033b1a9cf743218c02b05c0b2217c5c2ad5eb5d29f21bc +doccontainersize 790136 +doccontainerchecksum e8ca021be201da6cdb5ec980f3724d38d3cf4c5fa4be8fd08b286ed9f0ccf2db1f0b8e3f14e3cf6a591afa4c71ca4cf3f962d7a09466000377d51745b6600501 +docfiles size=309 RELOC/doc/latex/authorarchive/CHANGELOG.md RELOC/doc/latex/authorarchive/LICENSE RELOC/doc/latex/authorarchive/README.md details="Readme" @@ -26441,24 +26953,17 @@ docfiles size=408 RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-llncs.tex RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-lni.pdf RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-lni.tex - RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-sig-alternate.pdf - RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016-sig-alternate.tex RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016.pdf details="Example" RELOC/doc/latex/authorarchive/examples/brucker-authorarchive-2016.tex - RELOC/doc/latex/authorarchive/examples/input/body.tex - RELOC/doc/latex/authorarchive/icons/README.md details="Readme" - RELOC/doc/latex/authorarchive/icons/vector_iD_icon.pdf - RELOC/doc/latex/authorarchive/icons/vector_iD_icon.svg runfiles size=3 RELOC/tex/latex/authorarchive/authorarchive.sty catalogue-also coverpage catalogue-contact-bugs https://github.com/adbrucker/authorarchive/issues -catalogue-contact-home https://git.logicalhacking.com/adbrucker/authorarchive catalogue-contact-repository https://github.com/adbrucker/authorarchive catalogue-ctan /macros/latex/contrib/authorarchive catalogue-license lppl1.3c bsd2 catalogue-topics archival journalpub -catalogue-version 1.1.1 +catalogue-version 1.3.0 name authordate category Package @@ -26559,15 +27064,6 @@ containerchecksum 85a2ce30d16623e932ecd95c17ab64fc001e4177bc159d54cd5952b4fe852d binfiles arch=armhf-linux size=1 bin/armhf-linux/authorindex -name authorindex.i386-cygwin -category Package -revision 18790 -shortdesc i386-cygwin files of authorindex -containersize 340 -containerchecksum af734de9f73ea2e9124c461e4fa20cd38a1ee9711d7337e27d6a072327f8c57a4b806f5408a8df32b3e743c7e23446fdef13f7ec92813345b7ea2ffa7386809d -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/authorindex - name authorindex.i386-freebsd category Package revision 18790 @@ -26613,14 +27109,14 @@ containerchecksum 486ff192e81dbbeca686217d4c1a5d2c878796ce1ce28216ccd50a04d58c5f binfiles arch=universal-darwin size=1 bin/universal-darwin/authorindex -name authorindex.win32 +name authorindex.windows category Package -revision 44131 -shortdesc win32 files of authorindex -containersize 684 -containerchecksum 17bba018eb5068336f2de0f84e368040e690a90cf926fbae36b2533b69659182ce1c9a56ad8fa3176a8571f5f8c43dd96cf5052d52a34427f7cbf3a7fb12fb57 -binfiles arch=win32 size=1 - bin/win32/authorindex.exe +revision 65891 +shortdesc windows files of authorindex +containersize 2304 +containerchecksum 77fb7566a3da32ad66758f6f2728a6bcfe2329fa9118f31d2525fb065f3afdfd510d5976082cdad8d43ca3a2aca184da0634692af64974dc226f8ae652baea35 +binfiles arch=windows size=2 + bin/windows/authorindex.exe name authorindex.x86_64-cygwin category Package @@ -26759,7 +27255,7 @@ catalogue-version 1.5 name autoarea category Package -revision 15878 +revision 59552 catalogue pictex-autoarea shortdesc Automatic computation of bounding boxes with PiCTeX relocated 1 @@ -26768,18 +27264,16 @@ longdesc determining the "bounding box" of a picture. (PiCTeX so far longdesc accounted for put commands only). The "bounding box" is longdesc essential for proper placement of a picture between running longdesc text and margins and for keeping the running text away. -containersize 4168 -containerchecksum 81a6e2d2c241056cdb5ca7e54b33b523aa3bebe08d83e3418080659d316720a6bdcbb63d82c337175e6f0591a81ea322289333c5b8f125360c5ed4ae99843c4d -doccontainersize 36544 -doccontainerchecksum 8b3cb3def1945ae63b7d29614b868d07c64fba6ef50e266f92e3f1de1aa536084f5af5ff095bd467ef83d33701f780dcaed8a7d1c60dc68dcb5323444158b3b3 -docfiles size=22 +containersize 4148 +containerchecksum dadd69326335b6fe6e425a867e2e62a0b1df2f3179801bcc726c6ceebc15c24e3a7c9ecb3034209e25e503be47a9ad8639addfb628f720bd0c0d64c15177043d +doccontainersize 35392 +doccontainerchecksum 1b0f6ab0c7b1c69b7a802e9685db50e6b54361acf68ce2c2803419b165be1dd01f52a5b3fa9ccbe273e859509f7b7faa0c7c6b88bfec8f51f0bb66adf7b94e90 +docfiles size=20 RELOC/doc/latex/autoarea/ANNOUNCE.txt - RELOC/doc/latex/autoarea/README.aa + RELOC/doc/latex/autoarea/README details="Readme" 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 @@ -26787,7 +27281,7 @@ runfiles size=3 RELOC/tex/latex/autoarea/autoarea.sty catalogue-also pictex catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html -catalogue-ctan /graphics/pictex/addon/autoarea +catalogue-ctan /graphics/pictex-addons/autoarea catalogue-license lppl catalogue-topics graphics-in-tex catalogue-version 0.3a @@ -26933,6 +27427,31 @@ catalogue-license lppl1.2 catalogue-topics graphics-epspdf callback catalogue-version 1.1 +name autopuncitems +category Package +revision 63045 +shortdesc Automatically punctuate lists +relocated 1 +longdesc This package provides the autopunc option in the enumitem +longdesc environments itemize, enumerate, and description to +longdesc automatically punctuate the items. It uses lua pattern matching +longdesc to modify the environment's contents. +containersize 3072 +containerchecksum d41c5054417b511487beedd379f480f3869e67b747339837df5bf029b58171791ac8cb1c7bcaf5301822ba9585138d68af5ca080672d4ed1026086519fea1aec +doccontainersize 37720 +doccontainerchecksum 9c88cdb757a53e89bf7625fad0623154ea6101ee8c9cff2679698d0f6144d98a6099a68ef3fb1a31e99e7dee92572e34654321e44496e863f1444feab8a6cb1d +docfiles size=14 + RELOC/doc/lualatex/autopuncitems/README.md details="Readme" + RELOC/doc/lualatex/autopuncitems/autopuncitems.pdf details="Package documentation" + RELOC/doc/lualatex/autopuncitems/autopuncitems.tex +runfiles size=3 + RELOC/tex/lualatex/autopuncitems/autopuncitems.lua + RELOC/tex/lualatex/autopuncitems/autopuncitems.sty +catalogue-contact-repository https://github.com/kalekje/autopuncitems +catalogue-ctan /macros/luatex/latex/autopuncitems +catalogue-license mit +catalogue-topics luatex + name autosp category Package revision 58211 @@ -26976,80 +27495,70 @@ catalogue-topics music name autosp.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of autosp -containersize 21048 -containerchecksum 61f417e058e48160b21b9bc3529af96d987c49bb9f77ad5ef780454e210f1562f705b687dc061c908928fdc8349d9973b67cb9b99fdbf831638ab2a1d9acda41 +containersize 21032 +containerchecksum 058b9b6265aa6a9611de8659baef01322a317c210686bdceeb7069bcf147ff40402463d5933c22c31236c554d8408a6eed05f7c197174070c26572ae22c657e6 binfiles arch=aarch64-linux size=17 bin/aarch64-linux/autosp bin/aarch64-linux/tex2aspc name autosp.amd64-freebsd category Package -revision 57941 +revision 62206 shortdesc amd64-freebsd files of autosp -containersize 21176 -containerchecksum 9e7de5ca70591cc4887675398fb59cb9b33bf8a86d39ffedeb8a12973f89498ff03c926ae1ac3c4b0ecb08feae614d8d84c3686daaf136ca2ca90902dd07b510 +containersize 21680 +containerchecksum 5b9165da422e7d0b920977b95daf85f1bd00d1cc6e8c495baf58b21d19e86b8242f35c0458e9f7c3fda9ecb8eb2349e9449401a72ab82f66f4cca41f326068dc binfiles arch=amd64-freebsd size=15 bin/amd64-freebsd/autosp bin/amd64-freebsd/tex2aspc name autosp.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of autosp -containersize 18360 -containerchecksum f1665d3525b1877a2489d01fb7d8bba18545ec1cda86e1502c881fef03de9c99eea773c0629c8798a21cc8391d3bba4e86a9c62cf5d2b489ce561dd60e2b007d +containersize 18372 +containerchecksum 76e81dd7e2772ce477e3d3358c25f2087c4c13d9deb2c6cb4b27a349838e7998a022df3f5bc31e7cb90e754d7ec4d22024bad8d406773729acfd89a27421b962 binfiles arch=amd64-netbsd size=16 bin/amd64-netbsd/autosp bin/amd64-netbsd/tex2aspc name autosp.armhf-linux category Package -revision 57957 +revision 63092 shortdesc armhf-linux files of autosp -containersize 18248 -containerchecksum 64268376a11d1ef13299f3927bf567e5743c0dcbe48a45f4ef740e0e34fd41a254bdaca6d3c0de319140423055f805b5cd22907cc8577ee5053850a5c70671fd +containersize 18244 +containerchecksum f02ab816e9ee0aaf693f999cb6a946079a23b99c6d7bedfe711fd9914064dabc408d57b0b650e7624eb08270d740b8358daec1e68c122f97f6a528f9584c907e binfiles arch=armhf-linux size=13 bin/armhf-linux/autosp bin/armhf-linux/tex2aspc -name autosp.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of autosp -containersize 18384 -containerchecksum da2e8887b14b2fc62862330213ba1205cbdb4b053bb2b7a681d509928c74e96e6ed393f0747a10fdc4a766587ea379eb31853c68f8837766f2523ad455d36319 -binfiles arch=i386-cygwin size=15 - bin/i386-cygwin/autosp.exe - bin/i386-cygwin/tex2aspc.exe - name autosp.i386-freebsd category Package -revision 57961 +revision 62206 shortdesc i386-freebsd files of autosp -containersize 18548 -containerchecksum 7bbd732c5b26660c1936223b406def965c1e410bac422de95c2690e096eaf53b9a5a8f929ae94128a795d00a4f7c6103a617759556315ac06111709dfe6f42c8 +containersize 19280 +containerchecksum fcf84cc59cd8b2b444a9b3f8661e26e5ea20e14125e4fea8b7b8c5a8ec4da2c4db2a8ce4b4977cf87b244f9720bf65fb42a6f45e9eebce3a410948d441048285 binfiles arch=i386-freebsd size=13 bin/i386-freebsd/autosp bin/i386-freebsd/tex2aspc name autosp.i386-linux category Package -revision 57878 +revision 62210 shortdesc i386-linux files of autosp -containersize 20232 -containerchecksum efb8414826bcd4f33ca0cceade41cfe6faa9f45bad4f430b79b94d26690a5864d936ad48d17bc49beb560175edadb8b94173629b61d9e8581a5b672f31411330 -binfiles arch=i386-linux size=15 +containersize 20500 +containerchecksum 5d617aeaac826dec04d9c4dfe4f6bda72d52888d485fed7b30583b295d5117bf649bed61f57a8046d4392d616592e3eba88341613047703ae8c5cc2a407375d2 +binfiles arch=i386-linux size=16 bin/i386-linux/autosp bin/i386-linux/tex2aspc name autosp.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of autosp -containersize 17036 -containerchecksum 7c850e757e66a28be42dd2f13b88ef1ab9bf481a70b7a741aec09077d06822968c6f0a1e81cb5ca1122228d9906ccd075f7ed62d64e74a9cc131737142aa3727 +containersize 17048 +containerchecksum ac317da7448400c8a1764ccb86a7538d42963e829a60dc822dace79b1b1530535de333d5eeeea974553f84f08302edcf8ce1f1d39e05e4cbe9219e203fc3d061 binfiles arch=i386-netbsd size=16 bin/i386-netbsd/autosp bin/i386-netbsd/tex2aspc @@ -27066,31 +27575,31 @@ binfiles arch=i386-solaris size=14 name autosp.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of autosp -containersize 46348 -containerchecksum 061046bbb41a822877c630e407965c16b201846a2d4bc3aa1050bc36876fb079b4c3bb83a27546e7746d866cfed4560fe86f2af034d58001d3beae8948a65fd8 -binfiles arch=universal-darwin size=75 +containersize 47020 +containerchecksum 967d8fecdf402781829d69a7b66494d53b0185ae52356c96bdc3dde88dcc87ca1cde08823b94c6ad3c96339624d0a0ea59dec157d14ab0267e1ad9a757f48656 +binfiles arch=universal-darwin size=79 bin/universal-darwin/autosp bin/universal-darwin/tex2aspc -name autosp.win32 +name autosp.windows category Package -revision 58783 -shortdesc win32 files of autosp -containersize 20484 -containerchecksum a63785ffebe582f3aa50ed0e2e362dbe61b191ce9215400d6c294c9162a92cb8c1307af482f04c686fba125aa8dd8bf35cb5a12fcaff2c3f6fa42ba6b4135288 -binfiles arch=win32 size=13 - bin/win32/autosp.exe - bin/win32/tex2aspc.exe +revision 65891 +shortdesc windows files of autosp +containersize 20864 +containerchecksum 9288a7ea666a5ab11cd76a0ca07937ce5abf1851028694c7699f910aa0d51e953e58c0ecdb0a4a5d70119a93d4ca9ebe3c51bbcbae81427eea790c1b32380d75 +binfiles arch=windows size=15 + bin/windows/autosp.exe + bin/windows/tex2aspc.exe name autosp.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of autosp -containersize 20876 -containerchecksum c77c55a798809c19c193608cab20d6ae8ab0f3e209212ea78ff5f07b809ea3bc644b4de31a4a41f996b95a2b9e294c14f4775219c8de0b16849bb3f76de38fdf -binfiles arch=x86_64-cygwin size=15 +containersize 21068 +containerchecksum af134a4a59e8e1e468bc62115260b94a18f348a7039ae49fa159bd5b390abe373fc655db3e2ad478b1678fabf81b63e898ba82add9d81b84a2ecb7ab660bd778 +binfiles arch=x86_64-cygwin size=16 bin/x86_64-cygwin/autosp.exe bin/x86_64-cygwin/tex2aspc.exe @@ -27106,20 +27615,20 @@ binfiles arch=x86_64-darwinlegacy size=15 name autosp.x86_64-linux category Package -revision 57878 +revision 62187 shortdesc x86_64-linux files of autosp -containersize 20092 -containerchecksum 9e5552f2590adcd49fb44485c52dbed97a9e513f8636fafd2946b92a5162b3acfcadadae46697f882b77d77d745aa7220bbdb29dc5e8dbf5368ced3f272c648a -binfiles arch=x86_64-linux size=13 +containersize 19972 +containerchecksum afff7047fa0686cd6e27e9c62ac409cc1894426fe01a695807d54214fdb64484cc3f9be3d4202979b7c6ad7c137d30d17c04ff7bcdbeeeb3a12b789dd5a3d206 +binfiles arch=x86_64-linux size=15 bin/x86_64-linux/autosp bin/x86_64-linux/tex2aspc name autosp.x86_64-linuxmusl category Package -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of autosp -containersize 20932 -containerchecksum 531585afa4e6a0a32e06af0de9ac8b7bdb3300226195b3313f808b93b98e34918b1d312c03443341384c418878a240d1f649c82548b0da1017ba62cfa8db5d25 +containersize 20636 +containerchecksum 4913384c3350b15bd787020d2c40aec531da4b25c1be3192730322d668093504f92575e5e7d67d598e02ff5108c88d4ac2b912eb760bf6981b27063bff808d30 binfiles arch=x86_64-linuxmusl size=15 bin/x86_64-linuxmusl/autosp bin/x86_64-linuxmusl/tex2aspc @@ -27163,9 +27672,9 @@ catalogue-version 1.6 name avantgar category Package -revision 31835 +revision 61983 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -27178,8 +27687,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uag.map -containersize 241424 -containerchecksum cf5f4701305bcfe2dcb2c92d43fbf2d0ab3b027b2c9b772926216094532e935cec234866f43135e7e050068679d0b1de5a11833696fd103ddae949458cd03044 +containersize 241568 +containerchecksum c08c987c385bf9eeca0f4f5b7edcd41570c81f18751593824da8eea770c29d63725bed100fa2ff37a80a5c70086533ddc1e91848d5ddeedec3c5c669907ed20b runfiles size=392 RELOC/dvips/avantgar/config.uag RELOC/fonts/afm/adobe/avantgar/pagd8a.afm @@ -27522,73 +28031,64 @@ catalogue-version 2.1.1c name axodraw2.aarch64-linux category Package -revision 58389 +revision 65927 shortdesc aarch64-linux files of axodraw2 -containersize 21124 -containerchecksum 449cef8d9788756e7597a23d237146f45652d2701493d514f4f7df1945c6c6e8e2b80873e394d9c5de8071e04e6acf485b9c1e4495be45bbecc3fd997d244a6b +containersize 21096 +containerchecksum 909c40b6af8c1b09af45d25e1602b29d7e399a1bef3cbb0a97cc69cecad9ab19154f961113556195a59d979aba5b4c04d4906ddde507da8e53f789e3f6504c0a binfiles arch=aarch64-linux size=15 bin/aarch64-linux/axohelp name axodraw2.amd64-freebsd category Package -revision 58388 +revision 62206 shortdesc amd64-freebsd files of axodraw2 -containersize 28804 -containerchecksum 019043eaf4da6b4bd66519f5c352b1753eaeb0137352037d9702dbfc9321fec62b062699aa4e0fc131803afb521c2c946184982b01995a4104fefb05d3c9d800 -binfiles arch=amd64-freebsd size=21 +containersize 28800 +containerchecksum 8361a17acc90816cfeecc0fceb4ab7e862ef6229a1944d9707ba7a41c0b3985cce43e2beb9f1ab734a97b3d8ee680ec41e4aa9e372ec5414c48eb8e4fe3ffadb +binfiles arch=amd64-freebsd size=20 bin/amd64-freebsd/axohelp name axodraw2.amd64-netbsd category Package -revision 58386 +revision 65923 shortdesc amd64-netbsd files of axodraw2 -containersize 20452 -containerchecksum 746c21b9fe4ac49dc64cdfe233645d76e593d9a8613c0e762f9c3b030580219aa1bb132aff490d16a5db2f9c692391755e9460c582ef191b432d02f46f80111d +containersize 20412 +containerchecksum 621546afeb340b4b71cf51f590278d058f32a5264673e0aa556f95b417e240982a8e967aae4f837e09846c998b24e332d843739b0951e795fb3721868149348e binfiles arch=amd64-netbsd size=19 bin/amd64-netbsd/axohelp name axodraw2.armhf-linux category Package -revision 58428 +revision 63092 shortdesc armhf-linux files of axodraw2 -containersize 17672 -containerchecksum 4405fd492b3799d17198b8641143446e8a279240e7802c64ba85f4bcd0c2792d5f551f846262bd554fc3fe208111f83ef8c71fa8eb8f3f1a46eae5e0aff91ec4 +containersize 17684 +containerchecksum 59054805aaf5151c03795f6ed3433c477d8f3f07f60d09b00e202a0e28a718f600fbcb3c1c357278350e2189079640f90aeefbbec691bcb40244700de4e80458 binfiles arch=armhf-linux size=11 bin/armhf-linux/axohelp -name axodraw2.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of axodraw2 -containersize 22728 -containerchecksum 2995c4bd4f3690fa05360331809a6fd3af42f230e74a9cb1d7f2c123d1acce52fc85c985893697b74a83eb9f5850780a8b628e1c382915d01fcb84298e2349ef -binfiles arch=i386-cygwin size=18 - bin/i386-cygwin/axohelp.exe - name axodraw2.i386-freebsd category Package -revision 58388 +revision 62206 shortdesc i386-freebsd files of axodraw2 -containersize 23180 -containerchecksum d8ba9c35eca214cdbadb779986f1dc7b6b3d787e6f8b7d6f15c7b12eab84e9fa346d25567ad2f65df674d0ba805197bad7734acd8d24e66d9d98d41a3799ee0b +containersize 23500 +containerchecksum 696a899f6f35ebc8b0faad84cb89ee235cc5d5a4d5992960d9feef67dbcf9bcf7a13747912754880f77f9d66268990a0990400279ab9beeeaeee87d927263834 binfiles arch=i386-freebsd size=20 bin/i386-freebsd/axohelp name axodraw2.i386-linux category Package -revision 58378 +revision 62210 shortdesc i386-linux files of axodraw2 -containersize 23148 -containerchecksum 2f940bf7b9b13adbf7778f010ddade5759be4a07230f19da6ee301de93ca8bc932fc5fb7e649a1f7a9da4c9727e2252a66cb304bb8cf6a72b79315bfdd40ec4d -binfiles arch=i386-linux size=16 +containersize 23596 +containerchecksum deff2dffa5a1e8db3fde20739af1f89eecf0bec629e62293cf9daee8e00e94602ef4a73cf2eb39289b76a917a8ee98c29c4158eb1e2b9ffc5645f87f081b800b +binfiles arch=i386-linux size=17 bin/i386-linux/axohelp name axodraw2.i386-netbsd category Package -revision 58386 +revision 65923 shortdesc i386-netbsd files of axodraw2 containersize 17388 -containerchecksum d680e2a3d31e2c01373ae624110f677a424455f0b06977e0d01b7c2b7160bff366b07641b0a1499ff958bd94568d9f49bde5cf53bc23e9b6154aa4c99d509d49 +containerchecksum fbe1342d310222f4372c423426fae2ec83f9d480b57f332d05e65345bb8514041200f29298b18a19847247705b51d958b234f0b37ec5ea10f45450963269a516 binfiles arch=i386-netbsd size=16 bin/i386-netbsd/axohelp @@ -27603,28 +28103,28 @@ binfiles arch=i386-solaris size=14 name axodraw2.universal-darwin category Package -revision 58418 +revision 65895 shortdesc universal-darwin files of axodraw2 -containersize 57024 -containerchecksum 78077aa55b150f84f94912bfa0452deedcb803fbc8318e41ac4e095430393c20775971b31aa244f621979c943f397a8912ac8e69319bacb25abb89789eda6ac3 -binfiles arch=universal-darwin size=58 +containersize 57212 +containerchecksum 1a1a7b9e85c9f200ed203a17316d291d0bc5504f900111a0b7aa89b65a5e082f582bdaa3e70786a736cadd43bff4c25634d25a061a2b5c0d8a85fa51ac48cc66 +binfiles arch=universal-darwin size=62 bin/universal-darwin/axohelp -name axodraw2.win32 +name axodraw2.windows category Package -revision 58158 -shortdesc win32 files of axodraw2 -containersize 86256 -containerchecksum b4848637bcf4d8f8b32749b77af4270216b7ace7c077d99fc94ea3ace4fe92f519d031a1f14d3aae4c25d2d8d4d57b3c47115c4e5ef0b09603dbcf1fa0c9a4fe -binfiles arch=win32 size=48 - bin/win32/axohelp.exe +revision 65891 +shortdesc windows files of axodraw2 +containersize 96456 +containerchecksum c11e1a1aa0c6b2845d91938581ebcc43e9ba5a188e6aeac821ed984ee0cc0205ef60ec0851821bdc3c4325f44b2c879bd575583869ee97084921671bb63282f6 +binfiles arch=windows size=54 + bin/windows/axohelp.exe name axodraw2.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of axodraw2 -containersize 28640 -containerchecksum 10ab6b21ef3c8ea2aeb64ec88b54a52dc243639164b34174a6e4928b27e277ca9dcd8014a5413a4f40cd8cbc37cd63ebc19d1fc6be6a15e16730bde504882f15 +containersize 28604 +containerchecksum 31b29a76eb9c70c2e10f12aed4d791802adf64c61a995fe25e3e1ead1e0a741fb3d85824b0ab7cae94a1d28f59aad866a7d0c29e405e738ee58a681f7363eb76 binfiles arch=x86_64-cygwin size=20 bin/x86_64-cygwin/axohelp.exe @@ -27639,19 +28139,19 @@ binfiles arch=x86_64-darwinlegacy size=14 name axodraw2.x86_64-linux category Package -revision 58378 +revision 62187 shortdesc x86_64-linux files of axodraw2 -containersize 23768 -containerchecksum dccde3b2b9fc5acc7b114838f2814681099c653798b02dfdbd03a96053b3becc15e87e006ba6a5a95a3c725d540034b4373e50a2d62e3c7ea7e153515caa3b18 -binfiles arch=x86_64-linux size=16 +containersize 24260 +containerchecksum 2b6b1f23b8771515b1f2caac44aec3c75cd8119ecb82f90fce10a388283ad98ab326a793448c779ff07562e834060e702095574422de9c828a8e0bc32c527c1b +binfiles arch=x86_64-linux size=17 bin/x86_64-linux/axohelp name axodraw2.x86_64-linuxmusl category Package -revision 58378 +revision 62210 shortdesc x86_64-linuxmusl files of axodraw2 -containersize 24848 -containerchecksum 59bd7d7404e1c323fd1e35efbb654f6deee96368b32df0a3626fc323da57cbbd7b0989345d56a9169cba773e45fb3bd51be846b7184357947a8d1ed5e34f8748 +containersize 24452 +containerchecksum 5dd3bb59798a88954b9063ef80c2e248ff45b8d39328df4eaf723a8543986d277328af8732a1baf09bf6851de11e9dcfff3b4ef424713c0448467cb0939a5c6f binfiles arch=x86_64-linuxmusl size=16 bin/x86_64-linuxmusl/axohelp @@ -27695,8 +28195,8 @@ catalogue-version 1.0 name babel category Package -revision 58999 -shortdesc Multilingual support for Plain TeX or LaTeX +revision 65823 +shortdesc Multilingual support for LaTeX, LuaLaTeX, XeLaTeX, and Plain TeX relocated 1 longdesc This package manages culturally-determined typographical (and longdesc other) rules for a wide range of languages. A document may @@ -27708,22 +28208,22 @@ longdesc has to be done for each language. Included is also a set of ini longdesc files for about 250 languages. Many language styles work with longdesc pdfLaTeX, as well as with XeLaTeX and LuaLaTeX, out of the box. longdesc A few even work with plain formats. -containersize 178608 -containerchecksum 2f94846e43f525509ee98b790066c5fdc7cb507c1b98c5935e50cb5b3e1ce30af5b35c17a1423a85a2109267b452781bc1855a98fb3d94de9c2f0e2202fed36d -doccontainersize 819808 -doccontainerchecksum 8cf82f6dd7b9fc6e6cb8f5da7f3e4bdbd226ddf29730cec34eb83ba728521aae4e83b64012fe8c4ffb1c6f5c4ff1a88fa861981f3f713fd08ddc0f15495d3262 -docfiles size=205 +containersize 196284 +containerchecksum ec773d88ce631b47cce6543a6211d14c76568f5fcc0c52e1a4289784816eced7391b64d181abfb514102c304299fcdb72e47e8c197ca06ca2ab59aab62993635 +doccontainersize 906720 +doccontainerchecksum c492f6d2da0a55d4de187f578279c9ec4c7dc2570b4c129b3f031f6b0a5475cabd0b528f6d53bae1c395ea875790ec1ab9fac8364d7b618012365ac057a1e0b5 +docfiles size=226 RELOC/doc/latex/babel/README.md details="Readme" RELOC/doc/latex/babel/babel.pdf details="Package documentation" -srccontainersize 684676 -srccontainerchecksum a0770e5193793e87658a701344ba0ab44773d2be04f204e1992a5f75a69b68ace13c2b73499215e5e441f2c228e9833742c542d43ec14ab36bfa5f06d66fbcea -srcfiles size=372 +srccontainersize 725832 +srccontainerchecksum c2ccfd558da2768009467fdd9bce3f676038c4b405a227a71cf2e49c5f6dbc9524b23806e1915adf8a3d8511b7478964b0e41cd51b22d208356e5b64a2177d8d +srcfiles size=404 RELOC/source/latex/babel/babel.dtx RELOC/source/latex/babel/babel.ins RELOC/source/latex/babel/bbcompat.dtx RELOC/source/latex/babel/bbidxglo.dtx RELOC/source/latex/babel/locale.zip -runfiles size=938 +runfiles size=1036 RELOC/makeindex/babel/bbglo.ist RELOC/makeindex/babel/bbind.ist RELOC/tex/generic/babel/UKenglish.sty @@ -27734,8 +28234,15 @@ runfiles size=938 RELOC/tex/generic/babel/austrian.sty RELOC/tex/generic/babel/babel-bidi-basic-r.lua RELOC/tex/generic/babel/babel-bidi-basic.lua + RELOC/tex/generic/babel/babel-ca-buddhist.tex + RELOC/tex/generic/babel/babel-ca-coptic.tex + RELOC/tex/generic/babel/babel-ca-ethiopic.tex + RELOC/tex/generic/babel/babel-ca-hebrew.tex + RELOC/tex/generic/babel/babel-ca-islamic.tex + RELOC/tex/generic/babel/babel-ca-persian.tex RELOC/tex/generic/babel/babel-data-bidi.lua RELOC/tex/generic/babel/babel-data-cjk.lua + RELOC/tex/generic/babel/babel-transforms.lua RELOC/tex/generic/babel/babel.def RELOC/tex/generic/babel/babel.sty RELOC/tex/generic/babel/bahasa.sty @@ -27775,15 +28282,36 @@ runfiles size=938 RELOC/tex/generic/babel/locale/am/babel-am.ini RELOC/tex/generic/babel/locale/am/babel-amharic.tex RELOC/tex/generic/babel/locale/ar/babel-ar-DZ.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-EG.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-IQ.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-JO.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-LB.ini RELOC/tex/generic/babel/locale/ar/babel-ar-MA.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-PS.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-SA.ini RELOC/tex/generic/babel/locale/ar/babel-ar-SY.ini + RELOC/tex/generic/babel/locale/ar/babel-ar-TN.ini RELOC/tex/generic/babel/locale/ar/babel-ar.ini RELOC/tex/generic/babel/locale/ar/babel-arabic-algeria.tex RELOC/tex/generic/babel/locale/ar/babel-arabic-dz.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-eg.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-egypt.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-iq.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-iraq.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-jo.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-jordan.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-lb.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-lebanon.tex RELOC/tex/generic/babel/locale/ar/babel-arabic-ma.tex RELOC/tex/generic/babel/locale/ar/babel-arabic-morocco.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-palestinianterritories.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-ps.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-sa.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-saudiarabia.tex RELOC/tex/generic/babel/locale/ar/babel-arabic-sy.tex RELOC/tex/generic/babel/locale/ar/babel-arabic-syria.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-tn.tex + RELOC/tex/generic/babel/locale/ar/babel-arabic-tunisia.tex RELOC/tex/generic/babel/locale/ar/babel-arabic.tex RELOC/tex/generic/babel/locale/as/babel-as.ini RELOC/tex/generic/babel/locale/as/babel-assamese.tex @@ -27811,6 +28339,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/bg/babel-bulgarian.tex RELOC/tex/generic/babel/locale/bm/babel-bambara.tex RELOC/tex/generic/babel/locale/bm/babel-bm.ini + RELOC/tex/generic/babel/locale/bn/babel-bangla.tex RELOC/tex/generic/babel/locale/bn/babel-bengali.tex RELOC/tex/generic/babel/locale/bn/babel-bn.ini RELOC/tex/generic/babel/locale/bo/babel-bo.ini @@ -27882,7 +28411,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/de/babel-naustrian.tex RELOC/tex/generic/babel/locale/de/babel-ngerman.tex RELOC/tex/generic/babel/locale/de/babel-nswissgerman.tex - RELOC/tex/generic/babel/locale/de/babel-swissgerman.tex + RELOC/tex/generic/babel/locale/de/babel-swisshighgerman.tex RELOC/tex/generic/babel/locale/dje/babel-dje.ini RELOC/tex/generic/babel/locale/dje/babel-zarma.tex RELOC/tex/generic/babel/locale/dsb/babel-dsb.ini @@ -27904,9 +28433,13 @@ runfiles size=938 RELOC/tex/generic/babel/locale/el/babel-monotonicgreek.tex RELOC/tex/generic/babel/locale/el/babel-polytonicgreek.tex RELOC/tex/generic/babel/locale/en/babel-american.tex + RELOC/tex/generic/babel/locale/en/babel-americanenglish.tex RELOC/tex/generic/babel/locale/en/babel-australian.tex + RELOC/tex/generic/babel/locale/en/babel-australianenglish.tex RELOC/tex/generic/babel/locale/en/babel-british.tex + RELOC/tex/generic/babel/locale/en/babel-britishenglish.tex RELOC/tex/generic/babel/locale/en/babel-canadian.tex + RELOC/tex/generic/babel/locale/en/babel-canadianenglish.tex RELOC/tex/generic/babel/locale/en/babel-en-AU.ini RELOC/tex/generic/babel/locale/en/babel-en-CA.ini RELOC/tex/generic/babel/locale/en/babel-en-GB.ini @@ -27932,6 +28465,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/es/babel-es-MX.ini RELOC/tex/generic/babel/locale/es/babel-es.ini RELOC/tex/generic/babel/locale/es/babel-mexican.tex + RELOC/tex/generic/babel/locale/es/babel-mexicanspanish.tex RELOC/tex/generic/babel/locale/es/babel-spanish-mexico.tex RELOC/tex/generic/babel/locale/es/babel-spanish-mx.tex RELOC/tex/generic/babel/locale/es/babel-spanish.tex @@ -27960,9 +28494,11 @@ runfiles size=938 RELOC/tex/generic/babel/locale/fr/babel-french-belgium.tex RELOC/tex/generic/babel/locale/fr/babel-french-ca.tex RELOC/tex/generic/babel/locale/fr/babel-french-canada.tex + RELOC/tex/generic/babel/locale/fr/babel-french-canadianfrench.tex RELOC/tex/generic/babel/locale/fr/babel-french-ch.tex RELOC/tex/generic/babel/locale/fr/babel-french-lu.tex RELOC/tex/generic/babel/locale/fr/babel-french-luxembourg.tex + RELOC/tex/generic/babel/locale/fr/babel-french-swissfrench.tex RELOC/tex/generic/babel/locale/fr/babel-french-switzerland.tex RELOC/tex/generic/babel/locale/fr/babel-french.tex RELOC/tex/generic/babel/locale/fur/babel-friulian.tex @@ -27978,6 +28514,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/grc/babel-ancientgreek.tex RELOC/tex/generic/babel/locale/grc/babel-grc.ini RELOC/tex/generic/babel/locale/gsw/babel-gsw.ini + RELOC/tex/generic/babel/locale/gsw/babel-swissgerman.tex RELOC/tex/generic/babel/locale/gu/babel-gu.ini RELOC/tex/generic/babel/locale/gu/babel-gujarati.tex RELOC/tex/generic/babel/locale/guz/babel-gusii.tex @@ -28036,6 +28573,8 @@ runfiles size=938 RELOC/tex/generic/babel/locale/kde/babel-makonde.tex RELOC/tex/generic/babel/locale/kea/babel-kabuverdianu.tex RELOC/tex/generic/babel/locale/kea/babel-kea.ini + RELOC/tex/generic/babel/locale/kgp/babel-kaingang.tex + RELOC/tex/generic/babel/locale/kgp/babel-kgp.ini RELOC/tex/generic/babel/locale/khq/babel-khq.ini RELOC/tex/generic/babel/locale/khq/babel-koyrachiini.tex RELOC/tex/generic/babel/locale/ki/babel-ki.ini @@ -28149,7 +28688,6 @@ runfiles size=938 RELOC/tex/generic/babel/locale/naq/babel-nama.tex RELOC/tex/generic/babel/locale/naq/babel-naq.ini RELOC/tex/generic/babel/locale/nb/babel-nb.ini - RELOC/tex/generic/babel/locale/nb/babel-norsk.tex RELOC/tex/generic/babel/locale/nb/babel-norwegianbokmal.tex RELOC/tex/generic/babel/locale/nd/babel-nd.ini RELOC/tex/generic/babel/locale/nd/babel-northndebele.tex @@ -28164,6 +28702,9 @@ runfiles size=938 RELOC/tex/generic/babel/locale/nn/babel-nynorsk.tex RELOC/tex/generic/babel/locale/nnh/babel-ngiemboon.tex RELOC/tex/generic/babel/locale/nnh/babel-nnh.ini + RELOC/tex/generic/babel/locale/no/babel-no.ini + RELOC/tex/generic/babel/locale/no/babel-norsk.tex + RELOC/tex/generic/babel/locale/no/babel-norwegian.tex RELOC/tex/generic/babel/locale/nus/babel-nuer.tex RELOC/tex/generic/babel/locale/nus/babel-nus.ini RELOC/tex/generic/babel/locale/nyn/babel-nyankole.tex @@ -28172,6 +28713,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/oc/babel-occitan.tex RELOC/tex/generic/babel/locale/om/babel-om.ini RELOC/tex/generic/babel/locale/om/babel-oromo.tex + RELOC/tex/generic/babel/locale/or/babel-odia.tex RELOC/tex/generic/babel/locale/or/babel-or.ini RELOC/tex/generic/babel/locale/or/babel-oriya.tex RELOC/tex/generic/babel/locale/os/babel-os.ini @@ -28191,6 +28733,8 @@ runfiles size=938 RELOC/tex/generic/babel/locale/ps/babel-pashto.tex RELOC/tex/generic/babel/locale/ps/babel-ps.ini RELOC/tex/generic/babel/locale/pt/babel-brazilian.tex + RELOC/tex/generic/babel/locale/pt/babel-brazilianportuguese.tex + RELOC/tex/generic/babel/locale/pt/babel-europeanportuguese.tex RELOC/tex/generic/babel/locale/pt/babel-portuguese-br.tex RELOC/tex/generic/babel/locale/pt/babel-portuguese-brazil.tex RELOC/tex/generic/babel/locale/pt/babel-portuguese-portugal.tex @@ -28205,7 +28749,11 @@ runfiles size=938 RELOC/tex/generic/babel/locale/rm/babel-romansh.tex RELOC/tex/generic/babel/locale/rn/babel-rn.ini RELOC/tex/generic/babel/locale/rn/babel-rundi.tex + RELOC/tex/generic/babel/locale/ro/babel-moldavian.tex + RELOC/tex/generic/babel/locale/ro/babel-ro-MD.ini RELOC/tex/generic/babel/locale/ro/babel-ro.ini + RELOC/tex/generic/babel/locale/ro/babel-romanian-md.tex + RELOC/tex/generic/babel/locale/ro/babel-romanian-moldova.tex RELOC/tex/generic/babel/locale/ro/babel-romanian.tex RELOC/tex/generic/babel/locale/rof/babel-rof.ini RELOC/tex/generic/babel/locale/rof/babel-rombo.tex @@ -28222,6 +28770,7 @@ runfiles size=938 RELOC/tex/generic/babel/locale/sa/babel-sa-Mlym.ini RELOC/tex/generic/babel/locale/sa/babel-sa-Telu.ini RELOC/tex/generic/babel/locale/sa/babel-sa.ini + RELOC/tex/generic/babel/locale/sa/babel-sanskrit-bangla.tex RELOC/tex/generic/babel/locale/sa/babel-sanskrit-beng.tex RELOC/tex/generic/babel/locale/sa/babel-sanskrit-bengali.tex RELOC/tex/generic/babel/locale/sa/babel-sanskrit-deva.tex @@ -28241,6 +28790,8 @@ runfiles size=938 RELOC/tex/generic/babel/locale/saq/babel-saq.ini RELOC/tex/generic/babel/locale/sbp/babel-sangu.tex RELOC/tex/generic/babel/locale/sbp/babel-sbp.ini + RELOC/tex/generic/babel/locale/sc/babel-sardinian.tex + RELOC/tex/generic/babel/locale/sc/babel-sc.ini RELOC/tex/generic/babel/locale/se/babel-northernsami.tex RELOC/tex/generic/babel/locale/se/babel-samin.tex RELOC/tex/generic/babel/locale/se/babel-se.ini @@ -28365,6 +28916,8 @@ runfiles size=938 RELOC/tex/generic/babel/locale/yi/babel-yiddish.tex RELOC/tex/generic/babel/locale/yo/babel-yo.ini RELOC/tex/generic/babel/locale/yo/babel-yoruba.tex + RELOC/tex/generic/babel/locale/yrl/babel-nheengatu.tex + RELOC/tex/generic/babel/locale/yrl/babel-yrl.ini RELOC/tex/generic/babel/locale/yue/babel-cantonese.tex RELOC/tex/generic/babel/locale/yue/babel-yue.ini RELOC/tex/generic/babel/locale/zgh/babel-standardmoroccantamazight.tex @@ -28422,11 +28975,12 @@ runfiles size=938 RELOC/tex/generic/babel/xebabel.def catalogue-also polyglossia catalogue-contact-bugs https://github.com/latex3/babel/issues +catalogue-contact-home https://latex3.github.io/babel/ catalogue-contact-repository https://github.com/latex3/babel catalogue-ctan /macros/latex/required/babel/base catalogue-license lppl1.3 catalogue-topics multilingual -catalogue-version 3.58 +catalogue-version 3.86 name babel-albanian category Package @@ -28724,22 +29278,22 @@ catalogue-version 1.3s name babel-dutch category Package -revision 56827 +revision 60362 shortdesc Babel contributed support for Dutch relocated 1 longdesc The package provides a language definition, file for use with longdesc babel, which establishes Dutch conventions in a document (or a longdesc subset of the conventions, if Dutch is not the main language of longdesc the document). -containersize 2900 -containerchecksum 4bdebadb6dabd378fb52eedacd8181623e40bd0a8215aa77c34f7a051a020d6c60230fa0203c2d519bfffcb9a374702ccb1d7c6b0482a232f1eeda5ff52f6c1e -doccontainersize 149932 -doccontainerchecksum 92bb3f2df9706bc6af7d20df200174a4b3f0b3237a8f1d9259886272deeab4109e85245a0cf6cf5b43bee93b14b581b1fe5e0d4f7198b88a77e2fbf0c8156090 -docfiles size=38 +containersize 2920 +containerchecksum bef13adf26cbbd16604af041fc7af866c82e88cd9d7d05318abd10f7d6f0ae718e1186f5527b4b38f1f099ba5da3d85b5e2f6d1ac0dfe8fe64ea52fcf6f06df1 +doccontainersize 157392 +doccontainerchecksum a78535f95bbbf6228014471a473a7e38b2cfa2da0160adb906b8f75c803b3e9396ca52322100102bebc179ec1e863a78c1b102ae932ea324ea58fd57bf9e9b06 +docfiles size=40 RELOC/doc/generic/babel-dutch/README.md details="Readme" RELOC/doc/generic/babel-dutch/dutch.pdf details="Package documentation" -srccontainersize 7920 -srccontainerchecksum 5942ba0dff02c632f0a09e240b3576eb425ed1c74924c007572b2a7b8b95701777bf20b2a943acd0028682d5cf422988c51752c3c80806413c0227daf2f8fff6 +srccontainersize 7968 +srccontainerchecksum 724746e2e05c5de5184125068b2637c14c58c83f86fc92d75521089298a26290ecebbb6f0c61f7452da659dbcbfa1c36789e428aba500fa2211e354747fb017c srcfiles size=8 RELOC/source/generic/babel-dutch/dutch.dtx RELOC/source/generic/babel-dutch/dutch.ins @@ -28749,7 +29303,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/babel-contrib/dutch catalogue-license lppl1.3 catalogue-topics dutch multilingual-addon -catalogue-version 3.8j +catalogue-version 3.8l name babel-english category Package @@ -28867,23 +29421,23 @@ catalogue-version 1.3s name babel-french category Package -revision 56607 +revision 66513 shortdesc Babel contributed support for French relocated 1 longdesc The package, formerly known as frenchb, establishes French longdesc conventions in a document (or a subset of the conventions, if longdesc French is not the main language of the document). -containersize 15924 -containerchecksum eaf680b5828b069907c0edf2b62c49475648f973f1ed220e47f6c05907e4b813021b0b18f66b3926ddea4266654dc91055913f3d6be1a799ef0bb2ac8241b9e3 -doccontainersize 502492 -doccontainerchecksum 67c54e55985a756ad52c6c904271a0b54b95e36f2da793d8804771c1606a354c075c8cb547d261c291fb70996fa818573f9f4e0e2c6f0e4a72be0ce71b65b724 -docfiles size=144 +containersize 15500 +containerchecksum be399312da8788d1c9cb99eaaa9cdae8c93e3941460b52172f0eaf71dce2edc6af541691c8e53eeeef24cce3fad2633b83f6686e384cf1259ae7056e65f54c74 +doccontainersize 513440 +doccontainerchecksum 6dfdd69e2a2ba9e7a9bd66e3c00dc0e424ee871e22fb78d1876408f6571803cf19bd6f5c441fd99e854b9b942f8d694f0f117a3c7b81627f2dd058a59930a5be +docfiles size=161 RELOC/doc/generic/babel-french/README.md details="Readme" RELOC/doc/generic/babel-french/frenchb-doc.pdf details="User manual" language="fr" RELOC/doc/generic/babel-french/frenchb-doc.tex RELOC/doc/generic/babel-french/frenchb.pdf details="Package documentation" -srccontainersize 56156 -srccontainerchecksum 676c38f93a87b0fde0d7527f5a4e7db38744cd72e069dfa093e1bc91e365a219fe00a2d523ba06522f31aa106df1f391c669215bc4617a59df606f1cf3df179c +srccontainersize 56116 +srccontainerchecksum 4b96722e175b082b7ffd8a7900129e1ec5ed99bf47b920bacd39782d207c02d47586670bdc706784ced0eaa23605d972df540ab93af9d1cc440acd43a4f3a9c1 srcfiles size=60 RELOC/source/generic/babel-french/frenchb.dtx RELOC/source/generic/babel-french/frenchb.ins @@ -28898,7 +29452,7 @@ catalogue-contact-home http://daniel.flipo.free.fr/babel-french catalogue-ctan /macros/latex/contrib/babel-contrib/french catalogue-license lppl1.3 catalogue-topics french multilingual-addon -catalogue-version 3.5l +catalogue-version 3.5q name babel-friulan category Package @@ -29018,50 +29572,51 @@ catalogue-version 2.13 name babel-greek category Package -revision 56904 +revision 66346 shortdesc Babel support for documents written in Greek relocated 1 longdesc The file provides modes for monotonic (single-diacritic) and longdesc polytonic (multiple-diacritic) modes of writing. Provision is longdesc made for Greek function names in mathematics, and for longdesc classical-era symbols. -containersize 5996 -containerchecksum 6b0ab839f2e8a9562c8292fe8f7661a73148754ed816088be25d06537a58ba95ac34d9440bc4f3f35c3b720188b261b432887f9867ff94b51261076f9d8e0160 -doccontainersize 1190328 -doccontainerchecksum 965dc1293a90ed4f7c777d32887186febf28f7a174a00af26c19720493605291d1b17a5790b5541547f9265d8a1a3d102d9a4fae79aba43780c384b7385e06b3 -docfiles size=325 - RELOC/doc/generic/babel-greek/README details="Readme" - RELOC/doc/generic/babel-greek/README.html details="Readme (HTML)" +containersize 6568 +containerchecksum d98ec03ef1a99bdd258436f3a0796fb5b44289f3fc43a712cc6086eb2fbd69617bcf8fdf76a6048fb034a151e9eb35aa0b521c25c9f7e8cc5fd8642eb02a53ea +doccontainersize 1626856 +doccontainerchecksum 76034ade6af8751f80705e687d8de0d69a5460dce592d17bd6c28ab700e700f8727474fc763458bc9ee672f244420f34cb995f72b9f56b4e188c1cee9a2dcc49 +docfiles size=448 + RELOC/doc/generic/babel-greek/README.md details="Readme" RELOC/doc/generic/babel-greek/athnum.pdf + RELOC/doc/generic/babel-greek/babel-greek-doc.html + RELOC/doc/generic/babel-greek/babel-greek-doc.rst RELOC/doc/generic/babel-greek/babel-greek.pdf details="Documentation" RELOC/doc/generic/babel-greek/grmath.pdf details="Maths documentation" - RELOC/doc/generic/babel-greek/test-8bit-greek.pdf - RELOC/doc/generic/babel-greek/test-8bit-greek.tex - RELOC/doc/generic/babel-greek/test-greek-lgr.pdf - RELOC/doc/generic/babel-greek/test-greek-tu.pdf + RELOC/doc/generic/babel-greek/test-athnum.pdf + RELOC/doc/generic/babel-greek/test-athnum.tex + RELOC/doc/generic/babel-greek/test-case-changing.tex + RELOC/doc/generic/babel-greek/test-greek-8bitcompat.tex + RELOC/doc/generic/babel-greek/test-greek-ini.tex + RELOC/doc/generic/babel-greek/test-greek.pdf RELOC/doc/generic/babel-greek/test-greek.tex - RELOC/doc/generic/babel-greek/test-greeknumeral.pdf - RELOC/doc/generic/babel-greek/test-greeknumeral.tex - RELOC/doc/generic/babel-greek/test-tu-lgr.pdf - RELOC/doc/generic/babel-greek/test-tu-lgr.tex + RELOC/doc/generic/babel-greek/test-greeknum.tex + RELOC/doc/generic/babel-greek/test-lgr-fixes.tex RELOC/doc/generic/babel-greek/usage.pdf details="Usage documentation" RELOC/doc/generic/babel-greek/usage.tex -srccontainersize 21012 -srccontainerchecksum 907493b19b16ed7a0c6377864a4b8266732065e2330c746d118dfec14a6a4976115eb48bd6b4286ce48cf6823e30fd3c9f06551aba2f52ef4a8ccfaf3f800810 -srcfiles size=22 +srccontainersize 24840 +srccontainerchecksum ac615fff0152aac1cb29c7ba46d3bb67fad00dad8c50266963c903a3eb9c15ac25504f05354286084605f03235136479d49897ec097455f97750284905e82ab9 +srcfiles size=26 RELOC/source/generic/babel-greek/Makefile RELOC/source/generic/babel-greek/athnum.dtx RELOC/source/generic/babel-greek/babel-greek.dtx RELOC/source/generic/babel-greek/babel-greek.ins RELOC/source/generic/babel-greek/grmath.dtx -runfiles size=8 +runfiles size=9 RELOC/tex/generic/babel-greek/athnum.sty RELOC/tex/generic/babel-greek/greek.ldf RELOC/tex/generic/babel-greek/grmath.sty catalogue-ctan /macros/latex/contrib/babel-contrib/greek catalogue-license lppl1.3 catalogue-topics greek multilingual-addon -catalogue-version 1.10 +catalogue-version 1.12 name babel-hebrew category Package @@ -29263,27 +29818,27 @@ catalogue-version 1.0h name babel-italian category Package -revision 55232 +revision 62890 shortdesc Babel support for Italian text relocated 1 longdesc The package provides language definitions for use in babel. -containersize 3808 -containerchecksum 647a87e3e516f4723bd991b973417302c6f369438e6b76c5ef1d795bdc138f31516433af5b93471f0a2692ace29096d6cf8aa49edfadc2e48d1d40c4344dbfd0 -doccontainersize 446484 -doccontainerchecksum 109a27cbdd24d91166059ae7dc24c78175aecac477a13b06c148b21a8c6451b0a07fd7db55ed8a78e92c05c00d0f73a9fe59c0726f34136cdf7ca3af8bbf12b6 -docfiles size=110 +containersize 3908 +containerchecksum a30e451e39ed4e073e3a188ecd19933b965ffe94aeee3acc9b3443466df1fcf86b7a04ee0c6283bb92b17b0b11a975f9df7ebfdfa3306fbc15f6e2214e30afee +doccontainersize 463660 +doccontainerchecksum 4fe9d39aef8a29737aa8a6f945f1efec3a442aa072cb6fc63ba358c372d02a718f10a5d25df58014333c2a6bac9e97dc84e3dad86f8d81d45e4c1216a9eaf0ee +docfiles size=117 RELOC/doc/generic/babel-italian/README.txt details="Readme" RELOC/doc/generic/babel-italian/italian.pdf details="Package documentation" -srccontainersize 22436 -srccontainerchecksum c9309c07a97625c3f9b1098b603015d339adf4f73218447ddb40c36c8430866b435678ce06b88b0f36f84e4ee5c971452d8f4caa283e1298d182fe8667255b74 -srcfiles size=19 +srccontainersize 23708 +srccontainerchecksum 48a5d7f150658558638d3354398462cb5999a3ff18b2479885a989db816711610b9c2ba9b237d5ea1e11eae66441d8f6d88656f6df73e2b7d49e11959c79ae2f +srcfiles size=20 RELOC/source/generic/babel-italian/italian.dtx runfiles size=3 RELOC/tex/generic/babel-italian/italian.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/italian catalogue-license lppl1.3c catalogue-topics italian multilingual-addon -catalogue-version 1.4.04 +catalogue-version 1.4.07 name babel-japanese category Package @@ -29350,31 +29905,37 @@ catalogue-version 1.1 name babel-latin category Package -revision 38173 +revision 59800 shortdesc Babel support for Latin relocated 1 -longdesc The package provides the language definition file for support -longdesc of Latin in babel. Translations to Latin (in both modern and -longdesc medieval spelling) of standard "LaTeX names", and some -longdesc shortcuts, are provided. Apart from the modern vs. medieval -longdesc setting, a further switch permits addition of prosodic marks. -containersize 2996 -containerchecksum 56ede1f441e96e3f17c165de65a7703c8e8897c17ef775fef1e30e1d2382eee0738ba91c97717694edc7e932ee0dbbfd1600d16ff86d6bbea1ccd5cfcec82ed2 -doccontainersize 156012 -doccontainerchecksum 6dc352b57346f0caaebc0832d12a9c1f13743e5cc39285b4d81edc23cd5f21692165040becf4ec12ca6d1acf6c19f1b2ab1da8d79e3e82ccc2dc865322bfaacb -docfiles size=39 +longdesc The babel-latin package provides the babel languages latin, +longdesc classiclatin, medievallatin, and ecclesiasticlatin. It also +longdesc defines several useful shorthands as well as some modifiers for +longdesc typographical fine-tuning. +containersize 7124 +containerchecksum 09a08dd3f90f83490867b786870b9591cdb3fc8d83c0e68446e2c97ba665a70f45c8b2553cfd6d965d31e6b2c435876ca569f4c24a8ddad4188ebd8b27b261b9 +doccontainersize 182968 +doccontainerchecksum 5a57f5b070cc86950002c40c5dc35407b0ace14ebe8ce64662260615bf5ae069237f5b0b6ae0fc795e72d9d1d3d9bbf7b30fd9cb762e56595058bebe436e5b92 +docfiles size=47 + RELOC/doc/generic/babel-latin/README details="Readme" RELOC/doc/generic/babel-latin/latin.pdf details="Package documentation" -srccontainersize 13420 -srccontainerchecksum 9f04205ee8e5c18a0ec6e20fdd7ab0d89d4e1ea28d5c3ad819ca9d09358466215b4d0c2b18d77ba5cca604b3997814ce39b33fe7f438b5b554500b5f4edd783a -srcfiles size=11 +srccontainersize 20580 +srccontainerchecksum e7444e7c98837fc989a5db187a5769bffa993487c47f56ac5a686a92fc1b25f084966b411340de869a8325dc13fb6f85ce22e65c43debb63a2dfab2568d36cdd +srcfiles size=24 RELOC/source/generic/babel-latin/latin.dtx RELOC/source/generic/babel-latin/latin.ins -runfiles size=2 +runfiles size=13 + RELOC/tex/generic/babel-latin/classiclatin.ldf + RELOC/tex/generic/babel-latin/ecclesiasticlatin.ldf + RELOC/tex/generic/babel-latin/ecclesiasticlatin.lua RELOC/tex/generic/babel-latin/latin.ldf + RELOC/tex/generic/babel-latin/medievallatin.ldf +catalogue-contact-bugs https://github.com/wehro/babel-latin/issues +catalogue-contact-repository https://github.com/wehro/babel-latin catalogue-ctan /macros/latex/contrib/babel-contrib/latin -catalogue-license lppl1 +catalogue-license lppl1.3 catalogue-topics latin multilingual-addon -catalogue-version 3.5 +catalogue-version 4.0 name babel-latvian category Package @@ -29402,6 +29963,34 @@ catalogue-license lppl1.3 catalogue-topics latvian multilingual-addon catalogue-version 2.0b +name babel-lithuanian +category Package +revision 66513 +shortdesc Babel support for documents written in Lithuanian +relocated 1 +longdesc Babel support material for documents written in Lithuanian +longdesc moved from the lithuanian package into a new package +longdesc babel-lithuanian to match babel support for other languages. +containersize 2560 +containerchecksum 83e8aa3c7e8e018f79c848ebd884f0d0a07c87953611342b5a9f25df1241ddd931ede31a03b1670922049948a6f9ebc88676de0a4be9e144a3f99e22fb857fd7 +doccontainersize 209484 +doccontainerchecksum 76dac9c2b95699a42018ad370afc1236668a37a71707a6c1a8fff1921df9edf30730f71337c1128f64b7448a0bd3f99e432ddbc1219534884e8476a8c7fdf338 +docfiles size=53 + RELOC/doc/generic/babel-lithuanian/README.md details="Readme" + RELOC/doc/generic/babel-lithuanian/babel-lithuanian.pdf details="Package documentation" +srccontainersize 4048 +srccontainerchecksum 1ad90b302e3e7d415fcf0534642a22fbced05f0cb3ff9218c73175b3bda74d0a7c96b27dd1401e12885233e2236e7be479d651829dcc04906f94f27012a5ee8e +srcfiles size=5 + RELOC/source/generic/babel-lithuanian/babel-lithuanian.dtx + RELOC/source/generic/babel-lithuanian/babel-lithuanian.ins +runfiles size=2 + RELOC/tex/generic/babel-lithuanian/lithuanian.ldf +catalogue-alias lithuanian-babel +catalogue-ctan /macros/latex/required/babel/contrib/lithuanian +catalogue-license lppl1.3 +catalogue-topics multilingual-addon lithuanian +catalogue-version 1.0 + name babel-macedonian category Package revision 39587 @@ -29457,20 +30046,20 @@ catalogue-version 1.0m name babel-norsk category Package -revision 30281 +revision 65093 shortdesc Babel support for Norwegian relocated 1 longdesc The package provides the language definition file for support longdesc of Norwegian in babel. Some shortcuts are defined, as well as longdesc translations to Norsk of standard "LaTeX names". -containersize 2932 -containerchecksum a57f44910dea4a1b9fc94d2705e1627fd42ef21a35737067bbebf6c56f6e4e87031b40b41d68a4f90329aa38a468a87c8c91ca60e10af2d064f502ef9e60d3a0 +containersize 2872 +containerchecksum e5ca8c827ddc30ca33b1fc3da98e6576938aef4041d56c77b329ba69851a6576f4315228bb5188dc09aa3180890f3545d0b24f31da89c868ea11e92263f2a9fb doccontainersize 142428 -doccontainerchecksum 646d8bcb3bb4b864fc9cab92a1ae264801222cc70eeae8db63be8ace926cc62918031726da9e758ebb4bc19797eea498af10437066612ff7dc3ca3c99bab4749 +doccontainerchecksum f67830ab2e6b46370ad0737b64149ee8e0c1c9ecd68920ecc0ff43518335e884941b4469d91d0202f6a7927c1e5eb44507a5e43308effd89e1f1846f80de5355 docfiles size=35 RELOC/doc/generic/babel-norsk/norsk.pdf details="Package documentation" -srccontainersize 6784 -srccontainerchecksum 4643e3a1f3612c9966da916949e51346c7cb595ee8a2b98d585ae12e51fbf2cf23e2817b5c21575d80feaeaf399d3e1f0db6fad4d228b2b5f9a25d51ac3a7941 +srccontainersize 6788 +srccontainerchecksum 48506bcb93e7f8cb27b8c5e6257fc1e8247db04c94de6b9710438179647bdf6f1d9a0b5c811156bc79fb9ae301493df49536335a9b8fd939ae0852d4745843c8 srcfiles size=7 RELOC/source/generic/babel-norsk/norsk.dtx RELOC/source/generic/babel-norsk/norsk.ins @@ -29478,7 +30067,7 @@ runfiles size=2 RELOC/tex/generic/babel-norsk/norsk.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/norsk catalogue-license lppl1.3 -catalogue-topics norsk multilingual-addon +catalogue-topics norwegian multilingual-addon catalogue-version 2.0i name babel-occitan @@ -29532,33 +30121,35 @@ catalogue-version 1.0 name babel-polish category Package -revision 30283 +revision 62680 shortdesc Babel support for Polish relocated 1 longdesc The package provides the language definition file for support longdesc of Polish in babel. Some shortcuts are defined, as well as longdesc translations to Polish of standard "LaTeX names". -containersize 3360 -containerchecksum cfd5f27f92e75883572adce926cbcfa9d9248367979c3b3411e6ca1c2d4bf441d2fa790dfff94f0f6001c68f354628334aa0a920ee68900398879c978cf962e4 -doccontainersize 134416 -doccontainerchecksum 6f12e4c792eda6ec33db820bf3e0c9a0fbec8f07adf413c4c98d40624cbf8d46588e16271e459eedcb37ceb2f89f13c3a9dab89122172fe2b8ee9330ab6109fe -docfiles size=33 +containersize 3904 +containerchecksum 0088388d0dd6459e5ac3062cbd5eeac7ae0d858b93ff278b6bc7a95e8fc4846d8c12530eb41ed972f5009ab745857a5599d9ce25860efa06a3a1dddbf396b4dd +doccontainersize 398860 +doccontainerchecksum 536b3ea736a9e876f2e7e942e56841c97de27b94d00e58656e9d7ed3b27aaa43947deed1d04fc54530c082095ce46737f05969afa85fd5de57baecf5718815bf +docfiles size=99 + RELOC/doc/generic/babel-polish/README.md RELOC/doc/generic/babel-polish/polish.pdf details="Package documentation" -srccontainersize 7592 -srccontainerchecksum 19d6cd158e48666b843628d0325d0e52ebbe137d28686d8b31199e9bad1c4d3393487aa300179688af5b9f7307eea8376f8ba82ed2209efcf39abef094787d82 -srcfiles size=8 +srccontainersize 11584 +srccontainerchecksum 21d9f5a3f4a6e9f7595b8e38af5758f0eb06d8f390448a39c164b5c4e7a83089e3a254931a1c23e8dc088eaa6874d5f1451b78f14b7b8dee863daec62f78a490 +srcfiles size=11 RELOC/source/generic/babel-polish/polish.dtx RELOC/source/generic/babel-polish/polish.ins -runfiles size=3 +runfiles size=5 + RELOC/tex/generic/babel-polish/polish-compat.ldf RELOC/tex/generic/babel-polish/polish.ldf catalogue-ctan /macros/latex/contrib/babel-contrib/polish catalogue-license lppl1.3 catalogue-topics polish -catalogue-version 1.2l +catalogue-version 1.3 name babel-portuges category Package -revision 57644 +revision 59883 shortdesc Babel support for Portuges relocated 1 longdesc The package provides the language definition file for support @@ -29566,14 +30157,14 @@ longdesc of Portuguese and Brazilian Portuguese in babel. Some shortcuts longdesc are defined, as well as translations to Portuguese of standard longdesc "LaTeX names". containersize 2828 -containerchecksum d415a75ca4504cb219ac55b7a03b9b00667747fa39dfd4650e2f93ef7919cb79c701e52d947823016151b340a66f52550a0903a861540d0d6474e4f4ecda6adf -doccontainersize 154112 -doccontainerchecksum 3b3c40f55953d3ba46ee96ab05789a86a42fb3e806b06d9938a57f2e5d210b2f38745273cb71e224a7c251e2d6ce96c4d17bdb089a4d9180cbabd5bd8716259d -docfiles size=39 +containerchecksum 8b63140bf59669873f55ed65925eff65cab3bd6bb404b7dec962b7072243c2b2be8d2918e379ba02b557f7e07d1d490b3cd0bcf3756bbfc3f4e63ff540e73c28 +doccontainersize 146580 +doccontainerchecksum 1fd6cdd08c2c00340b04ddaf078d1e9f0b1c51dee22f805f00bb46e63c46c4461fe4d9df174c2844a6ed01f7b52333a6290cd0c8aff3820a1659839668308b91 +docfiles size=37 RELOC/doc/generic/babel-portuges/README.md details="Readme" RELOC/doc/generic/babel-portuges/portuges.pdf details="Package documentation" -srccontainersize 6688 -srccontainerchecksum fc1b7c2c116e23612475dfb657dc167bec59bd81bb44d925faf6a5ff4103459f2e34de49aab8422eda69f263033923b7a4ae3f102ab9dab0fd9e35fbc76c10bc +srccontainersize 6692 +srccontainerchecksum 863f5c222f11288cb4f041a04cf543494409bc69df67a65b71ccd79411e4a292653a6bc48644d3b7700c0a01d1a456fa56c0ce867d6177983a8b7c98b5e66aab srcfiles size=7 RELOC/source/generic/babel-portuges/portuges.dtx RELOC/source/generic/babel-portuges/portuges.ins @@ -29585,7 +30176,7 @@ runfiles size=8 catalogue-ctan /macros/latex/contrib/babel-contrib/portuges catalogue-license lppl1.3 catalogue-topics multilingual-addon portuguese portuguese-br -catalogue-version 1.2s +catalogue-version 1.2t name babel-romanian category Package @@ -29725,21 +30316,21 @@ catalogue-version 1.0g name babel-serbian category Package -revision 58836 +revision 64571 shortdesc Babel/Polyglossia support for Serbian relocated 1 longdesc The package provides support for Serbian documents written in longdesc Latin, in babel. -containersize 3300 -containerchecksum d754a40fa68732f70582b6ca548f4ce8ba43af39ed299dba4a4cad5b10afbacdfea2bd79d332ab29a2a0a81422d6784fa5beb57e5a5a90c6a29c88407c8e008b -doccontainersize 244692 -doccontainerchecksum 371cbe277b92b229816dadfc417137269a06cc49a0c7db3eb4e50cc21be01afe215bd2f378df89752600c8864c95126950ff42b0a3abc85064a4cdfe8b788352 -docfiles size=64 +containersize 3360 +containerchecksum 0067de0fddd73a7c68cd2b3a12b4eb620c6b95886c4c34ec1766ff9b3c174ed2a8cbb1dae72cd8adcfe55bf01e4d24e47668e76babdc57ca9eb59704a5ee7cd5 +doccontainersize 256632 +doccontainerchecksum e83a8db6c60853dea918d226fe643fd06c1cd65bd3b9e29fac962c029a263e75821dcf6a5a3b33ba44b12321d5e19633f704885e77017cb43e9555a4e060394b +docfiles size=68 RELOC/doc/generic/babel-serbian/README.md details="Readme" RELOC/doc/generic/babel-serbian/serbian.pdf details="Package documentation" -srccontainersize 7316 -srccontainerchecksum 2f96e458d6dc3770bac7319d7ddc5a7105a3809b5a85523c1465da7a07443c5c61fda4034485202f1f57db5251de72cea1e32e58303552ceeb8e2ef3dfacd337 -srcfiles size=7 +srccontainersize 7436 +srccontainerchecksum 016a726438759e5959938ee6bcf3735386047581eb166c244116f0032ee0cef5345c851e6d90a5790b132c2f98812da14f97fe2e96c23aa4dd48d7f50595b88a +srcfiles size=8 RELOC/source/generic/babel-serbian/serbian.dtx RELOC/source/generic/babel-serbian/serbian.ins runfiles size=3 @@ -29747,24 +30338,24 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/babel-contrib/serbian catalogue-license lppl1.3 catalogue-topics multilingual-addon serbian -catalogue-version 2.1 +catalogue-version 2.2a name babel-serbianc category Package -revision 58816 +revision 64588 shortdesc Babel module to support Serbian Cyrillic relocated 1 longdesc The package provides support for Serbian documents written in longdesc Cyrillic, in babel. -containersize 4228 -containerchecksum d0c1abd87fc2d8284bd3369398b3bd5d22d8bd6453aa315c4100fbcb88e3a7166e639c31876677fb656a8123049324a87cc9a68a227ac771951a3249fe0d68dd -doccontainersize 282156 -doccontainerchecksum e025cd674a8fa6c9c14a311c8132c98db6e84ebb2391171f8441683fc3ae1eddc0a3905d73ea48231ea9eb0eccacf168acf48413d60456fc8a30b81d451f88b2 -docfiles size=74 +containersize 4336 +containerchecksum c4c4bf91fb22d0766bbab6a9980b0faa19f4031cabd044a309478f9ee700bc26247a10051f10d36c8cd88425820d2f800d3947d005fa9fb8b54429efdeb3c8c8 +doccontainersize 293708 +doccontainerchecksum a173daa03c9da413b4f200a0427e5293676ff3bc64dfd21d945977fc78fa9172ebcd73bad2c7ebd8976ee252cebe3c78d03ac9aa10b2be9984bc34b66ac5ac66 +docfiles size=78 RELOC/doc/generic/babel-serbianc/README.md details="Readme" RELOC/doc/generic/babel-serbianc/serbianc.pdf details="Package documentation" -srccontainersize 9692 -srccontainerchecksum 470d88336301b2a95beb6f854924972be2c54067d02307629b635288c64baf542404c17833d60782a2a2c4e3a832766bef1f35602567a5942e541a034d0e6c21 +srccontainersize 9872 +srccontainerchecksum 13a4981f6ff19cc1664bb2da360479814723651379c445e3fd272167df761dd07c3cc5b19072fe99de8b08b2b41485d08aca6fc1c16325fbbf7ce1ff1fab77ee srcfiles size=10 RELOC/source/generic/babel-serbianc/serbianc.dtx RELOC/source/generic/babel-serbianc/serbianc.ins @@ -29773,7 +30364,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc catalogue-license lppl1.3 catalogue-topics serbian multilingual-addon -catalogue-version 3.1 +catalogue-version 3.2a name babel-slovak category Package @@ -29830,7 +30421,7 @@ catalogue-version 1.2n name babel-sorbian category Package -revision 57646 +revision 60975 shortdesc Babel support for Upper and Lower Sorbian relocated 1 longdesc The package provides language definitions file for support of @@ -29838,15 +30429,15 @@ longdesc both Upper and Lower Sorbian, in babel. Some shortcuts are longdesc defined, as well as translations to the relevant language of longdesc standard "LaTeX names". containersize 3156 -containerchecksum a19f913f590ea66b411a2215ac555590b3ac9f23480096236ccf9c84714bc7b64c0649c1bbeef36bef4f1e56b0e16f3d2abf6c929992fc4accd708ecd6f54681 -doccontainersize 210456 -doccontainerchecksum 36c648ef7a2671bf06511d56fef32a7dad13ad176cf5689774807291b5908a23724c7d26a18d5a21d9d9cb5d9ae9864f321e8703e8ea55cb65cc424e79747bc9 +containerchecksum 629a4f09de7ba1a444af0fc4e6db9f53635b0e000d375296697096c2debd782496d7b36f7745af42a8a19f6cc24c6a832595bc6c89ae20d79701c7181d1a5d68 +doccontainersize 209804 +doccontainerchecksum ebb371730cafbd37a4c54dd0ccfe9d6e187aae747d1b6de9202fd09a85b5b38f8814e0bd27cd86e51c5aa62e6816ac725e28eff9117d6dc474a9e32f3b6fdaa3 docfiles size=69 RELOC/doc/generic/babel-sorbian/README.md details="Readme" RELOC/doc/generic/babel-sorbian/lsorbian.pdf details="Package documentation (Lower Sorbian)" RELOC/doc/generic/babel-sorbian/usorbian.pdf details="Package documentation (Upper Sorbian)" srccontainersize 6328 -srccontainerchecksum 146b868a32adbafaf82217db99c1d260874ab1192fb50cf1ca670981d0bab116dd2d959fc77b496adfbcfa898253e91ccfa9837a619292dec7ad50abbbb7915f +srccontainerchecksum 57d29eb253398abf3210acf390cc80e97b444c370718bda75108fd1d70c1c7d2fbfb43f6387751cfc90b9cb9020eb4222fca0821d10c4d52750bfde05a2557e1 srcfiles size=9 RELOC/source/generic/babel-sorbian/lsorbian.dtx RELOC/source/generic/babel-sorbian/sorbian.ins @@ -29857,26 +30448,26 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/babel-contrib/sorbian catalogue-license lppl1.3 catalogue-topics multilingual-addon sorbian -catalogue-version 1.0i +catalogue-version 1.0j name babel-spanish category Package -revision 54080 +revision 59367 shortdesc Babel support for Spanish relocated 1 longdesc This bundle provides the means to typeset Spanish text, with longdesc the support provided by the LaTeX standard package babel. Note longdesc that separate support is provided for those who wish to typeset longdesc Spanish as written in Mexico. -containersize 8652 -containerchecksum f71d329928253e6a1edf34fb9406473b83a5c8120982a4aca7b1caee76e261e78f94521716eecfb59171912121314dabf0ce164938e5fe83b722ff7eacbf9b1e -doccontainersize 183488 -doccontainerchecksum fe60634e76d9e539df4813d5c6a240f36e017a5926016189d23da56b723ba92a317e85ef2912ad76707943e0ec0918dbe1a1dba62acee7ea2db99dc7ad69c4f5 +containersize 8876 +containerchecksum 2da1b62772f462c8e058edac7d305804be6234a720446288fbcbe2e574a1cd9f905e4220b4008dad64c0e59b15194e2627cd1e295003c1bcbdd523c8498fa26b +doccontainersize 183140 +doccontainerchecksum 9c3e87e7de6fa46b0c6b9da65d4c23e31640628fd6fce844b53d896ad85813e9b804fe4a36c7c2c1cf26550a51551b39150a12467e26fad4f9bb9094dc0af817 docfiles size=46 RELOC/doc/generic/babel-spanish/README.md details="Readme" RELOC/doc/generic/babel-spanish/spanish.pdf details="Package documentation" language="es" -srccontainersize 29552 -srccontainerchecksum 0ad444d85a0c93b3e484701ffc8a934dbe85d3e2bc2e5bf348b33e0247682071ca366c438177beaf192f6c687e4847ebfcc3c325e2e28c15f67ca34d08671395 +srccontainersize 29800 +srccontainerchecksum 48e4293f6c7aafed829e273e0e5ac2709a082e648988bb40e5bd0b36aba6d84aa036d07108a2bc76c65b4ca029a9652ab38268b7e7a87abddc03f00ad55a7fec srcfiles size=24 RELOC/source/generic/babel-spanish/spanish.dtx RELOC/source/generic/babel-spanish/spanish.ins @@ -29887,7 +30478,7 @@ catalogue-alias spanish catalogue-ctan /macros/latex/contrib/babel-contrib/spanish catalogue-license lppl1.3 catalogue-topics spanish multilingual-addon -catalogue-version 5.0p +catalogue-version 5.0q name babel-swedish category Package @@ -30249,24 +30840,51 @@ catalogue-license lppl1.3 catalogue-topics music catalogue-version 3.02 +name bangla +category Package +revision 65786 +shortdesc A comprehensive Bangla LaTeX package +relocated 1 +longdesc This package provides all the necessary LaTeX frontends for the +longdesc Bangla language and comes with some fonts of its own. +depend charissil +depend doulossil +containersize 208900 +containerchecksum 1559fc1599e2586c660ab544a5d7e279240a966da677fb658162e8497e17b574308f90f51823ed861d52c2d0f4c0b836316866b2d5cc1b0c3ebfa82caa9334d0 +doccontainersize 61192 +doccontainerchecksum dfa23cced9bc203d87f4ad344f3f4448b1950418d6a01c72a9b56e64cc7b5e959ba6845e55c592628f11bf677b93aa68218023e32116efa8580938b503639f50 +docfiles size=21 + RELOC/doc/latex/bangla/README details="Readme" + RELOC/doc/latex/bangla/bangla.pdf details="Package documentation" + RELOC/doc/latex/bangla/bangla.tex +runfiles size=145 + RELOC/fonts/truetype/public/bangla/fontkalpurush.ttf + RELOC/fonts/truetype/public/bangla/fontshimanto.ttf + RELOC/tex/latex/bangla/bangla.sty + RELOC/tex/latex/bangla/banglamap.tex +catalogue-ctan /language/bengali/bangla +catalogue-license lppl1.3c ofl +catalogue-topics indic bengali font font-ttf font-indic font-supp expl3 +catalogue-version 2.1 + name bangorcsthesis category Package -revision 48834 +revision 61770 shortdesc Typeset a thesis at Bangor University relocated 1 longdesc The class typesets thesis/dissertation documents for all levels longdesc (i.e., both undergraduate and graduate students may use the longdesc class). It also provides macros designed to optimise the longdesc process of producing a thesis. -containersize 51844 -containerchecksum 3d8dd2648361f74ec6af8727f0895ad1e1008ce0e8612d879634b196d5e4cdadff20e33e60e27d9812d7b6fe3762026ee46139f3ade3a3a3cd5d27a941355a62 -doccontainersize 285232 -doccontainerchecksum 97c98bb791018631b7c5bb282aa3585ae68ab1d2d81f56e1be91ad92d6dead30885c478856f59651b533590eca2f80e3596d09f0277ea6dbd6ec44b97ed64fb9 -docfiles size=72 +containersize 52348 +containerchecksum 3d297ec59cff75977addc7320f90a68a6fdd87bcf5aee4947c14e122dc7741e443582075eec4a9b327c3e988da500934fb5426d5e9fc17c7decab4a4872cce8e +doccontainersize 293384 +doccontainerchecksum be5e7eb308d2678c3cb7464e234bd63f551a560677e67bb6b5c9dec5ab59b29bd6f8a66db300065cb472b9772420e443a3fc7a4d31ebd2557868b3a6b2fcfe2a +docfiles size=75 RELOC/doc/latex/bangorcsthesis/README details="Readme" RELOC/doc/latex/bangorcsthesis/bangorcsthesis.pdf details="Package documentation" -srccontainersize 55560 -srccontainerchecksum b48f9e854297a3effe72c3e4f5b26d1a48b5023b25691727ab6c735379a092f8a6ce1b7dee1eb87b5cdc10866591b35c83df579147d3ecf36e6a27356d50381c +srccontainersize 55512 +srccontainerchecksum 3141fdd4bde1e82edf0677625c3b599516ff8b1f71b19c4a486cf5d68361135983f4fcefbdbb390bbf324d78eafe4bb6ad9ffdca8f7b257fa98faf590ff23c06 srcfiles size=65 RELOC/source/latex/bangorcsthesis/bangorcsthesis.dtx RELOC/source/latex/bangorcsthesis/bangorcsthesis.ins @@ -30275,26 +30893,26 @@ runfiles size=61 catalogue-ctan /macros/latex/contrib/bangorcsthesis catalogue-license lppl1.3 catalogue-topics dissertation class -catalogue-version 1.5.3 +catalogue-version 1.5.5 name bangorexam category Package -revision 46626 +revision 65140 shortdesc Typeset an examination at Bangor University relocated 1 longdesc The package allows typesetting of Bangor Univesity's exam longdesc style. It currently supports a standard A/B choice, A-only longdesc compulsory and 'n' from 'm' exam styles. Marks are totalled and longdesc checked automatically. -containersize 49800 -containerchecksum 9da594fb6d8dec3727dc5e437923c225aff392250c42566972a6998a4709e1853e6b7399ce64e8cbb7408a422631ee61229cc97001343ac8acee7d5c0fd20847 -doccontainersize 185696 -doccontainerchecksum 576b991d414d9a8b481dd2d76a4ba74af9db70ae720d9b81f16cb2cfd887d8a09c2bd601bf7711ec77073909aa61470f2cdd7573457ea2ed25f9e316417da9ac -docfiles size=47 +containersize 46816 +containerchecksum df88d8051803726d508906be7dace3ef15f455fd00c1603aa16e9298af75e9f38d306ef6fb319b713e21dcb337eb93fa44a2baba2aa15f79076e6ef55d38100f +doccontainersize 292956 +doccontainerchecksum b8db60eec0ef7a57e0d0991f70ae7d1d7f87391797521e03baa916848a8be827a97496de8af8f2f95194ccedd923288f471116e677371b99f75f0309283ff50f +docfiles size=75 RELOC/doc/latex/bangorexam/README.txt details="Readme" RELOC/doc/latex/bangorexam/bangorexam.pdf details="Package documentation" -srccontainersize 49668 -srccontainerchecksum 22732c47f60e2145ba850a60afc15cc926e57ff27a9234d84cf647ae83c8b783cd8023bb419f576dbba1f5e49de95416f98639440d6001525eac3cbd4fe8ab41 +srccontainersize 51340 +srccontainerchecksum 639dffd548f6937a01b24e5946e58cfce47609257e6964bd51d441d2ae3435f16d86015f50003b2c3757b8101a50375d02ce68be19e85c6f8adc7c35338aba18 srcfiles size=64 RELOC/source/latex/bangorexam/bangorexam.dtx RELOC/source/latex/bangorexam/bangorexam.ins @@ -30303,7 +30921,7 @@ runfiles size=60 catalogue-ctan /macros/latex/contrib/bangorexam catalogue-license lppl1.3 catalogue-topics exam class -catalogue-version 1.4.0 +catalogue-version 1.5.0 name bangtex category Package @@ -30548,7 +31166,7 @@ catalogue-topics diagram-comm name barracuda category Package -revision 53683 +revision 63708 shortdesc Draw barcodes with Lua relocated 1 longdesc The barracuda library is a modular Lua package for drawing @@ -30556,30 +31174,30 @@ longdesc barcode symbols. It provides modules for writing barcodes from longdesc a LuaTeX document. It is also possible to use Barracuda with a longdesc standalone Lua interpreter to draw barcodes in different longdesc graphic formats like SVG. -containersize 30052 -containerchecksum 8331d0a9fd3504eef4e759e144bf34682f55c0bbf435aad9f53671083af2a0c766180665348fd6de4668c67b7cbb3690919619b2a0b175b77f76caa95a951328 -doccontainersize 347964 -doccontainerchecksum 8c7be1abea65248e0f34bd9b538aba2018058688a19d31c696ee964049d44046f4f92117b9db8a1056a4b5e45dcc8aec843971886de69214f0dd3368e1f4c3c2 -docfiles size=152 +containersize 35844 +containerchecksum 8081a9b253c77cc5e68efeb8c66beffc189898cc6ba80cd96be88c57d3117b2c270e439fbe47983309625c90def14f3b2d2c50b567f4f461e4c0ef591c7ba63a +doccontainersize 485324 +doccontainerchecksum 18767583117a7e16e5b292aa2e82082eed1f48e7f2d8033cf605d9a0b9f09f460826ba4c43af5e43b003e6514909cdea30e24666b8c518655a9e6ab7b6129953 +docfiles size=205 RELOC/doc/luatex/barracuda/INSTALL.txt RELOC/doc/luatex/barracuda/LICENSE.txt RELOC/doc/luatex/barracuda/PLANNER.txt RELOC/doc/luatex/barracuda/README.md details="Readme" - RELOC/doc/luatex/barracuda/doc/barracuda-ga-asm.pdf - RELOC/doc/luatex/barracuda/doc/barracuda-ga-asm.tex - RELOC/doc/luatex/barracuda/doc/barracuda-manual-tool.tex - RELOC/doc/luatex/barracuda/doc/barracuda.pdf details="Package documentation" - RELOC/doc/luatex/barracuda/doc/barracuda.tex - RELOC/doc/luatex/barracuda/doc/image/8006194056290.pdf + RELOC/doc/luatex/barracuda/doc/ga-graphic-asm/barracuda-ga-asm.pdf + RELOC/doc/luatex/barracuda/doc/ga-graphic-asm/barracuda-ga-asm.tex + RELOC/doc/luatex/barracuda/doc/manual/barracuda-manual-tool.tex + RELOC/doc/luatex/barracuda/doc/manual/barracuda-manual.pdf details="Package documentation" + RELOC/doc/luatex/barracuda/doc/manual/barracuda-manual.tex + RELOC/doc/luatex/barracuda/doc/manual/image/8006194056290.pdf RELOC/doc/luatex/barracuda/test/test-barracuda-package/01-barracuda-latex-test.pdf RELOC/doc/luatex/barracuda/test/test-barracuda-package/01-barracuda-latex-test.tex RELOC/doc/luatex/barracuda/test/test-barracuda-package/02-ord_iter-test.tex - RELOC/doc/luatex/barracuda/test/test-code128/001-code128-test.lua + RELOC/doc/luatex/barracuda/test/test-code128/001-code128-test.tex RELOC/doc/luatex/barracuda/test/test-code128/002-code128-test.pdf RELOC/doc/luatex/barracuda/test/test-code128/002-code128-test.tex RELOC/doc/luatex/barracuda/test/test-code128/02-05-pdfliteral.txt RELOC/doc/luatex/barracuda/test/test-code128/c128-123.svg - RELOC/doc/luatex/barracuda/test/test-code39/001-code39-test.lua + RELOC/doc/luatex/barracuda/test/test-code39/001-code39-test.tex RELOC/doc/luatex/barracuda/test/test-code39/002-code39-test.pdf RELOC/doc/luatex/barracuda/test/test-code39/002-code39-test.tex RELOC/doc/luatex/barracuda/test/test-code39/003-code39-test.pdf @@ -30589,6 +31207,8 @@ docfiles size=152 RELOC/doc/luatex/barracuda/test/test-code39/005-code39-test.lua RELOC/doc/luatex/barracuda/test/test-code39/006-code39-test.lua RELOC/doc/luatex/barracuda/test/test-code39/006-six.svg + RELOC/doc/luatex/barracuda/test/test-code39/007-code39-test.pdf + RELOC/doc/luatex/barracuda/test/test-code39/007-code39-test.tex RELOC/doc/luatex/barracuda/test/test-code39/my_barcode.svg RELOC/doc/luatex/barracuda/test/test-ean/001-13-ean-test.pdf RELOC/doc/luatex/barracuda/test/test-ean/001-13-ean-test.tex @@ -30596,7 +31216,7 @@ docfiles size=152 RELOC/doc/luatex/barracuda/test/test-ean/002-ean-test.tex RELOC/doc/luatex/barracuda/test/test-ean/003-ean-test.pdf RELOC/doc/luatex/barracuda/test/test-ean/003-ean-test.tex - RELOC/doc/luatex/barracuda/test/test-ean/004-ean-test.lua + RELOC/doc/luatex/barracuda/test/test-ean/004-ean-test.tex RELOC/doc/luatex/barracuda/test/test-ean/005-isbn-test.pdf RELOC/doc/luatex/barracuda/test/test-ean/005-isbn-test.tex RELOC/doc/luatex/barracuda/test/test-ean/006-issn-test.pdf @@ -30605,6 +31225,9 @@ docfiles size=152 RELOC/doc/luatex/barracuda/test/test-ean/ars.svg RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/001-ga-pdfliteral-test.pdf RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/001-ga-pdfliteral-test.tex + RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/002-polyline.pdf + RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/002-polyline.tex + RELOC/doc/luatex/barracuda/test/test-ga-pdfliteral/polygon.svg RELOC/doc/luatex/barracuda/test/test-ga-svg/001-ga-svg-test.lua RELOC/doc/luatex/barracuda/test/test-ga-svg/002-ga-svg-test.lua RELOC/doc/luatex/barracuda/test/test-ga-svg/test-01.svg @@ -30614,13 +31237,24 @@ docfiles size=152 RELOC/doc/luatex/barracuda/test/test-i2of5/001-i2of5-test.tex RELOC/doc/luatex/barracuda/test/test-i2of5/002-ITF14-test.pdf RELOC/doc/luatex/barracuda/test/test-i2of5/002-ITF14-test.tex -runfiles size=47 + RELOC/doc/luatex/barracuda/test/test-i2of5/02-itf14.svg + RELOC/doc/luatex/barracuda/test/test-libgeo/001-libgeo-test.pdf + RELOC/doc/luatex/barracuda/test/test-libgeo/001-libgeo-test.tex + RELOC/doc/luatex/barracuda/test/test-libgeo/003-ga-svg-test.pdf + RELOC/doc/luatex/barracuda/test/test-libgeo/003-ga-svg-test.tex + RELOC/doc/luatex/barracuda/test/test-libgeo/test.svg + RELOC/doc/luatex/barracuda/test/test-upc/001-upca-test.pdf + RELOC/doc/luatex/barracuda/test/test-upc/001-upca-test.tex + RELOC/doc/luatex/barracuda/test/test-upc/002-upca.pdf + RELOC/doc/luatex/barracuda/test/test-upc/002-upca.tex +runfiles size=59 RELOC/scripts/barracuda/barracuda.lua RELOC/scripts/barracuda/lib-barcode/brcd-barcode.lua RELOC/scripts/barracuda/lib-barcode/brcd-code128.lua RELOC/scripts/barracuda/lib-barcode/brcd-code39.lua RELOC/scripts/barracuda/lib-barcode/brcd-ean.lua RELOC/scripts/barracuda/lib-barcode/brcd-i2of5.lua + RELOC/scripts/barracuda/lib-barcode/brcd-upc.lua RELOC/scripts/barracuda/lib-driver/brcd-driver.lua RELOC/scripts/barracuda/lib-driver/brcd-drv-pdfliteral.lua RELOC/scripts/barracuda/lib-driver/brcd-drv-svg.lua @@ -30633,7 +31267,7 @@ catalogue-contact-support https://github.com/robitex/barracuda/issues catalogue-ctan /macros/luatex/generic/barracuda catalogue-license gpl2 catalogue-topics barcode -catalogue-version 0.0.10 +catalogue-version 0.0.12 name bartel-chess-fonts category Package @@ -32133,30 +32767,30 @@ catalogue-version 1.05 name bath-bst category Package -revision 57925 +revision 63398 shortdesc Harvard referencing style as recommended by the University of Bath Library relocated 1 longdesc This package provides a BibTeX style to format reference lists longdesc in the Harvard style recommended by the University of Bath longdesc Library. It should be used in conjunction with natbib for longdesc citations. -containersize 7976 -containerchecksum af8b36282e28556b9dfc8729143d2d38cc49d524df5a0280dbce6536e65dab1266b7b8fc31dd878b5540b9794f90309fcaa6fb14fcd6a069de68ee287bddb386 -doccontainersize 855132 -doccontainerchecksum 5cf9e77bd84dacb999edc16d81d5cc0ea54bccd25ecbdff21be8eaa8a6ec2e5db893b77ab0235fcee1c4c234d5ab8cccf52f102948279d0859e37e8b291f13ec -docfiles size=247 +containersize 8460 +containerchecksum 0d32f9c6121a57900fa3818cc4efdfe7355346b7e25971f21e72358bed84e8a56467df9f8132f2666a5047c8a47606a4745ebdb5a00bdc02b4d33155ed72bec4 +doccontainersize 927208 +doccontainerchecksum 45ad0c20ad0cdab5ea22bcd3eb728de173c0c75fdea8b315f2edc5af977406e1be2db0d41b5f2d68e57d68bd3adf7e34e1b3189b401a0a7bf1436376f0e46e08 +docfiles size=267 RELOC/doc/bibtex/bath-bst/README.md details="Readme" RELOC/doc/bibtex/bath-bst/bath-bst-v1.bib RELOC/doc/bibtex/bath-bst/bath-bst-v1.pdf details="Documentation of version 1 style" RELOC/doc/bibtex/bath-bst/bath-bst-v1.tex RELOC/doc/bibtex/bath-bst/bath-bst.bib RELOC/doc/bibtex/bath-bst/bath-bst.pdf details="Package documentation" -srccontainersize 32392 -srccontainerchecksum 76c9e3b0ae60b42caca389a43f3e3b69e8f28331f0037049febff40f4c990d38373a8fdba1fc22b3afaa13a79e607b9c0f596fc130fa2bb43830248af514c51e -srcfiles size=40 +srccontainersize 37588 +srccontainerchecksum 654e5b3581e66c9df05d7f42cf00b5ad818406d00a03122aedfe1e7f4292f6c6bcbc6be1229ae62303bcb0300c7351c5d0d655da493da0d799aa3183e57dfd1b +srcfiles size=48 RELOC/source/bibtex/bath-bst/Makefile RELOC/source/bibtex/bath-bst/bath-bst.dtx -runfiles size=26 +runfiles size=27 RELOC/bibtex/bst/bath-bst/bath.bst RELOC/bibtex/bst/bath-bst/bathx.bst catalogue-also biblatex-bath @@ -32165,7 +32799,7 @@ catalogue-contact-home https://github.com/alex-ball/bathbib catalogue-ctan /biblio/bibtex/contrib/bath-bst catalogue-license lppl1.3c catalogue-topics bibtex-sty -catalogue-version 4.0 +catalogue-version 6.0 name bbcard category Package @@ -32467,6 +33101,42 @@ catalogue-ctan /fonts/bbold-type1 catalogue-license other-free catalogue-topics font font-maths font-bbd font-type1 +name bboldx +category Package +revision 65424 +shortdesc Extension of the bbold package with a Blackboard Bold alphabet +relocated 1 +longdesc Extension of bbold to a package with three weights, of which +longdesc the original is considered as light and the additions as +longdesc regular and bold. +execute addMap bboldx.map +containersize 71048 +containerchecksum b75c9f544bc0c6d1c046d614a6e0ba52a9cf920d73e8066e2d5e656e1a8774d42677c5a5bc9848e45bd4892e3ed19f6c3c281333f437b541d30d3410be2618a8 +doccontainersize 180492 +doccontainerchecksum 671259c208ea744654b82f25fddc3589fdda650c2121c71763ca4fb4c0ebe3a99906763c5adc354f49edec4beec59897445f5864a37640f67e47c8df6473f2fe +docfiles size=47 + RELOC/doc/fonts/bboldx/Bboldx-doc.pdf details="Package documentation" + RELOC/doc/fonts/bboldx/Bboldx-doc.tex + RELOC/doc/fonts/bboldx/README details="Readme" +runfiles size=33 + RELOC/fonts/afm/public/bboldx/BBOLDX-Bold.afm + RELOC/fonts/afm/public/bboldx/BBOLDX-Regular.afm + RELOC/fonts/afm/public/bboldx/BBOLDX-Thin.afm + RELOC/fonts/enc/dvips/bboldx/bboldx.enc + RELOC/fonts/map/dvips/bboldx/bboldx.map + RELOC/fonts/tfm/public/bboldx/BBOLDX-Bold.tfm + RELOC/fonts/tfm/public/bboldx/BBOLDX-Regular.tfm + RELOC/fonts/tfm/public/bboldx/BBOLDX-Thin.tfm + RELOC/fonts/type1/public/bboldx/BBOLDX-Bold.pfb + RELOC/fonts/type1/public/bboldx/BBOLDX-Regular.pfb + RELOC/fonts/type1/public/bboldx/BBOLDX-Thin.pfb + RELOC/tex/latex/bboldx/Ubboldx.fd + RELOC/tex/latex/bboldx/bboldx.sty +catalogue-ctan /fonts/bboldx +catalogue-license other-free +catalogue-topics font font-maths font-bbd font-type1 font-supp +catalogue-version 1.032 + name bchart category Package revision 43928 @@ -32659,7 +33329,7 @@ catalogue-version 3.1 name beamer category Package -revision 58537 +revision 65984 shortdesc A LaTeX class for producing presentations and slides relocated 1 longdesc The beamer LaTeX class can be used for producing slides. The @@ -32689,11 +33359,11 @@ depend iftex depend pgf depend translator depend xcolor -containersize 165816 -containerchecksum 569d6ce4661185964583f9be628df4ce898d70d198c2cbfd0f687f60e38b59beac6b7fbe4db49b16a0ba7d5dac837f62df33d38131d8c729044b320c3ecc041e -doccontainersize 2909492 -doccontainerchecksum 2b74cd7cb7c4481d2b9070e93c7c265244b9d8b9168470754c6a0df5d457e412c00e041e4643f644f942189268d360121ac01c001a2fb55760df326e06be940b -docfiles size=1061 +containersize 167444 +containerchecksum 8143a7894e585a10b6fe0d733aa640ec7e6bdf653630cb01ca15bcd9d46ebefae96f1cb4592f0a5c2037bf8c0b0c10b9ec08f2415eae7013efa5271f7cd8e985 +doccontainersize 2513624 +doccontainerchecksum 6a8c36083f0dc3fa6b301782cef71f90d8149c9e715b3c8712b6998f2828ebc29edcb84630f14022980711ce212cfbab1fc724c388474c60b6194fd20359d2be +docfiles size=1084 RELOC/doc/latex/beamer/AUTHORS.md RELOC/doc/latex/beamer/CHANGELOG.md RELOC/doc/latex/beamer/LICENSE.md @@ -32766,7 +33436,7 @@ docfiles size=1061 RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.de.tex RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.en.tex RELOC/doc/latex/beamer/solutions/short-talks/speaker_introduction-ornate-2min.fr.tex -runfiles size=254 +runfiles size=256 RELOC/tex/latex/beamer/beamer.cls RELOC/tex/latex/beamer/beamerarticle.sty RELOC/tex/latex/beamer/beamerbasearticle.sty @@ -32783,6 +33453,7 @@ runfiles size=254 RELOC/tex/latex/beamer/beamerbasemisc.sty RELOC/tex/latex/beamer/beamerbasemodes.sty RELOC/tex/latex/beamer/beamerbasenavigation.sty + RELOC/tex/latex/beamer/beamerbasenavigationsymbols.tex RELOC/tex/latex/beamer/beamerbasenotes.sty RELOC/tex/latex/beamer/beamerbaseoptions.sty RELOC/tex/latex/beamer/beamerbaseoverlay.sty @@ -32900,11 +33571,11 @@ catalogue-contact-repository https://github.com/josephwright/beamer catalogue-ctan /macros/latex/contrib/beamer catalogue-license lppl1.3c gpl2+ fdl catalogue-topics presentation class -catalogue-version 3.62 +catalogue-version 3.69 -name beamer-FUBerlin +name beamer-fuberlin category Package -revision 38159 +revision 63161 shortdesc Beamer, using the style of FU Berlin relocated 1 longdesc The bundle provides a beamer-derived class and a theme style @@ -32914,23 +33585,24 @@ longdesc the usual way with \usetheme{BerlinFU}. Examples of using both longdesc the class and the theme are provided; the PDF is visually longdesc identical, so the catalogue only lists one; the sources of the longdesc examples do of course differ. -containersize 612 -containerchecksum 10d5ac201b18b2d7de8e8e4ce2d08255ced89567f311d449002711235e0e0d052b6001acf5aac198397e295e7970863d42a57ecedb8464c8d49a3eba43b6d90d -doccontainersize 369760 -doccontainerchecksum 451a4ff305191947bb594394f863c447a96b5ca8327a08a5897ed7486e1a3ddcfb7e415d4da613050e38c8a76388cfbd7a3631be8a84d82e31f25081e71e913f -docfiles size=167 - RELOC/doc/latex/beamer-FUBerlin/Changes - RELOC/doc/latex/beamer-FUBerlin/README details="Readme" - RELOC/doc/latex/beamer-FUBerlin/doc/README.doc - RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.pdf details="Example of use of the class" - RELOC/doc/latex/beamer-FUBerlin/doc/exampleClass.tex - RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.pdf - RELOC/doc/latex/beamer-FUBerlin/doc/exampleTheme.tex - RELOC/doc/latex/beamer-FUBerlin/tex/latex/FUbeamer.cls - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamercolorthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerfontthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerouterthemeBerlinFU.sty - RELOC/doc/latex/beamer-FUBerlin/tex/latex/beamerthemeBerlinFU.sty +containersize 3168 +containerchecksum 6638fee0c05b9901935204bbcbd79baa1cd0213c0aba6c8eecf1a9f4b2b44aa9403f42078e84e437e7e14d36a991afd0446ae9ffd2ee3260814944fe7b52e92d +doccontainersize 367212 +doccontainerchecksum 2241bfbdd7dd8b034a01e83f4076fdcf628ea40a29d27cf1e6ceba234b68580cb05f5b29d71c196187e3b5ac1e5a0ec566c5e4a0b784e56f43bdf86ab2747781 +docfiles size=161 + RELOC/doc/latex/beamer-fuberlin/Changes + RELOC/doc/latex/beamer-fuberlin/README details="Readme" + RELOC/doc/latex/beamer-fuberlin/README.doc + RELOC/doc/latex/beamer-fuberlin/exampleClass.pdf details="Example of use of the class" + RELOC/doc/latex/beamer-fuberlin/exampleClass.tex + RELOC/doc/latex/beamer-fuberlin/exampleTheme.pdf + RELOC/doc/latex/beamer-fuberlin/exampleTheme.tex +runfiles size=6 + RELOC/tex/latex/beamer-fuberlin/FUbeamer.cls + RELOC/tex/latex/beamer-fuberlin/beamercolorthemeBerlinFU.sty + RELOC/tex/latex/beamer-fuberlin/beamerfontthemeBerlinFU.sty + RELOC/tex/latex/beamer-fuberlin/beamerouterthemeBerlinFU.sty + RELOC/tex/latex/beamer-fuberlin/beamerthemeBerlinFU.sty catalogue-ctan /macros/latex/contrib/beamer-FUBerlin catalogue-license lppl catalogue-topics presentation @@ -32938,24 +33610,25 @@ catalogue-version 0.02b name beamer-rl category Package -revision 58513 +revision 65725 shortdesc Right to left presentation with beamer and babel relocated 1 longdesc This class provides patches of some beamer templates and longdesc commands for presentation from right to left. It requires Babel longdesc with the LuaTeX engine. -containersize 5636 -containerchecksum bb16a10b5c5edf3df3163bb5f177eaff4e1235263d758528691aaa49b3388412c380721239ebd73f965d4306860b1de95b25b7c1eade36d216da1e3974563e9e -doccontainersize 207344 -doccontainerchecksum a7032533474476f480a685decaa62da74ca37100a8f6f15ce56ba5ab8bafa3a8a58499023de2bef5eb3e7eaf4afc978287188ed57ff4fb02906254211713fa88 -docfiles size=71 +containersize 8352 +containerchecksum 116da52bba8c3e49784d4cdcc50e1326b9e2455741fa1187d51c0757dcbe8ad4e27300e26143413f5e5868cdb845ba044655a263a6a709268ead43f0398425f9 +doccontainersize 233384 +doccontainerchecksum 2acce2762763518cbe8bc0342c2b742efb685bbc83159a4b3ae9ae254f5bb8326aa0dd83691e4115b9c63ff83822bbabaf461cbe5385aacb4ba7a31782bcd440 +docfiles size=83 RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.pdf details="Example of use (Arabic)" language="ar" RELOC/doc/lualatex/beamer-rl/Example-of-use-ar.tex RELOC/doc/lualatex/beamer-rl/Example-of-use-en.pdf details="Example of use (English)" language="en" RELOC/doc/lualatex/beamer-rl/Example-of-use-en.tex RELOC/doc/lualatex/beamer-rl/README.txt details="Readme" -runfiles size=9 +runfiles size=16 RELOC/tex/lualatex/beamer-rl/beamer-rl.cls + RELOC/tex/lualatex/beamer-rl/pgfpages-rl.sty RELOC/tex/lualatex/beamer-rl/translator-basic-dictionary-Arabic.dict RELOC/tex/lualatex/beamer-rl/translator-bibliography-dictionary-Arabic.dict RELOC/tex/lualatex/beamer-rl/translator-environment-dictionary-Arabic.dict @@ -32966,7 +33639,7 @@ catalogue-contact-repository https://github.com/seloumi/beamer-rl catalogue-ctan /macros/luatex/latex/beamer-rl catalogue-license lppl1.3c catalogue-topics class presentation bidi multilingual luatex -catalogue-version 1.4b +catalogue-version 1.8 name beamer-tut-pt category Package @@ -33343,7 +34016,7 @@ catalogue-version 0.2 name beamerswitch category Package -revision 58873 +revision 64182 shortdesc Convenient mode selection in Beamer documents relocated 1 longdesc This class is a wrapper around the beamer class to make it @@ -33355,11 +34028,11 @@ longdesc transcript or set of notes using the article class. The class longdesc provides a variety of handout layouts, and allows the mode to longdesc be chosen from the command line (without changing the document longdesc itself). -containersize 4872 -containerchecksum 9fff5ac8406dd4bc0e76f3b01678c1c2d4dc089ba819e873121b6ae43054356a666101c0e044fc06f4ce40a49468c08b1436370a0836f54705da4df610b610dc -doccontainersize 257736 -doccontainerchecksum 59e94176d8d2197be538aead029ad03d77632fa062a1fcfd911fdf7a2e1f27e54cab4b816f36ce4b4c6b63c7244333e2d0ae8448fb3f85edccc79309e76fb5a1 -docfiles size=79 +containersize 4936 +containerchecksum 43b91dddb86a5f0158a6181a931a4a68eddbef350917f59df7a281e89f6b87d3db652146094eb46fd89d46f6564d1bcb2f278e34a6ee2738d7c4a817ed1db37c +doccontainersize 264708 +doccontainerchecksum 1cbab77e0b5482eed26fc7364877cde6094edb23ad353340172b278d4728024b5187df2982f3985899bcbd626aa77fc2423d8dfc4936b6d32f62cace50a4d058 +docfiles size=80 RELOC/doc/latex/beamerswitch/README.md details="Readme" RELOC/doc/latex/beamerswitch/beamerswitch-example-article.pdf details="Example of use (article)" RELOC/doc/latex/beamerswitch/beamerswitch-example-handout.pdf details="Example of use (handout)" @@ -33367,9 +34040,9 @@ docfiles size=79 RELOC/doc/latex/beamerswitch/beamerswitch-example.pdf details="Example of use (slides, with overlays)" RELOC/doc/latex/beamerswitch/beamerswitch-example.tex RELOC/doc/latex/beamerswitch/beamerswitch.pdf details="Package documentation" -srccontainersize 20464 -srccontainerchecksum c81324917cb69eb02ceef698c5b2f1efc42a055328c5a67882ef2d315769388e311c5c58f3a532f644d166af28aff98830cc39ed94bd8851d79247aaa68c1af4 -srcfiles size=27 +srccontainersize 20600 +srccontainerchecksum 0b6ddd42fffe3a1c85c94e0262b156222b0673b1d8d6f54d3f196154eec4a1fe6ccc44d8c34ab04c496e1635e8bf4555bbcb835dda0ed52e780d904d3a797610 +srcfiles size=28 RELOC/source/latex/beamerswitch/Makefile RELOC/source/latex/beamerswitch/beamerswitch.dtx runfiles size=12 @@ -33379,7 +34052,41 @@ catalogue-contact-repository https://github.com/alex-ball/beamerswitch catalogue-ctan /macros/latex/contrib/beamer-contrib/beamerswitch catalogue-license lppl1.3c catalogue-topics presentation class -catalogue-version 1.8 +catalogue-version 1.9 + +name beamertheme-arguelles +category Package +revision 66358 +shortdesc Simple, typographic beamer theme +relocated 1 +longdesc Arguelles is a beamer theme that helps you create beautiful +longdesc presentations. It aims for simplicity and readability by +longdesc following best practices of graphic design. The layout is +longdesc elegant but subtle, so as to keep the audience's attention on +longdesc your content. This is brought to life by Alegreya, one of the +longdesc 53 Fonts of the Decade selected by the Association +longdesc Typographique Internationale (2011). +containersize 2844 +containerchecksum 3a915b1b8de9d4469623a9d46724df22b51fd722779d4d31beacf7e271e7da38febcc37ae29619a663254b6c673047bbead883100a0d7fe0135c239386c9ed31 +doccontainersize 656316 +doccontainerchecksum 95014c803ac43da5480e4bff80cb0cfc65e3c60c83a0922a251e6aa6ec21ed2765369fadcf8bd22dce5aa1ff6eb356353f82fb55871571e237bdaeeebf2f41a7 +docfiles size=165 + RELOC/doc/latex/beamertheme-arguelles/LICENSE + RELOC/doc/latex/beamertheme-arguelles/README.md details="Readme" + RELOC/doc/latex/beamertheme-arguelles/demo/demo-arguelles.pdf details="Example of use" + RELOC/doc/latex/beamertheme-arguelles/demo/demo-arguelles.tex +runfiles size=5 + RELOC/tex/latex/beamertheme-arguelles/beamercolorthemeArguelles.sty + RELOC/tex/latex/beamertheme-arguelles/beamerfontthemeArguelles.sty + RELOC/tex/latex/beamertheme-arguelles/beamerinnerthemeArguelles.sty + RELOC/tex/latex/beamertheme-arguelles/beamerouterthemeArguelles.sty + RELOC/tex/latex/beamertheme-arguelles/beamerthemeArguelles.sty +catalogue-contact-bugs https://github.com/piazzai/arguelles/issues +catalogue-contact-repository https://github.com/piazzai/arguelles +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-arguelles +catalogue-license mit +catalogue-topics presentation +catalogue-version 2.1.0 name beamertheme-cuerna category Package @@ -33481,18 +34188,19 @@ catalogue-version 1.0 name beamertheme-focus category Package -revision 56967 +revision 62551 shortdesc A minimalist presentation theme for LaTeX Beamer relocated 1 longdesc A presentation theme for LaTeX Beamer that aims at a clean and longdesc minimalist design, so to minimize distractions and put the longdesc focus directly on the content. -containersize 4400 -containerchecksum b3b9be62e244fe4288e77113aa8488e24f83932d5e2b31accd30d62ced1cc8bff4b44183fe2be375e69375862237f18b6f0b40c6201f1199cd1423b09c2a60f4 -doccontainersize 494336 -doccontainerchecksum 57e8e51ac4a4eed778796c916713420e9372429fe7d310d9acae988c6d540ee516e64ca290dc6feebe28ad81877ee7e8919b1145e626821c4ef72c226b3cdbde -docfiles size=145 - RELOC/doc/latex/beamertheme-focus/LICENSE +containersize 4680 +containerchecksum 3716ecaa5471847bfd03dcc6b35fbd7d75497798cc289be1c3fd543d4bb063d8ee59955da47f91e5a8e8213c2ec0e5052df9dbbbce5bba702af4fe347a2c60f6 +doccontainersize 247200 +doccontainerchecksum b95f069cbf78cfac26bcd110de989a1609c891f3fde3e13f43c52b19e439a3915b034a25e3759b51bf5b98cbccd188f735cf8762453416d0350ad7fbdc652a9d +docfiles size=89 + RELOC/doc/latex/beamertheme-focus/CHANGELOG.md + RELOC/doc/latex/beamertheme-focus/LICENSE.md RELOC/doc/latex/beamertheme-focus/README.md details="Readme" RELOC/doc/latex/beamertheme-focus/focus-demo.pdf details="Example of use" RELOC/doc/latex/beamertheme-focus/focus-demo.tex @@ -33505,7 +34213,7 @@ docfiles size=145 RELOC/doc/latex/beamertheme-focus/focus-demo/demo-typeset.jpg RELOC/doc/latex/beamertheme-focus/focus-demo_bibliography.bib RELOC/doc/latex/beamertheme-focus/focus-logo.pdf -runfiles size=8 +runfiles size=9 RELOC/tex/latex/beamertheme-focus/beamercolorthemefocus.sty RELOC/tex/latex/beamertheme-focus/beamerfontthemefocus.sty RELOC/tex/latex/beamertheme-focus/beamerinnerthemefocus.sty @@ -33517,7 +34225,7 @@ catalogue-contact-repository https://github.com/elauksap/focus-beamertheme catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-focus catalogue-license gpl3 catalogue-topics presentation -catalogue-version 2.8.1 +catalogue-version 3.3.0 name beamertheme-light category Package @@ -33742,9 +34450,92 @@ catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-saintpete catalogue-license lppl1.3c catalogue-topics presentation +name beamertheme-simpledarkblue +category Package +revision 60061 +shortdesc Template for a simple presentation +relocated 1 +longdesc This is a simple but nice theme for Beamer. Features: simple +longdesc structure: with page numbers in footer, no side bar, simple +longdesc colors: using only several foreground and background colors. +containersize 1568 +containerchecksum c75bb4c0f0eecf2aea0e24d30410ca1edcf645c323d88433bc6c12adf116740f2f6bc7d8517db764b0b33d9d9227db93ddddd1c521dde3343fce6d807b0e642d +doccontainersize 40528 +doccontainerchecksum 9f8f642ebe4cafed03699377be6bb647cbdfb80f99e075e2863b69a4d6b6f59cab6dd4dc831b0fb015302b3737b32d08cf37b3034365b021e8fd9f086f7e6ddf +docfiles size=15 + RELOC/doc/latex/beamertheme-simpledarkblue/LICENSE + RELOC/doc/latex/beamertheme-simpledarkblue/README.md details="Readme" + RELOC/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.pdf details="Example of use" + RELOC/doc/latex/beamertheme-simpledarkblue/beamertheme-simpledarkblue-sample.tex +runfiles size=3 + RELOC/tex/latex/beamertheme-simpledarkblue/beamercolorthemeSimpleDarkBlue.sty + RELOC/tex/latex/beamertheme-simpledarkblue/beamerfontthemeSimpleDarkBlue.sty + RELOC/tex/latex/beamertheme-simpledarkblue/beamerthemeSimpleDarkBlue.sty +catalogue-contact-bugs https://github.com/PM25/Simple-Beamer-Theme/issues +catalogue-contact-repository https://github.com/PM25/Simple-Beamer-Theme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-simpledarkblue +catalogue-license pd +catalogue-topics presentation + +name beamertheme-simpleplus +category Package +revision 64770 +shortdesc A simple and clean theme for LaTeX beamer +relocated 1 +longdesc This package provides a simple and clean theme for LaTeX +longdesc Beamer. It can be used for academic and scientific +longdesc presentations. +containersize 1904 +containerchecksum de19e0011817552bbba482517f9ea4f59590cc837c4b539e01db5f08eafa2dc94adda9dc8fd4f92b07fe2acc38862b5a581c195f1776975469d69c1b7fdd617f +doccontainersize 37024 +doccontainerchecksum e96132fc4669ec82913ad7610a174815be79476fc40ecc1ed35744292d41ba47bbbf1a7cd9d244b41c12ab515c729655271d62a608ae47cd2acd0324cf0f0ae7 +docfiles size=14 + RELOC/doc/latex/beamertheme-simpleplus/LICENSE + RELOC/doc/latex/beamertheme-simpleplus/README.md details="Readme" + RELOC/doc/latex/beamertheme-simpleplus/beamertheme-simpleplus-sample.pdf details="Example of use" + RELOC/doc/latex/beamertheme-simpleplus/beamertheme-simpleplus-sample.tex +runfiles size=4 + RELOC/tex/latex/beamertheme-simpleplus/beamercolorthemeSimplePlus.sty + RELOC/tex/latex/beamertheme-simpleplus/beamerfontthemeSimplePlus.sty + RELOC/tex/latex/beamertheme-simpleplus/beamerinnerthemeSimplePlus.sty + RELOC/tex/latex/beamertheme-simpleplus/beamerthemeSimplePlus.sty +catalogue-contact-bugs https://github.com/PM25/SimplePlus-BeamerTheme/issues +catalogue-contact-development https://pm25.github.io +catalogue-contact-repository https://github.com/PM25/SimplePlus-BeamerTheme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-simpleplus +catalogue-license pd +catalogue-topics presentation +catalogue-version 1.0 + +name beamertheme-tcolorbox +category Package +revision 64387 +shortdesc A beamer inner theme which reproduces standard beamer blocks using tcolorboxes +relocated 1 +longdesc This package provides an inner theme for beamer which +longdesc reproduces standard beamer blocks using tcolorboxes. The look +longdesc and feel (rounded/sharp corners, shadows and colours) will +longdesc automatically adapt to which other themes are loaded. +containersize 2356 +containerchecksum 9cf46f7998a683675640dc4f6bec5bc873dbe4fa09324ce1e3c32b0f1baf297b6f0ed9f25fa5f346e718e9290d697b535b23da927c5630acbe61e20835faa68b +doccontainersize 170224 +doccontainerchecksum 9c779600fd21e28052fd345871ed9541eb7ded8dcda3a63eacfe0de72dbd009f61883b5564ad3168483b2b1d4ca7e138d678c14dc67fbeb4b58785d33c22542d +docfiles size=48 + RELOC/doc/latex/beamertheme-tcolorbox/README.md details="Readme" + RELOC/doc/latex/beamertheme-tcolorbox/beamertheme-tcolorbox-doc.pdf details="Package documentation" + RELOC/doc/latex/beamertheme-tcolorbox/beamertheme-tcolorbox-doc.tex +runfiles size=2 + RELOC/tex/latex/beamertheme-tcolorbox/beamerinnerthemetcolorbox.sty +catalogue-contact-repository https://github.com/samcarter/beamertheme-tcolorbox +catalogue-contact-support https://github.com/samcarter/beamertheme-tcolorbox/issues +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-tcolorbox +catalogue-license lppl1.3c +catalogue-topics presentation +catalogue-version 0.5 + name beamertheme-trigon category Package -revision 59004 +revision 65985 shortdesc A modern, elegant, and versatile theme for Beamer relocated 1 longdesc This package provides a modern, elegant and versatile theme for @@ -33764,18 +34555,23 @@ longdesc Most options from Metropolis have been ported to Trigon in longdesc order to improve customization and ease-of-use. Trigon also longdesc includes different styles and layouts for the main title page, longdesc the section page and the default slide background. -containersize 5468 -containerchecksum e0fa7ff98a34ef416275502a1fc6522578749ae91de9ec416819cbd418fc212bcdd44798d42073a665afcef5d6e4c2b198667b922932297f563db89450ba3b2f -doccontainersize 562496 -doccontainerchecksum 910c3aabde13e8efd7d2cc96ac5695047b35c94e6ef6d1e7997e004b1e68edd3fb4a1bf1acecbee8a75028737dfb6cf750295510d0fc0939f95f4f03f1d76b05 -docfiles size=192 +containersize 6096 +containerchecksum 1269b79603c415123a91093bc69cd672aa54518da7e7cef52193804fcede45dc09fe6748f2c0c940a754767963174e768b52873fbac5a520f7076229100ff016 +doccontainersize 585252 +doccontainerchecksum 83b6946c17d060c299260ff272130938933dbeb9124b1608e8f3bd886b2f63851773181dc1efabe901196b37f7254569a5b5de0de7fd39ff558eb21376ffaa27 +docfiles size=264 RELOC/doc/latex/beamertheme-trigon/README.md details="Readme" + RELOC/doc/latex/beamertheme-trigon/frames.tex + RELOC/doc/latex/beamertheme-trigon/library.jpg RELOC/doc/latex/beamertheme-trigon/trigon_demo.pdf details="Example of use" RELOC/doc/latex/beamertheme-trigon/trigon_demo.tex + RELOC/doc/latex/beamertheme-trigon/trigon_full.pdf + RELOC/doc/latex/beamertheme-trigon/trigon_small.pdf RELOC/doc/latex/beamertheme-trigon/trigontheme.pdf details="Package documentation" -srccontainersize 12000 -srccontainerchecksum 70804d3e135d27b9ba84f50c80c151996a1bcaae050bd8314be854192855935d2920cdcf06107c168c893a7066f5e1af0da5fe07bcf32a3e9808e02ebbfaa48a -srcfiles size=19 +srccontainersize 15168 +srccontainerchecksum 49f9d4cf001b45b29a5c7b59155d72e286092157dfa5c0dfa05e7a20958adefda2a182974508f9a0936acb1d5ce199e21b350e85da7e292525b2aaab60e2c6d3 +srcfiles size=21 + RELOC/source/latex/beamertheme-trigon/Makefile RELOC/source/latex/beamertheme-trigon/beamercolorthemetrigon.dtx RELOC/source/latex/beamertheme-trigon/beamerfontthemetrigon.dtx RELOC/source/latex/beamertheme-trigon/beamerinnerthemetrigon.dtx @@ -33783,7 +34579,7 @@ srcfiles size=19 RELOC/source/latex/beamertheme-trigon/beamerthemetrigon.dtx RELOC/source/latex/beamertheme-trigon/beamerthemetrigon.ins RELOC/source/latex/beamertheme-trigon/trigontheme.dtx -runfiles size=10 +runfiles size=11 RELOC/tex/latex/beamertheme-trigon/beamercolorthemetrigon.sty RELOC/tex/latex/beamertheme-trigon/beamerfontthemetrigon.sty RELOC/tex/latex/beamertheme-trigon/beamerinnerthemetrigon.sty @@ -33794,7 +34590,7 @@ catalogue-contact-repository https://gitlab.com/thlamb/beamertheme-trigon catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamertheme-trigon catalogue-license cc-by-sa-4 catalogue-topics presentation -catalogue-version 0.5.0 +catalogue-version 0.7.0 name beamertheme-upenn-bc category Package @@ -33827,6 +34623,37 @@ catalogue-license lppl catalogue-topics presentation catalogue-version 1.0 +name beamerthemeamurmaple +category Package +revision 65698 +shortdesc A new modern beamer theme +relocated 1 +longdesc This Beamer theme is a suitable theme for my use of Beamer in +longdesc applied mathematics research. It meets my needs in my work. +longdesc However, if you like this theme, and if you want to ask for or +longdesc make improvements, don't hesitate to write to me! +containersize 6304 +containerchecksum d3ca653e4d21c08077e6957d2a2ea56f988100aee0c443428328506bd5cee2a739045c99c7373a8870693d76f844dc5ea192a1a69bae197c09eee4ac212501cc +doccontainersize 749444 +doccontainerchecksum 92c71d9ce3a124009ad3d72e4b46c8ccb3e49d4eeb193d53080a08f3917c065da44bbfe2ac1ec80fb9105cdf1e3a840e7df065a7b28151771fb5acd33ca66174 +docfiles size=446 + RELOC/doc/latex/beamerthemeamurmaple/LICENSE + RELOC/doc/latex/beamerthemeamurmaple/README.md details="Readme" + RELOC/doc/latex/beamerthemeamurmaple/beamer-amurmaple-doc.pdf details="Package documentation" + RELOC/doc/latex/beamerthemeamurmaple/beamer-amurmaple-doc.tex + RELOC/doc/latex/beamerthemeamurmaple/beamer-amurmaple-leftframetitle.pdf + RELOC/doc/latex/beamerthemeamurmaple/beamer-amurmaple-sidebar.pdf + RELOC/doc/latex/beamerthemeamurmaple/beamer-amurmaple-test.pdf + RELOC/doc/latex/beamerthemeamurmaple/logo.png +runfiles size=6 + RELOC/tex/latex/beamerthemeamurmaple/beamerthemeAmurmaple.sty +catalogue-contact-home https://plmlab.math.cnrs.fr/mchupin/mcbeamertheme +catalogue-contact-repository https://plmlab.math.cnrs.fr/mchupin/mcbeamertheme +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerthemeamurmaple +catalogue-license lppl1.3 +catalogue-topics presentation +catalogue-version 1.2 + name beamerthemejltree category Package revision 21977 @@ -33969,48 +34796,47 @@ catalogue-version 0.2 name beaulivre category Package -revision 58503 +revision 65475 shortdesc Write your books in a colorful way relocated 1 longdesc This package provides a LaTeX class for typesetting books with -longdesc a colorful design. Currently, it has native support for -longdesc English, French, and Chinese typesetting. It compiles with -longdesc either XeLaTeX or LuaLaTeX. This is part of the colorist class -longdesc series and depends on colorist.sty from the colorist package. -longdesc The package name "beaulivre" is taken from the French words -longdesc "beau" (= "beautiful") and "livre" (= "book"). +longdesc a colorful design. Currently, it has native support for Chinese +longdesc (both simplified and traditional), English, French, German, +longdesc Italian, Japanese, Portuguese (European and Brazilian), Russian +longdesc and Spanish typesetting. It compiles with either XeLaTeX or +longdesc LuaLaTeX. This is part of the colorist class series and depends +longdesc on colorist.sty from the colorist package. The package name +longdesc "beaulivre" is taken from the French words "beau" (= +longdesc "beautiful") and "livre" (= "book"). depend colorist -containersize 3024 -containerchecksum 68117aaa40fb49c0fa7da73fb4f5cd1445191efadb4ed1ad08a12878fc1681cea13804fbf949484a63834cb0a14b3d306bb6def553e3dfe2420ef7e2b84614ab -doccontainersize 275784 -doccontainerchecksum 263b5b5bd27c13db1247354429ccc93953e522213a2b154c08918489eb4c2ee3fc36f5a2922a901f1113b2bffd11301b4d3d71f90876886c32e07a38f28e30b9 -docfiles size=82 +containersize 4760 +containerchecksum cfadd2e47adc0f4fbe6eace5ca12f2e4dcd42a5efa681d4e0dc2f269957a582bb463c6230671ba1f4c35bff7299f4764f8f3dbab75d35c54a7e7594f6a9ad68a +doccontainersize 7052 +doccontainerchecksum f72326c7d83bbf6c4ce9cda132efac84e5ea1cce1f4a64842c6bd5b16c8a393e4a8e7fe15b064d49597f9b23a81bfc40bc4c43bc07f30558042d8f0f97cc484f +docfiles size=7 + RELOC/doc/latex/beaulivre/DEPENDS.txt RELOC/doc/latex/beaulivre/LICENSE RELOC/doc/latex/beaulivre/README.md details="Readme" - RELOC/doc/latex/beaulivre/beaulivre-doc-cn.pdf details="Package documentation (Chinese)" language="zh" - RELOC/doc/latex/beaulivre/beaulivre-doc-cn.tex - RELOC/doc/latex/beaulivre/beaulivre-doc-en.pdf details="Package documentation (English)" - RELOC/doc/latex/beaulivre/beaulivre-doc-en.tex -runfiles size=2 +runfiles size=8 RELOC/tex/latex/beaulivre/beaulivre.cls catalogue-also colorist catalogue-contact-repository https://github.com/Jinwen-XU/colorist catalogue-ctan /macros/unicodetex/latex/beaulivre catalogue-license lppl1.3c -catalogue-topics class book-pub chinese +catalogue-topics class book-pub chinese multilingual expl3 name beebe category Package -revision 58983 +revision 66286 catalogue biblio shortdesc A collection of bibliographies relocated 1 longdesc A collection of BibTeX bibliographies on TeX-related topics longdesc (including, for example, spell-checking and SGML). Each longdesc includes a LaTeX wrapper file to typeset the bibliography. -containersize 876100 -containerchecksum 88a01fd42056ca3581ff9178e8313fa20e0339277aa133076b7af425a90cc133ea768ab132058e4e70dcb0850fd0eedf44248d459ad7a5a2366ab06d4a1a0636 -runfiles size=2173 +containersize 903080 +containerchecksum c64b655eb8d5e60191ec602e2cd188c241d2f7a66b35881ea7922b138e45665661ca64c9e8b370e69a18cb3876e5b66f331906a06ae868a7a059fbffe06f31b6 +runfiles size=2221 RELOC/bibtex/bib/beebe/epodd.bib RELOC/bibtex/bib/beebe/font.bib RELOC/bibtex/bib/beebe/printing-history.bib @@ -34034,31 +34860,30 @@ catalogue-topics bibtex-lib name begingreek category Package -revision 36294 +revision 63255 shortdesc Greek environment to be used with pdfLaTeX only relocated 1 longdesc This simple package defines a greek environment to be used with longdesc pdfLaTeX only, that accepts an optional Greek font family name longdesc to type its contents with. A similar \greektxt command does a longdesc similar action for shorter texts. -containersize 1664 -containerchecksum 88b3bd66f458eacdb1c4da1cf4a44de333ab45f3d498eecc1a1d4b688c955b3a759a620642e3cf94268136989817f97d783475740a0c16d3b5578b670d967719 -doccontainersize 709916 -doccontainerchecksum 3792be7b825db6ffa7194a0cad8d8ba0c2ab3ef64f87abeb607870702612a22c798a61e8b07d61f21e1a0db30c4645c3ebe03bc0ac7c297fbec163d9cb91f22b -docfiles size=175 - RELOC/doc/latex/begingreek/README details="Readme" +containersize 1808 +containerchecksum c6e8493a80e328a10208088f7490a14bbec76fc8d969b85c6505d655840d9e4d8e05da3a1a3b17d76fcc0ad26df7251765d7d4e812000cd3fb9101ad5a46c3a9 +doccontainersize 785552 +doccontainerchecksum 3143cf03735fc6e5b3a77f17b6099f139d6a1cfcaecf140dab6eb4c72398742719956bc03052e539eefa9acbebd00ab14f7b0be829ece74b8a66dd227580542b +docfiles size=197 + RELOC/doc/latex/begingreek/README.txt details="Readme" RELOC/doc/latex/begingreek/begingreek.pdf details="Package documentation" - RELOC/doc/latex/begingreek/manifest.txt -srccontainersize 7448 -srccontainerchecksum 605588a60e9cb2d6a3be3d8dfada6468dfee100eb7739c7ce3d264af38d305be103a62b267b8f05d8a57d9bae273f930b2e4dcc5f3352ddfb8c1e50ac81ae7d4 -srcfiles size=5 +srccontainersize 7856 +srccontainerchecksum ce891bf42100a6ff2f046f2a02f9ed53a9ac893578d7120cf483aaaa1d856c9985a6e7a59c2076c9febc35fd9cf21139de6fd682923bfb6ecaeabe63dfda2a93 +srcfiles size=6 RELOC/source/latex/begingreek/begingreek.dtx runfiles size=1 RELOC/tex/latex/begingreek/begingreek.sty catalogue-ctan /macros/latex/contrib/begingreek -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics greek -catalogue-version 1.5 +catalogue-version 1.7 name begriff category Package @@ -34125,21 +34950,21 @@ catalogue-version 2.1 name belleek category Package -revision 18651 +revision 66115 shortdesc Free replacement for basic MathTime fonts relocated 1 longdesc This package replaces the original MathTime fonts, not longdesc MathTime-Plus or MathTime Professional (the last being the only longdesc currently available commercial bundle). execute addMap belleek.map -containersize 83284 -containerchecksum cdc7499ec32c26ac524caecc6b5c1f30f3ded83d78756b198b918d321696f378e6487f528cb3781a44f3485110dfff14a14c9b3306e22ae79a8d262c1f1baea4 +containersize 83256 +containerchecksum 4ae91c01e67fcefd46da99d6bc8379b3829e4e0e88f512f36bfc9743d075090d0c26d0eef11dde5125b344e85ccc3c5a31569f3a1078d00d364ea80120bec30d doccontainersize 720 -doccontainerchecksum e974e00c2e43d01d598c18f664e8ca3ca9259ca55089598c77468d6f50d0cc9a64d4fc23154bf9ba7acf3b9b9ca406beff24623eae5b6c3ce4c167904e5fb720 +doccontainerchecksum 93266af4f4293639a123f5ba88e2680d87e6d815f49cd7dc6c9322866dfb22308716da1e362699aeded819e7817987938f70cf48c9166e7127836de743e5dd63 docfiles size=1 RELOC/doc/fonts/belleek/README details="Readme" srccontainersize 596 -srccontainerchecksum 27ea3f4dd1ba7919bf06dfcdcf7b1ca4fa609759a58dffd91fdb2a55662e58e14e19d855d93ec932d176060ee332d89e02c9d2965ec545adfb10f3f486f8875d +srccontainerchecksum b8547d1b3da8be829b7fe99d0cd7cee8fc6b7158c1799712ea85614534d0b020cfafdc1696a0e5037ad15b215173e1461c64f86a1f52795209272aed9991d107 srcfiles size=3 RELOC/source/latex/belleek/my1mtt.fd RELOC/source/latex/belleek/my2mtt.fd @@ -34152,7 +34977,7 @@ runfiles size=34 RELOC/fonts/type1/public/belleek/blex.pfb RELOC/fonts/type1/public/belleek/blsy.pfb RELOC/fonts/type1/public/belleek/rblmi.pfb -catalogue-contact-home http://truetex.com +catalogue-contact-home https://truetex.com catalogue-ctan /fonts/belleek catalogue-license pd catalogue-topics font font-maths font-type1 @@ -34776,7 +35601,7 @@ catalogue-version 1.3 name bewerbung category Package -revision 56998 +revision 61632 shortdesc Typesetting job applications relocated 1 longdesc The package provides packages and classes for typesetting @@ -34785,11 +35610,11 @@ longdesc documents in just a single document. There is also a class for longdesc printing a table of the latest applications that can be shown longdesc to the German authorities. The data for these applications can longdesc be maintained in a simple CSV file. -containersize 10004 -containerchecksum 85ea6341316c231786612a29fbdd4bdaa412512f23e84431669a60262b5594fee908f68b8805ec79adf8445eed724327e4df8e692e75717710498486f86a7f22 -doccontainersize 815368 -doccontainerchecksum c414d4d98b74e8720e487ec2ff5040e9e3de59dcce449698d5e781abb300f13679a5beb2c4af3439a8ded3072a9e69d7bab431869309e87a7b5e803ad684d177 -docfiles size=232 +containersize 9908 +containerchecksum 1a5f652ce8e7ad60f22b7c3c5cc46c3963e5511965445fdacef01aecb157ecc4fbd3eed07140d64716b90a11db96f1b7dab8b4568aa41f7049f8a3a1ed0e290c +doccontainersize 818960 +doccontainerchecksum 1713c1d4ef0982cf635ea57cb7af7805b001b48cdfef5bf770c627f5460f57945d2d2ead87c6e0ae8ad7cdc66036caa5dffafccc5ccd59ba889154cc6e4f9f5e +docfiles size=248 RELOC/doc/latex/bewerbung/Foto.pdf RELOC/doc/latex/bewerbung/README details="Readme" RELOC/doc/latex/bewerbung/README_DE details="Readme(German)" language="de" @@ -34802,8 +35627,8 @@ docfiles size=232 RELOC/doc/latex/bewerbung/config.inc RELOC/doc/latex/bewerbung/neueBewerbung.sh RELOC/doc/latex/bewerbung/titlepage.inc -srccontainersize 25676 -srccontainerchecksum 25749c09482ea181ea35b95bebabdded49908ab6796ece3d907261907581118eaf626dba418987349d503a4ce8dfde87faa5ff2b750a53bfd6ccb4c7525ea141 +srccontainersize 25552 +srccontainerchecksum df95e8bcc71b83dc196699dc9f4581ce3482ae9f1b673fbd2bb2551d84c68c97cbb70771ad710052d1f2652bcb2d32d8a4392a038e747e4ce7a25b65aaed2e79 srcfiles size=30 RELOC/source/latex/bewerbung/bewerbung.dtx RELOC/source/latex/bewerbung/bewerbung.ins @@ -34818,7 +35643,7 @@ runfiles size=18 catalogue-ctan /macros/latex/contrib/bewerbung catalogue-license lppl1.3 catalogue-topics cv class german -catalogue-version 1.2 +catalogue-version 1.3 name bez123 category Package @@ -34880,6 +35705,81 @@ catalogue-license lppl1.3c catalogue-topics luatex use-lua graphics-plot graphics-plotfn catalogue-version 1.4 +name bfh-ci +category Package +revision 66461 +shortdesc Corporate Design for Bern University of Applied Sciences +relocated 1 +longdesc This bundle provides possibilities to use the Corporate Design +longdesc of Bern University of Applied Sciences (BFH) with LaTeX. To +longdesc this end it contains classes as well as some helper packages +longdesc and config files together with some demo files. +containersize 25688 +containerchecksum ee20014e14b03ea19144a91d9680ce3d9435a8fa48110c20ee86af1ab6acacc23f87190fd0291acf088f25a9daeff4ab5fd490eca4b158ae4790a97059a821bf +doccontainersize 236004 +doccontainerchecksum 712489fd3af53147dd09984615e340dfaca7cf84716f4ff168916b8140f6b243b0c6e2ad2ee2552437f70f8d6520806dd1578bd28327aeec247b3f6cb59c860d +docfiles size=117 + RELOC/doc/latex/bfh-ci/DEMO-BFHBeamer-Sidebar.pdf details="Example presentation (2)" + RELOC/doc/latex/bfh-ci/DEMO-BFHBeamer-Sidebar.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHBeamer.pdf details="Example presentation (1)" + RELOC/doc/latex/bfh-ci/DEMO-BFHBeamer.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHFactsheet.pdf details="Example fact sheet" + RELOC/doc/latex/bfh-ci/DEMO-BFHFactsheet.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHFromaddress.lco + RELOC/doc/latex/bfh-ci/DEMO-BFHLetter.pdf details="Example letter" + RELOC/doc/latex/bfh-ci/DEMO-BFHLetter.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHProjektProposal.pdf details="Example project proposal" + RELOC/doc/latex/bfh-ci/DEMO-BFHProjektProposal.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHPub.pdf details="Package documentation" + RELOC/doc/latex/bfh-ci/DEMO-BFHPub.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHSciPoster.pdf details="Example scientific poster" + RELOC/doc/latex/bfh-ci/DEMO-BFHSciPoster.tex + RELOC/doc/latex/bfh-ci/DEMO-BFHThesis.pdf details="Example thesis" + RELOC/doc/latex/bfh-ci/DEMO-BFHThesis.tex + RELOC/doc/latex/bfh-ci/README.md details="Readme" +runfiles size=54 + RELOC/tex/latex/bfh-ci/beamercolorthemeBFH.sty + RELOC/tex/latex/bfh-ci/beamerfontthemeBFH.sty + RELOC/tex/latex/bfh-ci/beamerinnerthemeBFH.sty + RELOC/tex/latex/bfh-ci/beamerouterthemeBFH-sidebar.sty + RELOC/tex/latex/bfh-ci/beamerouterthemeBFH.sty + RELOC/tex/latex/bfh-ci/beamerthemeBFH.sty + RELOC/tex/latex/bfh-ci/bfh-a0paper.clo + RELOC/tex/latex/bfh-ci/bfh-a1paper.clo + RELOC/tex/latex/bfh-ci/bfh-a2paper.clo + RELOC/tex/latex/bfh-ci/bfh-a3paper.clo + RELOC/tex/latex/bfh-ci/bfh-a4paper.clo + RELOC/tex/latex/bfh-ci/bfh-a5paper.clo + RELOC/tex/latex/bfh-ci/bfh-a6paper.clo + RELOC/tex/latex/bfh-ci/bfh-beamerarticle.cfg + RELOC/tex/latex/bfh-ci/bfh-factsheet.cfg + RELOC/tex/latex/bfh-ci/bfh-layout-boxes.cfg + RELOC/tex/latex/bfh-ci/bfh-layout-listings.cfg + RELOC/tex/latex/bfh-ci/bfh-layout-rules.cfg + RELOC/tex/latex/bfh-ci/bfh-layout-tabular.cfg + RELOC/tex/latex/bfh-ci/bfh-layout-terminal.cfg + RELOC/tex/latex/bfh-ci/bfh-projectproposal.cfg + RELOC/tex/latex/bfh-ci/bfhbeamer.cls + RELOC/tex/latex/bfh-ci/bfhcolors.sty + RELOC/tex/latex/bfh-ci/bfhfonts.sty + RELOC/tex/latex/bfh-ci/bfhlayout.sty + RELOC/tex/latex/bfh-ci/bfhletter.sty + RELOC/tex/latex/bfh-ci/bfhlettersize9.5pt.clo + RELOC/tex/latex/bfh-ci/bfhmodule.sty + RELOC/tex/latex/bfh-ci/bfhpub.cls + RELOC/tex/latex/bfh-ci/bfhsciposter.cls + RELOC/tex/latex/bfh-ci/bfhthesis.cls + RELOC/tex/latex/bfh-ci/bfhtranslations-english.trsl + RELOC/tex/latex/bfh-ci/bfhtranslations-french.trsl + RELOC/tex/latex/bfh-ci/bfhtranslations-german.trsl +catalogue-contact-bugs https://gitlab.ti.bfh.ch/bfh-latex/bfh-ci/-/issues +catalogue-contact-home https://latex.ti.bfh.ch/ +catalogue-contact-repository https://gitlab.ti.bfh.ch/bfh-latex/bfh-ci/ +catalogue-ctan /macros/latex/contrib/bfh-ci +catalogue-license lppl1.3c +catalogue-topics class doc-templ letter dissertation presentation poster std-conform +catalogue-version 2.1.5 + name bgteubner category Package revision 54080 @@ -35102,35 +36002,45 @@ catalogue-version 0.4 name bhcexam category Package -revision 39041 -shortdesc An exam class designed for Mathematics Teachers in China -relocated 1 -longdesc The class based on the exam class, and is specially designed -longdesc for High School Mathematics Teachers in China. -containersize 3832 -containerchecksum 83841b8ee51766a9fd7acaef2f2c2662a969e5e6460a54db66e1b70138041eb799eda2e4881b0a2102a00019464a26253ca7d36d7858d2d56684f104bc570be3 -doccontainersize 3436 -doccontainerchecksum 167f5a65edce24e367d6cfb7ebea877b13b1d9cb6f406689c9bdcf364aca0ed04d86c0c1cd3694986dab2ac10230818cbf58f8039568c3e5d9b6b4b98bb93ec6 -docfiles size=10 - RELOC/doc/latex/bhcexam/Makefile - RELOC/doc/latex/bhcexam/README details="Readme" - RELOC/doc/latex/bhcexam/test1.tex - RELOC/doc/latex/bhcexam/test2.tex - RELOC/doc/latex/bhcexam/test3.tex - RELOC/doc/latex/bhcexam/test4.tex -srccontainersize 8508 -srccontainerchecksum ff1583e92e3cc10efe9baaacb523e87ca1884db4203eac09d23c246c1dfa01c5f828d595d03f88241ba4bf80b9cd7b5c62ebffc43e497bebd04144f80d5aefed -srcfiles size=7 - RELOC/source/latex/bhcexam/BHCexam.dtx - RELOC/source/latex/bhcexam/BHCexam.ins +revision 64093 +shortdesc An exam class for mathematics teachers in China +relocated 1 +longdesc This exam class is specially designed for mathematics teachers +longdesc in China. It is used by mathcrowd.cn (an opensource math exam +longdesc database) as the default class for exporting exam papers to +longdesc pdf. Using BHCexam you can separate the format and the content +longdesc very well; export both teacher paper and student paper; typeset +longdesc multiple choice questions with 3-6 options keeping adaptively +longdesc neat alignment; typeset cloze questions with a customizable +longdesc underline; typeset questions with subquestions in lists; group +longdesc questions in a list to control whether to show score, leave +longdesc spacing, initialize question number; and more (see BHCexam +longdesc Documentation). +containersize 4168 +containerchecksum 7244442c52f57270055fad1ec87b00bb0f3ff4c89e37b57be051b29046348dc781e42b156186310d58eceb1ee9d4ff2fe287a3027642fbec3c9c315e00af9c68 +doccontainersize 359312 +doccontainerchecksum 3e16cf4f60c089a21d8e2d0a9c78e8204391ba7bc5a72d7fc23637e0c875a57dd1615b8332f6fea9c5a9bcb4fc17c4818bce708998c1c8c71d0d970e9bfdd132 +docfiles size=119 + RELOC/doc/xelatex/bhcexam/README-zh.md details="Readme (Chinese)" language="zh" + RELOC/doc/xelatex/bhcexam/README.md details="Readme (English)" + RELOC/doc/xelatex/bhcexam/examples/To7VxKXpZaOWO5Qq9qzeZGtlwYTwJ5KF.jpg + RELOC/doc/xelatex/bhcexam/examples/example_student_paper.pdf details="Example of use (student paper)" language="zh" + RELOC/doc/xelatex/bhcexam/examples/example_student_paper.tex + RELOC/doc/xelatex/bhcexam/examples/example_teacher_paper.pdf details="Example of use (teacher paper)" language="zh" + RELOC/doc/xelatex/bhcexam/examples/example_teacher_paper.tex + RELOC/doc/xelatex/bhcexam/examples/logo.png + RELOC/doc/xelatex/bhcexam/examples/naive.pdf + RELOC/doc/xelatex/bhcexam/examples/naive.tex + RELOC/doc/xelatex/bhcexam/examples/qrcode.png runfiles size=4 - RELOC/tex/latex/bhcexam/BHCexam.cfg - RELOC/tex/latex/bhcexam/BHCexam.cls -catalogue-also exam -catalogue-ctan /macros/latex/contrib/bhcexam -catalogue-license lppl -catalogue-topics exam -catalogue-version 0.4 + RELOC/tex/xelatex/bhcexam/BHCexam.cls +catalogue-contact-announce https://github.com/mathedu4all/bhcexam/wiki +catalogue-contact-bugs https://github.com/mathedu4all/bhcexam/issues +catalogue-contact-repository https://github.com/mathedu4all/bhcexam +catalogue-ctan /macros/xetex/latex/bhcexam +catalogue-license lppl1.3 +catalogue-topics exam class chinese +catalogue-version 1.7 name bib-fr category Package @@ -35167,7 +36077,7 @@ catalogue-version 1.5 name bib2gls category Package -revision 55811 +revision 65104 shortdesc Command line application to convert .bib files to glossaries-extra.sty resource files longdesc This Java command line application may be used to extract longdesc glossary information stored in a .bib file and convert it into @@ -35184,17 +36094,21 @@ longdesc convertgls2bib can be used to convert existing .tex files longdesc containing definitions (\newglossaryentry etc.) to the .bib longdesc format required by bib2gls. depend bib2gls.ARCH -containersize 1192640 -containerchecksum a4b697b6f4a2b809699081b6992b702b736bb82883a487f58b6b71cbc0e12cbbab5340001fa96e30075a823b4b6a7f37e514fcebb591a950f814658682e2fb2e -doccontainersize 5156296 -doccontainerchecksum 8f6c1e6647ff35cf167072d89af35930d51eb62968643aebbfcc189446d76b10f49d0db270c43b0c787889069decc1ef844d79bae5df38c3619a92904aaff8b1 -docfiles size=1829 +depend glossaries-extra +containersize 1831440 +containerchecksum 009e393b3083a3260642cb36dc463c714689d1b32d07885c9d20092e4f7386d05118c452e6f97001120f70558a69aa58d757ae0998cefe10e164bb172e432fbf +doccontainersize 5545988 +doccontainerchecksum 2a22e662fa0c41581a3c9d9496f97854ea2faa0d01970ab0cc0542048d0ebdcfcbf7ddc7fcf519510d99300eb6634f1c7688874cf02cf6052962d903c5810887 +docfiles size=1971 + texmf-dist/doc/man/man1/bib2gls.1 + texmf-dist/doc/man/man1/bib2gls.man1.pdf + texmf-dist/doc/man/man1/convertgls2bib.1 + texmf-dist/doc/man/man1/convertgls2bib.man1.pdf texmf-dist/doc/support/bib2gls/CHANGES + texmf-dist/doc/support/bib2gls/DEPENDS.txt texmf-dist/doc/support/bib2gls/README.md details="Readme" texmf-dist/doc/support/bib2gls/bib2gls-begin.pdf details="Introductory Guide" - texmf-dist/doc/support/bib2gls/bib2gls.1 texmf-dist/doc/support/bib2gls/bib2gls.pdf details="Package documentation" - texmf-dist/doc/support/bib2gls/convertgls2bib.1 texmf-dist/doc/support/bib2gls/examples/animals.bib texmf-dist/doc/support/bib2gls/examples/bacteria.bib texmf-dist/doc/support/bib2gls/examples/baseunits.bib @@ -35261,19 +36175,20 @@ docfiles size=1829 texmf-dist/doc/support/bib2gls/examples/unaryoperators.bib texmf-dist/doc/support/bib2gls/examples/usergroups.bib texmf-dist/doc/support/bib2gls/examples/vegetables.bib -srccontainersize 1187380 -srccontainerchecksum fbce6911efaf89c5a734c6a56bf9656bdf52f40e795f57e5997a93b1b83b8543b35330368697a7e8054648d52f0814accf57fbe059570903f092abb6182276fa -srcfiles size=689 +srccontainersize 1723124 +srccontainerchecksum da69973053fda82589612813834134837cf9680f4257a6336aed08213df0ff4c34dbef3c7edb833c7987549599cc48ae82dec36bac96dda003e3de3d1422bc6d +srcfiles size=880 texmf-dist/source/support/bib2gls/src/bib2gls-begin.tex texmf-dist/source/support/bib2gls/src/bib2gls-cite.bib texmf-dist/source/support/bib2gls/src/bib2gls-src.zip + texmf-dist/source/support/bib2gls/src/bib2gls-terms.bib texmf-dist/source/support/bib2gls/src/bib2gls.bib texmf-dist/source/support/bib2gls/src/bib2gls.pod texmf-dist/source/support/bib2gls/src/bib2gls.tex texmf-dist/source/support/bib2gls/src/convertgls2bib.pod texmf-dist/source/support/bib2gls/src/gls2bib-src.zip texmf-dist/source/support/bib2gls/src/texparser-src.zip -runfiles size=336 +runfiles size=509 texmf-dist/scripts/bib2gls/bib2gls.jar texmf-dist/scripts/bib2gls/bib2gls.sh texmf-dist/scripts/bib2gls/convertgls2bib.jar @@ -35286,7 +36201,7 @@ catalogue-contact-repository https://github.com/nlct/bib2gls catalogue-ctan /support/bib2gls catalogue-license gpl3+ catalogue-topics bibtex-util glossary -catalogue-version 2.7 +catalogue-version 3.2 name bib2gls.aarch64-linux category Package @@ -35328,16 +36243,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/bib2gls bin/armhf-linux/convertgls2bib -name bib2gls.i386-cygwin -category Package -revision 45266 -shortdesc i386-cygwin files of bib2gls -containersize 372 -containerchecksum d9a39f8e3c90e194595e98ea9ad055e52520ca4c81a3d2eb27ec336c18e9c3e5ab6e419659514754267fff72bbc4c7aca06aef3c72f7f5b84758d73fbe9e457d -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/bib2gls - bin/i386-cygwin/convertgls2bib - name bib2gls.i386-freebsd category Package revision 45266 @@ -35388,15 +36293,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/bib2gls bin/universal-darwin/convertgls2bib -name bib2gls.win32 +name bib2gls.windows category Package -revision 45266 -shortdesc win32 files of bib2gls -containersize 712 -containerchecksum 572e79de961689c7e8b4adf77d11c9e7a165a3d001a8a01863e81e4985701dbdde6ebb08bf554b529f9b32fc6778f0e8ac019797241e2860949aaa2cbfaa4c51 -binfiles arch=win32 size=2 - bin/win32/bib2gls.exe - bin/win32/convertgls2bib.exe +revision 65891 +shortdesc windows files of bib2gls +containersize 2368 +containerchecksum bf4c7ce3db9c6895e74d8b77c60aa1b60f4b2e2e3ebb7d46f871950e869458e51679fe82a2d8531801db8936a7a0b5dbdd6bece232e15d34faf622d59a109a1c +binfiles arch=windows size=4 + bin/windows/bib2gls.exe + bin/windows/convertgls2bib.exe name bib2gls.x86_64-cygwin category Package @@ -35450,7 +36355,7 @@ binfiles arch=x86_64-solaris size=2 name bibarts category Package -revision 54080 +revision 64579 shortdesc "Arts"-style bibliographical information relocated 1 longdesc BibArts is a LaTeX package to assist in making bibliographical @@ -35471,11 +36376,11 @@ longdesc creates the bibliography without using MakeIndex or BibTeX. Its longdesc source is not written with any specific operating system in longdesc mind. A summary of contents is in English; the full longdesc documentation is in German. -containersize 27220 -containerchecksum 2e85d46a2d27d1016dc6e304eeb47a1a6927d38cd5105916c61c86415d8fd92ebdb8a48b5fe4b5bb58856202b5d3ade4c0997e238cefcc67a879b27f27cbd27c -doccontainersize 1129924 -doccontainerchecksum 7f77175f1b9cc2dbf9957ebb99d2b471e51965c5861e64c6841e3a88eff033d3a9e0791b93919346b3c0d26c1035482b1e5300be2232b69d988e6a4ee5bd96df -docfiles size=449 +containersize 28592 +containerchecksum df6f803918f6beaa20ddf581bb531c6f9cb488a77262dc075a00e2ab5e8aedc107697c17cdc4b0310702db3b565dcba4fea68fee9b9c0a2d6a9109ce3c8d2ef0 +doccontainersize 1236128 +doccontainerchecksum ec614687a713c8c1542fc8a28aba9bf837eda9c91d63e6236ad021d2eb13d052ab37d078263fc9f25ad3279b7e721cbf39de4cdc94db4c18dd06625e5fe10507 +docfiles size=510 RELOC/doc/latex/bibarts/COPYING RELOC/doc/latex/bibarts/README.txt details="Readme" RELOC/doc/latex/bibarts/ba-short.pdf details="Package short documentation" @@ -35483,20 +36388,194 @@ docfiles size=449 RELOC/doc/latex/bibarts/bibarts.pdf details="Package documentation" language="de" RELOC/doc/latex/bibarts/bibarts.tex RELOC/doc/latex/bibarts/bibsort.exe -srccontainersize 37824 -srccontainerchecksum 724de91be680017f04a2255e25cd3158c5fdff39ae1684ccdba2421010155ea9e2fbedd4ca1baecc8a56514c5b8fdfb964fddfc0b14d9e48a649d4e7da8eeee3 -srcfiles size=54 +srccontainersize 49268 +srccontainerchecksum b4d0e27e0bcbfcc140c6a28a5d0f7b9150ce0c8ae07d7a6e96d7669c3f91da5e41e8d52e53f9927a00cbc534694e45dd787ec6786627cba9d81fb841d0aa10d6 +srcfiles size=76 RELOC/source/latex/bibarts/bibsort.c -runfiles size=35 +runfiles size=37 RELOC/tex/latex/bibarts/bibarts.sty catalogue-ctan /macros/latex/contrib/bibarts catalogue-license gpl catalogue-topics bibtex-supp humanities -catalogue-version 2.2 +catalogue-version 2.5 + +name bibcop +category Package +revision 65816 +shortdesc Style checker for .bib files +longdesc This LaTeX package checks the quality of your .bib file and +longdesc emits warning messages if any issues are found. For this, the +longdesc TeX processor must be run with the --shell-escape option, and +longdesc Perl must be installed. bibcop.pl can also be used as a +longdesc standalone command line tool. The package does not work on +longdesc Windows. +depend bibcop.ARCH +depend iexec +depend pgfopts +containersize 6464 +containerchecksum a035642f1b1827f0b6b4d15b4115054b9ab3ff49d7d369f3e304cab5964a707b23865b837c6b156b913e33fe8ae5589941e6ff284ee0b62454a9eb8ec77f3442 +doccontainersize 355000 +doccontainerchecksum 93abe6f0a97138237d7546d132385069f8ff8a638a31cf9be23619b812fa578af808e6f9ce04c06778a4559b1eef98b7d24a0ce5ce6eb5ca9680fc2ddbf7c4b8 +docfiles size=94 + texmf-dist/doc/bibtex/bibcop/DEPENDS.txt + texmf-dist/doc/bibtex/bibcop/LICENSE.txt + texmf-dist/doc/bibtex/bibcop/README.md details="Readme" + texmf-dist/doc/bibtex/bibcop/bibcop-logo.pdf + texmf-dist/doc/bibtex/bibcop/bibcop.pdf details="Package documentation" + texmf-dist/doc/man/man1/bibcop.1 + texmf-dist/doc/man/man1/bibcop.man1.pdf +srccontainersize 5628 +srccontainerchecksum 42a5b9a9f058afa6a1460a3a7c6f7dc9ded6abbd8915529f8366d2df9c2871727bc766a407d2dbbb6716420da7115af5bc2795b343c974f2bf0e1d673d8e96f3 +srcfiles size=5 + texmf-dist/source/bibtex/bibcop/bibcop.dtx + texmf-dist/source/bibtex/bibcop/bibcop.ins +runfiles size=6 + texmf-dist/scripts/bibcop/bibcop.pl + texmf-dist/tex/latex/bibcop/bibcop.sty +catalogue-contact-repository https://github.com/yegor256/bibcop +catalogue-ctan /biblio/bibtex/utils/bibcop +catalogue-license mit +catalogue-topics biblio-supp ext-code +catalogue-version 0.0.9 + +name bibcop.aarch64-linux +category Package +revision 65257 +shortdesc aarch64-linux files of bibcop +containersize 340 +containerchecksum 19c5de0a7a76decd0bf3ae98e97c457bf5e4eab68eb3c3aa8e01a1b45b37dec34cf8009190b09970ae97494dae2c9e7a47d9978c94174a09c64f38f0849abaff +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/bibcop + +name bibcop.amd64-freebsd +category Package +revision 65257 +shortdesc amd64-freebsd files of bibcop +containersize 340 +containerchecksum 57b37d41bdfcfaa879657efeb4987395ac4f8545bc436adc635298f1dc3b66e524f3cb5b989f8457aba360daa83a93aa11380815cee9fe6f9cbf668ddc884547 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/bibcop + +name bibcop.amd64-netbsd +category Package +revision 65257 +shortdesc amd64-netbsd files of bibcop +containersize 340 +containerchecksum ec558ed1597467f2cec593ce6f7a77725fd665996db487246fc7c7dad6529cc9173373753ae3c68c928da895d11677d059c179279577a636e72561c78c75d7e5 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/bibcop + +name bibcop.armhf-linux +category Package +revision 65257 +shortdesc armhf-linux files of bibcop +containersize 340 +containerchecksum e611f17520ca326a971f2d257d9536fc8e81247e632968d941c91538fbc305961c4b4c3e5c1f84672cda91604235b266ea4863029d2cb98f376aa8933f0f0c71 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/bibcop + +name bibcop.i386-freebsd +category Package +revision 65257 +shortdesc i386-freebsd files of bibcop +containersize 340 +containerchecksum eec4abca10ff830967c211a7bf3a4fefa1b97c01c6d38a80b8db021cbd5cb1948c60d4be322bdcd54f0db84b8d8533d13ff6f0f59b9baa0872b7bf59f12ded2e +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/bibcop + +name bibcop.i386-linux +category Package +revision 65257 +shortdesc i386-linux files of bibcop +containersize 340 +containerchecksum 5e949deacb4aebea5c7d1f6696a5a11ca8e14dc7c51c7ffc83b8773e24972f4d577ab328c318c7182924f751017cd62a9063cc5e90d39d26f6534579cde54d51 +binfiles arch=i386-linux size=1 + bin/i386-linux/bibcop + +name bibcop.i386-netbsd +category Package +revision 65257 +shortdesc i386-netbsd files of bibcop +containersize 340 +containerchecksum b509367707abca16f30e166b5fac033b4f4545aec62cc6020df9a151c15e031ede9c57643d75688f2d9d32cb5871aae081d69ba490cc8d04c1cb9d68ad054586 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/bibcop + +name bibcop.i386-solaris +category Package +revision 65257 +shortdesc i386-solaris files of bibcop +containersize 340 +containerchecksum 28d69ddb378189547f553d3069fdda932be33e9b136a57d9766880d3cf8a6b027a6fec0b1b551ae9916f78389401262e9a61ae1b69334898d23117c33c086c99 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/bibcop + +name bibcop.universal-darwin +category Package +revision 65257 +shortdesc universal-darwin files of bibcop +containersize 340 +containerchecksum 1c1221f1141a99595785bceb2282f6a494b612e00d8369bf92d1eaff10ca63ea9e88ef0fe9a6ab8a60b5de11e3fd0daf91c223dc034915e40bee4e0cbdde7e67 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/bibcop + +name bibcop.windows +category Package +revision 65891 +shortdesc windows files of bibcop +containersize 2304 +containerchecksum a4d2ed20f64183db24412b66c0315071540d96b74d1454b9d1b36b54e2daa4831517a4d075b2a394d2a27198ffd5545b9c5a7c4223cbf278434fcf93b15105d4 +binfiles arch=windows size=2 + bin/windows/bibcop.exe + +name bibcop.x86_64-cygwin +category Package +revision 65257 +shortdesc x86_64-cygwin files of bibcop +containersize 340 +containerchecksum 147bed9a60991c143e55627d20c6141e547628b3f62ed8efac2ccd9509234e83db3957ce7856443fdbcd1a817b9b22e02e7413029f501818b9cf7e9b500c5107 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/bibcop + +name bibcop.x86_64-darwinlegacy +category Package +revision 65257 +shortdesc x86_64-darwinlegacy files of bibcop +containersize 348 +containerchecksum b8d8a357ada35e03a1c80c1a44b3fb387e3a2889cdf93ddb32814e4c0431915d3c906c8aed5eddac4a429d5269bd609524362c17ac071f09fc695d4960010290 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/bibcop + +name bibcop.x86_64-linux +category Package +revision 65257 +shortdesc x86_64-linux files of bibcop +containersize 340 +containerchecksum 63d48c745e0df27f54a2a8a2a51623f3ebe057e5a7b79e71801dfbfbeb1583ff0536d663af440ea2f052846e04d120b821bd8986bca2ba1e20bce84eec5c0b4a +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/bibcop + +name bibcop.x86_64-linuxmusl +category Package +revision 65257 +shortdesc x86_64-linuxmusl files of bibcop +containersize 344 +containerchecksum 7f691a245062f9fc78571476d97e7a4c69ef0b2c0b8e92916fed52f0589be48e11a0272b121fdbd6ec17b7cf2070602cc6018f82872811104095baed41283ff5 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/bibcop + +name bibcop.x86_64-solaris +category Package +revision 65257 +shortdesc x86_64-solaris files of bibcop +containersize 336 +containerchecksum 76b51d37d8b2872b8213d2aea58849af1e1e2d658a19d7e00a40038d85c75a66275efbc3cc280922bcea565fcdf61655a023cee1bb688e52dc901270eee678cf +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/bibcop name biber category Package -revision 57273 +revision 66455 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 @@ -35508,16 +36587,22 @@ longdesc biber is formally named "biblatex-biber", to distinguish it longdesc from an earlier (now apparently moribund) project called longdesc "biber". depend biber.ARCH -containersize 732 -containerchecksum 85c07705dda6e4dac7fb3d3fcafaa156abee84f19ce8652b71787ef5a631ba4519ca35a34c8d0d83f90b8f14c583f83f820add220d0f764c19d1abf4c3b7a3db -doccontainersize 262140 -doccontainerchecksum 9d86fe6df7fe33221259395aac86729708481ee5222868a455153e7976c91c48a9469a9813bb0decb83c7eba2a3ec408150ec47533f9a41c974587415266f6e2 -docfiles size=66 +containersize 736 +containerchecksum 12c2336d1c9b3e62f0e79c48ad70feff0b4c03d7ae4af99d56233e9ef4edc39fe83649e07fa9a82b2034eda48e0cca9cd18bc102296e003a23f7a61af0e27607 +doccontainersize 267448 +doccontainerchecksum c318a45dcdcbe4f1ca2f55feca28bc8a46d69c6887e5314eed5c2a6a12d5f26660680605332b83f0aaecda0619f6b2a63bd1ddd2208a2ab675b2f412c2cb6352 +docfiles size=67 texmf-dist/doc/bibtex/biber/biber.pdf details="Manual" -srccontainersize 930660 -srccontainerchecksum 396398323e6e9ee4df904a827bab9b246e6fbba15033076cbbc3a63e4443641f81c19646a4145c0c0fae38af37f54a5fd2166799685f39183d349c8273d13459 -srcfiles size=290 +srccontainersize 963828 +srccontainerchecksum 48e16dd29244a77455885e9565e13fbf04fadd08df44f2ae0d6291cd1fa1b2313e6c1552c3e767fbe316e93739d339a2481ad349ceda1ad269ca89bdbb0dc9e6 +srcfiles size=307 texmf-dist/source/bibtex/biber/Changes + texmf-dist/source/bibtex/biber/README.biber-cygwin + texmf-dist/source/bibtex/biber/README.biber-freebsd + texmf-dist/source/bibtex/biber/README.biber-linux + texmf-dist/source/bibtex/biber/README.biber-linux-musl + texmf-dist/source/bibtex/biber/README.biber-macos + texmf-dist/source/bibtex/biber/README.biber-windows texmf-dist/source/bibtex/biber/README.md texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz texmf-dist/source/bibtex/biber/utf8-macro-map.html @@ -35525,108 +36610,176 @@ catalogue-also bibtex crosstex biblatex catalogue-contact-bugs https://github.com/plk/biber/issues catalogue-contact-home http://biblatex-biber.sourceforge.net/ catalogue-contact-repository https://github.com/plk/biber -catalogue-ctan /biblio/biber +catalogue-ctan /biblio/biber/base catalogue-license artistic2 catalogue-topics biblio -catalogue-version 2.16 +catalogue-version 2.19 + +name biber-ms +category Package +revision 66478 +shortdesc A BibTeX replacement for users of BibLaTeX (multiscript version) +longdesc This is the multiscript version of biber (biber-ms) and must be +longdesc used with the multiscript version of biblatex-ms +depend biber-ms.ARCH +containersize 504 +containerchecksum 8e78b381978835ea25e8a973fea35a653f37a23e4ab3f0a83f26808f142e4b2a91ce61ab230f7667b222af249bbbae08b40256cb82fb8ddf39c89b7dd042c3e8 +doccontainersize 261024 +doccontainerchecksum 82bbadac2732d19b750cbc9ffd76c9a26409837b0e1b9396d405b9a64a2e5e9997fc11c53d8d399f815bc822feb1ba3fe9fcb50c8e9401ef7b2c9790450ab784 +docfiles size=65 + texmf-dist/doc/bibtex/biber-ms/biber-ms.pdf details="Manual" +srccontainersize 957432 +srccontainerchecksum 9c15f088c5c97d63b928ef10a8d1f0a628874ad664182b631e5a52407b1a034bea478fdbe1c287ddb703fd9c9d3d84a8bdb47ea09d6de25ad99aa1ef8e227fcd +srcfiles size=303 + texmf-dist/source/bibtex/biber-ms/Changes + texmf-dist/source/bibtex/biber-ms/README.biber-ms-linux + texmf-dist/source/bibtex/biber-ms/README.biber-ms-macos + texmf-dist/source/bibtex/biber-ms/README.biber-ms-windows + texmf-dist/source/bibtex/biber-ms/README.md + texmf-dist/source/bibtex/biber-ms/biblatex-biber-ms.tar.gz + texmf-dist/source/bibtex/biber-ms/utf8-macro-map.html +catalogue-also bibtex crosstex biblatex +catalogue-contact-bugs https://github.com/plk/biber/issues +catalogue-contact-home http://biblatex-biber.sourceforge.net/ +catalogue-contact-repository https://github.com/plk/biber +catalogue-ctan /biblio/biber-ms/base +catalogue-license artistic2 +catalogue-topics biblio +catalogue-version 4.0-1 + +name biber-ms.i386-linux +category Package +revision 66478 +shortdesc i386-linux files of biber-ms +containersize 21092632 +containerchecksum 32f15eeffa51ba3908001354403c1561db230fbed43ab7bfb9b8cf489a04221d409058b50a51fe0ef6682622a0db445705b7e69acd2fd2c0973d7afb3c4a8286 +binfiles arch=i386-linux size=6563 + bin/i386-linux/biber-ms + +name biber-ms.universal-darwin +category Package +revision 66478 +shortdesc universal-darwin files of biber-ms +containersize 87344272 +containerchecksum 894a62e1d5af13d73b7d3785da5f1a860704559141ebf3ecddf29875266effc51a97f7dffbb335ecbee303e332281b8118522f7a839cee6bd445c81216a3f464 +binfiles arch=universal-darwin size=24679 + bin/universal-darwin/biber-ms + +name biber-ms.windows +category Package +revision 66478 +shortdesc windows files of biber-ms +containersize 24391288 +containerchecksum 9ca156ea27684f76cd0499330957344587642efa6e8a53bec7c8b060ad6a959c7d2fb2a61087d461c79162e9870e187f3aa70c208de1174f0ee77e63913ee678 +binfiles arch=windows size=7750 + bin/windows/biber-ms.exe + +name biber-ms.x86_64-darwinlegacy +category Package +revision 66478 +shortdesc x86_64-darwinlegacy files of biber-ms +containersize 35440820 +containerchecksum f987bff49bcbc124f32613b2cf29ab8d37965df0ae9c1364ef679abdaafd9a83dc62f13c12de2d82472cc02ef3e43c65db1138d1e52956ce2c986be0ee9a5ccc +binfiles arch=x86_64-darwinlegacy size=10220 + bin/x86_64-darwinlegacy/biber-ms + +name biber-ms.x86_64-linux +category Package +revision 66478 +shortdesc x86_64-linux files of biber-ms +containersize 23549792 +containerchecksum 1247c452335256824008809f473363a2450d0d982e1404ee1954d1d0e1eccf65cd536a17b4313e5fe4398ed2b8e0185071207216230d69eb8934c0389137f8e3 +binfiles arch=x86_64-linux size=7333 + bin/x86_64-linux/biber-ms name biber.amd64-freebsd category Package -revision 57273 +revision 66588 shortdesc amd64-freebsd files of biber -containersize 22778016 -containerchecksum e60c5b49e68713777afce2ac5ed955d4bc74e610bbd2f030721a1b800c179d083db630f703d8b3940d2d03594cd689c91347461b775ee249cb57bafe632b77e2 -binfiles arch=amd64-freebsd size=7110 +containersize 23394672 +containerchecksum 8592849d87831f1a5f4f694bd21d5465cb6ccf5434c97e1f1d48ce58297fb3dd2f5cd1b36adb856a433b4c3977beca3d6640efa97c01c99cc8dfb0bfdc752309 +binfiles arch=amd64-freebsd size=7291 bin/amd64-freebsd/biber -name biber.i386-cygwin -category Package -revision 57273 -shortdesc i386-cygwin files of biber -containersize 17180072 -containerchecksum ee2725f6cadcd6158030ad568062aac75f06b6e6a0bd1b519b96d3fd08d38e12c2ee22ed4ab4074c9d02ca2813e315e3fa8de1ca1bf0587addbef703dbcb479a -binfiles arch=i386-cygwin size=5576 - bin/i386-cygwin/biber.exe - name biber.i386-freebsd category Package -revision 57273 +revision 66588 shortdesc i386-freebsd files of biber -containersize 20865460 -containerchecksum 6df95de8874d1dcb008ff55973a53c7954cc9ce9fdc2c26826f32977dcc45df2628884507ae1c57cb41684c47ab55c58fb05f690dcee471162d16250ff69610d -binfiles arch=i386-freebsd size=6449 +containersize 21468376 +containerchecksum c41444defef8d72aeacf30aabefe705fc3a34fe9afbad6f6f5eb4c1d93f3051773ee874d1000ca9dd3f116850a4ecfe5739875d6726bb907ea394c2a66d389ab +binfiles arch=i386-freebsd size=6629 bin/i386-freebsd/biber name biber.i386-linux category Package -revision 57273 +revision 66402 shortdesc i386-linux files of biber -containersize 20747804 -containerchecksum 4e9660e7e126c0c44f26dc60bc4bf46d185d08b82ab15aa01044fab2a7aedf6f093b9d84d5be7ff04868fb857a8692042e982543fe2070ad29933dd9cb697fff -binfiles arch=i386-linux size=6428 +containersize 21085868 +containerchecksum 97c8b436084043a053f684eb2e2ec4150e21dacc4630cd317418ba5f039ecda118d1cea7014a3eb715f10c4797d63cadaf9a632574dd5292a235aeeaca4782a2 +binfiles arch=i386-linux size=6561 bin/i386-linux/biber name biber.universal-darwin category Package -revision 57936 +revision 66402 shortdesc universal-darwin files of biber -containersize 33809312 -containerchecksum a5740339207955934a1eed59e55ae92920ff1f4c4cf3c9c8e0ee311e0633d53f589829372895298c09f3e1f4932e414769eb011c5a8609544a59c0e6bcb462ef -binfiles arch=universal-darwin size=9829 +containersize 87334336 +containerchecksum 335056dc1b1b3c472e76b46afa772f38a0e6ec01dc8b022e7e71f51993cd3e27285de9f55c986b561a5c654e9121d7d2fdc0e78b4d18ddebad4a3664738c24b1 +binfiles arch=universal-darwin size=24677 bin/universal-darwin/biber -name biber.win32 +name biber.windows category Package -revision 57273 -shortdesc win32 files of biber -containersize 22825312 -containerchecksum 1b4f61a229a31a3b4bff6c013f682d086d158ca423cb1752b5e3dbdd1cabe6504e25824b3f135e8349702c5b57f072b9ca0f0703e9ecab010d32675b04958666 -binfiles arch=win32 size=7288 - bin/win32/biber.exe +revision 66402 +shortdesc windows files of biber +containersize 24383064 +containerchecksum bf3536f19ce56e759d3d2dcbdc162b935a4b33920e650ec3def2a8a9451ed2a79188fbc98a0de6ae80ecd53185124a66307cd40678892790200507c4108d5671 +binfiles arch=windows size=7749 + bin/windows/biber.exe name biber.x86_64-cygwin category Package -revision 57273 +revision 66402 shortdesc x86_64-cygwin files of biber -containersize 17320996 -containerchecksum da1b9dce9beb8834b0b343032885ce7917f5c0313ac1e2d0848b99e6076ec822be4a199215122993d78a4eb9dec5b0150d227b638f5ae6312963d3b4af4e93af -binfiles arch=x86_64-cygwin size=5589 +containersize 17056788 +containerchecksum c845ace53674e92247cd9b11a12ae57855cd9a1d06571df8b1053c2f1b9bb9f5d994ca946b886f81a36e6b05d45355ca67ca6851329efd9a9cd6f132cbd663d6 +binfiles arch=x86_64-cygwin size=5523 bin/x86_64-cygwin/biber.exe name biber.x86_64-darwinlegacy category Package -revision 57273 +revision 66402 shortdesc x86_64-darwinlegacy files of biber -containersize 34908476 -containerchecksum b38f7bac193f7268d6e6534710251677eb9c0ff21d946c93fb55888dfd61c877a4031503a0dfc8e77a8a053573be57e6940f9744ca88d146449abb4d18db179b -binfiles arch=x86_64-darwinlegacy size=10089 +containersize 35433560 +containerchecksum 98aba6839b0361fd7a0ef5ec1b1cc8d284a65c5352c4e058ae80ec5339c5bff7f8869afeb91a57f00811017dbc77f99c6507984100e59cfec9ee1f9e22e3aaee +binfiles arch=x86_64-darwinlegacy size=10218 bin/x86_64-darwinlegacy/biber name biber.x86_64-linux category Package -revision 57273 +revision 66402 shortdesc x86_64-linux files of biber -containersize 23537584 -containerchecksum 292be9f33f60fed0c1a333a5f6eb69fd9d9adb12733996c56f12c8b4eef1e24c8968504b5a219a27eba5f9db82e81d329a3f46a2ac6843203b1375145b8ec32b -binfiles arch=x86_64-linux size=7330 +containersize 23543552 +containerchecksum 9f071b536461e23ffd1be808ccb84b61b5f0ead69182009186797897001eba32183a1a70a744b2bbe87cb1699520532ac678eca91575c353b2c7c26df270a41f +binfiles arch=x86_64-linux size=7332 bin/x86_64-linux/biber name biber.x86_64-linuxmusl category Package -revision 57273 +revision 66455 shortdesc x86_64-linuxmusl files of biber -containersize 18684604 -containerchecksum 9b934c5ce392647907ee469873240a7d7d172a8dd5ea639ab8ff09c92872516e1e778b60c5f23c6c4830e7a908dee69d2f529e59c24b95d72cdd0b6846423542 -binfiles arch=x86_64-linuxmusl size=6102 +containersize 18436136 +containerchecksum 2ae3451bc42cae1bf3218eb4fdbf6f47a97c09737a804a65d88d4973659000535d1b1b68002063bec2d8cff92bac0ac5105fe31bfb61342a48a2491224fa37a9 +binfiles arch=x86_64-linuxmusl size=5929 bin/x86_64-linuxmusl/biber name biber.x86_64-solaris category Package -revision 57273 +revision 63707 shortdesc x86_64-solaris files of biber -containersize 21923872 -containerchecksum 3731072dbad9236438d836719643f256fbafcfb8d15d4f404a70f70f4f4cc0d3947a5576368c8d8dc558375b2344794e4a830dcfa565269e3c63e01f70a8aea1 -binfiles arch=x86_64-solaris size=7071 +containersize 21943332 +containerchecksum 0bcf85df4e015f82ef465cc6e7c0e2ad8791841e17e77ef19918d8a67ebb511192363cc753c48b50ec479abc22eb8dab25e6af8b47df7803b02c619b5e6a8a73 +binfiles arch=x86_64-solaris size=7075 bin/x86_64-solaris/biber name bibexport @@ -35697,15 +36850,6 @@ containerchecksum 2d270358c28ab658d15e60453c57b7c2e73e64f62f59f1577ea5b40ea273bd binfiles arch=armhf-linux size=1 bin/armhf-linux/bibexport -name bibexport.i386-cygwin -category Package -revision 16219 -shortdesc i386-cygwin files of bibexport -containersize 340 -containerchecksum cd74c7a9be5e28583242c47087cd4d27e05d38082329998ee339eb6c1614046b42ce957bd791a23a9b6ba1f7b2f174f54fd843e113d478a99518ef99aedfe7da -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/bibexport - name bibexport.i386-freebsd category Package revision 16484 @@ -35840,7 +36984,7 @@ catalogue-version 2.0.2 name biblatex category Package -revision 57272 +revision 66403 shortdesc Sophisticated Bibliographies in LaTeX relocated 1 longdesc BibLaTeX is a complete reimplementation of the bibliographic @@ -35879,11 +37023,11 @@ depend kvoptions depend logreq depend pdftexcmds depend url -containersize 243000 -containerchecksum 9d8fbb720f69afabb42ff17287ba61760d910b40c4b90923bf46fa0aa9e6eeb188cbf09f533f0916af145a361702387fce95ece74feb3a535d6409a3fb39f684 -doccontainersize 7209940 -doccontainerchecksum c81fd0590e7662c7887274effc3e1e0badf0d0c67fc44f32abf8c8da3426549a1adbf6703fbd530e595a2cfedbc4a5a089c703f3a542ec0416705839ad093bd5 -docfiles size=4887 +containersize 254400 +containerchecksum e07cd6233021bbe2f3591f866c3b3eeae083574f705da9505f6bcbb7284c243ac7f24440253c4557f0a300e9995188bf5915a42643e63eb80ff9e0fa4ffaff1c +doccontainersize 7331324 +doccontainerchecksum f765e31a89e4deaa9578b30aa206d8f26ae7b3545a6575a5a28758263fc45eae6c5d3b5aa1233f3000f731ebed104180cf79fd051b47a79699c89305d626d0ed +docfiles size=4999 RELOC/doc/latex/biblatex/CHANGES.md details="Release notes for current version" language="en" RELOC/doc/latex/biblatex/README details="Readme" language="en" RELOC/doc/latex/biblatex/biber/bltxml/biblatex-examples.bltxml @@ -36043,7 +37187,7 @@ docfiles size=4887 RELOC/doc/latex/biblatex/examples/97-annotations.tex RELOC/doc/latex/biblatex/examples/biblatex-examples.bib RELOC/doc/latex/biblatex/examples/biblatex-examples.bltxml -runfiles size=593 +runfiles size=626 RELOC/bibtex/bib/biblatex/biblatex/biblatex-examples.bib RELOC/bibtex/bst/biblatex/biblatex.bst RELOC/tex/latex/biblatex/bbx/alphabetic-verb.bbx @@ -36139,6 +37283,7 @@ runfiles size=593 RELOC/tex/latex/biblatex/lbx/latvian.lbx RELOC/tex/latex/biblatex/lbx/lithuanian.lbx RELOC/tex/latex/biblatex/lbx/magyar.lbx + RELOC/tex/latex/biblatex/lbx/marathi.lbx RELOC/tex/latex/biblatex/lbx/naustrian.lbx RELOC/tex/latex/biblatex/lbx/newzealand.lbx RELOC/tex/latex/biblatex/lbx/ngerman.lbx @@ -36148,6 +37293,7 @@ runfiles size=593 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/romanian.lbx RELOC/tex/latex/biblatex/lbx/russian.lbx RELOC/tex/latex/biblatex/lbx/serbian.lbx RELOC/tex/latex/biblatex/lbx/serbianc.lbx @@ -36167,7 +37313,7 @@ catalogue-contact-repository https://github.com/plk/biblatex.git catalogue-ctan /macros/latex/contrib/biblatex catalogue-license lppl1.3 catalogue-topics biblio biblatex etex -catalogue-version 3.16 +catalogue-version 3.19 name biblatex-abnt category Package @@ -36274,7 +37420,7 @@ catalogue-version 2.6.2 name biblatex-apa category Package -revision 56208 +revision 63719 shortdesc BibLaTeX citation and reference style for APA relocated 1 longdesc This is a fairly complete BibLaTeX style (citations and @@ -36286,10 +37432,10 @@ longdesc every citation and reference example in the APA 7th edition longdesc style guide. This version of the package requires use of longdesc csquotes [?]4.3, BibLaTeX [?]3.4, and the biber backend for longdesc BibLaTeX [?]2.5. -containersize 24868 -containerchecksum 59ffdb263b02b4934955037f377164297871b10ab3794dd8a11b70cecaf9e773bdd2b3b2aef24d5085672614a51956ed8083866c6f56c72a8c8eb4c1ef6a775a -doccontainersize 322056 -doccontainerchecksum eec8f6cfd0244639f91142b3ac45be28eae14e10881a549d97f0711235cc46b6c25983f0d7742ec1c8894dc8c3c189070138874a6215f630f5e3fb710516290f +containersize 29584 +containerchecksum cceda3efc358f1cb2ea6e8c19063e3a2568e1a7569f6d18a10db5db69347a8fce01cf1a2e811af35b8905f096527783f5c62a875978c807f2860eb2e123d0de6 +doccontainersize 322904 +doccontainerchecksum cf7ef8e8998b7be34c115d71a8c832724277baf775a03313e5e4bb906be140eb996dde8852d95e46950c9ba9d725cfd08e51177e2e3c133f8e1ea8977f71df16 docfiles size=114 RELOC/doc/latex/biblatex-apa/README details="Readme" RELOC/doc/latex/biblatex-apa/biblatex-apa-test-citations.bib @@ -36298,7 +37444,7 @@ docfiles size=114 RELOC/doc/latex/biblatex-apa/biblatex-apa-test.tex RELOC/doc/latex/biblatex-apa/biblatex-apa.pdf details="Package documentation" RELOC/doc/latex/biblatex-apa/biblatex-apa.tex -runfiles size=102 +runfiles size=115 RELOC/tex/latex/biblatex-apa/american-apa.lbx RELOC/tex/latex/biblatex-apa/apa.bbx RELOC/tex/latex/biblatex-apa/apa.cbx @@ -36306,9 +37452,11 @@ runfiles size=102 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/catalan-apa.lbx RELOC/tex/latex/biblatex-apa/danish-apa.lbx RELOC/tex/latex/biblatex-apa/dutch-apa.lbx RELOC/tex/latex/biblatex-apa/english-apa.lbx + RELOC/tex/latex/biblatex-apa/finnish-apa.lbx RELOC/tex/latex/biblatex-apa/french-apa.lbx RELOC/tex/latex/biblatex-apa/galician-apa.lbx RELOC/tex/latex/biblatex-apa/german-apa.lbx @@ -36326,6 +37474,7 @@ runfiles size=102 RELOC/tex/latex/biblatex-apa/spanish-apa.lbx RELOC/tex/latex/biblatex-apa/swedish-apa.lbx RELOC/tex/latex/biblatex-apa/swissgerman-apa.lbx + RELOC/tex/latex/biblatex-apa/turkish-apa.lbx catalogue-contact-announce https://github.com/plk/biblatex-apa/wiki catalogue-contact-bugs https://github.com/plk/biblatex-apa/issues catalogue-contact-home https://github.com/plk/biblatex-apa @@ -36333,7 +37482,7 @@ catalogue-contact-repository https://github.com/plk/biblatex-apa.git catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-apa catalogue-license lppl1.3c catalogue-topics apa biblatex psychology journalpub -catalogue-version 9.14 +catalogue-version 9.16 name biblatex-apa6 category Package @@ -36906,26 +38055,26 @@ catalogue-version 1.2 name biblatex-bath category Package -revision 57924 +revision 63401 shortdesc Harvard referencing style as recommended by the University of Bath Library relocated 1 longdesc This package provides a BibLaTeX style to format reference longdesc lists in the Harvard style recommended by the University of longdesc Bath Library. -containersize 7792 -containerchecksum d88e903aaa1535f662a90d993491fd94e8af55a14ad226890b8beb65395383c2b92c8c362fb21483519998f5e1b9bae088a215992fef4336af04ebf3e49e23b6 -doccontainersize 363100 -doccontainerchecksum a22433cf6a0255f1a50cc59cae09b9c84150d4859694334b395d6fcddaa16b38923a8873dbd48e07433dbc4edf68a97dd8dcf65b13239b689dd9066f8e959520 -docfiles size=96 +containersize 10012 +containerchecksum 38075fd9040bad99fc95860f503173aa9be430317194c28fccc9ed385d7d596e9f738a436753c6d963b53fbaa714301fd2d92aa33d2ef6ce4cb6b902fa0923b0 +doccontainersize 454200 +doccontainerchecksum e9005a72487eb7d1b4e5e7e8c024c65e2846435c8489d8766218ca6a2e77e902917a038491b9d6f1117db402397226b7c0f91805b25a9cb62ca90782ef15e8df +docfiles size=120 RELOC/doc/latex/biblatex-bath/README.md details="Readme" RELOC/doc/latex/biblatex-bath/biblatex-bath.bib RELOC/doc/latex/biblatex-bath/biblatex-bath.pdf details="Package documentation" -srccontainersize 29312 -srccontainerchecksum b79156a217b8c1eb9b5a4be100f87d80694c20fb48d84dcd3a631b871c95d8afb1dd428ec0591eb2f0a38421b699bbbe8d3f3c98500929982bd0ce57c49d1d62 -srcfiles size=33 +srccontainersize 34796 +srccontainerchecksum 1b6d136c520ec2f6db1fa99f278b0ca1a8d5b552a634012e772ed562296c1eeed1b84171ec64a4a79fe116a939108001ddc0b498f0768b0687fa45f7ca3f987b +srcfiles size=43 RELOC/source/latex/biblatex-bath/Makefile RELOC/source/latex/biblatex-bath/biblatex-bath.dtx -runfiles size=16 +runfiles size=22 RELOC/tex/latex/biblatex-bath/bath.bbx RELOC/tex/latex/biblatex-bath/bath.cbx RELOC/tex/latex/biblatex-bath/bath.dbx @@ -36937,7 +38086,7 @@ catalogue-contact-home https://github.com/alex-ball/bathbib catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bath catalogue-license lppl1.3c catalogue-topics biblatex -catalogue-version 4.0 +catalogue-version 6.0 name biblatex-bookinarticle category Package @@ -37055,17 +38204,17 @@ catalogue-version 0.02 name biblatex-caspervector category Package -revision 56837 +revision 64866 shortdesc A simple citation style for Chinese users relocated 1 longdesc The package provides a simple and easily extensible longdesc biblography/citation style for Chinese LaTeX users, using longdesc BibLaTeX. -containersize 4396 -containerchecksum d3e8c56ef35444c740e505cc9ccd3a3e0fc7627de17658f2f83865fe9dd48610a42fb226a0896b642851d4ee8a6e4bdbf070df32eeee047bdca001a8a8e34c94 -doccontainersize 493104 -doccontainerchecksum 076578ca8f7416c698de9f54765ffc95fad9a9d504f78c50648bd1aa3a12132caec3ca067aee94731cdf71af97bbb73f4b85afe477ccf128e587d221fbe5cb4d -docfiles size=138 +containersize 4488 +containerchecksum 803bb26a4abd4c735ea377c3ecf2b3906fb40f692529d54673ccb0cec3711c98563ccbe061a24025fcafb5b39c83a4d29f5e3d1bbd916380ce4396dd9f11a47a +doccontainersize 612376 +doccontainerchecksum fca9d334178ceba7777055a3b9b98ccef673dc6d94812abde55d3d826db244eeff36dcc4e1b2157af10a0980e9f9f00a5c4d5b0c59a1d1e26f863708dd8cd6e4 +docfiles size=167 RELOC/doc/latex/biblatex-caspervector/ChangeLog.txt RELOC/doc/latex/biblatex-caspervector/README.txt details="Readme" RELOC/doc/latex/biblatex-caspervector/caspervector-ay.pdf @@ -37086,7 +38235,7 @@ catalogue-contact-repository https://gitea.com/CasperVector/biblatex-caspervecto catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-caspervector catalogue-license lppl1.3 catalogue-topics biblatex chinese -catalogue-version 0.3.5 +catalogue-version 0.3.6 name biblatex-cheatsheet category Package @@ -37151,7 +38300,7 @@ catalogue-version 1.1z name biblatex-chicago category Package -revision 58715 +revision 65037 shortdesc Chicago style files for BibLaTeX relocated 1 longdesc This is a BibLaTeX style that implements the Chicago @@ -37161,11 +38310,11 @@ longdesc edition (with continuing support for the 16th edition, too). longdesc The style implements entry types for citing audio-visual longdesc materials, among many others. The package was previously known longdesc as biblatex-chicago-notes-df. -containersize 101696 -containerchecksum 27d9ce6b00b71ebf751a720d42ebb16c3f7d6bba7b494acb3acf2232849342b992aa7fb9de35d7de4c12ef94956aa80be8a5d61366d9ef897257a6c4e26de6d3 -doccontainersize 2828240 -doccontainerchecksum adb23e2fca96e703aef93385c48e82279e411e266b4a0d147be34fbf4b2fc781dd93ed4323b044a51660a94a2fd832f02f5ff16cfe13389b6058805190c881a1 -docfiles size=1067 +containersize 109164 +containerchecksum dd93d36fbe11af94840c9dcd30695f5b291bc5da58b7e30e47960be42094cfb48a31a8d1c24dae41b56420f65b3b5849ad29a558387a9fb38006a9f816932841 +doccontainersize 2707232 +doccontainerchecksum e30297477d9e353bdd073b7afcfac2c890fb255e4c20ccbffea7fb3a3c6593496749f1cef0bb1d38aee649d3b054c844efb47008493f5410895a55b3369672c4 +docfiles size=1047 RELOC/doc/latex/biblatex-chicago/README details="Readme and usage outline" RELOC/doc/latex/biblatex-chicago/RELEASE RELOC/doc/latex/biblatex-chicago/biblatex-chicago.pdf details="Package documentation" @@ -37189,7 +38338,7 @@ docfiles size=1067 RELOC/doc/latex/biblatex-chicago/dates-test.bib RELOC/doc/latex/biblatex-chicago/legal-test.bib RELOC/doc/latex/biblatex-chicago/notes-test.bib -runfiles size=473 +runfiles size=495 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 @@ -37218,13 +38367,15 @@ runfiles size=473 RELOC/tex/latex/biblatex-chicago/cms-norwegian.lbx RELOC/tex/latex/biblatex-chicago/cms-nynorsk.lbx RELOC/tex/latex/biblatex-chicago/cms-romanian.lbx + RELOC/tex/latex/biblatex-chicago/cms-spanish.lbx RELOC/tex/latex/biblatex-chicago/cms-swedish.lbx + RELOC/tex/latex/biblatex-chicago/cms.dbx RELOC/tex/latex/biblatex-chicago/cmsdocs.sty RELOC/tex/latex/biblatex-chicago/cmsendnotes.sty catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago catalogue-license lppl1.3 catalogue-topics biblatex -catalogue-version 2.1 +catalogue-version 2.3a name biblatex-claves category Package @@ -37264,9 +38415,41 @@ catalogue-license lppl1.3 catalogue-topics biblatex catalogue-version 1.2.1 +name biblatex-cv +category Package +revision 59433 +shortdesc Create a CV from BibTeX files +relocated 1 +longdesc This package creates an academic curriculum vitae (CV) from a +longdesc BibTeX .bib file. The package makes use of BibLaTeX/biber to +longdesc automatically format, group, and sort the entries on a CV. +containersize 10060 +containerchecksum d034400abf6c0342a37e6e5de09d5eed252e80cfb93b4707f6e879edf6e190180046d28830fe382a6240d6000bcfb9277a66bf2e21b92ce9fe9deff0596f1c03 +doccontainersize 167160 +doccontainerchecksum 23093f0e8f472eac5db45026266c17b3337d478af6dc1776515417a2539ad671a67dba4ebee9f83407ee4c126cef5a6245106916188093ced89a52c44afba339 +docfiles size=52 + RELOC/doc/latex/biblatex-cv/README.md details="Readme" + RELOC/doc/latex/biblatex-cv/biblatex-cv.bib + RELOC/doc/latex/biblatex-cv/biblatex-cv.pdf details="Package documentation" + RELOC/doc/latex/biblatex-cv/biblatex-cv.tex + RELOC/doc/latex/biblatex-cv/cv.pdf + RELOC/doc/latex/biblatex-cv/cv.tex +runfiles size=17 + RELOC/tex/latex/biblatex-cv/american-cv.lbx + RELOC/tex/latex/biblatex-cv/biblatex-cv.bbx + RELOC/tex/latex/biblatex-cv/biblatex-cv.cbx + RELOC/tex/latex/biblatex-cv/biblatex-cv.dbx + RELOC/tex/latex/biblatex-cv/biblatex-cv.sty +catalogue-contact-bugs https://github.com/danielshub/biblatex-cv/issues +catalogue-contact-home https://github.com/danielshub/biblatex-cv +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-cv +catalogue-license lppl1.3 +catalogue-topics biblatex cv +catalogue-version 0.01 + name biblatex-dw category Package -revision 42649 +revision 66579 shortdesc Humanities styles for BibLaTeX relocated 1 longdesc A small collection of styles for the BibLaTeX package. It was @@ -37280,11 +38463,11 @@ longdesc den Standard-Stilen von BibLaTeX nicht direkt bereitgestellt longdesc werden. Das Paket baut vollstandig auf BibLaTeX auf und kann longdesc nicht ohne BibLaTeX (mindestens in der Version 0.9b) verwendet longdesc werden. -containersize 16432 -containerchecksum faa43e5f4de281747e5cbc22fdcbfb7d03c5c04d68245340e084c4e34f1ff9917c6ccf22a06ae4eefc41f7a5315db15aa8b51f2a8c3ed7c68cd033308fbe99be -doccontainersize 1124296 -doccontainerchecksum d29c64dac41255066a844639e4330193811c62049e4b38600951346d4c126a495fab78458bd322fb3defc4352b765c1a7e7a73b7c64bdfde3a90f3e5a74e4e4c -docfiles size=491 +containersize 16520 +containerchecksum bcfc88a15950bce48844dfdfcaa8cc946d553c9fc31b3820dd52a9f4588c55e253cc593d13b1dda0b38153a21b93a3d9a868398296546f54b5b804c58eebaa1b +doccontainersize 1145720 +doccontainerchecksum 54699b3f4e89bafa89cec29ed14a0ac32269bd52a68dda7916961b50032fba9ad3acadebb1737d8bdffcfa07f99fd104ad3fe19f0a1f569258fb4ceacefcd1ba +docfiles size=509 RELOC/doc/latex/biblatex-dw/CHANGES RELOC/doc/latex/biblatex-dw/LIESMICH details="Readme (German)" language="de" RELOC/doc/latex/biblatex-dw/README details="Readme (English)" language="en" @@ -37316,9 +38499,9 @@ runfiles size=35 RELOC/tex/latex/biblatex-dw/lbx/german-dw.lbx catalogue-contact-home http://biblatex.dominik-wassenhoven.de catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-dw -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics biblatex humanities -catalogue-version 1.7 +catalogue-version 1.7b name biblatex-enc category Package @@ -37349,7 +38532,7 @@ catalogue-version 1.0 name biblatex-ext category Package -revision 58975 +revision 63638 shortdesc Extended BibLaTeX standard styles relocated 1 longdesc The BibLaTeX-ext bundle provides styles that slightly extend @@ -37359,17 +38542,17 @@ longdesc stylistic decisions made in the standard styles. At the same longdesc time they stay as close to their standard counterparts as longdesc possible, so that most customisation methods can be applied longdesc here as well. -containersize 26848 -containerchecksum 5169ab48cfb03c1456fa16f63df4ba8f18dd909cabd247d7159cb9430cea0f16dbc6ce586840e54eff1c044c3a0711df65dd1f45374f53c601f2dcc10bed09ae -doccontainersize 864040 -doccontainerchecksum 4e013851c68bcd2f756f7bc910a048e400af66d40bfa0381a44c497200826ea98467a94429cb62b6c11ee9e75e6d40741453b2963051eee3afb2f2fb18e8c49c -docfiles size=249 +containersize 29188 +containerchecksum f0ece2929a62260440cfba408a9abad4bf023102bac3b75ba3d024af760b9ef55a1378b6b1ae4e4d37cc56d62694e71481a39c7b6d60b9cb25515df96e6179f9 +doccontainersize 874536 +doccontainerchecksum c51a10472697acb229d3cd4484d6d911b4990733824a397854a331c39074e79df8b005b051bd344ffbdc9f0869d9cf63a832a687607763eb56394af5c27b5813 +docfiles size=254 RELOC/doc/latex/biblatex-ext/CHANGES.md RELOC/doc/latex/biblatex-ext/README.md details="Readme" RELOC/doc/latex/biblatex-ext/biblatex-ext-examples.bib RELOC/doc/latex/biblatex-ext/biblatex-ext.pdf details="Package documentation" RELOC/doc/latex/biblatex-ext/biblatex-ext.tex -runfiles size=118 +runfiles size=137 RELOC/tex/latex/biblatex-ext/biblatex-ext-oa-doiapi.sty RELOC/tex/latex/biblatex-ext/biblatex-ext-oa.sty RELOC/tex/latex/biblatex-ext/biblatex-ext-oasymb-l3draw.sty @@ -37381,6 +38564,18 @@ runfiles size=118 RELOC/tex/latex/biblatex-ext/ext-alphabetic-verb.cbx RELOC/tex/latex/biblatex-ext/ext-alphabetic.bbx RELOC/tex/latex/biblatex-ext/ext-alphabetic.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-comp.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-comp.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-ecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-ecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-tcomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-tcomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-tecomp.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-tecomp.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-terse.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber-terse.cbx + RELOC/tex/latex/biblatex-ext/ext-authornumber.bbx + RELOC/tex/latex/biblatex-ext/ext-authornumber.cbx RELOC/tex/latex/biblatex-ext/ext-authortitle-common.bbx RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.bbx RELOC/tex/latex/biblatex-ext/ext-authortitle-comp.cbx @@ -37449,7 +38644,7 @@ catalogue-contact-home https://github.com/moewew/biblatex-ext catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ext catalogue-license lppl1.3c catalogue-topics biblatex -catalogue-version 0.12b +catalogue-version 0.16 name biblatex-fiwi category Package @@ -37497,7 +38692,7 @@ catalogue-version 1.7 name biblatex-gb7714-2015 category Package -revision 58753 +revision 64967 shortdesc A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users relocated 1 longdesc This package provides an implementation of the GBT7714-2015 @@ -37505,19 +38700,29 @@ longdesc bibliography style. This implementation follows the longdesc GBT7714-2015 standard and can be used by simply loading longdesc BibLaTeX with the appropriate option. A demonstration database longdesc is provided to show how to format input for the style. -containersize 39800 -containerchecksum c4bd497d3ea4c27fe8f9382ac54f865da57576b08fadd28e10d93a7dbabb935a877e4c45058f4055dfe319e3e29df3995b8fce7496f12765b9c1c5120943c6a5 -doccontainersize 1602620 -doccontainerchecksum b88722523465025454afa64841f00df9cb8cdfd9aaa81dfa75cdcbc9a7362f980b9d51d874dccda310a0afe5f25f1ad9955dc6ae6317a4d0bba2deb47fda02a5 -docfiles size=569 +containersize 47720 +containerchecksum ede1745a2cdae712e7cab552e25682540fb03a44884b6d488e4af5a43dfd3ed08aa4f75be3fc6f0d777585081073eee18af7b5f942664c8fce0a3c2752d1effc +doccontainersize 1377584 +doccontainerchecksum 724b21b108898ba86cb2738ebb9b4db8348624c09078b166c74cfec3b77c29f878d83a709a0cd0b238583def462af45dbb21e822c00908e0bd9a426f46ee2f79 +docfiles size=535 RELOC/doc/latex/biblatex-gb7714-2015/README.md details="Readme" RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015-preamble.tex RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.pdf details="Package documentation (Chinese)" language="zh" RELOC/doc/latex/biblatex-gb7714-2015/biblatex-gb7714-2015.tex RELOC/doc/latex/biblatex-gb7714-2015/example.bib -runfiles size=162 + RELOC/doc/latex/biblatex-gb7714-2015/gb7714texttobib.pl + RELOC/doc/latex/biblatex-gb7714-2015/makeall.py +runfiles size=197 RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.bbx RELOC/tex/latex/biblatex-gb7714-2015/chinese-erj.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-1987.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-1987.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-1987ay.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-1987ay.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2005.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2005.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2005ay.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2005ay.cbx RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015-gbk.def RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.bbx RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015.cbx @@ -37527,15 +38732,21 @@ runfiles size=162 RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015ms.cbx RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.bbx RELOC/tex/latex/biblatex-gb7714-2015/gb7714-2015mx.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-CCNU.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-CCNU.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-NWAFU.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-NWAFU.cbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-SEU.bbx + RELOC/tex/latex/biblatex-gb7714-2015/gb7714-SEU.cbx catalogue-contact-repository https://github.com/hushidong/biblatex-gb7714-2015 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gb7714-2015 -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics biblatex chinese -catalogue-version 1.0x +catalogue-version 1.1k name biblatex-german-legal category Package -revision 56939 +revision 66461 shortdesc Comprehensive citation style for German legal texts relocated 1 longdesc This package aims to provide citation styles (for footnotes and @@ -37546,34 +38757,34 @@ longdesc enthalt BibLaTeX-Zitierstile fur die Rechtswissenschaften in longdesc Deutschland. Aktuell enthalt es einen auf Monographien in den longdesc deutschen Rechtswissenschaften ausgerichteten Zitierstil namens longdesc german-legal-book. -containersize 5348 -containerchecksum a82cb2c531e5f3671b0ec29ae27f9df9ea375f9dc616286805e8ff2a8940437427c23c51d09e477703e60c7aa70645430ed98890efbcaf9593b1747800a9836b -doccontainersize 167748 -doccontainerchecksum d4108ee1d625301ccc32ae4202002d9c33c1cd9817b2d26430eb1acf902386817aeaeb6af518b67669b2542a3eab91e0f513bf1ad5ef8ba2572c5f5d7b813382 -docfiles size=45 +containersize 6148 +containerchecksum 0d447d700791b3e0a50fa98c14cd71c735e1e1196c9d0c23e86114942d2a9d7dfc9f769a6f8ea7aa78903f1c6bf5600dfcd7091250ef65f2a2a5295a796f8fd1 +doccontainersize 173876 +doccontainerchecksum 8b83f35af4cbc23c2e19dd35d3f798575f1df540bd4f10a9f0f7d732d5de6559cc0ad49df21753920eb659596b5e506e17fbc066fdab27552831d222da1e394d +docfiles size=47 RELOC/doc/latex/biblatex-german-legal/README.md details="Readme" RELOC/doc/latex/biblatex-german-legal/biblatex-german-legal.pdf details="Package documentation" language="de" RELOC/doc/latex/biblatex-german-legal/biblatex-german-legal.tex runfiles size=6 RELOC/tex/latex/biblatex-german-legal/german-legal-book.bbx RELOC/tex/latex/biblatex-german-legal/german-legal-book.cbx -catalogue-contact-repository https://git.linta.de/?p=~brodo/biblatex-german-legal.git;a=tree +catalogue-contact-repository https://git.linta.de/~brodo/biblatex-german-legal.git catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-german-legal catalogue-license lppl1.3c catalogue-topics biblatex legal german -catalogue-version 002 +catalogue-version 003 name biblatex-gost category Package -revision 56790 +revision 59135 shortdesc BibLaTeX support for GOST standard bibliographies relocated 1 longdesc The package provides BibLaTeX support for Russian bibliography longdesc style GOST 7.0.5-2008 -containersize 21148 -containerchecksum c9dad05fd20f6147215805df07cbcea228d023b2051a2b8fdac28e55d0d3424d81d71f48d7dbbd679f3a306c1385dd2d1c50d8d128432d3d64abc9fa96373350 -doccontainersize 999112 -doccontainerchecksum 90220ec8159d1621e54ffd83c587d111bafdd54ed3d104146992cef5340d55093166283367e4dc3cb21ea2621122b4080d0a849f7ca2b116f262b96b6d177ce1 +containersize 21160 +containerchecksum 72da076da250a07f89364ecdc65649ab845f7ec90eac0207af902beb42625c7ef69612d444628a0c9472063ae9485d9518cd6934ce1124d25549a64a0eab91d6 +doccontainersize 999720 +doccontainerchecksum 4cb101c69ffc07d14d653cbd6bcc33deb797987dcae399535bea5bc14d1149705cbf6b1e21a7fd95d9edfc7c558eaf744e1715157a62fc2e1978476db0af4e75 docfiles size=356 RELOC/doc/latex/biblatex-gost/README.md details="Readme" RELOC/doc/latex/biblatex-gost/biblatex-gost-examples.bib @@ -37638,7 +38849,7 @@ catalogue-contact-repository https://github.com/odomanov/biblatex-gost/ catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-gost catalogue-license lppl1.3c catalogue-topics biblatex std-conform russian -catalogue-version 1.21 +catalogue-version 1.22 name biblatex-historian category Package @@ -37666,7 +38877,7 @@ catalogue-version 0.4 name biblatex-ieee category Package -revision 58716 +revision 61243 shortdesc IEEE style files for BibLaTeX relocated 1 longdesc This is a BibLaTeX style that implements the bibliography style @@ -37677,18 +38888,18 @@ longdesc \usepackage[style=ieee]{biblatex} A demonstration database is longdesc provided to show how to format input for the style. longdesc biblatex-ieee requires BibLaTeX 2.7 or later, and works with longdesc both BibTeX and Biber as the database back-end. -containersize 5416 -containerchecksum 2348c59f6b68e7846f3da93ef008f856b899173281281a1d061f5d98bad3c2b18216987e4aa366c2a2bf9f53f6daa6b29aeca202ff385058676572b8f3702317 -doccontainersize 558076 -doccontainerchecksum 70efd20bcdc08f1872242e77a389c207e048921b9a9741e11c4e81298fec1ff1a2c724e0485da5e3adf218ddc5171930170f9e4bf6e2503088a1fce5287403fe -docfiles size=174 +containersize 5564 +containerchecksum 2f4dd68ea556dc56fde888294bd9a3368efcf4099b95b0c90e60225c3b99181de52b406a7e40a09792b6b58410174d74d774a0aeb1feb4c8bef69fd513861303 +doccontainersize 566908 +doccontainerchecksum ef24c360fd211b79538aba8394a831a48c4b518bcecc516fee91191aad5b2eef06ce9e0e2e033134499a94dac4542803c32a207b2b71d48b14401b20f5aca549 +docfiles size=182 RELOC/doc/latex/biblatex-ieee/README.md details="Readme" RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.pdf RELOC/doc/latex/biblatex-ieee/biblatex-ieee-alphabetic.tex RELOC/doc/latex/biblatex-ieee/biblatex-ieee.bib RELOC/doc/latex/biblatex-ieee/biblatex-ieee.pdf details="Package documentation" RELOC/doc/latex/biblatex-ieee/biblatex-ieee.tex -runfiles size=9 +runfiles size=10 RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.bbx RELOC/tex/latex/biblatex-ieee/ieee-alphabetic.cbx RELOC/tex/latex/biblatex-ieee/ieee.bbx @@ -37697,7 +38908,7 @@ runfiles size=9 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee catalogue-license lppl1.3c catalogue-topics biblatex journalpub -catalogue-version 1.3e +catalogue-version 1.3f name biblatex-ijsra category Package @@ -37724,23 +38935,23 @@ catalogue-version 0.1 name biblatex-iso690 category Package -revision 54561 +revision 62866 shortdesc BibLaTeX style for ISO 690 standard relocated 1 longdesc The package provides a bibliography and citation style which longdesc conforms to the latest revision of the international standard longdesc ISO 690:2010. The implementation follows BibLaTeX conventions longdesc and requires BibLaTeX [?] 3.4 and biber [?] 2.5. -containersize 11528 -containerchecksum 70469c6baf7e9f644e9a012d48bae8d7904cd53c883f5238f42c20ee904c11df2381a5721d77ccebe23303975632321e276ef7eac158f4ee1f8d897de41faf2f -doccontainersize 271516 -doccontainerchecksum a9012321245247b6c4331312dc3e371bfda7e70e500b1296b092a12343dd270551496b9787c90ff935c50fcfb4ed2a3b6dcdc5dd722b7ddebda316ecbe9719ac -docfiles size=78 +containersize 13132 +containerchecksum e337c10a9eaee195b091deddb93fed9416912856599d31562812dc4b5818d495e6ed6443ea1c801298e351be7ae37f830e5ff23d31beba8ea0bcb682da15f5c2 +doccontainersize 289680 +doccontainerchecksum ec7f5e962bbe119e583c8dd671b28229c39043e1aa06319772d878c8a49e466541ebd5adbab4e1b229afcbf91e9cf981dc6d0918f3358a12882bfa5d282d3a51 +docfiles size=83 RELOC/doc/latex/biblatex-iso690/README.md details="Readme" + RELOC/doc/latex/biblatex-iso690/biblatex-iso690-examples.bib RELOC/doc/latex/biblatex-iso690/biblatex-iso690.pdf details="Package documentation" RELOC/doc/latex/biblatex-iso690/biblatex-iso690.tex - RELOC/doc/latex/biblatex-iso690/mybib.bib -runfiles size=31 +runfiles size=34 RELOC/tex/latex/biblatex-iso690/bulgarian-iso.lbx RELOC/tex/latex/biblatex-iso690/czech-iso.lbx RELOC/tex/latex/biblatex-iso690/english-iso.lbx @@ -37760,40 +38971,41 @@ runfiles size=31 RELOC/tex/latex/biblatex-iso690/iso-numeric.cbx RELOC/tex/latex/biblatex-iso690/iso-numeric.dbx RELOC/tex/latex/biblatex-iso690/iso.bbx + RELOC/tex/latex/biblatex-iso690/ngerman-iso.lbx RELOC/tex/latex/biblatex-iso690/polish-iso.lbx RELOC/tex/latex/biblatex-iso690/slovak-iso.lbx + RELOC/tex/latex/biblatex-iso690/spanish-iso.lbx catalogue-contact-bugs https://github.com/michal-h21/biblatex-iso690/issues catalogue-contact-repository https://github.com/michal-h21/biblatex-iso690 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-iso690 catalogue-license lppl1.3 catalogue-topics biblatex -catalogue-version 0.4 +catalogue-version 0.4.1 name biblatex-jura2 category Package -revision 56133 +revision 64762 shortdesc Citation style for the German legal profession relocated 1 longdesc The package offers BibLaTeX support for citations in German -longdesc legal texts. This is a style that, unlike other styles in 2019, -longdesc actually works with modern TeX distributions. -containersize 4448 -containerchecksum f3714f1348624129cd2342dafc622c8170085c2210012f7e4580d3dfbfd79a4c695f5888868a79412712818c709d5fa76deb6838303d6e5321f7f4932ce29f4c -doccontainersize 370720 -doccontainerchecksum 40adafe11ded9b2f339c4417ebba767a1571b58b052fe7712082a9ce1147d0d2af9f84736c11d36c1eedc3b7c07b004fbd9ed2a8e08f02520bf0ad2024146ead -docfiles size=103 +longdesc legal texts. +containersize 4540 +containerchecksum 5fa0044f2a91cbdf550949829ccbec0a11fde1576c6f84f861f1899dbf2ebf4124a63a489f77e487194e61bf4c629772cc77aae6cb35260e8bf92e64552eeb7e +doccontainersize 380108 +doccontainerchecksum 87d31c5f9c0ea71e28d26df03c88497e8bcf18b07784c57be3c55dba0660cf58e2113cef25e802ea6210a87cadcf2bb2398b43ffbff50519daa62b329b678c4a +docfiles size=106 RELOC/doc/latex/biblatex-jura2/README.md details="Readme" RELOC/doc/latex/biblatex-jura2/biblatex-jura2.tex RELOC/doc/latex/biblatex-jura2/biblatex_jura2.pdf details="Package documentation" language="de" RELOC/doc/latex/biblatex-jura2/mylit.bib -runfiles size=5 +runfiles size=6 RELOC/tex/latex/biblatex-jura2/jura2.bbx RELOC/tex/latex/biblatex-jura2/jura2.cbx catalogue-also biblatex-jura biblatex-juradiss catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-jura2 catalogue-license lppl1.3c catalogue-topics legal biblatex -catalogue-version 0.4 +catalogue-version 0.5 name biblatex-juradiss category Package @@ -37845,17 +39057,45 @@ catalogue-license lppl1.3c catalogue-topics licence-mgmt biblatex catalogue-version 0.1 +name biblatex-lncs +category Package +revision 65280 +shortdesc BibLaTeX style for Springer Lecture Notes in Computer Science +relocated 1 +longdesc This is a BibLaTeX style for Springer Lecture Notes in Computer +longdesc Science (LNCS). It extends the standard BiBTeX model by an +longdesc acronym entry. +containersize 2624 +containerchecksum bd708ad46839042f2113cddb25dc8370c4ec1ca6ac34e08dd472473f56097e29d154cbaeba9a1a5f86c810d288321528c92a1041858e2f6256f4125ef8238930 +doccontainersize 8668 +doccontainerchecksum b0f5868bc3018ba7a8d82f11af9965bf592564e578ee459ec747720dcf6fa741103a40f5f0cc3a3394d7514c16c04e0a34fc37940637e2ffdaa8b560d128d735 +docfiles size=8 + RELOC/doc/latex/biblatex-lncs/LICENSE + RELOC/doc/latex/biblatex-lncs/README.md details="Readme" + RELOC/doc/latex/biblatex-lncs/biblatex-lncs-test.bib + RELOC/doc/latex/biblatex-lncs/biblatex-lncs-test.tex +runfiles size=5 + RELOC/tex/latex/biblatex-lncs/lncs.bbx + RELOC/tex/latex/biblatex-lncs/lncs.cbx + RELOC/tex/latex/biblatex-lncs/lncs.dbx +catalogue-contact-bugs https://github.com/mgttlinger/biblatex-lncs/issues +catalogue-contact-repository https://github.com/mgttlinger/biblatex-lncs +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-lncs +catalogue-license lppl1.3c +catalogue-topics biblatex journalpub +catalogue-version 0.6 + name biblatex-lni category Package -revision 49935 +revision 61719 shortdesc LNI style for BibLaTeX relocated 1 longdesc BibLaTeX style for the Lecture Notes in Informatics, which is longdesc published by the Gesellschaft fur Informatik (GI e.V.). -containersize 2904 -containerchecksum 9089117cc653cb9251622299b20d79525ae9623661de402732c9b9f47b2b296cc0b756bda279487f5d042316693ac624b18352dcfd04e6cec436a402b9bbba57 -doccontainersize 9700 -doccontainerchecksum 23435bb5cdcc7cfaa58d732582e23d3a23589ee064122b231794f17ecd0137e7a4a0e21057835d3925c149d637a7bd12270b4dd05cff6259f103498e0989ac66 +containersize 2928 +containerchecksum c91f3f8cc6e238602682893ef0ef20af2ac87a518d845e46262f17773f9082c5ed7ffb59329ac4852d8b3d72b3b1364395d3d16aa9ddff52619d9591f2b7257c +doccontainersize 9704 +doccontainerchecksum 19bd2d8f8f7539543c876c214731d407def9c193d70ea3eeb7a9869202fa26242674a996934a599004e36bddc62669bc769c6a76af6cec6ca85bf44436c41de0 docfiles size=11 RELOC/doc/latex/biblatex-lni/CHANGELOG.md RELOC/doc/latex/biblatex-lni/LICENSE @@ -37868,6 +39108,8 @@ runfiles size=6 RELOC/tex/latex/biblatex-lni/LNI-ngerman.lbx RELOC/tex/latex/biblatex-lni/LNI.bbx RELOC/tex/latex/biblatex-lni/LNI.cbx +catalogue-contact-bugs https://github.com/gi-ev/biblatex-lni/issues +catalogue-contact-repository https://github.com/gi-ev/biblatex-lni catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-lni catalogue-license lppl1.3 catalogue-topics biblatex journalpub @@ -37950,45 +39192,48 @@ catalogue-version 2.1.2 name biblatex-mla category Package -revision 42445 +revision 62138 shortdesc MLA style files for BibLaTeX relocated 1 longdesc The package provides BibLaTeX support for citations in the longdesc format specified by the MLA handbook. -containersize 15540 -containerchecksum b6e3f7b5323e0246c1b2e1ee1c767b624e59d4d1ab9aac4bc24d59c15d1f8228695ccc072b30bbe1f4a2de24fb6eeee3c81095fa572f3e27a09f0de7c5b3994e -doccontainersize 1273944 -doccontainerchecksum 87e9b73615b404f8b676b8a4158edac551f8dd3712e1f6ecaec473789df884c85d6ba48eafad428eebce10ff6f0c13b382fb4e4c79cc960b860565bedf7f935f -docfiles size=420 +containersize 24920 +containerchecksum f286ec7553818df5900e6d5e791d56c815711bdf6dbc3a317bd416dfae9e7b86d94e4d43cb4846cffcef9e9a246f0a059835ab6812172130a31984dbf39b58c1 +doccontainersize 687188 +doccontainerchecksum a6e5861754ca4e1bb42dc054188777b63d11c1438f83399c4752ea849284bfc7a97943e891983b88117047f59652441c31edf82f382370ba233deafa0445c17f +docfiles size=246 RELOC/doc/latex/biblatex-mla/CHANGES RELOC/doc/latex/biblatex-mla/README details="Readme" RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.pdf details="Package documentation" RELOC/doc/latex/biblatex-mla/doc/biblatex-mla.tex - RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.pdf - RELOC/doc/latex/biblatex-mla/doc/citation-examples-new.tex - RELOC/doc/latex/biblatex-mla/doc/citation-examples.pdf - RELOC/doc/latex/biblatex-mla/doc/citation-examples.tex - RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.pdf - RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib-new.tex - RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.pdf - RELOC/doc/latex/biblatex-mla/doc/handbooksamplebib.tex - RELOC/doc/latex/biblatex-mla/doc/handbooksamples-new.bib - RELOC/doc/latex/biblatex-mla/doc/handbooksamples.bib - RELOC/doc/latex/biblatex-mla/doc/samples.bib -runfiles size=44 + RELOC/doc/latex/biblatex-mla/doc/bibtex_documentation.sty + RELOC/doc/latex/biblatex-mla/doc/examples.bib + RELOC/doc/latex/biblatex-mla/doc/examples.pdf + RELOC/doc/latex/biblatex-mla/doc/examples.tex + RELOC/doc/latex/biblatex-mla/doc/handbook9.bib + RELOC/doc/latex/biblatex-mla/doc/handbook9_messy.bib +runfiles size=58 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-footnotes.cbx RELOC/tex/latex/biblatex-mla/mla-new.bbx RELOC/tex/latex/biblatex-mla/mla-new.cbx + RELOC/tex/latex/biblatex-mla/mla-strict.bbx + RELOC/tex/latex/biblatex-mla/mla-strict.cbx RELOC/tex/latex/biblatex-mla/mla.bbx RELOC/tex/latex/biblatex-mla/mla.cbx + RELOC/tex/latex/biblatex-mla/mla.dbx + RELOC/tex/latex/biblatex-mla/mla7.bbx + RELOC/tex/latex/biblatex-mla/mla7.cbx RELOC/tex/latex/biblatex-mla/portuguese-mla.lbx RELOC/tex/latex/biblatex-mla/spanish-mla.lbx +catalogue-contact-bugs https://github.com/jmclawson/biblatex-mla/issues +catalogue-contact-repository https://github.com/jmclawson/biblatex-mla catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-mla -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics linguistic journalpub biblatex -catalogue-version 1.9 +catalogue-version 2.1a name biblatex-morenames category Package @@ -38032,6 +39277,326 @@ catalogue-license lppl1.3 catalogue-topics humanities biblatex catalogue-version 1.3.1 +name biblatex-ms +category Package +revision 66480 +shortdesc Sophisticated Bibliographies in LaTeX (multiscript version) +relocated 1 +longdesc This package is the "multiscript" version of the BibLaTeX +longdesc package intended to solve the issues faced by those wishing to +longdesc create multiligual bibliographies. It is intended to be +longdesc backwards-compatible with the standard BibLaTeX package and +longdesc includes significantly enhanced optional functionality: Fields +longdesc in data files can have different form/language alternates in +longdesc the same entry Options to select/print a specific alternate are +longdesc generally available babel/polyglossia language switching is +longdesc done automatically based on the language associated with a +longdesc field The intention is that this version will eventually +longdesc replace standard BibLaTeX and is being released as an +longdesc independent package to allow for wider testing and feedback. It +longdesc can be installed in parallel with standard BibLaTeX and the +longdesc package name is biblatex-ms. It requires the use of the +longdesc multiscript version of biber (biber-ms). +depend etoolbox +depend kvoptions +depend logreq +depend pdftexcmds +depend url +containersize 262228 +containerchecksum 811bcee998c24f46ca5fb8bef9532148c97233766c30f0022cce7022ce0d5f0b5ee260ef0d7276095dc4ccba3dcf67e90a4cc1abf080951c9bd7cfa4237428d6 +doccontainersize 7467680 +doccontainerchecksum dd6dcf78d0423578a41b47ab84fee4f398a238ac15e098e09d8cee93d5d08d4af62a72d90fadcd5ddb497cf7a4c4b6017fc721c1de246d0aedc98ccb32bad111 +docfiles size=5046 + RELOC/doc/latex/biblatex-ms/CHANGES.md details="Release notes for current version" language="en" + RELOC/doc/latex/biblatex-ms/README details="Readme" language="en" + RELOC/doc/latex/biblatex-ms/biber/bltxml/biblatex-examples-ms.bltxml + RELOC/doc/latex/biblatex-ms/biblatex-ms.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/biblatex-ms/biblatex-ms.tex + RELOC/doc/latex/biblatex-ms/examples/01-introduction-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/01-introduction-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/01-introduction-ms.tex + RELOC/doc/latex/biblatex-ms/examples/01-introduction.run-ms.xml + RELOC/doc/latex/biblatex-ms/examples/02-annotations-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/02-annotations-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/02-annotations-ms.tex + RELOC/doc/latex/biblatex-ms/examples/03-localization-keys-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/03-localization-keys-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/03-localization-keys-ms.tex + RELOC/doc/latex/biblatex-ms/examples/04-delimiters-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/04-delimiters-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/04-delimiters-ms.tex + RELOC/doc/latex/biblatex-ms/examples/10-references-per-section-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/10-references-per-section-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/10-references-per-section-ms.tex + RELOC/doc/latex/biblatex-ms/examples/11-references-by-section-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/11-references-by-section-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/11-references-by-section-ms.tex + RELOC/doc/latex/biblatex-ms/examples/12-references-by-segment-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/12-references-by-segment-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/12-references-by-segment-ms.tex + RELOC/doc/latex/biblatex-ms/examples/13-references-by-keyword-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/13-references-by-keyword-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/13-references-by-keyword-ms.tex + RELOC/doc/latex/biblatex-ms/examples/14-references-by-category-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/14-references-by-category-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/14-references-by-category-ms.tex + RELOC/doc/latex/biblatex-ms/examples/15-references-by-type-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/15-references-by-type-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/15-references-by-type-ms.tex + RELOC/doc/latex/biblatex-ms/examples/16-numeric-prefixed-1-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/16-numeric-prefixed-1-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/16-numeric-prefixed-1-ms.tex + RELOC/doc/latex/biblatex-ms/examples/17-numeric-prefixed-2-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/17-numeric-prefixed-2-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/17-numeric-prefixed-2-ms.tex + RELOC/doc/latex/biblatex-ms/examples/18-numeric-hybrid-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/18-numeric-hybrid-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/18-numeric-hybrid-ms.tex + RELOC/doc/latex/biblatex-ms/examples/19-alphabetic-prefixed-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/19-alphabetic-prefixed-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/19-alphabetic-prefixed-ms.tex + RELOC/doc/latex/biblatex-ms/examples/20-indexing-single-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/20-indexing-single-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/20-indexing-single-ms.tex + RELOC/doc/latex/biblatex-ms/examples/21-indexing-multiple-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/21-indexing-multiple-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/21-indexing-multiple-ms.tex + RELOC/doc/latex/biblatex-ms/examples/22-indexing-subentry-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/22-indexing-subentry-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/22-indexing-subentry-ms.tex + RELOC/doc/latex/biblatex-ms/examples/30-style-numeric-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/30-style-numeric-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/30-style-numeric-ms.tex + RELOC/doc/latex/biblatex-ms/examples/31-style-numeric-comp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/31-style-numeric-comp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/31-style-numeric-comp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/32-style-numeric-verb-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/32-style-numeric-verb-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/32-style-numeric-verb-ms.tex + RELOC/doc/latex/biblatex-ms/examples/40-style-alphabetic-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/40-style-alphabetic-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/40-style-alphabetic-ms.tex + RELOC/doc/latex/biblatex-ms/examples/41-style-alphabetic-verb-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/41-style-alphabetic-verb-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/41-style-alphabetic-verb-ms.tex + RELOC/doc/latex/biblatex-ms/examples/42-style-alphabetic-template-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/42-style-alphabetic-template-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/42-style-alphabetic-template-ms.tex + RELOC/doc/latex/biblatex-ms/examples/50-style-authoryear-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/50-style-authoryear-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/50-style-authoryear-ms.tex + RELOC/doc/latex/biblatex-ms/examples/51-style-authoryear-ibid-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/51-style-authoryear-ibid-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/51-style-authoryear-ibid-ms.tex + RELOC/doc/latex/biblatex-ms/examples/52-style-authoryear-comp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/52-style-authoryear-comp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/52-style-authoryear-comp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/53-style-authoryear-icomp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/53-style-authoryear-icomp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/53-style-authoryear-icomp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/60-style-authortitle-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/60-style-authortitle-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/60-style-authortitle-ms.tex + RELOC/doc/latex/biblatex-ms/examples/61-style-authortitle-ibid-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/61-style-authortitle-ibid-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/61-style-authortitle-ibid-ms.tex + RELOC/doc/latex/biblatex-ms/examples/62-style-authortitle-comp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/62-style-authortitle-comp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/62-style-authortitle-comp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/63-style-authortitle-icomp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/63-style-authortitle-icomp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/63-style-authortitle-icomp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/64-style-authortitle-terse-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/64-style-authortitle-terse-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/64-style-authortitle-terse-ms.tex + RELOC/doc/latex/biblatex-ms/examples/65-style-authortitle-tcomp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/65-style-authortitle-tcomp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/65-style-authortitle-tcomp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/66-style-authortitle-ticomp-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/66-style-authortitle-ticomp-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/66-style-authortitle-ticomp-ms.tex + RELOC/doc/latex/biblatex-ms/examples/70-style-verbose-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/70-style-verbose-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/70-style-verbose-ms.tex + RELOC/doc/latex/biblatex-ms/examples/71-style-verbose-ibid-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/71-style-verbose-ibid-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/71-style-verbose-ibid-ms.tex + RELOC/doc/latex/biblatex-ms/examples/72-style-verbose-note-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/72-style-verbose-note-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/72-style-verbose-note-ms.tex + RELOC/doc/latex/biblatex-ms/examples/73-style-verbose-inote-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/73-style-verbose-inote-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/73-style-verbose-inote-ms.tex + RELOC/doc/latex/biblatex-ms/examples/74-style-verbose-trad1-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/74-style-verbose-trad1-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/74-style-verbose-trad1-ms.tex + RELOC/doc/latex/biblatex-ms/examples/75-style-verbose-trad2-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/75-style-verbose-trad2-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/75-style-verbose-trad2-ms.tex + RELOC/doc/latex/biblatex-ms/examples/76-style-verbose-trad3-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/76-style-verbose-trad3-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/76-style-verbose-trad3-ms.tex + RELOC/doc/latex/biblatex-ms/examples/80-style-reading-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/80-style-reading-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/80-style-reading-ms.tex + RELOC/doc/latex/biblatex-ms/examples/81-style-draft-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/81-style-draft-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/81-style-draft-ms.tex + RELOC/doc/latex/biblatex-ms/examples/82-style-debug-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/82-style-debug-bibtex-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex + RELOC/doc/latex/biblatex-ms/examples/90-related-entries-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/90-related-entries-ms.tex + RELOC/doc/latex/biblatex-ms/examples/91-sorting-schemes-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/91-sorting-schemes-ms.tex + RELOC/doc/latex/biblatex-ms/examples/92-bibliographylists-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/92-bibliographylists-ms.tex + RELOC/doc/latex/biblatex-ms/examples/93-nameparts-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/93-nameparts-ms.dbx + RELOC/doc/latex/biblatex-ms/examples/93-nameparts-ms.tex + RELOC/doc/latex/biblatex-ms/examples/94-labelprefix-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/94-labelprefix-ms.tex + RELOC/doc/latex/biblatex-ms/examples/95-customlists-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/95-customlists-ms.bib + RELOC/doc/latex/biblatex-ms/examples/95-customlists-ms.dbx + RELOC/doc/latex/biblatex-ms/examples/95-customlists-ms.tex + RELOC/doc/latex/biblatex-ms/examples/96-dates-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/96-dates-ms.tex + RELOC/doc/latex/biblatex-ms/examples/97-annotations-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/97-annotations-ms.bib + RELOC/doc/latex/biblatex-ms/examples/97-annotations-ms.tex + RELOC/doc/latex/biblatex-ms/examples/98-multiscript-biber-ms.pdf + RELOC/doc/latex/biblatex-ms/examples/98-multiscript-ms.tex + RELOC/doc/latex/biblatex-ms/examples/biblatex-examples-ms.bib + RELOC/doc/latex/biblatex-ms/examples/biblatex-examples-ms.bltxml +runfiles size=645 + RELOC/bibtex/bib/biblatex-ms/biblatex/biblatex-examples-ms.bib + RELOC/bibtex/bst/biblatex-ms/biblatex-ms.bst + RELOC/tex/latex/biblatex-ms/bbx/alphabetic-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/alphabetic-verb-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-comp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-ibid-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-icomp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-tcomp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-terse-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authortitle-ticomp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authoryear-comp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authoryear-ibid-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authoryear-icomp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/authoryear-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/debug-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/draft-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/numeric-comp-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/numeric-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/numeric-verb-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/reading-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/standard-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-ibid-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-inote-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-note-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-trad1-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-trad2-ms.bbx + RELOC/tex/latex/biblatex-ms/bbx/verbose-trad3-ms.bbx + RELOC/tex/latex/biblatex-ms/biblatex-ms.cfg + RELOC/tex/latex/biblatex-ms/biblatex-ms.def + RELOC/tex/latex/biblatex-ms/biblatex-ms.sty + RELOC/tex/latex/biblatex-ms/blx-bibtex-ms.def + RELOC/tex/latex/biblatex-ms/blx-case-expl3-ms.sty + RELOC/tex/latex/biblatex-ms/blx-case-latex2e-ms.sty + RELOC/tex/latex/biblatex-ms/blx-compat-ms.def + RELOC/tex/latex/biblatex-ms/blx-dm-ms.def + RELOC/tex/latex/biblatex-ms/blx-mcite-ms.def + RELOC/tex/latex/biblatex-ms/blx-natbib-ms.def + RELOC/tex/latex/biblatex-ms/blx-unicode-ms.def + RELOC/tex/latex/biblatex-ms/cbx/alphabetic-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/alphabetic-verb-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-comp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-ibid-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-icomp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-tcomp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-terse-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authortitle-ticomp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authoryear-comp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authoryear-ibid-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authoryear-icomp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/authoryear-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/debug-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/draft-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/numeric-comp-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/numeric-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/numeric-verb-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/reading-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-ibid-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-inote-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-note-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-trad1-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-trad2-ms.cbx + RELOC/tex/latex/biblatex-ms/cbx/verbose-trad3-ms.cbx + RELOC/tex/latex/biblatex-ms/lbx/UKenglish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/USenglish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/american-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/australian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/austrian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/basque-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/brazil-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/brazilian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/british-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/bulgarian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/canadian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/catalan-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/croatian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/czech-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/danish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/dutch-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/english-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/estonian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/finnish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/french-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/galician-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/german-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/greek-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/hungarian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/icelandic-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/italian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/latvian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/lithuanian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/magyar-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/marathi-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/naustrian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/newzealand-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/ngerman-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/norsk-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/nswissgerman-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/nynorsk-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/polish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/portuges-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/portuguese-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/romanian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/russian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/serbian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/serbianc-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/slovak-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/slovene-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/slovenian-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/spanish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/swedish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/swissgerman-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/turkish-ms.lbx + RELOC/tex/latex/biblatex-ms/lbx/ukrainian-ms.lbx +catalogue-also translation-biblatex-de +catalogue-contact-announce https://github.com/plk/biblatex/wiki +catalogue-contact-bugs https://github.com/plk/biblatex/issues +catalogue-contact-home https://github.com/plk/biblatex +catalogue-contact-repository https://github.com/plk/biblatex.git +catalogue-ctan /macros/latex/contrib/biblatex-ms +catalogue-license lppl1.3 +catalogue-topics biblio biblatex etex +catalogue-version 4.0-1 + name biblatex-multiple-dm category Package revision 37081 @@ -38197,7 +39762,7 @@ catalogue-version 1.9.0 name biblatex-oxref category Package -revision 57513 +revision 65707 shortdesc BibLaTeX styles inspired by the Oxford Guide to Style relocated 1 longdesc This bundle provides four BibLaTeX styles that implement (many @@ -38213,11 +39778,11 @@ longdesc with parenthetical in-text citations. The bundle provides longdesc support for a wide variety of content types, including longdesc manuscripts, audiovisual resources, social media and legal longdesc references. -containersize 22460 -containerchecksum 77451258efdd72939a8548452c28b442250db97a4d9b88e59c463036ca0ff32b9153f87b870f7b0ebe490631e87863a979fde7b75fe11993bb2a06ee949c104a -doccontainersize 1945172 -doccontainerchecksum 3b01e5eefbd78025442150f94de4d87959449b8eb77ee94458eb3eb4edb36fe4c1ae7c9a3320b3165122f0adbb2dd850e09e80619d78069e69d7fde3d8c9f192 -docfiles size=740 +containersize 22764 +containerchecksum c9839c0a69065596b6d36ca61ca23fbe3d3d8d147bf7ecae0db22f24a5db9cbe21ae67563f929868ba39f8cb0c1d8040f4bf20d134aafd26cfa0dadf2cbd9d78 +doccontainersize 2066712 +doccontainerchecksum f0fc6068778972b96a61414285c3371b77f29aae0ca7e31c225b1ccebf09b659b2ee156278b582a46a14b4ab20255f179c2ba4d269c53be5c85e9a0ceae44429 +docfiles size=790 RELOC/doc/latex/biblatex-oxref/README.md details="Readme" RELOC/doc/latex/biblatex-oxref/oxalph-doc.pdf details="Style documentation for oxalph" RELOC/doc/latex/biblatex-oxref/oxalph-doc.tex @@ -38229,9 +39794,9 @@ docfiles size=740 RELOC/doc/latex/biblatex-oxref/oxref.pdf details="Package documentation" RELOC/doc/latex/biblatex-oxref/oxyear-doc.pdf details="Style documentation for oxyear" RELOC/doc/latex/biblatex-oxref/oxyear-doc.tex -srccontainersize 87044 -srccontainerchecksum 7d7bc8d02dc4e03e76d4b67a06d41a450b818d0675c2ab710e9305d13cb922bd23663c77e8e9dda9fd27b28e7b331dad15a22c6bfb94cc33e13b36ccd979331b -srcfiles size=118 +srccontainersize 90528 +srccontainerchecksum 636b0c6c97c76ff15214145685d768c20d44cb1b17527cae743265f94b551aefb4610d63838e0f4bbfc34eb39b11b3a06005f9710e2503fcd4c6f6547665d0d0 +srcfiles size=123 RELOC/source/latex/biblatex-oxref/Makefile RELOC/source/latex/biblatex-oxref/oxref.dtx RELOC/source/latex/biblatex-oxref/oxref.ins @@ -38275,11 +39840,11 @@ catalogue-contact-home https://github.com/alex-ball/biblatex-oxref catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-oxref catalogue-license lppl1.3c catalogue-topics biblatex -catalogue-version 2.2 +catalogue-version 3.0 name biblatex-philosophy category Package -revision 58925 +revision 64414 shortdesc Styles for using BibLaTeX for work in philosophy relocated 1 longdesc The bundle offers two styles - philosophy-classic and @@ -38291,16 +39856,16 @@ longdesc package's default settings are based on the conventions used in longdesc Italian publications, these styles can be used with every longdesc language recognized by babel, possibly with some simple longdesc redefinitions. -containersize 12804 -containerchecksum a1ed93c8434a5d7bde6d780e94f1efdf3f08c61909cc158b37b453cd6b9267afaf7b01e93c12ea8a8b403e4c7be563673b6495803af087a99f7aec97162409df -doccontainersize 538648 -doccontainerchecksum 3c53b4db24803c587475b1e95e3a7a9b8bba3cb6a9bb071591cc3216d5e473ab0f3d8ae4dfe4220d8b7604e18567d8f7d3c9d3abd727de8af0340f8e88b3059b -docfiles size=136 +containersize 12840 +containerchecksum dad59b9acdfadb96f0be528cdc0cf5c0a89fc6d35f8d74f6d15230cf1177f4766111b6fcd21fb5aaf1694f1d0e720cf98d6228a89bc87c91124a04526e7291bd +doccontainersize 542616 +doccontainerchecksum 1baca667f89ca22f56d323764de02e93f2ff543e68af85a8e0bf4f23e005caf251d6771012e2df44ba9df35b516e6db449037e5e8d8d54691ff68080957d459a +docfiles size=137 RELOC/doc/latex/biblatex-philosophy/README details="Readme" RELOC/doc/latex/biblatex-philosophy/biblatex-philosophy.pdf details="Package documentation" RELOC/doc/latex/biblatex-philosophy/examples.zip -srccontainersize 40052 -srccontainerchecksum 7f2079060a3bbc740e1e3edd6c86f0a81dcc8500934023a13424e43e6b46c3a08331a74a1878bf1636ae0a4df099b1cd8887e0b00d384ad521433cdaf99fd557 +srccontainersize 40200 +srccontainerchecksum d8a6ace3497436b0993f3da25a5e13879a23eca44d4eccab00377b0a62db1a2d1cb1e40083c7bd958a3d3968c35d88c0acc13ae9e07dd8b8c559a4770d7bc6c7 srcfiles size=60 RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.bib RELOC/source/latex/biblatex-philosophy/biblatex-philosophy.dtx @@ -38319,7 +39884,7 @@ runfiles size=33 catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-philosophy catalogue-license lppl1.3 catalogue-topics humanities philosophy biblatex -catalogue-version 1.9.8d +catalogue-version 1.9.8g name biblatex-phys category Package @@ -38354,7 +39919,7 @@ catalogue-version 1.1b name biblatex-publist category Package -revision 56392 +revision 66273 shortdesc BibLaTeX bibliography support for publication lists relocated 1 longdesc The package provides a BibLaTeX bibliography style file (*.bbx) @@ -38363,23 +39928,51 @@ longdesc authoryear style, but provides some extra features often longdesc desired for publication lists, such as the omission of the longdesc author's own name from author or editor data. At least version longdesc 3.4 of biblatex is required. -containersize 8512 -containerchecksum dff83dc4b8ed279e2b5ad3a0d8e995500df08f3f21c72853ccf392624e40a20e058d06310fdb1384cf2bab319e93c9004cf7641a212aabeed21e31e50bd76934 -doccontainersize 374352 -doccontainerchecksum a5dc972074b40eb402076bcbc570ca36470a856317f7618643b8281f0b7bb8ab1b58c4ef7fa1141cde6b5ea5ab98c179ad9607b621eb43b52d172bb2e730a4b9 -docfiles size=101 +containersize 12200 +containerchecksum 2383e9491ddb94d161a0d8974fa49e3d339d302728d2be0c3e1f7e8c54ce95fbf3848d98a78bebc442f070d3bd2eae91aff6a1682ab2dee741ff56e3f14b968d +doccontainersize 423968 +doccontainerchecksum d98540ce66356e9f096f63d80d02a5291cf2181f590f04c1705a5f3bcad560e0584867431adbc78d8a3342f66459b752ad05fe121cc58eb578a2fff2833ad42c +docfiles size=118 RELOC/doc/latex/biblatex-publist/README details="Readme" RELOC/doc/latex/biblatex-publist/biblatex-publist.pdf details="Package documentation" RELOC/doc/latex/biblatex-publist/biblatex-publist.tex -runfiles size=12 +runfiles size=18 RELOC/tex/latex/biblatex-publist/publist.bbx RELOC/tex/latex/biblatex-publist/publist.cbx + RELOC/tex/latex/biblatex-publist/publist.dbx catalogue-contact-bugs https://github.com/jspitz/biblatex-publist/issues catalogue-contact-repository https://github.com/jspitz/biblatex-publist catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist catalogue-license lppl1.3 catalogue-topics biblatex -catalogue-version 1.21 +catalogue-version 2.2 + +name biblatex-readbbl +category Package +revision 61549 +shortdesc Read a .bbl file created by biber +relocated 1 +longdesc This small package modifies the biblatex macro which reads a +longdesc .bbl file created by Biber. It is thus possible to include a +longdesc .bbl file into the main document with the filecontents +longdesc environment and send it to a publisher who does not need to run +longdesc the Biber program. However, when the bibliography changes one +longdesc has to create a new .bbl file. +containersize 1444 +containerchecksum d74bd07be5983c2731a418ae0167d99e2bdf8d1a9569186a8940f89af3b9a6fe82f641717638c693b98b61637a705fe280d033282d1e37c279aeb080c4b66399 +doccontainersize 27192 +doccontainerchecksum 9ca0584c36e7247496cd0375e0f6585695f509c4e88d29f23158c5c5c7897758d678082c9c836d0cc878423ab23d54e9a0c2b40c5b63830fd8996a35b4aa09cc +docfiles size=11 + RELOC/doc/latex/biblatex-readbbl/Changes + RELOC/doc/latex/biblatex-readbbl/README details="Readme" + RELOC/doc/latex/biblatex-readbbl/biblatex-readbbl.pdf details="Package documentation" + RELOC/doc/latex/biblatex-readbbl/biblatex-readbbl.tex +runfiles size=1 + RELOC/tex/latex/biblatex-readbbl/biblatex-readbbl.sty +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-readbbl +catalogue-license lppl +catalogue-topics biblatex +catalogue-version 0.01 name biblatex-realauthor category Package @@ -38414,7 +40007,7 @@ catalogue-version 2.7.1a name biblatex-sbl category Package -revision 56853 +revision 63639 shortdesc Society of Biblical Literature (SBL) style files for BibLaTeX relocated 1 longdesc The package provides BibLaTeX support for citations in the @@ -38423,10 +40016,10 @@ longdesc Biblical Literature (SBL) Handbook of Style. All example notes longdesc and bibliography entries from the handbook are supported and longdesc shown in an example file. A style file for writing SBL student longdesc papers is also included. -containersize 20984 -containerchecksum b13fc1b54270fd7b79c3dc71388152b9dd81ee868ce382063fef690c828dcac8a11127dc3cb1c02b138a16d17dd5a5e311d8639efaf8f84e50aac4de6cebcc93 -doccontainersize 661728 -doccontainerchecksum 815f16ab2f6edc7767fc1bd95f4e792c435e605ddb777e65ed54f66f8cea4e15b6cb80938276b1fa30184a498e628d32e2c226d97b7afa99b6022c6f6eb2522b +containersize 21248 +containerchecksum 6aff57b41510357eb5d73322254fe9f8462917909cbef6124733419122e681494c9ad13966438c5cabb8efffed527b1a455539bb092b9bbe61e6ea8883f9d73d +doccontainersize 662312 +doccontainerchecksum e61925481c93e5a1536df91db28544d124aafa5de0871da78b069f4e1765e8a68b4b7e040a4ccdb5c3d8a16140397d33d4e04c212220ba2290968f438e4239a9 docfiles size=203 RELOC/doc/latex/biblatex-sbl/README.md details="Readme" RELOC/doc/latex/biblatex-sbl/biblatex-sbl-examples.pdf @@ -38454,7 +40047,7 @@ catalogue-contact-repository https://github.com/dcpurton/biblatex-sbl catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-sbl catalogue-license lppl1.3 catalogue-topics biblatex theology -catalogue-version 0.12 +catalogue-version 0.14 name biblatex-science category Package @@ -38551,21 +40144,21 @@ catalogue-version 0.0.1 name biblatex-software category Package -revision 57366 +revision 64030 shortdesc BibLaTeX stylefiles for software products relocated 1 longdesc This package implements software entry types for BibLaTeX in longdesc the form of a bibliography style extension. It requires the longdesc Biber backend. -containersize 3424 -containerchecksum 25c2a7ebf41761d3b2b7b2dce0f754073d8808b6bf7bd413fbb10aedc465de543431fb297914236c51546b362b9215423e94f9464c5e071d24c6f7b9064e6b1d -doccontainersize 312212 -doccontainerchecksum 5b9671e77ed59b57724a7682ad3b23f7403d4fbc31387443e5adcc170f3aac4ea288454263c091ef71530f3ae7c5b458e48065de9c7f66182b036a9db9119ed9 -docfiles size=92 +containersize 3560 +containerchecksum a95344eb338410804347bc0273eacda0c69804a5dd6886932d11d72879f4c59798cc9bf902667957cc26b56adc0c2f7f747e8967f85fe5602dc1e786bd3a717e +doccontainersize 313808 +doccontainerchecksum cfe81f1a29f49a756df7595b18ebd492df77fb7ca208418b8627f49180a0a8bcd28b779dea58a88de16b6aa6553243b2755df3e16bca696ecb8a17fc3773135e +docfiles size=94 + RELOC/doc/latex/biblatex-software/Changes RELOC/doc/latex/biblatex-software/LICENSE RELOC/doc/latex/biblatex-software/README.md details="Readme" RELOC/doc/latex/biblatex-software/biblio.bib - RELOC/doc/latex/biblatex-software/history.tex RELOC/doc/latex/biblatex-software/manual.bib RELOC/doc/latex/biblatex-software/mkbiblatexstubs.sh RELOC/doc/latex/biblatex-software/sample-content.tex @@ -38576,8 +40169,8 @@ docfiles size=92 RELOC/doc/latex/biblatex-software/software-biblatex.tex RELOC/doc/latex/biblatex-software/stublist RELOC/doc/latex/biblatex-software/swentries.tex -srccontainersize 1160 -srccontainerchecksum e3ed4c9292271223c084bb66913a6c4c7a27774cf2590e63820a40efe36cfb53e452e45d5b2d0d73390a42d51c38a51a84f8894d24685026731dfe6e34b6f6ce +srccontainersize 1500 +srccontainerchecksum 6ee3d3df8bbce5dfd06f64b4e959742e8cb273db8f0606baeef97750dabb0391fcf409dce603772c525a0ad10d543e476d9ec217eced690b0c84e7a547a48f32 srcfiles size=1 RELOC/source/latex/biblatex-software/Makefile runfiles size=7 @@ -38591,7 +40184,7 @@ catalogue-contact-repository https://gitlab.inria.fr/gt-sw-citation/bibtex-sw-en catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-software catalogue-license lppl1.3 catalogue-topics biblatex -catalogue-version 1.2-3 +catalogue-version 1.2-5 name biblatex-source-division category Package @@ -38625,6 +40218,33 @@ catalogue-license lppl1.3 catalogue-topics biblio biblatex catalogue-version 2.4.2 +name biblatex-spbasic +category Package +revision 61439 +shortdesc A BibLaTeX style emulating Springer's old spbasic.bst +relocated 1 +longdesc This package provides a bibliography and citation style for +longdesc BibLaTeX/biber for typesetting articles for Springer's +longdesc journals. It is the same as the old BibTeX style spbasic.bst. +containersize 6024 +containerchecksum 478c5cf4f9996e8b15b13a1ea08b53ea03ef731666095f5374bbca6e16c93d0f049b891540742821140e91a30a8af1fe3c233ec45df1dc777b7c408b52676d97 +doccontainersize 77108 +doccontainerchecksum 9c12f5fc1b328ef0369e7c82c2a25162568cd1d1568aed4ace480a639a38e10642e93ba20939fb0adfed2ee16b44e9a7abcb3eeb6fb51bcbe47bce7436a590fc +docfiles size=24 + RELOC/doc/latex/biblatex-spbasic/Changes + RELOC/doc/latex/biblatex-spbasic/README details="Readme" + RELOC/doc/latex/biblatex-spbasic/biblatex-spbasic.bib + RELOC/doc/latex/biblatex-spbasic/biblatex-spbasic.pdf details="Package documentation" + RELOC/doc/latex/biblatex-spbasic/biblatex-spbasic.tex +runfiles size=11 + RELOC/tex/latex/biblatex-spbasic/biblatex-spbasic.bbx + RELOC/tex/latex/biblatex-spbasic/biblatex-spbasic.cbx + RELOC/tex/latex/biblatex-spbasic/biblatex-spbasic.lbx +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-spbasic +catalogue-license lppl +catalogue-topics biblatex publisher +catalogue-version 0.04 + name biblatex-subseries category Package revision 43330 @@ -38660,7 +40280,7 @@ catalogue-version 1.2.0 name biblatex-swiss-legal category Package -revision 58661 +revision 64491 shortdesc Bibliography and citation styles following Swiss legal practice relocated 1 longdesc The package provides BibLaTeX bibliography and citation styles @@ -38671,9 +40291,9 @@ longdesc ng-biblatex-swiss-legal-not-displayed-correctly the package is longdesc at present outdated and does not work properly with newer longdesc versions of BibLaTeX. containersize 18148 -containerchecksum 0d15d1a11d6f7a85d2443d3376b3ad8ed0941474a7e598ebacc08450a89b20b1909dff15111d209605297dca720ea6d7b6772869a39c14786199b0c4eab4e011 +containerchecksum 12781675dfedd279313be790c218e7e2fab876774207a45caf8f7843eed74a37c460038cf403d3ca38a5b849866917a24e5d61df25cc7ca44606f9b606e95a26 doccontainersize 513436 -doccontainerchecksum db4e7cb54f2002afe099e65402c43bc5574cf2e9bb1ffc11bc0467401f0a8bb48124681fbcb2a95e950517a20baff4dfc79822bbd7152e7408d4aac04651dc5b +doccontainerchecksum 04338344d00c9df040b2aaedca7a6c8d34caf1077b9da7322ab7db6b17c1fa32da7c170e45621f5705f552eee3c2392f78a6bafa8bcb918a07452d7e696cfba2 docfiles size=145 RELOC/doc/latex/biblatex-swiss-legal/README details="Readme (French and English)" RELOC/doc/latex/biblatex-swiss-legal/biblatex-swiss-legal.pdf details="Package documentation (French)" language="fr" @@ -38766,16 +40386,16 @@ catalogue-version 2.0.0 name biblatex-unified category Package -revision 55290 +revision 64975 shortdesc BibLaTeX implementation of the unified stylesheet for linguistics journals relocated 1 longdesc BibLaTeX-unified is an opinionated BibLaTeX implementation of longdesc the Unified Stylesheet for Linguistics Journals -containersize 7704 -containerchecksum 930867328f0f818d03fd5d8cacad6113214609500f43e06b77b711c00939a3a3c99e8e3bba8a093721e719b8449abfc29be50c9b5482b65f3c47f4b7b3a344ad -doccontainersize 434816 -doccontainerchecksum 7196a1c293864f8cbe9e1421ee074cf249bac49c9d9a8cdd811a0252d4a0700f1874bc7d8f3cf22f3ecfc50ac214ce17d30ba8e7f84ae92428578e540ce66429 -docfiles size=131 +containersize 8324 +containerchecksum 01d07011f31b2e62d6438390fa81b5b86af50a9007ef66316a8c2125c2670015fba458fbe128a409c49510baa054b2dbe6c0ed0f153366c5aab317c38f62ff84 +doccontainersize 624820 +doccontainerchecksum 56158b821a29bbe55b67520c9109569afa8b9338af18875da42f95abdf934e5b89bfd9c4bdd41de7d5f263011ab98516916d358be4f36278c6d4cdacb8964300 +docfiles size=181 RELOC/doc/latex/biblatex-unified/JournalUnifiedStyleSheet2007.pdf RELOC/doc/latex/biblatex-unified/LICENSE RELOC/doc/latex/biblatex-unified/README.md details="Readme" @@ -38785,7 +40405,7 @@ docfiles size=131 RELOC/doc/latex/biblatex-unified/unified-test.bib RELOC/doc/latex/biblatex-unified/unified-test.pdf RELOC/doc/latex/biblatex-unified/unified-test.tex -runfiles size=9 +runfiles size=11 RELOC/tex/latex/biblatex-unified/unified.bbx RELOC/tex/latex/biblatex-unified/unified.cbx catalogue-contact-bugs https://github.com/semprag/biblatex-sp-unified/issues @@ -38793,7 +40413,7 @@ catalogue-contact-repository https://github.com/semprag/biblatex-sp-unified catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-unified catalogue-license lppl1.3c catalogue-topics biblatex -catalogue-version 1.00 +catalogue-version 1.20 name biblatex-vancouver category Package @@ -38822,21 +40442,34 @@ catalogue-version 0.1 name biblatex2bibitem category Package -revision 54030 +revision 61648 shortdesc Convert BibLaTeX-generated bibliography to bibitems relocated 1 -longdesc This is a workaround to convert BibLaTeX-generated bibliography -longdesc to bibitems. -containersize 1380 -containerchecksum 4d27fc2bc55a031f571096fed58757de74e5fcbdbb485b327d8a34c8033b2a2ac316b7257ea369d41373d887152a1a84201f28c817abdd2ca84716ebdc4e111a -doccontainersize 129140 -doccontainerchecksum b7f37db4271ea7fe0b6208cca2dfd66f7c2f70966081c85fb35d34f927690ae435574f566accdc0ee358c9f74920f18916bf558f3d97cc1f6a27f540d337d90d -docfiles size=38 +longdesc Some journals accept the reference list only as \bibitems. If +longdesc you use BibTeX, there is no problem: just paste the content of +longdesc the .bbl file into your document. However, there was no +longdesc out-of-the-box way to do the same for biblatex, and you had to +longdesc struggle with searching appropriate .bst files, or formatting +longdesc your reference list by hand, or something like that. Using the +longdesc workaround provided by this package solves the problem. +containersize 1728 +containerchecksum c5c80c9c9951ed57cbedb64976e96540dcbb7797e7af58e3cd983779863617f8deb4cca3b4223f6de2e1f4bd15940df02f6b87188e937b2b5a79ebcf2b1a068c +doccontainersize 224856 +doccontainerchecksum a44dcfab5daf60da858ad548e306732c7bd3bcd4121f9143f5bbb7150616edae5b42fabe301c7f3fa271bb6fe851276528304c801fa8d7c3aed7c41f5fbde91f +docfiles size=203 RELOC/doc/latex/biblatex2bibitem/LICENSE.txt RELOC/doc/latex/biblatex2bibitem/README.md details="Readme" RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-examples.bib + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-hyperref-result.pdf + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-hyperref-result.tex + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-hyperref.pdf + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-hyperref.tex + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe-result.pdf + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe-result.tex RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe.pdf details="Minimal working example" RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-mwe.tex + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-new-result.pdf + RELOC/doc/latex/biblatex2bibitem/biblatex2bibitem-new.pdf runfiles size=1 RELOC/tex/latex/biblatex2bibitem/biblatex2bibitem.sty catalogue-contact-bugs https://gitlab.com/Nickkolok/biblatex2bibitem/issues @@ -38844,7 +40477,7 @@ catalogue-contact-repository https://gitlab.com/Nickkolok/biblatex2bibitem catalogue-ctan /macros/latex/contrib/biblatex2bibitem catalogue-license lppl1.3c catalogue-topics bibtex-supp -catalogue-version 0.2.0 +catalogue-version 0.2.2 name bibleref category Package @@ -39085,26 +40718,25 @@ catalogue-topics bibtex-util name bibtex category Package -revision 57972 -shortdesc Process bibliographies for LaTeX, etc +revision 66186 +shortdesc Process bibliographies (bib files) for LaTeX or other formats 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. +longdesc natbib, as well). BibTeX knows nothing about Unicode sorting +longdesc algorithms or scripts, although it will pass on whatever bytes +longdesc it reads. Its descendant bibtexu does support Unicode, via the +longdesc ICU library. The older alternative bibtex8 supports 8-bit +longdesc character sets. Another Unicode-aware alternative is the +longdesc (independently developed) biber program, used with the BibLaTeX +longdesc package to typeset its output. depend bibtex.ARCH depend kpathsea -containersize 14908 -containerchecksum 9d695d2335d5cb1abf2810016f227e368bcd726d9cb05cf197df93b68a18415a5a7be17ec81d888ca5fb837960173951eef2d04d8abcd3dd6bccf33673dc4ac4 -doccontainersize 398220 -doccontainerchecksum f3c241a15108671934a8c05014d68dadfde6c87a00375b45c92b4924a48c5a342c202b71be05035313ee764c0bdc63ab84cc5d80b4d5eff2411562bba6f798a3 +containersize 14880 +containerchecksum 568a72b269dbcb0d5c723e346e8118a0ed923273460d9518891616cbf7b174b17cd75acff02f092176d71b6020483de75df20994bfb66c2cd46432c33d5ade3d +doccontainersize 398224 +doccontainerchecksum 4f95c010ded89688791e1115ce4e167740b43e9e48d596b2621e6c18b4529479da9441351b463946e7efa1e428cba3d60112c5f7a5e008733a00fc64050723a9 docfiles size=133 texmf-dist/doc/bibtex/base/README texmf-dist/doc/bibtex/base/btxbst.doc @@ -39128,8 +40760,8 @@ runfiles size=51 texmf-dist/tex/generic/bibtex/apalike.sty texmf-dist/tex/generic/bibtex/apalike.tex catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-home http://tug.org/bibtex -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-home https://tug.org/bibtex +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /biblio/bibtex/base catalogue-license knuth @@ -39138,166 +40770,158 @@ catalogue-version 0.99d name bibtex.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of bibtex -containersize 75964 -containerchecksum 88977eb07b3dc483e6de84bae5574d7392172c652c7bf9fbcdba73e9f2f13bc049b9f3c067ec3aa25c41e4b8ccebcd66ad2d6baaee593bf3b5d17abd17c432f0 +containersize 75804 +containerchecksum 22102515702f73b40ecc26ac1738121f28c78ee3acb987772aca8c2f2cf1a85cca581ec1e63225629ad8e3ff3682284e8a26e3eb37fe3e222ef6db35a0e29aed binfiles arch=aarch64-linux size=50 bin/aarch64-linux/bibtex name bibtex.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of bibtex -containersize 94692 -containerchecksum fbcf4e4ca4c17d6fa5a59d9c24be3dc78ec0a98962bd637f930ae74ba292b76a37fb254a9a60b863f1512e26addbacebef3f3b6d1fbf996de87feff9598cd62d +containersize 94824 +containerchecksum 253ae273220c5c16e45a16298cc00b605b809444155747a4e4ca13b5e7e86495eca4069915f54b5b968a1e7e16f92ffaac655126b786ea186c26da95c79764df binfiles arch=amd64-freebsd size=57 bin/amd64-freebsd/bibtex name bibtex.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of bibtex -containersize 69360 -containerchecksum edab61d915a2a95ef02c740935b1b5a54e07fcb750e0de14f5cd276835c7dc3a3f5cf647289bd12b6406bf7f84dff7490ba3e82fe19c33623c3493b103a071d5 +containersize 69612 +containerchecksum 1a8bc602a5eb728951f5bfa28d238841cdf60f428cb35799244e57c25b3ef93cd54ecc4e97fc95732865bf8715189887a11f685ae01a4b8c8129ad8e0f2abfd8 binfiles arch=amd64-netbsd size=53 bin/amd64-netbsd/bibtex name bibtex.armhf-linux category Package -revision 57957 +revision 65877 shortdesc armhf-linux files of bibtex -containersize 60136 -containerchecksum 3022c8790e5a562779258145af82a29d4cd25e6cf43719514cbd231fa433549c0e9b57ce5a987d43490ed5b7881abe79aa7ff5567ab6ff07ffe5d075bac1340e +containersize 60240 +containerchecksum a5ea0b0285992648765751990afd5c28bc93e200e28fad2eb4919ec3f358995b9b46da980d8366926637e65bba9d5dcc145ab92befdc46d1a6550ec4207228af binfiles arch=armhf-linux size=38 bin/armhf-linux/bibtex -name bibtex.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of bibtex -containersize 39484 -containerchecksum df5dd0b81040d99e48a9a48217403e9cd8fb4b511c66cf9aa8a559a1b0a4eea962551a798672e53fad322aaf838b7e5dcdd8a5fab22718157be421966284569b -binfiles arch=i386-cygwin size=29 - bin/i386-cygwin/bibtex.exe - name bibtex.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of bibtex -containersize 71028 -containerchecksum d93fbfca5a484fb23c9765154012c9fc7684c3effe63d959b489a241948f9d2e56417255ee16ab8670cb22c54c4abd28da6e83b022984ba76b6fe385d7364eb0 -binfiles arch=i386-freebsd size=47 +containersize 71904 +containerchecksum 38fec7e385447a714bdb43c1d1df5074ad44c7eb174674eeb3f54e9643abb946d49f8ef2301448e82b9863e868a1ed11c7d6c4a8f3dabcc5ad3b196e5cfa75a5 +binfiles arch=i386-freebsd size=48 bin/i386-freebsd/bibtex name bibtex.i386-linux category Package -revision 57878 +revision 65877 shortdesc i386-linux files of bibtex -containersize 71348 -containerchecksum 891c31041f751de8e720ad16a08e3d4f723b4a894183023ab287b7fcd932709218a2384042f58bb1620866eea2cf529b7cadd52119d83b87e5fdd47cbf260ff7 -binfiles arch=i386-linux size=47 +containersize 73200 +containerchecksum deeabc1a2291da694342adb197e6f00bb5ab0d952240569f141a953507d21ae7b8cfe051e1b75e7aa21152c362b3d2223e20d730f5084a3d7ed8ad0332dbfa51 +binfiles arch=i386-linux size=48 bin/i386-linux/bibtex name bibtex.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of bibtex -containersize 55920 -containerchecksum eaf25356073503420eccbae9f30fb7fb24928ee6206942cd695ca87bd3a42c68b238aed2ea960a7488af7f0912debccb697f1c93334fe1cb5260f125f0090614 +containersize 56048 +containerchecksum 148b981c9eaab83d838f9f9cb1bf3dcf13b0fb02b267f395fb0bfc44328abb7a8b6aa15a2d000ef09c5b959fb30c886a46cc6d33f0298d44f455144bbcb6e5c5 binfiles arch=i386-netbsd size=50 bin/i386-netbsd/bibtex name bibtex.i386-solaris category Package -revision 57938 +revision 65877 shortdesc i386-solaris files of bibtex -containersize 71288 -containerchecksum c6910536dd4be613f3d5c7244c1bf9e0c2dcdb79169341874146a9d3fa4f48835cf1da1d121e8de736879bf91e1ec89ed608af0411def2a6dde61a6e25ef968a +containersize 71404 +containerchecksum b07ad6d3163447a7253dac5b1d858dd8a173a531da9b236c4ade9c464b0cc71b5a6f49e7a59899da359b2d50c73d85b50eaf01a57cfebcdf35113432a61290ea binfiles arch=i386-solaris size=43 bin/i386-solaris/bibtex name bibtex.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of bibtex -containersize 177164 -containerchecksum 5200d479c1c68d86b58e8c067e69c830ce1b7bd8666939efc2d7eb8c23d47da0e18230072dbb2019926e4960ba9b72db181cb92244f7684de476a024196b9784 -binfiles arch=universal-darwin size=134 +containersize 178384 +containerchecksum 26cdad3336ef1232e1b88506ab041d4e18e11a4bd7b096b64f9b4c754c3d483cd21b72b672ffe30e55e40d264cb68d097a413ad5044258e9c55008526084d457 +binfiles arch=universal-darwin size=138 bin/universal-darwin/bibtex -name bibtex.win32 +name bibtex.windows category Package -revision 58783 -shortdesc win32 files of bibtex -containersize 41688 -containerchecksum a1f94e76d741b55b1be5bde2449b0c8c929a4f0be6d6b2dc9def0003bce2bb8a575b07eadf3834cf3bce8610b82c2a2d3a49d9940c7632f69eada0389680b1b4 -binfiles arch=win32 size=25 - bin/win32/bibtex.exe +revision 65891 +shortdesc windows files of bibtex +containersize 49668 +containerchecksum 8cbea33c56170ea6639892e652891fd33242e83e7271092e4aee8264ca4a7234d5dce79d1b71e041bb1f43b4e1d8471ed438504e6a7fbc14d5a962c9c5d3c050 +binfiles arch=windows size=29 + bin/windows/bibtex.exe name bibtex.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of bibtex -containersize 49300 -containerchecksum d17386503b3174e2a1d07aa3e20282a04a566c77c340313877354b8094f50e8b396ca7c4b79ff7b469bb7ae8ca212de6718e2af0d90d65bc53ca11b85fce46f0 +containersize 49156 +containerchecksum ea61bcc319a56a8ff285fb4c4e86838e176e35d7bf7925a3b4f9e203fedf03520b2267868feba6f5171c01168ad1f07ea3c0de6d082cec83724c7e36b8e83b9f binfiles arch=x86_64-cygwin size=29 bin/x86_64-cygwin/bibtex.exe name bibtex.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of bibtex -containersize 75464 -containerchecksum f2903d7a1601444ec119bf6e2ad809063fa5d7f97ab69808e508f7c1fcf767aeda4030a388187a7dc7ed4ae2ad091e5d85726e19a406b1d37b9d0118f50e847e +containersize 75584 +containerchecksum 901610beac4af25b1246aaa1e48683000c3e823df233ea773c599e32cc33d4f2fef2024e3174a0d1ff8025fd98f8213ada5c0087aa5958863413193b629f51eb binfiles arch=x86_64-darwinlegacy size=44 bin/x86_64-darwinlegacy/bibtex name bibtex.x86_64-linux category Package -revision 57878 +revision 65877 shortdesc x86_64-linux files of bibtex -containersize 74160 -containerchecksum 2ecd5725076d898a09ce0d4aa8a6dc575f8df1684418c243458d5746c760dfad25d57acaa18b84bde20e4788e76f4f5cb84505f1be2d85208327f9a2301a9350 -binfiles arch=x86_64-linux size=42 +containersize 74784 +containerchecksum de2e518a5494816bcef5bc5df8940f89e616dfe6ce3f1367509b54b50c7ad164edf8204ff5646d7117d4a51b79958b9f80a46895598e24c6a060bbb9c4e75a95 +binfiles arch=x86_64-linux size=43 bin/x86_64-linux/bibtex name bibtex.x86_64-linuxmusl category Package -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of bibtex -containersize 79040 -containerchecksum 50f60ff7f087156c0e69cc83176c96157e7a9fadcb05a60bc54c10a5bc7a78846efc1761ba2337c95d809c2d08785cf0a1f54bca04352c11379fab7a5a95742f -binfiles arch=x86_64-linuxmusl size=46 +containersize 79960 +containerchecksum 3a21ab9fa5210eab1da3946b433ca9c7cd9042b50348fe3aac7f5ef235511391da68a397c7f902338b8341455a3ecb126665694443cc7efdaf864bfb5054fd30 +binfiles arch=x86_64-linuxmusl size=45 bin/x86_64-linuxmusl/bibtex name bibtex.x86_64-solaris category Package -revision 57938 +revision 65877 shortdesc x86_64-solaris files of bibtex -containersize 84892 -containerchecksum 5bd3d16a28f2c4ff97a6ed3267d4bea35063cb1bdae4c400cdaeaa74a8170ce092d1be1ec7d47dbb36d7c1e3997070f2650e8575bd4d27e2a9c9c356dd8de4dd +containersize 85092 +containerchecksum 6e70145da12859b106ea862ecf635df1497a3cf60e7fb6d4aad2418ce11f31f7d5e8ff58b347387a1702bbac2646c13a20755295b19f32a98f5c801c534500be binfiles arch=x86_64-solaris size=51 bin/x86_64-solaris/bibtex name bibtex8 category TLCore -revision 52851 -catalogue bibtex8bit +revision 66186 shortdesc BibTeX variant supporting 8-bit encodings longdesc An enhanced, portable C version of BibTeX. Enhanced by -longdesc conversion to "big" (32-bit) capacity, addition of run-time +longdesc conversion to larger (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. +longdesc configuration file. Various examples are included. Originally +longdesc written by Niel Kempson and Alejandro Aguilar-Sierra, it is now +longdesc maintained as part of TeX Live. depend bibtex8.ARCH -containersize 9216 -containerchecksum 69f6b09fbed8a089e18ab7d39e352ad5a1e7512096a1806158ecb4df74822664b6620f3cffc12cb8a938b15a4000df2b46eadc0ff38c8de1d325539f01e8aff8 -doccontainersize 33164 -doccontainerchecksum d0863c43a5cbb87632a3513ffe75ab8a686647003366fbca1c9c168a4bb234f26078b260e1a3180f941e3eacf4717439a400df1bd180763aa43eec664009f25b +containersize 9328 +containerchecksum 27008a8ccf05b7f48f7668ea171c9d53063fc26c09ac4507a3eaa86eb22b94cbd70ba6c2b7a8d439d7978a3860be37733dcbc17f7cef930d06dc5a45a89c95d5 +doccontainersize 34420 +doccontainerchecksum c305fe0afcaab072ee07542b8bae8475ce205744500f81c6de400b2bcd7ac05ff65a025301319f80a668ed35d653105c0ec0ab392c0c893f5d76802a1806bd04 docfiles size=22 - texmf-dist/doc/bibtex8/00readme.txt - texmf-dist/doc/bibtex8/HISTORY + texmf-dist/doc/bibtex8/00bibtex8-history.txt + texmf-dist/doc/bibtex8/00bibtex8-readme.txt texmf-dist/doc/bibtex8/csfile.txt texmf-dist/doc/bibtex8/file_id.diz texmf-dist/doc/man/man1/bibtex8.1 @@ -39316,153 +40940,148 @@ runfiles size=36 texmf-dist/bibtex/csf/polish-csf/cp1250pl.csf texmf-dist/bibtex/csf/polish-csf/cp852pl.csf texmf-dist/bibtex/csf/polish-csf/iso8859-7.csf -catalogue-ctan /biblio/bibtex/8-bit +catalogue-alias bibtex8bit +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/bibtex-x/ +catalogue-contact-support https://lists.tug.org/biblio +catalogue-ctan /biblio/bibtex/bibtex-x catalogue-license gpl -catalogue-topics biblio -catalogue-version 3.71 +catalogue-topics biblio obsolete +catalogue-version 3.72 name bibtex8.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of bibtex8 -containersize 81496 -containerchecksum 7d659fae1bfa4251652a934f152e8d1891534a8fef59a8f594b3443f8ade30ffe86d51147816a27a4b2c2d4297e4b3df667549a58ebc0c5ec795167e1905cae3 -binfiles arch=aarch64-linux size=55 +containersize 81984 +containerchecksum 170aa09a57e1dae3a420685c68a135929355fd18b70aa626f9881515e909039b78256ced0056735849c098a6319d422072cc22132d9d42f2fec8d07cbb255f15 +binfiles arch=aarch64-linux size=57 bin/aarch64-linux/bibtex8 name bibtex8.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of bibtex8 -containersize 86012 -containerchecksum b75c78b8d4e496095319cba221546b1434193c96e3b6571283ab153498aedb3cc57035a4dda35430a889b11adb4160f979d7e8187cdd8927bfc9898b6135c525 -binfiles arch=amd64-freebsd size=53 +containersize 86628 +containerchecksum fe584e3911b5ed6cbb8b8a7d20f018a7ad57837360d6a41384baafcb1d85dc181f1dc70151c015a55123f063f2ee98be9073c87bcf5fee243728cb337dd9aa3d +binfiles arch=amd64-freebsd size=52 bin/amd64-freebsd/bibtex8 name bibtex8.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of bibtex8 -containersize 77980 -containerchecksum 5fbec3826a8b998851e9a2cab6c459e63dfe91b090a81b955e851c9c6e859f576131a3d54c80b31661d682683c2e99c6a83a069c24140835ca41a48f4893175e +containersize 78352 +containerchecksum 56d339990baae57d6d73506f34489b64d85a44c092b864866f2515a8a758c1dbbc90d3abefbff9ecf663c5050987f4a6721ac92aa6f7c328698b9e4e1be5ea22 binfiles arch=amd64-netbsd size=61 bin/amd64-netbsd/bibtex8 name bibtex8.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of bibtex8 -containersize 66856 -containerchecksum 227f44f07145967fdc64da1ea758db7b30c89d876682c33ec7d03da586d1f1a1c35d8f3271639787f8eb4e1bd56db40364f3765a01d0f175426a9e2257273eaa +containersize 67152 +containerchecksum 0ee9440d63538f3e38023dbe30ababe4d306e11787b54d0dcdef7e480383263fb0f28e45de51d7d27ee73353d30c88bfd3641584944a514489e70a841098d2c8 binfiles arch=armhf-linux size=43 bin/armhf-linux/bibtex8 -name bibtex8.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of bibtex8 -containersize 45828 -containerchecksum 2d5d41aeeced19cc7478f25f31b6f6d48d2cdd1cc529f8e01c02fa50313c14da20c25b68939803f8abdd979ed4f02e52925a11cb425d8fd4b62b624581dfbefb -binfiles arch=i386-cygwin size=34 - bin/i386-cygwin/bibtex8.exe - name bibtex8.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of bibtex8 -containersize 70160 -containerchecksum b03885610317512fce2ed111feb0b0b6325d0eb9279d4bab868ab46d2cd3bd4d0fdc00469ad537116d7ec199c974752e59e4fc846843bd979fcb8f0e2cdade50 -binfiles arch=i386-freebsd size=45 +containersize 71600 +containerchecksum 609d09fb21b5c0d3ddf35ca2b2901be63aff8660ab8e7959cf757fd623949b0518ff3bb1f25278ff6a0e75eff590dc84337e9608dba910d9ca26d3d2dd20e020 +binfiles arch=i386-freebsd size=46 bin/i386-freebsd/bibtex8 name bibtex8.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of bibtex8 -containersize 79132 -containerchecksum 7f7271251a7380a94baa1ab1a5309d5cf991c4636566c08cb75c7598572dcf69c4710ed48e0e4d1f718222ab726116cacb486f5465a0acbb01ec267ec154a7b6 -binfiles arch=i386-linux size=54 +containersize 80216 +containerchecksum 95af3ddd6ddc8f55055f3f0f2f9a805c428afbc530821d260f46ca91a8c3a7bd2c15881626a6b0c6233c45d2a9c56153d03365126b34de9d1f76323d64e67718 +binfiles arch=i386-linux size=55 bin/i386-linux/bibtex8 name bibtex8.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of bibtex8 -containersize 62284 -containerchecksum ac7616bf4b01b370448d819303da753cebfa95cfa902d7eeffed2fcde35b39695d8ba27312c160530add8f91aca2085ed74984f31112ea37ddd02ab638488b3e -binfiles arch=i386-netbsd size=57 +containersize 62640 +containerchecksum 260b9bf41cf6f09c8892bcb8fa344cb5010e9112112f20823f0a7c1aa3c16b77956b67ac0991881ea3162e941169940bec2a11c69145549a8b5c2c2db29a6897 +binfiles arch=i386-netbsd size=58 bin/i386-netbsd/bibtex8 name bibtex8.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of bibtex8 -containersize 76908 -containerchecksum 25171e5579c1012b20ca77708d69838e0165816d1ade7748e46a1f4e9ed9b07bab43d53ed8f60cd300ec630e9f0294eee8a6ff82714d414b10863dcfd0db4b16 +containersize 77292 +containerchecksum 76c054cb286595d1829e2026f140bf6a9c73b48076b78558b90e077cbe81d3013b73bd6dd5825bd86bce6c6982d8c810ecebf6bc34e37c4df6a09a11c1821963 binfiles arch=i386-solaris size=48 bin/i386-solaris/bibtex8 name bibtex8.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of bibtex8 -containersize 164264 -containerchecksum e01e55dae601e139d2524f350d2564198cd83b8500ca107e5816f34b78e55636b037ad98f87c5a717797baf0b52902823e64bfd1887eeaf151a5da81c1508050 -binfiles arch=universal-darwin size=126 +containersize 165704 +containerchecksum 4ba22431c51eb97d9fd1a3cec4881e415681400e75b279c5e58698ed39c1e8798328cc4802b4e9c9f9de43c7671f815c1a5ad207af50ee1f7aa766eebba3cb1e +binfiles arch=universal-darwin size=130 bin/universal-darwin/bibtex8 -name bibtex8.win32 +name bibtex8.windows category TLCore -revision 58783 -shortdesc win32 files of bibtex8 -containersize 143584 -containerchecksum dce6e03128ff9dcd5a06d06765576808b55c61be9db36788816a60a2fcac75b0b8a586477e4df8577b7b04d79b2e38a45121d962f8270e3ca102803496561031 -binfiles arch=win32 size=80 - bin/win32/bibtex8.exe +revision 65891 +shortdesc windows files of bibtex8 +containersize 169276 +containerchecksum 49cbce1a439581952c9f4089662388fc003cc521ac0a710e71a137580e69ef53adf08b8de7e189c70acd50b802631c73414a9b6f628d1dbbc11acd779e6cacb5 +binfiles arch=windows size=95 + bin/windows/bibtex8.exe name bibtex8.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of bibtex8 -containersize 52696 -containerchecksum 87d385caa9f84c2552a2a6f93819c17c534a3610bf67c8b551940b5015af4cf89fe234ede3d884b07d04205518417b72d791ece8b11b5bd58c0b84b7fde0647c +containersize 53400 +containerchecksum daf2afe6af3aea55c26d7a48f1a20c2202cf18fbcd36d87c4980f32ce3dc695a9d1788bc1933066be118fb76fb5350d9c0a8d77861f97e9660d2a2c5bcd921c2 binfiles arch=x86_64-cygwin size=34 bin/x86_64-cygwin/bibtex8.exe name bibtex8.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of bibtex8 -containersize 82776 -containerchecksum 65e55c2ea2f784a963e5f7f96c8c94cd782a20a0b873864fc1507cfeb9064853a60fe1cee759e4de8f129c96110c489de58495c596185a8675e37a333ecb1eaa +containersize 83212 +containerchecksum 8912c15d767db5d357c3bb1000fdf65af630ce8ddecdac386e3c968ce92d0a8ff1d684ca86c9401289fcaa4ce5d17a8a58d25e536795166b0927c4d3ddcdfc7f binfiles arch=x86_64-darwinlegacy size=50 bin/x86_64-darwinlegacy/bibtex8 name bibtex8.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of bibtex8 -containersize 80932 -containerchecksum 70cfca29e10abaabdb9fdbe45ab7a185281e8f6bc31a1266759e13a286bd520d54d922454aafd9f2a9a9d14e134c66b445f22427bd2a1cdb6a5ff277f8b56bef -binfiles arch=x86_64-linux size=48 +containersize 81384 +containerchecksum f0e7d7d9e3a82bab2a1f228dc4c8f7087e8bbca54afe33922b6bea7ec0e7d60de258dc3c3b45a133f50459a9e3fdc3086a2c7e69d8ea22cc4c37ef5258a7b68d +binfiles arch=x86_64-linux size=49 bin/x86_64-linux/bibtex8 name bibtex8.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of bibtex8 -containersize 87072 -containerchecksum d3e6b0a08f1ec139673f7c7673a76ed4acf219100bdf4fd7f2cf52b223f46540a5611ed145005db09786cf4d6b5b2dcaad443a5e9d9c4b884ebc6ab42b4ab001 -binfiles arch=x86_64-linuxmusl size=52 +containersize 86896 +containerchecksum 5f386ab384a2e6b5d79595f2f833e6c77688a3b2ed15accab32f87d67961232432c51e75ff0c81b5e88c24e6c62fb7c34af3de4987dc98cc6f9db1a3e33b4b71 +binfiles arch=x86_64-linuxmusl size=51 bin/x86_64-linuxmusl/bibtex8 name bibtex8.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of bibtex8 -containersize 90072 -containerchecksum 44238270d953ac5fde6b6fd91e5ca6c305947ee39b47dd6cf6e3a02ae2a41e1d06de46b9a993510a968fa42468a95cc02bf7d130192f2ec4c02f5619c8db821b -binfiles arch=x86_64-solaris size=56 +containersize 90364 +containerchecksum 6460a649ee67b9a121482fd921158d8881d9759cf0e060b4254dec07c3fb2314f7a2582712d188bd2e3c6810fbb88aea04e85a7a8a3e196a061d792c9705bb4f +binfiles arch=x86_64-solaris size=57 bin/x86_64-solaris/bibtex8 name bibtexperllibs @@ -39560,164 +41179,167 @@ catalogue-version 1.6 name bibtexu category TLCore -revision 52851 -shortdesc BibTeX variant supporting Unicode (UTF-8) +revision 66186 +shortdesc BibTeX variant supporting Unicode (UTF-8), via ICU +longdesc An enhanced, portable C version of BibTeX. Unicode is supported +longdesc via the ICU library. Originally written by Yannis Haralambous +longdesc and his students, and derived from bibtex8, with substantial +longdesc updates from the Japanese TeX Development Community, it is now +longdesc maintained as part of TeX Live. depend bibtexu.ARCH -containersize 292 -containerchecksum 9f1e27f1d7a76700aaa4f0f19c4e999070dbce873203b80e3ce5d2f4ed14c9b685515b6c648ece8942ba429d698f66f492b58373f348bcfef2523ffec270f466 -doccontainersize 67480 -doccontainerchecksum 0c0f0db13c18029bc822c5cf82b358e7784992f5799e03f1312a550ae3d40d4c59a01bda0355698f7ebbfb0488a426f20833d2b075675a83b5ae01e4a949c4a4 -docfiles size=23 - texmf-dist/doc/bibtexu/README +containersize 620 +containerchecksum fce13fca4fd3d65b04a451365c5df50e4990bb62b0e8f878b712e9062f7d240a33ca6cfdbccd2ad2df0179be1cbaf2421ca32bdb745f3b9d9c67829d4c739916 +doccontainersize 72312 +doccontainerchecksum 0f200681fd81074a5f23477ff99ac9e08e2d123056544edf7bc5b7b7645c22b74b66404028133037b5e47ffc4ff7c0059a1ed375ed0d3e4d211632c44f37072c +docfiles size=24 + texmf-dist/doc/bibtexu/README details="Readme" texmf-dist/doc/bibtexu/examples/test.bbl texmf-dist/doc/bibtexu/examples/test.bib texmf-dist/doc/bibtexu/examples/test.pdf texmf-dist/doc/bibtexu/examples/test.tex texmf-dist/doc/man/man1/bibtexu.1 texmf-dist/doc/man/man1/bibtexu.man1.pdf +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/bibtex-x/ +catalogue-contact-support https://lists.tug.org/biblio +catalogue-ctan /biblio/bibtex/bibtex-x +catalogue-license gpl +catalogue-topics biblio +catalogue-version 3.72 name bibtexu.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of bibtexu -containersize 5584648 -containerchecksum 018c5774b4eb1ad5cdd50cd8845c6490f6a8d6ac284a4cb0091d66066ffdb1af83f5ec16268f1400060536462b36d9fb43cfc562c81970b51b3342264c9f9f62 -binfiles arch=aarch64-linux size=5093 +containersize 5926808 +containerchecksum eacdd930c9f265a4675ea6f3614f194db8e40e0a591600f99b0d85c2d57bac4f4a8f3681af79cff677015c1bf5440c123682c652a2a693ddd310eaf536682516 +binfiles arch=aarch64-linux size=5521 bin/aarch64-linux/bibtexu name bibtexu.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of bibtexu -containersize 5575912 -containerchecksum c7bb27ac24ab61d66f38db79ef3537dadfa2ed02ddf9bb74d42ed7f71c0ac6695e94606b353522581441844b2ef585bdb3baeaf22e358dc439352ebca4d5182a -binfiles arch=amd64-freebsd size=5041 +containersize 5919080 +containerchecksum 2f4b82e40dacda708ee04f2ae504d65ec8a3fb8c979045bce024b43f094cac39531bd1ecee6c0e46a092fce576f7ce2a01026f21a1ea30ee02774213f25e9530 +binfiles arch=amd64-freebsd size=5469 bin/amd64-freebsd/bibtexu name bibtexu.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of bibtexu -containersize 5540660 -containerchecksum b5c3f6613b75ea32f65e54429e9c8835ab4e758b08efb4f51a8bbc9394e4e36ce0e4dfedbe2267d8faaa0a027cb31560ff191d65ee3d76fc22070ab77a2fe69a -binfiles arch=amd64-netbsd size=5137 +containersize 5900888 +containerchecksum 82cd36ac11000a41687d724608e51f1360e515247bfc1237a780f5617cfb1d48bbf874b4875ff56f76c67820fe2f427e281b93da39c1c6222c57829ae4518038 +binfiles arch=amd64-netbsd size=5560 bin/amd64-netbsd/bibtexu name bibtexu.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of bibtexu -containersize 5489928 -containerchecksum 7f860752ce8919fb828e35b8cb84ad56e3dd961dace3dc712d36916ac255a17afb8fb58a60e884acaa860636f0eca34cc679652bcc521fcf2715d7b6fc4ec519 -binfiles arch=armhf-linux size=4988 +containersize 5840128 +containerchecksum 61268d38722551b9335c8caec820f579b492d3498953081c2e2ea6608159730e5b728d6a5820e51dfb5b6f6ee6f59f7c95a0c696734dbece8c747df462224c93 +binfiles arch=armhf-linux size=5423 bin/armhf-linux/bibtexu -name bibtexu.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of bibtexu -containersize 5563796 -containerchecksum 79a4cd20b005719160ef7bcf76a4806e1d72dee63a40a20e6c92889344d03f073816815f976d8df7a010c03bb3403b4c43b26af88ea027a573e223baaa9ee82e -binfiles arch=i386-cygwin size=5051 - bin/i386-cygwin/bibtexu.exe - name bibtexu.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of bibtexu -containersize 5533416 -containerchecksum a8afa698f11cdc46a1379c931eb5532486f4a89377cecf67e39d8d2d68f0595c54f5c92cc42a63a5a1312bbb2020995811c9a1855bcf3228a34c3d327757cc4d -binfiles arch=i386-freebsd size=5000 +containersize 5881184 +containerchecksum 5e8e5786c43f98611c0e5d5e463f81d880653022e3fdcb5ce6259d4586c7ef6c634204ac23ff8d88997f704d6360ee32bd5bc15e6518bd62aa0f87afe8260bf8 +binfiles arch=i386-freebsd size=5436 bin/i386-freebsd/bibtexu name bibtexu.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of bibtexu -containersize 5696092 -containerchecksum a83353362b22b16ab618ed40b92d8c1b810fc2c42c363441f1c38fb49b4267a825f3cf5262247b949a31f3ca91f867027ced2f0d2772d7948c147510623d83c3 -binfiles arch=i386-linux size=5136 +containersize 6141816 +containerchecksum 2d7afe4dec55e4c0aa0405e5b5bf5fce6945ddbcc9c66efcf5797d37bb7e7492ae8345eba3c82f4bb2f0d1c82e1a0b613c58c29378514b7dbd33bd2f7e89a3f3 +binfiles arch=i386-linux size=5671 bin/i386-linux/bibtexu name bibtexu.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of bibtexu -containersize 5504740 -containerchecksum 15128a53718f024114f0885e28a9aac5a759be348f2e41d4f0eaa0c84ba83d5e4c8f99fab8786516d29ea29cf1fc5216b5525c82c220d4a2892b5b3d64fe70e5 -binfiles arch=i386-netbsd size=5093 +containersize 5863892 +containerchecksum d00786d2163a4cc826846bbcf3682190d35653758685d086617b343611ff9b7dfecff6fd0df94968df5aae290b5b7f8b1c33fda954e74edcc6b16cf8b397851f +binfiles arch=i386-netbsd size=5521 bin/i386-netbsd/bibtexu name bibtexu.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of bibtexu -containersize 5872712 -containerchecksum c4253edf8c12ec003660c90097feec306399c4caadb18b0608ec0f7f3dd9b6936aa790392df9936b71b1661f50f4e91fb97b44b2eb90a7c7cadd78789b298c0a -binfiles arch=i386-solaris size=5373 +containersize 6230404 +containerchecksum b67861985e576d7838030954ef8f15e7122dca0db57083c0ccc9d39bf87da05d53b7c4ee39956b9b05b952e09b3766f42e20a39f46488e1e546d3337753b16d7 +binfiles arch=i386-solaris size=5838 bin/i386-solaris/bibtexu name bibtexu.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of bibtexu -containersize 11424936 -containerchecksum 99b0d9aeab66603fd114ffde0b4e66f05342acfc9626c254815505da51f78a5287cf234b73170bd46de749055a4f911ee800474dd917d142dabbcc3413a280a2 -binfiles arch=universal-darwin size=10143 +containersize 12129212 +containerchecksum 308b0c1a7fdaeeef4e924c08d94496ea1dd1d4ba000d45902bd65200d91435b16ee5ae704da8ad28172b508a7f8b685f2ba7269798bd16ddcc8b3a66fb98c630 +binfiles arch=universal-darwin size=11018 bin/universal-darwin/bibtexu -name bibtexu.win32 +name bibtexu.windows category TLCore -revision 58783 -shortdesc win32 files of bibtexu -containersize 586696 -containerchecksum c7566dd1cae1f86246f1ab5b22452d4b32aec00ff9167c2feb378eda87d2728732e1e6f5cf8d33e0e8f12ed92d6ded00102aad9d2e2985dcc48b18c115ca7aef -binfiles arch=win32 size=366 - bin/win32/bibtexu.exe +revision 65891 +shortdesc windows files of bibtexu +containersize 536776 +containerchecksum e3e5a40889465e0ba1e24632571823e2d5f63e8ddaf40b630857dd2f50418efb2db62cce2d6596f3fcd7a05288ceaba861734500e2bc357843beaba6ce2dbc40 +binfiles arch=windows size=353 + bin/windows/bibtexu.exe name bibtexu.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of bibtexu -containersize 5555712 -containerchecksum 7a9a13b21f466c016812d17749e003e0bb96b7dc41cfedb82c254be92a147d8e22769109b2c8fa467c9e15712fbdde8d97e442160b3daef94625b34f67676d30 -binfiles arch=x86_64-cygwin size=5025 +containersize 5893492 +containerchecksum b497f96614bbb3714ffd1096cb9c76da660e853861df5bbb53e99906b149a71ec18a9a2a04fddbb58e3ea1b3369deb28b702f6e1d3cdd2b59990074ce54ab5b5 +binfiles arch=x86_64-cygwin size=5457 bin/x86_64-cygwin/bibtexu.exe name bibtexu.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of bibtexu -containersize 5536668 -containerchecksum 59c84400dbb7750a0dbdf1bf3db443cac7deb0b06865cd3ffdb4672f76ef84bb481c8a8d4d66a4932346ce5ce15f24f201e05a29c887a942fc64897e8f3ca443 -binfiles arch=x86_64-darwinlegacy size=5007 +containersize 5883124 +containerchecksum f9e0a00c385656c4d60331a3cd13be13ad78d6d2b9a1915674206ae36f9e3a122b48e4effe91101f645da5920fddf4472929c5d81e492788a644fb3f2a67b347 +binfiles arch=x86_64-darwinlegacy size=5441 bin/x86_64-darwinlegacy/bibtexu name bibtexu.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of bibtexu -containersize 5665232 -containerchecksum 0edac6d2ebfe68ddf58db8431d0914b31abe9b7cbd25d456b63718dce5fb3693b6bdfc1f6e79899a026905869c32a9d66ce4aaecbce47f50613256243f6fc533 -binfiles arch=x86_64-linux size=5113 +containersize 6166456 +containerchecksum 511f5442ea88a795e635aac6de826a3eed908ae4ab291227d8a71cb8b0cb9689b66cf53722d2e9b44181c41ac2516f9d1b542cc6cfe8f2d1df5e0d28d3ff9590 +binfiles arch=x86_64-linux size=5695 bin/x86_64-linux/bibtexu name bibtexu.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of bibtexu -containersize 5665972 -containerchecksum 099569c5719ab560c1a7d18d18bae9588e082f6a1d08e56f6496f5b372066080be7874996a6fcfcd33330376b56fea693d4b1eba0b89ca555e421246de94c3d2 -binfiles arch=x86_64-linuxmusl size=5125 +containersize 6066520 +containerchecksum aa5ae5c71b9a2e26806042a27cef263dad1b75d71c17753f2709be6ce282aa128a511e6fa5550874c5b53f08e6fb98c85fc8e8ac875a22656b2461da5f58ea51 +binfiles arch=x86_64-linuxmusl size=5622 bin/x86_64-linuxmusl/bibtexu name bibtexu.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of bibtexu -containersize 5910900 -containerchecksum 643dad3d5a1cb59125c236f95782cf47ca4970f57e5be64b7c59b43c70cdccf3a7f287e16f4f47273db0b57427806d9de592f4c3443374c053f8643645f41c9a -binfiles arch=x86_64-solaris size=5438 +containersize 6243548 +containerchecksum 04920b82aac87b9f65d35ffa20a97a101d9be2c1fc7fb0ac4887bb6e6decdb946767bc2e2a988a4d4478637aeb79abb8943676b601c0dea9f682dcbcdf01e44f +binfiles arch=x86_64-solaris size=5869 bin/x86_64-solaris/bibtexu name bibtopic @@ -39824,17 +41446,17 @@ catalogue-version 2.2 name bidi category Package -revision 55193 +revision 65572 shortdesc Bidirectional typesetting in plain TeX and LaTeX, using XeTeX relocated 1 longdesc A convenient interface for typesetting bidirectional texts with longdesc plain TeX and LaTeX. The package includes adaptations for use longdesc with many other commonly-used packages. -containersize 116328 -containerchecksum dba36e375340a6d852eba98b83ad8e0821e684424a53069a4eb21acad43ba32cba11a68b971fa8bbbc6380a89c2432916e8a048de85cd5ab377d7811570a9be6 -doccontainersize 3737268 -doccontainerchecksum 16e8062ffec0b64faaa2c1f4916c8decb38510af7279607d11ce0537cdbdd57dd90e9901e47b7396758b9653321f8e14716a809740f5d4c0f610358899ce333d -docfiles size=1026 +containersize 132944 +containerchecksum b4d94dc0e539c0c0e4d91586ff9d121fe58af5c4729c603d6eb22f16a19e5edbea722b7576faf2b56a46f6fc68fc3e1cdc3c2f1941bba51a60337f091a248045 +doccontainersize 4231356 +doccontainerchecksum 002f65b1fff0798a2bdb87999910c848d94ce1e03c5dd4e61fd173cde8bdb5e153086616274cc1d97b711ee9a2d0d11b06e11de303d03e38ff577c2f941e1caa +docfiles size=1167 RELOC/doc/xelatex/bidi/README details="Readme" RELOC/doc/xelatex/bidi/bidi-bibitem.pdf RELOC/doc/xelatex/bidi/bidi-doc.pdf details="Package user documentation" @@ -39859,9 +41481,9 @@ docfiles size=1026 RELOC/doc/xelatex/bidi/test2-colortbl.tex RELOC/doc/xelatex/bidi/test2-wrapfig.tex RELOC/doc/xelatex/bidi/test3-wrapfig.tex -srccontainersize 133892 -srccontainerchecksum bbdbf08f87deff3ba6ff97869bcfb36b996f2985f4b28b4f598ea76827242d54b3e319379a9b027c2a6790f86e4503edf7d3f7e131f6ee34d48cfb042a8eed80 -srcfiles size=242 +srccontainersize 149772 +srccontainerchecksum e43b88ae4423bb1075a432f9034bf51ebe403bf5e5b8c0ab899e49a46257e45228b65ea4b0150542748830c74e3d9cbc59e9df49d75fdaf2fabc0b33b0a59714 +srcfiles size=288 RELOC/source/xelatex/bidi/bidi-doc-intro.ltx RELOC/source/xelatex/bidi/bidi-doc-latex-basics.ltx RELOC/source/xelatex/bidi/bidi-doc-latex-pkgs.ltx @@ -39874,7 +41496,7 @@ srcfiles size=242 RELOC/source/xelatex/bidi/bidi-doc.ltx RELOC/source/xelatex/bidi/bidi.dtx RELOC/source/xelatex/bidi/bidi.ins -runfiles size=293 +runfiles size=367 RELOC/tex/xelatex/bidi/adjmulticol-xetex-bidi.def RELOC/tex/xelatex/bidi/algorithm2e-xetex-bidi.def RELOC/tex/xelatex/bidi/amsart-xetex-bidi.def @@ -39888,6 +41510,37 @@ runfiles size=293 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/beamer-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaseauxtemplates-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaseboxes-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbasecolor-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbasecompatibility-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaseframecomponents-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaseframesize-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaselocalstructure-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbasemisc-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbasenavigation-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerbaseoverlay-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemecircles-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemedefault-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemefocus-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemeinmargin-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthememetropolis-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemerectangles-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerinnerthemerounded-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemedefault-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemefocus-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemeinfolines-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthememetropolis-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthememiniframes-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemeshadow-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemesidebar-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemesmoothbars-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemesmoothtree-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemesplit-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerouterthemetree-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerthemeHannover-xetex-bidi.def + RELOC/tex/xelatex/bidi/beamerthemeSingapore-xetex-bidi.def RELOC/tex/xelatex/bidi/bidi-logo.pdf RELOC/tex/xelatex/bidi/bidi-media9.sty RELOC/tex/xelatex/bidi/bidi-perpage.sty @@ -39941,6 +41594,7 @@ runfiles size=293 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/footnotebackref-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 @@ -39956,6 +41610,7 @@ runfiles size=293 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/lscape-xetex-bidi.def RELOC/tex/xelatex/bidi/mathtools-xetex-bidi.def RELOC/tex/xelatex/bidi/mdframed-xetex-bidi.def RELOC/tex/xelatex/bidi/memoir-xetex-bidi.def @@ -39965,12 +41620,15 @@ runfiles size=293 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/nicematrix-xetex-bidi.def RELOC/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def RELOC/tex/xelatex/bidi/ntheorem-xetex-bidi.def RELOC/tex/xelatex/bidi/overpic-xetex-bidi.def RELOC/tex/xelatex/bidi/pdfbase-xetex-bidi.def + RELOC/tex/xelatex/bidi/pdflscape-xetex-bidi.def RELOC/tex/xelatex/bidi/pdfpages-xetex-bidi.def RELOC/tex/xelatex/bidi/pgfcorescopes.code-xetex-bidi.def + RELOC/tex/xelatex/bidi/pgfsys.code-xetex-bidi.def RELOC/tex/xelatex/bidi/picinpar-xetex-bidi.def RELOC/tex/xelatex/bidi/plain-xetex-bidi.def RELOC/tex/xelatex/bidi/pstricks-xetex-bidi.def @@ -39983,7 +41641,6 @@ runfiles size=293 RELOC/tex/xelatex/bidi/rotating-xetex-bidi.def RELOC/tex/xelatex/bidi/scrartcl-xetex-bidi.def RELOC/tex/xelatex/bidi/scrbook-xetex-bidi.def - RELOC/tex/xelatex/bidi/scrlettr-xetex-bidi.def RELOC/tex/xelatex/bidi/scrreprt-xetex-bidi.def RELOC/tex/xelatex/bidi/sidecap-xetex-bidi.def RELOC/tex/xelatex/bidi/soul-xetex-bidi.def @@ -40004,16 +41661,18 @@ runfiles size=293 RELOC/tex/xelatex/bidi/wrapfig-xetex-bidi.def RELOC/tex/xelatex/bidi/xcolor-xetex-bidi.def RELOC/tex/xelatex/bidi/xltxtra-xetex-bidi.def -catalogue-contact-bugs https://github.com/persiantex/bidi/issues -catalogue-contact-repository https://github.com/persiantex/bidi +catalogue-contact-announce https://github.com/kvafa/bidi/discussions/categories/announcements +catalogue-contact-bugs https://github.com/kvafa/bidi/issues +catalogue-contact-repository https://github.com/kvafa/bidi +catalogue-contact-support https://github.com/kvafa/bidi/discussions catalogue-ctan /macros/xetex/latex/bidi catalogue-license lppl1.3c catalogue-topics typesetting xetex bidi class -catalogue-version 36.3 +catalogue-version 39.7 name bidi-atbegshi category Package -revision 35154 +revision 62009 shortdesc Bidi-aware shipout macros relocated 1 longdesc The package adds some commands to the atbegshi package for @@ -40021,11 +41680,11 @@ longdesc proper placement of background material in the left and right longdesc corners of the output page, in both LTR and RTL modes. The longdesc package only works with xelatex format and should be loaded longdesc before the bidi package. -containersize 1260 -containerchecksum 1295c87c038683212deaf52a4436bb6adc2a0cc0220b6767e770aa909d88eaeda4a0bd2dec739a2415745609aaec78cdd91d4949f90663323aeec63cefd45d01 -doccontainersize 66784 -doccontainerchecksum 6199c4d5b6064244c2fd38d8a0d6c4eac3c790cc786625502d89a5a8a2426f7182cc0e7c4b70513971a0cb4b1230bdbd1382c05762f6537a63a34fa4e79c020d -docfiles size=24 +containersize 1388 +containerchecksum 5b16cfee9c71927cff133db3b967dc835634553d0980f74164fe8996ef86c3529439e85e00678219879cab41bde2027f3258b2862906b58634713e4b7d16c515 +doccontainersize 160664 +doccontainerchecksum 05b8118cbc59f06aeb87ab3b5b6a7f7a14dd23543c9d45621352ceec58998601a97af31bb6b0c999047efb362c24508f769be3c2e483c21a814b8ff35bd0bb96 +docfiles size=57 RELOC/doc/xelatex/bidi-atbegshi/README details="Readme" RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.pdf details="Package documentation" RELOC/doc/xelatex/bidi-atbegshi/bidi-atbegshi-doc.tex @@ -40039,12 +41698,12 @@ docfiles size=24 RELOC/doc/xelatex/bidi-atbegshi/test-foreground-RTL.tex runfiles size=1 RELOC/tex/xelatex/bidi-atbegshi/bidi-atbegshi.sty -catalogue-contact-bugs https://github.com/bidi-tex/bidi-atbegshi/issues -catalogue-contact-repository https://github.com/bidi-tex/bidi-atbegshi +catalogue-contact-bugs https://github.com/tex-persian/bidi-atbegshi/issues +catalogue-contact-repository https://github.com/tex-persian/bidi-atbegshi catalogue-ctan /macros/xetex/latex/bidi-atbegshi catalogue-license lppl1.3 catalogue-topics bidi xetex -catalogue-version 0.1 +catalogue-version 0.2 name bidicontour category Package @@ -40275,6 +41934,26 @@ catalogue-ctan /macros/latex/contrib/bigints catalogue-license lppl catalogue-topics maths +name bilingualpages +category Package +revision 59643 +shortdesc Typeset two columns in parallel +relocated 1 +longdesc This is a simple wrapper for the paracol package for setting +longdesc two-column parallel text. +containersize 664 +containerchecksum e7d92cd1e11e1604f94b3a825953ed1f876a39dce3dd383e7ea1e4e166b9ffb21786911f4b408ab5d53e6f770225176251096ca9df0a187feb530a27ad167b5c +doccontainersize 700 +doccontainerchecksum bcbd9f48dad1b84c96fef7d6b5e0a343a261a20ff35434c5e01d4b200229764adff383f2a718c6cbd89e4b208e6de1c403fd7c614dc1c247bc5a344cd3f3d504 +docfiles size=1 + RELOC/doc/latex/bilingualpages/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/bilingualpages/bilingualpages.sty +catalogue-ctan /macros/latex/contrib/bilingualpages +catalogue-license lppl1.3c +catalogue-topics parallel +catalogue-version 1.0.0 + name binarytree category Package revision 41777 @@ -40408,22 +42087,21 @@ catalogue-topics biology name biolett-bst category Package -revision 42217 +revision 66115 shortdesc A BibTeX style for the journal "Biology Letters" relocated 1 longdesc This package provides a BibTeX style (.bst) file for the longdesc journal "Biology Letters" published by the Royal Society. This longdesc style was produced independently and hence has no formal longdesc approval from the Royal Society. -containersize 5696 -containerchecksum e593f073daea4a8326d0a472999c128f511becde100c5dbedd540fd6ea116c5585b2d3673165ed39abf1942fb66c8372ca1961cef90501244f5320119117af05 +containersize 5648 +containerchecksum 35fa3e7a46706c715783b10997888a45cfe6f84b465562f894eb9914915e608f420b631e9d4e7fabe3d3d83424c089288c848ee34cae5cd08d1d778e4ad64155 doccontainersize 960 -doccontainerchecksum 7b3f9666225849463683a38a3ccb4e5bc9c0869312d31173f48776c2b209eb269309699b2173c2eb5fc9163baabefd1bf6cf288ca683142285dda6f0c6d95b61 +doccontainerchecksum 2a839dfad925ca94f26bada0d14fecdd7c096d3c99e903a57e4a1d093b2d1b9cf8770974aa1ac51baa9759c68e2a4fdd6efbc861c5bdebaea4cb523c00662487 docfiles size=1 RELOC/doc/bibtex/biolett-bst/README.txt details="Readme" runfiles size=7 RELOC/bibtex/bst/biolett-bst/biolett.bst -catalogue-contact-home http://www.isoptera.ufv.br/ catalogue-ctan /biblio/bibtex/contrib/biolett-bst catalogue-license lppl1 catalogue-topics bibtex-sty journalpub biology @@ -40467,40 +42145,43 @@ catalogue-version 0.1 name bithesis category Package -revision 57388 +revision 66366 shortdesc Templates for the Beijing Institute of Technology relocated 1 longdesc This package establishes a simple and easy-to-use LaTeX longdesc template for Beijing Institute of Technology dissertations, -longdesc including general undergraduate research papers and master's -longdesc theses. -containersize 3572 -containerchecksum 71f653b8fc691e24943605f2ab3bc9ce86c399302283382f34be8364ad4ffb39edc64a7e17e1b3ef81d34c3977290032739d4f38702397c70679693c22cae577 -doccontainersize 218936 -doccontainerchecksum 4c39f70287765a61ec3819223bf61aed3c3035b646c9a00df456160307dc5be962bbbff64383c79baa903cabe566405639672d669fc505efe6883a64638f8b66 -docfiles size=61 - RELOC/doc/latex/bithesis/README-zh.md details="Readme (Chinese)" - RELOC/doc/latex/bithesis/README.md details="Readme (English)" - RELOC/doc/latex/bithesis/bithesis.pdf details="Package documentation" +longdesc including general undergraduate theses and master theses. +containersize 23172 +containerchecksum 06a8a0aec017d0990d312306d7af3ad698c5d589fa52dcd8578b973b38b1ce25d6af2ffa529c244d8048740cfe2c675b13b452c9818448f3c77fda6a731c7175 +doccontainersize 1061240 +doccontainerchecksum 2db4ecbc02861b2f13c6387a60fada0d1f0d82a6ba0fcd309026e52bf7413c9c9e5ab8b8884976eeab7a1eafadd6a8d03bb9bb69118ee0c96276aeb1852a93db +docfiles size=270 + RELOC/doc/latex/bithesis/README.md details="Readme" + RELOC/doc/latex/bithesis/bithesis.pdf details="Package documentation" language="zh" RELOC/doc/latex/bithesis/contributing-zh.md RELOC/doc/latex/bithesis/contributing.md RELOC/doc/latex/bithesis/dtx-style.sty -srccontainersize 9340 -srccontainerchecksum 681c9cda9aa111f809c33fccffd567c846fd13afddd5a09bb81d69390adc0ff6d1870b68f4a141e5ebbd7d83846423a0c1d21f43350b0c55cde1973fd2a9437c -srcfiles size=8 +srccontainersize 42484 +srccontainerchecksum 8656b5f2306fdcedb6bde2ecab7c57929a6123fce7af0b85434b7ebb7afa6fae0372c66df46f1f0b79326b7ccf023be8dfcb09b5c47c2c9569029291ef8d1dcc +srcfiles size=51 RELOC/source/latex/bithesis/bithesis.dtx RELOC/source/latex/bithesis/bithesis.ins -runfiles size=4 +runfiles size=33 RELOC/tex/latex/bithesis/bitart.cls + RELOC/tex/latex/bithesis/bitbeamer.cls RELOC/tex/latex/bithesis/bitbook.cls + RELOC/tex/latex/bithesis/bitgrad.cls + RELOC/tex/latex/bithesis/bithesis.cls + RELOC/tex/latex/bithesis/bitreport.cls catalogue-contact-announce https://github.com/BITNP/BIThesis/releases catalogue-contact-bugs https://github.com/BITNP/BIThesis/issues catalogue-contact-home https://bithesis.bitnp.net catalogue-contact-repository https://github.com/BITNP/BIThesis -catalogue-ctan /macros/latex/contrib/bithesis -catalogue-license lppl1.3 -catalogue-topics class dissertation chinese -catalogue-version 1.0.1 +catalogue-contact-support https://github.com/BITNP/BIThesis/discussions +catalogue-ctan /macros/unicodetex/latex/bithesis +catalogue-license lppl1.3c +catalogue-topics class dissertation doc-templ chinese expl3 +catalogue-version 3.4.2 name bitpattern category Package @@ -40558,7 +42239,7 @@ catalogue-version 1.3 name bitter category Package -revision 56026 +revision 64541 shortdesc The Bitter family of fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX @@ -40567,11 +42248,11 @@ longdesc for Huerta Tipografica. Bitter is a contemporary slab-serif longdesc typeface for text. There are regular and bold weights and an longdesc italic, but no bold italic. execute addMap bitter.map -containersize 191600 -containerchecksum e624523e0e46340a1fd4ecb3db0487bac906169dc811886d26783b453a477605618cf211584c5aa44887f39d5d97ca567afee9f5f8fe6443284467f136d25588 -doccontainersize 16564 -doccontainerchecksum d4fc5b7c62dc834cfab6771010abf0e38000ec1a07447237288c9fa1747643dcff158d02707746d2965226049e5decc6af64a66ab8a92354ffa6e8df2e85800f -docfiles size=8 +containersize 191596 +containerchecksum f8916a429ab34f42a8c79314245ab869977a8311531a6ef66f02265812671cb48111ca2de5eeef8a074b5c6f908fc4a742553a865c3e77dd640da13231aaad60 +doccontainersize 42528 +doccontainerchecksum a53311b88802cdafe796ae658dd7a1bf72fd5ea0f5eede875e660c8c288b585e1877e0ba65c906a13fb40feb52376132cd97b3a65b097ca65a6d143ed7b32e19 +docfiles size=14 RELOC/doc/fonts/bitter/OFL.txt RELOC/doc/fonts/bitter/README details="Readme" RELOC/doc/fonts/bitter/bitter-samples.pdf details="Package documentation" @@ -40664,6 +42345,56 @@ catalogue-license gpl catalogue-topics file-card catalogue-version 1.1 +name bjfuthesis +category Package +revision 59809 +shortdesc A thesis class for Beijing Forestry University +relocated 1 +longdesc This is a class file for producing dissertations and theses +longdesc according to the Beijing Forestry University (BJFU) Guidelines +longdesc for Undergraduate Theses and Dissertations. The class should +longdesc meet all current requirements and is updated whenever the +longdesc university guidelines change. +containersize 2928 +containerchecksum e017032edb4e87ae31318179de5da789cbe2164ea5679d69e928a138242adb1afa8dfb3f8b9b7796bc6d5bf21c143f51e931656439a451ddf868c77c7a7ac559 +doccontainersize 9920760 +doccontainerchecksum 657e45d4faf201c2d878c5323e3fd7a283bbe4bb4f868b1413e9b8eaa1db00d03771a4d4211e23549121c5dd480cfcfd8ee8e0edd7e56615a3c941c100465c44 +docfiles size=2689 + RELOC/doc/latex/bjfuthesis/LICENSE + RELOC/doc/latex/bjfuthesis/README.md details="Readme" + RELOC/doc/latex/bjfuthesis/bjfuthesis.layout + RELOC/doc/latex/bjfuthesis/documentation/bjfuthesis.lyx + RELOC/doc/latex/bjfuthesis/documentation/bjfuthesis.pdf details="Package documentation" language="zh,en" + RELOC/doc/latex/bjfuthesis/documentation/bjfuthesis.tex + RELOC/doc/latex/bjfuthesis/example/bibliography.bib + RELOC/doc/latex/bjfuthesis/example/contents/cover.pdf + RELOC/doc/latex/bjfuthesis/example/contents/mission-statement.pdf + RELOC/doc/latex/bjfuthesis/example/contents/statement-of-originality.pdf + RELOC/doc/latex/bjfuthesis/example/figures/admin-knowledge-graph.png + RELOC/doc/latex/bjfuthesis/example/figures/admin-movie.png + RELOC/doc/latex/bjfuthesis/example/figures/admin-navigation.png + RELOC/doc/latex/bjfuthesis/example/figures/anonymous-category.png + RELOC/doc/latex/bjfuthesis/example/figures/anonymous-details.png + RELOC/doc/latex/bjfuthesis/example/figures/anonymous-index.png + RELOC/doc/latex/bjfuthesis/example/figures/anonymous-search.png + RELOC/doc/latex/bjfuthesis/example/figures/enhanced-recommendation.png + RELOC/doc/latex/bjfuthesis/example/figures/general-details.png + RELOC/doc/latex/bjfuthesis/example/figures/illustration-of-ripple-sets.png + RELOC/doc/latex/bjfuthesis/example/figures/jwt.pdf + RELOC/doc/latex/bjfuthesis/example/figures/recommendation-procedure.pdf + RELOC/doc/latex/bjfuthesis/example/figures/ripplenet-framework.png + RELOC/doc/latex/bjfuthesis/example/figures/use-case.pdf + RELOC/doc/latex/bjfuthesis/example/thesis.lyx + RELOC/doc/latex/bjfuthesis/example/thesis.pdf details="Example of use" language="zh" + RELOC/doc/latex/bjfuthesis/example/thesis.tex +runfiles size=2 + RELOC/tex/latex/bjfuthesis/bjfuthesis.cls +catalogue-contact-repository https://github.com/bjfu-projects/bjfuthesis +catalogue-ctan /macros/latex/contrib/bjfuthesis +catalogue-license gpl3 +catalogue-topics class doc-templ dissertation std-conform chinese +catalogue-version 1.2.1 + name blacklettert1 category Package revision 15878 @@ -40871,6 +42602,40 @@ catalogue-ctan /graphics/metapost/contrib/macros/blockdraw_mp catalogue-license lppl catalogue-topics diagram-block +name blopentype +category Package +revision 65441 +shortdesc A basic LuaTeX OpenType handler +relocated 1 +longdesc This is a basic LuaTeX OpenType handler, based on Paul +longdesc Isambert's PiTeX code. It should work with Plain TeX at least. +depend gates +depend texapi +depend yax +containersize 15736 +containerchecksum a58ba583f2c9cdc9d262f2ae60704164e4aa1ec9b6a1b7f5df97598cb3cef0b85badd62b641e5b388822d8ab84bb993521d9fec08b0be71088ec62f069bdd856 +doccontainersize 150004 +doccontainerchecksum 521b2c4897aee4e0ba07fb6bfb490e186a90218fd6d5972db83c42278a5212c7aacde54014cd6d2a9e321138e5e098eb14e746d6f114e84ea252c4fa67073353 +docfiles size=42 + RELOC/doc/luatex/blopentype/DEPENDS.txt + RELOC/doc/luatex/blopentype/README.md details="Readme" + RELOC/doc/luatex/blopentype/blopentype.md details="Package documentation" + RELOC/doc/luatex/blopentype/blottest.pdf + RELOC/doc/luatex/blopentype/blottest.tex +runfiles size=18 + RELOC/tex/luatex/blopentype/blot-base.lua + RELOC/tex/luatex/blopentype/blot-files.tex + RELOC/tex/luatex/blopentype/blot-fonts.lua + RELOC/tex/luatex/blopentype/blot-fonts.tex + RELOC/tex/luatex/blopentype/blot-lua.tex + RELOC/tex/luatex/blopentype/blot-sets.lua + RELOC/tex/luatex/blopentype/blot.tex +catalogue-contact-repository https://github.com/jarnosz/blopentype +catalogue-ctan /macros/luatex/generic/blopentype +catalogue-license lppl1.3c mit +catalogue-topics font-use luatex +catalogue-version 0.0.0 + name bloques category Package revision 22490 @@ -40895,18 +42660,18 @@ catalogue-version 1.0 name blowup category Package -revision 46213 +revision 64466 shortdesc Upscale or downscale all pages of a document relocated 1 longdesc The package blowup only defines the user-level macro \blowUp, longdesc which can be used to upscale or downscale all pages of a longdesc document. It is similar to the TeX primitive \magnification but longdesc more accurate and user-friendly. -containersize 2644 -containerchecksum 6ccf18bd12423d3a561e59a2ed9c8e2c7586fa65e47ab784c71111318fe370615acec672ca0e89bde159ec946abc1d4233f8367cc2e6f6f28f3f52dae6bc93e1 -doccontainersize 317720 -doccontainerchecksum 962ab6dbac803f5043df96d178452da2e4ec2db96a7fe9a8400eff658e61169faff501cab3e7e078a18738d683c3bf1ec09a14f70fecbe5c8190b35101196ce2 -docfiles size=99 +containersize 2692 +containerchecksum a516938f57984f320563b6acf3016d5e49d2d4899d0ed9b193b3015df277519444d152d0be8f49801ae259c9de1daf74cfa5f228851160b6a8e11b5707fac99a +doccontainersize 294208 +doccontainerchecksum aa26cab17c65e4b8899ef985ac10cb283711901881e41e2b269d544d3c4f51a7637d94789a1bf88094f5b32ea0344b7d7afb3d97402ab50a2bb2bacc930d7988 +docfiles size=101 RELOC/doc/latex/blowup/README.md details="Readme" RELOC/doc/latex/blowup/blowup-ex1.pdf RELOC/doc/latex/blowup/blowup-ex1.tex @@ -40918,10 +42683,12 @@ docfiles size=99 RELOC/doc/latex/blowup/blowup-ex4.tex RELOC/doc/latex/blowup/blowup-ex5.pdf RELOC/doc/latex/blowup/blowup-ex5.tex + RELOC/doc/latex/blowup/blowup-ex6.pdf + RELOC/doc/latex/blowup/blowup-ex6.tex RELOC/doc/latex/blowup/blowup.pdf details="Package documentation" -srccontainersize 5160 -srccontainerchecksum 6dad611292dae9ea8fe308beb3796e350a3beeaafc16f53b19d49863d5ab4321a94dfe41b6c0ecce236c922a4e0ef766082656bc41583bcbec42d7ccaa35d544 -srcfiles size=5 +srccontainersize 5308 +srccontainerchecksum 65f1f194ad5673aa0f119d9f39e55b7cebe1d17a5587c42d3fc8b255fbbc9d968d6889b544041434fd8cdbf3acebc64ecefe25af2ba6b9bdbe4102e5d13c8753 +srcfiles size=6 RELOC/source/latex/blowup/blowup.dtx RELOC/source/latex/blowup/blowup.ins runfiles size=2 @@ -40931,7 +42698,7 @@ catalogue-contact-repository https://github.com/rolfn/blowup catalogue-ctan /macros/latex/contrib/blowup catalogue-license lppl1.3 catalogue-topics typesetting -catalogue-version 1.0 +catalogue-version 2.1.0 name blox category Package @@ -40960,49 +42727,144 @@ catalogue-license lppl1.3 catalogue-topics graphics diagram-block pgf-tikz catalogue-version 2.51 +name bmstu +category Package +revision 65897 +shortdesc A LaTeX class for Bauman Moscow State Technical University +relocated 1 +longdesc The class defines commands and environments for creating +longdesc reports and explanatory notes in Bauman Moscow State Technical +longdesc University (Russia). Klass opredeliaet komandy i okruzheniia +longdesc dlia sozdaniia otchetov i raschetno-poiasnitel'nykh zapisok v +longdesc MGTU im. N. E. Baumana. Sgenerirovannye faily sootvetstvuiut +longdesc trebovaniiam MGTU im. N. E. Baumanai GOST 7.32-2017. +longdesc Raschetno-poiasnitel'nye zapiski k vypusknym kvalifikatsionnym +longdesc rabotam uspeshno prokhodiat proverku TestVKR (sborka 203). +containersize 135664 +containerchecksum e8e2af194ab8dc10e88543cdd888438d6dabd37651fcb331df2a2372c863884ee3ff77344d14a79608ef6e87d3b82042497f26045db3007b4cfc85fa33831667 +doccontainersize 1289736 +doccontainerchecksum da816655e19a91d152a088e92078a9ef2c35f4a7b379d63e353eebb7b4047d459b73e5f53537e9be5a80d56ebe80e1f20db1305fb21fff14fedd518a11c494db +docfiles size=328 + RELOC/doc/latex/bmstu/README.md details="Readme" + RELOC/doc/latex/bmstu/examples/bmstu-examples.pdf details="Example of use" + RELOC/doc/latex/bmstu/examples/bmstu-examples.tex + RELOC/doc/latex/bmstu/examples/inc/img/tux.png + RELOC/doc/latex/bmstu/examples/inc/img/tuz.png + RELOC/doc/latex/bmstu/examples/inc/lst/main.c + RELOC/doc/latex/bmstu/manifest.txt +runfiles size=42 + RELOC/tex/latex/bmstu/bmstu-appendix.sty + RELOC/tex/latex/bmstu/bmstu-biblio.sty + RELOC/tex/latex/bmstu/bmstu-defabbr.sty + RELOC/tex/latex/bmstu/bmstu-essay.sty + RELOC/tex/latex/bmstu/bmstu-figure.sty + RELOC/tex/latex/bmstu/bmstu-listing.sty + RELOC/tex/latex/bmstu/bmstu-logo.pdf + RELOC/tex/latex/bmstu/bmstu-title.sty + RELOC/tex/latex/bmstu/bmstu-toc.sty + RELOC/tex/latex/bmstu/bmstu.cls +catalogue-also bmstu-iu8 +catalogue-contact-bugs https://github.com/Orianti/bmstu-latex-class/issues +catalogue-contact-repository https://github.com/Orianti/bmstu-latex-class +catalogue-ctan /macros/latex/contrib/bmstu +catalogue-license lppl1.3 other-free +catalogue-topics report-like notes std-conform class russian +catalogue-version 2.0.0 + +name bmstu-iu8 +category Package +revision 61937 +shortdesc A class for IU8 reports +relocated 1 +longdesc This package consists of a class file and style files for +longdesc writing reports at the IU8 department of IU faculty of BMSTU +longdesc (Bauman Moscow State Technical University). The class defines +longdesc all headings, structure elements and other things in respect of +longdesc Russian standard GOST 7.32-2017. But there are correctives to +longdesc be compatible with our local IU8 department requirements. +containersize 12504 +containerchecksum 7d4d2f575bf4a3a14024b478610a1d3d1fb9a9609492890ce4edf9f3ed1e34abd99f519d3574c39347f35f8bd2bb1b19569ed6a3652443063942bb0900877ba6 +doccontainersize 171944 +doccontainerchecksum 142cceab83b83c5a0eddde753f67b44cb2e881cd01a4de1059606e02cc241d6d55f271d525db523f82f6ecd68bf6bb09dffcb15adb1b4b080b5701e041ec6f2e +docfiles size=59 + RELOC/doc/latex/bmstu-iu8/README.md details="Readme" + RELOC/doc/latex/bmstu-iu8/bmstu-example.pdf details="Example of use" language="ru" + RELOC/doc/latex/bmstu-iu8/bmstu-example.tex + RELOC/doc/latex/bmstu-iu8/bmstu.png +runfiles size=26 + RELOC/tex/latex/bmstu-iu8/01-IU8-base.sty + RELOC/tex/latex/bmstu-iu8/02-IU8-construction.sty + RELOC/tex/latex/bmstu-iu8/03-IU8-numbering.sty + RELOC/tex/latex/bmstu-iu8/04-IU8-section-numbering.sty + RELOC/tex/latex/bmstu-iu8/05-IU8-figures.sty + RELOC/tex/latex/bmstu-iu8/06-IU8-tables.sty + RELOC/tex/latex/bmstu-iu8/07-IU8-footnotes.sty + RELOC/tex/latex/bmstu-iu8/08-IU8-formulas.sty + RELOC/tex/latex/bmstu-iu8/09-IU8-cites.sty + RELOC/tex/latex/bmstu-iu8/10-IU8-titlepage.sty + RELOC/tex/latex/bmstu-iu8/11-IU8-performers.sty + RELOC/tex/latex/bmstu-iu8/12-IU8-abstract.sty + RELOC/tex/latex/bmstu-iu8/13-IU8-contents.sty + RELOC/tex/latex/bmstu-iu8/14-IU8-terms-and-definitions.sty + RELOC/tex/latex/bmstu-iu8/15-IU8-list-of-abbreviations.sty + RELOC/tex/latex/bmstu-iu8/16-IU8-references.sty + RELOC/tex/latex/bmstu-iu8/17-IU8-appendices.sty + RELOC/tex/latex/bmstu-iu8/18-IU8-extra.sty + RELOC/tex/latex/bmstu-iu8/19-IU8-counters.sty + RELOC/tex/latex/bmstu-iu8/20-IU8-listing.sty + RELOC/tex/latex/bmstu-iu8/21-IU8-math.sty + RELOC/tex/latex/bmstu-iu8/22-IU8-algorithms.sty + RELOC/tex/latex/bmstu-iu8/BMSTU-IU8.cls +catalogue-also bmstu +catalogue-contact-bugs https://github.com/CatInCosmicSpace/latex-template/issues +catalogue-contact-repository https://github.com/CatInCosmicSpace/latex-template +catalogue-contact-support https://t.me/CatInCosmicSpace +catalogue-ctan /macros/latex/contrib/bmstu-iu8 +catalogue-license mit +catalogue-topics class doc-templ report-like std-conform +catalogue-version 1.2 + name bnumexpr category Package -revision 49643 +revision 59244 shortdesc Extends eTeX's \numexpr...\relax construct to big integers relocated 1 longdesc The package extends e-TeX \numexpr...\relax operation to allow longdesc big integers, powers, factorials, truncated division and its longdesc associated modulo. By default, bnumexpr loads package xintcore longdesc (part of the xint bundle) and uses its arithmetic macros. -containersize 3720 -containerchecksum c4bf69cf261c8545aeffe69c22e0a018afab5f919aa186efbdae0d0eff6728f36f0ca94831cbef7828e9df349bc2e7eed22c284cb41924b83464efa51418b22e -doccontainersize 90596 -doccontainerchecksum 2e1430651869f89d3b1ecd146858b004ea04e6506cad29bcc131761b975a89671504b22e7bbe8bdd9e6be1d513f28f85e073a0f123e21e12584782db5242a50c -docfiles size=27 - RELOC/doc/latex/bnumexpr/README details="Readme" - RELOC/doc/latex/bnumexpr/README.md +containersize 4216 +containerchecksum a868239dada7f16d52c5d16705ad796d6bc536b1943b5c0bb9538fc72242f3fdbe2cd579367e9230e20e2b3e53725ba8cf25d7d2aaca660a338d7863f4661d46 +doccontainersize 133720 +doccontainerchecksum a367968a29bfe0d1496a8d444d6809a1ddb6f91031f1aafed30fdd2cd8ba929972554b186dfc897b273cb347f569922b7d59d3c472b385bd2ac1fadfadaa122e +docfiles size=37 + RELOC/doc/latex/bnumexpr/README.md details="Readme" RELOC/doc/latex/bnumexpr/bnumexpr.pdf details="Package documentation" RELOC/doc/latex/bnumexpr/bnumexpr.tex RELOC/doc/latex/bnumexpr/bnumexprchanges.tex -srccontainersize 16944 -srccontainerchecksum 25488522b3ad578b8c2fe5e418c5a6d1bf6295de7f16e743dbe90417ca36a8888309a8b6e56bcd93f72c89b02841f0b1326351f6d47840a1fc59042d11641186 -srcfiles size=14 +srccontainersize 23164 +srccontainerchecksum 447c6dccda5a51d86be058cdbfbd7e38d46964754df21f155f8a41892dd0492efab2fb391b7144a0c5876cc5852176fa14310f78cf4fc8e4ffc9d28fe9f75e87 +srcfiles size=20 RELOC/source/latex/bnumexpr/bnumexpr.dtx - RELOC/source/latex/bnumexpr/bnumexpr.ins -runfiles size=4 +runfiles size=5 RELOC/tex/latex/bnumexpr/bnumexpr.sty catalogue-ctan /macros/latex/contrib/bnumexpr catalogue-license lppl1.3c catalogue-topics arithmetic calculation -catalogue-version 1.2d +catalogue-version 1.5 name bodegraph category Package -revision 20047 +revision 61719 shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ relocated 1 longdesc The package provides facilities to draw Bode, Nyquist and Black longdesc plots using Gnuplot and Tikz. Elementary Transfer Functions and longdesc basic correctors are preprogrammed for use. -containersize 16020 -containerchecksum eb4be1d54f84a372bda79a35aa928be028aa3fdd13c589143e3bfbdd111f4819ac7927bc9eb7473c64fb9035b5bbab789b55a5967e4569e916a7fe516933612d +containersize 16008 +containerchecksum abec68060be55077c615c7a4dde1f0a1c59d2b94120a1c5e3f578572b2c23ff814e20344ee767ec7af4c30371e95a5647256f39be11e54fc8d6ad661025887c8 doccontainersize 343180 -doccontainerchecksum 479d5d95643a0b5a673df4d48049f6a7d89b4dc8d1511676d6ff53e039f65fb27994e35d3db3adeef0cdb30658d3eaa454d997ab4649567148fe90938602024c +doccontainerchecksum 463c7fad4432c366c59d1ad9ce029cf1264b4f398021479ac77ba04bdfe2b1e6983553e46c5fac3b248b0df07f2ac9ea07fff7d4c8019b30874316e08f3522c1 docfiles size=281 RELOC/doc/latex/bodegraph/README details="Readme (bilingual)" RELOC/doc/latex/bodegraph/bodegraph.pdf details="Package documentation (French with some English)" @@ -41185,24 +43047,63 @@ docfiles size=281 RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.table runfiles size=18 RELOC/tex/latex/bodegraph/bodegraph.sty +catalogue-also bodeplot catalogue-ctan /graphics/pgf/contrib/bodegraph catalogue-license lppl catalogue-topics engineering graphics-plot pgf-tikz catalogue-version 1.4 +name bodeplot +category Package +revision 65074 +shortdesc Draw Bode, Nyquist and Nichols plots with gnuplot or pgfplots +relocated 1 +longdesc This is a LaTeX package to plot Bode, Nichols, and Nyquist +longdesc diagrams. It provides added functionality over the similar +longdesc bodegraph package: New \BodeZPK and \BodeTF commands to +longdesc generate Bode plots of any transfer function given either +longdesc poles, zeros, gain, and delay, or numerator and denominator +longdesc coefficients and delay Support for unstable poles and zeros. +longdesc Support for complex poles and zeros. Support for general stable +longdesc and unstable second order transfer functions. Support for both +longdesc Gnuplot (default) and pgfplots (package option pgf). Support +longdesc for linear and asymptotic approximation of magnitude and phase +longdesc plots of any transfer function given poles, zeros, and gain. +containersize 5484 +containerchecksum 671f6373b4057279d92e7153c561a72d6b28031dedd395d8a35a9b7e82f89be8983f7e8598c85694fa68497d7af1092d6f5f403c0dc9c8fb3e24b3b373a51f9f +doccontainersize 730360 +doccontainerchecksum 02dbe19ab0243fed2609c5aadd91dc4a32e5bc8cd36a38244c5ee8e875d68ee5aa8e3c7bd4248c4287ff5fcdbc8d0c81adbbf5168d40e3e03eb44804dacd7109 +docfiles size=259 + RELOC/doc/latex/bodeplot/README.md details="Readme" + RELOC/doc/latex/bodeplot/bodeplot.pdf details="Package documentation" +srccontainersize 16756 +srccontainerchecksum c4f2f526cf9f9ed20364b555728664b68763b1ecebbf4c47be80fde5f9dc0af2766f2a9724824442fef362798dc42618268157028ec482dcea3572290ddbbde4 +srcfiles size=25 + RELOC/source/latex/bodeplot/bodeplot.dtx + RELOC/source/latex/bodeplot/bodeplot.ins +runfiles size=9 + RELOC/tex/latex/bodeplot/bodeplot.sty +catalogue-also bodegraph +catalogue-contact-bugs https://github.com/rlkamalapurkar/bodeplot/issues +catalogue-contact-repository https://github.com/rlkamalapurkar/bodeplot +catalogue-ctan /graphics/pgf/contrib/bodeplot +catalogue-license lppl1.3c +catalogue-topics engineering graphics-plot pgf-tikz +catalogue-version 1.1.3 + name bohr category Package -revision 54512 +revision 62977 shortdesc Simple atom representation according to the Bohr model relocated 1 longdesc The package provides means for the creation of simple Bohr longdesc models of atoms up to the atomic number 112. In addition, longdesc commands are provided to convert atomic numbers to element longdesc symbols or element names and vice versa. -containersize 3644 -containerchecksum 0f362638797d3adb338afa02589587406af7ca58487e6b61264fa60b539573d4198878a474da00e7a50bebd5dbe28f0dfc373c538a9bfbc11e84566ef586a5a3 +containersize 3652 +containerchecksum 257faafc089c9864a7878e9690a96ef8a5468fa4a310232609cb769c4bd80c15ee7923ad73feac782cda4690f699ab3734dbac05e39588a34fca576fe8dd042c doccontainersize 424416 -doccontainerchecksum 5a802de7f7a8871a7095a54a1b48ce80d1d1e3134c70c7d93944e88aae44a8885ce28d65069ff44307c8395a666df386b03fd1f9c72b526a8a7a466ff5d438d2 +doccontainerchecksum 0ffcb6071ad55d9e6a38c9cff810b625fcd6eb08e476e9ac7fb0bae73ca5373517de22a536c2348ac8646b62d70167521d70dd46327dadebfdb9e69facc0f27a docfiles size=107 RELOC/doc/latex/bohr/README details="Readme" RELOC/doc/latex/bohr/bohr_en.pdf details="Package documentation" @@ -41212,7 +43113,7 @@ runfiles size=4 catalogue-contact-repository https://github.com/cgnieder/bohr/ catalogue-ctan /macros/latex/contrib/bohr catalogue-license lppl1.3 -catalogue-topics chemistry +catalogue-topics chemistry physics catalogue-version 1.0 name boisik @@ -41494,17 +43395,44 @@ catalogue-license lppl1.3 catalogue-topics diagram pgf-tikz catalogue-version 1.0.1 +name book-of-common-prayer +category Package +revision 62240 +shortdesc Typeset in the style of "Book of Common Prayer" +relocated 1 +longdesc This a package for the typesetting of liturgical documents in +longdesc the style of the 1979 "Book of Common Prayer". It provides +longdesc macros for common liturgical situations (e.g. versicle and +longdesc response, longer prayers, etc.). This package is designed to +longdesc work with the Sabon font, but it is not necessary to run the +longdesc macros. +containersize 2780 +containerchecksum d8a2f2c007569e8a4da6150592fcc67a4e60083a2af93d15a8bcbd31b9b2d56c46d28b9f4c708714e894638b22fd9a4013175f45082c9982a05c8081855d7d9c +doccontainersize 129520 +doccontainerchecksum 98f7dc43da85180db2a3f00462b02b23977dfb46b7a9af0d4bb97a2bbc2babcb906a1762b94ac9196bc6ca5fe11bf0690e1e59d74ea1f97f16d9d747e94b5020 +docfiles size=38 + RELOC/doc/latex/book-of-common-prayer/README.md details="Readme" + RELOC/doc/latex/book-of-common-prayer/book-of-common-prayer.pdf details="Package documentation" + RELOC/doc/latex/book-of-common-prayer/book-of-common-prayer.tex +runfiles size=2 + RELOC/tex/latex/book-of-common-prayer/book-of-common-prayer.sty +catalogue-contact-repository https://gitlab.com/cwtc/book-of-common-prayer +catalogue-ctan /macros/unicodetex/latex/book-of-common-prayer +catalogue-license lppl1.3c +catalogue-topics theology +catalogue-version 1.1.0 + name bookcover category Package -revision 57326 +revision 65394 shortdesc A class for book covers and dust jackets relocated 1 longdesc This class helps typesetting book covers and dust jackets. -containersize 5888 -containerchecksum 1ea230af804c794f26919542d5246d16cb7fe1060f69d7c4f99df327895b528c3565f9450c5a8ded68ee1833a08f6c55c92bb5dd92855d4869b0af0ac5ea0684 -doccontainersize 1773320 -doccontainerchecksum fcd7bf97646458420e3d1ce0faa6d38f7a2d03a0722ede25fda763df506a27857631db95b7085f22f8d5de44551d1a7fdb54b9d28d9e4532587d33f2150c25f8 -docfiles size=910 +containersize 5880 +containerchecksum 83a7b06e32e082d810fac22a842f646b692e75a4e0ad67ba59a1d39d0f0931970b615708900b139c7e11f05bb012797d2664808929ca7ba8bcfc37ae75c878ac +doccontainersize 1785092 +doccontainerchecksum f58d3796696fd576fec15770cbe04d14e659a1d8e6570ae39c17760686b75cc941ccc2dcacb923fca4c2ffcf671a9ee1d63f348d8fe22058078eb22c5a1fdbf4 +docfiles size=918 RELOC/doc/latex/bookcover/README details="Readme" RELOC/doc/latex/bookcover/bookcover-example1.pdf details="Examples of use 1" RELOC/doc/latex/bookcover/bookcover-example1.tex @@ -41529,8 +43457,8 @@ docfiles size=910 RELOC/doc/latex/bookcover/figures/bookcover-tikz.pdf RELOC/doc/latex/bookcover/figures/bookcover-tikzclip.pdf RELOC/doc/latex/bookcover/figures/bookcover-trimming.pdf -srccontainersize 14060 -srccontainerchecksum 982ad86158e5dbd7c00e323b77f5e685bb4737615b11b35b291eaf10995d4754701a1c1c0d876ee05d8834367b153d5587546fecd939eaf1764b4b2833f2cbdf +srccontainersize 14064 +srccontainerchecksum 7e40a0b41b7f46570925c6fabedddeea2b52cdf8a4844db4c9df48f12029424c08d8777227ce119dc46bc27dbbefe43284d581bf5c7f2aeb2b6d24ba2c83e401 srcfiles size=23 RELOC/source/latex/bookcover/bookcover.dtx RELOC/source/latex/bookcover/bookcover.ins @@ -41539,7 +43467,7 @@ runfiles size=13 catalogue-ctan /macros/latex/contrib/bookcover catalogue-license lppl1.2 catalogue-topics class covers -catalogue-version 3.3 +catalogue-version 3.5 name bookdb category Package @@ -42005,9 +43933,9 @@ catalogue-version 0.7b name bookman category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -42020,8 +43948,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap ubk.map -containersize 278764 -containerchecksum bcc6a2ca260350a22927d806b29dec9b7a6c7d9bfff2517d3c64072c9bcb3b73ec72937c004d36c2570a2c78f073548db6897195591e36bae7b6eaaecf6b6023 +containersize 278744 +containerchecksum 8bef9b6e467384a2b5adc6bd61ed2e410f026f6ee867a5a62239c55391ebd6eb5e521c82f9bd0e4de995591458ec32f98ce821493a85113beaeef6535b938ff4 runfiles size=400 RELOC/dvips/bookman/config.ubk RELOC/fonts/afm/adobe/bookman/pbkd8a.afm @@ -42778,28 +44706,28 @@ catalogue-version 1.0 name braids category Package -revision 54080 +revision 64817 shortdesc Draw braid diagrams with PGF/TikZ relocated 1 longdesc The package enables drawing of braid diagrams with PGF/TikZ longdesc using a simple syntax. The braid itself is specified by giving longdesc a word in the braid group, and there are many options for longdesc styling the strands and for drawing "floors". -containersize 7144 -containerchecksum e04d1b5c12c1d07b94b8aa2e70b302d05571b8bc8b8e7ff9839501b4d89d8c059552e830be52e1c31c4a949a7976e046934dd64d5d16adf944da67562371c884 -doccontainersize 670652 -doccontainerchecksum 1f23bc681de14c760f21b49e0c5d8502cfefc23f15803d4c2b926d1367b407a57a0b316cd8c1e9377c4ccaed969777c1515fa5f5edd0135cec55b7bd03b8dbce -docfiles size=185 +containersize 7848 +containerchecksum f22e6cd21211deea82179b351911f9809d420bf5a9c59064a24134b87d8e75e2a7a0268b6e285117b782884a7faf3a9b54ca9a6e2e3f2c5203c45c85984ccae5 +doccontainersize 690396 +doccontainerchecksum 52922680397d933d9d99fe63004b2874061cdf83aef88e8d3dedbc46c97b270b559affa8b7a5bd515c086aa83f21552c35c161c9450ae57cbef57d96e2c70cd5 +docfiles size=193 RELOC/doc/latex/braids/README.txt details="Readme" RELOC/doc/latex/braids/braids.pdf details="Package documentation" RELOC/doc/latex/braids/braids.tex RELOC/doc/latex/braids/braids_code.pdf -srccontainersize 14312 -srccontainerchecksum 0a440ca071b54b0375cd3ff185c48da83f7b42e26f2210e04bdad9cf3103c62b2a416e073596180e0d3c7b1054836526f484dbea653ecd961c4aac3d1929602b -srcfiles size=19 +srccontainersize 15452 +srccontainerchecksum 54d308837fa78d4133d88d2d162cf1f80a032b00860adb560ff08bb2ea9b33fe7a8f5ac36e918b281547c44a0c3584efff53d0e5538f36fc03c554ed2b6b26f3 +srcfiles size=22 RELOC/source/latex/braids/braids_code.dtx RELOC/source/latex/braids/braids_code.ins -runfiles size=12 +runfiles size=15 RELOC/tex/latex/braids/braids.sty RELOC/tex/latex/braids/tikzlibrarybraids.code.tex catalogue-contact-bugs https://github.com/loopspace/braids/issues @@ -42808,7 +44736,7 @@ catalogue-contact-repository https://github.com/loopspace/braids catalogue-ctan /graphics/pgf/contrib/braids catalogue-license lppl1.3c catalogue-topics maths graphics diagram pgf-tikz -catalogue-version 2.0 +catalogue-version 2.2 name braille category Package @@ -42866,21 +44794,21 @@ catalogue-topics maths physics name brandeis-dissertation category Package -revision 54758 +revision 61215 shortdesc Class for Brandeis University dissertations relocated 1 longdesc The class will enable the user to typeset a dissertation which longdesc adheres to the formatting guidelines of Brandeis University longdesc Graduate School of Arts and Sciences (GSAS). -containersize 1844 -containerchecksum 26dde7d29bdc60ae3b4c70b14b6b6c35b0319422cdcbda1ed1f4beec7a3056e145985e7a1b3aa4870b8fcc1e6d75da2e5d879b9a5c26ab85de59710d322647ff -doccontainersize 171688 -doccontainerchecksum 49b84e3fc0264f2a74704dbfa90c8c6bea44f436afc88387ff5c7cbf01d5feb207b1ba77e661f6db974e28cc41e3d8054524eed35f948aac3af4dbd24cdffc14 -docfiles size=43 +containersize 1840 +containerchecksum fc8d06b0d5f7e24680e6c08f7ac59b59b19b2232e61175092f63e3d19bd43e080b84777e6305d1ec3a110b367b135a80e2d7bc6e13bbb875855b732fec796bb5 +doccontainersize 172912 +doccontainerchecksum 219fd04d81a64c85b1bb6d26d2ce1dba07fdb07d1df370e01e7683d7bb29da90dbde18ddb509415ab55454e1b112b7053a6b3f179ba32b362ec19a43433caf4e +docfiles size=44 RELOC/doc/latex/brandeis-dissertation/README.txt details="Readme" RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf details="Package documentation" -srccontainersize 4144 -srccontainerchecksum 18cf0e74d51021dda950b2fa0c95807550aa69b1de57f5989b88ed1236c433483291dcb7158beccad9fa72903708212ea50c606d187199ccce589010b02915e3 +srccontainersize 4264 +srccontainerchecksum c545f4d71ed630207492f68fc79a054c7a57121335aae12449106a1cc5554631d247b8a5a1cffb03f8288d3b3ceef1f45bad561a1a1ce0da67cceb12d7391f01 srcfiles size=4 RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.dtx RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.ins @@ -42889,7 +44817,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/brandeis-dissertation catalogue-license lppl1.2 catalogue-topics dissertation -catalogue-version 3.11 +catalogue-version 3.13 name brandeis-problemset category Package @@ -42925,21 +44853,21 @@ catalogue-version 0.5.5 name brandeis-thesis category Package -revision 54758 +revision 59832 shortdesc A class for Brandeis University M.A. theses relocated 1 longdesc brandeis-thesis.cls provides the structures and formatting longdesc information for an M.A. thesis for the Brandeis University longdesc Graduate School of Arts and Sciences. -containersize 1580 -containerchecksum 8dc788bdd5d3b0e16b525f217de177e711abfb5c558382b12e4328fb690e2a16cf1d9fe403b40c392b9b745d605dce30e1c297d5f694cd977b992f585e50e6cc -doccontainersize 150260 -doccontainerchecksum a56e02eaadb1bfe1315d4813fcbab0dc73202de0126d8fc64ee947770ac1866857194ad842fff7a47dfff4650c6f6aed8ab711eed6a47b0b6e8e93b421a8fe1f +containersize 1716 +containerchecksum f1fbb296da700ba3cf4c9e6818898624576b9a58803754d77909031e7bf3b207790f4818e247fdabade5927687e8c6a186e887f595f536c1c4a8ba8e1ba03ec7 +doccontainersize 150532 +doccontainerchecksum 51bfa4fbc6d5900d92b3c7d5530b166dbd653af2017153c5ccd18d9ac49e124178378d1a2ecc867ece7ae758812f5c030dac00d55c46275e79c2bf4e9cf77c78 docfiles size=38 RELOC/doc/latex/brandeis-thesis/README.txt details="Readme" RELOC/doc/latex/brandeis-thesis/brandeis-thesis.pdf details="Package documentation" -srccontainersize 3444 -srccontainerchecksum 7586d766af63eb1797cb35b0fbcf87ad78065e4564c138eb2159c475ce7e7dabe09a0d1140fe80c0fabed5a00713d23869f3071be8b834c1a503463e215a3827 +srccontainersize 3588 +srccontainerchecksum b5a5b294470869862855b4e9ddfaa6c7213d91ea69ee99834b5eb2e09c595d12fc5df0742cf52e19af156bf1db29744b9a320ecacb036843f2169891fa42fd41 srcfiles size=4 RELOC/source/latex/brandeis-thesis/brandeis-thesis.dtx RELOC/source/latex/brandeis-thesis/brandeis-thesis.ins @@ -42948,7 +44876,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/brandeis-thesis catalogue-license lppl1.3c catalogue-topics class dissertation -catalogue-version 3.1 +catalogue-version 3.2 name breakcites category Package @@ -43033,7 +44961,7 @@ catalogue-version 1.0 name breqn category Package -revision 56422 +revision 60881 shortdesc Automatic line breaking of displayed equations relocated 1 longdesc The package provides solutions to a number of common @@ -43050,18 +44978,18 @@ longdesc formulae are processed; the code must be watched carefully, longdesc keeping an eye on possible glitches. The bundle also contains longdesc the flexisym and mathstyle packages, which are both designated longdesc as support for breqn. -containersize 24368 -containerchecksum ea1df2ebb14d755225368fafac24e2068b317b56c4a42fb10011f1fb9f233a7d40bd83b0063271ac8efcac67725f32e12e0ef63467cb045bd460abe5f84638f7 -doccontainersize 1061500 -doccontainerchecksum 9e5903493b727972dbc5b18b1be6179ae72d23e59eb047c41562461e5800d5c66d83eb017f410b73f42fd12c219d09dfc95e4cd3375f584820ad0e600cdafc91 +containersize 24524 +containerchecksum c280871916bf0689794cba9640a7666a0f7b295635b85d99d08f04cc0c4cb7ac82552360b0c8b3d677b138779239c4ac4a2583db26fe194870c0c97a9a53395f +doccontainersize 1063132 +doccontainerchecksum 70ab6500b714c0e91c597b43d934942c39c23cfc9993702b6eefa19b8c9027aa0e7eaa55cb48413e2cb42e468167492e7a401380c1cb4a711daae364ae01283b docfiles size=280 RELOC/doc/latex/breqn/CHANGES.md RELOC/doc/latex/breqn/README.md details="Readme" RELOC/doc/latex/breqn/breqn.pdf details="Package documentation" RELOC/doc/latex/breqn/flexisym.pdf RELOC/doc/latex/breqn/mathstyle.pdf -srccontainersize 80092 -srccontainerchecksum 5640578e4a42535331094955073d42db502299d25e6f69b4a9caa31b5dd858e2860372bfd123614243b5d1d370eda791c178cb0b6d8c036655febc7c1ce0fbcb +srccontainersize 80324 +srccontainerchecksum aa4922ba1ebcbfe00716b02b567da4b17ab1b0d22cd5fe8332d147496f93dbe0a94e9e38964b13b6b4944ccfb2ce49bfb32ed5602ca1f147fc99163eaedadf46 srcfiles size=83 RELOC/source/latex/breqn/breqn.dtx RELOC/source/latex/breqn/breqnbundle.ins @@ -43080,7 +45008,7 @@ catalogue-contact-repository https://github.com/wspr/breqn catalogue-ctan /macros/latex/contrib/breqn catalogue-license lppl1.3 catalogue-topics maths -catalogue-version 0.98k +catalogue-version 0.98l name bropd category Package @@ -43180,63 +45108,36 @@ catalogue-version 1.0 name buctthesis category Package -revision 59002 +revision 64004 shortdesc Beijing University of Chemical Technology Thesis Template relocated 1 longdesc This package provides a LaTeX class and template for Beijing longdesc University of Chemical Technology, supporting bachelor, master, longdesc and doctor theses. -containersize 8936 -containerchecksum a79c86c1a87d591889b8d6df85b9a770a88418d0184460bfc1a9e23a263e8ae6ae48718298381db6f1ba083d2c137ead540ceb469ce80a605d6834a9c11e2fca -doccontainersize 878084 -doccontainerchecksum 393b24ab33f05581cd1346b3219b2d9bb8e411c17f653e334a0a23bd62a2c2ee7aef6d449ec4f506c7e0156116e6bcee2404c4315647b306266b346ceeb1fc62 -docfiles size=251 - RELOC/doc/latex/buctthesis/AddBib.png - RELOC/doc/latex/buctthesis/BUCT-badge.pdf - RELOC/doc/latex/buctthesis/ChangeLog.md - RELOC/doc/latex/buctthesis/LICENSE - RELOC/doc/latex/buctthesis/README.md details="Readme" - RELOC/doc/latex/buctthesis/acknowledgement.tex - RELOC/doc/latex/buctthesis/app1.tex - RELOC/doc/latex/buctthesis/buctcover.tex - RELOC/doc/latex/buctthesis/buctthesis.pdf details="Package documentation" - RELOC/doc/latex/buctthesis/chapter1.tex - RELOC/doc/latex/buctthesis/chapter2.tex - RELOC/doc/latex/buctthesis/chapter3.tex - RELOC/doc/latex/buctthesis/conclusion.tex - RELOC/doc/latex/buctthesis/declare-bachelor.png - RELOC/doc/latex/buctthesis/declare-master.png - RELOC/doc/latex/buctthesis/denotation.tex - RELOC/doc/latex/buctthesis/foreword.tex - RELOC/doc/latex/buctthesis/frontmatter.tex - RELOC/doc/latex/buctthesis/helloworld.cpp - RELOC/doc/latex/buctthesis/image-a.pdf - RELOC/doc/latex/buctthesis/image-c.pdf - RELOC/doc/latex/buctthesis/image-plain.pdf - RELOC/doc/latex/buctthesis/latexmkrc - RELOC/doc/latex/buctthesis/main.tex - RELOC/doc/latex/buctthesis/manual.sty - RELOC/doc/latex/buctthesis/mycfg.sty - RELOC/doc/latex/buctthesis/resume.tex - RELOC/doc/latex/buctthesis/thesisbib.bib - RELOC/doc/latex/buctthesis/translation.tex - RELOC/doc/latex/buctthesis/worm-gear.pdf -srccontainersize 24404 -srccontainerchecksum 67128489bd185d74cf76c77afe8edf547dc835e1a32e6e77ee9aa6e5bd56e98403d3df3b9ccd34841d50e59c6572138a22331cc52de4e1d3c2d6536cbe7156e1 -srcfiles size=23 - RELOC/source/latex/buctthesis/buctthesis.dtx - RELOC/source/latex/buctthesis/buctthesis.ins +containersize 9632 +containerchecksum c8988be5f140ee2739c2fc2365d1306ce2f47480d47c85c6f2f7cc525cf5ba5b8683a99bc4d5167f78839852ca800ed07caa98a3498893dad92051ca3ba3f7b8 +doccontainersize 461336 +doccontainerchecksum a0f41589d447a81f9fbec183b30e832883a7cffff16ca538c74ccecafd59e41a67e1b3d2ae355eaf8d04c3c6417326606db5ad6752e45f1f031cd7b26ebdb0b0 +docfiles size=117 + RELOC/doc/xelatex/buctthesis/README.md details="Readme" + RELOC/doc/xelatex/buctthesis/buctthesis.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/buctthesis/manual.sty +srccontainersize 27580 +srccontainerchecksum b7be46e4266544c18bdd76838a3f2635c6cadcd6aa93879cf977ec37264c9438cb3a1e9b79b5e567d460bde2193038b4f88f6f5446519666b33c170b8c698d12 +srcfiles size=26 + RELOC/source/xelatex/buctthesis/buctthesis.dtx + RELOC/source/xelatex/buctthesis/buctthesis.ins runfiles size=10 - RELOC/tex/latex/buctthesis/buctcover.cls - RELOC/tex/latex/buctthesis/buctthesis.cls + RELOC/tex/xelatex/buctthesis/buctcover.cls + RELOC/tex/xelatex/buctthesis/buctthesis.cls catalogue-contact-announce https://github.com/Miracle0565/BUCTthesis/releases catalogue-contact-bugs https://github.com/Miracle0565/BUCTthesis/issues catalogue-contact-home https://github.com/Miracle0565/BUCTthesis catalogue-contact-repository https://github.com/Miracle0565/BUCTthesis/tree/master -catalogue-ctan /macros/latex/contrib/buctthesis +catalogue-ctan /macros/xetex/latex/buctthesis catalogue-license lppl1.3c -catalogue-topics class doc-templ dissertation chinese -catalogue-version 1.1 +catalogue-topics class doc-templ dissertation chinese xetex +catalogue-version 1.4.1 name bullcntr category Package @@ -43274,7 +45175,7 @@ catalogue-version 0.04 name bundledoc category Package -revision 55064 +revision 64620 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 @@ -43288,10 +45189,10 @@ longdesc file that contains all of the ancillary files of a LaTeX longdesc document, together with the document itself, using the longdesc filecontents* environment. depend bundledoc.ARCH -containersize 12784 -containerchecksum 07aa1f9dd3cf8bb16fad2a39783a5bd05168e0956840853b6f9a16de753726b0393b8863c6cad985b8bcf7431570137d6fac82588524efc5d7c0032e2dd555c8 -doccontainersize 79028 -doccontainerchecksum bbd78c948c90f6b4470c792c9e0b99fb5bd8ae73b7eb78343739909c13ed0e0d763dd0b6a4b8d05a77280054afe15f2979c985121916fb8a34dff231b810106b +containersize 12772 +containerchecksum 8f1e4428993dda804a2bd6b11504996e6cbef869b98a64d576f0edd97a47b1f2301b34ed234ecf1cc902c74dcb31064a96cb69018ac514fd91eb3e5c1b6df5ad +doccontainersize 78636 +doccontainerchecksum d74b1ec9473c4616642911fb918553350c5c65ae2cd5171d3513d6fdd5b5b774a516c54a5ce09a8fb966a9de6c5e372b773f7e8ade9f14fa2b1a646112638679 docfiles size=31 texmf-dist/doc/man/man1/arlatex.1 texmf-dist/doc/man/man1/arlatex.man1.pdf @@ -43349,16 +45250,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/arlatex bin/armhf-linux/bundledoc -name bundledoc.i386-cygwin -category Package -revision 17794 -shortdesc i386-cygwin files of bundledoc -containersize 360 -containerchecksum 9226a3842a0012f54fa26f10800a6fcba35bb2c852278ac64700e649834ccc45c4d502b31df42bf3e3056e6165ae9f884dbd3b9cb929440964f6896dccc3bc02 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/arlatex - bin/i386-cygwin/bundledoc - name bundledoc.i386-freebsd category Package revision 17794 @@ -43409,15 +45300,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/arlatex bin/universal-darwin/bundledoc -name bundledoc.win32 +name bundledoc.windows category Package -revision 17813 -shortdesc win32 files of bundledoc -containersize 704 -containerchecksum 40148d3496893a170cd20418c006449629641e0143046fb7c659f11ed3b126312f030d04d2c190b0fcf632c9cbb8901ee4faecfd3d7b091aad7e9abfec6f2142 -binfiles arch=win32 size=2 - bin/win32/arlatex.exe - bin/win32/bundledoc.exe +revision 65891 +shortdesc windows files of bundledoc +containersize 2360 +containerchecksum c547a1ee8649a03982d3951f4d0e40b26edfb2c2ba997525f0e3efe43090419156f852277cb780b38db9edfef1c90e3faddc203ce41bc23c45fb7c4aadd779f5 +binfiles arch=windows size=4 + bin/windows/arlatex.exe + bin/windows/bundledoc.exe name bundledoc.x86_64-cygwin category Package @@ -43500,7 +45391,7 @@ catalogue-topics burmese name businesscard-qrcode category Package -revision 54080 +revision 61719 shortdesc Business cards with QR-Code relocated 1 longdesc What happens when you give your visiting card to someone? @@ -43520,10 +45411,10 @@ longdesc other LaTeX packages: calc, crop, DejaVuSans, etoolbox, longdesc fontawesome, fontenc, geometry, kvoptions, marvosym, qrcode, longdesc varwidth, and wrapfig. The package needs XeLaTeX for working longdesc properly. -containersize 3760 -containerchecksum 66e98af04011a9a17104dac23845ee6bbc5f4fe3aeec37899f82448a85493c5b722f5de59139f2a29fc84390cf5480af3a491ea2d1270edeb16ada734e2cb57d -doccontainersize 540988 -doccontainerchecksum d488e313d538d9faa956b4279974faede62ca231ce744d010b11d8a98a9b596d225a3804ba0aa72a13a6749a6207321b9937617d524e5803f490f9bb8933bb8a +containersize 3724 +containerchecksum d991a7dfb9be936018a1946d2d3fbe24b775d99bce08da27e7451b54c679bf6565b207a7645ee4def2464ce08187b6ff25614dff9ec6925bce66fb6f48809412 +doccontainersize 540992 +doccontainerchecksum 6ff58a45f67ae55d82721f125bf3e9c8a5cbd049515b840eb4bdc79eea63bd82bccec41f53b05cab9e6720f3719cc58e882998249a738eaa9f033f14569b9f88 docfiles size=158 RELOC/doc/xelatex/businesscard-qrcode/README.md details="Readme" RELOC/doc/xelatex/businesscard-qrcode/examples/example.pdf details="Example of use (3)" @@ -43543,8 +45434,6 @@ docfiles size=158 RELOC/doc/xelatex/businesscard-qrcode/screenshots/texstudio_d30266.jpg runfiles size=3 RELOC/tex/xelatex/businesscard-qrcode/businesscard-qrcode.cls -catalogue-contact-bugs https://mrw.dev/templates/businesscard-qrcode/issues -catalogue-contact-repository https://mrw.dev/templates/businesscard-qrcode catalogue-ctan /macros/xetex/latex/businesscard-qrcode catalogue-license lgpl catalogue-topics class file-card qrcode xetex @@ -43616,18 +45505,18 @@ catalogue-version 0.4 name bxbase category Package -revision 56528 +revision 66115 shortdesc BX bundle base components relocated 1 longdesc The main purpose of this bundle is to serve as an underlying longdesc library for other packages created by the same author (their longdesc names start with "BX" or "PX"). However bxbase package contains longdesc a few user-level commands and is of some use by itself. -containersize 22704 -containerchecksum 279018d86ea2c933ae8106678b1fc3164439de59e74ba2244104951b352346e51d6a5a78591e605e25d2dc5dbfa15b6481d5b2f637517dd4e19a53da3d0fc179 -doccontainersize 76320 -doccontainerchecksum aa76f5acfe7367c48219eee28635bddc4655fde3e91a7eae5ff8fd03baf0e2732c0f3b587b7518f660cf58fd124a8c021ea495b57520347c4bacbd5246cc2a99 -docfiles size=28 +containersize 22836 +containerchecksum 7d1b15d92136126999f976127b43a125a9bd5aacaca5a76aecee94d4f6a6ce6538c449fc82d95a55984b9de802e1e66903078e5d2344db532b9b2e2e94ffdf24 +doccontainersize 76368 +doccontainerchecksum 162a33a07b6149997b9cf0ed5b1baf55f80f2142c106e07188b27c02f4fad891d95d6366581d958bb730106f5d3777e59a1ba55176a7e7594cdadc77e85d7365 +docfiles size=29 RELOC/doc/latex/bxbase/LICENSE RELOC/doc/latex/bxbase/README-ja.md details="Readme" language="ja" RELOC/doc/latex/bxbase/README.md details="Readme" @@ -43647,7 +45536,7 @@ catalogue-contact-home https://github.com/zr-tex8r/BXbase catalogue-ctan /language/japanese/BX/bxbase catalogue-license mit catalogue-topics japanese macro-supp -catalogue-version 1.2 +catalogue-version 1.2a name bxcalc category Package @@ -43810,31 +45699,32 @@ catalogue-version 0.2 name bxghost category Package -revision 53606 +revision 66147 shortdesc Ghost insertion for proper xkanjiskip relocated 1 longdesc The package provides two commands to help authors for documents longdesc in Japanese to insert proper xkanjiskips. It supports LuaTeX, longdesc XeTeX, pTeX, upTeX, and ApTeX (pTeX-ng). -containersize 1648 -containerchecksum 72b5a376d5a927297fc466936ae55ed4fe4fe8705aa8f31fcaa4f4b558496b19952b55ff8b02318f5d5cc8c6cfe31c6310cbd22900084d353a93f348291e0c6e -doccontainersize 1792 -doccontainerchecksum 718c59d1c05689fbb4641ead9437b2ddde19f848b6f7c9fd5f4c91b10abe9fc6413c531c2f5af3f9e70e30578341116e5b4731a8f873f75fd4ee0803f3597a3b +containersize 2016 +containerchecksum 8b5345c2e48c16f296e3533977b2d9a031274764f3580887d2142a12f34e93d4d31bda0a5997823a7bf52891c8707d897afdc365a001348d2ab12d8f947acd0d +doccontainersize 2012 +doccontainerchecksum 999e7623526c6ef51b8c6da383e79d9f889d1e45efb52eb127463b94e7790edb124c2ddece303c932134df4daf4189db082c3492fe04e6a829e1dd6d943edc02 docfiles size=2 RELOC/doc/latex/bxghost/LICENSE RELOC/doc/latex/bxghost/README.md details="Readme" -runfiles size=1 +runfiles size=2 + RELOC/tex/latex/bxghost/bxghost-lib.sty RELOC/tex/latex/bxghost/bxghost.sty catalogue-contact-bugs https://github.com/wtsnjp/BXghost/issues catalogue-contact-repository https://github.com/wtsnjp/BXghost catalogue-ctan /language/japanese/BX/bxghost catalogue-license mit catalogue-topics japanese macro-supp -catalogue-version 0.3.0 +catalogue-version 0.5.1 name bxjaholiday category Package -revision 57025 +revision 60636 shortdesc Support for Japanese holidays relocated 1 longdesc This LaTeX package provides a command to convert dates to names @@ -43842,10 +45732,10 @@ longdesc of Japanese holidays. Another command, converting dates to the longdesc day of the week in Japanese, is available as a free gift. longdesc Further (lower-level) APIs are provided for expl3. The package longdesc supports pdfTeX, XeTeX, LuaTeX, pTeX, and upTeX. -containersize 5576 -containerchecksum e062446514cdcf8e817f06a33cd02a29cd1985dff450a89baaf2e230fd9dbe20e92d3a34b661ec12c764c5a6230b1fede49034847fcac2d2db2377eb7d4450cb -doccontainersize 208336 -doccontainerchecksum 3b44cf93b4afbbf97263b091509a5486bcbc6fc7091bc8a583be73f35487962af93f071547a78895231fb576054e440271abea20a7b07d111c197382b52ee746 +containersize 5600 +containerchecksum 4f5dc4081f989b73e5334d62af403922e2918424cff24480644f1e9016e3e20fb044cb22da91a035b198aa92edd0a51e985fe791a4c99ffbde2d339ca46a3918 +doccontainersize 210340 +doccontainerchecksum 6d3ccd7c279e9dd8063296d843dbb6b42af90359b16f421eaddc7b2ddf23e2dc6077d4748abbef3c67c9672536d58a20746848237525a4cf8ec87ed19117a618 docfiles size=60 RELOC/doc/latex/bxjaholiday/LICENSE RELOC/doc/latex/bxjaholiday/README.md details="Readme" @@ -43860,11 +45750,11 @@ catalogue-contact-repository https://github.com/wtsnjp/BXjaholiday catalogue-ctan /language/japanese/BX/bxjaholiday catalogue-license mit catalogue-topics japanese date-time expl3 -catalogue-version 1.1.0 +catalogue-version 1.1.1 name bxjalipsum category Package -revision 43369 +revision 66013 shortdesc Dummy text in Japanese relocated 1 longdesc This package enables users to print some Japanese text that can @@ -43872,10 +45762,10 @@ longdesc be used as dummy text. It is a Japanese counterpart of the longdesc lipsum package. Since there is no well-known nonsense text like longdesc Lipsum in the Japanese language, the package uses some real longdesc text in public domain. -containersize 26300 -containerchecksum fa8f096023f86fe53d09ef1e719d1930248981f4a9c4f762ceb00eb7e42ae87a876857f03b8210ded78798c4ea18bc44486a87876bd5f2509a9270f09d56a53f -doccontainersize 2896 -doccontainerchecksum 551385ef1ec3aed5d21cef7f1f66254f937c1a7f979db2ad083411580a64cd152b16b9629bdeaa8c2a14ebdc8566278e7a9533ea178b953b033b2637a5f29df4 +containersize 26328 +containerchecksum 72e5614e0e2c3651cff7dabf4e31b938ad5df45aba5cf34feca67314196f32e424003c57f37e7040b668e861e5388a96e21109b4a8560d05d1f08bfcb73eeae1 +doccontainersize 3008 +doccontainerchecksum 518360181d0a24dcd651c3427ac775eb33ea5dfd78d765dbd4184ace2bf513a5ad54718704f1f14178556e0ec3b1ba46bd59bdccf878c039a0f1b312a55ee9eb docfiles size=4 RELOC/doc/latex/bxjalipsum/LICENSE RELOC/doc/latex/bxjalipsum/README.md details="Readme" @@ -43886,11 +45776,11 @@ runfiles size=22 catalogue-ctan /language/japanese/BX/bxjalipsum catalogue-license mit catalogue-topics macro-supp dummy-gen japanese -catalogue-version 0.3a +catalogue-version 1.0 name bxjaprnind category Package -revision 45291 +revision 59641 shortdesc Adjust the position of parentheses at paragraph head relocated 1 longdesc In Japanese typesetting, opening parentheses placed at the @@ -43898,11 +45788,11 @@ longdesc beginning of paragraphs or lines are treated specially; for longdesc example, while the paragraph indent before normal kanji longdesc characters is 1em, the indent before parentheses can be 0.5em, longdesc 1em or 1.5em deoending on the local rule in effect. -containersize 2808 -containerchecksum 77f754e9d9cfc643286df17c7102685ee4c893b5b99308da7a8a9033fc043a7ac95a34dc4a253da4f5e6ed29b35a04376eba1635abbbbe6a6e2670d0d47f50b8 -doccontainersize 387396 -doccontainerchecksum 0010c6e9d1041013401f59820795e338d9e0f852b2d29212fda0c66cda3e2dbdf59593547a8d83d9c6d78d48fb0372a4335976ad1fcc190c3c71a3b5607a47a4 -docfiles size=103 +containersize 3180 +containerchecksum 90d69860d7017c414cae328806e4d6e9a788dfe46f7a6a5792a0e8df563471b5d60aa6b7d2ea45caea3caf954a809f64549f24105d9856d6b89f96d366a02fcf +doccontainersize 163424 +doccontainerchecksum 40c81a58de05b25b5ec537ee6ce8feaa9476ce64898e7ebc67ff1d5497e53eab341734438160e578487753ec9bb747d8c69cbd4365895326b081588b92f6677e +docfiles size=47 RELOC/doc/latex/bxjaprnind/LICENSE RELOC/doc/latex/bxjaprnind/README-ja.md details="Readme" language="ja" RELOC/doc/latex/bxjaprnind/README.md details="Readme" @@ -43910,13 +45800,13 @@ docfiles size=103 RELOC/doc/latex/bxjaprnind/bxjaprnind.tex RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.pdf RELOC/doc/latex/bxjaprnind/sample-bxjaprnind.tex -runfiles size=2 +runfiles size=3 RELOC/tex/latex/bxjaprnind/bxjaprnind.sty catalogue-contact-home https://github.com/zr-tex8r/BXjaprnind catalogue-ctan /language/japanese/BX/bxjaprnind catalogue-license mit catalogue-topics japanese macro-supp -catalogue-version 0.3b +catalogue-version 0.4a name bxjatoucs category Package @@ -43948,7 +45838,7 @@ catalogue-version 0.2 name bxjscls category Package -revision 57625 +revision 63011 shortdesc Japanese document class collection for all major engines relocated 1 longdesc This package provides an extended version of the Japanese @@ -43957,23 +45847,23 @@ longdesc original version supports only pLaTeX and upLaTeX, the extended longdesc version also supports pdfLaTeX, XeLaTeX and LuaLaTeX, with the longdesc aid of suitable packages that provide capability of Japanese longdesc typesetting. -containersize 32932 -containerchecksum 589b5b44ad6a4743a039b427d8caabae51c070591f808218f432a21df4c442df9878fd5fa882d6e5090ed808c0f689ecb8d9ee11e131415c7dd69ef992e6d898 -doccontainersize 1518456 -doccontainerchecksum e999fa0ccac37f7f5793e5f0ebf096615ef9c92cb1311e885edfced06ddd5c21ef3220bc5ac760e99dc4b49dd8d4d1d4b612d4f686433ce15e73a7222b8605d0 -docfiles size=410 +containersize 33920 +containerchecksum 23b3ad893f6d3d4ca3e05bc047eca414058974f622ec966c9a6f6f02f34f664e08a1aa8ef1fb64f9665c73ca8cb8b396336c00917b0295c8dc421e6b52bd96d1 +doccontainersize 1207792 +doccontainerchecksum 2c56a1cbcfdf4760b47919b5669a118f79615eccfc66681b1d6eb3c5ff2037f9b9de283558923e28a696059ad2d210c6568e6fc1e7e342b74978100e79494d32 +docfiles size=324 RELOC/doc/latex/bxjscls/LICENSE RELOC/doc/latex/bxjscls/README-ja.md details="Readme (Japanese)" language="ja" RELOC/doc/latex/bxjscls/README.md details="Readme" RELOC/doc/latex/bxjscls/bxjscls-manual.pdf details="User guide (Japanese)" language="ja" RELOC/doc/latex/bxjscls/bxjscls-manual.tex RELOC/doc/latex/bxjscls/bxjscls.pdf details="Package documentation (Japanese)" language="ja" -srccontainersize 82096 -srccontainerchecksum 27a1df36d928544d84ac322104c723cddaae3eada19d7b205150463c6c6e2c4da33d87c34547b02fc06b01eae4b67f3356c31132bbcb1538ec8b4cbd495855c3 -srcfiles size=100 +srccontainersize 85064 +srccontainerchecksum f76994ec09a8eb2b86ec1a5d13dc8e005fa5210566e28086f1175056f1014276ee799c2cb6f2e38d09f8dee645f86c02f6de12821215a691b7cba4d6cd3449fd +srcfiles size=103 RELOC/source/latex/bxjscls/bxjscls.dtx RELOC/source/latex/bxjscls/bxjscls.ins -runfiles size=101 +runfiles size=103 RELOC/tex/latex/bxjscls/bxjsarticle.cls RELOC/tex/latex/bxjscls/bxjsbook.cls RELOC/tex/latex/bxjscls/bxjscjkcat.sty @@ -43990,7 +45880,7 @@ catalogue-contact-repository https://github.com/zr-tex8r catalogue-ctan /language/japanese/BX/bxjscls catalogue-license bsd2 catalogue-topics japanese class -catalogue-version 2.5 +catalogue-version 2.7a name bxnewfont category Package @@ -44021,41 +45911,43 @@ catalogue-version 0.2b name bxorigcapt category Package -revision 48606 +revision 64072 shortdesc To retain the original caption names when using Babel relocated 1 -longdesc This package forces the caption names (`\chaptername`, -longdesc `\today`, etc) declared by the document class in use to be used -longdesc as the caption names for a specific language introduced by the -longdesc Babel package. -containersize 2604 -containerchecksum de76176e7448732d3d429c11b605f24a01779651dc5bb3969a6cdd45ac1801a9d2472dcb4bda9751aae09428d7962981a4c9c581244f15b68b6a4aea43d54972 -doccontainersize 2112 -doccontainerchecksum 0ec8b913862e51f89f661de3f628bb51a306d09d04adce4ff46183d8bb24c351f73c877b08b699f704661ae2c31131b7a959ad863a3a6613235318f8825136a2 -docfiles size=2 +longdesc This package forces the caption names (\chaptername, \today, +longdesc etc) declared by the document class in use to be used as the +longdesc caption names for a specific language introduced by the Babel +longdesc package. +containersize 2508 +containerchecksum 03c88a7e74c83e070d132fe55231fcf0caa51a8e87daa213533ec1db5246919b6de062e290da3e45b17f66ade1af54e38f39075284009c5bd126513e32c4f080 +doccontainersize 254532 +doccontainerchecksum 0a3c6c360bd1672fb4f1aa33dccba06c7de77a65a6e0d128fc3e90f99aa9897fd6d3a1ee5c2ca719a42a891d67a575ab13a28b7e6c9f6f8966f98167ec54cfa2 +docfiles size=66 RELOC/doc/latex/bxorigcapt/LICENSE RELOC/doc/latex/bxorigcapt/README.md details="Readme" + RELOC/doc/latex/bxorigcapt/bxorigcapt.pdf + RELOC/doc/latex/bxorigcapt/bxorigcapt.tex runfiles size=2 RELOC/tex/latex/bxorigcapt/bxorigcapt.sty catalogue-contact-home https://github.com/zr-tex8r/BXorigcapt catalogue-ctan /macros/latex/contrib/bxorigcapt catalogue-license mit catalogue-topics typesetting -catalogue-version 0.3 +catalogue-version 1.0 name bxpapersize category Package -revision 56491 +revision 63174 shortdesc Synchronize output paper size with layout paper size relocated 1 longdesc As is well known, in LaTeX processing layout paper size longdesc specified by document class options is not automatically longdesc applied to output paper size. This package enables LaTeX longdesc authors to synchronize both kinds of paper sizes. -containersize 4656 -containerchecksum 0d889b2f3e3c3e27175148a533ddf86f99704ce8ca380ce182a5361284678a4eeb72862b9b5309a63a31cf3aa2d4afc119d71363bcc9914bd493148c3c7ad6f4 -doccontainersize 3320 -doccontainerchecksum a62a581dc66c080e8b347c0708b46ae0432ec629748512c42ea3ea931d6a78b9dc25084922710d6f6fecb373ebfce5391ee7e54665f72147827069f906d9082b +containersize 4768 +containerchecksum 1a58a1a8281505922f5a6a2abc8695be6826f55dd1d37d8d42633665aaaae98544a0662cd4ba4c384757caa593eb000ff933bb7d7b215447fec6d6f5517993fd +doccontainersize 3384 +doccontainerchecksum f6631a73d4d29616fd197f9c32b7b533f60e6b007a4849930c33afa4eb866798e1ab415f0842cee8142e7e7379507b2557b096df627dabb1d714ee305a8ba0a2 docfiles size=3 RELOC/doc/latex/bxpapersize/LICENSE RELOC/doc/latex/bxpapersize/README.md details="Readme" @@ -44065,11 +45957,11 @@ catalogue-contact-home https://github.com/zr-tex8r/BXpapersize catalogue-ctan /macros/latex/contrib/bxpapersize catalogue-license mit catalogue-topics page-control -catalogue-version 0.5 +catalogue-version 0.6 name bxpdfver category Package -revision 57755 +revision 63185 shortdesc Specify version and compression level of output PDF files relocated 1 longdesc This package enables users to specify in their sources the @@ -44077,10 +45969,10 @@ longdesc following settings on the PDF document to output: PDF version longdesc (1.4, 1.5 etc.); whether or not to compress streams; whether or longdesc not to use object streams. This package supports all major longdesc PDF-output engines and dvipdfmx. -containersize 7180 -containerchecksum 68dec5bb26691a39b3aef90891fa3a7fa8e716aaacaedf32aef9e3f1a99f30e95caaef0cc1bde104d69da122b6832ea38a6fedd76780e0ccde2cb70c2a43884d -doccontainersize 4772 -doccontainerchecksum e97c28b1eac65210d427f87b9fafebce63b676d431064c92b221e1ca2882c9c9caedaf6f75bae6b6194bf2a7ae353cfab6292240f3466dffa1ccd72f9516d453 +containersize 7400 +containerchecksum 693b58af2200a99c98b1b4fe9d99fca00cd39f06877c4670e4b5e281f3c31221490f3f7106e42069c1d0f35e192fc3d8e1457572db84a8176fe5dab695a55c48 +doccontainersize 4912 +doccontainerchecksum 94500d43e01e6e4fcde2a5de892ff0587a495672620540c37f08d815a4178f153c98dc1b8ee099f2e4e849842066a126d2906defb5b07bc5849ea7dc19f81555 docfiles size=6 RELOC/doc/latex/bxpdfver/LICENSE RELOC/doc/latex/bxpdfver/README-ja.md details="Readme" language="ja" @@ -44091,11 +45983,11 @@ runfiles size=8 catalogue-ctan /macros/latex/contrib/bxpdfver catalogue-license mit catalogue-topics pdf-feat -catalogue-version 0.5a +catalogue-version 0.6 name bxtexlogo category Package -revision 47230 +revision 63231 shortdesc Additional TeX-family logos relocated 1 longdesc The hologo package provides many useful logos of popular (and @@ -44108,23 +46000,23 @@ longdesc TeX-family software that is popular mainly in Japan. These longdesc logos can be imported in the same way as those provided by the longdesc \hologo command. bxtexlogo depends on hologo and cjhebrew (if longdesc \logoAleph and \logoLamed are used). -containersize 5748 -containerchecksum d3144e28a695f0e9939ac3074679558757f2272f0a2f2ad958481981389fae44a663c07fb914b13a890a736989bbb9946d22e1c9bd5d3ffba1db010fa451ee58 -doccontainersize 426348 -doccontainerchecksum 59ee17c9147587d1eb1052dcf4624517cb575c49163a24f3dcbf27785f75b325c0de1c079c0b214cc6a63dd9d5862578303170eea91b0903d3b803c044078ee5 -docfiles size=108 +containersize 6528 +containerchecksum e0399d089bbbbac0e34a216b5164956dc9843e2d77b9cc1b395609963aba759e527dcd3fc112f4aa57b621e4419ee33d16e7bffb7f88123a0afb7c983c82636b +doccontainersize 529644 +doccontainerchecksum ddc5da87331449bded7b5936bacac04872467cea5ceff8b1a0b2c5938119351e17f1622020e53a94d704be03a626b5110685e69cb393773595d5b9cf7326f184 +docfiles size=136 RELOC/doc/latex/bxtexlogo/LICENSE RELOC/doc/latex/bxtexlogo/README.md details="Readme" RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.pdf details="Samples" RELOC/doc/latex/bxtexlogo/bxtexlogo-sample.tex -runfiles size=5 +runfiles size=6 RELOC/tex/latex/bxtexlogo/bxtexlogo.sty catalogue-also hologo catalogue-contact-home https://github.com/zr-tex8r/BXtexlogo catalogue-ctan /macros/latex/contrib/bxtexlogo catalogue-license mit catalogue-topics logo -catalogue-version 0.4 +catalogue-version 0.6 name bxwareki category Package @@ -44189,35 +46081,65 @@ catalogue-license cc-by-4 lppl1.3 catalogue-topics graphics pgf-tikz amusements catalogue-version 1.0 +name byrne +category Package +revision 61943 +shortdesc This package provides a set of tools to typeset geometric proofs in the style of Oliver Byrne's 1847 ed. of Euclid's "Elements" +relocated 1 +longdesc This package is a LaTeX adaptation of a set of tools developed +longdesc for ConTeXt reproduction of Oliver Byrne's 1847 edition of the +longdesc first six books of Euclid's "Elements"; +longdesc (https://github.com/jemmybutton/byrne-euclid). It consists of a +longdesc MetaPost library, responsible for all the drawing and a set of +longdesc LaTeX macros to conveniently use them. This package works with +longdesc LuaLaTeX and relies on luamplib v2.23.0 or higher. +containersize 24932 +containerchecksum ef27aa477ed05bfbfbe3729fcfe119f9e7e3335b9669a34ae812b21084c2063b819e1201340f3db269f9f2234b5644054ab30fb3112b6bae142c7e5a0c6831ea +doccontainersize 164212 +doccontainerchecksum d0c03c352aed98d7b1abff22d8613f34d206807fa8e0635b88b764f136bc851dd53f8757aff45f636e1c17c32ddbe481867a3e30218dc97ca07f25a147c1e435 +docfiles size=53 + RELOC/doc/metapost/byrne/README details="Readme" + RELOC/doc/metapost/byrne/byrne-latex.pdf details="Package documentation" + RELOC/doc/metapost/byrne/byrne-latex.tex +runfiles size=40 + RELOC/metapost/byrne/byrne.mp + RELOC/tex/latex/byrne/byrne.sty +catalogue-contact-bugs https://github.com/jemmybutton/byrne-latex/issues +catalogue-contact-home https://github.com/jemmybutton/byrne-latex +catalogue-ctan /graphics/metapost/contrib/macros/byrne +catalogue-license gpl3+ +catalogue-topics luatex graphics graphics-mpost +catalogue-version 0.2.2 + name bytefield category Package -revision 56821 +revision 60265 shortdesc Create illustrations for network protocol specifications relocated 1 longdesc The bytefield package helps the user create illustrations for longdesc network protocol specifications and anything else that utilizes longdesc fields of data. These illustrations show how the bits and bytes longdesc are laid out in a packet or in memory. -containersize 4916 -containerchecksum a36c81313224ac79fdd7d51f954aef437f011314061473455f0cc2be0cc52659c83400140a3b924a75c76d825b14ce3135e324438d9bf8830cf40a1c4d536a32 -doccontainersize 741368 -doccontainerchecksum 1aa94c8da8ca322cac0360205fc2724a9108aa0ebd3332fd0cd749123d7a1fde7467006595240e65937e0a6deb78a810efa677ce27b51ef62f5f15ebd620e593 -docfiles size=199 +containersize 4892 +containerchecksum 6f128c419989627e6ba7329932588121f88a63d89761d5cc912b8d53371ee5c80651dd6a3e0f8e9fb16d77ef3818baa65c317b1629b954a45743c993849732d9 +doccontainersize 754116 +doccontainerchecksum e7a496c61fde7af9d5ffb96b4dc1c2dfff8dc3883b07ece63007b2987f1ecb5d0d751daa001b0d2c045c9ca5be9ce074d37aefde8981fa88a2c9e91f7c3bdbe7 +docfiles size=210 RELOC/doc/latex/bytefield/README details="Readme" - RELOC/doc/latex/bytefield/bf-example.pdf + RELOC/doc/latex/bytefield/bf-example.pdf details="Example of use" RELOC/doc/latex/bytefield/bf-example.tex RELOC/doc/latex/bytefield/bytefield.pdf details="Package documentation" -srccontainersize 29580 -srccontainerchecksum be5993e9addb0f22a0e618b934ba77e4169f5dac3f07ca8e3986ddd4a001c7483b52fb5b3f1575c5b07339c9227891dc7794653c9be5fe531c7375dbee43ca30 +srccontainersize 29556 +srccontainerchecksum e017a2d0ea3b04682a2c5e8c0f1fc76d3d45f25161c00695f134947da31d98fd89967be43785c307893f34dee0f29ecce99c3aa539370463b31093c03b2e78ab srcfiles size=36 RELOC/source/latex/bytefield/bytefield.dtx RELOC/source/latex/bytefield/bytefield.ins runfiles size=6 RELOC/tex/latex/bytefield/bytefield.sty catalogue-ctan /macros/latex/contrib/bytefield -catalogue-license lppl1.3c +catalogue-license lppl1.3a catalogue-topics engineering comp-sci comp-net -catalogue-version 2.6 +catalogue-version 2.7 name c-pascal category Package @@ -44251,18 +46173,18 @@ catalogue-version 1.2 name c90 category Package -revision 54074 +revision 60830 shortdesc c90 font encoding for Thai relocated 1 longdesc part of the CJK package, ctan.org/pkg/cjk -containersize 1928 -containerchecksum 9ad45614fa33b2272b0975cd8a044342d7d59d3dcef0b051f7aa49b5821764f838d1ed3f2b69e577a3c5cad1c471f412d4a312ad884ed4f9f29fe0a0782eeb02 -doccontainersize 86520 -doccontainerchecksum 8b92590067d8c36b9d91a035c1eb88510327bade43f2458b12c64a74d6f0d74f23a33b61fe9ac8949d9a05137976a22e8a513ed3c6d40bb6138ccf3975ab0b8d -docfiles size=22 +containersize 1924 +containerchecksum 2350e99bfd047ea514586894d20bd37dc778c74fd4c1848063ba7d53cb59ed5df36cd20fd51140ede8af7f32ed7efc44e1d4f3db4a0baaa7d1439941ed5297a9 +doccontainersize 94164 +doccontainerchecksum 9561381312a2e3fcd6a03da1082e9bdb5a2c30e241078adbb70d06060a21674fc8a40c5cb81ce87d31ff99c168d73e9b4074cb3a6114439d5a441dd0054cc682 +docfiles size=24 RELOC/doc/fonts/enc/c90/c90.pdf srccontainersize 9824 -srccontainerchecksum bd250ed720d900551167efe6f17844e2ef89005e9f8014d46b50e6abde74fdf84f0960ae452befdf018d6b39f3efb58dbe600b73261c935a4c35f0228a3d0b46 +srccontainerchecksum 774c2aae917343ba9dd78785d2dc9123bf1dfd0920b638ee991a92a9a87199205fea04ea36304806c7213a2bb4ef06459f385558c9691a7dddff69cfe4d35fa0 srcfiles size=17 RELOC/source/fonts/enc/c90/c90.etx RELOC/source/fonts/enc/c90/c90.mtx @@ -44271,7 +46193,7 @@ runfiles size=1 name cabin category Package -revision 55907 +revision 65358 shortdesc A humanist Sans Serif font, with LaTeX support relocated 1 longdesc Cabin is a humanist sans with four weights and true italics and @@ -44285,11 +46207,11 @@ longdesc the user's view of all those font weights. An sfdefault option longdesc is provided to enable Cabin as the default text font. The longdesc fontaxes package is required for use with [pdf]LaTeX. execute addMap cabin.map -containersize 2896420 -containerchecksum a70afbed9ec2a5be99c0a22713d27b6f4a541452f9a7c3520e71cdaa6fe0f06851ef6921404ab511fd73414d8621848440ca2a9cdae4ae9d80de56ae906d4f53 -doccontainersize 49180 -doccontainerchecksum cb6dd0b813c69536dc2bc5e0c2bdcf2c52d8ed31d144f359c42b3c00e5383969e6eaf1b8d6a77e19a0b4be1789c1ac7da9332099efa877524f27c8633d0c096d -docfiles size=22 +containersize 2896412 +containerchecksum 5d96c971e8924402048edc533cdc048398fe4bcfcaed87bd0709511056f94d68ba9785599363e59c9e26fcb7bc724bb9481f8e5ea14ef8cef07376922083ceb2 +doccontainersize 229836 +doccontainerchecksum dfe85a134cffe5831a318f1b95e3f7d85ed296cafb834273e441af49488ba2c3dd974bd5668f695da1279efefce8c4858eda630f894de7cb0535d629bea74e29 +docfiles size=66 RELOC/doc/fonts/cabin/AUTHORS.txt RELOC/doc/fonts/cabin/CONTRIBUTORS.txt RELOC/doc/fonts/cabin/DESCRIPTION.en_us.html @@ -44765,15 +46687,6 @@ containerchecksum 171b9c3f97b02a4aa40a766f7f0fe87b13207d7aa8c8699588b732b346346f binfiles arch=armhf-linux size=1 bin/armhf-linux/cachepic -name cachepic.i386-cygwin -category Package -revision 15543 -shortdesc i386-cygwin files of cachepic -containersize 340 -containerchecksum 06631f4aaf9304ae7c7a163b5dde20b2b6e1423fee7946fbc7681dbefcec8d8c476402eab426811ba75c5e2921073dee0587e2ebbc517310f553a69fcb3e8680 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/cachepic - name cachepic.i386-freebsd category Package revision 16472 @@ -44819,14 +46732,14 @@ containerchecksum 20b6be2738a55f36ba1e4a7c4075f86673ca9c52bad9c06c7906483cb628df binfiles arch=universal-darwin size=1 bin/universal-darwin/cachepic -name cachepic.win32 +name cachepic.windows category Package -revision 15549 -shortdesc win32 files of cachepic -containersize 684 -containerchecksum d6d7605f95503bda4e9105f1355c19508bddf3dbcba9df88f95739a9399c8cdcb4019924d6f4c642921abdea8199dba54c571336c087f79f08fa8d354797a13b -binfiles arch=win32 size=1 - bin/win32/cachepic.exe +revision 65891 +shortdesc windows files of cachepic +containersize 2308 +containerchecksum d536fcc23df3471481e18f3c3cc72f8faad40a082242ef53bdef1f4108148cdd11869443bd668125ad0c5404fa873c5cde1b5c94d1b05c68a6263b0ff4b99a34 +binfiles arch=windows size=2 + bin/windows/cachepic.exe name cachepic.x86_64-cygwin category Package @@ -44875,7 +46788,7 @@ binfiles arch=x86_64-solaris size=1 name caladea category Package -revision 34991 +revision 64549 shortdesc Support for the Caladea family of fonts relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -44884,15 +46797,15 @@ longdesc Giovagnoli and Andres Torresi of the Huerta Tipografica foundry longdesc and adopted by Google for ChromeOS as a font-metric compatible longdesc replacement for Cambria. execute addMap caladea.map -containersize 343476 -containerchecksum 3e1d6bbb049ee4ac637fe051ac39d2e590d0e5ef4f2801ed9c1dac96b9ec8724e7643fcffe8a72de905572a75525fc6954871d8d953ae120af7e9f336da51442 -doccontainersize 93524 -doccontainerchecksum f6b47af3681349536a80bf5b6ea0db2113e35384dd7ce99da3704bdad3a3c5dc8f6dc0e4b1402c89ac97ece9907af5e0f2263edc4c0bb0a1e46ee89cac2f6639 +containersize 343472 +containerchecksum d5dccec03c75e7ae315067527ae4d88515d6bbfb6d9b1336420ea78daaa7718497e8040f75a0a531c91c2b0eae728cfddc824e623bd5c73471192c809550dbf1 +doccontainersize 93528 +doccontainerchecksum e3f84460394d1a806a06836535c8f9110715608e2110743863e4c9d37abe696a3169e904a4ef507105d54790af4165d3a5a7559b28568b86b73761975b8c0b3e docfiles size=32 - RELOC/doc/fonts/caladea/Caladea-Regular.pdf details="Package documentation" + RELOC/doc/fonts/caladea/Caladea-Regular.pdf RELOC/doc/fonts/caladea/LICENSE-2.0 RELOC/doc/fonts/caladea/README details="Readme" - RELOC/doc/fonts/caladea/samples.pdf + RELOC/doc/fonts/caladea/samples.pdf details="Font samples" RELOC/doc/fonts/caladea/samples.tex runfiles size=204 RELOC/fonts/enc/dvips/caladea/cld_cb3g7n.enc @@ -44954,8 +46867,8 @@ runfiles size=204 RELOC/tex/latex/caladea/TS1Caladea-TLF.fd RELOC/tex/latex/caladea/caladea.sty catalogue-ctan /fonts/caladea -catalogue-license apache2 -catalogue-topics font font-type1 font-ttf +catalogue-license apache2 lppl +catalogue-topics font font-body font-serif font-proportional font-type1 font-ttf font-supp font-t1enc name calcage category Package @@ -45051,97 +46964,35 @@ catalogue-version 1.0 name calculator category Package -revision 33041 +revision 64424 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 and functional calculations needed in the author's package longdesc xpicture, but the numeric abilities of "calculator" and longdesc "calculus" may be useful in other contexts. -containersize 9948 -containerchecksum d381e15db10c289b3de79bc6464c714391949f149cf5e6ff7af04e3f195308cd9d71627dc04c6138b17d4d2c1e5caeb44149e327df78d20e54344d95cfc4d8ac -doccontainersize 565844 -doccontainerchecksum 107055cab430fa0867f48b3e4c9215052926ea328d29d920dd0345bc48cc956a0673f6ba3b72c954acd98fb65678acde00b4d18def40225e1b8ff656a7938754 -docfiles size=203 - RELOC/doc/latex/calculator/README details="Readme" +containersize 10164 +containerchecksum de62244340b27b1b62c7cfabc8da5acac3da0440f3190c392ae86f6160544d3b8e44dbcf5b5c95526b87cb7a0272c63fb19c06181c2b996e6de2affcddfa797e +doccontainersize 569004 +doccontainerchecksum d699c74a2b5a7932f454f121582ab4f03482022aef0b145f21ce04bf500f01a6504a39989fe22170fedb27206274285abff54a1fe59e2804a91d05c923c88e86 +docfiles size=142 + RELOC/doc/latex/calculator/README.md details="Readme" RELOC/doc/latex/calculator/calculator.pdf details="Package documentation" - RELOC/doc/latex/calculator/examples/calculator1.tex - RELOC/doc/latex/calculator/examples/calculator10.tex - RELOC/doc/latex/calculator/examples/calculator11.tex - RELOC/doc/latex/calculator/examples/calculator12.tex - RELOC/doc/latex/calculator/examples/calculator13.tex - RELOC/doc/latex/calculator/examples/calculator14.tex - RELOC/doc/latex/calculator/examples/calculator15.tex - RELOC/doc/latex/calculator/examples/calculator16.tex - RELOC/doc/latex/calculator/examples/calculator17.tex - RELOC/doc/latex/calculator/examples/calculator18.tex - RELOC/doc/latex/calculator/examples/calculator19.tex - RELOC/doc/latex/calculator/examples/calculator2.tex - RELOC/doc/latex/calculator/examples/calculator20.tex - RELOC/doc/latex/calculator/examples/calculator21.tex - RELOC/doc/latex/calculator/examples/calculator22.tex - RELOC/doc/latex/calculator/examples/calculator23.tex - RELOC/doc/latex/calculator/examples/calculator24.tex - RELOC/doc/latex/calculator/examples/calculator25.tex - RELOC/doc/latex/calculator/examples/calculator26.tex - RELOC/doc/latex/calculator/examples/calculator27.tex - RELOC/doc/latex/calculator/examples/calculator28.tex - RELOC/doc/latex/calculator/examples/calculator29.tex - RELOC/doc/latex/calculator/examples/calculator3.tex - RELOC/doc/latex/calculator/examples/calculator30.tex - RELOC/doc/latex/calculator/examples/calculator31.tex - RELOC/doc/latex/calculator/examples/calculator32.tex - RELOC/doc/latex/calculator/examples/calculator33.tex - RELOC/doc/latex/calculator/examples/calculator34.tex - RELOC/doc/latex/calculator/examples/calculator35.tex - RELOC/doc/latex/calculator/examples/calculator36.tex - RELOC/doc/latex/calculator/examples/calculator37.tex - RELOC/doc/latex/calculator/examples/calculator38.tex - RELOC/doc/latex/calculator/examples/calculator39.tex - RELOC/doc/latex/calculator/examples/calculator4.tex - RELOC/doc/latex/calculator/examples/calculator40.tex - RELOC/doc/latex/calculator/examples/calculator41.tex - RELOC/doc/latex/calculator/examples/calculator42.tex - RELOC/doc/latex/calculator/examples/calculator43.tex - RELOC/doc/latex/calculator/examples/calculator44.tex - RELOC/doc/latex/calculator/examples/calculator45.tex - RELOC/doc/latex/calculator/examples/calculator46.tex - RELOC/doc/latex/calculator/examples/calculator47.tex - RELOC/doc/latex/calculator/examples/calculator48.tex - RELOC/doc/latex/calculator/examples/calculator49.tex - RELOC/doc/latex/calculator/examples/calculator5.tex - RELOC/doc/latex/calculator/examples/calculator50.tex - RELOC/doc/latex/calculator/examples/calculator51.tex - RELOC/doc/latex/calculator/examples/calculator52.tex - RELOC/doc/latex/calculator/examples/calculator53.tex - RELOC/doc/latex/calculator/examples/calculator54.tex - RELOC/doc/latex/calculator/examples/calculator55.tex - RELOC/doc/latex/calculator/examples/calculator56.tex - RELOC/doc/latex/calculator/examples/calculator57.tex - RELOC/doc/latex/calculator/examples/calculator58.tex - RELOC/doc/latex/calculator/examples/calculator59.tex - RELOC/doc/latex/calculator/examples/calculator6.tex - RELOC/doc/latex/calculator/examples/calculator60.tex - RELOC/doc/latex/calculator/examples/calculator61.tex - RELOC/doc/latex/calculator/examples/calculator62.tex - RELOC/doc/latex/calculator/examples/calculator7.tex - RELOC/doc/latex/calculator/examples/calculator8.tex - RELOC/doc/latex/calculator/examples/calculator9.tex -srccontainersize 29364 -srccontainerchecksum 3121da3beab24f10d9898b88fb971613050078d2d09deedb03f3c5e6b9b1dd9f0a9e8a2c7c8ae092e8cee7058abca6366ff09dd15aab4f386adab0206e11303b -srcfiles size=45 +srccontainersize 29892 +srccontainerchecksum 819c7159200ceca98ab34302951af308233a12a18daebced97370eda15e41490c83b577c3f3a0bd375601f1ef4f380ef3f3cc3e4f6df84b4c3a0d9ab9fcc7a03 +srcfiles size=46 RELOC/source/latex/calculator/calculator.dtx RELOC/source/latex/calculator/calculator.ins runfiles size=19 RELOC/tex/latex/calculator/calculator.sty RELOC/tex/latex/calculator/calculus.sty catalogue-ctan /macros/latex/contrib/calculator -catalogue-license lppl1.2 +catalogue-license lppl1.3 catalogue-topics calculation maths -catalogue-version 2.0 +catalogue-version 2.1 name calligra category Package @@ -45401,7 +47252,7 @@ catalogue-version 2.4.2 name calxxxx-yyyy category Package -revision 57282 +revision 65426 shortdesc Print a calendar for a group of years relocated 1 longdesc The package prints a calendar for two or more years, according @@ -45410,15 +47261,15 @@ longdesc dependent" in the sense that it will start weeks according to longdesc local rules: e.g., weeks conventionally start on Monday in the longdesc English-speaking world. The package requires array, babel, and longdesc geometry. -containersize 6276 -containerchecksum 2e9355442fdf8c4389fc09c8966c5e6b72cfe2df1b3209ec698db686579bef9ab41c17a36bd9714b3e917a8bcbc8ae568ca34bc7112a5a39d00a5b2c5340ac65 -doccontainersize 376788 -doccontainerchecksum 849652e8def77d6f9f0d16f29753df5e5b9095bcfed9be8105294df7ddc26644d1784a27a8b203d9e6c295c0f1e7f58d36f17bf98752ec9ee26ac3ac5a2f361d -docfiles size=109 +containersize 6328 +containerchecksum f76d0a8a225582fda0c9b93549de8f091cbe5bb7db4cc20ffe5c5237126162954504f9748c75b8ea90805daa1b0b3bce2bd67fd6a9cea0700653c46206b27c9c +doccontainersize 381652 +doccontainerchecksum 418beea5ff9b534d9cce8a4b90ee930c9df6e6c109fb045207899c823deab6e10f284111ff57aa8d5d7eed7a03f6073afeff2eccabe0303f566d560f59c5fc39 +docfiles size=113 RELOC/doc/latex/calxxxx-yyyy/README details="Readme" - RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_DE.pdf details="Sample (German) Calendar" language="de" - RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_DK.pdf details="Sample (Danish) Calendar" language="da" - RELOC/doc/latex/calxxxx-yyyy/cal2021-2038_EN.pdf details="Sample (English) Calendar" language="en" + RELOC/doc/latex/calxxxx-yyyy/cal2023-2040_DE.pdf + RELOC/doc/latex/calxxxx-yyyy/cal2023-2040_DK.pdf + RELOC/doc/latex/calxxxx-yyyy/cal2023-2040_EN.pdf RELOC/doc/latex/calxxxx-yyyy/calxxxx-yyyy-doc.pdf details="Package documentation" runfiles size=5 RELOC/tex/latex/calxxxx-yyyy/calxxxx-yyyy-doc.tex @@ -45427,7 +47278,7 @@ catalogue-also calxxxx catalogue-ctan /macros/latex/contrib/calxxxx-yyyy catalogue-license lppl1.3c catalogue-topics calendar -catalogue-version 20.21a +catalogue-version 20.23a name cancel category Package @@ -45453,29 +47304,29 @@ catalogue-version 2.2 name canoniclayout category Package -revision 54758 +revision 64889 shortdesc Create canonical page layouts with memoir relocated 1 longdesc A canonic text layout has specified relations to a circle longdesc inscribed within the enclosing page. The package allows the longdesc user to use a canonic layout with the memoir class. -containersize 1796 -containerchecksum 26e6e7a7b521a020e110f44db7e90b87b3489310102bd56703f453c5b83c454ae8b8b108f842928172470bdf3cfc6085898a9f1719c55bd439bb21855470f35f -doccontainersize 483420 -doccontainerchecksum 45c35415edc5e4033215af9568a72dcecefafda319936dd3512da58eb5c2b73e0d75d7cc4fc640b9c231807c5027a515a1ad12cf61aa4847bf6ed5143525ee24 -docfiles size=119 +containersize 2700 +containerchecksum 850e180dad92a7082a314535fedf7e45e3bc3db48db0e7948287bf7782c2b1fd13924e666ca0edecc5fdd7b00fb55cfb0c5c17bd51019a21fd10c7116796b6d7 +doccontainersize 521108 +doccontainerchecksum 5ee3ca34d87e3f9cc70b606ebc5a8f7918d86284837a3359ca8d4dde50ce36e43a651e3cb6327f66a91f23fd7d5edad4a037e99745de3e5f23005f59517fadc5 +docfiles size=132 RELOC/doc/latex/canoniclayout/README.txt details="Readme" RELOC/doc/latex/canoniclayout/canoniclayout.pdf details="Package documentation" -srccontainersize 9704 -srccontainerchecksum d6262c36db8977185928dae4a41f6bb7f732d55f8fa8890741bdcb8cabb4c95c43eb9229d78fb66c661428717c347d260e4d09e5bdab1af8454dd6b7b1cbe3d4 -srcfiles size=7 +srccontainersize 11372 +srccontainerchecksum 040ce827288d3498274c9df72b4b1a7ab50fd8a5e500cf66fe4ee0f4c211a356c63a9666a3c9003b7c3ee35ce1dcd1feb16828fe1f119a0684b24676121e911a +srcfiles size=9 RELOC/source/latex/canoniclayout/canoniclayout.dtx -runfiles size=1 +runfiles size=2 RELOC/tex/latex/canoniclayout/canoniclayout.sty catalogue-ctan /macros/latex/contrib/canoniclayout catalogue-license lppl1.3 catalogue-topics geometry -catalogue-version 0.5 +catalogue-version 1.0 name cantarell category Package @@ -46511,7 +48362,7 @@ catalogue-topics caption name caption category Package -revision 56771 +revision 66580 shortdesc Customising captions in floating environments relocated 1 longdesc The caption package provides many ways to customise the @@ -46523,35 +48374,31 @@ longdesc compatibility notes, for other packages, is provided in the longdesc documentation. The package also provides the "caption outside longdesc float" facility, in the same way that simpler packages like longdesc capt-of do. The package supersedes caption2. -containersize 30812 -containerchecksum d0e7276e6e84cabc85d64bc397fd2e4a258e913e4f78022ae40f3c7293e7f9b3f34dd011a944223507cb1555dbf2031dc563e34a5f7064e9903964bda5a893c3 -doccontainersize 1564528 -doccontainerchecksum 50018fff476b99763a3373b9defdf9de854915af11cf37f3a00907483ac481b9a0709d23f6d3612ab754c3f079eda905c5fa3447f576dadcb65f83a5ae5a98e8 -docfiles size=486 +containersize 60908 +containerchecksum 15317f386e88d7d8214bf3bd99f3bb0a7742b06b1a0480016c2ee137175bbed797bb57c7438b097db77d96813b576f81bf33432fb6c93d930fb7c7e24bc43434 +doccontainersize 784172 +doccontainerchecksum 7322b5f8b93ec524c5c615ffe8ad1b3c58859db07db49007987a4bbc1bd6be90ff2dd1333dbea445f18c5324a44a5b4dc630efa629408f54404379c3f46f3974 +docfiles size=276 RELOC/doc/latex/caption/CHANGELOG RELOC/doc/latex/caption/README details="Readme" RELOC/doc/latex/caption/SUMMARY RELOC/doc/latex/caption/bicaption.pdf - RELOC/doc/latex/caption/caption-deu.pdf details="German documentation" language="de" - RELOC/doc/latex/caption/caption-eng.pdf details="English documentation" language="en" RELOC/doc/latex/caption/caption-light.pdf - RELOC/doc/latex/caption/caption-rus.pdf details="Russian documentation" language="ru" + RELOC/doc/latex/caption/caption.pdf details="English documentation" language="en" + RELOC/doc/latex/caption/caption2.pdf RELOC/doc/latex/caption/ltcaption.pdf RELOC/doc/latex/caption/subcaption.pdf -srccontainersize 203920 -srccontainerchecksum 5f961b0fb1a11d5f28d75f58331d0b79bb87800d4a5412c57a66c5693c07225a46e49cb42f8f0653e06a74e2c7de38660f99d89f12905892f47fda5ba6820826 -srcfiles size=313 +srccontainersize 214664 +srccontainerchecksum 07eb39789cfe05c0ee36df364bfb4c87fdcfb44172d696086181fdc1ffb8d2120f2d5d67e735e8751daa39c43dd60b451f07e116817a282bac76f5866aeecdfa +srcfiles size=694 RELOC/source/latex/caption/bicaption.dtx RELOC/source/latex/caption/caption-ams-smf.dtx RELOC/source/latex/caption/caption-beamer.dtx - RELOC/source/latex/caption/caption-deu.tex RELOC/source/latex/caption/caption-elsarticle.dtx - RELOC/source/latex/caption/caption-eng.tex RELOC/source/latex/caption/caption-koma.dtx RELOC/source/latex/caption/caption-light.dtx RELOC/source/latex/caption/caption-memoir.dtx RELOC/source/latex/caption/caption-ntg.dtx - RELOC/source/latex/caption/caption-rus.tex RELOC/source/latex/caption/caption-thesis.dtx RELOC/source/latex/caption/caption.dtx RELOC/source/latex/caption/caption.ins @@ -46559,9 +48406,22 @@ srcfiles size=313 RELOC/source/latex/caption/caption3.dtx RELOC/source/latex/caption/cat.eps RELOC/source/latex/caption/elephant.eps + RELOC/source/latex/caption/fallback/v1/caption.dtx + RELOC/source/latex/caption/fallback/v2.0/caption2.dtx + RELOC/source/latex/caption/fallback/v2.1/caption2.dtx + RELOC/source/latex/caption/fallback/v3.0/caption.dtx + RELOC/source/latex/caption/fallback/v3.1/caption.dtx + RELOC/source/latex/caption/fallback/v3.2/caption.dtx + RELOC/source/latex/caption/fallback/v3.2/caption3.dtx + RELOC/source/latex/caption/fallback/v3.3/caption.dtx + RELOC/source/latex/caption/fallback/v3.3/caption3.dtx + RELOC/source/latex/caption/fallback/v3.4/caption.dtx + RELOC/source/latex/caption/fallback/v3.4/caption3.dtx + RELOC/source/latex/caption/fallback/v3.5/caption.dtx + RELOC/source/latex/caption/fallback/v3.5/caption3.dtx RELOC/source/latex/caption/ltcaption.dtx RELOC/source/latex/caption/subcaption.dtx -runfiles size=52 +runfiles size=235 RELOC/tex/latex/caption/bicaption.sty RELOC/tex/latex/caption/caption-ams-smf.sto RELOC/tex/latex/caption/caption-beamer.sto @@ -46573,7 +48433,22 @@ runfiles size=52 RELOC/tex/latex/caption/caption-thesis.sto RELOC/tex/latex/caption/caption.sty RELOC/tex/latex/caption/caption2.sty + RELOC/tex/latex/caption/caption2_1995-10-09.sty + RELOC/tex/latex/caption/caption2_2005-10-03.sty RELOC/tex/latex/caption/caption3.sty + RELOC/tex/latex/caption/caption3_2007-04-11.sty + RELOC/tex/latex/caption/caption3_2010-01-14.sty + RELOC/tex/latex/caption/caption3_2011-11-01.sty + RELOC/tex/latex/caption/caption3_2019-09-01.sty + RELOC/tex/latex/caption/caption3_2020-07-29.sty + RELOC/tex/latex/caption/caption3_2020-10-26.sty + RELOC/tex/latex/caption/caption_1995-04-05.sty + RELOC/tex/latex/caption/caption_2007-04-16.sty + RELOC/tex/latex/caption/caption_2010-01-09.sty + RELOC/tex/latex/caption/caption_2011-11-10.sty + RELOC/tex/latex/caption/caption_2019-09-01.sty + RELOC/tex/latex/caption/caption_2020-07-29.sty + RELOC/tex/latex/caption/caption_2020-10-26.sty RELOC/tex/latex/caption/ltcaption.sty RELOC/tex/latex/caption/subcaption.sty catalogue-also subcaption bicaption @@ -46612,7 +48487,7 @@ catalogue-version 0.1 name carlisle category Package -revision 56753 +revision 59577 shortdesc David Carlisle's small packages relocated 1 longdesc Many of David Carlisle's more substantial packages stand on @@ -46624,16 +48499,16 @@ longdesc documents; A jiffy to remove counters from other counters' longdesc reset lists (now obsolete as it has been incorporated into the longdesc LaTeX format); A jiffy to create 'slashed' characters for longdesc physicists. -containersize 8664 -containerchecksum 679a07121b01b5ef1ad15b5713bf2b38374d49458d754eb204c914bc02dfd4ed429e30826efd980be0bfd1cefad7607804a04e8a820980877bea68286b23961f -doccontainersize 70876 -doccontainerchecksum 55265a53e2ae899bb6f856626f155c96084328b7967e6c599e56d53faa5b746efda2f98b6f9b4571d7473da8c664799c259d2f052776b4da218dddc03265df2b -docfiles size=19 +containersize 8688 +containerchecksum 345c61b7eb6637e73a66b5f9183ec39188d4e2ffdd418f12d8ae70394f447eaf8a5d8c62e1adfa515ab7879e1afac4163957ae0b6facafd9ae6ad6f300acbe03 +doccontainersize 74704 +doccontainerchecksum 54c785d458a5a2848c2ae5c730215df4a66a7dc523605d3a9a8985cbd65677627a2a5f5800f055da65ecfaf096fda609f4a7f3a5ce22339f0ee6bec635250ec7 +docfiles size=21 RELOC/doc/latex/carlisle/README.txt details="Bundle README" RELOC/doc/latex/carlisle/ltx1.tex RELOC/doc/latex/carlisle/ltxtable.pdf details="Documentation of ltxtable" -srccontainersize 2884 -srccontainerchecksum 350e30ed75ab3f6b3e33d4d0c16f84cc7cf887b022175437ab11bf561698c3d06d624f02971652ff370de1c4e6454e0a3cdbb75530e08bbf141ba9ef7298b942 +srccontainersize 2968 +srccontainerchecksum 9acfe2c47c7a6a9ee358bc79482f2b21f6ab735fe25696e04a996cfad798a0461dcc0bccf6ee7fff9a6b9e22307f5312e26f9c4fba46a03f0289b8031a6bb97d srcfiles size=2 RELOC/source/latex/carlisle/ltxtable.tex runfiles size=8 @@ -46651,7 +48526,7 @@ catalogue-topics collection name carlito category Package -revision 35002 +revision 64624 shortdesc Support for Carlito sans-serif fonts relocated 1 longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -46660,236 +48535,236 @@ longdesc Lukasz Dziedzic of the tyPoland foundry and adopted by Google longdesc for ChromeOS as a font-metric compatible replacement for longdesc Calibri. execute addMap carlito.map -containersize 2726328 -containerchecksum 57575185b89cf337f612f3e5b8458502e0d86a49c992d40f8cdb390417b0387fb0039ec316fa807fcddad7795e9f6617f62cf0bd6827bb654ac28231f65bc0a8 -doccontainersize 354048 -doccontainerchecksum b656565ef24d9939545e52af7bafcfc8a3613d0f206e1aab455e339c1d2590e930207db24033c8585a1e7950ec9f550d3b37a0c1adf456800b85ef63b68f875d -docfiles size=101 +containersize 2574308 +containerchecksum 7b958d163439d9f3e7d6f8cf998beb799013a051a1b79719930d0efbc13e167170e330908a947a9708f55897e6c0e56ea020fee5876b6f3bb9e76dcc5997a66a +doccontainersize 624608 +doccontainerchecksum 6718aed70469e95dc4d077552b453f81c9fbbcad6201194eb264bba6aa9c9f9b1b1b09d1ed987b963d6b09e13afe5dfda1436333f0c44ee3c368caa90d790613 +docfiles size=167 RELOC/doc/fonts/carlito/Carlito-Regular.pdf details="Font tables" RELOC/doc/fonts/carlito/LICENSE RELOC/doc/fonts/carlito/README details="Readme" - RELOC/doc/fonts/carlito/samples.pdf details="Font samples" - RELOC/doc/fonts/carlito/samples.tex -runfiles size=1561 - RELOC/fonts/enc/dvips/carlito/crlt_57h366.enc - RELOC/fonts/enc/dvips/carlito/crlt_bxv5ge.enc - RELOC/fonts/enc/dvips/carlito/crlt_cegsyz.enc - RELOC/fonts/enc/dvips/carlito/crlt_csjzgd.enc - RELOC/fonts/enc/dvips/carlito/crlt_eckivh.enc - RELOC/fonts/enc/dvips/carlito/crlt_houcxd.enc - RELOC/fonts/enc/dvips/carlito/crlt_ibktmo.enc - RELOC/fonts/enc/dvips/carlito/crlt_lllwh4.enc - RELOC/fonts/enc/dvips/carlito/crlt_llspvt.enc - RELOC/fonts/enc/dvips/carlito/crlt_n2dr37.enc - RELOC/fonts/enc/dvips/carlito/crlt_n75whf.enc - RELOC/fonts/enc/dvips/carlito/crlt_ntvnfo.enc - RELOC/fonts/enc/dvips/carlito/crlt_o4ofpw.enc - RELOC/fonts/enc/dvips/carlito/crlt_orgsld.enc - RELOC/fonts/enc/dvips/carlito/crlt_rekp6x.enc - RELOC/fonts/enc/dvips/carlito/crlt_sghv4p.enc - RELOC/fonts/enc/dvips/carlito/crlt_ssbojb.enc - RELOC/fonts/enc/dvips/carlito/crlt_uuhkl6.enc - RELOC/fonts/enc/dvips/carlito/crlt_ynpzot.enc - RELOC/fonts/enc/dvips/carlito/crlt_z7vml3.enc + RELOC/doc/fonts/carlito/carlito-samples.pdf details="Font samples" + RELOC/doc/fonts/carlito/carlito-samples.tex +runfiles size=1527 + RELOC/fonts/enc/dvips/carlito/crlt_7oxnun.enc + RELOC/fonts/enc/dvips/carlito/crlt_diffle.enc + RELOC/fonts/enc/dvips/carlito/crlt_du3rrv.enc + RELOC/fonts/enc/dvips/carlito/crlt_egrrry.enc + RELOC/fonts/enc/dvips/carlito/crlt_ggvanz.enc + RELOC/fonts/enc/dvips/carlito/crlt_hsqwq5.enc + RELOC/fonts/enc/dvips/carlito/crlt_j4hweq.enc + RELOC/fonts/enc/dvips/carlito/crlt_kvbpjz.enc + RELOC/fonts/enc/dvips/carlito/crlt_ln7ww5.enc + RELOC/fonts/enc/dvips/carlito/crlt_lu4jub.enc + RELOC/fonts/enc/dvips/carlito/crlt_nhqtbp.enc + RELOC/fonts/enc/dvips/carlito/crlt_nnew6j.enc + RELOC/fonts/enc/dvips/carlito/crlt_qnx4q4.enc + RELOC/fonts/enc/dvips/carlito/crlt_shvaqa.enc + RELOC/fonts/enc/dvips/carlito/crlt_toeewq.enc + RELOC/fonts/enc/dvips/carlito/crlt_tqddrq.enc + RELOC/fonts/enc/dvips/carlito/crlt_txfnxl.enc + RELOC/fonts/enc/dvips/carlito/crlt_ys3vdn.enc + RELOC/fonts/enc/dvips/carlito/crlt_zisnlb.enc + RELOC/fonts/enc/dvips/carlito/crlt_zmzg5w.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/fonts/tfm/google/carlito/Crlt-Bold-inf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-inf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-inf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-inf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-inf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-inf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-inf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-inf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-inf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-inf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-lf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-osf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-sup-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-sup-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-sup-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-sup-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tlf-ts1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-ly1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-ot1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-t1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-t1.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/carlito/Crlt-tosf-ts1.tfm + RELOC/fonts/truetype/google/carlito/Carlito-Bold.ttf + RELOC/fonts/truetype/google/carlito/Carlito-BoldItalic.ttf + RELOC/fonts/truetype/google/carlito/Carlito-Italic.ttf + RELOC/fonts/truetype/google/carlito/Carlito-Regular.ttf + RELOC/fonts/type1/google/carlito/Crlt-Bold.pfb + RELOC/fonts/type1/google/carlito/Crlt-BoldItalic.pfb + RELOC/fonts/type1/google/carlito/Crlt-Italic.pfb + RELOC/fonts/type1/google/carlito/Crlt-Regular.pfb + RELOC/fonts/vf/google/carlito/Crlt-Bold-inf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-lf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-lf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-osf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-osf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-sup-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-tlf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-tosf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-inf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-inf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-lf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-lf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-osf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-osf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-sup-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-tlf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-tosf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-inf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-lf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-lf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-osf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-osf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-sup-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-tlf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-tlf-ts1.vf + RELOC/fonts/vf/google/carlito/Crlt-tosf-t1.vf + RELOC/fonts/vf/google/carlito/Crlt-tosf-ts1.vf + RELOC/tex/latex/carlito/LY1Crlt-Inf.fd + RELOC/tex/latex/carlito/LY1Crlt-LF.fd + RELOC/tex/latex/carlito/LY1Crlt-OsF.fd + RELOC/tex/latex/carlito/LY1Crlt-Sup.fd + RELOC/tex/latex/carlito/LY1Crlt-TLF.fd + RELOC/tex/latex/carlito/LY1Crlt-TOsF.fd + RELOC/tex/latex/carlito/OT1Crlt-Inf.fd + RELOC/tex/latex/carlito/OT1Crlt-LF.fd + RELOC/tex/latex/carlito/OT1Crlt-OsF.fd + RELOC/tex/latex/carlito/OT1Crlt-Sup.fd + RELOC/tex/latex/carlito/OT1Crlt-TLF.fd + RELOC/tex/latex/carlito/OT1Crlt-TOsF.fd + RELOC/tex/latex/carlito/T1Crlt-Inf.fd + RELOC/tex/latex/carlito/T1Crlt-LF.fd + RELOC/tex/latex/carlito/T1Crlt-OsF.fd + RELOC/tex/latex/carlito/T1Crlt-Sup.fd + RELOC/tex/latex/carlito/T1Crlt-TLF.fd + RELOC/tex/latex/carlito/T1Crlt-TOsF.fd + RELOC/tex/latex/carlito/TS1Crlt-LF.fd + RELOC/tex/latex/carlito/TS1Crlt-OsF.fd + RELOC/tex/latex/carlito/TS1Crlt-TLF.fd + RELOC/tex/latex/carlito/TS1Crlt-TOsF.fd RELOC/tex/latex/carlito/carlito.sty catalogue-contact-home http://gsdview.appspot.com/chromeos-localmirror/distfiles/crosextrafonts-carlito-20130920.tar.gz catalogue-ctan /fonts/carlito @@ -46931,34 +48806,79 @@ catalogue-ctan /fonts/carolmin-ps catalogue-license lppl catalogue-topics font font-bookhand font-type1 +name cartonaugh +category Package +revision 59938 +shortdesc A LuaLaTeX package for drawing karnaugh maps with up to 6 variables +relocated 1 +longdesc This package, a fork of 2pi's karnaugh-map package, draws +longdesc karnaugh maps with 2, 3, 4, 5, and 6 variables. It also +longdesc contains commands for filling the karnaugh map with terms +longdesc semi-automatically or manually. Last but not least it contains +longdesc commands for drawing implicants on top of the map. The name +longdesc "cartonaugh" is a portmanteau of "cartographer" and "karnaugh". +longdesc The package needs LuaLaTeX and depends on TikZ, xparse, and +longdesc xstring. +containersize 6960 +containerchecksum 354baf8e8cffc0849494e4f79a64111bc0fd4a63e2454b4d4763bcf0c25511e4fe70caf048c628695a90c55c04fea0fcb026a57e72131e746f9d795fbf54fc82 +doccontainersize 165704 +doccontainerchecksum 3811c97d39d7738ee26cc40f839eaf9f51d798d7f14a93c5906ea977a20ff864f84772adf3815216827894fec67f21c488797b4cf0b4db3c7ef6c551637d0493 +docfiles size=53 + RELOC/doc/latex/cartonaugh/README.md details="Readme" + RELOC/doc/latex/cartonaugh/cartonaugh-example.pdf + RELOC/doc/latex/cartonaugh/cartonaugh-example.tex + RELOC/doc/latex/cartonaugh/cartonaugh.pdf details="Package documentation" + RELOC/doc/latex/cartonaugh/test.sh + RELOC/doc/latex/cartonaugh/test/cartonaugh-bw-color.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-grid.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-implicant.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-implicantcorner.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-implicantedge.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-options.tex + RELOC/doc/latex/cartonaugh/test/cartonaugh-terms.tex +srccontainersize 10396 +srccontainerchecksum 9e417dd74451cf07d406f0c085231c175ba5bed083456a06cf9e0e3539ff32b2c6d596190ff7421b879572f0f568fd775c66e4eedeb776e69d6e5dff461dffdf +srcfiles size=16 + RELOC/source/latex/cartonaugh/cartonaugh.dtx + RELOC/source/latex/cartonaugh/cartonaugh.ins +runfiles size=8 + RELOC/tex/latex/cartonaugh/cartonaugh.lua + RELOC/tex/latex/cartonaugh/cartonaugh.sty +catalogue-contact-bugs https://github.com/Electro707/Cartonaugh/issues +catalogue-contact-repository https://github.com/Electro707/Cartonaugh +catalogue-ctan /graphics/pgf/contrib/cartonaugh +catalogue-license cc-by-sa-3 +catalogue-topics engineering maths pgf-tikz luatex +catalogue-version 1.0 + name cascade category Package -revision 55759 +revision 65757 shortdesc Constructions with braces to present mathematical demonstrations relocated 1 longdesc The LaTeX package cascade provides a command \Cascade to do longdesc constructions to present mathematical demonstrations with longdesc successive braces for the deductions. -containersize 2280 -containerchecksum 2c108ed478340c3605848c67dced82eb09040632e63dc59aa00c2ff52d0a0ff9c174240adb096ffdfbce8449c4b612df4ad0da05e41bfdf0040ed4e510a0ea19 -doccontainersize 168008 -doccontainerchecksum f3b650bc8ffcb089b09a94bdeda3e188df26c5494cbcc515c095670e6f13be31e6d18a19b781d98fd78ea9df7144f9d5e8bed13a79da99de1f2d0329079438f6 +containersize 2564 +containerchecksum 7411f24d41aae23f52a2d611cc76ae4f4e6895c8cf0d038b7e4561f355d00c21a6164f0fcb866599b5637fd9cb5e4fb34e6507638a5fa7370ade5fc1df1ded15 +doccontainersize 160328 +doccontainerchecksum dd52dae9ec2eb88f9c8db29eb633e110132795e4c995cd6980bc68e009205bf76c5cf513a47df1391e300c886f3aed78f5ea6187dacadbeee44cd985efcd749c docfiles size=47 RELOC/doc/latex/cascade/README.md details="Readme" RELOC/doc/latex/cascade/cascade-french.pdf details="Package documentation" language="fr" RELOC/doc/latex/cascade/cascade-french.tex RELOC/doc/latex/cascade/cascade.pdf details="Package documentation" -srccontainersize 6340 -srccontainerchecksum 3b5b9fc20b90dee62d281ba4d25953e660b52488271a812e595215f255c7947131ae33d3cbc65036242d25996bdfe40a980650cd942af2cf6029e408f0f7f915 -srcfiles size=7 +srccontainersize 6516 +srccontainerchecksum 42e021863fefc55b730c35bba7966f2858567efa2ff3b0222b4bd9f2e47bc3ce8d44d3f2f01405e76831c2af99feb96d30c2a5f1974a18c2a1e84326b72180c4 +srcfiles size=8 RELOC/source/latex/cascade/cascade.dtx RELOC/source/latex/cascade/cascade.ins -runfiles size=2 +runfiles size=3 RELOC/tex/latex/cascade/cascade.sty catalogue-ctan /macros/latex/contrib/cascade catalogue-license lppl1.3 -catalogue-topics maths -catalogue-version 1.1 +catalogue-topics maths expl3 +catalogue-version 1.2a name cascadia-code category Package @@ -47295,24 +49215,24 @@ catalogue-version r0.2 name catechis category Package -revision 49061 +revision 59998 shortdesc Macros for typesetting catechisms relocated 1 longdesc The macros include: format for question-and-answer; comments on longdesc answers; lengthier explanations of answers; citations. The longdesc formatting of all the macros is highly (and simply) longdesc customizable. -containersize 1664 -containerchecksum 2fb8f8ae6f9e597740edbdd0e686f9715dbd4ad2df2cf9d3737b09d1ef496582e243b8e21414fab8cb89d3d5a8ad30a4d82276551ad6fa548895c6cbc7612cb9 -doccontainersize 395344 -doccontainerchecksum 2273842b6b0222c98736fe6338eec505e5a75ca45d180c259bb3073ed47a5d0bab65fbb95630076f764db64d978ad8b3dbdb6a12775d2af3ea730c9d1b938bf6 +containersize 1660 +containerchecksum 3994f92840c261d92ad8ebcf3205491146ab64cc65b7685557d2b84e3ef73058f3e968726b157d13e986a5ca40aeac2a9ffd48d019664ed2da4f01589ef4f0df +doccontainersize 395736 +doccontainerchecksum 8b44ed2ca1ed8abbd5acc75074a2e297cc72632cda43a7049009631a79e459052808e51b169bd0be7932245ea2539223587b38cdc6d06e67c16da457b7036560 docfiles size=102 RELOC/doc/latex/catechis/CHANGES RELOC/doc/latex/catechis/README details="Readme" RELOC/doc/latex/catechis/catechis.pdf details="Package documentation" RELOC/doc/latex/catechis/lppl.txt -srccontainersize 6420 -srccontainerchecksum bd78292392877d0694fc085ab92e64ea47df555103ac745c8a0751ac445d0c74a034bfa9be1b39a3e16c0578da7bb68c7635a359f3caf69a2dd3d03ad21b51fb +srccontainersize 6440 +srccontainerchecksum 43827e136677ad8523499d0b102a7ad4be3b95a9818a8720065d98beb07c5cf1a7f6b36c0985b7f4c6fef43fdb233a6980a5899697297cf3ad39e0da6db6c33a srcfiles size=7 RELOC/source/latex/catechis/catechis.dtx RELOC/source/latex/catechis/catechis.ins @@ -47321,7 +49241,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/catechis catalogue-license lppl1.3 catalogue-topics theology -catalogue-version 2.5 +catalogue-version 2.6 name catoptions category Package @@ -47354,7 +49274,7 @@ catalogue-version 0.2.7h name causets category Package -revision 57139 +revision 66359 shortdesc Draw causal set (Hasse) diagrams relocated 1 longdesc This LaTeX package uses TikZ to generate (Hasse) diagrams for @@ -47362,11 +49282,11 @@ longdesc causal sets (causets) to be used inline with text or in longdesc mathematical expressions. The macros can also be used in the longdesc tikzpicture environment to annotate or modify a diagram, as longdesc shown with some examples in the documentation. -containersize 3672 -containerchecksum 3dbe4a3c2e5985dbb4a36134a3739adb97636086ad2c1d3f510e4607fb6a6d0d01cbd2d4e135835a9eb88d63128e3b9a4408bce3b910c406b47dad0d0b5c19b6 -doccontainersize 424340 -doccontainerchecksum 77f5ec1d8c16bb6d3772a78913825a1652c5130327e7851ddd16d5a5b0da9315e09dc113c880659b03d4263558781c36e1ed9ac546fabb9df88cfd4b4a3fb84b -docfiles size=123 +containersize 5724 +containerchecksum 961f6affda4b94a2f67e1acfd62a12439faafc436c66320b04c3df11383016375f0bd284836a0618def46e624e7e7a5f46524bfb9c3113575c88d490d117a417 +doccontainersize 620512 +doccontainerchecksum 241ce316af86e3f764929fa7c601a1533b86f85dacfbf2e81acb487b312c7df9c2a9ef1ddd047a977cc7eabaf4643caeca7f5c07979f9509867f3d522c507873 +docfiles size=207 RELOC/doc/latex/causets/README.md details="Readme" RELOC/doc/latex/causets/causet_tikz_example1.pdf RELOC/doc/latex/causets/causet_tikz_example1.tex @@ -47374,14 +49294,14 @@ docfiles size=123 RELOC/doc/latex/causets/causet_tikz_example2.tex RELOC/doc/latex/causets/causets.pdf details="Package documentation" RELOC/doc/latex/causets/causets.tex -runfiles size=4 +runfiles size=7 RELOC/tex/latex/causets/causets.sty catalogue-contact-bugs https://github.com/c-minz/LaTeX-causets/issues catalogue-contact-repository https://github.com/c-minz/LaTeX-causets catalogue-ctan /graphics/pgf/contrib/causets catalogue-license lppl1.3 catalogue-topics graphics pgf-tikz diagram-maths maths -catalogue-version 1.1 +catalogue-version 1.4 name cbcoptic category Package @@ -50500,22 +52420,23 @@ catalogue-version 3.2c name ccfonts category Package -revision 54686 +revision 61431 shortdesc Support for Concrete text and math fonts in LaTeX relocated 1 longdesc LaTeX font definition files for the Concrete fonts and a LaTeX longdesc package for typesetting documents using Concrete as the default longdesc font family. The files support OT1, T1, TS1, and Concrete longdesc mathematics including AMS fonts (Ulrik Vieth's concmath). -containersize 2124 -containerchecksum abac4ad2c89e2d07281de95ac76922066713c511a77d067219dee9fff64e6ed54870da0db5cf83bacca89af11b2e720e352638eee1adfd4265e63a9e887ade14 -doccontainersize 197776 -doccontainerchecksum a327a036c804040973462e836c6028895cbb3897047785c1e1f9152ba85393aaa0ab6c876b8878e58bc8e124656ba22e38bcc90ca75ba8d7d74fbbb66a1a4955 -docfiles size=50 +containersize 2164 +containerchecksum fb111cd33ec70fa672e759c9fc2894f6b0338e40bef7d1b2fda2c37a437fb1a5ad87ec87169ec389d9eb21068c890c960a5cc24efd6e443b5995d5001f4f7115 +doccontainersize 203648 +doccontainerchecksum b0e9b5ce6010b03afc52b6f4f7a978e8d5a8f1a382750bdbde0b758209e7f8dc57f84d950163e64381c2d7a8366a50a34c02286cc2011b9cde3e0d40810e01a4 +docfiles size=55 + RELOC/doc/latex/ccfonts/LICENSE RELOC/doc/latex/ccfonts/README details="Readme" RELOC/doc/latex/ccfonts/ccfonts.pdf details="Package documentation" srccontainersize 5756 -srccontainerchecksum fe3f77676ac1ddad784ef83cbe96e5a70219b7f7fd5b624f7338a95655851cac79d7c28951ac4ec1a62fbb62cd087b22bf38712b0130e05a833f2d46195d62ec +srccontainerchecksum 30a301941132ba7b85c59b7e806d2b28ff314bcaae30c228337344f09846cc1051a73df1e4a2b76e36d499095c5a21000f250ec13f967a6080280ea120dbecc7 srcfiles size=6 RELOC/source/latex/ccfonts/cc.fdd RELOC/source/latex/ccfonts/ccfonts.dtx @@ -50525,10 +52446,11 @@ runfiles size=3 RELOC/tex/latex/ccfonts/t1ccr.fd RELOC/tex/latex/ccfonts/ts1ccr.fd catalogue-also ecc +catalogue-contact-bugs https://gitlab.com/kjhtex/ccfonts/-/issues +catalogue-contact-repository https://gitlab.com/kjhtex/ccfonts.git catalogue-ctan /macros/latex/contrib/ccfonts catalogue-license lppl catalogue-topics font-supp -catalogue-version 1.2 name ccicons category Package @@ -50594,7 +52516,7 @@ catalogue-topics logo name ccool category Package -revision 56636 +revision 60600 shortdesc A key-value document command parser relocated 1 longdesc This package provides a key-value interface, \Ccool, on top of @@ -50611,26 +52533,28 @@ longdesc instance, one parameter value for style, another for a longdesc property). User input to \Ccool can optionally be serialized. longdesc This can useful for typesetting documents sharing the same longdesc notation. -containersize 3764 -containerchecksum 4571aa4b0d83f6651784f43e5b9b982a9d42494f9ddd5006a794d4eaa94c4217ef0e85ec2170eb2502c243c02b7b67f0e8dcacdf2ad2714f70e7f6cbbc24aa3b -doccontainersize 810856 -doccontainerchecksum 99c777464f24e2cc5775a342d682f43686d13dd13db606c30126408de8521cf68ae62acdeecf351dee510ab6550b247100bbe6cfdc2e04cbd183270fc91c62af -docfiles size=202 +containersize 3992 +containerchecksum 2b125b2e1fa1bf91abd3968749d422873993a6d34df66bccd2fdf8b71338cd6039be8e584f801fa12cfc90a59e32b3ca0de53ba07bdaeeac745aa2a73d05467e +doccontainersize 801384 +doccontainerchecksum 05db77b09aba0d4ccb3712a5f5086c93de9ce70e067bab00030e96a23b058b76b69f54b379ac0ad8d03e68a3986687b1ce18a980d9ee5b7e4cb80dd2064294ef +docfiles size=205 RELOC/doc/latex/ccool/README.md details="Readme" - RELOC/doc/latex/ccool/ccool-1343e33-8ca.tex + RELOC/doc/latex/ccool/ccool.bib RELOC/doc/latex/ccool/ccool.pdf details="Package documentation" -srccontainersize 16120 -srccontainerchecksum 31f6f051fbff8806df6bc84c03fbf5b33440800cea7083b8d6d36e585140dfe24e7fbb192531614dc65d27f23f53e46349b0c020a2cddf4817fe9d3b7b23be44 -srcfiles size=19 +srccontainersize 13112 +srccontainerchecksum dad84e19fabb04f783276ad11c389c9ab0425d81fd1e91eed87b6659247613bf759064e94de39904d13148393ec34ed0567e2d680c8b794113e844feb86d8932 +srcfiles size=15 RELOC/source/latex/ccool/ccool.dtx -runfiles size=3 + RELOC/source/latex/ccool/ccool.ins +runfiles size=4 RELOC/tex/latex/ccool/ccool.sty catalogue-also cool catalogue-contact-repository https://github.com/rogard/ccool +catalogue-contact-support https://github.com/rogard/ccool catalogue-ctan /macros/latex/contrib/ccool catalogue-license lppl1.3c catalogue-topics macro-def expl3 -catalogue-version 3.1 +catalogue-version 3.2 name cd category Package @@ -50695,9 +52619,40 @@ catalogue-license gpl catalogue-topics covers catalogue-version 1.0 +name cdcmd +category Package +revision 60742 +shortdesc Expandable conditional commands for LaTeX +relocated 1 +longdesc This package provides some conditional commands, just like the +longdesc styledcmd package. The difference is that cdcmd can define +longdesc expandable conditional commands. +containersize 3588 +containerchecksum 677fd271bd209933428d0b655529b7e6c4bfd6022c37c3ef5456e1ce6fe25c599a9883474c28dc9510e293a2ee5e87a49b797bb562b750e888c622bf6ac6d37f +doccontainersize 608048 +doccontainerchecksum bf6d3bb4422dae82e06d440713518dafa98ab7ef7b527268050ebe51880f90e45b76281c1d693f1b40e85f07d7f6d395f51ce2c642094e326c3b1d08534fcba2 +docfiles size=155 + RELOC/doc/latex/cdcmd/README.md details="Readme" + RELOC/doc/latex/cdcmd/cdcmd-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/cdcmd/cdcmd-cn.tex + RELOC/doc/latex/cdcmd/cdcmd-test.tex + RELOC/doc/latex/cdcmd/cdcmd.pdf details="Package documentation (English)" +srccontainersize 6964 +srccontainerchecksum 50a2f50cc7432505c608aac180f7631d831742c8047a8f3da25bbdf6e83efd9121fe3b5256a2b139b1c3a29da4b2003304148f5f48c745734b811c1d853016de +srcfiles size=10 + RELOC/source/latex/cdcmd/cdcmd.dtx + RELOC/source/latex/cdcmd/cdcmd.ins +runfiles size=5 + RELOC/tex/latex/cdcmd/cdcmd.sty +catalogue-contact-repository https://github.com/Sophanatprime/cdcmd +catalogue-ctan /macros/latex/contrib/cdcmd +catalogue-license lppl1.3c +catalogue-topics macro-def macro-supp expl3 +catalogue-version 1.0 + name cdpbundl category Package -revision 46613 +revision 61719 shortdesc Business letters in the Italian style relocated 1 longdesc The C.D.P. Bundle can be used to typeset high-quality business @@ -50709,11 +52664,11 @@ longdesc write letters divided into sections and paragraphs, to include longdesc floating figures and tables, and to have the relevant indexes longdesc compiled automatically. A single input file can contain several longdesc letters, and each letter will have its own table of contents, -longdesc etc., independant from the other ones. -containersize 19100 -containerchecksum 142dc5657e1482cdf7392ee7df6967557cf09e5b733b12e8c7559863c2edc66a3439b29c7cf16c2461cc1090090117337f63db899bf7bba0cc23d04bb573c633 +longdesc etc., independent from the other ones. +containersize 19080 +containerchecksum ab13c84673df8a4da5b694256ab14f3c4fab34ff32e8d2faa8712da128baefcedc19c8bcccc77a585171d25e17369af274176971a33679e07d2bd138d4766603 doccontainersize 768180 -doccontainerchecksum 3fbfe5b5a8771bf3a74c6adc7a90e04f6085179c11a6db4ed8ebe644e00e334f447f3d32214d72ac341d18e3c79d3bfcfd788053d2065eeced76ad7c7ce6a9aa +doccontainerchecksum 5ac8e2878434ca3b30ae20c6d1ca7c19b7ac12a38f9598d265ca6c7c214beccc144b75ff5962faf3b58b74b1ec91ab2c265d5429b98206db1fd1c558fa79385e docfiles size=201 RELOC/doc/latex/cdpbundl/00readme.txt details="Basic introduction" RELOC/doc/latex/cdpbundl/Makefile @@ -50723,7 +52678,7 @@ docfiles size=201 RELOC/doc/latex/cdpbundl/cdpbundl-doc.pdf details="Package overview" RELOC/doc/latex/cdpbundl/manifest.txt srccontainersize 68824 -srccontainerchecksum 579575c916a417be5d097d7e766c0cc599856d0b2aa3d4eae5880748c57c7735457aed493d3818974f25f07990b7496b6c5a92ceee39e0116510c420ae69d81f +srccontainerchecksum b958ade1a2a9f9b685c6d7821e1a97304f0c07b9405a95231a166fe5d8ccd8f89dbf168d38996e1e633629042827cb316b81754996d9b09f4d951573967dcea9 srcfiles size=75 RELOC/source/latex/cdpbundl/cdpbundl.dtx RELOC/source/latex/cdpbundl/cdpbundl.ins @@ -50797,7 +52752,7 @@ catalogue-version 2.0 name cellspace category Package -revision 50374 +revision 61501 shortdesc Ensure minimal spacing of table cells relocated 1 longdesc It is well known that high or deep cells tend to touch the @@ -50810,20 +52765,21 @@ longdesc dimensions of each entire row; whereas you can ask the longdesc cellspace only to look at the cells of potentially difficult longdesc columns. The package depends on ifthen, array, calc, and longdesc xkeyval. -containersize 2448 -containerchecksum d2de1e55913a434eb5b0ab19f615ee325dca750eaa8d61222045220153d521eb8149bf025aa03b1e6a7c625cd994b8bdaea241b227b28d1622c1a75ec72d76fd -doccontainersize 342008 -doccontainerchecksum a1cdfb273e8c32374b03dfcd1d2ccbf12a19918fdeada025cf948fefa624decda07f8c3384a4dd859efdaa9048adcf0c513f59f28e48f31062819c1f9acdcd0d +containersize 2488 +containerchecksum 75c32e958beab58086d8ba91da3bf1a4a4b9f3ec306dd5369798298c45cc67ee44c591e616062072ae399aa89c90edabe597665901ec60f46fb9fcd9d4c462d5 +doccontainersize 342576 +doccontainerchecksum 3a6044a5b3e38ea425174481bf0f079943b53b9cc7d68668f5666c72c33cc5edfb82aac08bc3347225e4838dc32579ea611e8fcd2619468e080cc63c11a38da3 docfiles size=88 RELOC/doc/latex/cellspace/README details="Readme" RELOC/doc/latex/cellspace/cellspace.pdf details="Package documentation" RELOC/doc/latex/cellspace/cellspace.tex runfiles size=2 RELOC/tex/latex/cellspace/cellspace.sty +catalogue-contact-repository https://github.com/JosselinNoirel/cellspace catalogue-ctan /macros/latex/contrib/cellspace catalogue-license lppl catalogue-topics table -catalogue-version 1.8.1 +catalogue-version 1.9.0 name celtic category Package @@ -50854,7 +52810,7 @@ catalogue-version 1.1 name censor category Package -revision 49168 +revision 63126 shortdesc Tools for producing redacted documents relocated 1 longdesc This package provides simple tools for creating redacted @@ -50863,24 +52819,24 @@ longdesc creating documents in a restricted environment (for redacted longdesc release in an unrestricted environment) as well as in an longdesc unrestricted environment (for eventual transfer and completion longdesc in the restricted environment). -containersize 2212 -containerchecksum 03b94dea9f5f69f0fde8dbd198e73a1ccc1e7b118b26c8272b217bfe76b7cec7eb0c8706dfbca7dd2a9438ea7337482cb55d631d3cabfaff3dab19d1cc565780 -doccontainersize 195860 -doccontainerchecksum 131b995300b302f482359820bb9dab62188be11f46470e2c9d25753a22d6b81def5e272cdca4f2057adbacb3bb9aa777e758ebfe8a95205db7de36b378369bdb -docfiles size=57 +containersize 3004 +containerchecksum d4f70727850c311cff4f7bbfd2962bb9510590791cb3e00a247f6c708477f9b0b7bd35f771e3145ad760f18284b7e8779bf302b55fbba3f25f11ed57ee896306 +doccontainersize 234832 +doccontainerchecksum 3d1d7f5828ef75c26b8e172c6fbe0d48d15842a11d720574f022684a154c6dc864241a8a320fc4cf42c31ed67eced0bf1c728e321b9d8e4cb08a96811e7f80c1 +docfiles size=70 RELOC/doc/latex/censor/README details="Readme" RELOC/doc/latex/censor/censor.pdf details="Package documentation" RELOC/doc/latex/censor/censor.tex -runfiles size=2 +runfiles size=3 RELOC/tex/latex/censor/censor.sty catalogue-ctan /macros/latex/contrib/censor catalogue-license lppl1.3 catalogue-topics security -catalogue-version 3.22 +catalogue-version 4.2 name centeredline category Package -revision 50971 +revision 64672 shortdesc A macro for centering lines relocated 1 longdesc This package provides a macro \centeredline{...} which allows @@ -50889,10 +52845,10 @@ longdesc usage therein of \verb or other macros changing catcodes. It longdesc works nicely in list environments, and material whose natural longdesc width exceeds the current linewidth will get properly centered longdesc too. -containersize 1168 -containerchecksum 7b1359bd93853830d85fd84c9132d997c1384211c504999f4bc819cd6fe85effbe9f0fba64cc502419484cea3cacedf02beae22052bd10a7a7dbad3f97583731 -doccontainersize 1288 -doccontainerchecksum 237af456a51f539d02d96bc1c2bfd1fde1328cb270985b50a0ee9760f4b6f3675610ca088af135a86f07c02a0cd84c651118726915a0a01546468030acd596f3 +containersize 1024 +containerchecksum b9db432378f6b24ab52c20e1189734dc7b1285792e5fc392808a04f98ce784d00ed9b87459017f1f798c5e6ff769639f650c3d3abe2cd5975306b6875e1fc067 +doccontainersize 1716 +doccontainerchecksum 023be77780a79180deae33a27b25c333f4499b302d026e5ddc34a2d1b7d45496dc0940027e7982816be0f398837ceb7b0de27ffabe0d1096c9fcab096784659a docfiles size=1 RELOC/doc/latex/centeredline/README.md details="Readme" runfiles size=1 @@ -50900,7 +52856,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/centeredline catalogue-license lppl1.3c catalogue-topics layout alignment -catalogue-version 1.1 +catalogue-version 1.2 name centerlastline category Package @@ -50964,21 +52920,21 @@ catalogue-version 0.2 name cfr-initials category Package -revision 36728 +revision 61719 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 TeX Stack Exchange (https://tex.stackexchange.com/a/236410/) longdesc requesting sample package files for others to copy. I had longdesc previously assumed these were too trivial to be of interest, longdesc but if they would be useful, then I would prefer them to be longdesc generally available via CTAN. -containersize 2332 -containerchecksum d67830168afffe72ef37784db45176528065210d4956b4aef2a166d41c886f5b3874e0878da9c56302412cf5939291451e1e20ba3e676429c598342982b64083 -doccontainersize 687232 -doccontainerchecksum 0d628f9134254a92c7b88d0744b588bb197c6850d7d5e44a90e91c1ed128625c7add731916b727c2d3b532ade017daaf17f45e446e4bc6f0e447bb5fdb770066 +containersize 2312 +containerchecksum b4799007822a3bc82370b72ead503661f70cce1beb7a27bf1bd2523283a248045b0ef863ab1dd9bd93b39441e50d51fabe11a12fe6528a7966219a2da2618141 +doccontainersize 687228 +doccontainerchecksum 124dbae846ced93e4cbf5b9c16235295c7e76306830bc9e08cdb5a4e8d0d5f9deada4706c6c41cc383f440e9e874cc1cc338176787ad029f8164bbeba99db965 docfiles size=171 RELOC/doc/latex/cfr-initials/README details="Readme" RELOC/doc/latex/cfr-initials/cfr-initials.pdf details="Package documentation" @@ -51954,7 +53910,7 @@ catalogue-version 1.5 name changebar category Package -revision 46919 +revision 63259 shortdesc Generate changebars in LaTeX documents relocated 1 longdesc Identify areas of text to be marked with changebars with the @@ -51962,28 +53918,18 @@ longdesc \cbstart and \cbend commands; the bars may be coloured. The longdesc package uses 'drivers' to place the bars; the available drivers longdesc can work with dvitoln03, dvitops, dvips, the emTeX and TeXtures longdesc DVI drivers, and VTeX and pdfTeX. -containersize 7032 -containerchecksum fa75f75aead49adb949e0bb5b5c116387e14b5fcf804502e12b7214a2638ec2032699125adc6ba8c528445c9f5c552ec744007530d1e5a69159f1041d2b7bceb -doccontainersize 636464 -doccontainerchecksum f25c8bd3cb493bfe8446d98f3c599ec002f818daecac76ec4f08d19bfd15581bf8bf8970fd145886a42c51cd40a53df7bfc2e10641df2f4c2cdcd8aa02bf6c30 -docfiles size=199 +containersize 7004 +containerchecksum 1d47e3e98e6923fda580a8a34b8fcdcc7aad164306a6380ff8fd9ed77f1256225221f8b15da604303e562471ed6ffdb7109b6b95a397b25b80c48fdc4e565b62 +doccontainersize 376148 +doccontainerchecksum f3ece8b350ee00ecb596f0f66ef2ded81b7c507c618d226084d4a4e403441b9183a3686c2c26430654c45f15471092e83864a28cddad3d08e60c656d3af8ebe1 +docfiles size=99 RELOC/doc/latex/changebar/CATALOG RELOC/doc/latex/changebar/MANIFEST RELOC/doc/latex/changebar/README details="Readme" - RELOC/doc/latex/changebar/cbtest1-ltx.pdf - RELOC/doc/latex/changebar/cbtest1-pdf.pdf - RELOC/doc/latex/changebar/cbtest1.tex - RELOC/doc/latex/changebar/cbtest1good.pdf - RELOC/doc/latex/changebar/cbtest1wrong.pdf - RELOC/doc/latex/changebar/cbtest2-ltx.pdf - RELOC/doc/latex/changebar/cbtest2-pdf.pdf - RELOC/doc/latex/changebar/cbtest2.tex RELOC/doc/latex/changebar/changebar.bug RELOC/doc/latex/changebar/changebar.pdf details="Package documentation" - RELOC/doc/latex/changebar/chbar.1 - RELOC/doc/latex/changebar/chbar.sh srccontainersize 27104 -srccontainerchecksum a7e2519d4dfd4b0b12a9cd8ea59ce32a37e4d0cb6e637b659e93ea5b296bed21298f8dfa13a13798eb87ce0ea0719546f721875a4115c62cf0ea6110d9ac8f76 +srccontainerchecksum 0615c7d0057e9138ba84e0f622560b7c0823d44021702ba31a77ab1e3bd13c24b8d59b1d96369d5e619d180797f2684c25d497e40a5c253a67eaf399b6cd0763 srcfiles size=31 RELOC/source/latex/changebar/changebar.dtx RELOC/source/latex/changebar/changebar.ins @@ -51993,7 +53939,7 @@ catalogue-also chbar xechangebar backgrnd catalogue-ctan /macros/latex/contrib/changebar catalogue-license lppl1.3 catalogue-topics editorial -catalogue-version 3.6c +catalogue-version 3.6d name changelayout category Package @@ -52020,18 +53966,18 @@ catalogue-version 1.0 name changelog category Package -revision 56338 -shortdesc Provides a changelog environment +revision 65861 +shortdesc Typesetting keepachangelog.com style changelogs relocated 1 longdesc This package provides a changelog environment (which itself longdesc provides a version environment) to represent a changelog. The longdesc package supports multiple authors, unreleased changes, and longdesc yanked (revoked) releases. Inspired by keepachangelog.com. -containersize 3024 -containerchecksum f91facbc1ee2f959fb9d4ea679b0d2f9b740664e7b7941a02a87c1df23545591e0f355713f35a7c01504105dcfd33820dfef266529be4965b606bb1647c7c503 -doccontainersize 164420 -doccontainerchecksum d3e62f5756bb5c0159523bb23d9c3c9f05725b2756913747410f6e58d41924b88aeb9746faf1bed8847a51295963d30cdfa8d6bb72df423ec2af899f1e399e5e -docfiles size=55 +containersize 3324 +containerchecksum 9b3fd70ebd0563138e2811ec8d8748dce3d04b18da636b884887424960ee69fdd30902b85b968ee9f545d57f8dcf8f6f137174b8ea9a7049308cd778f52afbe2 +doccontainersize 173956 +doccontainerchecksum c729c19b2a80eca9735e2caa46832da20975c89810d3f669c93e66ee4a768877c7ff30d71b2f887dace78303773eaf549ed32a001124304b82d4d51c57cc100b +docfiles size=57 RELOC/doc/latex/changelog/LICENSE.txt RELOC/doc/latex/changelog/README.md details="Readme" RELOC/doc/latex/changelog/changelog.pdf details="Package documentation" @@ -52044,9 +53990,9 @@ runfiles size=3 catalogue-contact-bugs https://github.com/9999years/latex-changelog/issues catalogue-contact-repository https://github.com/9999years/latex-changelog catalogue-ctan /macros/latex/contrib/changelog -catalogue-license gpl3 -catalogue-topics version-control doc-mgmt -catalogue-version 2.4.0 +catalogue-license lppl1.3c +catalogue-topics version-control doc-mgmt expl3 +catalogue-version 2.5.0 name changepage category Package @@ -52082,7 +54028,7 @@ catalogue-version 1.0c name changes category Package -revision 58773 +revision 59950 shortdesc Manual change markup relocated 1 longdesc The package allows the user to manually markup changes of text, @@ -52093,11 +54039,11 @@ longdesc package allows free definition of additional authors and their longdesc associated color. It also allows you to change the markup of longdesc changes, authors, highlights or comments. A Python script is longdesc provided for removing the changes. -containersize 7892 -containerchecksum 946a37d1b66fd2fa900a6683d08ccdabc88304c9dcb9d48a3f6b2d83208f73cb3b9f7d2c8e86565db16356e3a1b128e53f5d8ddfc6979129ed30e56f120b9442 -doccontainersize 2433612 -doccontainerchecksum a653f0e5f3b03252d30d24dec3a6623621858b433734c437a3ae6bd56e293ab00503fb7e2a92e51a0f88ed906fc0c05484577fb09c5348a44248eb7b12f41cf0 -docfiles size=2257 +containersize 8208 +containerchecksum 4fe27f5c76d1ae374b1d3f3d75cb7e61a82baff34ea0fbc6c7ea87eede785f83dff23f3f56fed9323b9d364cc2bdc533640552c8b454f7a821a80e830244f97f +doccontainersize 3407656 +doccontainerchecksum f35b3e0eb4318a97bc09361be9561a3b195678559f8311fb0d2bab4211f86853b1210e515e02e6312a8d46e52d7534ad9573b9bb3ed5611f1766a55e54d22c3f +docfiles size=2756 RELOC/doc/latex/changes/README details="Readme" language="en" RELOC/doc/latex/changes/changes.english.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/changes/changes.english.withcode.pdf details="Package documentation, with code listing (English)" language="en" @@ -52164,6 +54110,8 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.commentmarkup.todo.tex RELOC/doc/latex/changes/examples/changes.example.commentmarkup.uwave.pdf RELOC/doc/latex/changes/examples/changes.example.commentmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.commentmarkup.wrong.tex RELOC/doc/latex/changes/examples/changes.example.defaultcolor.pdf RELOC/doc/latex/changes/examples/changes.example.defaultcolor.tex RELOC/doc/latex/changes/examples/changes.example.deletedmarkup.bf.pdf @@ -52202,6 +54150,20 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uuline.tex RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uwave.pdf RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.uwave.tex + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.wrong.pdf + RELOC/doc/latex/changes/examples/changes.example.highlightmarkup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.language.british.pdf + RELOC/doc/latex/changes/examples/changes.example.language.british.tex + RELOC/doc/latex/changes/examples/changes.example.language.english.pdf + RELOC/doc/latex/changes/examples/changes.example.language.english.tex + RELOC/doc/latex/changes/examples/changes.example.language.french.pdf + RELOC/doc/latex/changes/examples/changes.example.language.french.tex + RELOC/doc/latex/changes/examples/changes.example.language.german.pdf + RELOC/doc/latex/changes/examples/changes.example.language.german.tex + RELOC/doc/latex/changes/examples/changes.example.language.italian.pdf + RELOC/doc/latex/changes/examples/changes.example.language.italian.tex + RELOC/doc/latex/changes/examples/changes.example.language.ngerman.pdf + RELOC/doc/latex/changes/examples/changes.example.language.ngerman.tex RELOC/doc/latex/changes/examples/changes.example.listofchanges.all.pdf RELOC/doc/latex/changes/examples/changes.example.listofchanges.all.tex RELOC/doc/latex/changes/examples/changes.example.listofchanges.compactsummary.pdf @@ -52226,6 +54188,8 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.markup.underlined.tex RELOC/doc/latex/changes/examples/changes.example.markup.wrong.pdf RELOC/doc/latex/changes/examples/changes.example.markup.wrong.tex + RELOC/doc/latex/changes/examples/changes.example.package.hyperref.pdf + RELOC/doc/latex/changes/examples/changes.example.package.hyperref.tex RELOC/doc/latex/changes/examples/changes.example.packageoptions.todonotes.pdf RELOC/doc/latex/changes/examples/changes.example.packageoptions.todonotes.tex RELOC/doc/latex/changes/examples/changes.example.packageoptions.truncate.pdf @@ -52238,6 +54202,8 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.screenshot.tex RELOC/doc/latex/changes/examples/changes.example.setaddedmarkup.pdf RELOC/doc/latex/changes/examples/changes.example.setaddedmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setanonymousname.pdf + RELOC/doc/latex/changes/examples/changes.example.setanonymousname.tex RELOC/doc/latex/changes/examples/changes.example.setauthormarkup.pdf RELOC/doc/latex/changes/examples/changes.example.setauthormarkup.tex RELOC/doc/latex/changes/examples/changes.example.setauthormarkupposition.pdf @@ -52250,6 +54216,8 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.setdeletedmarkup.tex RELOC/doc/latex/changes/examples/changes.example.sethighlightmarkup.pdf RELOC/doc/latex/changes/examples/changes.example.sethighlightmarkup.tex + RELOC/doc/latex/changes/examples/changes.example.setlocextension.pdf + RELOC/doc/latex/changes/examples/changes.example.setlocextension.tex RELOC/doc/latex/changes/examples/changes.example.setsocextension.pdf RELOC/doc/latex/changes/examples/changes.example.setsocextension.tex RELOC/doc/latex/changes/examples/changes.example.setsummarytowidth.pdf @@ -52260,6 +54228,11 @@ docfiles size=2257 RELOC/doc/latex/changes/examples/changes.example.settruncatewidth.tex RELOC/doc/latex/changes/examples/changes.example.simple.pdf RELOC/doc/latex/changes/examples/changes.example.simple.tex + RELOC/doc/latex/changes/regression/changes.regression.draft.id.tex + RELOC/doc/latex/changes/regression/changes.regression.draft.name.tex + RELOC/doc/latex/changes/regression/changes.regression.draft.nobabel.tex + RELOC/doc/latex/changes/regression/changes.regression.final.nobabel.tex + RELOC/doc/latex/changes/regression/changes.regression.final.tex RELOC/doc/latex/changes/userdoc/added_ex.tex RELOC/doc/latex/changes/userdoc/added_in.tex RELOC/doc/latex/changes/userdoc/changes.de.tex @@ -52282,6 +54255,8 @@ docfiles size=2257 RELOC/doc/latex/changes/userdoc/script_pymergechanges_empty.tex RELOC/doc/latex/changes/userdoc/setaddedmarkup_ex.tex RELOC/doc/latex/changes/userdoc/setaddedmarkup_in.tex + RELOC/doc/latex/changes/userdoc/setanonymousname_ex.tex + RELOC/doc/latex/changes/userdoc/setanonymousname_in.tex RELOC/doc/latex/changes/userdoc/setauthormarkup_ex.tex RELOC/doc/latex/changes/userdoc/setauthormarkup_in.tex RELOC/doc/latex/changes/userdoc/setauthormarkupposition_ex.tex @@ -52336,15 +54311,16 @@ docfiles size=2257 RELOC/doc/latex/changes/userdoc/usepackage_ulem_changes_in.tex RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_ex.tex RELOC/doc/latex/changes/userdoc/usepackage_xcolor_changes_in.tex -srccontainersize 16908 -srccontainerchecksum a74ee0bd131301f12a674155d87ffec87b88916e242e80a4daa18fca251d8479e05dc8ddd343943c96055cb3c54fdaa37f91198c8daab1a0c85eb8029d8f9f9b -srcfiles size=27 +srccontainersize 19416 +srccontainerchecksum a8ee2f4efa5caad223bd543a0bcad42eed02d2aaa143826ebbb13000d820083ed416cd7399d07c8865301708fcb87febc5d211ae8b0a6a6f08b5b9143d8c430c +srcfiles size=33 RELOC/source/latex/changes/changes.drv RELOC/source/latex/changes/changes.dtx RELOC/source/latex/changes/changes.ins RELOC/source/latex/changes/example-screenshot.dtx RELOC/source/latex/changes/examples.dtx -runfiles size=10 + RELOC/source/latex/changes/regression.dtx +runfiles size=11 RELOC/scripts/changes/pyMergeChanges.py RELOC/tex/latex/changes/changes.sty catalogue-contact-bugs https://gitlab.com/ekleinod/changes/issues @@ -52354,7 +54330,7 @@ catalogue-contact-support https://gitlab.com/ekleinod/changes/issues catalogue-ctan /macros/latex/contrib/changes catalogue-license lppl1.3 catalogue-topics editorial doc-tool -catalogue-version 4.0.2 +catalogue-version 4.2.1 name chappg category Package @@ -52416,34 +54392,197 @@ catalogue-version 2.0.1 name charissil category Package -revision 55920 -shortdesc CharisSIL fonts with support for XeLaTeX or LuaLaTeX +revision 64998 +shortdesc CharisSIL fonts with support for all LaTeX engines relocated 1 longdesc This package provides the CharisSIL family of fonts adapted by longdesc SIL International from Bitstream Charter in TrueType format, -longdesc with support for XeLaTeX or LuaLaTeX. -containersize 1193728 -containerchecksum c12562bce62a161bf261cc3a899c16f71f2c26091531a30626f7a0021cb0b321e1068cb9b2ff48cfd0128f1502d4e7012c12847b303295abe6758a970a759d3c -doccontainersize 807284 -doccontainerchecksum ccaa2f0bfb3c76e9fd6ba2fcb35e926bdaa70ddd65abc14b2ccd2ab5db9eeef8ecdd4aadbf245fea4674265f6c616e7c42a2b1251214548f91bf72cc881bdcbb -docfiles size=214 - RELOC/doc/fonts/charissil/CharisSIL-features.pdf +longdesc with support for LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX. +execute addMap charssil.map +containersize 3126652 +containerchecksum 214d5ac5b367e863424c54f86a841c4d1d0eac7e54cb6421619906df0e6d81661ac74e6db7369281637252ff295535e8f930442851cd0268fe9d007ddf07a913 +doccontainersize 465884 +doccontainerchecksum 3f492d929afbaff4d5c1aac1d57fc719caa04e4428de280cb8f3a6d376f6f7c3084ea8ccdac891aaa9f754be12eab99ace392d4090fe692b1d195ed12b619b49 +docfiles size=180 RELOC/doc/fonts/charissil/CharisSIL-samples.pdf details="Font samples" RELOC/doc/fonts/charissil/CharisSIL-samples.tex - RELOC/doc/fonts/charissil/FONTLOG.txt RELOC/doc/fonts/charissil/OFL.txt RELOC/doc/fonts/charissil/README details="Readme" -runfiles size=1460 - RELOC/fonts/truetype/SIL/charissil/CharisSIL-B.ttf - RELOC/fonts/truetype/SIL/charissil/CharisSIL-BI.ttf - RELOC/fonts/truetype/SIL/charissil/CharisSIL-I.ttf - RELOC/fonts/truetype/SIL/charissil/CharisSIL-R.ttf + RELOC/doc/fonts/charissil/about.md + RELOC/doc/fonts/charissil/about.pdf + RELOC/doc/fonts/charissil/announcement.md + RELOC/doc/fonts/charissil/charset.md + RELOC/doc/fonts/charissil/charset.pdf + RELOC/doc/fonts/charissil/design.md + RELOC/doc/fonts/charissil/design.pdf + RELOC/doc/fonts/charissil/developer.md + RELOC/doc/fonts/charissil/developer.pdf + RELOC/doc/fonts/charissil/faq.md + RELOC/doc/fonts/charissil/faq.pdf + RELOC/doc/fonts/charissil/features.md + RELOC/doc/fonts/charissil/features.pdf + RELOC/doc/fonts/charissil/history.md + RELOC/doc/fonts/charissil/history.pdf + RELOC/doc/fonts/charissil/index.md + RELOC/doc/fonts/charissil/index.pdf + RELOC/doc/fonts/charissil/resources.md + RELOC/doc/fonts/charissil/resources.pdf + RELOC/doc/fonts/charissil/support.md + RELOC/doc/fonts/charissil/support.pdf + RELOC/doc/fonts/charissil/versions.md + RELOC/doc/fonts/charissil/versions.pdf +runfiles size=1420 + RELOC/fonts/enc/dvips/charissil/a_26lu5p.enc + RELOC/fonts/enc/dvips/charissil/a_7qkcho.enc + RELOC/fonts/enc/dvips/charissil/a_byetuc.enc + RELOC/fonts/enc/dvips/charissil/a_fhbboz.enc + RELOC/fonts/enc/dvips/charissil/a_fr2ebm.enc + RELOC/fonts/enc/dvips/charissil/a_jf3wr2.enc + RELOC/fonts/enc/dvips/charissil/a_l6xsmm.enc + RELOC/fonts/enc/dvips/charissil/a_liimvs.enc + RELOC/fonts/enc/dvips/charissil/a_lxhc3o.enc + RELOC/fonts/enc/dvips/charissil/a_rflyh3.enc + RELOC/fonts/enc/dvips/charissil/a_x7dpvy.enc + RELOC/fonts/enc/dvips/charissil/a_yszurh.enc + RELOC/fonts/enc/dvips/charissil/a_zn43lu.enc + RELOC/fonts/map/dvips/charissil/charssil.map + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-ly1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-ot1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2a--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2b--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2c--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-sc-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-t1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-t1.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-t2a.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-t2b.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-t2c.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-ts1--base.tfm + RELOC/fonts/tfm/SIL/charissil/charssil-tlf-ts1.tfm + RELOC/fonts/truetype/SIL/charissil/CharisSIL-Bold.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-BoldItalic.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-Italic.ttf + RELOC/fonts/truetype/SIL/charissil/CharisSIL-Regular.ttf + RELOC/fonts/type1/SIL/charissil/charssil-Bold.pfb + RELOC/fonts/type1/SIL/charissil/charssil-BoldItalic.pfb + RELOC/fonts/type1/SIL/charissil/charssil-Italic.pfb + RELOC/fonts/type1/SIL/charissil/charssil-Regular.pfb + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Bold-tlf-ts1.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-Italic-tlf-ts1.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-ly1.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-ot1.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-t2a.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-t2b.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-sc-t2c.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-t1.vf + RELOC/fonts/vf/SIL/charissil/charssil-tlf-ts1.vf RELOC/tex/latex/charissil/CharisSIL.sty + RELOC/tex/latex/charissil/LY1charssil-TLF.fd + RELOC/tex/latex/charissil/OT1charssil-TLF.fd + RELOC/tex/latex/charissil/T1charssil-TLF.fd + RELOC/tex/latex/charissil/T2Acharssil-TLF.fd + RELOC/tex/latex/charissil/T2Bcharssil-TLF.fd + RELOC/tex/latex/charissil/T2Ccharssil-TLF.fd + RELOC/tex/latex/charissil/TS1charssil-TLF.fd catalogue-contact-home https://software.sil.org/charis/ catalogue-ctan /fonts/charissil catalogue-license ofl lppl catalogue-topics font font-body font-cyrillic font-multilingual font-proportional font-serif font-ttf font-supp -catalogue-version 5.0 +catalogue-version 6.101 name charter category Package @@ -52574,28 +54713,28 @@ catalogue-version 0.8 name checkcites category Package -revision 52022 +revision 64155 shortdesc Check citation commands in a document longdesc The package provides a lua script written for the sole purpose longdesc of detecting undefined and unused references from LaTeX longdesc auxiliary or bibliography files. depend checkcites.ARCH -containersize 6152 -containerchecksum 65af6aa0b8a8f0d6f4e3a1dbaeabea845bdec985beffe8589bef06784fde37a02baf41c3ea65055b3ff2b21dd003b51749b20a84ef0e1d0337bdb8ea416a0751 -doccontainersize 295052 -doccontainerchecksum 35b79a866235727c65053f0fa2dae53372230395a61e8ed4b530b02c4760d9cb3a89f81e4ac905ed4966ed4137c8047dd80655f6d94ebb260bfd96e441e45781 +containersize 6124 +containerchecksum c28a2785348bdc7cf8e30d3339f301a355b6a9e513d143d34f2b2535a69a32f7cf8a8ae9c26b42c6db32d00021a10ca135891a22b0547c219f31c6c9720d8ca5 +doccontainersize 295572 +doccontainerchecksum a394ea5f70f48e7dc7c9d75de33bbf788904a5e1d8e3aefb5dd3bfd5207ee512b1a84ab4bc03bddfa15dedf962f330931d9e80593542e5a180fdda8a8aaf87c2 docfiles size=78 texmf-dist/doc/support/checkcites/README details="Readme" texmf-dist/doc/support/checkcites/checkcites-doc.pdf details="Package documentation" texmf-dist/doc/support/checkcites/checkcites-doc.tex runfiles size=7 texmf-dist/scripts/checkcites/checkcites.lua -catalogue-contact-bugs https://github.com/cereda/checkcites/issues -catalogue-contact-repository https://github.com/cereda/checkcites +catalogue-contact-bugs https://gitlab.com/islandoftex/checkcites/issues +catalogue-contact-repository https://gitlab.com/islandoftex/checkcites catalogue-ctan /support/checkcites catalogue-license lppl1.3 catalogue-topics debug-supp -catalogue-version 2.4 +catalogue-version 2.6 name checkcites.aarch64-linux category Package @@ -52633,15 +54772,6 @@ containerchecksum d7f149d74066ca521158c99e11e89abe4a4a543d5b62639591dd88c4d68a38 binfiles arch=armhf-linux size=1 bin/armhf-linux/checkcites -name checkcites.i386-cygwin -category Package -revision 25623 -shortdesc i386-cygwin files of checkcites -containersize 344 -containerchecksum ed555451bf5cdd1d4d512ea8fcc0993bbb944fdf1d5b17076c6c8c88e19069f40a207e9123f8f97f33430ad22cdde8b083d60369a40b0db70ce0171178c423c7 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/checkcites - name checkcites.i386-freebsd category Package revision 25623 @@ -52687,14 +54817,14 @@ containerchecksum 70d5e730bb192b1fc7edcec64f422a22bf4dd1b5262d1d312477e48ab25ba1 binfiles arch=universal-darwin size=1 bin/universal-darwin/checkcites -name checkcites.win32 +name checkcites.windows category Package -revision 25623 -shortdesc win32 files of checkcites -containersize 688 -containerchecksum 5461bcf73d9455c39040b5db44ffeb9f1f05d81e14f0c3e489a6dfada504e6545d15e2e723d4638db322a5a017cdf45c24bd6a4817a21ca10cd299c104f43a3a -binfiles arch=win32 size=1 - bin/win32/checkcites.exe +revision 65891 +shortdesc windows files of checkcites +containersize 2308 +containerchecksum 9845f3fc9283680ca203d10832f4ee78383ed8d45956c97deb66be9216a5bb464eeeebdb80ab6aedd05ae0b5e70e906daea0cd6e9db8edcb7f584b434fc771d6 +binfiles arch=windows size=2 + bin/windows/checkcites.exe name checkcites.x86_64-cygwin category Package @@ -52842,15 +54972,6 @@ containerchecksum 58d4cdbcd2a0108de2ffd7f143514d3a1d0dceee6944d489e0db988b526d56 binfiles arch=armhf-linux size=1 bin/armhf-linux/checklistings -name checklistings.i386-cygwin -category Package -revision 38300 -shortdesc i386-cygwin files of checklistings -containersize 344 -containerchecksum 42e4be7598fe732c3585ed64ab21748794fe8cd29e86cfc3d9d719b7bbab8ec58be40a92c586323fc1816e4b847197b8a733b818649446b6d888869dbbab89fa -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/checklistings - name checklistings.i386-freebsd category Package revision 38300 @@ -53124,7 +55245,7 @@ catalogue-version 1.0 name chemfig category Package -revision 58014 +revision 65912 shortdesc Draw molecules with easy syntax relocated 1 longdesc The package provides the command \chemfig{}, which draws @@ -53134,17 +55255,17 @@ longdesc produced are essentially 2-dimensional, the package supports longdesc many of the conventional notations for illustrating the longdesc 3-dimensional layout of a molecule. The package uses TikZ for longdesc its actual drawing operations. -containersize 26356 -containerchecksum ac0f3fff6f24fe83c3a1cd7bfd456cf187c57ae66776c672aab980d267d9552b7b480b0244e3d2e1c8d9f39f1d6524f9e882fc8a71be9fc8a5c0263d4899f718 -doccontainersize 2050380 -doccontainerchecksum c8721852c551909c7ded202793a5c1c999d522f3217e9c4fe7a9c4307b7ee054ca360ae72d0d12ea09ac3b538445d79a5d103493c7e14f669762debd2eb92536 -docfiles size=637 +containersize 26848 +containerchecksum caf871eed161a21bc0069c83010abe1888cb4e8ef09881cb2bf4ecc5fa7a1ee10a82cbc8f9e37f08b590cf215f4e48dd42d78d92d7dee4bd2161513df703b12b +doccontainersize 1385644 +doccontainerchecksum 63b059fc3c16f1d01f6dd26ddce7a96fec5410f268d60dbdd9e9636b632b676d0e9471554c3a0e044d5cff0ec9df02af4c7e1c116633d6899cbcbd86b2d136ff +docfiles size=449 RELOC/doc/generic/chemfig/README details="Readme" RELOC/doc/generic/chemfig/chemfig-en.pdf details="Package documentation (English)" language="en" RELOC/doc/generic/chemfig/chemfig-en.tex RELOC/doc/generic/chemfig/chemfig-fr.pdf details="Package documentation (French)" language="fr" RELOC/doc/generic/chemfig/chemfig-fr.tex -runfiles size=32 +runfiles size=33 RELOC/tex/generic/chemfig/chemfig-lewis.tex RELOC/tex/generic/chemfig/chemfig.sty RELOC/tex/generic/chemfig/chemfig.tex @@ -53153,11 +55274,11 @@ catalogue-contact-repository https://framagit.org/unbonpetit/chemfig/tree/master catalogue-ctan /macros/generic/chemfig catalogue-license lppl1.3c catalogue-topics graphics diagram chemistry pgf-tikz macro-gen etex -catalogue-version 1.6a +catalogue-version 1.6d name chemformula category Package -revision 57206 +revision 61719 shortdesc Command for typesetting chemical formulas and reactions relocated 1 longdesc The package provides a command to typeset chemical formulas and @@ -53165,23 +55286,24 @@ longdesc reactions in support of other chemistry packages (such as longdesc chemmacros). The package used to be distributed as a part of longdesc chemmacros. depend units -containersize 18164 -containerchecksum 6f1cbdeb8a7a30cf561febcc1232d92feadaa59c796a96881ebb04379c49804e8d39cc65dc96bba02d1843118fba347660e23906ea5633af6f00c4fb39388e60 -doccontainersize 910168 -doccontainerchecksum 61da2685650fa1652e20c97c4ed51930b133cfb137f3c1bf8dbe0477b22293693e6837c9545bed3175aa3722e8710441ca12d063bb36542b13e2cd413849cd32 -docfiles size=239 +containersize 15792 +containerchecksum 907efcb72ebf3a315bffc11a8d78caa82b510993b4a4de1da8a960bbd6c66bdf5bc202933fce5f4f0626ad4507a5095b571487beb2414bc49bd37e735f0299f1 +doccontainersize 863468 +doccontainerchecksum c839fed7313744c6abb77fd4f803524c47af7f9ca0e4b533b307a198cc2fefc072541d58afca8cfab6a17b85ecdda4d3bacd451ac9616b47a448560a97f3b62a +docfiles size=231 + RELOC/doc/latex/chemformula/HISTORY RELOC/doc/latex/chemformula/README details="Readme" RELOC/doc/latex/chemformula/chemformula-manual.cls RELOC/doc/latex/chemformula/chemformula-manual.pdf details="Package documentation" RELOC/doc/latex/chemformula/chemformula-manual.tex -runfiles size=32 +runfiles size=30 RELOC/tex/latex/chemformula/chemformula.sty catalogue-contact-bugs https://github.com/cgnieder/chemformula/issues catalogue-contact-repository https://github.com/cgnieder/chemformula/ catalogue-ctan /macros/latex/contrib/chemformula catalogue-license lppl1.3c catalogue-topics chemistry expl3 -catalogue-version 4.16 +catalogue-version 4.17 name chemgreek category Package @@ -53209,7 +55331,7 @@ catalogue-version 1.1a name chemmacros category Package -revision 56983 +revision 62655 shortdesc A collection of macros to support typesetting chemistry documents relocated 1 longdesc The bundle offers a collection of macros and commands which are @@ -53224,51 +55346,25 @@ longdesc and ghsystem, providing for the UN globally harmonised chemical longdesc notation. The packages are written using current versions of longdesc the experimental LaTeX 3 coding conventions and the LaTeX 3 longdesc support packages. -containersize 44372 -containerchecksum 9ca4d903e5d1126aa4f6fc6c07ea2efc86a5750883c354f3bcd48dbe3960ac3ea2cbc47626c67c8f8bec5343d7dd4d61aa548faa33cc42ab09d15011da551a2a -doccontainersize 1024756 -doccontainerchecksum 3482d6c49bf23bd604a2d0c4f506762c61abc1e2785cf83685af2f96006b9093886d51fed8c16a5e430b35f138ccbd35d183291208df47e1281b47d758d7d123 -docfiles size=289 +containersize 42852 +containerchecksum 814995dfe7978e639594d51542ac7b86f419d48ffc3d39f069c24e84abee854e01b9d72047ab44311d500b98ac1d01308b56a77006cf14a975861e45d83b9f7c +doccontainersize 1030160 +doccontainerchecksum dfe4411faa4ae403d9b46b9f8f0e821f810c1c9b5a8926149643f099b164c7d1f163ba3436c79a8b9eccf84ac234df74c080fd2e4a9ac58452b840c335b685dd +docfiles size=293 + RELOC/doc/latex/chemmacros/HISTORY RELOC/doc/latex/chemmacros/README details="Readme" RELOC/doc/latex/chemmacros/chemmacros-manual.pdf details="Chemmacros package documentation" language="en" RELOC/doc/latex/chemmacros/chemmacros-manual.tex - RELOC/doc/latex/chemmacros/chemmacros.history -runfiles size=111 - RELOC/tex/latex/chemmacros/chemmacros-manual.cls - RELOC/tex/latex/chemmacros/chemmacros.module.acid-base.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.all.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.base.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.charges.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.chemformula.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.errorcheck.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.greek.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.isotopes.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.lang.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.mechanisms.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.newman.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.nomenclature.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.orbital.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.particles.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.phases.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.polymers.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.reactions.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.redox.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.scheme.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.spectroscopy.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.symbols.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.thermodynamics.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.tikz.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.units.code.tex - RELOC/tex/latex/chemmacros/chemmacros.module.xfrac.code.tex +runfiles size=93 + RELOC/tex/latex/chemmacros/chemmacros-2015-02-08.sty + RELOC/tex/latex/chemmacros/chemmacros-2020-03-07.sty RELOC/tex/latex/chemmacros/chemmacros.sty - RELOC/tex/latex/chemmacros/chemmacros4.sty - RELOC/tex/latex/chemmacros/chemmacros5.sty catalogue-contact-bugs https://github.com/cgnieder/chemmacros/issues catalogue-contact-repository https://github.com/cgnieder/chemmacros/ catalogue-ctan /macros/latex/contrib/chemmacros catalogue-license lppl1.3c catalogue-topics chemistry expl3 -catalogue-version 5.11a +catalogue-version 6.2a name chemnum category Package @@ -53299,9 +55395,51 @@ catalogue-license lppl1.3c catalogue-topics chemistry expl3 catalogue-version 1.3a +name chemobabel +category Package +revision 64778 +shortdesc Convert chemical structures from ChemDraw, MDL molfile or SMILES using Open Babel +relocated 1 +longdesc This package provides a way to convert and include chemical +longdesc structure graphics from various chemical formats, such as +longdesc ChemDraw files, MDL molfile or SMILES notations using Open +longdesc Babel. To use this LaTeX package, it is necessary to enable +longdesc execution of the following external commands via latex +longdesc -shell-escape. obabel (Open Babel) inkscape or rsvg-convert +longdesc (for SVG -> PDF/EPS conversion) pdfcrop or ps2eps (optional; +longdesc for cropping large margins of PDF/EPS) +containersize 4496 +containerchecksum bd6ff01187b408d0f6d40dba470cbdb9cd72294ca425f76287d1a0d01474ca64d15db42907295b5a90958d3b5a18544a66d6b49de9a9b62e21fc3efeb6598569 +doccontainersize 926456 +doccontainerchecksum ae4ddcb5609bf5d3c634847c7be934b4a688346469098257fda8838ff2fcad4fc390cd600991648274539cf65c937d82d337840e0500661014755bd4872e59d4 +docfiles size=407 + RELOC/doc/latex/chemobabel/LICENSE + RELOC/doc/latex/chemobabel/README.md details="Readme" + RELOC/doc/latex/chemobabel/chemobabel-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/chemobabel/chemobabel-en.tex + RELOC/doc/latex/chemobabel/chemobabel-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/chemobabel/chemobabel-ja.tex + RELOC/doc/latex/chemobabel/example-en.pdf + RELOC/doc/latex/chemobabel/example-en.tex + RELOC/doc/latex/chemobabel/example-ja.pdf + RELOC/doc/latex/chemobabel/example-ja.tex + RELOC/doc/latex/chemobabel/images-for-doc.tar.gz +srccontainersize 16168 +srccontainerchecksum 25c4b787d5cbba3fcf0c80e134c627b5a5e09524afc2df6e428ad3430bfec95e0bc71dae2c759289ccd9d0dff736b35cea1504d4158e3b6f34af9cd07b29b208 +srcfiles size=14 + RELOC/source/latex/chemobabel/chemobabel.dtx + RELOC/source/latex/chemobabel/chemobabel.ins +runfiles size=4 + RELOC/tex/latex/chemobabel/chemobabel.sty +catalogue-contact-repository https://github.com/aminophen/chemobabel +catalogue-ctan /graphics/chemobabel +catalogue-license bsd2 +catalogue-topics graphics chemistry foreign-import +catalogue-version 0.9l + name chemplants category Package -revision 52863 +revision 60606 shortdesc Symbology to draw chemical plants with TikZ relocated 1 longdesc This package offers tools to draw simple or barely complex @@ -53311,22 +55449,22 @@ longdesc The guiding light of the package is the UNICHIM regulation. All longdesc of the symbols and styles are defined using tools of the TikZ longdesc package, thus a basic knowledge of the logic of this powerful longdesc tool is required to profitably use chemplants. -containersize 6316 -containerchecksum 271a8f113b9c722f08c750d77aa6d70c5342396c6bfee815f94e90cbd7f6ed7f9793dfcaed9f5ce49612e15924298f2e995b2b5f504b975c8081338076a61272 -doccontainersize 878916 -doccontainerchecksum 18eb6cbbab95af45040cbf66384e32701e83e509c62bc3a68b82e760f131827740a16d5da35175eaea20810d4a66e8b1cc586baa10f372f1ad2a043c8f9f3f54 -docfiles size=267 +containersize 7704 +containerchecksum 6d5794cdacdf71db6cef86b9bc99af2edb1a13f2b209d7693a7f37cb5161596de37b656b3e4ae690102cc64cb7245b21004c72943fb8f5e08fc1ed1479d98947 +doccontainersize 970944 +doccontainerchecksum 50cdbc24501b61b81c2cde97c851df785599f5c2f5c3e4eab75bdebd2a81501edb9e3223dacb2042682a066f5640e8b1377c43ca61ec643b342f6de2972ec4cf +docfiles size=306 RELOC/doc/latex/chemplants/README.md details="Readme" RELOC/doc/latex/chemplants/chemplants-changes.pdf RELOC/doc/latex/chemplants/chemplants-changes.tex RELOC/doc/latex/chemplants/chemplants-doc.pdf details="Package documentation" RELOC/doc/latex/chemplants/chemplants-doc.tex -runfiles size=11 +runfiles size=15 RELOC/tex/latex/chemplants/chemplants.sty catalogue-ctan /graphics/pgf/contrib/chemplants catalogue-license lppl1.3c catalogue-topics chemistry graphics pgf-tikz diagram-flow -catalogue-version 0.9.8 +catalogue-version 0.9.9 name chemschemex category Package @@ -53534,30 +55672,31 @@ catalogue-version 1.2 name chess-problem-diagrams category Package -revision 53302 +revision 63708 shortdesc A package for typesetting chess problem diagrams relocated 1 longdesc This package provides macros to typeset chess problem diagrams longdesc including fairy chess problems (mostly using rotated images of longdesc pieces) and other boards. -containersize 12036 -containerchecksum 5125a7f27889534f74acd4918641ba1ec10344efb639fc7490941b605d530ab5f7c1d9e31beef978d471693e328640d0be89fea5628b1a9f9a20322649db5e05 -doccontainersize 299316 -doccontainerchecksum a329c412da558e092d52bbe429cfe2dd815a7e5709022d2ace45ca9f42588a7b563b16259222214680e955c77adc38d044a4f19639ecbfd8d85cb97c6e82b8a0 +containersize 12292 +containerchecksum a1abc825710bea252dc9dca092c9bacebce5af21672e413425d5ddbf72022272690db31abfdc6cc4738a1aef1b802f95adf93264a4ede8c352409b2dc11c125d +doccontainersize 305800 +doccontainerchecksum 47c2e1fa3790f7229a2402b5e20edded8c2c7908d48e16a228c55bd5b23e94d77a5e1cc9d00790238a6fec4fdfcce1915251a08b6aa487ff63e18fadea6c62f3 docfiles size=89 RELOC/doc/latex/chess-problem-diagrams/README details="Readme" RELOC/doc/latex/chess-problem-diagrams/diagram.pdf details="Package documentation" -srccontainersize 23732 -srccontainerchecksum 2f5c30195017fdf2f8fbce3bd80f6bfbf89f2e4dd9beacc172bc6c38a761e4cdfec9e278118c4c5aa0e64fe0c51a735acad2a862c24ca6f3684c024238da5f10 -srcfiles size=27 +srccontainersize 24436 +srccontainerchecksum b06728a4f2390692f2ff557eb06484e29baa408ec21cd8f688567fb84dc7d67cd87da8ce4f743ce51b5f43267d0c0fb8b058d4fbc848ccda71a02ac29fd5ee6c +srcfiles size=28 RELOC/source/latex/chess-problem-diagrams/diagram.dtx RELOC/source/latex/chess-problem-diagrams/diagram.ins -runfiles size=15 +runfiles size=16 + RELOC/tex/latex/chess-problem-diagrams/cpdparse.sty RELOC/tex/latex/chess-problem-diagrams/diagram.sty catalogue-ctan /macros/latex/contrib/chess-problem-diagrams catalogue-license lppl1.2 catalogue-topics games -catalogue-version 1.15 +catalogue-version 1.21 name chessboard category Package @@ -53728,35 +55867,40 @@ catalogue-version 1.01 name chhaya category Package -revision 57508 +revision 61719 shortdesc Linguistic glossing in Marathi language relocated 1 longdesc muNbii vidyaapiitthaacyaa chaayaalekhn niymaavliis anusruun longdesc bhaassaavaijnyaanik chaayaaNgaaNce sNkssep purvnnaaraa longdesc aajnyaasNc. This package provides macros for linguistic longdesc glossing as per the rules given by Mumbai University. -containersize 2348 -containerchecksum 55d70033c02029065f6a619249a14febe37b0960e25c248cdd35fdc7e0afcb6d7e128ae9113001e19c2cc22172aa19002d8f06f0671628edd4bb811edfc92f29 -doccontainersize 46596 -doccontainerchecksum eac6b06915dccdcd74cb98cdf45073c06cd63fe48ac88fd50aa652ededaa1df36efc8604ac7dd335347b56bf10339d8397a9ec2db304c55e6c07132ff18a0b4a -docfiles size=14 +containersize 3408 +containerchecksum c8174ee6bbb8a57448caee6cd23bf7e41790dd1ff40cf496360548fadf1e7161b2e08b2ef53abb51b1410b406689267ce2d4a8668d052754e323a1d836670ba0 +doccontainersize 121504 +doccontainerchecksum 0e6bab691d5a5965ab8ee575f84aeae44d26ed12fa8c7f636fd0997a4ec7c1d4efc4a43f3f451659b69bd367c759dc8c3239ca51c5d12c91ef7182e43acfd126 +docfiles size=51 + RELOC/doc/latex/chhaya/COPYING + RELOC/doc/latex/chhaya/LICENSE.md RELOC/doc/latex/chhaya/README.txt details="Readme" RELOC/doc/latex/chhaya/chhaya.pdf details="Package documentation" language="mr" + RELOC/doc/latex/chhaya/gfdl-tex.tex RELOC/doc/latex/chhaya/ref.bib -srccontainersize 4140 -srccontainerchecksum f6117bcbfda21aebbbe90db0932f93792fb343fb0831d8b02c4c61114cc3d10631c3b548cbd2ea12349e4dfb694597f657dd2a2c0b3a126d01b23bf19b228ed1 -srcfiles size=5 +srccontainersize 6012 +srccontainerchecksum 635430d05de402f7e56110516fd16ef455c1393cda27b61198ebf92cb9787b01ce85f58d0e06389d823a98a73514470d83624d87a035565d159323524de09439 +srcfiles size=7 RELOC/source/latex/chhaya/chhaya.dtx RELOC/source/latex/chhaya/chhaya.ins -runfiles size=2 +runfiles size=4 RELOC/tex/latex/chhaya/chhaya.sty RELOC/tex/latex/chhaya/sankshep.tex -catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/chhaya/-/issues -catalogue-contact-home https://gitlab.com/niranjanvikastambe/chhaya +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=chhaya +catalogue-contact-home https://puszcza.gnu.org.ua/projects/chhaya +catalogue-contact-repository https://git.gnu.org.ua/chhaya.git +catalogue-contact-support mailto:chhaya-latex@gnu.org.ua catalogue-ctan /macros/unicodetex/latex/chhaya -catalogue-license lppl1.3c +catalogue-license gpl3+ other-free fdl catalogue-topics linguistic marathi -catalogue-version 0.2 +catalogue-version 0.4 name chicago category Package @@ -53931,56 +56075,86 @@ catalogue-license mit catalogue-topics chinese luatex macro-gen catalogue-version 1.1.1 +name chinesechess +category Package +revision 63276 +shortdesc Typeset Chinese chess with l3draw +relocated 1 +longdesc This LaTeX3 package based on l3draw provides macros and an +longdesc environment for Chinese chess manual writing. +containersize 13236 +containerchecksum 6ff5ef8c4c29263da38847c6c836470c397e9838c765eacdd9859a055dcc719d3385d4d9cddf5ef7e92196f99fcef8470445686c1d858bf68608429b1cd7987c +doccontainersize 7776072 +doccontainerchecksum 83d08a949754dd38beea350cc1c5f2b8d193947a909efed156f662b77a8505f993c8449f21655c48c6ea78891ff15395d34796479fe081d29958fe6a2c0ba49a +docfiles size=1935 + RELOC/doc/latex/chinesechess/README.md details="Readme" + RELOC/doc/latex/chinesechess/bg01.png + RELOC/doc/latex/chinesechess/bg02.png + RELOC/doc/latex/chinesechess/build.sh + RELOC/doc/latex/chinesechess/chinesechess.pdf details="Package documentation" language="zh" + RELOC/doc/latex/chinesechess/chinesechess.tex +runfiles size=22 + RELOC/tex/latex/chinesechess/chinesechess.sty +catalogue-contact-bugs https://gitee.com/nwafu_nan/xq/issues +catalogue-contact-repository https://gitee.com/nwafu_nan/xq +catalogue-ctan /macros/latex/contrib/chinesechess +catalogue-license lppl1.3c +catalogue-topics games chinese expl3 +catalogue-version 1.2.0 + name chivo category Package -revision 54512 +revision 65029 shortdesc Using the free Chivo fonts with LaTeX relocated 1 longdesc This work provides the necessary files to use the Chivo fonts longdesc with LaTeX. Chivo is a set of eight fonts provided by Hector -longdesc Gatti & Omnibus Team under the Open Font License -longdesc [(OFL)](http://scripts.sil.org/OFL), version 1.1. The fonts are -longdesc copyright (c) 2011-2019, Omnibus-Type. +longdesc Gatti & Omnibus Team under the Open Font License (OFL), version +longdesc 1.1. The fonts are copyright (c) 2011-2019, Omnibus-Type. execute addMap Chivo.map -containersize 2380144 -containerchecksum 41098de0294384383294b382722821c90ed2481f7172957b97c5f6f1775c94e0165a1c3aa7dea3c50742683b05419ecf009941bd79cb234b8b2400a7c3f0d567 -doccontainersize 599484 -doccontainerchecksum f430375203fe46e44ce013061f09a8a935b7fca7b4391df2e3f18d2125f4b13ec9b80415e432ce9af267f1caa6f88d6528b474cfc6833e5256e002d54fd221d2 -docfiles size=150 +containersize 2262112 +containerchecksum ef91cfbaa46c34bdfd891c3bb752e203d1cf495d5a9f12523b3c59fc591c7abd78ad943d3f4da8abb46fea9f25cfbd280785c721cde155851fa34f3f3a71afdb +doccontainersize 434340 +doccontainerchecksum b174894b8ebc6bf729ca8c8cabeb9d3fcc709d4f3e0947c689489e4caaec985f35265d476e44763fa5bfccb83308857b03cdd01ec8e7e47cf406d6a86a10d071 +docfiles size=113 RELOC/doc/fonts/chivo/Chivo.pdf details="Package documentation" + RELOC/doc/fonts/chivo/Fontlog.txt RELOC/doc/fonts/chivo/OFL.txt RELOC/doc/fonts/chivo/README.md details="Readme" -srccontainersize 7244 -srccontainerchecksum ca9cb13d589c3141e5e2a981ae9dd1acfe7d18f5c902664c6f836e228a7b95bccc8906b9a54337ebe561e4cdcfee37265bd71ee5c3f7dd1d013188852ac224a2 -srcfiles size=7 +srccontainersize 7596 +srccontainerchecksum 768f1a93665644d547e611abb5b773390205ba2839812ce222bd7d7b184851d46c7e1915d290e6ee87490faa6a8b0a2c59c3fe4a16d86bdb28fa77d6df4e8f3e +srcfiles size=8 RELOC/source/fonts/chivo/Chivo.dtx RELOC/source/fonts/chivo/Chivo.ins -runfiles size=2509 +runfiles size=3758 RELOC/fonts/enc/dvips/chivo/chi_24xxsv.enc RELOC/fonts/enc/dvips/chivo/chi_2lqlus.enc - RELOC/fonts/enc/dvips/chivo/chi_2sgwql.enc RELOC/fonts/enc/dvips/chivo/chi_3avctt.enc - RELOC/fonts/enc/dvips/chivo/chi_7yzfgj.enc - RELOC/fonts/enc/dvips/chivo/chi_adz5lu.enc + RELOC/fonts/enc/dvips/chivo/chi_bpya7g.enc RELOC/fonts/enc/dvips/chivo/chi_bv7x5e.enc - RELOC/fonts/enc/dvips/chivo/chi_c6jprw.enc - RELOC/fonts/enc/dvips/chivo/chi_d2anrk.enc - RELOC/fonts/enc/dvips/chivo/chi_f6ejpj.enc + RELOC/fonts/enc/dvips/chivo/chi_e6xqta.enc + RELOC/fonts/enc/dvips/chivo/chi_enwuwl.enc RELOC/fonts/enc/dvips/chivo/chi_fiyauo.enc + RELOC/fonts/enc/dvips/chivo/chi_flfbvu.enc + RELOC/fonts/enc/dvips/chivo/chi_g5vh6e.enc RELOC/fonts/enc/dvips/chivo/chi_h6jra2.enc - RELOC/fonts/enc/dvips/chivo/chi_hhbfoh.enc - RELOC/fonts/enc/dvips/chivo/chi_hlvv6p.enc - RELOC/fonts/enc/dvips/chivo/chi_jo7tnr.enc + RELOC/fonts/enc/dvips/chivo/chi_hlkxho.enc + RELOC/fonts/enc/dvips/chivo/chi_htgzz3.enc + RELOC/fonts/enc/dvips/chivo/chi_k3a3gz.enc RELOC/fonts/enc/dvips/chivo/chi_krtxg6.enc - RELOC/fonts/enc/dvips/chivo/chi_mq36jn.enc - RELOC/fonts/enc/dvips/chivo/chi_pxrm2a.enc + RELOC/fonts/enc/dvips/chivo/chi_ksf2oq.enc + RELOC/fonts/enc/dvips/chivo/chi_lad3zv.enc + RELOC/fonts/enc/dvips/chivo/chi_mwxmvo.enc + RELOC/fonts/enc/dvips/chivo/chi_oreysz.enc + RELOC/fonts/enc/dvips/chivo/chi_phg2dy.enc + RELOC/fonts/enc/dvips/chivo/chi_qszeh7.enc + RELOC/fonts/enc/dvips/chivo/chi_qxdnz3.enc RELOC/fonts/enc/dvips/chivo/chi_rymxky.enc - RELOC/fonts/enc/dvips/chivo/chi_ttjzpe.enc - RELOC/fonts/enc/dvips/chivo/chi_utd4ik.enc - RELOC/fonts/enc/dvips/chivo/chi_vgwtwr.enc - RELOC/fonts/enc/dvips/chivo/chi_wlsyn3.enc + RELOC/fonts/enc/dvips/chivo/chi_s4nbci.enc + RELOC/fonts/enc/dvips/chivo/chi_skmp7i.enc + RELOC/fonts/enc/dvips/chivo/chi_sol2hx.enc RELOC/fonts/enc/dvips/chivo/chi_wxmaut.enc - RELOC/fonts/enc/dvips/chivo/chi_znhcko.enc + RELOC/fonts/enc/dvips/chivo/chi_zvnssh.enc RELOC/fonts/map/dvips/chivo/Chivo.map RELOC/fonts/opentype/public/chivo/Chivo-Black.otf RELOC/fonts/opentype/public/chivo/Chivo-BlackItalic.otf @@ -53988,26 +56162,33 @@ runfiles size=2509 RELOC/fonts/opentype/public/chivo/Chivo-BoldItalic.otf RELOC/fonts/opentype/public/chivo/Chivo-ExtraBold.otf RELOC/fonts/opentype/public/chivo/Chivo-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/chivo/Chivo-ExtraLight.otf + RELOC/fonts/opentype/public/chivo/Chivo-ExtraLightItalic.otf RELOC/fonts/opentype/public/chivo/Chivo-Italic.otf RELOC/fonts/opentype/public/chivo/Chivo-Light.otf RELOC/fonts/opentype/public/chivo/Chivo-LightItalic.otf RELOC/fonts/opentype/public/chivo/Chivo-Medium.otf RELOC/fonts/opentype/public/chivo/Chivo-MediumItalic.otf RELOC/fonts/opentype/public/chivo/Chivo-Regular.otf + RELOC/fonts/opentype/public/chivo/Chivo-SemiBold.otf + RELOC/fonts/opentype/public/chivo/Chivo-SemiBoldItalic.otf RELOC/fonts/opentype/public/chivo/Chivo-Thin.otf RELOC/fonts/opentype/public/chivo/Chivo-ThinItalic.otf RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-t1.tfm @@ -54015,11 +56196,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Black-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-t1.tfm @@ -54027,11 +56210,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Black-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-t1.tfm @@ -54039,6 +56224,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Black-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-t1.tfm @@ -54046,16 +56232,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Black-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-t1.tfm @@ -54063,11 +56252,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-t1.tfm @@ -54075,11 +56266,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-t1.tfm @@ -54087,6 +56280,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-t1.tfm @@ -54094,16 +56288,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BlackItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-t1.tfm @@ -54111,11 +56308,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Bold-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-t1.tfm @@ -54123,11 +56322,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Bold-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-t1.tfm @@ -54135,6 +56336,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Bold-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-t1.tfm @@ -54142,16 +56344,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Bold-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-t1.tfm @@ -54159,11 +56364,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-t1.tfm @@ -54171,11 +56378,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-t1.tfm @@ -54183,6 +56392,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-t1.tfm @@ -54190,16 +56400,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-BoldItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-t1.tfm @@ -54207,11 +56420,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-t1.tfm @@ -54219,11 +56434,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-t1.tfm @@ -54231,6 +56448,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-t1.tfm @@ -54238,16 +56456,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBold-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-t1.tfm @@ -54255,11 +56476,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-t1.tfm @@ -54267,11 +56490,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-t1.tfm @@ -54279,23 +56504,139 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ExtraLightItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-t1.tfm @@ -54303,11 +56644,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Italic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-t1.tfm @@ -54315,11 +56658,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Italic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-t1.tfm @@ -54327,6 +56672,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Italic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-t1.tfm @@ -54334,16 +56680,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Italic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-t1.tfm @@ -54351,11 +56700,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Light-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-t1.tfm @@ -54363,11 +56714,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Light-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-t1.tfm @@ -54375,6 +56728,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Light-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-t1.tfm @@ -54382,16 +56736,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Light-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-t1.tfm @@ -54399,11 +56756,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-t1.tfm @@ -54411,11 +56770,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-t1.tfm @@ -54423,6 +56784,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-t1.tfm @@ -54430,16 +56792,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-LightItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-t1.tfm @@ -54447,11 +56812,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Medium-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-t1.tfm @@ -54459,11 +56826,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Medium-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-t1.tfm @@ -54471,6 +56840,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Medium-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-t1.tfm @@ -54478,16 +56848,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Medium-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-t1.tfm @@ -54495,11 +56868,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-t1.tfm @@ -54507,11 +56882,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-t1.tfm @@ -54519,6 +56896,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-t1.tfm @@ -54526,16 +56904,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-MediumItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-t1.tfm @@ -54543,11 +56924,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Regular-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-t1.tfm @@ -54555,11 +56938,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Regular-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-t1.tfm @@ -54567,23 +56952,139 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Regular-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/chivo/Chivo-SemiBoldItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-t1.tfm @@ -54591,11 +57092,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Thin-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-t1.tfm @@ -54603,11 +57106,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Thin-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-t1.tfm @@ -54615,6 +57120,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Thin-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-t1.tfm @@ -54622,16 +57128,19 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-Thin-tosf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-dnom-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-inf-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-t1.tfm @@ -54639,11 +57148,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-lf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-numr-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-t1.tfm @@ -54651,11 +57162,13 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-osf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-sup-t1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-t1.tfm @@ -54663,6 +57176,7 @@ runfiles size=2509 RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/chivo/Chivo-ThinItalic-tosf-t1.tfm @@ -54674,292 +57188,520 @@ runfiles size=2509 RELOC/fonts/type1/public/chivo/Chivo-BoldItalic.pfb RELOC/fonts/type1/public/chivo/Chivo-ExtraBold.pfb RELOC/fonts/type1/public/chivo/Chivo-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/chivo/Chivo-ExtraLight.pfb + RELOC/fonts/type1/public/chivo/Chivo-ExtraLightItalic.pfb RELOC/fonts/type1/public/chivo/Chivo-Italic.pfb RELOC/fonts/type1/public/chivo/Chivo-Light.pfb RELOC/fonts/type1/public/chivo/Chivo-LightItalic.pfb RELOC/fonts/type1/public/chivo/Chivo-Medium.pfb RELOC/fonts/type1/public/chivo/Chivo-MediumItalic.pfb RELOC/fonts/type1/public/chivo/Chivo-Regular.pfb + RELOC/fonts/type1/public/chivo/Chivo-SemiBold.pfb + RELOC/fonts/type1/public/chivo/Chivo-SemiBoldItalic.pfb RELOC/fonts/type1/public/chivo/Chivo-Thin.pfb RELOC/fonts/type1/public/chivo/Chivo-ThinItalic.pfb RELOC/fonts/vf/public/chivo/Chivo-Black-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Black-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BlackItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Bold-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBold-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-dnom-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-inf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-lf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-numr-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-osf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-sup-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tosf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-dnom-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-inf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-lf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-numr-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-osf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-sup-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tosf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-ExtraLightItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Italic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Light-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-LightItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Medium-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-MediumItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-dnom-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-inf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-lf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-numr-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-osf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-sup-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tosf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-dnom-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-inf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-inf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-lf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-numr-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-numr-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-osf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-sup-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/chivo/Chivo-SemiBoldItalic-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-Thin-tosf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-dnom-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-dnom-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-dnom-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-inf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-inf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-inf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-lf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-numr-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-numr-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-numr-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-osf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-sup-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-sup-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tlf-ts1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-ot1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-t1.vf RELOC/fonts/vf/public/chivo/Chivo-ThinItalic-tosf-ts1.vf RELOC/tex/latex/chivo/Chivo.sty @@ -54995,7 +57737,7 @@ catalogue-contact-home https://www.omnibus-type.com/fonts/chivo/ catalogue-ctan /fonts/chivo catalogue-license ofl lppl1.3c catalogue-topics font font-body font-proportional font-sans font-otf font-type1 font-supp font-t1enc -catalogue-version 2.1 +catalogue-version 2.2 name chkfloat category Package @@ -55089,15 +57831,6 @@ containerchecksum b5758df3789dbb93914ad9e210ab8400440c64fd15955482df147347cfe0f0 binfiles arch=armhf-linux size=1 bin/armhf-linux/chklref -name chklref.i386-cygwin -category Package -revision 52631 -shortdesc i386-cygwin files of chklref -containersize 336 -containerchecksum 532c6807179abbd4bed22e153a4d79b29972dcdbf4b8e34c81a250b49d41bb42139f6b111f951eb8a49552cab70e5c60c29d6595f1097702392fa8fd93f70f2e -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/chklref - name chklref.i386-freebsd category Package revision 52631 @@ -55143,14 +57876,14 @@ containerchecksum c0b6f216c96bc95857a0a639b6a837b83f6faa36bf6ab312803c3c45e25885 binfiles arch=universal-darwin size=1 bin/universal-darwin/chklref -name chklref.win32 +name chklref.windows category Package -revision 52631 -shortdesc win32 files of chklref -containersize 680 -containerchecksum 85a91343daaf1ce84566f3db1980116a3322eead95640300274e0e858b23d1a68517c4c4eda366ade6b20845a0740c058fa6c97759abce5a136a929e6c21ed15 -binfiles arch=win32 size=1 - bin/win32/chklref.exe +revision 65891 +shortdesc windows files of chklref +containersize 2304 +containerchecksum f82b6545e49b72aee98d7ab2b9977f09ebbebfbe475de0e05e5c5139c4c78453d55029a4ee98faee99833f228bd3c7fe82ede764946db6b42812c04049f66298 +binfiles arch=windows size=2 + bin/windows/chklref.exe name chklref.x86_64-cygwin category Package @@ -55199,16 +57932,16 @@ binfiles arch=x86_64-solaris size=1 name chktex category TLCore -revision 52851 +revision 64797 shortdesc Check for errors in LaTeX documents longdesc The program reports typographic and other errors in LaTeX longdesc documents. Filters are also provided for checking the LaTeX longdesc parts of CWEB documents. depend chktex.ARCH -containersize 9944 -containerchecksum 918392b98262e29503fff544c735b9c7d8da07340362d258b88b09a940d6c8495d761c416ae79b99711ad0fafc559b4ec3b71511e881adac3f3d55c617ddc2cc -doccontainersize 425800 -doccontainerchecksum 5c24c5fe8f3100346e52104d0f65b096b9e3af7cdf02318fdc1977c7b9ded9b2a40fb06bd13a77866a34a9bfe77365038303e0cd09a327afcfe6c81b3dc36fdf +containersize 9920 +containerchecksum 7c28847e87e788d0f50c07c1c3140962a70173d2a36997720f3066755740744060ecd03272662aff563de39102052e91a4582a4bb63e35f918ad8f517dff55e6 +doccontainersize 425796 +doccontainerchecksum 28df4bed075d66d9f25bcbe332731f1d5f0bb0f7f92bd2f3618c84adf788d0f429bd0c6e75381ebf7bbeac98409d94f85d17ebd752f9e4af707d9e3373d45f97 docfiles size=112 texmf-dist/doc/chktex/ChkTeX.pdf details="System documentation" texmf-dist/doc/man/man1/chktex.1 @@ -55223,16 +57956,16 @@ runfiles size=8 texmf-dist/scripts/chktex/deweb.pl catalogue-contact-home http://www.nongnu.org/chktex/ catalogue-ctan /support/chktex -catalogue-license gpl2 +catalogue-license gpl2+ catalogue-topics debug-supp -catalogue-version 1.7.6 +catalogue-version 1.7.8 name chktex.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of chktex -containersize 52044 -containerchecksum 44462e296c7c83a93fc9a461fc528902d4e06305b518aaf019b7d1ecc2d56f879b7bb840549ae1b504026b190485eb615880e1ede52ebc84d3ad9b9630ee42f9 +containersize 53420 +containerchecksum 8f30eb675a360fc8cd1b010acbdbd48b6fd946fa289251f8677f85ac06d7a7203a053f9e96a7fcc4e2788989a42e94287d75b47b2f2cf337ce4e7c278f3e875b binfiles arch=aarch64-linux size=38 bin/aarch64-linux/chktex bin/aarch64-linux/chkweb @@ -55240,21 +57973,21 @@ binfiles arch=aarch64-linux size=38 name chktex.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of chktex -containersize 56696 -containerchecksum 64c5fe8d7dcb19868a6922111368f8b8d6140fd55bf2e132c6a1341b3f9cb357996d104a0f9f7c574f2c873732086ec61e8f79b36927cbf76ff1853927b42c10 -binfiles arch=amd64-freebsd size=37 +containersize 58712 +containerchecksum b062c0e98e1560d44f9fe909099efbf91529b4dcc36be4292ceb5ba6e442fd1529e501e538a6b8588b88f1721ca62ea4c38ba7b1cf324eec16a418a1e23eb27e +binfiles arch=amd64-freebsd size=38 bin/amd64-freebsd/chktex bin/amd64-freebsd/chkweb bin/amd64-freebsd/deweb name chktex.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of chktex -containersize 50780 -containerchecksum 0ab9c2fb439906929284ece5ca972277d99f7fb17a861be0d17ae52db9d1e924c4a8df7fdb26e1e5d46ba445ce9f009cdcf9d7bbbab04195b1c2ecf5d91c0450 +containersize 52280 +containerchecksum 4f4b6ef32b4d78d2c2d50404b751312bb56ee150ac23a7216b8e70d8f071f62b65afac22aeca038c7a02272631ae0a2c459c6290e48e143402b67eb29249d54f binfiles arch=amd64-netbsd size=43 bin/amd64-netbsd/chktex bin/amd64-netbsd/chkweb @@ -55262,142 +57995,131 @@ binfiles arch=amd64-netbsd size=43 name chktex.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of chktex -containersize 43216 -containerchecksum e834e89773708a8a6c45c6f49204ff93853ab1bf0a6fe0f634b6b4230ed223933da156aac5c70874b9cf76a2ba65aecc3b8409b57f2588ead93a79cf0ebda38b +containersize 44580 +containerchecksum e901dab7067924eeaf7881a26ab8deccee4fd258f857b60c98cd78e0653348c5de292f306d66c150fdb648498235b468726dc094b7387f6d067b13bc457d7a02 binfiles arch=armhf-linux size=31 bin/armhf-linux/chktex bin/armhf-linux/chkweb bin/armhf-linux/deweb -name chktex.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of chktex -containersize 24572 -containerchecksum 0c2e9f228858bbf376cb7bf365200d241bfabfe8983ef21397d9ced8982b881f31cbebdce93668cb80f62f3415e4ea0d30840a1283149f3519ff9da502d60855 -binfiles arch=i386-cygwin size=17 - bin/i386-cygwin/chktex.exe - bin/i386-cygwin/chkweb - bin/i386-cygwin/deweb - name chktex.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of chktex -containersize 50116 -containerchecksum 16ab759ee5ddd44bdef1bcfb65677a4c79de7b06a4fe528ce0ecac8d0f36b856c1d23ff6a7f860624d9ee61bfd6423851ba7ce1887d9657fba2d2ac7dcf72f0b -binfiles arch=i386-freebsd size=32 +containersize 52716 +containerchecksum c57363c3f5897972772f096b85ccd051015b45c50b9585ee474e32a420109fa2f1fb7ec639d7afd65f19ad22c0f67e9ea9d8089bc6c93c56607cac468a2ad244 +binfiles arch=i386-freebsd size=34 bin/i386-freebsd/chktex bin/i386-freebsd/chkweb bin/i386-freebsd/deweb name chktex.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of chktex -containersize 56784 -containerchecksum 7f6a9f78c386fa6e391206b2d27eb7512393579a28133e84d7fed57bb1ee8a3fa2370e438802e5c134981a9258f01c3d6166ab3cda2bfb56ae985c324258c7e6 -binfiles arch=i386-linux size=39 +containersize 59112 +containerchecksum 826ee2c046fb7e72d581de7af21f38f9a78eeabfcf51ba4fb22c80b32e3e252b0b39344fea2de03647ed42cc0efa35eb48bc6fc0dd1a27f4e6528ae0e0aed3bc +binfiles arch=i386-linux size=40 bin/i386-linux/chktex bin/i386-linux/chkweb bin/i386-linux/deweb name chktex.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of chktex -containersize 45852 -containerchecksum 33191759b3c467ce0846e487c1ca57237889601df57e57547a5fee1961407b9cf1b742bb14ce3518e8bbffc5d31b474e11f2fbf67757ca24920a455dba0b9ed3 -binfiles arch=i386-netbsd size=38 +containersize 47092 +containerchecksum fbc2bef7610b0f71207ee7a0a878011c12e91bfc501d36fe734bbc47328739f7123b123675e05b1cee4986bf417a6de0d89ab494f9b9628f52e9a32ba075a5f3 +binfiles arch=i386-netbsd size=40 bin/i386-netbsd/chktex bin/i386-netbsd/chkweb bin/i386-netbsd/deweb name chktex.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of chktex -containersize 53748 -containerchecksum b306c9422a924baa6fbdc2eb05f14096cc166b504a121ab920bc7dc9979b685fa22bece5ce6ae809e709141aa0e7f63cacdfee3f59de5b236417f9d85bfb0b9e -binfiles arch=i386-solaris size=32 +containersize 55260 +containerchecksum 3a83f9aecb40ce2f70b90005eadff8be64b8551e799dd6d2a24187189555db5fca048f4a11869ec692bb9ddda179df10536ddb77e67b2c4c19fe1515abe21b16 +binfiles arch=i386-solaris size=34 bin/i386-solaris/chktex bin/i386-solaris/chkweb bin/i386-solaris/deweb name chktex.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of chktex -containersize 104632 -containerchecksum 9f39b5989bf27e91d743abb1a07ed3ab3e692d80e32d4cd7f0feb53a799cea06266e2dd5da0e9c165cca3d8f6137e6bfc9dbefd3cfbad07fcb55643c00e4d605 +containersize 108296 +containerchecksum df4905d7e9b43bb74068fe702a7c65205c698697cacb987cd4a1854721c45721a2b0dcb6bab824d3fca027de964d68e6c63e14b93ed97e7091eed621adb928cb binfiles arch=universal-darwin size=90 bin/universal-darwin/chktex bin/universal-darwin/chkweb bin/universal-darwin/deweb -name chktex.win32 +name chktex.windows category TLCore -revision 58783 -shortdesc win32 files of chktex -containersize 44920 -containerchecksum 10c7e7626fc1600e0ce0652752592e183a05f25d44c0eeaee6f6618221bfbfd42082db07724151f8bb51ab22f6eb17b0d45a2fb3f69875109b8370a7070eb0a4 -binfiles arch=win32 size=23 - bin/win32/chktex.exe - bin/win32/deweb.exe +revision 65891 +shortdesc windows files of chktex +containersize 54244 +containerchecksum 5625beb5736cecb7713b9d9769ac77c067677368fd828b913f0ac796149e4814af1865878cbae34766d38de0a5e8bd692b3b4786c7f8d43d1e14d5b9db019e3e +binfiles arch=windows size=31 + bin/windows/chktex.exe + bin/windows/deweb.exe name chktex.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of chktex -containersize 26212 -containerchecksum 5bc5957b9d6b05691f79926c8e478fd0d3f256f35f181ee36cd5b6e60a53e99d82b1fbc60c338d87a0fccf8226b493a36f15f938045b99fc47a2cea121acd5d7 -binfiles arch=x86_64-cygwin size=18 +containersize 28604 +containerchecksum d3a8ed1e925aa68ce74c122af999f42f7c303d2c499dc375c727a0ac15bbafb4047f4fb1ea936668a18629781feb0741f31379733fe78020202df78b95e08740 +binfiles arch=x86_64-cygwin size=20 bin/x86_64-cygwin/chktex.exe bin/x86_64-cygwin/chkweb bin/x86_64-cygwin/deweb name chktex.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of chktex -containersize 54100 -containerchecksum f0403525e5782e61b087748e9876121ce53eac394ce18ab8a84d3ab92cffb5f876d869f7c2ce454fd1cf56c6a7f144bead86990c46e72b9ff183314c6e80ba52 -binfiles arch=x86_64-darwinlegacy size=34 +containersize 56048 +containerchecksum f4fc1ff3ea8826380a27245c86b6a6d5ccebfc63b8f23400082c98b19a251d27726c72c88ac42bad8ea5f9ac2425c3a5c402d1f9924746bc7cfe073623ad5337 +binfiles arch=x86_64-darwinlegacy size=36 bin/x86_64-darwinlegacy/chktex bin/x86_64-darwinlegacy/chkweb bin/x86_64-darwinlegacy/deweb name chktex.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of chktex -containersize 55220 -containerchecksum 27f6af4039dd9a2344b1bec6b99f14f1df39e5c3687ebabf2b06b5a0a767844eb879f52a3c03109ed325d02c1f59f6db25fd09826458a2fe21e5f3c10fe54ba5 -binfiles arch=x86_64-linux size=36 +containersize 57000 +containerchecksum c48f8b492de2e4e703d2df4e756ea2d6dc8f721a96f4aff446da9cf93151fa6ccb894c5166984ac5f1b69a209de866d6e06a9d049639577c479615a26a5fcdcc +binfiles arch=x86_64-linux size=37 bin/x86_64-linux/chktex bin/x86_64-linux/chkweb bin/x86_64-linux/deweb name chktex.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of chktex -containersize 60236 -containerchecksum 922659cbec7c90d9b176812d717f88f3fabe4de27a787e7c801c699a256d3e80ae492997a661b2ba094291b9fe716fb4bb2e53428958c4322f3b2146eea30224 -binfiles arch=x86_64-linuxmusl size=38 +containersize 61012 +containerchecksum 664ea2c4962beb5b6f54763030f4a7b5935e04c26314c887334917e9cc07a5e3595d00808f5da268c7f8ba3525c03767de878c23635e834f32655fc101c2961c +binfiles arch=x86_64-linuxmusl size=39 bin/x86_64-linuxmusl/chktex bin/x86_64-linuxmusl/chkweb bin/x86_64-linuxmusl/deweb name chktex.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of chktex -containersize 59828 -containerchecksum 21908a4162b07c4d1d5d99cc7071afe4ac39cb808ba6dd408642eecb7880353e259cb4152160fad96bf6b45753d055ff670bf87765845942a712fbbd77133e95 -binfiles arch=x86_64-solaris size=38 +containersize 61588 +containerchecksum c7979a7e6b0599a16ca88da644a67fada62689441c068779a997dc78deea3962d48b8baca2845222d2acef2ec4bf2b8a3617e11fc1a4fd856722ee0c94a7ffe2 +binfiles arch=x86_64-solaris size=40 bin/x86_64-solaris/chktex bin/x86_64-solaris/chkweb bin/x86_64-solaris/deweb @@ -55665,7 +58387,7 @@ catalogue-version 0.2.1 name cinzel category Package -revision 54512 +revision 64550 shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts relocated 1 longdesc Cinzel and Cinzel Decorative fonts, designed by Natanael Gama @@ -55677,10 +58399,10 @@ longdesc fonts, but there are Decorative variants, which can be selected longdesc by the usual italic-selection commands in the package's LaTeX longdesc support. execute addMap cinzel.map -containersize 533316 -containerchecksum 7242b771113d9164231d060169e70f6ae6425fc992edebb86fae8e76128a294f1aba290c2340c9b28ad9e4a7d90f9dc44dbc793f6f171b10b13005bfa848e239 +containersize 533312 +containerchecksum 5e02892250c5b787e4c6288beae9be2b9a2a2929a31a18c40ab3bb7609a23741e829747aaaa639f8579f229005a2171070853ca79e23b7185ee5edfa090bcf13 doccontainersize 39128 -doccontainerchecksum 8bebe9427e35fd55a2b1e11d924124605b2045aaa50c7ae15e78b8fcad2b50c0363686f6eb6ddc8bcf3f407a8afc983df5b6cc1d8e2c9713616d1110532364d1 +doccontainerchecksum 7edcb9894dfbae936ef6dbde1645890feb50ba5914ffdcfd4539a44f8c8ce24f150662fec06663de54e8bfa69479c8ce006038f063f6587bf70f7c3449623a4e docfiles size=13 RELOC/doc/fonts/cinzel/README details="Readme" RELOC/doc/fonts/cinzel/SIL_Open_Font_License.txt @@ -55780,7 +58502,7 @@ catalogue-topics font font-decor font-type1 font-ttf font-supp font-t1enc name circ category Package -revision 15878 +revision 62977 shortdesc Macros for typesetting circuit diagrams relocated 1 longdesc Several electrical symbols like resistor, capacitor, @@ -55789,12 +58511,12 @@ longdesc with wires. The package also contains an American resistor longdesc symbol for those of us on that side of the Atlantic. The longdesc package also has simple facilities for producing optics longdesc diagrams; however, no-one would deny that the PSTricks -longdesc pst-optic package, or the MetaPost makecirc package does the -longdesc job better. -containersize 23692 -containerchecksum 638a89cd3ef49ba7f21f42944d1452c2866265f326e33e07b47d9607723de7f477766e8c240df7a91081f864f12346aa358b48f66cb67017fc11ace129c9c694 -doccontainersize 207692 -doccontainerchecksum 389d98b3b5cce6c93d84bb3022f4aaaad1927bf78b323c106f7e89612835b92a2ff878fbe8d120406018549dba6cb370d88f098df523ff69a8810ff6e2b80241 +longdesc pst-optic package, or the MetaPost makecirc package do the job +longdesc better. +containersize 23672 +containerchecksum 12f50efbbb07593485120d0e0b428ff2035a44c668025eb4a6ac78ecb3c733c5975f9f7ab4685c71488e7480a3a280fb90f618d03d79f1afed278bfd67810573 +doccontainersize 207696 +doccontainerchecksum efdc13dc7bc670719c854be45155549fa24e1e195a6a61f84a075aeca1903eb13a6579a330d7ddd6bd5a1b7073217a453e29f790600ad2013e0d82a80763d29a docfiles size=81 RELOC/doc/latex/circ/COPYING RELOC/doc/latex/circ/README details="Readme" @@ -55804,7 +58526,7 @@ docfiles size=81 RELOC/doc/latex/circ/cisyms.tex RELOC/doc/latex/circ/index.hlp srccontainersize 38440 -srccontainerchecksum b6127892465f3bbba51b3fa0f1d35e667cb4286adf0280691656a8b62c52ee57aa01578e716c495612b00a5725ed30c17b1a81b6346f184fd6d60611ea2663be +srccontainerchecksum e9b6ea17103eb8438f230d2066833d8d5281f14367632fdb6e8acfcd8d33348286198ee7438c04d6b04d42bb248554946aa6eaa3a2edb6900b7c20540e5b1617 srcfiles size=47 RELOC/source/latex/circ/Makefile RELOC/source/latex/circ/circ.drv @@ -55833,22 +58555,22 @@ runfiles size=43 catalogue-also circuit-macros catalogue-ctan /macros/generic/diagrams/circ catalogue-license gpl -catalogue-topics diagram-circ font font-mf +catalogue-topics diagram-circ font font-mf optics catalogue-version 1.1 name circledsteps category Package -revision 53382 +revision 63255 shortdesc Typeset circled numbers relocated 1 longdesc This package generates circled numbers (or other kinds of longdesc markers or small text) to mark "steps" in procedures, longdesc exercises, and so on. -containersize 1852 -containerchecksum f8e34dbb7167f4d9b6a9585c856f57cadcde9ccbde1d28a1918ff3f4c04916fe347acd2377cdfc5d0cb03ca2a8f5ed3389ca134e8621084da6504e0a5fa10622 -doccontainersize 415380 -doccontainerchecksum b7a50fa849e89393ebc6624623743ee7be737805c7807dd57957c05bd3489d908731c37c87d950615e5d6b835035169717a2648ba876ae458a0d4b0f779f0eea -docfiles size=109 +containersize 1924 +containerchecksum 9d6d03eefcf50ccb8f88d5782f00d5201efdcf844c947f45ea92a41d196de70b7917013b061b6eaa9d0322cd44e826b3987576c7483176b7aa956cff2a55a611 +doccontainersize 429072 +doccontainerchecksum ca3ff6fd272068aae1935a56f63e32886dd879816114b51835ae4c44db35d97bf048e5808fcf3c6c3206f700736835ceefe7883434a91318d434591d701a4aeb +docfiles size=115 RELOC/doc/latex/circledsteps/README.md details="Readme" RELOC/doc/latex/circledsteps/circledsteps-manual.pdf details="Package documentation" RELOC/doc/latex/circledsteps/circledsteps-manual.tex @@ -55856,16 +58578,44 @@ docfiles size=109 RELOC/doc/latex/circledsteps/lppl-1-3c_license.txt runfiles size=2 RELOC/tex/latex/circledsteps/circledsteps.sty +catalogue-also circledtext catalogue-contact-home https://github.com/Rmano/circledsteps catalogue-contact-support https://github.com/Rmano/circledsteps/issues catalogue-ctan /macros/latex/contrib/circledsteps catalogue-license lppl1.3c catalogue-topics numbers -catalogue-version 1.3 +catalogue-version 1.3.1 + +name circledtext +category Package +revision 63166 +shortdesc Create circled text +relocated 1 +longdesc This LaTeX package provides a macro \circledtext to typeset +longdesc circled text. Its starred version can produce an inverted +longdesc version. +containersize 6048 +containerchecksum 473d8ca8d6507148814e0c6083c7046fdb57596e374d1bcd40318c67ecc5a557b324700505d40c1040fc2b2682edae1150d5051e0c26cf9823cee0965ce4f89a +doccontainersize 215708 +doccontainerchecksum 04ba2a36dbd2c18ae7aaab0f638412590e2d5ca43f2438690d1165f2761bb9b1b1655d26df1a01af143dcd5ca83c161ac7a7c683d3a65de6586398774023c275 +docfiles size=61 + RELOC/doc/latex/circledtext/README.md details="Readme" + RELOC/doc/latex/circledtext/build.sh + RELOC/doc/latex/circledtext/circledtext.pdf details="Package documentation" language="zh,en" + RELOC/doc/latex/circledtext/circledtext.tex +runfiles size=9 + RELOC/tex/latex/circledtext/circledtext.sty +catalogue-also circledsteps +catalogue-contact-bugs https://github.com/registor/circledtext/issues +catalogue-contact-repository https://github.com/registor/circledtext +catalogue-ctan /macros/latex/contrib/circledtext +catalogue-license lppl1.3c +catalogue-topics graphics-symb expl3 +catalogue-version 1.1.0 name circuit-macros category Package -revision 57308 +revision 66549 shortdesc M4 macros for electric circuit diagrams relocated 1 longdesc A set of m4 macros for drawing high-quality electric circuits @@ -55883,11 +58633,11 @@ longdesc structured. (The m4 and pic processors are readily available longdesc for Unix and PC machines.) Alternative output macros can create longdesc TeX output to be read by pstricks, TikZ commands for use by the longdesc pgf bundle, or SVG. -containersize 1500 -containerchecksum 38e9ed7362e27f836d3a364ea50f54593aac93f30b7a2b90a7bab9f0dd72f28a14cae86fd5d3dad2f47c00ef511afb458c2da29c5da203c3d65c9829b32aad52 -doccontainersize 2234380 -doccontainerchecksum 44251146179c9021159523d00acc93969c1caeb92bd0efca9701d95804fe57c8ba218f41cdab878aad8b942cdb21ace7d0266ed7c7c9373d0eb9676b9e636492 -docfiles size=1246 +containersize 1496 +containerchecksum f6fcb750debd036d2d5effc38a454a2c2e0cc76f3ebc428bf1deda851b6659c7083e5038d0671daf8ca8f1da65df58f245944b398c6cdff34b51d891fcc8ef89 +doccontainersize 3337844 +doccontainerchecksum e6c9c5212f58faf0b27ff1807d3b38a3d2128904fac3ef3f1d7d2918286a2af4698a627e05f8f51d0cf54772663dfb93a5c4e7eb0e533db3efde75643446a18f +docfiles size=1602 RELOC/doc/latex/circuit-macros/CHANGES RELOC/doc/latex/circuit-macros/Copying RELOC/doc/latex/circuit-macros/INSTALL @@ -55896,20 +58646,15 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/README details="Readme" RELOC/doc/latex/circuit-macros/darrow.m4 RELOC/doc/latex/circuit-macros/doc/ACsymbol.m4 - RELOC/doc/latex/circuit-macros/doc/AmpTable.tex RELOC/doc/latex/circuit-macros/doc/AmpTableMan.m4 RELOC/doc/latex/circuit-macros/doc/AntennasMan.m4 RELOC/doc/latex/circuit-macros/doc/ArrestersMan.m4 - RELOC/doc/latex/circuit-macros/doc/Audio.tex RELOC/doc/latex/circuit-macros/doc/AudioMan.m4 RELOC/doc/latex/circuit-macros/doc/Axes.m4 RELOC/doc/latex/circuit-macros/doc/BigResistor.m4 - RELOC/doc/latex/circuit-macros/doc/Bip.tex RELOC/doc/latex/circuit-macros/doc/BipMan.m4 RELOC/doc/latex/circuit-macros/doc/Buffer.m4 - RELOC/doc/latex/circuit-macros/doc/Capture.JPG - RELOC/doc/latex/circuit-macros/doc/CctTable.tex - RELOC/doc/latex/circuit-macros/doc/CctTableMan.m4 + RELOC/doc/latex/circuit-macros/doc/CapacitorsMan.m4 RELOC/doc/latex/circuit-macros/doc/Circuit_macros.bib RELOC/doc/latex/circuit-macros/doc/Circuit_macros.pdf details="Package manual" RELOC/doc/latex/circuit-macros/doc/Circuit_macros.tex @@ -55917,75 +58662,57 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/doc/ConfigA.m4 RELOC/doc/latex/circuit-macros/doc/ConfigB.m4 RELOC/doc/latex/circuit-macros/doc/ConfigC.m4 - RELOC/doc/latex/circuit-macros/doc/Conn.tex RELOC/doc/latex/circuit-macros/doc/ConnMan.m4 - RELOC/doc/latex/circuit-macros/doc/Contact.tex RELOC/doc/latex/circuit-macros/doc/ContactMan.m4 - RELOC/doc/latex/circuit-macros/doc/Contacts.tex RELOC/doc/latex/circuit-macros/doc/ContactsMan.m4 RELOC/doc/latex/circuit-macros/doc/Corners.m4 RELOC/doc/latex/circuit-macros/doc/DCsymbol.m4 RELOC/doc/latex/circuit-macros/doc/Dac.m4 RELOC/doc/latex/circuit-macros/doc/Darlington.m4 - RELOC/doc/latex/circuit-macros/doc/Demultiplexer.tex RELOC/doc/latex/circuit-macros/doc/DemultiplexerMan.m4 - RELOC/doc/latex/circuit-macros/doc/Diodes.tex RELOC/doc/latex/circuit-macros/doc/DiodesMan.m4 - RELOC/doc/latex/circuit-macros/doc/Emarrows.tex RELOC/doc/latex/circuit-macros/doc/EmarrowsMan.m4 RELOC/doc/latex/circuit-macros/doc/FF.m4 RELOC/doc/latex/circuit-macros/doc/FlipFlop.m4 RELOC/doc/latex/circuit-macros/doc/Flowdiag.m4 - RELOC/doc/latex/circuit-macros/doc/Fuses.tex RELOC/doc/latex/circuit-macros/doc/FusesMan.m4 - RELOC/doc/latex/circuit-macros/doc/Grounds.tex RELOC/doc/latex/circuit-macros/doc/GroundsMan.m4 - RELOC/doc/latex/circuit-macros/doc/Headers.tex RELOC/doc/latex/circuit-macros/doc/HeadersMan.m4 RELOC/doc/latex/circuit-macros/doc/HybridPi.m4 - RELOC/doc/latex/circuit-macros/doc/Jack.tex + RELOC/doc/latex/circuit-macros/doc/InductorsMan.m4 RELOC/doc/latex/circuit-macros/doc/JackMan.m4 - RELOC/doc/latex/circuit-macros/doc/Logic.tex RELOC/doc/latex/circuit-macros/doc/LogicMan.m4 RELOC/doc/latex/circuit-macros/doc/Loop.m4 RELOC/doc/latex/circuit-macros/doc/Makefile - RELOC/doc/latex/circuit-macros/doc/Multiplexer.tex + RELOC/doc/latex/circuit-macros/doc/MoreTableMan.m4 RELOC/doc/latex/circuit-macros/doc/MultiplexerMan.m4 - RELOC/doc/latex/circuit-macros/doc/NLG.tex RELOC/doc/latex/circuit-macros/doc/NLGMan.m4 - RELOC/doc/latex/circuit-macros/doc/NPDT.tex RELOC/doc/latex/circuit-macros/doc/NPDTMan.m4 - RELOC/doc/latex/circuit-macros/doc/Nport.tex RELOC/doc/latex/circuit-macros/doc/NportMan.m4 RELOC/doc/latex/circuit-macros/doc/Oblique.m4 RELOC/doc/latex/circuit-macros/doc/OpampMan.m4 RELOC/doc/latex/circuit-macros/doc/Opto.m4 RELOC/doc/latex/circuit-macros/doc/ParSeries.m4 - RELOC/doc/latex/circuit-macros/doc/Pconn.tex RELOC/doc/latex/circuit-macros/doc/PconnMan.m4 RELOC/doc/latex/circuit-macros/doc/Potentiometers.m4 - RELOC/doc/latex/circuit-macros/doc/Relay.tex RELOC/doc/latex/circuit-macros/doc/RelayMan.m4 + RELOC/doc/latex/circuit-macros/doc/ResistorsMan.m4 + RELOC/doc/latex/circuit-macros/doc/SLDsMan.m4 RELOC/doc/latex/circuit-macros/doc/Series.m4 - RELOC/doc/latex/circuit-macros/doc/ShiftR.tex RELOC/doc/latex/circuit-macros/doc/ShiftRMan.m4 RELOC/doc/latex/circuit-macros/doc/Sinus.m4 - RELOC/doc/latex/circuit-macros/doc/Sources.tex RELOC/doc/latex/circuit-macros/doc/SourcesMan.m4 - RELOC/doc/latex/circuit-macros/doc/Switches.tex RELOC/doc/latex/circuit-macros/doc/SwitchesMan.m4 RELOC/doc/latex/circuit-macros/doc/Taps.m4 - RELOC/doc/latex/circuit-macros/doc/Tgate.tex RELOC/doc/latex/circuit-macros/doc/TgateMan.m4 RELOC/doc/latex/circuit-macros/doc/Thermal.m4 RELOC/doc/latex/circuit-macros/doc/Tline.m4 - RELOC/doc/latex/circuit-macros/doc/Variable.tex RELOC/doc/latex/circuit-macros/doc/VariableMan.m4 RELOC/doc/latex/circuit-macros/doc/Version.tex RELOC/doc/latex/circuit-macros/doc/WindingsMan.m4 RELOC/doc/latex/circuit-macros/doc/Workflow.m4 - RELOC/doc/latex/circuit-macros/doc/Xform.tex RELOC/doc/latex/circuit-macros/doc/XformMan.m4 + RELOC/doc/latex/circuit-macros/doc/arrowex.m4 RELOC/doc/latex/circuit-macros/doc/bi_trans.m4 RELOC/doc/latex/circuit-macros/doc/bistableMan.m4 RELOC/doc/latex/circuit-macros/doc/bitr.m4 @@ -55995,68 +58722,55 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/doc/defines.tex RELOC/doc/latex/circuit-macros/doc/eboxdims.m4 RELOC/doc/latex/circuit-macros/doc/fbfilter.m4 - RELOC/doc/latex/circuit-macros/doc/fet.tex RELOC/doc/latex/circuit-macros/doc/fetMan.m4 + RELOC/doc/latex/circuit-macros/doc/heaterMan.m4 RELOC/doc/latex/circuit-macros/doc/lrarrows.m4 RELOC/doc/latex/circuit-macros/doc/mplex.m4 - RELOC/doc/latex/circuit-macros/doc/oax.m4 - RELOC/doc/latex/circuit-macros/doc/oaxbody.m4 + RELOC/doc/latex/circuit-macros/doc/opampex.m4 + RELOC/doc/latex/circuit-macros/doc/opampexbody.m4 RELOC/doc/latex/circuit-macros/doc/quick.m4 RELOC/doc/latex/circuit-macros/doc/relaycoilMan.m4 RELOC/doc/latex/circuit-macros/doc/sampleIC.m4 RELOC/doc/latex/circuit-macros/doc/stringdims.m4 - RELOC/doc/latex/circuit-macros/doc/test.tex - RELOC/doc/latex/circuit-macros/doc/thyristor.tex RELOC/doc/latex/circuit-macros/doc/thyristorMan.m4 RELOC/doc/latex/circuit-macros/doc/tranbody.m4 - RELOC/doc/latex/circuit-macros/doc/ujt.tex RELOC/doc/latex/circuit-macros/doc/ujtMan.m4 RELOC/doc/latex/circuit-macros/doc/woodchips.m4 RELOC/doc/latex/circuit-macros/dpictools.pic RELOC/doc/latex/circuit-macros/examples/ABlogix.m4 - RELOC/doc/latex/circuit-macros/examples/ASME_Y14-5.m4 + RELOC/doc/latex/circuit-macros/examples/ASME_Y14-5.m4def RELOC/doc/latex/circuit-macros/examples/Adder.m4 RELOC/doc/latex/circuit-macros/examples/Alogix.m4 RELOC/doc/latex/circuit-macros/examples/AmpTable.m4 RELOC/doc/latex/circuit-macros/examples/Antennas.m4 - RELOC/doc/latex/circuit-macros/examples/AntiqueClock.m4 - RELOC/doc/latex/circuit-macros/examples/Arrester.m4 - RELOC/doc/latex/circuit-macros/examples/Attention.m4 + RELOC/doc/latex/circuit-macros/examples/Arresters.m4 RELOC/doc/latex/circuit-macros/examples/Audio.m4 - RELOC/doc/latex/circuit-macros/examples/Autoencoder.m4 - RELOC/doc/latex/circuit-macros/examples/Autologix.m4 RELOC/doc/latex/circuit-macros/examples/Ball.m4 RELOC/doc/latex/circuit-macros/examples/Bip.m4 - RELOC/doc/latex/circuit-macros/examples/Blogix.m4 RELOC/doc/latex/circuit-macros/examples/Btree.m4 RELOC/doc/latex/circuit-macros/examples/Buttons.m4 RELOC/doc/latex/circuit-macros/examples/Byte.m4 - RELOC/doc/latex/circuit-macros/examples/CSlight.m4 RELOC/doc/latex/circuit-macros/examples/CanLogic.m4 - RELOC/doc/latex/circuit-macros/examples/CctTable.m4 - RELOC/doc/latex/circuit-macros/examples/Ccurve.m4 - RELOC/doc/latex/circuit-macros/examples/Chuck.m4 + RELOC/doc/latex/circuit-macros/examples/Capacitors.m4 + RELOC/doc/latex/circuit-macros/examples/Chips.m4 RELOC/doc/latex/circuit-macros/examples/Conn.m4 RELOC/doc/latex/circuit-macros/examples/Connectors.m4 + RELOC/doc/latex/circuit-macros/examples/Consumption.m4 RELOC/doc/latex/circuit-macros/examples/Contact.m4 RELOC/doc/latex/circuit-macros/examples/Contacts.m4 - RELOC/doc/latex/circuit-macros/examples/Counting.m4 - RELOC/doc/latex/circuit-macros/examples/Coxeter.m4 - RELOC/doc/latex/circuit-macros/examples/Crossbar.m4 RELOC/doc/latex/circuit-macros/examples/Crow.m4 - RELOC/doc/latex/circuit-macros/examples/Cruller.m4 RELOC/doc/latex/circuit-macros/examples/Csource.m4 RELOC/doc/latex/circuit-macros/examples/Decoder.m4 RELOC/doc/latex/circuit-macros/examples/Demultiplexer.m4 RELOC/doc/latex/circuit-macros/examples/Dini.m4 RELOC/doc/latex/circuit-macros/examples/Diodes.m4 RELOC/doc/latex/circuit-macros/examples/Drive.m4 + RELOC/doc/latex/circuit-macros/examples/EEP.m4 + RELOC/doc/latex/circuit-macros/examples/EVplugs.m4 RELOC/doc/latex/circuit-macros/examples/Emarrows.m4 RELOC/doc/latex/circuit-macros/examples/Escher.m4 - RELOC/doc/latex/circuit-macros/examples/Euro.m4 - RELOC/doc/latex/circuit-macros/examples/Floor.m4 RELOC/doc/latex/circuit-macros/examples/Flow.m4 - RELOC/doc/latex/circuit-macros/examples/FlowchartDefs.m4 + RELOC/doc/latex/circuit-macros/examples/FlowchartDefs.m4def RELOC/doc/latex/circuit-macros/examples/Fuses.m4 RELOC/doc/latex/circuit-macros/examples/Geometry.m4 RELOC/doc/latex/circuit-macros/examples/GrayCode.m4 @@ -56064,70 +58778,197 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/examples/Headers.m4 RELOC/doc/latex/circuit-macros/examples/Heathkit.m4 RELOC/doc/latex/circuit-macros/examples/I2L.m4 - RELOC/doc/latex/circuit-macros/examples/IC10107.m4 RELOC/doc/latex/circuit-macros/examples/Incl.eps.bb RELOC/doc/latex/circuit-macros/examples/Incl.eps.gz RELOC/doc/latex/circuit-macros/examples/Incl.pdf RELOC/doc/latex/circuit-macros/examples/Incleps.m4 RELOC/doc/latex/circuit-macros/examples/Inclpdf.m4 + RELOC/doc/latex/circuit-macros/examples/Inductors.m4 RELOC/doc/latex/circuit-macros/examples/Jack.m4 - RELOC/doc/latex/circuit-macros/examples/Koch.m4 + RELOC/doc/latex/circuit-macros/examples/Lettering.m4def RELOC/doc/latex/circuit-macros/examples/Logic.m4 RELOC/doc/latex/circuit-macros/examples/Loglog.m4 - RELOC/doc/latex/circuit-macros/examples/Lyap.m4 RELOC/doc/latex/circuit-macros/examples/MC.m4 RELOC/doc/latex/circuit-macros/examples/Makefile RELOC/doc/latex/circuit-macros/examples/Mixer.m4 + RELOC/doc/latex/circuit-macros/examples/MoreTable.m4 RELOC/doc/latex/circuit-macros/examples/MotorControl.m4 RELOC/doc/latex/circuit-macros/examples/Multiplexer.m4 RELOC/doc/latex/circuit-macros/examples/NLG.m4 RELOC/doc/latex/circuit-macros/examples/NPDT.m4 RELOC/doc/latex/circuit-macros/examples/Nport.m4 - RELOC/doc/latex/circuit-macros/examples/OpAmpFilter.m4 RELOC/doc/latex/circuit-macros/examples/Opamp.m4 RELOC/doc/latex/circuit-macros/examples/Optoiso.m4 - RELOC/doc/latex/circuit-macros/examples/Orbits.m4 - RELOC/doc/latex/circuit-macros/examples/PPA.m4 RELOC/doc/latex/circuit-macros/examples/Pconn.m4 - RELOC/doc/latex/circuit-macros/examples/Planes.m4 + RELOC/doc/latex/circuit-macros/examples/Plate.m4 RELOC/doc/latex/circuit-macros/examples/PushPull.m4 RELOC/doc/latex/circuit-macros/examples/Quantum.m4 RELOC/doc/latex/circuit-macros/examples/README-examples RELOC/doc/latex/circuit-macros/examples/Rectifiers.m4 RELOC/doc/latex/circuit-macros/examples/Relay.m4 - RELOC/doc/latex/circuit-macros/examples/Resolver.m4 + RELOC/doc/latex/circuit-macros/examples/Resistors.m4 RELOC/doc/latex/circuit-macros/examples/Rotbox.m4 - RELOC/doc/latex/circuit-macros/examples/SPM.m4 RELOC/doc/latex/circuit-macros/examples/SQUID.m4 - RELOC/doc/latex/circuit-macros/examples/SampleFlow.m4 RELOC/doc/latex/circuit-macros/examples/Schottky.m4 - RELOC/doc/latex/circuit-macros/examples/Shaky.m4 RELOC/doc/latex/circuit-macros/examples/ShiftR.m4 RELOC/doc/latex/circuit-macros/examples/Sierpinski.m4 RELOC/doc/latex/circuit-macros/examples/Sixpole.m4 + RELOC/doc/latex/circuit-macros/examples/Smithchart.m4 RELOC/doc/latex/circuit-macros/examples/Sources.m4 RELOC/doc/latex/circuit-macros/examples/Switches.m4 RELOC/doc/latex/circuit-macros/examples/TTLnand.m4 RELOC/doc/latex/circuit-macros/examples/Tgate.m4 RELOC/doc/latex/circuit-macros/examples/Three.m4 - RELOC/doc/latex/circuit-macros/examples/Ttree.m4 RELOC/doc/latex/circuit-macros/examples/Tubediags.m4 + RELOC/doc/latex/circuit-macros/examples/UNO.m4 RELOC/doc/latex/circuit-macros/examples/Variable.m4 - RELOC/doc/latex/circuit-macros/examples/Wheat.m4 + RELOC/doc/latex/circuit-macros/examples/Views.dms RELOC/doc/latex/circuit-macros/examples/Windings.m4 RELOC/doc/latex/circuit-macros/examples/XOR.m4 RELOC/doc/latex/circuit-macros/examples/Xform.m4 - RELOC/doc/latex/circuit-macros/examples/Zcos.m4 - RELOC/doc/latex/circuit-macros/examples/birds.m4 - RELOC/doc/latex/circuit-macros/examples/bistable.m4 - RELOC/doc/latex/circuit-macros/examples/brace.m4 - RELOC/doc/latex/circuit-macros/examples/chaos.m4 - RELOC/doc/latex/circuit-macros/examples/clock.m4 RELOC/doc/latex/circuit-macros/examples/control.m4 RELOC/doc/latex/circuit-macros/examples/csc.m4 RELOC/doc/latex/circuit-macros/examples/debug1.tex RELOC/doc/latex/circuit-macros/examples/debug2.m4 RELOC/doc/latex/circuit-macros/examples/diamond.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ABlogixDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AdderDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AlogixDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AmpTableDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AntennasDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ArrestersDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ArrowFnDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AudioDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/AutoencoderDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/Banking.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/BipDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/BtreeDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ButtonsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ByteDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CanLogicDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CapacitorsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ChipsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ConnDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ConnectorsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ContactDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ContactsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CountingDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CrowDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CrullerDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/CsourceDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DPVconfig.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DecoderDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DemultiplexerDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DiniDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DiodesDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/DriveDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/EEPDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/EVplugsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/EmarrowsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/EscherDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/EyeDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/FlowDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/FontsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/FourbarDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/FusesDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/GeometryDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/GrayCodeDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/GroundsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/HeadersDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/HeathkitDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/I2LDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/Incl.jpg + RELOC/doc/latex/circuit-macros/examples/dpv/InclepsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/InductorsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/JackDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/LgateDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/LogicDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/LoglogDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/MCDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/Makefile + RELOC/doc/latex/circuit-macros/examples/dpv/MixerDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/MoreTableDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/MotorControlDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/MultiplexerDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/NLGDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/NPDTDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/Np.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/NportDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/OpampDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/OptoisoDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/PconnDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/PlateDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/PushPullDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/QuantumDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/README_svg + RELOC/doc/latex/circuit-macros/examples/dpv/RectifiersDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/RelayDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ResistorsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/RotboxDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SQUIDDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SchottkyDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ShiftRDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SierpinskiDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SixpoleDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SmithchartDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SourcesDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/SwitchesDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/TTLnandDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/TgateDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ThreeDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/TimerDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/TtreeDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/TubediagsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/UNODPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/VariableDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/WindingsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/XORDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/XformDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/Xtest.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/controlDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/cscDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/diamondDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex00DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex01DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex02DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex03DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex04DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex05DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex06DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex08DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex09DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex10DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex11DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex12DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex15DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex16DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex17DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex18DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/ex21DPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/examplesDPV.htmx + RELOC/doc/latex/circuit-macros/examples/dpv/examplesDPVs.htmx + RELOC/doc/latex/circuit-macros/examples/dpv/expDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/fetDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/graysurfDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/icsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/keyboardDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/lcctDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/local_init.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/paletteDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/pwrsupplyDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/quickDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/randomDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/recycleDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/relaycoilDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/roseDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/sfgDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/shapesDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/slddiagsDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/thyristorDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/tstDPV.htmx + RELOC/doc/latex/circuit-macros/examples/dpv/ujtDPV.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/windows.m4 + RELOC/doc/latex/circuit-macros/examples/dpv/wormDPV.m4 RELOC/doc/latex/circuit-macros/examples/ex00.m4 RELOC/doc/latex/circuit-macros/examples/ex01.m4 RELOC/doc/latex/circuit-macros/examples/ex02.m4 @@ -56148,12 +58989,77 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/examples/examples.pdf RELOC/doc/latex/circuit-macros/examples/examples.tex RELOC/doc/latex/circuit-macros/examples/exp.m4 + RELOC/doc/latex/circuit-macros/examples/extras/ASMEbox.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Ant.m4 + RELOC/doc/latex/circuit-macros/examples/extras/ArrowFn.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Attention.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Autoencoder.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Bridge.m4 + RELOC/doc/latex/circuit-macros/examples/extras/CSlight.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Ccurve.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Chuck.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Clocks.m4 + RELOC/doc/latex/circuit-macros/examples/extras/ControlLoop.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Counting.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Cruller.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Cylinder.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Egg.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Euro.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Eye.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Fefets.m4 + RELOC/doc/latex/circuit-macros/examples/extras/FieldLines.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Floor.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Flow2.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Hexagon.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Highgain.m4 + RELOC/doc/latex/circuit-macros/examples/extras/IC10107.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Koch.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Lyap.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Makefile + RELOC/doc/latex/circuit-macros/examples/extras/Metamodel.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Obliq.m4 + RELOC/doc/latex/circuit-macros/examples/extras/OneLine.m4 + RELOC/doc/latex/circuit-macros/examples/extras/OpAmpFilter.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Optics.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Orbits.m4 + RELOC/doc/latex/circuit-macros/examples/extras/PPA.m4 + RELOC/doc/latex/circuit-macros/examples/extras/PerpTo.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Pipe.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Planes.m4 + RELOC/doc/latex/circuit-macros/examples/extras/README_extras + RELOC/doc/latex/circuit-macros/examples/extras/RandomNodes.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Region.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Resolver.m4 + RELOC/doc/latex/circuit-macros/examples/extras/SPM.m4 + RELOC/doc/latex/circuit-macros/examples/extras/SampleFlow.m4 + RELOC/doc/latex/circuit-macros/examples/extras/ShadeSector.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Shadow.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Shaky.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Star.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Stator.m4 + RELOC/doc/latex/circuit-macros/examples/extras/TR_fill.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Views.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Wheat.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Wheel.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Y14-5_example.m4 + RELOC/doc/latex/circuit-macros/examples/extras/Zcos.m4 + RELOC/doc/latex/circuit-macros/examples/extras/birds.m4 + RELOC/doc/latex/circuit-macros/examples/extras/bistable.m4 + RELOC/doc/latex/circuit-macros/examples/extras/brace.m4 + RELOC/doc/latex/circuit-macros/examples/extras/chaos.m4 + RELOC/doc/latex/circuit-macros/examples/extras/hsv.m4 + RELOC/doc/latex/circuit-macros/examples/extras/person.m4 + RELOC/doc/latex/circuit-macros/examples/extras/rotellipse.m4 + RELOC/doc/latex/circuit-macros/examples/extras/squiggle.m4 + RELOC/doc/latex/circuit-macros/examples/extras/venus.m4 RELOC/doc/latex/circuit-macros/examples/fet.m4 RELOC/doc/latex/circuit-macros/examples/files.tex RELOC/doc/latex/circuit-macros/examples/graysurf.m4 RELOC/doc/latex/circuit-macros/examples/header.tex + RELOC/doc/latex/circuit-macros/examples/heater.m4 RELOC/doc/latex/circuit-macros/examples/ics.m4 - RELOC/doc/latex/circuit-macros/examples/keyval.m4 + RELOC/doc/latex/circuit-macros/examples/keyboard.m4 + RELOC/doc/latex/circuit-macros/examples/keyboard.pdf RELOC/doc/latex/circuit-macros/examples/lcct.m4 RELOC/doc/latex/circuit-macros/examples/mf/Makefile RELOC/doc/latex/circuit-macros/examples/mf/cct.mf @@ -56165,7 +59071,6 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/examples/mpost/examplesmpost.tex RELOC/doc/latex/circuit-macros/examples/mpost/mptest RELOC/doc/latex/circuit-macros/examples/mpost/tstmpost.tex - RELOC/doc/latex/circuit-macros/examples/person.m4 RELOC/doc/latex/circuit-macros/examples/psfrag/Makefile RELOC/doc/latex/circuit-macros/examples/psfrag/README-psfrag.txt RELOC/doc/latex/circuit-macros/examples/psfrag/examplespsfrag.tex @@ -56178,144 +59083,15 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/examples/rose.m4 RELOC/doc/latex/circuit-macros/examples/rotate.tex RELOC/doc/latex/circuit-macros/examples/rotatetext.m4 - RELOC/doc/latex/circuit-macros/examples/rotellipse.m4 RELOC/doc/latex/circuit-macros/examples/sfg.m4 + RELOC/doc/latex/circuit-macros/examples/shadowed.m4 RELOC/doc/latex/circuit-macros/examples/shapes.m4 - RELOC/doc/latex/circuit-macros/examples/snake.m4 - RELOC/doc/latex/circuit-macros/examples/squiggle.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ABlogixSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AdderSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AlogixSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AmpTableSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AntennasSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AntiqueClockSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AudioSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/AutoencoderSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Banking.m4 - RELOC/doc/latex/circuit-macros/examples/svg/BipSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/BtreeSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ButtonsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ByteSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CanLogicSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CctTableSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ConnSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ConnectorsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ContactSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ContactsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CountingSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CrossbarSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CrowSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CrullerSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/CsourceSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/DecoderSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/DemultiplexerSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/DiniSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/DiodesSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/DriveSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/EmarrowsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/FlowSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/FontsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/FourbarSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/FusesSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/GeometrySVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/GrayCodeSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/GroundsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/HeadersSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/HeathkitSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/I2LSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Incl.jpg - RELOC/doc/latex/circuit-macros/examples/svg/InclepsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/JackSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/LgateSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/LogicSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/LoglogSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/LyapSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/MCSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Makefile - RELOC/doc/latex/circuit-macros/examples/svg/MixerSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/MotorControlSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/MultiplexerSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/NLGSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/NPDTSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Np.m4 - RELOC/doc/latex/circuit-macros/examples/svg/NportSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/OpampSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/OptoisoSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/PconnSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/PushPullSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/QuantumSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/RectifiersSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/RelaySVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/RotboxSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SQUIDSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SVGconfig.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SchottkySVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ShiftRSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SierpinskiSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SixpoleSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SourcesSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/SwitchesSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/TTLnandSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/TgateSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ThreeSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/TimerSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/TtreeSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/TubediagsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/UNO.m4 - RELOC/doc/latex/circuit-macros/examples/svg/UNOSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/VariableSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/WindingsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/XORSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/XformSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Xtest.m4 - RELOC/doc/latex/circuit-macros/examples/svg/Y14-5SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/controlSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/cscSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/diamondSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex00SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex01SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex02SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex03SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex04SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex05SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex06SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex08SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex09SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex10SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex11SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex12SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex15SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex16SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex17SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex18SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/ex21SVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/examplesSVG.htmx - RELOC/doc/latex/circuit-macros/examples/svg/expSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/fetSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/graysurfSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/icsSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/lcctSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/local_init.m4 - RELOC/doc/latex/circuit-macros/examples/svg/paletteSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/pwrsupplySVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/quickSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/randomSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/recycleSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/relaycoilSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/roseSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/sfgSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/shapesSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/thyristorSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/tstSVG.htmx - RELOC/doc/latex/circuit-macros/examples/svg/ujtSVG.m4 - RELOC/doc/latex/circuit-macros/examples/svg/windows.m4 - RELOC/doc/latex/circuit-macros/examples/svg/wormSVG.m4 RELOC/doc/latex/circuit-macros/examples/test.m4 RELOC/doc/latex/circuit-macros/examples/testpdf.tex RELOC/doc/latex/circuit-macros/examples/thyristor.m4 - RELOC/doc/latex/circuit-macros/examples/tikz.tex RELOC/doc/latex/circuit-macros/examples/tst.tex RELOC/doc/latex/circuit-macros/examples/tst1.tex + RELOC/doc/latex/circuit-macros/examples/tsttikz.tex RELOC/doc/latex/circuit-macros/examples/tubedefs.m4 RELOC/doc/latex/circuit-macros/examples/ujt.m4 RELOC/doc/latex/circuit-macros/examples/windows.m4 @@ -56323,13 +59099,16 @@ docfiles size=1246 RELOC/doc/latex/circuit-macros/examples/xfig/Makefile RELOC/doc/latex/circuit-macros/examples/xfig/xfiglib.fig RELOC/doc/latex/circuit-macros/examples/xfig/xfiglib.m4 + RELOC/doc/latex/circuit-macros/examples/xtras RELOC/doc/latex/circuit-macros/gpic.m4 RELOC/doc/latex/circuit-macros/lib3D.m4 + RELOC/doc/latex/circuit-macros/libSLD.m4 RELOC/doc/latex/circuit-macros/libcct.m4 RELOC/doc/latex/circuit-macros/libgen.m4 RELOC/doc/latex/circuit-macros/liblog.m4 RELOC/doc/latex/circuit-macros/mfpic.m4 RELOC/doc/latex/circuit-macros/mpost.m4 + RELOC/doc/latex/circuit-macros/pdf.m4 RELOC/doc/latex/circuit-macros/pgf.m4 RELOC/doc/latex/circuit-macros/postscript.m4 RELOC/doc/latex/circuit-macros/psfrag.m4 @@ -56339,17 +59118,17 @@ docfiles size=1246 runfiles size=1 RELOC/tex/latex/circuit-macros/boxdims.sty catalogue-also circ circuitikz +catalogue-contact-bugs https://gitlab.com/aplevich/circuit_macros/issues catalogue-contact-home https://ece.uwaterloo.ca/~aplevich/Circuit_macros/ catalogue-contact-repository https://gitlab.com/aplevich/circuit_macros -catalogue-contact-support https://gitlab.com/aplevich/circuit_macros/issues catalogue-ctan /graphics/circuit_macros catalogue-license lppl1.3c catalogue-topics diagram-circ electronic -catalogue-version 9.5 +catalogue-version 10.2 name circuitikz category Package -revision 59054 +revision 65785 shortdesc Draw electrical networks with TikZ relocated 1 longdesc The package provides a set of macros for naturally typesetting @@ -56358,11 +59137,11 @@ longdesc networks. It is designed as a tool that is easy to use, with a longdesc lean syntax, native to LaTeX, and directly supporting PDF longdesc output format. It has therefore been based on the very longdesc impressive PGF/TikZ package. -containersize 148584 -containerchecksum 2dbf94e9ae28b6b7bf7d7bb1b3eb924ea024401df38a49a5c9d84a0f43a248e368d30bd8e44d21e3823b27dff8956c5dcede6a2434f15dda5cc29c58f272b612 -doccontainersize 1484336 -doccontainerchecksum 64067a4f3ccabb7bc82140b7e7ac3a4068540fcc703d5f7e5b3c93de9337f9192597f27aa601c0195c02fe0dfbbb740264b21c4c119c0bfc874c8d406fa3336b -docfiles size=469 +containersize 172548 +containerchecksum c7fb0d07045efd8165ff3e15f1d92dccab8ffb91cf383a9617252386bd2fe49bf570ad74100c81115ac609403546865561f61a64761e728354179da0a19adf26 +doccontainersize 1783668 +doccontainerchecksum d1c09c6166c3d0a03da892e45613bc15a8176fb7646f0a893a60cfb84bd00a8c9475c4be98067cd1c3b4ce855621053963607ed963eb20300588d4c2657c6416 +docfiles size=568 RELOC/doc/context/third/circuitikz/circuitikz-context.pdf RELOC/doc/context/third/circuitikz/circuitikz-context.tex RELOC/doc/generic/circuitikz/CHANGELOG.md @@ -56372,13 +59151,14 @@ docfiles size=469 RELOC/doc/latex/circuitikz/circuitikzmanual.tex RELOC/doc/latex/circuitikz/compatibility.tex RELOC/doc/latex/circuitikz/ctikzmanutils.sty -runfiles size=2830 +runfiles size=3384 RELOC/tex/context/third/circuitikz/t-circuitikz-0.8.3.tex RELOC/tex/context/third/circuitikz/t-circuitikz-0.9.3.tex RELOC/tex/context/third/circuitikz/t-circuitikz-0.9.6.tex RELOC/tex/context/third/circuitikz/t-circuitikz-1.0.tex RELOC/tex/context/third/circuitikz/t-circuitikz-1.1.2.tex RELOC/tex/context/third/circuitikz/t-circuitikz-1.2.7.tex + RELOC/tex/context/third/circuitikz/t-circuitikz-1.4.6.tex RELOC/tex/context/third/circuitikz/t-circuitikz.tex RELOC/tex/generic/circuitikz/ctikzstyle-example.tex RELOC/tex/generic/circuitikz/ctikzstyle-legacy.tex @@ -56396,22 +59176,309 @@ runfiles size=2830 RELOC/tex/generic/circuitikz/pgfcirctripoles.tex RELOC/tex/generic/circuitikz/pgfcircutils.tex RELOC/tex/generic/circuitikz/pgfcircvoltage.tex + RELOC/tex/latex/circuitikz/circuitikz-0.4-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.4.sty + RELOC/tex/latex/circuitikz/circuitikz-0.6-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.6.sty + RELOC/tex/latex/circuitikz/circuitikz-0.7-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.7.sty + RELOC/tex/latex/circuitikz/circuitikz-0.8.3-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.8.3.sty + RELOC/tex/latex/circuitikz/circuitikz-0.9.3-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.9.3.sty + RELOC/tex/latex/circuitikz/circuitikz-0.9.6-body.tex RELOC/tex/latex/circuitikz/circuitikz-0.9.6.sty + RELOC/tex/latex/circuitikz/circuitikz-1.0-body.tex RELOC/tex/latex/circuitikz/circuitikz-1.0.sty + RELOC/tex/latex/circuitikz/circuitikz-1.1.2-body.tex RELOC/tex/latex/circuitikz/circuitikz-1.1.2.sty + RELOC/tex/latex/circuitikz/circuitikz-1.2.7-body.tex RELOC/tex/latex/circuitikz/circuitikz-1.2.7.sty + RELOC/tex/latex/circuitikz/circuitikz-1.4.6-body.tex + RELOC/tex/latex/circuitikz/circuitikz-1.4.6.sty RELOC/tex/latex/circuitikz/circuitikz.sty catalogue-contact-bugs https://github.com/circuitikz/circuitikz/issues catalogue-contact-repository https://github.com/circuitikz/circuitikz catalogue-ctan /graphics/pgf/contrib/circuitikz catalogue-license lppl gpl catalogue-topics graphics diagram-circ pgf-tikz electronic -catalogue-version 1.3.5 +catalogue-version 1.6.1 + +name citation-style-language +category Package +revision 65878 +shortdesc Bibliography formatting with Citation Style Language +longdesc The Citation Style Language (CSL) is an XML-based language that +longdesc defines the formats of citations and bibliography. There are +longdesc currently thousands of styles in CSL including the most widely +longdesc used APA, Chicago, Vancouver, etc. The citation-style-language +longdesc package is aimed to provide another reference formatting method +longdesc for LaTeX that utilizes the CSL styles. It contains a citation +longdesc processor implemented in pure Lua (citeproc-lua) which reads +longdesc bibliographic metadata and performs sorting and formatting on +longdesc both citations and bibliography according to the selected CSL +longdesc style. A LaTeX package (citation-style-language.sty) is +longdesc provided to communicate with the processor. +depend citation-style-language.ARCH +depend filehook +depend l3kernel +depend l3packages +depend lua-uca +depend lualibs +depend luatex +depend luaxml +depend url +containersize 136216 +containerchecksum 2d792b1e0f7bae17daa6cf17e4aa9135f1e7b67eefb4f253a18c150e022854fd62794b12b3592ac457f467093be88c74cb2dc8c74f9a1b308a369d53ced68a69 +doccontainersize 246180 +doccontainerchecksum 1adc512a538ca6c9869c373e55d2851d90ad7a52dc804c6e15810d6789518ee45d097394c40338bd8f5285b9ac1d2b19c3d92da75752629ea7d9a3f366057941 +docfiles size=68 + texmf-dist/doc/latex/citation-style-language/CHANGELOG.md + texmf-dist/doc/latex/citation-style-language/DEPENDS.txt + texmf-dist/doc/latex/citation-style-language/README.md details="Readme" + texmf-dist/doc/latex/citation-style-language/citation-style-language-doc.pdf details="Package documentation" + texmf-dist/doc/latex/citation-style-language/citation-style-language-doc.tex + texmf-dist/doc/man/man1/citeproc-lua.1 + texmf-dist/doc/man/man1/citeproc-lua.man1.pdf +runfiles size=523 + texmf-dist/scripts/citation-style-language/citeproc-bibtex-data.lua + texmf-dist/scripts/citation-style-language/citeproc-bibtex.lua + texmf-dist/scripts/citation-style-language/citeproc-cli.lua + texmf-dist/scripts/citation-style-language/citeproc-context.lua + texmf-dist/scripts/citation-style-language/citeproc-element.lua + texmf-dist/scripts/citation-style-language/citeproc-engine.lua + texmf-dist/scripts/citation-style-language/citeproc-ir-node.lua + texmf-dist/scripts/citation-style-language/citeproc-latex-core.lua + texmf-dist/scripts/citation-style-language/citeproc-latex-parser.lua + texmf-dist/scripts/citation-style-language/citeproc-latex.lua + texmf-dist/scripts/citation-style-language/citeproc-lua.lua + texmf-dist/scripts/citation-style-language/citeproc-node-bibliography.lua + texmf-dist/scripts/citation-style-language/citeproc-node-choose.lua + texmf-dist/scripts/citation-style-language/citeproc-node-citation.lua + texmf-dist/scripts/citation-style-language/citeproc-node-date.lua + texmf-dist/scripts/citation-style-language/citeproc-node-group.lua + texmf-dist/scripts/citation-style-language/citeproc-node-label.lua + texmf-dist/scripts/citation-style-language/citeproc-node-layout.lua + texmf-dist/scripts/citation-style-language/citeproc-node-locale.lua + texmf-dist/scripts/citation-style-language/citeproc-node-names.lua + texmf-dist/scripts/citation-style-language/citeproc-node-number.lua + texmf-dist/scripts/citation-style-language/citeproc-node-sort.lua + texmf-dist/scripts/citation-style-language/citeproc-node-style.lua + texmf-dist/scripts/citation-style-language/citeproc-node-text.lua + texmf-dist/scripts/citation-style-language/citeproc-nodes.lua + texmf-dist/scripts/citation-style-language/citeproc-output.lua + texmf-dist/scripts/citation-style-language/citeproc-util.lua + texmf-dist/scripts/citation-style-language/citeproc.lua + texmf-dist/tex/latex/citation-style-language/citation-style-language.sty + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-af-ZA.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ar.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-bg-BG.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ca-AD.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-cs-CZ.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-cy-GB.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-da-DK.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-de-AT.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-de-CH.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-de-DE.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-el-GR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-GB.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-en-US.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-es-CL.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-es-ES.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-es-MX.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-et-EE.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-eu.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fa-IR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fi-FI.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-CA.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-fr-FR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-he-IL.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-hi-IN.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-hr-HR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-hu-HU.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-id-ID.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-is-IS.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-it-IT.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ja-JP.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-km-KH.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ko-KR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-la.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-lt-LT.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-lv-LV.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-mn-MN.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-nb-NO.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-nl-NL.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-nn-NO.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-pl-PL.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-pt-BR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-pt-PT.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ro-RO.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-ru-RU.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-sk-SK.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-sl-SI.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-sr-RS.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-sv-SE.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-th-TH.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-tr-TR.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-uk-UA.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-vi-VN.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-zh-CN.xml + texmf-dist/tex/latex/citation-style-language/locales/csl-locales-zh-TW.xml + texmf-dist/tex/latex/citation-style-language/styles/american-chemical-society.csl + texmf-dist/tex/latex/citation-style-language/styles/american-medical-association.csl + texmf-dist/tex/latex/citation-style-language/styles/american-political-science-association.csl + texmf-dist/tex/latex/citation-style-language/styles/american-sociological-association.csl + texmf-dist/tex/latex/citation-style-language/styles/apa.csl + texmf-dist/tex/latex/citation-style-language/styles/chicago-author-date.csl + texmf-dist/tex/latex/citation-style-language/styles/chicago-fullnote-bibliography.csl + texmf-dist/tex/latex/citation-style-language/styles/chicago-note-bibliography.csl + texmf-dist/tex/latex/citation-style-language/styles/elsevier-harvard.csl + texmf-dist/tex/latex/citation-style-language/styles/harvard-cite-them-right.csl + texmf-dist/tex/latex/citation-style-language/styles/ieee.csl + texmf-dist/tex/latex/citation-style-language/styles/modern-humanities-research-association.csl + texmf-dist/tex/latex/citation-style-language/styles/modern-language-association.csl + texmf-dist/tex/latex/citation-style-language/styles/nature.csl + texmf-dist/tex/latex/citation-style-language/styles/vancouver.csl +catalogue-contact-repository https://github.com/zepinglee/citeproc-lua +catalogue-ctan /biblio/citation-style-language +catalogue-license mit cc-by-sa-3 +catalogue-topics biblio use-lua +catalogue-version 0.3.0 + +name citation-style-language.aarch64-linux +category Package +revision 64151 +shortdesc aarch64-linux files of citation-style-language +containersize 364 +containerchecksum 25ff18d17982791f13cd3e715fb5c544e04a6d45f791faede2d1ff618fbc07f1ed9556ab7f62503ae01e5083c67aba39fc558ffaf74260d858c317cc8277ef0d +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/citeproc-lua + +name citation-style-language.amd64-freebsd +category Package +revision 64151 +shortdesc amd64-freebsd files of citation-style-language +containersize 364 +containerchecksum d25eaf8f4c8a3cf9c867606e48fa1a68673e79ae780304b8e1bc3dbca8ae4a3bdb6d53a40cf80ec37cbf5f9a6772eec06b193b23cc6b07594138771c4fcfd220 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/citeproc-lua + +name citation-style-language.amd64-netbsd +category Package +revision 64151 +shortdesc amd64-netbsd files of citation-style-language +containersize 364 +containerchecksum 166a1c97f07bdb0a1fd353d2d3684226836c865fab7f391d4847fd49d481aed17907b6592b2744072215a451729992a38d08ab909a25564cc792f32319bb16e6 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/citeproc-lua + +name citation-style-language.armhf-linux +category Package +revision 64151 +shortdesc armhf-linux files of citation-style-language +containersize 364 +containerchecksum 97e4df46d1dba967a90b85669b0eba44e0c1d1d30add0a694ccef60162638bd57407f95d3beca8915495e488065c88334674d326bb85834e61af78a974c5e1b1 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/citeproc-lua + +name citation-style-language.i386-freebsd +category Package +revision 64151 +shortdesc i386-freebsd files of citation-style-language +containersize 360 +containerchecksum ea65d797f0539a2a4aea0160d96e41947f98055ed0212a90cf62f6518e647910d6df905b6f4ed0bd9064f3f5e17a87b3655ab95a5f76aa2b1531a484b25727d9 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/citeproc-lua + +name citation-style-language.i386-linux +category Package +revision 64151 +shortdesc i386-linux files of citation-style-language +containersize 364 +containerchecksum 34832f2cc5805f39d3cb46904b77cbf7816ce8a9f5c281f23aae6587eb3725ddd767cf5ba6af122301250425a4295f15bfd90d8f6664952485151f76e70e85ec +binfiles arch=i386-linux size=1 + bin/i386-linux/citeproc-lua + +name citation-style-language.i386-netbsd +category Package +revision 64151 +shortdesc i386-netbsd files of citation-style-language +containersize 360 +containerchecksum 88b556721aa8bd94903994bf444b67a98bf17845cb2f904bfde7640d8e90a71dd73a6a53bfa8187a0c0dc239c0d48ae9bbfd488da08ce11d81fae3413b8ec45b +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/citeproc-lua + +name citation-style-language.i386-solaris +category Package +revision 64151 +shortdesc i386-solaris files of citation-style-language +containersize 360 +containerchecksum a35d8c3d908dbeeb8a21dd8b858903ef31281e7a5feb967a51d19968785eb3c58f1decd3f835971719ba5812783cc1368764557928a113e4202facf6bf126f05 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/citeproc-lua + +name citation-style-language.universal-darwin +category Package +revision 64151 +shortdesc universal-darwin files of citation-style-language +containersize 364 +containerchecksum a323d16fe5b52cc2b7445ae49e4113c04cc43c0e7749343dad4a5e3bde179a3b702ca11482e99d2b7911943f46ce5a8524bc50f4c78baccd8bdba1b7ca42f14b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/citeproc-lua + +name citation-style-language.windows +category Package +revision 65891 +shortdesc windows files of citation-style-language +containersize 2328 +containerchecksum 778ce2110c9931c8b5ce8fd76c0e5d5f929904de2d19786aa9fd227bcbf8826615fc190a7f4ed66c67924c7d58e97db9dfd97fabd98464fcedc1255d18d56ff2 +binfiles arch=windows size=2 + bin/windows/citeproc-lua.exe + +name citation-style-language.x86_64-cygwin +category Package +revision 64151 +shortdesc x86_64-cygwin files of citation-style-language +containersize 364 +containerchecksum d0b1098ddc77c44e9e4a6cb05a9c6fd85366bd8d2cf695f376ea54944c639eeb66da941cdd66e9c6b1f36af347cb7be29f35ed5d6ac3e1ec127293608c337c5e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/citeproc-lua + +name citation-style-language.x86_64-darwinlegacy +category Package +revision 64151 +shortdesc x86_64-darwinlegacy files of citation-style-language +containersize 372 +containerchecksum e29da9cbb3dd605f743e913981acb30aaf41053e521f27551a23cc250bbae856a32eb22549098dbda14ed164917c814964f846952cfefa266e2b56aa1a33fa9a +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/citeproc-lua + +name citation-style-language.x86_64-linux +category Package +revision 64151 +shortdesc x86_64-linux files of citation-style-language +containersize 364 +containerchecksum 7b18a25e7ccb850ecc3e944f8a1b3a182f8f70c6b1f853f4b649c7218aef3093ae6caeb366f58276cd7ae0f10836e19286b095d9caffcd8e7f1f12a5218f1541 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/citeproc-lua + +name citation-style-language.x86_64-linuxmusl +category Package +revision 64151 +shortdesc x86_64-linuxmusl files of citation-style-language +containersize 364 +containerchecksum 7b95991e1d41272de67bea8f3f82bf87afa4f2be8ddef2251b84f0373f90940b21cf29167cb6235637f728af5f2e195f070c312da29a2546c9be629f4affd8e8 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/citeproc-lua + +name citation-style-language.x86_64-solaris +category Package +revision 64151 +shortdesc x86_64-solaris files of citation-style-language +containersize 360 +containerchecksum 8eb7328d89931f04d1273e02113fb94460838551a6e008a973126525d4657985a4444e7ed081689d73d21cdd768beca0a5c3a5af3c7b4822c70031f818e0d725 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/citeproc-lua name cite category Package @@ -56566,7 +59633,7 @@ catalogue-version 0.2a name cjk category Package -revision 36951 +revision 60865 shortdesc CJK language support relocated 1 longdesc CJK is a macro package for LaTeX, providing simultaneous @@ -56583,11 +59650,11 @@ depend garuda-c90 depend norasi-c90 depend uhc depend wadalab -containersize 58340 -containerchecksum c35be1fc1d9f9d44e78effd6e7e539591020d785ae255a1cfa0d7e2508fcdd496d94e4bb0096bc7a281ee93b0b8e461efc6724c82f49d589dbcbdda35143c811 -doccontainersize 1458280 -doccontainerchecksum d598d599d02ca95b1375b8e989649b441980ae6467348270c366a670d79d606b1ca79801febdf5c8c636f2d1c7fa30eb87bd87f90f75b5b4436443ecdab53b73 -docfiles size=611 +containersize 58480 +containerchecksum b13712912e479dab68cab9027042be8cb11047ebf9c034f532c857e83d28f19dfea5a1748685cfe1847c7372f2d0982f79736525694d937c88962c5262094585 +doccontainersize 1477448 +doccontainerchecksum a8c6b2d4d0899b841ccc32b378855d61bdaa65d5f68fd408df3894d386bcde18f384410f34e6f33ee2a5ce770e1e663a05ab038d9b7483012a3cb414739c3705 +docfiles size=621 RELOC/doc/latex/cjk/ChangeLog RELOC/doc/latex/cjk/MANIFEST RELOC/doc/latex/cjk/Makefile @@ -56691,6 +59758,7 @@ docfiles size=611 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/examples/thai_utf8.tex RELOC/doc/latex/cjk/texlive/bin-cjkutils.pl RELOC/doc/latex/cjk/texlive/c90.pl RELOC/doc/latex/cjk/texlive/cjk-build.pl @@ -56699,9 +59767,10 @@ docfiles size=611 RELOC/doc/latex/cjk/texlive/garuda-c90.pl RELOC/doc/latex/cjk/texlive/norasi-c90.pl RELOC/doc/latex/cjk/utils/pyhyphen/pytest.tex -srccontainersize 70368 -srccontainerchecksum bebcc4f77716c92fdff317d926b0ab47ff32efc8b235f721d7d3d1808dff5672127b4c80bb729aa1023f25949cee2c4d508adb40574a3d606f3d5840642eb604 -srcfiles size=115 + RELOC/doc/latex/cjk/utils/pyhyphen/pytestutf8.tex +srccontainersize 73056 +srccontainerchecksum 88be587328daedfed3bdcb289b1a03343bd7257ae180a9e0857a6b00f173f601eccd8e5978dd29c2d95fbab180fcfd5135a682c5218325fc6b664f2cd505213c +srcfiles size=120 RELOC/source/latex/cjk/contrib/wadalab/fixwada RELOC/source/latex/cjk/contrib/wadalab/fixwada2.pl RELOC/source/latex/cjk/contrib/wadalab/makefont @@ -56742,9 +59811,13 @@ srcfiles size=115 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/GNUmakefile + RELOC/source/latex/cjk/utils/pyhyphen/hyph-zh-latn-pinyin.in + RELOC/source/latex/cjk/utils/pyhyphen/hyph-zh-latn-pinyin.tex + RELOC/source/latex/cjk/utils/pyhyphen/hyph-zh-latn-tonepinyin.tex + RELOC/source/latex/cjk/utils/pyhyphen/make-patterns.sh 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 @@ -56753,7 +59826,7 @@ srcfiles size=115 RELOC/source/latex/cjk/utils/subfonts/uni2sfd.pl RELOC/source/latex/cjk/utils/subfonts/vertical.pe RELOC/source/latex/cjk/utils/subfonts/vertref.pe -runfiles size=294 +runfiles size=295 RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fd RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fdx RELOC/tex/latex/cjk/contrib/wadalab/c42maru.fd @@ -56967,31 +60040,31 @@ runfiles size=294 RELOC/tex/latex/cjk/utils/pyhyphen/pinyin.ldf catalogue-also cjk-fonts catalogue-ctan /language/chinese/CJK -catalogue-license gpl +catalogue-license gpl2 catalogue-topics font-use font-cjk chinese japanese korean thai -catalogue-version 4.8.4 +catalogue-version 4.8.5 name cjk-gs-integrate category Package -revision 57081 +revision 59705 shortdesc Tools to integrate CJK fonts into Ghostscript longdesc This script searches a list of directories for CJK fonts, and longdesc makes them available to an installed Ghostscript. In the longdesc simplest case, with sufficient privileges, a run without longdesc arguments should result in a complete setup of Ghostscript. depend cjk-gs-integrate.ARCH -containersize 36348 -containerchecksum f2b8db61f861942df199cdb6e51ca7458f22d385396382bfda6291d2f2abe5555b6b35102629c4c0d478dc01b873ae917acf10b150bae7972a6fbb03ffd03f41 -doccontainersize 13232 -doccontainerchecksum 80f8054e0841bc5605faf0abd3b17ddd16919d0228d520af00c4117f884e1105e6b818d6ec92f312b38246f591f0e6743a76ff02ac05a9e93624e8f4bfaa31f4 -docfiles size=14 +containersize 36912 +containerchecksum 376a1b287955a801cb223c761fc9bee8af0f587f27f8c3e6cb32ef009fa575fdaf54f5e3847d7b4ca414e3eb4d58d3611ee2194736dcfafe8afb2dd6230c1999 +doccontainersize 13400 +doccontainerchecksum c1165f2ecd08b279cd0d0b028682eecbb3953659426a1885bbe5aab9838a90107c576a3b9bf80b0d54dbe3fc438c8af8a8c82f5faf79052c37d2c5e85ea9ae42 +docfiles size=15 texmf-dist/doc/fonts/cjk-gs-integrate/ChangeLog texmf-dist/doc/fonts/cjk-gs-integrate/README.md details="Readme" srccontainersize 560 -srccontainerchecksum 5d26311844626499997323d15806a31e5144b1dc6f6c18fc5dbab10f898382eff33dc316ac8429a3d76f57867720061cb8594d5c80510b7776dbad8970f0c0da +srccontainerchecksum ee53a480230824eb7aa1ff270652eba4f39e5f160fdd091d596b9da610d8c8c211db3aa3d89931ec16edd36b2662d07a93513563efb3bb5a9ffc9dba0d274ee4 srcfiles size=1 texmf-dist/source/fonts/cjk-gs-integrate/Makefile -runfiles size=75 +runfiles size=76 texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-adobe.dat texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-apple.dat texmf-dist/fonts/misc/cjk-gs-integrate/cjkgs-arphic.dat @@ -57035,7 +60108,7 @@ catalogue-contact-repository https://github.com/texjporg/cjk-gs-support catalogue-ctan /fonts/utilities/cjk-gs-integrate catalogue-license gpl3 catalogue-topics font-util -catalogue-version 20201206.0 +catalogue-version 20210625.0 name cjk-gs-integrate.aarch64-linux category Package @@ -57073,15 +60146,6 @@ containerchecksum 5e2df0b6fb516ea2cf7f52047f5e2125c72e224a2c96909637bf57f10d38b0 binfiles arch=armhf-linux size=1 bin/armhf-linux/cjk-gs-integrate -name cjk-gs-integrate.i386-cygwin -category Package -revision 37223 -shortdesc i386-cygwin files of cjk-gs-integrate -containersize 348 -containerchecksum 21dadd7e1e625f307cc661cbdd2643d83dbf12f1dec0d2a80607ad7cd89402d8448939b27a248d02948bbea8ec38b7cb68ea55bc1194eab59329a38031695964 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/cjk-gs-integrate - name cjk-gs-integrate.i386-freebsd category Package revision 37223 @@ -57127,14 +60191,14 @@ containerchecksum 1a240c4232b118dc97bb50b90c277cd78671df428016c2c7a827898a21c630 binfiles arch=universal-darwin size=1 bin/universal-darwin/cjk-gs-integrate -name cjk-gs-integrate.win32 +name cjk-gs-integrate.windows category Package -revision 37223 -shortdesc win32 files of cjk-gs-integrate -containersize 696 -containerchecksum 333c4b1f402af106180dc4a571334234981f1d67d61de6941f398948f03593fe890a73b6d59cd5e759c3b70556217eaf87cc10310d578e6aca69c357b5dc46e1 -binfiles arch=win32 size=1 - bin/win32/cjk-gs-integrate.exe +revision 65891 +shortdesc windows files of cjk-gs-integrate +containersize 2312 +containerchecksum a19626b1ce6f75b92050e88adcdc6056e3183a672074c6333b8e8c8d60c8a1671f4360d601ec6ceccaa2350d1bc76e24bc28e955e017b3fdf1377db6761d9afd +binfiles arch=windows size=2 + bin/windows/cjk-gs-integrate.exe name cjk-gs-integrate.x86_64-cygwin category Package @@ -57183,7 +60247,7 @@ binfiles arch=x86_64-solaris size=1 name cjk-ko category Package -revision 58081 +revision 63561 shortdesc Extension of the CJK package for Korean typesetting relocated 1 longdesc The package supports typesetting UTF-8-encoded modern Korean @@ -57191,10 +60255,11 @@ longdesc documents with the help of the LaTeX2e CJK package. It provides longdesc some enhanced features focused on Korean typesetting culture, longdesc one of them being allowing line-break between Latin and CJK longdesc characters. The package requires nanumtype1 fonts. -containersize 8292 -containerchecksum 5666ea878afe5ffec519ea1bb732f123a8e1dbe539d1b42919f0d0e73efb26f66850c446bfc3be5aa9e34138611da5701adf43b1f474e590dfe20a6784b3dbbf -doccontainersize 160716 -doccontainerchecksum 3985b243f47a964dde86cea55ff35bef042fe4f66171188dff03e7bebfe06369604fbad9dc0acf551778bcfffb7fed77250035f28b1f033b5f64e5577960aa44 +depend cjk +containersize 8652 +containerchecksum be65ef03300b8fccc4012ece68570a86797e36267ea2f531fead77659cf7bf2a315cca1a3e3386f8d1dc09cbb3b44b20dafb3e0e0cbd53bddb1a368c984937b0 +doccontainersize 161584 +doccontainerchecksum 3ffcae00a4a0dcd175fcf864c3c0c578d7926917216b4a785c0a46074ef013eafe9458ba9010d14f081c63ab4ee0941d0597dace373eb178369de9caa210a16b docfiles size=49 RELOC/doc/latex/cjk-ko/ChangeLog RELOC/doc/latex/cjk-ko/README details="Readme" @@ -57209,9 +60274,9 @@ runfiles size=11 RELOC/tex/latex/cjk-ko/kotex.sty catalogue-contact-repository https://github.com/dohyunkim/cjk-ko catalogue-ctan /language/korean/cjk-ko -catalogue-license other-free +catalogue-license gpl lppl pd catalogue-topics korean -catalogue-version 1.9 +catalogue-version 2.3 name cjkpunct category Package @@ -57248,7 +60313,7 @@ catalogue-version 4.8.4 name cjkutils category TLCore -revision 52851 +revision 60833 catalogue cjk shortdesc CJK language support longdesc CJK is a macro package for LaTeX, providing simultaneous @@ -57260,11 +60325,11 @@ longdesc easy-to-use support to a bunch of other scripts in addition to longdesc the above -- Cyrillic, Greek, Latin-based scripts, Russian and longdesc Vietnamese are supported. depend cjkutils.ARCH -containersize 2016 -containerchecksum 84ae942d24c6a5b6dc8a5ae9a7aed0e1da511e68a2730c26d022d935974869c810600321f4ec1b8c5aeb00d17c6eb360d2735b2ac529bee6aaf85bbf4e44ec2b -doccontainersize 98060 -doccontainerchecksum f135a594a95a0d30262a00bbe8279a2d58c6549dba65533b6d1032f99b517b9ff91217ff3ece3768bffdd086e50ce99b56db494aea24dc460c7b077771e97921 -docfiles size=55 +containersize 1996 +containerchecksum 36b0d0ef4bae2a9e5f2238c5c9aa125eabfca509462b65a159f66cbafc690939e16760a86e7e7dcce22ffda2f301c039059cdff1af8ed862017f18552e13e728 +doccontainersize 344216 +doccontainerchecksum 636e6486f9661061d22d248b0b7a8debdb81cd08c56b449067782568fcc7db58922f7c9d40fbc992bdd008908f22a6733af4a8115d85c0572556d01e925c5587 +docfiles size=113 texmf-dist/doc/man/man1/bg5conv.1 texmf-dist/doc/man/man1/bg5conv.man1.pdf texmf-dist/doc/man/man1/cef5conv.1 @@ -57298,16 +60363,16 @@ runfiles size=16 texmf-dist/hbf2gf/ksso17.cfg catalogue-also cjk-fonts catalogue-ctan /language/chinese/CJK -catalogue-license gpl +catalogue-license gpl2 catalogue-topics font-use font-cjk chinese japanese korean thai -catalogue-version 4.8.4 +catalogue-version 4.8.5 name cjkutils.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of cjkutils containersize 47944 -containerchecksum 80cd11650fb38d88c2f5887cb0b97b025c6378e3d3626c42486705549912cc9291cb93a5452a83888fe99c3d41e0f6c4d454e57120cc31ba9fbfd3e509d050b0 +containerchecksum 9e337cb66cce9047fd0f4218e5389cfcc81f0fd3894cc5a113134ac04cbcc880a5fa9d793c1f06732a53a055052ed444170aea277617293b1c5f840329f55aa2 binfiles arch=aarch64-linux size=57 bin/aarch64-linux/bg5+latex bin/aarch64-linux/bg5+pdflatex @@ -57333,11 +60398,11 @@ binfiles arch=aarch64-linux size=57 name cjkutils.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of cjkutils -containersize 50636 -containerchecksum 6173b93cb62773f0a26ea39a6c6d61ad6180dae3ca3b0c09e25e780844d44a7e27d3527caab44f0ee2b130bc037ab6c7409e7c85cce00db596ce1e3463842332 -binfiles arch=amd64-freebsd size=52 +containersize 50704 +containerchecksum 02771b23c70b7cf435058c8414e928f971796d7fb236bbba9eb316980355f14f320a8c672bcaec3ba8928607ed13d176cf0d55da22552ff44bf47b85c5008a2b +binfiles arch=amd64-freebsd size=54 bin/amd64-freebsd/bg5+latex bin/amd64-freebsd/bg5+pdflatex bin/amd64-freebsd/bg5conv @@ -57362,10 +60427,10 @@ binfiles arch=amd64-freebsd size=52 name cjkutils.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of cjkutils -containersize 44772 -containerchecksum faac86a8deb7fd3a1a9323272b847a2b2e633780529fbc8feb371482d013f79bc80c4ac9133b9cc4007d05c6dc41b0e5427c28439d00477496e253338c4601c1 +containersize 44760 +containerchecksum c488ab43fc438b022dc05c521daecb8bc04aa6faa3ce9fb066d8c1e87c2831145b676e9d1339b3924ce0556e5414318b34449b5495b4515b3de9504263df7fd1 binfiles arch=amd64-netbsd size=60 bin/amd64-netbsd/bg5+latex bin/amd64-netbsd/bg5+pdflatex @@ -57391,10 +60456,10 @@ binfiles arch=amd64-netbsd size=60 name cjkutils.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of cjkutils -containersize 40212 -containerchecksum a76d6aaa4f26b2f4c3d0c1eb1581d21b9567eab79fd68eae7b9228ea38c2a279f6f4401c543ab7ad07afeb4beb40e28e055c5e600f3c426bbd6801796c7c0c35 +containersize 40224 +containerchecksum 141b7133496bc26c14f9fd0913f8952ea2ef8f330349acb17d07e00e2157fe1f791cfd684d51a9f386f479a8f78d5d118a73004422a87e9dc4dcb2150ea759ff binfiles arch=armhf-linux size=48 bin/armhf-linux/bg5+latex bin/armhf-linux/bg5+pdflatex @@ -57418,41 +60483,12 @@ binfiles arch=armhf-linux size=48 bin/armhf-linux/sjislatex bin/armhf-linux/sjispdflatex -name cjkutils.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of cjkutils -containersize 19264 -containerchecksum 32f20159f9ed386e76dab4cfe19f4c9a029f9d87d496de45df344843e26e0a163c6ad4c7eb6647d506c658f94f7198798a2933cd9312155fd277710b9cbeb1b7 -binfiles arch=i386-cygwin size=42 - bin/i386-cygwin/bg5+latex - bin/i386-cygwin/bg5+pdflatex - bin/i386-cygwin/bg5conv.exe - bin/i386-cygwin/bg5latex - bin/i386-cygwin/bg5pdflatex - bin/i386-cygwin/cef5conv.exe - bin/i386-cygwin/cef5latex - bin/i386-cygwin/cef5pdflatex - bin/i386-cygwin/cefconv.exe - bin/i386-cygwin/ceflatex - bin/i386-cygwin/cefpdflatex - bin/i386-cygwin/cefsconv.exe - bin/i386-cygwin/cefslatex - bin/i386-cygwin/cefspdflatex - bin/i386-cygwin/extconv.exe - bin/i386-cygwin/gbklatex - bin/i386-cygwin/gbkpdflatex - bin/i386-cygwin/hbf2gf.exe - bin/i386-cygwin/sjisconv.exe - bin/i386-cygwin/sjislatex - bin/i386-cygwin/sjispdflatex - name cjkutils.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of cjkutils -containersize 45336 -containerchecksum 86d4cf566d41489bc14c949fe6304f35853d60426cfe2302598e7a77c7791d6eae0763b6bcc674cbbacdb7057f9a17b9406e47687e72929af1ec7a51891de5ca +containersize 46084 +containerchecksum 58ea62c67596d004a8c36f5ae81908f5808ae35362a9371057bd4a0c76042132bed705f9b9301f0d46340189abf3ea7050707b94d13c616f3df3b18dc85d2261 binfiles arch=i386-freebsd size=50 bin/i386-freebsd/bg5+latex bin/i386-freebsd/bg5+pdflatex @@ -57478,11 +60514,11 @@ binfiles arch=i386-freebsd size=50 name cjkutils.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of cjkutils -containersize 51376 -containerchecksum d685117af0ca0b9e733db5c109bdf9e39dc049f6e9bfb6d0e8f5d4c5d5a196afee83ce999b7bbdc3edc26b20938739c9964901916907fe6bff69ffaa49502c2d -binfiles arch=i386-linux size=52 +containersize 51780 +containerchecksum 1a63d00cb420d9774ffee8a20eca9d2201076dec86daa6b2f89806973f52a803d806db22a944e83aa8d590d36b321ccaec222cb70cee3130319b9a0e8f3c1643 +binfiles arch=i386-linux size=56 bin/i386-linux/bg5+latex bin/i386-linux/bg5+pdflatex bin/i386-linux/bg5conv @@ -57507,10 +60543,10 @@ binfiles arch=i386-linux size=52 name cjkutils.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of cjkutils -containersize 41368 -containerchecksum 188902895f9ddcf7fdaf6a7ef4c4ef805a23dd4f1d4e84e450e4e5f371f5f5c9065c7762716b1dfdc66aca8ecd4dd636121440638b912cc662e5a25f02064d91 +containersize 41392 +containerchecksum d0275dd5248d891672497aac2ea74ef56676c6c75ccfc2e13a87b83ef22d4214610b216f7a411847b2f99c34c80f8c44a1e9b30f98f0cc597a2c0abe30dbe6b5 binfiles arch=i386-netbsd size=55 bin/i386-netbsd/bg5+latex bin/i386-netbsd/bg5+pdflatex @@ -57536,10 +60572,10 @@ binfiles arch=i386-netbsd size=55 name cjkutils.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of cjkutils -containersize 48096 -containerchecksum 1beef36e5a044af55b5a2fd99b420bb3878c083364c8e3a02dc3d5e273ab2eac01cc1849f0abb76f35e62c15a85a75f70e2d2d4720d3c18e11f8331beee84499 +containersize 48084 +containerchecksum ee5097ff4964b4063c0d7411da9b61b213748570fe64257531b49fcd11429ae01fc4de7718eccfa096ccc41664f5b005cff344b526e0654cd036606d71790dc8 binfiles arch=i386-solaris size=51 bin/i386-solaris/bg5+latex bin/i386-solaris/bg5+pdflatex @@ -57565,11 +60601,11 @@ binfiles arch=i386-solaris size=51 name cjkutils.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of cjkutils -containersize 102196 -containerchecksum df0071df7f48352809b3bbf0c04fbecdccdab270769383188d6421b987836bf43826bbc01f92c798a7493b880b4b4864fd5e621d56617050452cab181b8a1eb1 -binfiles arch=universal-darwin size=236 +containersize 102980 +containerchecksum 2001342bfbe896f6ce3e6366bc6baa455c25131ef60af578a6172cc46ccfe7dea4109ea93958591161bc165a309b09d9f167d394ac814efeb117cbd2f9471670 +binfiles arch=universal-darwin size=264 bin/universal-darwin/bg5+latex bin/universal-darwin/bg5+pdflatex bin/universal-darwin/bg5conv @@ -57592,39 +60628,39 @@ binfiles arch=universal-darwin size=236 bin/universal-darwin/sjislatex bin/universal-darwin/sjispdflatex -name cjkutils.win32 -category TLCore -revision 58783 -shortdesc win32 files of cjkutils -containersize 23216 -containerchecksum 34efc46ad403865192acde18c45b472a598705ef3d385bc9205f9811f72e5ed4f6400fecdd030fa4a5a60c1979090e8d4ab2361c91a66ebe5c84f09c8ac3f6a7 -binfiles arch=win32 size=57 - bin/win32/bg5conv.exe - bin/win32/bg5latex.exe - bin/win32/bg5pdflatex.exe - bin/win32/cef5conv.exe - bin/win32/cef5latex.exe - bin/win32/cef5pdflatex.exe - bin/win32/cefconv.exe - bin/win32/ceflatex.exe - bin/win32/cefpdflatex.exe - bin/win32/cefsconv.exe - bin/win32/cefslatex.exe - bin/win32/cefspdflatex.exe - bin/win32/extconv.exe - bin/win32/gbklatex.exe - bin/win32/gbkpdflatex.exe - bin/win32/hbf2gf.exe - bin/win32/sjisconv.exe - bin/win32/sjislatex.exe - bin/win32/sjispdflatex.exe +name cjkutils.windows +category TLCore +revision 65891 +shortdesc windows files of cjkutils +containersize 24992 +containerchecksum 6e03f7578219d390ad192e4c4ef463f1dcb964c100eb8a72b157eb46c5980e0cfe683bb7f58362ce8cec8b8accfbc3e33a90b564ade34ef0a2087cd1b4aab7ba +binfiles arch=windows size=57 + bin/windows/bg5conv.exe + bin/windows/bg5latex.exe + bin/windows/bg5pdflatex.exe + bin/windows/cef5conv.exe + bin/windows/cef5latex.exe + bin/windows/cef5pdflatex.exe + bin/windows/cefconv.exe + bin/windows/ceflatex.exe + bin/windows/cefpdflatex.exe + bin/windows/cefsconv.exe + bin/windows/cefslatex.exe + bin/windows/cefspdflatex.exe + bin/windows/extconv.exe + bin/windows/gbklatex.exe + bin/windows/gbkpdflatex.exe + bin/windows/hbf2gf.exe + bin/windows/sjisconv.exe + bin/windows/sjislatex.exe + bin/windows/sjispdflatex.exe name cjkutils.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of cjkutils containersize 20144 -containerchecksum e18e5143af05b3cea178e66b06c7d6762a8170cd84167b2e900dc0833da9a993f76334a6389c1080ba8594bbc94135f6d03a79c686e403edc2affdf221e352e1 +containerchecksum 0bb3c331ea72d5d607ef82784b11692a4c359ac61b614302e6b33edf55e4836633b0b1b7f434db15aaedd96c06237439b9919263173c524d9d72cfef2cfde372 binfiles arch=x86_64-cygwin size=42 bin/x86_64-cygwin/bg5+latex bin/x86_64-cygwin/bg5+pdflatex @@ -57650,10 +60686,10 @@ binfiles arch=x86_64-cygwin size=42 name cjkutils.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of cjkutils -containersize 46788 -containerchecksum ada4bd14fc147dc7439cef95ae6d8d6efc35cb76580a9cdfb33bab0bb791e4baa1c5c799cb2427f2775b6ada6bc95e85d7988cc56f2add110efead12b2480e59 +containersize 46708 +containerchecksum 2adce84dc2bde606c4432c4a8f4481e3be449ae622f484ec9838fa93ece0d8102cf522bbde722513ae37e5a38ecc77875199a9aa6ce3e7712dd7d940c3aa7fb9 binfiles arch=x86_64-darwinlegacy size=58 bin/x86_64-darwinlegacy/bg5+latex bin/x86_64-darwinlegacy/bg5+pdflatex @@ -57679,11 +60715,11 @@ binfiles arch=x86_64-darwinlegacy size=58 name cjkutils.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of cjkutils -containersize 49108 -containerchecksum fe006cb497b962f30157e06a4039931cbc3214e74c34eaa7e30c6701237a8e201fb059863f9315021d3da6926e43a0c0aeb545cf54eb77007ff7f7d6b490b46c -binfiles arch=x86_64-linux size=52 +containersize 48984 +containerchecksum 8f67af53d2a12529eb5d47bfde9da0a70f7515b59fd115756ddff8f25b96e304e4940fd01c8fd3254f38bedef7855222042d8444796b9b6a180e5434f4ebeec3 +binfiles arch=x86_64-linux size=64 bin/x86_64-linux/bg5+latex bin/x86_64-linux/bg5+pdflatex bin/x86_64-linux/bg5conv @@ -57708,10 +60744,10 @@ binfiles arch=x86_64-linux size=52 name cjkutils.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of cjkutils -containersize 51008 -containerchecksum 5cb9ef42d1ddeead85f4584b96f4a47c50240ec3b8be84978207e3d1ab0ecbb2e36c603f5baab20047e6dd74262ac8d55adae60d251d62754a84b7abf8933111 +containersize 50476 +containerchecksum c1a2be0a1b447ab1ce74fd0e7d9797faa91b4d888cf3c55b3a9ddec11922c8f615d643573f96838d33072fe0bd9bc9df066f23760175c0289ea4693708fc69db binfiles arch=x86_64-linuxmusl size=56 bin/x86_64-linuxmusl/bg5+latex bin/x86_64-linuxmusl/bg5+pdflatex @@ -57737,10 +60773,10 @@ binfiles arch=x86_64-linuxmusl size=56 name cjkutils.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of cjkutils -containersize 52336 -containerchecksum 6f5f929224272601517dce24c381d1e0448216a6b2613d2ab477395ab0ead63b557deff97a5b45ab1f5d9f024d4d02525c2cd7cf4a32559a7fd5728617728dfa +containersize 52276 +containerchecksum 3c4537b1588df936d3b51689a12f5955fd7fdbb3e8db30af04d673d599f5ea8249ccd8807003f30c340508d25c1425cf714ea560bbceca26af0ecf2847b27473 binfiles arch=x86_64-solaris size=58 bin/x86_64-solaris/bg5+latex bin/x86_64-solaris/bg5+pdflatex @@ -58247,7 +61283,7 @@ catalogue-version 0.4.0 name clearsans category Package -revision 54512 +revision 64400 shortdesc Clear Sans fonts with LaTeX support relocated 1 longdesc Clear Sans was designed by Daniel Ratighan at Monotype under @@ -58262,10 +61298,10 @@ longdesc Sans comfortable for reading short UI labels and long passages longdesc in both screen and print. The fonts are available in both longdesc TrueType and Type 1 formats. execute addMap ClearSans.map -containersize 1322432 -containerchecksum 7a09ef6b27a828823b8bb4d57788805cfd3301196864c9023d5f1ac6ea688da6783535c8449c0e035c02647476de9f2fddd9abdb4180a1512d1ae24ce611baee +containersize 1322408 +containerchecksum 010e18c8a29e46acba07013b8ed1ec535373199cb2c62d895c906b24800e2055ab3aeadc0ef8bf761c1d47925c8741bdfec4d18b5cbcb680b07fc258c1313126 doccontainersize 198492 -doccontainerchecksum ec57c7551e9b751505d2973a50411b20b859190cee10c176eacba66b4e26c551b7b4230cbb5349a841645cb5d2e351e655ab242db59f4e3e5675f3e964977845 +doccontainerchecksum a2be117afd912bab15e5ef69cfd54dd66385699677dc357233efaa73e2bd2cfaa9a29c0cf492f48ecf152a9640c95a4ebdee9366f2c27bcead571b5177345ed1 docfiles size=58 RELOC/doc/fonts/clearsans/LICENSE-2.0.txt RELOC/doc/fonts/clearsans/README details="Readme" @@ -58424,7 +61460,7 @@ catalogue-version 0.1 name cleveref category Package -revision 47525 +revision 61719 shortdesc Intelligent cross-referencing relocated 1 longdesc The package enhances LaTeX's cross-referencing features, @@ -58438,26 +61474,59 @@ longdesc also offers a means of referencing a list of references, each longdesc formatted according to its type. In such lists, it can collapse longdesc sequences of numerically-consecutive labels to a reference longdesc range. -containersize 28484 -containerchecksum 669e122c22c55c1fe95353533a2c35adcd161080ab2e4f3120dab2286b60df316f4de792e9a6fe5b971d622bc2b087061836a3c0aebaf0bc5df17c854f64990b +containersize 28472 +containerchecksum 7e425fd19bd559a2a3f3091f6dd3d6711e6bb4ec01f6a3f8c1dccd60cb6518f3ffe563c1b68e3b379eab7be140f7ff5f3c68dabf3dc85d196aa2d41f81a67acd doccontainersize 386944 -doccontainerchecksum 3885fe13cd51967620f1e48a25a82c2a4916b07ee45c963dfe9ea933a920f347512cf5c30f29ccef9c49c3862df4c9176fe0fa57b1043d3ac230b7cd8b3f8d78 +doccontainerchecksum 87760a9503b5ead92a1a8f26f9c0195487b5e7a1f97cb11519791f247cf87d35f044f68738d3563ac4a84d7f283d3907eaa816f2d4f8dc4f9cdc5114df639d99 docfiles size=110 RELOC/doc/latex/cleveref/README details="Readme" RELOC/doc/latex/cleveref/cleveref.pdf details="Package documentation" srccontainersize 77476 -srccontainerchecksum 71a49c96a943dc152cc1621e9e0ce1d0fe62762fa51f670ecd4a0e5a3613ccc52d41db355cfb0c31fc81867bdc07c26acd3e9ad74e0209459a099be823df2308 +srccontainerchecksum aae3fc03f3ccefc9c58b1372a337afc9f0fc201d3db9938a01a1832711ce10e0f0b13e72da021c328f6bb1099dfafc8378663016ca6969ecef10dd5bf3683937 srcfiles size=140 RELOC/source/latex/cleveref/cleveref.dtx RELOC/source/latex/cleveref/cleveref.ins runfiles size=81 RELOC/tex/latex/cleveref/cleveref.sty +catalogue-also crefthe catalogue-contact-home http://www.dr-qubit.org/cleveref.html catalogue-ctan /macros/latex/contrib/cleveref catalogue-license lppl1.2 catalogue-topics label-ref catalogue-version 0.21.4 +name clicks +category Package +revision 64602 +shortdesc Slide Deck Animation +relocated 1 +longdesc With the help of this package you can simulate animation in +longdesc your slide deck, making it look similar to what PowerPoint can +longdesc do. +depend etoolbox +depend xkeyval +containersize 1592 +containerchecksum 7218b2bf0f28a0ed382e4884aa30b59c2d8bff76a3d7a09461e5e3ebf1f41648889005db3c79fe203a4d3753a65f76a48058582e25f57e61d972e8256657712e +doccontainersize 244252 +doccontainerchecksum fc84edae6c263a889ea5b1d7a99b5fdf2c22bbb45c9c104e63d821a80b498d1932e654034f289a7470a15cb2ea6082eb8d8fedce24b21b9ccbd5e4304043d6b3 +docfiles size=63 + RELOC/doc/latex/clicks/DEPENDS.txt + RELOC/doc/latex/clicks/LICENSE.txt + RELOC/doc/latex/clicks/README.md details="Readme" + RELOC/doc/latex/clicks/clicks.pdf details="Package documentation" +srccontainersize 3212 +srccontainerchecksum ff19c270587c08c28db6cad54e2a58ce23f6041b08b6d611b7ffe6fe2b6506c1a7ae33ded3fe3ec59cee3fcfc276e6a1dc3750291b4f7691255066805ca90158 +srcfiles size=3 + RELOC/source/latex/clicks/clicks.dtx + RELOC/source/latex/clicks/clicks.ins +runfiles size=1 + RELOC/tex/latex/clicks/clicks.sty +catalogue-contact-repository https://github.com/yegor256/clicks +catalogue-ctan /macros/latex/contrib/clicks +catalogue-license mit +catalogue-topics emulation layout presentation +catalogue-version 0.4.1 + name clipboard category Package revision 47747 @@ -58481,6 +61550,34 @@ catalogue-license lppl1.3 catalogue-topics quotation-imp catalogue-version 0.3 +name clistmap +category Package +revision 61811 +shortdesc Map and iterate over LaTeX3 clists +relocated 1 +longdesc This package provides a key-based interface for defining +longdesc templates whose job is to partition LaTeX3 clists and map +longdesc differentiatedly across its components. +containersize 6056 +containerchecksum 71da5b4136bd73945ec0e1d9fe429892960a9167b39febc0d53b7a628357db59240929ed6d8c31096c170cd0b2f5c60452f364d8903be40a6a4bf0b590069520 +doccontainersize 667032 +doccontainerchecksum 8c0ca62ecf95989e1e4f90b6c606e421bd5f536ca9d7e3745384537b33b5745b221c6485e0fc5d5a52ddfa720e34f6260eb8bec0557d7e4171406ad4985b789f +docfiles size=170 + RELOC/doc/latex/clistmap/README.md details="Readme" + RELOC/doc/latex/clistmap/clistmap.pdf details="Package documentation" +srccontainersize 10656 +srccontainerchecksum b93a6e3bda06ce394c006964046d683576474d1ccc6b8cdde069c188cf8d146be43420c5d55a9d22bca554e87ea9309faaa73b5d0b8bb1b56981414b4b99e46a +srcfiles size=14 + RELOC/source/latex/clistmap/clistmap.dtx + RELOC/source/latex/clistmap/clistmap.ins +runfiles size=9 + RELOC/tex/latex/clistmap/clistmap.sty +catalogue-contact-repository https://github.com/rogard/clistmap +catalogue-ctan /macros/latex/contrib/clistmap +catalogue-license lppl1.3c +catalogue-topics expl3 macro-supp +catalogue-version 1.2 + name clock category Package revision 15878 @@ -58515,7 +61612,7 @@ catalogue-topics date-time name clojure-pamphlet category Package -revision 52082 +revision 60981 shortdesc A simple literate programming tool based on clojure's pamphlet system longdesc The Clojure pamphlet system is a system based on the Clojure longdesc literate system. In the Clojure's pamphlet system you have your @@ -58528,16 +61625,17 @@ longdesc each other by the getchunk command (which will be typesetted longdesc acordingly). Finally, the LaTeX file will be run through the longdesc tangler to get the desired chunk of code. depend clojure-pamphlet.ARCH -containersize 3660 -containerchecksum a420e5548af550ef91103a82c5bf8e43345abfce69bb438d488ed9a3a62db1e6763ea1c17b246ef307cc62d28b5c575b5da07d5857241e21ce7d789e9a2a055d -doccontainersize 193228 -doccontainerchecksum 23f6cd97dc5d521689555ec95a695db0f9cae8873d28e2bac2969f07e9e8d2f7ca9a6c8105ca127da202d811717b3c1f4219fe15f9af01036800a083f065cd09 -docfiles size=50 +containersize 3644 +containerchecksum 67047118c74e1d19426d99bd3a716d6076d977156f1e686bbd991d6b1cba464897f662e950c86218910b485300d40a5cb80d8d43868fb7920cc99a6d7f1c5735 +doccontainersize 213692 +doccontainerchecksum 02ab33398a87a47c76fd34df9eccde47b60b028b3a659294968b35beaead85908d958ccd94b8f706f6f2173c9af3d7f7382c510134dabde4bfab9be20f85998d +docfiles size=57 + texmf-dist/doc/man/man1/pamphletangler.1 + texmf-dist/doc/man/man1/pamphletangler.man1.pdf texmf-dist/doc/support/clojure-pamphlet/README details="Readme" texmf-dist/doc/support/clojure-pamphlet/clojure-pamphlet_guide.pdf details="Package documentation" - texmf-dist/doc/support/clojure-pamphlet/pamphletangler.1 -srccontainersize 4976 -srccontainerchecksum 32f90dabd0e73206930f589a97e8630c25ce2f95f1657d08ce71cd36241bafd6c2a79c483805f7574ccab29deb478d1ef8837fdf2e922592e6d8f18f43121a14 +srccontainersize 4980 +srccontainerchecksum 5848f7ace83c5bbf5017f7a760fdc464e848511717f5fcca5e17f95421429a5608c590fcbc1e7a0d49bb5996def552f16515edfbfa5a2673fef962529141e5a2 srcfiles size=4 texmf-dist/source/support/clojure-pamphlet/clojure-pamphlet.dtx texmf-dist/source/support/clojure-pamphlet/clojure-pamphlet.ins @@ -58590,15 +61688,6 @@ containerchecksum dac2ef774f01fca4f6a563a3129304c25f9fe8642552bdd4c326b0ff684b99 binfiles arch=armhf-linux size=1 bin/armhf-linux/pamphletangler -name clojure-pamphlet.i386-cygwin -category Package -revision 51944 -shortdesc i386-cygwin files of clojure-pamphlet -containersize 348 -containerchecksum e2c733c744c9810d5b69e5e7cc85a6cc68b39653f13466502cbd7069c079a911f020c00de8e64fb10e65cf598f6d2a82ebf34b9270349759399ae068aefac4b3 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pamphletangler - name clojure-pamphlet.i386-freebsd category Package revision 51944 @@ -58644,14 +61733,14 @@ containerchecksum 9a9472c0af588648dd178281030c62beb177e01ee57a59ec9603d29a5c1ff4 binfiles arch=universal-darwin size=1 bin/universal-darwin/pamphletangler -name clojure-pamphlet.win32 +name clojure-pamphlet.windows category Package -revision 51944 -shortdesc win32 files of clojure-pamphlet -containersize 692 -containerchecksum 89d4966a4bc2da2ef84c4cde99ff9c232e76c90921baee90e5b2614d847ea0c2d20cae1c40299c84d04851caf2d7ab1cbcbcca24cf945a76a49c75a5a4537988 -binfiles arch=win32 size=1 - bin/win32/pamphletangler.exe +revision 65891 +shortdesc windows files of clojure-pamphlet +containersize 2320 +containerchecksum 651615c2df004183dcf3e03836029eb571af1e0d42f196d7e0e339febb986415202a69b21a7fead48225436ec5dcd8964e9eabe5fb6ae14db0125c77e40039b5 +binfiles arch=windows size=2 + bin/windows/pamphletangler.exe name clojure-pamphlet.x86_64-cygwin category Package @@ -58823,20 +61912,20 @@ catalogue-topics pseudocode name clrstrip category Package -revision 53537 +revision 60363 shortdesc Place contents into a full width colour strip relocated 1 longdesc This lightweight package provides the colorstrip environment, longdesc that places its contents into a full page width colour strip. -containersize 1620 -containerchecksum 34893bc3758fa010c34523284d73e18d347cc51a46236599c5e6df7bde4ea196da4ae8731b316c13cb9d225d353f1b3ee9bf0357ba9f30e400a9f16783a6bbe5 -doccontainersize 194300 -doccontainerchecksum 8a18217808e2dbe8e6f96fff8c93458c14fa8bc97e6a8d460eb75c051b982bb2f423d46ea5c4b77bb45942896b126b8782bbbe1ab1a0f5fdc4831a5b8435d59d -docfiles size=49 +containersize 1624 +containerchecksum 5a26232ede7efdd9ebb4ca89adaa2f0c507cb4eb883fc59662abca448a9bd09894cf52e850a0f57af101fd22ebf239ef82d4fb4a761b11448b846a82858fee96 +doccontainersize 196756 +doccontainerchecksum 9d52efc5bec01766d81240bc4087d76b08b1a07c1b89c3a197291e7f7b9e1d4e10214ba7640b591cc82c67406c487c39b571ddcc89adbdf377a3e3fb4063b21a +docfiles size=50 RELOC/doc/latex/clrstrip/README.md details="Readme" RELOC/doc/latex/clrstrip/clrstrip.pdf details="Package documentation" -srccontainersize 4536 -srccontainerchecksum b5cfa0234c7960718b4d201dc1896c8a92c437cdcd531e8decc783470df2e1a932f923a49ee3434dcf540263c9238374e455a14a0f64e84c41cd3985e1f21084 +srccontainersize 4552 +srccontainerchecksum db0be0ba5c5686846abc9eabfffcbe24c1b3f0e62554328c254126f7b0450ad0f066f7b3da20aabd83c80545e3400d0d52b639cc23b55a64e6b5735be79ea21f srcfiles size=4 RELOC/source/latex/clrstrip/clrstrip.dtx runfiles size=1 @@ -58849,7 +61938,7 @@ catalogue-topics colour name cluttex category Package -revision 53698 +revision 60964 shortdesc An automation tool for running LaTeX longdesc This is another tool for the automation of LaTeX document longdesc processing, like latexmk or arara. The main feature of this @@ -58861,11 +61950,11 @@ longdesc makeglossaries will be executed if a corresponding option is longdesc set. Furthermore, cluttex can watch input files for changes longdesc (using an external program). depend cluttex.ARCH -containersize 21376 -containerchecksum e211cd6fc89751628b0ebf0bd599ddffd18e39e24292fa896bd2394bbc1fe60c35d5230662a53fa685f051963db3966f27dd752cc63877585880a62483f6f93d -doccontainersize 676332 -doccontainerchecksum d26a6fe183999987b2a1d375d1061fadd78d23a1bddb0582d8f70561c5d1bd745d33e0c41e8256adb00e2dc5b9f4904e7de4f2c03a00a6688b6c4a433f1d359c -docfiles size=278 +containersize 21612 +containerchecksum 35c8ec3711963131bb50fe67ef95705a1d40a6dfd831a33d863bde16f16e66086e204725154d0deaed13e94fdc28dd59497561673542151c1574f7fe87f516f9 +doccontainersize 385200 +doccontainerchecksum c8e395e087f9ca511db96b96dee3de4a51fdfc9374ddaf40703db0980724000f1987298dc8253d0c5a8d7c97e46cc2a8165b7cad6560fa560213cd5ce85205de +docfiles size=203 texmf-dist/doc/support/cluttex/CHANGELOG.md texmf-dist/doc/support/cluttex/COPYING texmf-dist/doc/support/cluttex/Makefile @@ -58927,7 +62016,7 @@ catalogue-contact-repository https://github.com/minoki/cluttex catalogue-ctan /support/cluttex catalogue-license gpl3+ catalogue-topics compilation use-lua -catalogue-version 0.5 +catalogue-version 0.5.1 name cluttex.aarch64-linux category Package @@ -58973,17 +62062,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/cluttex bin/armhf-linux/clxelatex -name cluttex.i386-cygwin -category Package -revision 48871 -shortdesc i386-cygwin files of cluttex -containersize 384 -containerchecksum 6b9b69cec90932dc3abe7315342a068b6f037764f8cedfe54a2eb2226331c334e060afb63baf6a1d43003ced1faa524ce238c4b5304d487ecbbe329982ff532d -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/cllualatex - bin/i386-cygwin/cluttex - bin/i386-cygwin/clxelatex - name cluttex.i386-freebsd category Package revision 48871 @@ -59039,16 +62117,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/cluttex bin/universal-darwin/clxelatex -name cluttex.win32 +name cluttex.windows category Package -revision 48876 -shortdesc win32 files of cluttex -containersize 716 -containerchecksum 765a92a84529d9ae5c0dd3fc27ae4314dac490f61c1073c7b6848876395aef860c5e97c22b6bd8cd9c43aeccb5201f967886cc0544c72f76d2c5b5cc9130de77 -binfiles arch=win32 size=3 - bin/win32/cllualatex.exe - bin/win32/cluttex.exe - bin/win32/clxelatex.exe +revision 65891 +shortdesc windows files of cluttex +containersize 2384 +containerchecksum 40d43b12cabf36df24917f4bbff9f15158744d753440ae43a9898bde0bda095b3037c0069e387fe4b2bb54c3c5fb0a6085f40841b4aeef3d2d9cb6558b6637c3 +binfiles arch=windows size=6 + bin/windows/cllualatex.exe + bin/windows/cluttex.exe + bin/windows/clxelatex.exe name cluttex.x86_64-cygwin category Package @@ -61424,7 +64502,7 @@ catalogue-version 8.1 name cmcyr category Package -revision 39273 +revision 60630 shortdesc Computer Modern fonts with cyrillic extensions relocated 1 longdesc These are the Computer Modern fonts extended with Russian @@ -61432,11 +64510,11 @@ 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 +execute addMixedMap cmcyr.map containersize 901484 -containerchecksum 452551d8563b53408a058f847a4a8d3738ac7f0de1da15aea05208c030c67f904b848d71bacca2f6f5ec3e882cdf0be58a4037ed7dea7c7bbd2aeb08776427b9 +containerchecksum ecb1662bf6861744fa07126fa9cbcccfc0d53a1a9c1bd6b91a3c5482ccd83ec45b1dc17976d2d6c9cffc1dfb6aeb8ee583d753c427eb367b2c294defda98f519 doccontainersize 5864 -doccontainerchecksum 748c60e2e54f49bc6afd2867574919003ad6412d721613dacf6f8dc48cb187ca915b1a5e7286a47db7087fe1133c8ceabd998a8c60b91e4d60264b6fc6253190 +doccontainerchecksum 8db204fd976f23f99871dde1523ea0d46c2471ffd55f7bc1dd65e6728bd09be609b659f2044e5650d8f4c89c169569b4a4ab5535e975f3bb824a1faddb8a97a4 docfiles size=40 RELOC/doc/fonts/cmcyr/README details="Readme" RELOC/doc/fonts/cmcyr/cmalt @@ -63574,7 +66652,7 @@ catalogue-version 0.3 name cochineal category Package -revision 58717 +revision 62063 shortdesc Cochineal fonts with LaTeX support relocated 1 longdesc Cochineal is a fork from the Crimson fonts (Roman, Italic, @@ -63592,24 +66670,24 @@ longdesc adding about 2000 additional glyphs, which I could not even longdesc contemplate. The fonts are provided in OpenType and PostScript longdesc formats. execute addMap Cochineal.map -containersize 2532576 -containerchecksum 51596bff44f2aeb5720d6723283cd2c7a4c81419b0391af9aeda3231fd429c8bb8a6342278fab7f1cf17ed4cb752a25bd7c55c085671ef205bf9a28c429cfdc9 -doccontainersize 369568 -doccontainerchecksum 930c4bcbcec523c8800f3c52b286197758f7721aa511a7f0617fff68f2e1a86cabc7cc9f8ba2887f64edd0e61fff9c17a05eb615043d0a2de9a56e03e72b5e65 -docfiles size=113 +containersize 2864036 +containerchecksum 9ab8abcb37615f7381132181a991adf35d34d61c81ed5100e02e9d314a0e555669a6488edbf9fd698a239ead8f49221410333705d2074046eb3e467f31ea7196 +doccontainersize 577192 +doccontainerchecksum 5bf6a83c03d5a87567a42379c7f8462b1f52245fad5b18839532761cf855f45e596b76ea266e361527a6f269b008c6a2515cce2a616f372daaf06e6ddd6efe73 +docfiles size=174 RELOC/doc/fonts/cochineal/OFL-FAQ.txt RELOC/doc/fonts/cochineal/OFL.txt RELOC/doc/fonts/cochineal/README details="Readme" RELOC/doc/fonts/cochineal/cochineal-doc.pdf details="Package manual" RELOC/doc/fonts/cochineal/cochineal-doc.tex - RELOC/doc/fonts/cochineal/newgermanglyphs-crop.pdf - RELOC/doc/fonts/cochineal/newgermanglyphs.pdf - RELOC/doc/fonts/cochineal/newgermanglyphs.tex -runfiles size=5144 + RELOC/doc/fonts/cochineal/cochineal-otf-doc.pdf details="Using the font with XeLaTeX or LuaLaTeX" + RELOC/doc/fonts/cochineal/cochineal-otf-doc.tex +runfiles size=6084 RELOC/fonts/afm/public/cochineal/Cochineal-Bold.afm RELOC/fonts/afm/public/cochineal/Cochineal-BoldItalic.afm RELOC/fonts/afm/public/cochineal/Cochineal-Italic.afm RELOC/fonts/afm/public/cochineal/Cochineal-Roman.afm + RELOC/fonts/afm/public/cochineal/Cochneal-Roman.afm RELOC/fonts/afm/public/cochineal/cochBMI.afm RELOC/fonts/afm/public/cochineal/cochBRM.afm RELOC/fonts/afm/public/cochineal/cochMI.afm @@ -63628,21 +66706,19 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-ly1.enc RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-ot1.enc RELOC/fonts/enc/dvips/cochineal/cochTH-tosf-t1.enc - RELOC/fonts/enc/dvips/cochineal/coch_2cqomt.enc + RELOC/fonts/enc/dvips/cochineal/coch_2eakhu.enc RELOC/fonts/enc/dvips/cochineal/coch_2expjo.enc RELOC/fonts/enc/dvips/cochineal/coch_2gvyjv.enc RELOC/fonts/enc/dvips/cochineal/coch_2wxnkf.enc RELOC/fonts/enc/dvips/cochineal/coch_2zgday.enc RELOC/fonts/enc/dvips/cochineal/coch_3brrog.enc - RELOC/fonts/enc/dvips/cochineal/coch_3m7z6q.enc RELOC/fonts/enc/dvips/cochineal/coch_3q3crd.enc + RELOC/fonts/enc/dvips/cochineal/coch_3r6zg3.enc RELOC/fonts/enc/dvips/cochineal/coch_3tt4zg.enc RELOC/fonts/enc/dvips/cochineal/coch_47bkd3.enc RELOC/fonts/enc/dvips/cochineal/coch_4agesf.enc RELOC/fonts/enc/dvips/cochineal/coch_4plcvc.enc - RELOC/fonts/enc/dvips/cochineal/coch_4srkt4.enc RELOC/fonts/enc/dvips/cochineal/coch_5bitfe.enc - RELOC/fonts/enc/dvips/cochineal/coch_5dzpv7.enc RELOC/fonts/enc/dvips/cochineal/coch_5f3gw2.enc RELOC/fonts/enc/dvips/cochineal/coch_5o2hga.enc RELOC/fonts/enc/dvips/cochineal/coch_5tib5i.enc @@ -63654,18 +66730,14 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_6uoyes.enc RELOC/fonts/enc/dvips/cochineal/coch_6wh55u.enc RELOC/fonts/enc/dvips/cochineal/coch_6xmcha.enc - RELOC/fonts/enc/dvips/cochineal/coch_7cy5le.enc - RELOC/fonts/enc/dvips/cochineal/coch_7fuy52.enc RELOC/fonts/enc/dvips/cochineal/coch_7fzfry.enc - RELOC/fonts/enc/dvips/cochineal/coch_7kg32s.enc RELOC/fonts/enc/dvips/cochineal/coch_7trhhc.enc RELOC/fonts/enc/dvips/cochineal/coch_7v73vk.enc RELOC/fonts/enc/dvips/cochineal/coch_aeaj7m.enc RELOC/fonts/enc/dvips/cochineal/coch_aiajjq.enc RELOC/fonts/enc/dvips/cochineal/coch_alzuis.enc - RELOC/fonts/enc/dvips/cochineal/coch_apzg65.enc + RELOC/fonts/enc/dvips/cochineal/coch_awf6hz.enc RELOC/fonts/enc/dvips/cochineal/coch_bat6hu.enc - RELOC/fonts/enc/dvips/cochineal/coch_bhbiwe.enc RELOC/fonts/enc/dvips/cochineal/coch_bhnmej.enc RELOC/fonts/enc/dvips/cochineal/coch_bi2nei.enc RELOC/fonts/enc/dvips/cochineal/coch_bjqtqq.enc @@ -63676,9 +66748,9 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_cbs7ow.enc RELOC/fonts/enc/dvips/cochineal/coch_cuw7wa.enc RELOC/fonts/enc/dvips/cochineal/coch_d2hjcw.enc - RELOC/fonts/enc/dvips/cochineal/coch_d2sl3v.enc RELOC/fonts/enc/dvips/cochineal/coch_da7weg.enc RELOC/fonts/enc/dvips/cochineal/coch_dbsvsj.enc + RELOC/fonts/enc/dvips/cochineal/coch_ddt3vr.enc RELOC/fonts/enc/dvips/cochineal/coch_df5kan.enc RELOC/fonts/enc/dvips/cochineal/coch_djzri5.enc RELOC/fonts/enc/dvips/cochineal/coch_dwjlw5.enc @@ -63689,10 +66761,8 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_ekjpcs.enc RELOC/fonts/enc/dvips/cochineal/coch_eluj5m.enc RELOC/fonts/enc/dvips/cochineal/coch_ermyhb.enc - RELOC/fonts/enc/dvips/cochineal/coch_f6cstm.enc RELOC/fonts/enc/dvips/cochineal/coch_fdemcn.enc RELOC/fonts/enc/dvips/cochineal/coch_fgurd2.enc - RELOC/fonts/enc/dvips/cochineal/coch_fn4k7j.enc RELOC/fonts/enc/dvips/cochineal/coch_g2axst.enc RELOC/fonts/enc/dvips/cochineal/coch_gcpa6j.enc RELOC/fonts/enc/dvips/cochineal/coch_gkpez6.enc @@ -63701,7 +66771,7 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_hqneph.enc RELOC/fonts/enc/dvips/cochineal/coch_huz7n5.enc RELOC/fonts/enc/dvips/cochineal/coch_ibp3xz.enc - RELOC/fonts/enc/dvips/cochineal/coch_izjs6r.enc + RELOC/fonts/enc/dvips/cochineal/coch_ikkvry.enc RELOC/fonts/enc/dvips/cochineal/coch_j7mi7a.enc RELOC/fonts/enc/dvips/cochineal/coch_jgxutr.enc RELOC/fonts/enc/dvips/cochineal/coch_jhwmea.enc @@ -63718,13 +66788,16 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_l47tcy.enc RELOC/fonts/enc/dvips/cochineal/coch_l64ji6.enc RELOC/fonts/enc/dvips/cochineal/coch_lchlkf.enc + RELOC/fonts/enc/dvips/cochineal/coch_ldgozj.enc RELOC/fonts/enc/dvips/cochineal/coch_liz2hd.enc RELOC/fonts/enc/dvips/cochineal/coch_lqmdx6.enc RELOC/fonts/enc/dvips/cochineal/coch_lropbz.enc - RELOC/fonts/enc/dvips/cochineal/coch_mgd2ev.enc + RELOC/fonts/enc/dvips/cochineal/coch_lzqtrs.enc + RELOC/fonts/enc/dvips/cochineal/coch_m4bmrm.enc + RELOC/fonts/enc/dvips/cochineal/coch_max2ec.enc RELOC/fonts/enc/dvips/cochineal/coch_mo2enl.enc + RELOC/fonts/enc/dvips/cochineal/coch_nj5yu3.enc RELOC/fonts/enc/dvips/cochineal/coch_nlwa7l.enc - RELOC/fonts/enc/dvips/cochineal/coch_ns6y37.enc RELOC/fonts/enc/dvips/cochineal/coch_o4vutb.enc RELOC/fonts/enc/dvips/cochineal/coch_o5mx43.enc RELOC/fonts/enc/dvips/cochineal/coch_odnecf.enc @@ -63735,6 +66808,8 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_otkq6i.enc RELOC/fonts/enc/dvips/cochineal/coch_p7j4gw.enc RELOC/fonts/enc/dvips/cochineal/coch_pf3hrr.enc + RELOC/fonts/enc/dvips/cochineal/coch_pfcyih.enc + RELOC/fonts/enc/dvips/cochineal/coch_pilffg.enc RELOC/fonts/enc/dvips/cochineal/coch_pqzq4p.enc RELOC/fonts/enc/dvips/cochineal/coch_q35ey5.enc RELOC/fonts/enc/dvips/cochineal/coch_q4ulxa.enc @@ -63745,6 +66820,8 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_qzhi24.enc RELOC/fonts/enc/dvips/cochineal/coch_r2kqsv.enc RELOC/fonts/enc/dvips/cochineal/coch_rix5n3.enc + RELOC/fonts/enc/dvips/cochineal/coch_rv5tmq.enc + RELOC/fonts/enc/dvips/cochineal/coch_s4niqi.enc RELOC/fonts/enc/dvips/cochineal/coch_saoql6.enc RELOC/fonts/enc/dvips/cochineal/coch_sc4bro.enc RELOC/fonts/enc/dvips/cochineal/coch_sq6y2y.enc @@ -63753,20 +66830,20 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_t556x2.enc RELOC/fonts/enc/dvips/cochineal/coch_t7e5d4.enc RELOC/fonts/enc/dvips/cochineal/coch_tfefcu.enc + RELOC/fonts/enc/dvips/cochineal/coch_th736v.enc RELOC/fonts/enc/dvips/cochineal/coch_tjygyt.enc RELOC/fonts/enc/dvips/cochineal/coch_tkhq7f.enc + RELOC/fonts/enc/dvips/cochineal/coch_tnxjqs.enc RELOC/fonts/enc/dvips/cochineal/coch_u3j4lk.enc RELOC/fonts/enc/dvips/cochineal/coch_uavkhn.enc + RELOC/fonts/enc/dvips/cochineal/coch_uemkt3.enc RELOC/fonts/enc/dvips/cochineal/coch_uh66oa.enc - RELOC/fonts/enc/dvips/cochineal/coch_uk6vx5.enc RELOC/fonts/enc/dvips/cochineal/coch_uqbj7f.enc - RELOC/fonts/enc/dvips/cochineal/coch_vb2qex.enc RELOC/fonts/enc/dvips/cochineal/coch_vew4u5.enc RELOC/fonts/enc/dvips/cochineal/coch_vpdkzq.enc RELOC/fonts/enc/dvips/cochineal/coch_w6vdgs.enc RELOC/fonts/enc/dvips/cochineal/coch_wa4y3o.enc RELOC/fonts/enc/dvips/cochineal/coch_wcbuwv.enc - RELOC/fonts/enc/dvips/cochineal/coch_wdpw3f.enc RELOC/fonts/enc/dvips/cochineal/coch_wnd62o.enc RELOC/fonts/enc/dvips/cochineal/coch_wpweoy.enc RELOC/fonts/enc/dvips/cochineal/coch_wuwrcy.enc @@ -63774,7 +66851,9 @@ runfiles size=5144 RELOC/fonts/enc/dvips/cochineal/coch_x4ugem.enc RELOC/fonts/enc/dvips/cochineal/coch_xaxcx7.enc RELOC/fonts/enc/dvips/cochineal/coch_xsridg.enc + RELOC/fonts/enc/dvips/cochineal/coch_y3tmc2.enc RELOC/fonts/enc/dvips/cochineal/coch_ygltby.enc + RELOC/fonts/enc/dvips/cochineal/coch_ylbzwi.enc RELOC/fonts/enc/dvips/cochineal/coch_yprnrw.enc RELOC/fonts/enc/dvips/cochineal/coch_z2oun7.enc RELOC/fonts/enc/dvips/cochineal/coch_zbphsw.enc @@ -64350,16 +67429,19 @@ runfiles size=5144 RELOC/tex/latex/cochineal/TS1Cochineal-TOsF.fd RELOC/tex/latex/cochineal/cochineal.fontspec RELOC/tex/latex/cochineal/cochineal.sty + RELOC/tex/latex/cochineal/ly1mincochineal.fd RELOC/tex/latex/cochineal/omlzcochmi.fd + RELOC/tex/latex/cochineal/ot1mincochineal.fd + RELOC/tex/latex/cochineal/t1mincochineal.fd RELOC/tex/latex/cochineal/uzcochmia.fd catalogue-ctan /fonts/cochineal catalogue-license ofl lppl1.3 catalogue-topics font font-body font-serif font-multilingual font-greek font-cyrillic font-proportional font-otf font-type1 font-t1enc font-supp -catalogue-version 1.066 +catalogue-version 1.077 name codeanatomy category Package -revision 51627 +revision 65648 shortdesc Typeset code with annotations relocated 1 longdesc The idea of this Package is to typeset illustrations of pieces @@ -64368,11 +67450,11 @@ longdesc Anatomy). The origin of this idea are code illustrations from longdesc the book "Computer Science: An Interdisciplinary Approach" from longdesc Robert Sedgewick and Kevin Wayne. The package depends on expl3, longdesc xparse, and TikZ. -containersize 1836 -containerchecksum 0f7613af5e91d364d0c8cc3978ce5251cff4650bf5e187ef03606b9cf5294eed82751b8f7604583af5187b62f40688733a39aaaca6a022ddd0087ab610f8c978 -doccontainersize 257164 -doccontainerchecksum 877a827dfd0bb9e79f80fa0a9cd7275a647fc4f0451af5c5a5253caee306f202a419f0164b2878c7a780176e018a2f1a3f8e9ec37fd8245997da537eefcd4e7b -docfiles size=87 +containersize 1844 +containerchecksum 59f2c1b91875a69434595d435eb905265c9e114bebb8a94edbe07f597518424add7916fab565caef11302e6c31537c54e5885f3320ec0e515cd0a207c8012e00 +doccontainersize 296484 +doccontainerchecksum 4595189bdcee5788de92793b54e8a3dab0215057acbf7d9d575af6e9fb67a92ec1985d61d415bd44bea2d8ae7084de0676e121c96be2262c93eee78116f50a86 +docfiles size=96 RELOC/doc/latex/codeanatomy/README.md details="Readme" RELOC/doc/latex/codeanatomy/codeanatomy.lstlisting.pdf details="Usage with listings" RELOC/doc/latex/codeanatomy/codeanatomy.lstlisting.tex @@ -64380,8 +67462,9 @@ docfiles size=87 RELOC/doc/latex/codeanatomy/codeanatomy.usage.pdf details="Package documentation (Usage)" RELOC/doc/latex/codeanatomy/codeanatomy.usage.tex RELOC/doc/latex/codeanatomy/literatur.bib -srccontainersize 4596 -srccontainerchecksum 9cbe9969e777ccbe711f68936798bdd28e570e6ed772ba3aa8ad54f083792cd725c97055859cecc115bab420f3a929d707eb49584c483a9f223d7ea7bb5fe388 + RELOC/doc/latex/codeanatomy/release-note-v0.4-Alpha.txt +srccontainersize 4844 +srccontainerchecksum 27c57ca05dd82f9810e63a0265658174dc3a9dfe21033c70bea65db5543648dc51052a8b72bd5f2d89e7ad9806d1cf1b0bf1e9c9ca543589afef2dc07184114d srcfiles size=5 RELOC/source/latex/codeanatomy/codeanatomy.dtx RELOC/source/latex/codeanatomy/codeanatomy.ins @@ -64393,7 +67476,42 @@ catalogue-contact-repository https://github.com/hpb-htw/codeanatomy.git catalogue-ctan /graphics/pgf/contrib/codeanatomy catalogue-license lppl1.3c catalogue-topics program-doc graphics pgf-tikz expl3 -catalogue-version 0.4-Alpha +catalogue-version 0.4-Beta + +name codebox +category Package +revision 61771 +shortdesc Highlighted source code in a fancy box +relocated 1 +longdesc This LaTeX3 package provides environments codebox and codeview +longdesc to typset with an environment body, and macros \codefile and +longdesc \cvfile to typeset programming source code from a file in a +longdesc fancy box. Starred versions of these environments and macros +longdesc are provided to add a comment at the bottom of the fancy box. +longdesc The package is based on tcolorbox, minted, and listings. +containersize 3640 +containerchecksum 04f63b435f360fdfa81bb7afeef38117a8a4b81b70562e21020470f49f33abc33038d6c55665a5ae4573ff61c19ed9120e824eb319ea97523fe1fa8e82ba9424 +doccontainersize 385704 +doccontainerchecksum 165fffcfbff35064a3c55a0fe1b095f3a45a5c01d1c8a8704cd151cbb20c440592edecc3be71900b1a7a5e7af28d6a8d6c4a3b9fd09f850c7da71362e2377ddd +docfiles size=119 + RELOC/doc/latex/codebox/README.md details="Readme" + RELOC/doc/latex/codebox/build.sh + RELOC/doc/latex/codebox/codebox-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/codebox/codebox-doc-en.tex + RELOC/doc/latex/codebox/codebox.dtx + RELOC/doc/latex/codebox/codebox.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/codebox/ctxdoc-en.cls + RELOC/doc/latex/codebox/hellojava.java + RELOC/doc/latex/codebox/hellopy.py + RELOC/doc/latex/codebox/test.c +runfiles size=4 + RELOC/tex/latex/codebox/codebox.sty +catalogue-contact-bugs https://github.com/registor/codebox/issues +catalogue-contact-repository https://github.com/registor/codebox +catalogue-ctan /macros/latex/contrib/codebox +catalogue-license lppl1.3c +catalogue-topics boxing listing decoration synt-hlt expl3 +catalogue-version 1.0.4 name codedoc category Package @@ -64426,6 +67544,36 @@ catalogue-license lppl catalogue-topics doc-supp catalogue-version 0.3 +name codehigh +category Package +revision 65787 +shortdesc Highlight code and demos with l3regex and lpeg +relocated 1 +longdesc This package uses the l3regex package from the LaTeX3 +longdesc Programming Layer to parse and highlight source code and demos. +longdesc It is more powerful than the listings package, and more easy to +longdesc use than minted. But it is slower than both of them. Therefore +longdesc in LuaTeX the package provides another way to highlight code: +longdesc using LPeg (Parsing Expression Grammars for Lua). LPeg is much +longdesc more powerful and faster than l3regex. +containersize 6336 +containerchecksum ca33d6cb84e716357cb18d8448f8e047b4bc049cca8e77aa80525a209c66ae4b93dcd453f91672cf15fc5305ce1d62768e9851edd6fb07214153100cdacfc884 +doccontainersize 97984 +doccontainerchecksum f689cede2e83dee785e3b83094f5897a8d7af4e39e3c33779acceeb7ed0c1226d094aca64c222f4b1488916e7ad78ed1a6b8800070910d4e0daf6e6ccd24bc5e +docfiles size=34 + RELOC/doc/latex/codehigh/README.txt details="Readme" + RELOC/doc/latex/codehigh/codehigh.pdf details="Package documentation" + RELOC/doc/latex/codehigh/codehigh.tex +runfiles size=8 + RELOC/tex/latex/codehigh/codehigh.lua + RELOC/tex/latex/codehigh/codehigh.sty +catalogue-contact-bugs https://github.com/lvjr/codehigh/issues +catalogue-contact-repository https://github.com/lvjr/codehigh +catalogue-ctan /macros/latex/contrib/codehigh +catalogue-license lppl1.3c +catalogue-topics listing synt-hlt expl3 use-luatex +catalogue-version 2023A + name codepage category Package revision 51502 @@ -64526,7 +67674,7 @@ catalogue-version 1.2 name coelacanth category Package -revision 54736 +revision 64558 shortdesc Coelacanth fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX @@ -64536,14 +67684,14 @@ longdesc Bruce Rogers, described by some as the most beautiful typeface longdesc ever designed. It aims to be a professional quality type family longdesc for general book typesetting. execute addMap Coelacanth.map -containersize 6833700 -containerchecksum f23a337931736831148c779defdea8fef6291636334f0f42cb540c53d1228972a9acaeb605f35fdc33c4a077347b11c8e964821ae1218074fdf87c06c7029187 -doccontainersize 67096 -doccontainerchecksum be2ddb2897fb81682514c19aa21200c2dc9825bd106cdbff9cb5a31c6874c937d0f47ad4ccfc867f62d5dd00672791ce055d6e5e46a4e49587065a9f6134749d +containersize 6833668 +containerchecksum 279faeb81ba3169bc72848c691ab42729c670bed5c41a2add3e338bec0c109ff15ffcb492e19834d0ab2293040a659e3994f374b5a6028d505823e372eab7f48 +doccontainersize 67104 +doccontainerchecksum ae548dfea88ab4315674caca7e0531bf52512b6ac8198853e0c70661e91061e3fdc15c82be7d6f1ee5c92a7cf340e65b0ce99665da82507b9d9f9b119722c2b7 docfiles size=20 RELOC/doc/fonts/coelacanth/LICENSE.md RELOC/doc/fonts/coelacanth/README details="Readme" - RELOC/doc/fonts/coelacanth/coelacanth-samples.pdf details="Package documentation" + RELOC/doc/fonts/coelacanth/coelacanth-samples.pdf details="Font samples" RELOC/doc/fonts/coelacanth/coelacanth-samples.tex runfiles size=3564 RELOC/fonts/enc/dvips/coelacanth/coel_2bq22m.enc @@ -65189,9 +68337,36 @@ catalogue-license ofl lppl catalogue-topics font font-body font-serif font-proportional font-type1 font-otf font-supp font-t1enc catalogue-version 0.005 +name coffeestains +category Package +revision 59703 +shortdesc Add coffee stains to documents +relocated 1 +longdesc This package provides an essential feature that LaTeX has been +longdesc missing for too long: It adds coffee stains to your documents. +longdesc A lot of time can be saved by printing stains directly on the +longdesc page rather than adding them manually. +containersize 86728 +containerchecksum 7a8213810b8bb30c0b863ce996aab92a9031dd9961513d25822904c6e71dd2fa1b79f050f1840e8d88e8f8e8e87c7736369f3fa7a6873cbaa57fb8dca7c71d47 +doccontainersize 358852 +doccontainerchecksum fab8a2aeae8dd1c6f0f501d894f90d5b6f7785bf8b3fcf86837f4bc41da8002427c69094676870ea7dfe9186b3bb92433f5c66f0cedd08f57954487db8bb162b +docfiles size=98 + RELOC/doc/latex/coffeestains/README.md details="Readme" + RELOC/doc/latex/coffeestains/coffeestains-en.pdf details="English documentation" + RELOC/doc/latex/coffeestains/coffeestains-en.tex + RELOC/doc/latex/coffeestains/coffeestains-fr.pdf details="French documentation" language="fr" + RELOC/doc/latex/coffeestains/coffeestains-fr.tex +runfiles size=118 + RELOC/tex/latex/coffeestains/coffeestains.sty +catalogue-contact-repository https://framagit.org/Pathe/coffeestains +catalogue-ctan /graphics/pgf/contrib/coffeestains +catalogue-license pd +catalogue-topics graphics pgf-tikz amusements +catalogue-version 0.5.1 + name collcell category Package -revision 56291 +revision 64967 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 @@ -65200,14 +68375,14 @@ longdesc care is taken to remove all aligning macros inserted by tabular longdesc from the cell content. The macros also work in the last column longdesc of a table, but do not support verbatim material inside the longdesc cells. -containersize 2252 -containerchecksum fff5f9ae7f9cd27f85189a895193f205e0b52874d46171f1f3957d7c816e0641dde6d2711783897953a1f1be699e001fbd9048aa3c15c24cfd33413db1ae688f +containersize 2244 +containerchecksum ecc414d09b916580b87aeba0192b55e698782ee9fca088ff3d3ab6f247ff2fa33caa0cf6913870f8f3219806e2ac88674c6f7692ebdc027675907355c38c6eea doccontainersize 221632 -doccontainerchecksum 22dd2b527ca195cb4cbf6d34d8dbd181dbb3386fa738fb09530957eea1413261fd596b0a00395647ce2582c477625cdd87e8ffa1cf2dad5387032a7d7d737edc +doccontainerchecksum a516c5c4030957305e413e252cc59f33652b42f2d0dc0aa0fbe297f33a68da4d534f0b07684d39276e8b6811b53b775db45b774e7ea82fc9b0c7382910ab6442 docfiles size=68 RELOC/doc/latex/collcell/collcell.pdf details="Package documentation" srccontainersize 7536 -srccontainerchecksum 9a5a173381fe9b6e0383571868b215184b75c51e39d18ca209d00e4064c28d7a477c4b887a0be5dd4867d393c6854022a5abd7be63d3be593549e645e3e09aba +srccontainerchecksum 1cd565603f9c6e4b267d67b501842a95916072deac09b0330336d8d2b97cce1a7571f9a8f0725958a920f0d786d1a3a6aa8682b232e276b9fe8e4208a08c34cd srcfiles size=8 RELOC/source/latex/collcell/Makefile RELOC/source/latex/collcell/README @@ -65215,9 +68390,9 @@ srcfiles size=8 RELOC/source/latex/collcell/collcell.ins runfiles size=2 RELOC/tex/latex/collcell/collcell.sty -catalogue-contact-bugs https://sourceforge.net/p/collcell/tickets/ -catalogue-contact-home https://sourceforge.net/p/collcell/ -catalogue-contact-repository https://sourceforge.net/p/collcell/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/collcell/issues +catalogue-contact-home https://github.com/MartinScharrer/collcell +catalogue-contact-repository https://github.com/MartinScharrer/collcell.git catalogue-ctan /macros/latex/contrib/collcell catalogue-license lppl1.3 catalogue-topics table @@ -65225,7 +68400,7 @@ catalogue-version 0.5 name collectbox category Package -revision 56291 +revision 64967 shortdesc Collect and process macro arguments as boxes relocated 1 longdesc The package provides macros to collect and process a macro @@ -65238,31 +68413,32 @@ longdesc end of a group in different macro invocations, or to place them longdesc in the begin and end code of an environment. Arguments may longdesc contain verbatim material or other special use of characters. longdesc The macros were designed for use within other macros. -containersize 2876 -containerchecksum 6d5b59bbad4aea17a5298e73c2f8538e7d98f27ded848096ada4db7b63a50a7f8fc0e725887cc13165c57222b2e3d27ffe4a6cf7abd5d0e1f54c8314b2f73db5 -doccontainersize 270912 -doccontainerchecksum 62a8651ba04958886591113a9ca831aca0f61d23d94c2105873ff5040db1014c61e0535650ed792e8ae3ff776027680b98d64fac47b5fa30b14cf1c723b99a71 -docfiles size=67 - RELOC/doc/latex/collectbox/README details="Readme" +containersize 2872 +containerchecksum 59316a336010c03bbe288ecaf20953666d084500165befe465ac87210795f2ef68693e5fe155b45a461a690d918d83aad247dcd52eb40cd0bf80f6c68fcd8071 +doccontainersize 165956 +doccontainerchecksum db2d2066072a3619913df6fbdfb19ec3afc50495d51ccf1339312bcff1bf7841902f412932205cb4ae2f94acd33b9fe2b250d67ae02c22d6efa25c251a182c00 +docfiles size=43 + RELOC/doc/latex/collectbox/DEPENDS.txt + RELOC/doc/latex/collectbox/README.txt details="Readme" RELOC/doc/latex/collectbox/collectbox.pdf -srccontainersize 8064 -srccontainerchecksum c7b44356a97790883b1e7ba7bc86bd6d5d334536dbca5388e19fe019f82187d1daeba76567e88946038b99cdf835743ae807a8d0ab383a519ea2decb80d4eb54 +srccontainersize 8100 +srccontainerchecksum b54a9a9215639eba3c0c052676122a3c25efacda695b34c56317d809e69e6859bb52c7fb8845e08ece9d1a2ffa399f3800737b56eca7e6c4a2f7ced14b10a2ce srcfiles size=9 RELOC/source/latex/collectbox/collectbox.dtx RELOC/source/latex/collectbox/collectbox.ins runfiles size=3 RELOC/tex/latex/collectbox/collectbox.sty -catalogue-contact-bugs https://sourceforge.net/p/collectbox/tickets/ -catalogue-contact-home https://sourceforge.net/p/collectbox/ -catalogue-contact-repository https://sourceforge.net/p/collectbox/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/collectbox/issues +catalogue-contact-home https://github.com/MartinScharrer/collectbox +catalogue-contact-repository https://github.com/MartinScharrer/collectbox.git catalogue-ctan /macros/latex/contrib/collectbox catalogue-license lppl1.3 catalogue-topics boxing -catalogue-version 0.4b +catalogue-version 0.4c name collection-basic category Collection -revision 56569 +revision 59159 shortdesc Essential programs and files relocated 1 longdesc These files are regarded as basic for any TeX system, covering @@ -65301,7 +68477,6 @@ depend plain depend tex depend tex-ini-files depend texlive-common -depend texlive-docindex depend texlive-en depend texlive-msg-translations depend texlive-scripts @@ -65309,12 +68484,12 @@ depend texlive.infra depend tlshell depend unicode-data depend xdvi -containersize 632 -containerchecksum 39ff4680cb002b6e29dac2fd5005d0d63b279deab21f025a87a7e860110a7eba04748adc11c9bf12f580cfc991380d2f301819801c32f681353c43053f98af48 +containersize 624 +containerchecksum 4241bc3a3ef21502faa9a2e0b16295126c357fc15813a625306552b40f9da804164abccce642f4ec1e677092f81d61381958b87fcf515120a12f9b7a19055370 name collection-bibtexextra category Collection -revision 58437 +revision 65257 shortdesc BibTeX additional styles relocated 1 longdesc Additional BibTeX styles and bibliography data(bases), notably @@ -65325,6 +68500,7 @@ depend ajl depend amsrefs depend annotate depend apacite +depend apalike-ejor depend apalike2 depend archaeologie depend authordate @@ -65333,7 +68509,9 @@ depend besjournals depend bestpapers depend bib2gls depend bibarts +depend bibcop depend biber +depend biber-ms depend bibexport depend bibhtml depend biblatex @@ -65352,6 +68530,7 @@ depend biblatex-caspervector depend biblatex-chem depend biblatex-chicago depend biblatex-claves +depend biblatex-cv depend biblatex-dw depend biblatex-enc depend biblatex-ext @@ -65366,11 +68545,13 @@ depend biblatex-iso690 depend biblatex-jura2 depend biblatex-juradiss depend biblatex-license +depend biblatex-lncs depend biblatex-lni depend biblatex-luh-ipw depend biblatex-manuscripts-philology depend biblatex-mla depend biblatex-morenames +depend biblatex-ms depend biblatex-multiple-dm depend biblatex-musuos depend biblatex-nature @@ -65381,6 +68562,7 @@ depend biblatex-oxref depend biblatex-philosophy depend biblatex-phys depend biblatex-publist +depend biblatex-readbbl depend biblatex-realauthor depend biblatex-sbl depend biblatex-science @@ -65388,6 +68570,7 @@ depend biblatex-shortfields depend biblatex-socialscienceshuberlin depend biblatex-software depend biblatex-source-division +depend biblatex-spbasic depend biblatex-subseries depend biblatex-swiss-legal depend biblatex-trad @@ -65410,6 +68593,7 @@ depend chicago depend chicago-annote depend chicagoa depend chscite +depend citation-style-language depend citeall depend citeref depend collection-latex @@ -65431,6 +68615,7 @@ depend gbt7714 depend geschichtsfrkl depend harvard depend harvmac +depend hep-bibliography depend historische-zeitschrift depend icite depend ietfbibs @@ -65452,6 +68637,7 @@ depend multibib depend multibibliography depend munich depend nar +depend newcastle-bst depend nmbib depend notes2bib depend notex-bst @@ -65472,12 +68658,12 @@ depend vak depend windycity depend xcite depend zootaxa-bst -containersize 1228 -containerchecksum 0a0b978dcb21f9c26e0931c14b7faf7b0d8b5e1229d4180127c6b53899e001620246f2c0a7b0f6f1dc81639aee94701a637ac7af4ab20f144b661686c7d321a3 +containersize 1284 +containerchecksum db80edc251a62547b401d922c954a40dc3887b01a59952bf20829b67953e26083c98249dba83157b0e9db4b0b2b2802f5965d9360b332d45fe4d69762ef38c62 name collection-binextra category Collection -revision 56352 +revision 66381 shortdesc TeX auxiliary programs relocated 1 longdesc Myriad additional TeX-related support programs. Includes @@ -65505,6 +68691,7 @@ depend ctie depend cweb depend de-macro depend detex +depend digestif depend dtl depend dtxgen depend dvi2tty @@ -65543,6 +68730,7 @@ depend make4ht depend match_parens depend mflua depend mkjobtexmf +depend optexcount depend patgen depend pdfbook2 depend pdfcrop @@ -65562,6 +68750,7 @@ depend srcredact depend sty2dtx depend synctex depend tex4ebook +depend texaccents depend texcount depend texdef depend texdiff @@ -65572,6 +68761,8 @@ depend texfot depend texlive-scripts-extra depend texliveonfly depend texloganalyser +depend texlogfilter +depend texlogsieve depend texosquery depend texplate depend texware @@ -65579,16 +68770,17 @@ depend tie depend tlcockpit depend tpic2pdftex depend typeoutfileinfo +depend upmendex depend web depend xindex depend xindy depend xpdfopen -containersize 944 -containerchecksum 6c6b6344f7d294bf74f3601850f036543ae6f8dc78bf01e32867d46d7c20089a388f779c445173c5d54e874278e718b697691eb94a5a2029ef64acdb914461ae +containersize 980 +containerchecksum 595821a44d10775d5fd38e292d4cd0135daf1e2a59131afd9d6fb600f319be3e2365f2b997c04e9150d39483c4ce9e030395afb60a3be272fa2a976537c77e73 name collection-context category Collection -revision 54074 +revision 66171 shortdesc ConTeXt and packages relocated 1 longdesc Hans Hagen's powerful ConTeXt system, http://pragma-ade.com. @@ -65613,12 +68805,10 @@ depend context-fullpage depend context-gantt depend context-gnuplot depend context-handlecsv -depend context-inifile depend context-layout depend context-letter depend context-lettrine depend context-mathsets -depend context-notes-zh-cn depend context-rst depend context-ruby depend context-simplefonts @@ -65630,16 +68820,15 @@ depend context-typescripts depend context-vim depend context-visualcounter depend jmn -depend npp-for-context -containersize 596 -containerchecksum 5bd74e1a434549cf31ce31777e9a32f90baa14148e6658633945508a46dbf6611644c4212b53812bb32a399e850517369e3d89bb0e495c89e6f2a979090ed765 +containersize 568 +containerchecksum 3bab81221236bcba70222b2f68eabee302a31412e54fb2f613ad49af525119fc7c35614d8444611854b05036c990010ff1b2924dc9bee914e085fb71b20ffb49 name collection-fontsextra category Collection -revision 58253 +revision 64952 shortdesc Additional fonts relocated 1 -depend Asana-Math +depend aboensis depend academicons depend accanthis depend adforn @@ -65651,6 +68840,7 @@ depend algolrevived depend allrunes depend almendra depend almfixed +depend andika depend anonymouspro depend antiqua depend antt @@ -65659,6 +68849,7 @@ depend archivo depend arev depend arimo depend arvo +depend asana-math depend asapsym depend ascii-font depend aspectratio @@ -65677,6 +68868,7 @@ depend bbm depend bbm-macros depend bbold depend bbold-type1 +depend bboldx depend belleek depend bera depend berenisadf @@ -65723,7 +68915,9 @@ depend collection-basic depend comfortaa depend comicneue depend concmath-fonts +depend concmath-otf depend cookingsymbols +depend cooperhewitt depend cormorantgaramond depend countriesofeurope depend courier-scaled @@ -65769,6 +68963,7 @@ depend esrelation depend esstix depend esvect depend etbb +depend euler-math depend eulervm depend euxm depend fbb @@ -65812,7 +69007,11 @@ depend greenpoint depend grotesq depend gudea depend hacm +depend hamnosys depend hands +depend hep-font +depend hep-math-font +depend heros-otf depend heuristica depend hfbright depend hfoldsty @@ -65849,7 +69048,7 @@ depend librebodoni depend librecaslon depend librefranklin depend libris -depend linearA +depend lineara depend linguisticspro depend lobster2 depend logix @@ -65897,6 +69096,7 @@ depend orkhun depend oswald depend overlock depend pacioli +depend pagella-otf depend paratype depend phaistos depend phonetic @@ -65924,15 +69124,18 @@ depend sansmathaccent depend sansmathfonts depend sauter depend sauterfonts +depend schola-otf depend scholax depend schulschriften depend semaphor depend shobhika +depend simpleicons depend skull depend sourcecodepro depend sourcesanspro depend sourceserifpro depend spectral +depend srbtiks depend starfont depend staves depend step @@ -65943,9 +69146,11 @@ depend stix2-otf depend stix2-type1 depend superiors depend svrsymbols +depend symbats3 depend tapir depend tempora depend tengwarscript +depend termes-otf depend tfrupee depend theanodidot depend theanomodern @@ -65965,13 +69170,15 @@ depend urwchancal depend venturisadf depend wsuipa depend xcharter +depend xcharter-math depend xits depend yfonts +depend yfonts-otf depend yfonts-t1 depend yinit-otf depend zlmtt -containersize 1912 -containerchecksum 27d3200f8bab180da6c0ce7b6fc9773950fa0755d8f7ae3b43b76eeaa7f960a99ab1941793bb50e3d7eaf0b2b3fe0bd6b5261ba9ed645d839cf8a3075b2aaa2a +containersize 1996 +containerchecksum e0c3a3142ca8dcdcdc0d7c5328e1624736f20bfe9e3757bad95d0e361b73ecdf3bc53e9d19f42ef5d91b74cbdf4fca1ee62b79f53d4d5a5f8aed47f51553d77e name collection-fontsrecommended category Collection @@ -66020,7 +69227,7 @@ containerchecksum eaa6e54780a0813a88102258ee3bd7a4640787be0b89eff4ba2c9cc19298bf name collection-fontutils category Collection -revision 57089 +revision 61207 shortdesc Graphics and font utilities relocated 1 longdesc Programs for conversion between font formats, testing fonts, @@ -66038,6 +69245,7 @@ depend fontinst depend fontools depend fontware depend lcdftypetools +depend luafindfont depend metatype1 depend mf2pt1 depend ps2eps @@ -66045,25 +69253,26 @@ depend ps2pk depend psutils depend t1utils depend ttfutils -containersize 528 -containerchecksum 9bc0964c2ce55e4bcab2b2ad0ae1c784a49ffc981620ef3cd549052a5e2b201325ddc444d9afbe57da6dc64d1890d61be5e97caa2c9c63ebbafc5f5d0322acae +containersize 536 +containerchecksum 430c95b7e104cb837b7424ebb17ab7ee1aefd99d70aaceefff8a1924fa949329aebe0d5a28b939fabf28d3c5dfc2dcb466147e1396514d5dcf4f64af231db8a7 name collection-formatsextra category Collection -revision 54074 +revision 62226 shortdesc Additional formats relocated 1 longdesc Collected TeX `formats', i.e., large-scale macro packages longdesc designed to be dumped into .fmt files -- excluding the most longdesc common ones, such as latex and context, which have their own longdesc package(s). It also includes the Aleph engine and related Omega -longdesc formats and packages. +longdesc formats and packages, and the HiTeX engine and related. depend aleph depend antomega depend collection-basic depend collection-latex depend edmac depend eplain +depend hitex depend jadetex depend lambda depend lollipop @@ -66078,12 +69287,12 @@ depend startex depend texsis depend xmltex depend xmltexconfig -containersize 568 -containerchecksum 7700a6cc293a1d45208794db34a276d5de5c975fe91cb00e5b1896515f288b05437344f00997501a54ad2af515bccc983930a75ddda55c6951edc625cd6bda35 +containersize 584 +containerchecksum 6c7f0a1829789edea6a42d45f13f482abc0aa1ecc66b0ba4b70197efff349df75c9a89a98f21537cf6f3751b608fc3ee10ac842613deaf2aa21005374a23bab2 name collection-games category Collection -revision 58896 +revision 65631 shortdesc Games typesetting relocated 1 longdesc Setups for typesetting various games, including chess. @@ -66092,21 +69301,27 @@ depend chess depend chess-problem-diagrams depend chessboard depend chessfss +depend chinesechess depend collection-latex depend crossword depend crosswrd +depend customdice depend egameps depend gamebook +depend gamebooklib depend go depend hanoi depend havannah +depend hexboard depend hexgame depend hmtrump depend horoscop +depend jeuxcartes depend jigsaw depend labyrinth depend logicpuzzle depend mahjong +depend maze depend musikui depend nimsticks depend onedown @@ -66118,20 +69333,23 @@ depend realtranspose depend reverxii depend rubik depend schwalbe-chess +depend scrabble depend sgame depend skak depend skaknew depend soup depend sudoku depend sudokubundle +depend tangramtikz +depend wargame depend xq depend xskak -containersize 536 -containerchecksum 225b5e39067455805cb367653f727ed3ac363246411dadbc85948560bf6883de00110bc90953c10c9292a355e5db8087d15fd7bee2bb5fd268b361cf69509535 +containersize 588 +containerchecksum f7508dd7b59f4137260fb3a9c74037513e4722539aa8460dd7f0917f47d42cbd1575077880a4e6af49351600c8b9d316437132113c33737a253e7db3c3c1076a name collection-humanities category Collection -revision 56575 +revision 65216 shortdesc Humanities packages relocated 1 longdesc Packages for law, linguistics, social sciences, humanities, @@ -66148,7 +69366,6 @@ depend dramatist depend dvgloss depend ecltree depend edfnotes -depend ednotes depend eledform depend eledmac depend expex @@ -66158,6 +69375,7 @@ depend jura depend juraabbrev depend juramisc depend jurarsp +depend langnames depend ledmac depend lexikon depend lexref @@ -66189,12 +69407,12 @@ depend theatre depend tree-dvips depend verse depend xyling -containersize 588 -containerchecksum 8239a85051576d691f7a367b2858dbc191e0545d88e0f193107cf68ccc527c7f4980a6a18cd14bf7735277ea2552955d7be50520290a96a24ff3bc856a13742e +containersize 596 +containerchecksum d2ae12a0b914be72772dadc60021220990f037f40a2ef4f95038cdd603c80e039f94009910aed38513b4a7938ec99ecf2f035a0dbe221b9e166ccd8aa977c30b name collection-langarabic category Collection -revision 59003 +revision 59594 shortdesc Arabic relocated 1 longdesc Support for Arabic and Persian. @@ -66203,6 +69421,7 @@ depend alpha-persian depend amiri depend arabi depend arabi-add +depend arabic-book depend arabluatex depend arabtex depend bidi @@ -66227,12 +69446,12 @@ depend tram depend xepersian depend xepersian-hm depend xindy-persian -containersize 448 -containerchecksum fea2044669380d81e34c45f19deeefeeeb42ea5c7b6afd0376eff49193c82903b09e061343a39677283002bd05089b6b6822132507fc4ff8fc13bffcd275cbbd +containersize 456 +containerchecksum 3fdcf41fafd94373254281f3f7ee9f2a2e136cfa1adc1dd38e4b5cd6f90d0364e6a20d3284fcf255f245158352421e28cfb794c673b8b96399a20343ed991fc2 name collection-langchinese category Collection -revision 58965 +revision 63995 shortdesc Chinese relocated 1 longdesc Support for Chinese; additional packages in collection-langcjk. @@ -66245,8 +69464,10 @@ depend cns depend collection-langcjk depend ctex depend ctex-faq +depend exam-zh depend fandol depend fduthesis +depend hanzibox depend hyphen-chinese depend impatient-cn depend install-latex-guide-zh-cn @@ -66268,12 +69489,12 @@ depend zhmetrics depend zhmetrics-uptex depend zhnumber depend zhspacing -containersize 540 -containerchecksum 5f06485f3709fcca6275a176ecbde04cc260643c3ceb795ab127c91a423a4a06c84839231656c734fec242347bded79bb9b3fe88824dd2e7b23334bee48b2197 +containersize 552 +containerchecksum d10096b2d83dc0378361184a64c347918e75dd51f48d962893371534c375dd8880e8febb1aaf1207e5ce04e59860f629f10c99bbf6304239e1147a5072194137 name collection-langcjk category Collection -revision 54191 +revision 65824 shortdesc Chinese/Japanese/Korean (base) relocated 1 longdesc Packages supporting a combination of Chinese, Japanese, Korean, @@ -66289,15 +69510,18 @@ depend cjkpunct depend cjkutils depend collection-basic depend dnp +depend evangelion-jfm depend fixjfm depend garuda-c90 depend jfmutil depend norasi-c90 depend pxtatescale depend xcjk2uni +depend xecjk +depend zitie depend zxjafont -containersize 568 -containerchecksum d6186e42081f4a1c2e15cf196de053108e7f8e046bab631e122b3d44ad8217bf83aeaf915c4fda7ebcb1d4be2a8f6dd1fa7027ed8624d31f16257ab8357d4a0b +containersize 588 +containerchecksum bee71f9df25db567c0930659e5037d1b6144d5c157e0870e9144f82c6dddbd9df156e580583c65f1bf5f54a70c9fcab108bd117e74af0e28d72a33f6b78207d1 name collection-langcyrillic category Collection @@ -66383,12 +69607,10 @@ containerchecksum 719c321173ca12660891080dae509080934f72d13a9417b2c40a22add963c7 name collection-langenglish category Collection -revision 58290 +revision 65496 shortdesc US and UK English relocated 1 longdesc Support for, and documentation in, English. -depend MemoirChapStyles -depend Type1fonts depend amiweb2c-guide depend amscls-doc depend amslatex-primer @@ -66396,12 +69618,13 @@ depend around-the-bend depend ascii-chart depend biblatex-cheatsheet depend collection-basic -depend components-of-TeX +depend components depend comprehensive depend dickimaw depend docsurvey depend dtxtut depend first-latex-doc +depend fontinstallationguide depend forest-quickstart depend gentle depend guide-to-latex @@ -66410,11 +69633,13 @@ depend hyphen-english depend impatient depend intro-scientific depend knuth-errata +depend knuth-hint depend knuth-pdf depend l2tabu-english depend latex-brochure depend latex-course depend latex-doc-ptr +depend latex-for-undergraduates depend latex-graphics-companion depend latex-refsheet depend latex-veryshortguide @@ -66429,6 +69654,7 @@ depend macros2e depend math-into-latex-4 depend maths-symbols depend memdesign +depend memoirchapterstyles depend metafont-beginners depend metapost-examples depend patgen2-tutorial @@ -66436,7 +69662,6 @@ depend pictexsum depend plain-doc depend short-math-guide depend simplified-latex -depend startlatex2e depend svg-inkscape depend tamethebeast depend tds @@ -66444,21 +69669,24 @@ depend tex-font-errors-cheatsheet depend tex-nutshell depend tex-overview depend tex-refs +depend tex-vpat depend texbytopic depend texonly depend titlepages depend tlc2 +depend tlc3-examples depend tlmgrbasics depend undergradmath depend visualfaq depend webguide depend xetexref -containersize 844 -containerchecksum 6d8bd7a5722a0720003c831c38ddc66c4af4fdc465c676050d71fb2bfec9c66791044b8d7c62399953ec4017c1935062ccbffd4c66028df79c9dd59fe42073b3 +depend yet-another-guide-latex2e +containersize 864 +containerchecksum 2c2f75491a801f71fe8a4a64d798c40f66dc71dbae32192089757a6881fd14299fe30a95eca65c75a9901c82c033a327f7d9a91080dea51f6679239d6660b2fd name collection-langeuropean category Collection -revision 58626 +revision 66432 shortdesc Other European languages relocated 1 longdesc Support for a number of European languages; others (Greek, @@ -66480,6 +69708,7 @@ depend babel-irish depend babel-kurmanji depend babel-latin depend babel-latvian +depend babel-lithuanian depend babel-macedonian depend babel-norsk depend babel-occitan @@ -66496,6 +69725,7 @@ depend collection-basic depend finbib depend gloss-occitan depend hrlatex +depend huaz depend hulipsum depend hyphen-croatian depend hyphen-danish @@ -66521,6 +69751,7 @@ depend hyphen-swedish depend hyphen-turkish depend hyphen-uppersorbian depend hyphen-welsh +depend kaytannollista-latexia depend lithuanian depend lshort-dutch depend lshort-estonian @@ -66531,12 +69762,12 @@ depend nevelok depend rojud depend swebib depend turkmen -containersize 704 -containerchecksum a1fe7a0531b3a0581591988c62cba7c3032bab5ed8291edbff2c8573adae0ce96ea9087c7f4b018ad0ae341070a826501fb6a92d768ae939a632bae41c0d84f4 +containersize 724 +containerchecksum 5fa87f174fc372c21b80ebe6b097525218da63892bc8445a29c24f2bfb015b0f04c100467f85e6c9e16a27ad26e31f00832d7712ebea7dec8631a730a95a9759 name collection-langfrench category Collection -revision 57491 +revision 63147 shortdesc French relocated 1 longdesc Support for French and Basque. @@ -66567,10 +69798,13 @@ depend impatient-fr depend impnattypo depend l2tabu-french depend latex2e-help-texinfo-fr +depend letgut depend lshort-french depend mafr depend matapli depend profcollege +depend proflabo +depend proflycee depend tabvar depend tdsfrmath depend texlive-fr @@ -66579,9 +69813,10 @@ depend translation-dcolumn-fr depend translation-natbib-fr depend translation-tabbing-fr depend variations +depend visualfaq-fr depend visualtikz -containersize 596 -containerchecksum da9bc3d0e81b2848a4517aecefd8dbdf98b04f46b3a9631c3d7f07256a9454db59e9f80379fbb07827b3c178f671b21b087a0e2fd780e1e10611cbc8ddfbad3c +containersize 616 +containerchecksum baec84c93e0b9313b29f807831da39da40902afdbc2305e193e9d4805c631a1e44695c0bc148e973d9021146cc25da9b22b0130b29fe4ff9834667ec83dff9b6 name collection-langgerman category Collection @@ -66640,7 +69875,7 @@ containerchecksum 19b9f47b68ca6068900c413d8216e13c20d25ab084cdcbd500694a18a10cba name collection-langgreek category Collection -revision 54139 +revision 65038 shortdesc Greek relocated 1 longdesc Support for Greek. @@ -66664,12 +69899,14 @@ depend ibygrk depend kerkis depend levy depend lgreek +depend lgrmath depend mkgrkindex +depend talos depend teubner depend xgreek depend yannisgr -containersize 428 -containerchecksum 15a0ac0f1e4e3c4f1e107e34ae2794e637b20a00e1d40f3a8d8fda225ff8a9e948fb77153b043bbcd0e7aaef4840a97ce9e19ae059ce2560d468fc373fc37cfa +containersize 440 +containerchecksum 800991b6bb8ac7772ad030ad665b812abd9b294498f7b7678be721ccc87d54607e267bd189a0591ebead2c6ecb64047e5b5581c374f067c3b1575b6d442cc6c9 name collection-langitalian category Collection @@ -66701,12 +69938,13 @@ containerchecksum 6ec5e8a62e3c1ed8e3c23542381091d38c77af507af7088a55e44f1e34b85d name collection-langjapanese category Collection -revision 58754 +revision 64603 shortdesc Japanese relocated 1 longdesc Support for Japanese; additional packages are in longdesc collection-langcjk. depend ascmac +depend asternote depend babel-japanese depend bxbase depend bxcjkjatype @@ -66725,19 +69963,25 @@ depend gckanbun depend gentombow depend haranoaji depend haranoaji-extra +depend ieejtran depend ifptex depend ifxptex depend ipaex +depend japanese-mathformulas depend japanese-otf -depend japanese-otf-uptex +depend jieeetran depend jlreq depend jlreq-deluxe +depend jpneduenumerate +depend jpnedumathsymbols depend jsclasses +depend kanbun depend lshort-japanese depend luatexja depend mendex-doc depend morisawa depend pbibtex-base +depend pbibtex-manual depend platex depend platex-tools depend platexcheat @@ -66763,8 +70007,8 @@ depend uptex-fonts depend wadalab depend zxjafbfont depend zxjatype -containersize 628 -containerchecksum 7bccea1e7b80bf4ad0af3f0f6b5636088cdac94562fc87b4b619cdef5c9b2d0abef1ab588a6525acf920449a3bdf2e201f146f8ccba2851cdb70b46da92128fb +containersize 672 +containerchecksum d9f73ff10afe2c91f9f6ad0e92ddcf8425ed7f51c7f08d291451775bcfcf3421d8d2afd78c7dbdceef995ac5a4262df89afce2b35e6c2dd064e8a310e1025f67 name collection-langkorean category Collection @@ -66790,7 +70034,7 @@ containerchecksum 2d93df728d34137c8f9a884aa2871a2980e806672006f2c5f0c5f79412d578 name collection-langother category Collection -revision 57757 +revision 59564 shortdesc Other languages relocated 1 longdesc Support for languages not otherwise listed, including Indic, @@ -66812,6 +70056,7 @@ depend babel-malay depend babel-sorbian depend babel-thai depend babel-vietnamese +depend bangla depend bangtex depend bengali depend burmese @@ -66857,8 +70102,8 @@ depend vntex depend wnri depend wnri-latex depend xetex-devanagari -containersize 804 -containerchecksum 0594347c16da942376cecee568ca57700245e744b84eeec39b5381025743de24f4954005fe5778dca3f0c44a5e2cd918eaf5f38db1c8771e5850a395e3040f7c +containersize 808 +containerchecksum 3db7709c3545df3713dc0a7df73f676f9f34df5fdc157c6a2d6a124a5bbd14f6f5f1f2938092e76be19417f9dd5ff4f84513c84beddafbe5c9747abd7fa597c0 name collection-langpolish category Collection @@ -66933,7 +70178,7 @@ containerchecksum 88bdc5cefd5519bc80e50e2d808abf32aae8f7c730023afab3babb82ab817d name collection-latex category Collection -revision 57048 +revision 63515 shortdesc LaTeX fundamental packages relocated 1 longdesc These packages are either mandated by the core LaTeX team, or @@ -66976,6 +70221,7 @@ depend l3packages depend latex depend latex-bin depend latex-fonts +depend latex-lab depend latexconfig depend letltxmacro depend ltxcmds @@ -66995,24 +70241,21 @@ depend stringenc depend tools depend uniquecounter depend url -containersize 696 -containerchecksum 0568a3251d71fb3106fbb3961427200419ae1df22d39b5e72c608e2d94fc35a0e5c77fbe41bbb6fa33610321f2620624264d99675e2f88e72f9d156693143a7e +containersize 700 +containerchecksum c73220abd1545907a1d8de37cb534d2c6bd2534f1b55f03c069f39f535c326d4b1852f8415d9876ca52645db939ad7a11c55f550a2096ccd4b8dd8be6a4114d6 name collection-latexextra category Collection -revision 59009 +revision 66548 shortdesc LaTeX additional packages relocated 1 longdesc A very large collection of add-on packages for LaTeX. depend 2up -depend ESIEEcv -depend GS1 -depend HA-prosper -depend Tabbing depend a0poster depend a4wide depend a5comb depend abraces +depend abspos depend abstract depend accessibility depend accsupp @@ -67030,10 +70273,13 @@ depend adrconv depend advdate depend akktex depend akletter +depend alchemist depend alertmessage depend alnumsec depend alphalph +depend alterqcm depend altfont +depend altsubsup depend amsaddr depend animate depend anonchap @@ -67054,6 +70300,7 @@ depend assignment depend assoccnt depend association-matrix depend atenddvi +depend atendofenv depend attachfile depend aurl depend authoraftertitle @@ -67062,6 +70309,7 @@ depend authorindex depend autofancyhdr depend autonum depend autopdf +depend autopuncitems depend avremu depend axessibility depend background @@ -67078,6 +70326,7 @@ depend beamercolorthemeowl depend beamerdarkthemes depend beamerposter depend beamersubframe +depend beamertheme-arguelles depend beamertheme-cuerna depend beamertheme-detlevcm depend beamertheme-epyt @@ -67088,8 +70337,12 @@ depend beamertheme-npbt depend beamertheme-phnompenh depend beamertheme-pure-minimalistic depend beamertheme-saintpetersburg +depend beamertheme-simpledarkblue +depend beamertheme-simpleplus +depend beamertheme-tcolorbox depend beamertheme-trigon depend beamertheme-upenn-bc +depend beamerthemeamurmaple depend beamerthemejltree depend beamerthemelalic depend beamerthemenirma @@ -67103,6 +70356,7 @@ depend bhcexam depend bibletext depend bigfoot depend bigints +depend bilingualpages depend biochemistry-colors depend bithesis depend bizcard @@ -67113,6 +70367,7 @@ depend blowup depend bnumexpr depend boites depend bold-extra +depend book-of-common-prayer depend bookcover depend bookest depend booklet @@ -67157,6 +70412,7 @@ depend ccaption depend cclicenses depend cd depend cd-cover +depend cdcmd depend cdpbundl depend cellprops depend cellspace @@ -67181,11 +70437,14 @@ depend chngcntr depend chronology depend circ depend circledsteps +depend circledtext depend classics depend classpack depend clefval depend cleveref +depend clicks depend clipboard +depend clistmap depend clock depend clrdblpg depend clrstrip @@ -67195,7 +70454,9 @@ depend cmsd depend cnltx depend cntformats depend cntperchap +depend codebox depend codedoc +depend codehigh depend codepage depend codesection depend collcell @@ -67205,6 +70466,7 @@ depend collection-pictures depend colophon depend color-edits depend colordoc +depend colorframed depend colorinfo depend coloring depend colorist @@ -67219,6 +70481,7 @@ depend comma depend commado depend commedit depend comment +depend commonunicode depend competences depend concepts depend concprog @@ -67231,10 +70494,12 @@ depend conv-xkv depend cooking depend cooking-units depend cool +depend coolfn depend coollist depend coolstr depend coolthms depend cooltooltips +depend coop-writing depend coordsys depend copyedit depend copyrightbox @@ -67244,9 +70509,13 @@ depend courseoutline depend coursepaper depend coverpage depend cprotect +depend cprotectinside depend crbox +depend create-theorem +depend crefthe depend crossreference depend crossreftools +depend crumbs depend csquotes depend css-colors depend csvmerge @@ -67261,6 +70530,7 @@ depend cv4tw depend cweb-latex depend cyber depend cybercic +depend darkmode depend dashbox depend dashrule depend dashundergaps @@ -67269,6 +70539,7 @@ depend datatool depend datax depend dateiliste depend datenumber +depend datestamp depend datetime depend datetime2 depend datetime2-bahasai @@ -67314,9 +70585,12 @@ depend datetime2-ukrainian depend datetime2-usorbian depend datetime2-welsh depend dblfloatfix +depend dbshow +depend debate depend decimal depend decorule depend delimtxt +depend democodetools depend denisbdoc depend diabetes-logbook depend diagbox @@ -67332,6 +70606,7 @@ depend dnaseq depend doclicense depend docmfp depend docmute +depend docshots depend doctools depend documentation depend docutils @@ -67376,9 +70651,6 @@ depend efbox depend egplot depend ehhline depend einfart -depend elegantbook -depend elegantnote -depend elegantpaper depend elements depend ellipsis depend elmath @@ -67416,11 +70688,13 @@ depend errata depend erw-l3 depend esami depend esdiff +depend esieecv depend esindex depend esint depend esint-type1 depend etaremune depend etextools +depend etl depend etoc depend eukdate depend eulerpx @@ -67429,6 +70703,7 @@ depend europecv depend everyhook depend everypage depend exam +depend exam-lite depend exam-n depend exam-randomizechoices depend examdesign @@ -67450,10 +70725,12 @@ depend exsol depend extract depend facsimile depend factura +depend familytree depend fancyhandout depend fancylabel depend fancynum depend fancypar +depend fancyqr depend fancyslides depend fancytabs depend fancytooltips @@ -67461,9 +70738,9 @@ depend fbox depend fcolumn depend fetchcls depend fewerfloatpages +depend ffcode depend ffslides depend fgruler -depend fibeamer depend fifo-stack depend figsize depend filecontents @@ -67473,6 +70750,7 @@ depend fileinfo depend filemod depend fink depend finstrut +depend fistrum depend fithesis depend fixcmex depend fixfoot @@ -67484,6 +70762,7 @@ depend flacards depend flagderiv depend flashcards depend flashmovie +depend flexipage depend flipbook depend flippdf depend floatflt @@ -67526,6 +70805,7 @@ depend ftnxtra depend fullblck depend fullminipage depend fullwidth +depend functional depend fundus-calligra depend fundus-cyr depend fundus-sueterlin @@ -67538,6 +70818,7 @@ depend gcard depend gcite depend gender depend genmpage +depend gensymb depend getfiledate depend getitems depend gindex @@ -67546,6 +70827,7 @@ depend gitfile-info depend gitinfo depend gitinfo2 depend gitlog +depend gitstatus depend gitver depend globalvals depend gloss @@ -67573,7 +70855,10 @@ depend gmiflink depend gmutils depend gmverb depend grabbox +depend gradient-text +depend grading-scheme depend graphbox +depend graphicscache depend graphicx-psmin depend graphicxbox depend graphpaper @@ -67584,11 +70869,14 @@ depend grid-system depend gridpapers depend gridset depend gridslides +depend gs1 depend guitlogo +depend ha-prosper depend hackthefootline depend halloweenmath depend handin depend handout +depend handoutwithnotes depend hang depend hanging depend hardwrap @@ -67596,7 +70884,14 @@ depend harnon-cv depend harpoon depend hc depend he-she +depend hep-acronym +depend hep-float +depend hep-math +depend hep-text +depend hep-title +depend hereapplies depend hhtensor +depend hideanswer depend highlightlatex depend histogr depend hitec @@ -67604,11 +70899,17 @@ depend hitreport depend hletter depend hobsub depend hpsdiss +depend href-ul depend hrefhide depend huawei +depend hvextern depend hvindex +depend hvlogos +depend hvpygmentex depend hvqrurl +depend hwemoji depend hypdestopt +depend hypdoc depend hypdvips depend hyper depend hyperbar @@ -67618,6 +70919,8 @@ depend hyphenat depend identkey depend idxcmds depend idxlayout +depend iexec +depend ifallfalse depend iffont depend ifmslide depend ifmtarg @@ -67632,6 +70935,7 @@ depend incgraph depend indextools depend inline-images depend inlinedef +depend inlinelabel depend inputenx depend inputtrc depend interactiveworkbook @@ -67652,6 +70956,8 @@ depend isotope depend issuulinks depend iwhdp depend jlabels +depend jmsdelim +depend jobname-suffix depend jslectureplanner depend jumplines depend jvlisting @@ -67661,6 +70967,7 @@ depend kerntest depend keycommand depend keyfloat depend keyindex +depend keyparse depend keyreader depend keystroke depend keyval2e @@ -67677,6 +70984,7 @@ depend labbook depend labels depend labels4easylist depend labelschanged +depend lambdax depend lastpackage depend lastpage depend latex-amsmath-dev @@ -67684,6 +70992,7 @@ depend latex-base-dev depend latex-bin-dev depend latex-firstaid-dev depend latex-graphics-dev +depend latex-lab-dev depend latex-tools-dev depend latex-uni8 depend latexcolors @@ -67732,6 +71041,7 @@ depend lsc depend lstaddons depend lstfiracode depend lt3graph +depend lt3rawobjects depend ltablex depend ltabptch depend ltxdockit @@ -67742,9 +71052,11 @@ depend ltxtools depend lua-check-hyphen depend lua-physical depend luatodonotes +depend macrolist depend macroswap depend magaz depend magicnum +depend magicwatermark depend mailing depend mailmerge depend makebarcode @@ -67756,6 +71068,7 @@ depend makecmds depend makecookbook depend makedtx depend makeglos +depend makelabels depend makerobust depend mandi depend manfnt @@ -67840,7 +71153,9 @@ depend multicolrule depend multidef depend multienv depend multiexpand +depend multifootnote depend multilang +depend multiple-choice depend multirow depend mversion depend mwe @@ -67899,6 +71214,7 @@ depend octavo depend oldstyle depend onlyamsmath depend opcit +depend opencolor depend optidef depend optional depend options @@ -67913,9 +71229,13 @@ depend overpic depend padcount depend pagecolor depend pagecont +depend pagegrid +depend pagelayout depend pagenote depend pagerange depend pageslts +depend palette +depend pangram depend paper depend papercdcase depend papermas @@ -67939,6 +71259,7 @@ depend pbalance depend pbox depend pbsheet depend pdf14 +depend pdfcol depend pdfcolmk depend pdfcomment depend pdfcprot @@ -67958,6 +71279,9 @@ depend pecha depend perltex depend permute depend petiteannonce +depend pgfmath-xfp +depend phfcc +depend phfextendedabstract depend phffullpagefigure depend phfnote depend phfparen @@ -67968,6 +71292,7 @@ depend phfthm depend philex depend phonenumbers depend photo +depend photobook depend picture depend piff depend pkgloader @@ -67981,19 +71306,24 @@ depend polynomial depend polytable depend postcards depend poster-mac +depend postnotes depend powerdot depend ppr-prv +depend ppt-slides depend practicalreports +depend precattl depend prelim2e depend preprint depend pressrelease depend prettyref +depend prettytok depend preview depend printlen depend probsoln depend program depend progress depend progressbar +depend projlib depend proofread depend properties depend prosper @@ -68005,6 +71335,7 @@ depend pstring depend pxgreeks depend pygmentex depend python +depend pythonimmediate depend qcm depend qstest depend qsymbols @@ -68038,6 +71369,8 @@ depend relenc depend relsize depend repeatindex depend repltext +depend rescansync +depend resmes depend returntogrid depend rgltxdoc depend rjlparshap @@ -68060,6 +71393,7 @@ depend runcode depend rvwrite depend sanitize-umlaut depend sauerj +depend saveenv depend savefnmark depend savesym depend savetrees @@ -68070,6 +71404,7 @@ depend scanpages depend schedule depend schooldocs depend scontents +depend scrambledenvs depend scrlayer-fancyhdr depend scrlttr2copy depend sdaps @@ -68106,11 +71441,12 @@ depend show2e depend showcharinbox depend showdim depend showexpl -depend showhyphens depend showlabels depend sidecap depend sidenotes +depend sidenotesplus depend silence +depend sillypage depend simplecd depend simplecv depend simpleinvoice @@ -68125,12 +71461,13 @@ depend skills depend skrapport depend slantsc depend smalltableof +depend smart-eqn depend smartref depend smartunits depend snapshot +depend snaptodo depend snotez depend soulpos -depend soulutf8 depend spacingtricks depend spark-otf depend sparklines @@ -68157,6 +71494,7 @@ depend stringstrings depend sttools depend stubs depend studenthandouts +depend styledcmd depend subdepth depend subdocs depend subeqn @@ -68176,14 +71514,15 @@ depend svn-multi depend svn-prov depend svninfo depend swfigure +depend swungdash depend syntax depend syntrace depend synttree +depend tabbing depend tabfigures depend tableaux depend tablefootnote depend tableof -depend tablestyles depend tablists depend tabls depend tablvar @@ -68193,6 +71532,7 @@ depend tabu depend tabularborder depend tabularcalc depend tabularew +depend tabularray depend tabulary depend tagging depend tagpair @@ -68208,6 +71548,7 @@ depend ted depend templatetools depend termcal depend termlist +depend termsim depend testhyphens depend testidx depend tex-label @@ -68217,6 +71558,8 @@ depend texmate depend texments depend texpower depend texshade +depend texsurgery +depend textcsc depend textfit depend textmerg depend textpos @@ -68239,6 +71582,7 @@ depend titlepic depend titleref depend titlesec depend titling +depend to-be-determined depend tocbibind depend tocdata depend tocloft @@ -68253,6 +71597,7 @@ depend topiclongtable depend totalcount depend totcount depend totpages +depend tramlines depend translations depend transparent depend trfsigns @@ -68277,8 +71622,10 @@ depend umoline depend underlin depend underoverlap depend undolabl +depend uni-titlepage +depend unicodefonttable +depend unisc depend unitconv -depend unitipa depend units depend unravel depend upmethodology @@ -68327,6 +71674,9 @@ depend wordcount depend wordlike depend worksheet depend wrapfig +depend wrapfig2 +depend wrapstuff +depend writeongrid depend wtref depend xargs depend xassoccnt @@ -68368,21 +71718,24 @@ depend ydoc depend yplan depend zebra-goodies depend zed-csp +depend zennote depend ziffer depend zref +depend zref-check +depend zref-clever +depend zref-vario depend zwgetfdate depend zwpagelayout -containersize 6332 -containerchecksum ea36c500bf0b7e1012ac178a67bfd5257b98de8c1a2d2df6290cf89c25bb5b2c9d4807f41158b1658dd8722b2766216b7b6ef3ac2dfd4edec992abd92b4d9f36 +containersize 6820 +containerchecksum c547dfe953accd36424b5a752a8a37cd35fc13c61a99a2ddde0bf36f945f585d57a1727cbca2b5cca8e29d593d58932e84e24032beb364649a6c110a573d89e7 name collection-latexrecommended category Collection -revision 57862 +revision 65512 shortdesc LaTeX recommended packages relocated 1 longdesc A collection of recommended add-on packages for LaTeX which -longdesc have widespread use, and the release candidate formats -longdesc latex-dev, etc. +longdesc have widespread use. depend anysize depend attachfile2 depend beamer @@ -68430,6 +71783,7 @@ depend ms depend newfloat depend ntgclass depend parskip +depend pdfcolfoot depend pdflscape depend pdfmanagement-testphase depend pdfpages @@ -68455,21 +71809,24 @@ depend xcolor depend xkeyval depend xltxtra depend xunicode -containersize 772 -containerchecksum f763ff9a6832abce7a148bc5e8b9e5860f883ce0a56ad2119d9e18e7fb4dad794456fdc07b3ea107dca17d4174910ebf1613f1072b946a80f29d291ae513d097 +containersize 744 +containerchecksum 952fe1be5136c0fded29381fe58935dedfe2c0f338f38d280c2a69bb718e2b93520f6f328f98d98a9161bbf106bda77cbddc4277e401a4f33e480dd3a7316483 name collection-luatex category Collection -revision 58124 +revision 65791 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/ +longdesc Packages for LuaTeX, a TeX engine using Lua as an embedded +longdesc scripting and extension language, with native support for +longdesc Unicode, OpenType/TrueType fonts, and both PDF and DVI output. +longdesc The LuaTeX engine itself (and plain formats) are in +longdesc collection-basic. depend addliga depend auto-pst-pdf-lua depend barracuda depend bezierplot +depend blopentype depend checkcites depend chickenize depend chinese-jfm @@ -68485,13 +71842,23 @@ depend enigma depend innerscript depend interpreter depend kanaparser +depend ligtype +depend linebreaker +depend lparse +depend lt3luabridge depend lua-typo depend lua-uca depend lua-ul depend lua-uni-algos depend lua-visual-debug +depend lua-widow-control +depend luaaddplot +depend luacas +depend luacensor depend luacode depend luacolor +depend luacomplex +depend luagcd depend luahyphenrules depend luaimageembed depend luaindex @@ -68502,40 +71869,63 @@ depend lualatex-doc depend lualatex-math depend lualatex-truncate depend lualibs +depend lualinalg +depend luamathalign +depend luamaths +depend luamodulartables depend luamplib +depend luaoptions depend luaotfload depend luapackageloader depend luaprogtable +depend luaquotes depend luarandom +depend luaset depend luatex85 depend luatexbase depend luatexko depend luatextra +depend luatruthtable depend luavlna depend luaxml +depend lutabulartools +depend minim +depend minim-math +depend minim-mp +depend minim-pdf +depend minim-xmp depend newpax depend nodetree depend odsfile depend optex depend pdfarticle +depend pdfextra +depend penlight +depend piton depend placeat depend plantuml +depend pyluatex +depend scikgtex depend selnolig +depend showhyphenation +depend showkerning +depend spacekern depend spelling depend stricttex +depend truthtable +depend tsvtemplate depend typewriter depend uninormalize -containersize 716 -containerchecksum 9534a3381a1dcbe324bb6a7f01645c92a2e922dbfe5787692ae8b10d1668be87120419e4cac48f68db9fe0d1f1c3dd396792ddf221253cc290b86564b87d322d +depend yamlvars +containersize 968 +containerchecksum 49f722cd1dfa2aed5c47b61ac393c1ba2c4c9156090fe05a2e079185c6d619ca020d08ac2c4644fac2a8ebd3aa4ca95481e500bba83e39ad260c4d4b7cfce628 name collection-mathscience category Collection -revision 57759 +revision 65753 shortdesc Mathematics, natural sciences, computer science packages relocated 1 depend 12many -depend SIstyle -depend SIunits depend accents depend alg depend algobox @@ -68547,6 +71937,7 @@ depend algxpar depend aligned-overset depend amscdx depend amstex +depend annotate-equations depend apxproof depend autobreak depend axodraw2 @@ -68555,6 +71946,7 @@ depend begriff depend binomexp depend biocon depend bitpattern +depend bodeplot depend bohr depend boldtensors depend bosisio @@ -68564,6 +71956,7 @@ depend bussproofs depend bussproofs-extra depend bytefield depend calculation +depend cartonaugh depend cascade depend causets depend ccfonts @@ -68576,6 +71969,7 @@ depend chemformula depend chemgreek depend chemmacros depend chemnum +depend chemobabel depend chemplants depend chemschemex depend chemsec @@ -68594,6 +71988,8 @@ depend concrete depend conteq depend correctmathalign depend cryptocode +depend csassignments +depend cvss depend decision-table depend delim depend delimseasy @@ -68605,12 +72001,14 @@ depend dijkstra depend drawmatrix depend drawstack depend dyntree +depend easing depend ebproof depend econometrics depend eltex depend emf depend endiagram depend engtlc +depend eolang depend eqexpl depend eqnarray depend eqnnumwarn @@ -68619,7 +72017,10 @@ depend extarrows depend extpfeil depend faktor depend fascicules +depend fixdif +depend fixmath depend fnspe +depend formal-grammar depend fouridx depend functan depend galois @@ -68632,10 +72033,12 @@ depend grundgesetze depend gu depend helmholtz-ellis-ji-notation depend hep +depend hep-reference depend hepnames depend hepparticles depend hepthesis depend hepunits +depend ibrackets depend includernw depend interval depend ionumbers @@ -68659,30 +72062,42 @@ depend mathfixs depend mathlig depend mathpartir depend mathpunctspace +depend mathsemantics depend matlab-prettifier depend matrix-skeleton depend mattens +depend mecaso depend membranecomputing depend memorygraphs +depend messagepassing depend mgltex depend mhchem depend mhequ depend miller depend mismath depend multiobjective +depend naive-ebnf +depend namedtensor depend natded depend nath +depend nchairx depend nicematrix depend nuc depend nucleardata depend numerica +depend numerica-plus +depend numerica-tables depend objectz depend oplotsymbl depend ot-tableau depend oubraces +depend overarrows +depend pascaltriangle depend perfectcut +depend pfdicons depend physconst depend physics +depend physics2 depend physunits depend pinoutikz depend pm-isomath @@ -68697,7 +72112,9 @@ depend pseudocode depend pythonhighlight depend qsharp depend rank-2-roots +depend rbt-mathnotes depend rec-thy +depend resolsysteme depend rest-api depend revquantum depend ribbonproofs @@ -68712,10 +72129,14 @@ depend sfg depend shuffle depend simplebnf depend simpler-wick +depend simples-matrices depend simplewick +depend sistyle +depend siunits depend siunitx depend skmath depend spalign +depend spbmark depend stanli depend statex depend statex2 @@ -68740,7 +72161,9 @@ depend tensor depend tex-ewd depend textgreek depend textopo +depend thermodynamics depend thmbox +depend tiscreen depend turnstile depend ulqda depend unitsdef @@ -68751,12 +72174,13 @@ depend yhmath depend youngtab depend yquant depend ytableau -containersize 1480 -containerchecksum 6d82088780ac299028a33232fe067408c2140cb8d17a8d40a2d3d510bb5d29b41f1c11299de31c061701aaa723d85a71b1f26f7bb45b7a4b500168bbd50c91d2 +depend zx-calculus +containersize 1664 +containerchecksum 0d15380e672b11509f8ff78ae57cdf5f75b862522d9287e5577a33bdad5901ad85646d4d4c573653b3f838ef9469b86218a98bdfc5ab97e00c618eceaa1e34c3 name collection-metapost category Collection -revision 50293 +revision 64878 shortdesc MetaPost and Metafont packages relocated 1 depend automata @@ -68778,6 +72202,7 @@ depend fiziko depend garrigues depend gmp depend hatching +depend hershey-mp depend latexmp depend mcf2graph depend metago @@ -68788,6 +72213,7 @@ depend metapost-colorbrewer depend metauml depend mfpic depend mfpic4ode +depend minim-hatching depend mp3d depend mparrows depend mpattern @@ -68804,12 +72230,12 @@ depend splines depend suanpan depend textpath depend threeddice -containersize 540 -containerchecksum 09dfaa35971f85134d0854c08a99c4d2b01ddf08e8ab97449460bb99d1236a38c48643501e7bb56197a844491509af301da6c4f75a33d9286601633211ec7d93 +containersize 556 +containerchecksum c17510f676b4aec1887893083e00438be77d879e44e52aedeb040ae1eb593d1d688fefc8eaa48939db0f83e8d1743cea3030490e73d8c3d65689b3e4db21f016 name collection-music category Collection -revision 57878 +revision 65862 shortdesc Music packages relocated 1 longdesc Music-related fonts and packages. @@ -68843,16 +72269,18 @@ depend octave depend piano depend pmx depend pmxchords +depend recorder-fingering depend songbook +depend songproj depend songs depend xml2pmx depend xpiano -containersize 476 -containerchecksum bc842942513a72c6a0f2346025739f09477ae1e920eaefc5e396e0b68ba53465b745db9d9c4534ec39b70f43410a0ae036c69a4e2226944b8f128b507340cc15 +containersize 496 +containerchecksum 951e172129275fa2cb7ccea6bf23f27484503533ebee4c3bef7d2f4ddda5940c15713b104a584704a0b9ec710e2ae363b6ec130747a6e169a7c461e509714a77 name collection-pictures category Collection -revision 58924 +revision 66360 shortdesc Graphics, pictures, diagrams relocated 1 longdesc Including TikZ, pict, etc., but MetaPost and PStricks are @@ -68875,12 +72303,14 @@ depend bondgraphs depend braids depend bxeepic depend byo-twemojis +depend byrne depend cachepic depend callouts depend celtic depend chemfig depend circuit-macros depend circuitikz +depend coffeestains depend collection-basic depend combinedgraphics depend curve @@ -68908,6 +72338,7 @@ depend euflag depend fast-diagram depend fig4latex depend figchild +depend figput depend fitbox depend flowchart depend forest @@ -68928,11 +72359,13 @@ depend hobby depend hvfloat depend istgame depend kblocks +depend kinematikz depend knitting depend knittingpattern depend ladder depend lapdf depend latex-make +depend liftarm depend lpic depend lroundrect depend luamesh @@ -68947,13 +72380,16 @@ depend mkpic depend modiagram depend neuralnetwork depend nl-interval +depend nndraw depend numericplots +depend outilsgeomtikz depend pb-diagram depend penrose depend petri-nets depend pgf depend pgf-blur -depend pgf-cmykshadings +depend pgf-interference +depend pgf-periodictable depend pgf-pie depend pgf-soroban depend pgf-spectra @@ -68972,6 +72408,7 @@ depend pictex depend pictex2 depend pinlabel depend pixelart +depend pixelarttikz depend pmgraph depend postage depend prerex @@ -68987,18 +72424,22 @@ depend randbild depend randomwalk depend realhats depend reotex +depend robotarm depend rviewport depend sa-tikz +depend sacsymb depend schemabloc depend scratch depend scratch3 depend scsnowman depend setdeck depend signchart +depend simplenodes depend simpleoptics depend smartdiagram depend spath3 depend spectralsequences +depend strands depend swimgraf depend syntaxdi depend table-fct @@ -69006,11 +72447,13 @@ depend texdraw depend ticollege depend tikz-3dplot depend tikz-among-us +depend tikz-bagua depend tikz-bayesnet depend tikz-bbox depend tikz-cd depend tikz-dependency depend tikz-dimline +depend tikz-ext depend tikz-feynhand depend tikz-feynman depend tikz-imagelabels @@ -69020,6 +72463,7 @@ depend tikz-karnaugh depend tikz-ladder depend tikz-lake-fig depend tikz-layers +depend tikz-mirror-lens depend tikz-nef depend tikz-network depend tikz-opm @@ -69030,11 +72474,14 @@ depend tikz-planets depend tikz-qtree depend tikz-relay depend tikz-sfc +depend tikz-swigs depend tikz-timing depend tikz-trackschematic depend tikz-truchet +depend tikzbricks depend tikzcodeblocks depend tikzducks +depend tikzfill depend tikzinclude depend tikzlings depend tikzmark @@ -69044,10 +72491,12 @@ depend tikzpackets depend tikzpagenodes depend tikzpeople depend tikzpfeile +depend tikzpingus depend tikzposter depend tikzscale depend tikzsymbols depend tikztosvg +depend tikzviolinplots depend tile-graphic depend timing-diagrams depend tipfr @@ -69059,22 +72508,27 @@ depend tkz-fct depend tkz-graph depend tkz-orm depend tkz-tab +depend tkzexample +depend tonevalue depend tqft depend tsemlines depend tufte-latex +depend twemojis depend tzplot depend utfsym depend venndiagram depend visualpstricks +depend wheelchart depend worldflags +depend xistercian depend xpicture depend xypic -containersize 1448 -containerchecksum 0465a084f27c59f8fdc8ff386b8a0dd0e8f3c484be463ab89e29bedd652b6b61eec37cea4ec12f488e7902d0422bb04e4dda1e58915cc27eaa12dc8e7a4944f1 +containersize 1572 +containerchecksum 74b6c27b019dbcca0cf1a0cf688bcfe63e63fb142a93aba7076a24b2e8c16881bb05a2b4bd50db9b825c859effd230f5df8040d68341b92373db8b8aaf15f08c name collection-plaingeneric category Collection -revision 58874 +revision 65622 shortdesc Plain (La)TeX packages relocated 1 longdesc Add-on packages and macros that work with plain TeX, often @@ -69092,6 +72546,7 @@ depend chronosys depend collection-basic depend colorsep depend compare +depend crossrefenum depend cweb-old depend dinat depend dirtree @@ -69102,10 +72557,8 @@ depend encxvlna depend epigram depend epsf depend epsf-dvipdfmx -depend expkv -depend expkv-cs -depend expkv-def -depend expkv-opt +depend expex-acro +depend expkv-bundle depend fenixpar depend figflow depend fixpdfmag @@ -69122,6 +72575,7 @@ depend graphics-pln depend gtl depend hlist depend hyplain +depend inputnormalization depend insbox depend js-misc depend kastrup @@ -69147,6 +72601,7 @@ depend olsak-misc depend outerhbox depend path depend pdf-trans +depend pdfmsym depend pitex depend placeins-plain depend plainpkg @@ -69172,9 +72627,11 @@ depend tex-ps depend tex4ht depend texapi depend texdate +depend texdimens depend texinfo depend timetable depend tracklang +depend transparent-io depend treetex depend trigonometry depend ulem @@ -69186,12 +72643,12 @@ depend xintsession depend xlop depend yax depend zztex -containersize 940 -containerchecksum dc1481c1acd3a0fd8ed7b99ac8625dd1ca2c9693671d35ef05dfcc22e7a4fa59ccf1ad74ac6b9bf464b8e2cbc95001b4ff36c3fcd29398bbbafc87e56a953068 +containersize 976 +containerchecksum 848081f23c64b1dd159add9a4756c0fe1f7176727b9665835a1eb1c1ed5765e119f71ce23ce750b87a33ed091be944316f35b3db70ea89ef56801aba04d06b4d name collection-pstricks category Collection -revision 54455 +revision 65367 shortdesc PSTricks relocated 1 longdesc PSTricks core and all add-on packages. @@ -69200,6 +72657,7 @@ depend bclogo depend collection-basic depend collection-plaingeneric depend dsptricks +depend luapstricks depend makeplot depend pdftricks depend pdftricks2 @@ -69235,6 +72693,7 @@ depend pst-exa depend pst-feyn depend pst-fill depend pst-fit +depend pst-flags depend pst-fr3d depend pst-fractal depend pst-fun @@ -69242,10 +72701,10 @@ depend pst-func depend pst-gantt depend pst-geo depend pst-geometrictools -depend pst-ghsb depend pst-gr3d depend pst-grad depend pst-graphicx +depend pst-hsb depend pst-infixplot depend pst-intersect depend pst-jtree @@ -69307,19 +72766,18 @@ depend pstricks_calcnotes depend uml depend vaucanson-g depend vocaltract -containersize 808 -containerchecksum 653143f95761352dc349c66f618b01a77650b20bf8b2cf45137e72b2f05ba3dcefbf0238f1b2757297ac37ec6cbd4a05283c0bfc03d6e153e57f4be23ca8f87f +containersize 816 +containerchecksum 508276fe37018f3d9773fc7cda0cb37edcdd28e9cf8ab54ed5be16b07c2066de4626a561bbe387c7bba0fb82d4102be406efd721a4b5dc90110b8560083d2b07 name collection-publishers category Collection -revision 59002 +revision 66330 shortdesc Publisher styles, theses, etc. relocated 1 -depend IEEEconf -depend IEEEtran depend aastex depend abnt depend abntex2 +depend abntexto depend acmart depend acmconf depend active-conf @@ -69328,7 +72786,6 @@ depend afparticle depend afthesis depend aguplus depend aiaa -depend ametsoc depend anonymous-acm depend anufinalexam depend aomart @@ -69346,10 +72803,14 @@ depend aucklandthesis depend bangorcsthesis depend bangorexam depend bath-bst -depend beamer-FUBerlin +depend beamer-fuberlin depend beamer-verona depend beilstein +depend bfh-ci depend bgteubner +depend bjfuthesis +depend bmstu +depend bmstu-iu8 depend br-lex depend brandeis-dissertation depend brandeis-problemset @@ -69390,7 +72851,8 @@ depend fei depend ftc-notebook depend gaceta depend gammas -depend gatech-thesis +depend geradwp +depend gfdl depend gradstudentresume depend grant depend gsemthesis @@ -69400,6 +72862,8 @@ depend hagenberg-thesis depend har2nat depend hecthese depend hep-paper +depend hfutexam +depend hfutthesis depend hithesis depend hitszbeamer depend hitszthesis @@ -69407,7 +72871,9 @@ depend hobete depend hu-berlin-bundle depend hustthesis depend icsv +depend ieeeconf depend ieeepes +depend ieeetran depend ijmart depend ijsra depend imac @@ -69418,8 +72884,12 @@ depend iscram depend jacow depend jmlr depend jnuexam +depend jourcl depend jpsj +depend jwjournal depend kdgdocs +depend kdpcover +depend kfupm-math-exam depend kluwer depend ksp-thesis depend ku-template @@ -69427,6 +72897,7 @@ depend langsci depend langsci-avm depend limecv depend lion-msc +depend llncs depend llncsconf depend lni depend lps @@ -69449,11 +72920,16 @@ depend nature depend navydocs depend nddiss depend ndsu-thesis +depend ndsu-thesis-2022 depend nih depend nihbiosketch +depend njustthesis +depend njuthesis +depend njuvisual depend nostarch depend novel depend nrc +depend nwafuthesis depend nwejm depend onrannual depend opteng @@ -69464,7 +72940,7 @@ depend pkuthss depend powerdot-fuberlin depend powerdot-tuliplab depend pracjourn -depend procIAGssymp +depend prociagssymp depend proposal depend prtec depend ptptex @@ -69482,8 +72958,11 @@ depend sageep depend sapthesis depend schule depend scientific-thesis-cover +depend scripture depend scrjrnl depend sduthesis +depend se2thesis +depend seu-ml-assign depend seuthesis depend seuthesix depend shortmathj @@ -69506,8 +72985,10 @@ depend thesis-gwu depend thesis-qom depend thesis-titlepage-fhac depend thuaslogos +depend thubeamer depend thucoursework depend thuthesis +depend tidyres depend timbreicmc depend tlc-article depend topletter @@ -69526,10 +73007,13 @@ depend ucbthesis depend ucdavisthesis depend ucsmonograph depend ucthesis +depend udes-genie-these depend uestcthesis +depend ufrgscca depend uhhassignment depend uiucredborder depend uiucthesis +depend ukbill depend ulthese depend umbclegislation depend umich-thesis @@ -69537,11 +73021,14 @@ depend umthesis depend unam-thesis depend unamth-template depend unamthesis +depend unbtex depend unifith +depend unigrazpub depend unitn-bimrep depend univie-ling depend unizgklasa depend unswcover +depend uol-physics-report depend uothesis depend uowthesis depend uowthesistitlepage @@ -69549,16 +73036,23 @@ depend urcls depend uspatent depend ut-thesis depend utexasthesis +depend uvaletter +depend uwa-colours +depend uwa-letterhead +depend uwa-pcf +depend uwa-pif depend uwthesis depend vancouver depend wsemclassic depend xduthesis +depend xduts depend xmuthesis depend yathesis depend yazd-thesis +depend yb-book depend york-thesis -containersize 1548 -containerchecksum 431f3c14b442940da7bc1cbc9c50afe2ca72120a90987890b4eb441faf8342b6658b6a8bf176fc6ac4f4d0483fa7d5f2268a6aa5d4b491b03536c1f5031c377f +containersize 1688 +containerchecksum 77d17cd2fee757ba5ccafba77e0209015f131617a5eab9ef5fb5eed52d480921901c132fbd172c3123fe183956b8040a4c56a97e4fb75ea7391d2881b745c46f name collection-texworks category Collection @@ -69573,19 +73067,19 @@ containerchecksum b1f38877115fb6efc9b63a5591c399b799f3a258e342d5e198b74b58262846 name collection-wintools category Collection -revision 54074 +revision 65952 shortdesc Windows-only support programs relocated 1 longdesc Utilities for Windows, since they are not readily available longdesc there: chktex, unzip, wget, xpdf, and the dviout previewer. -depend dviout.win32 -depend wintools.win32 +depend dviout.windows +depend wintools.windows containersize 388 -containerchecksum 9bf4c58094748424c1b60a3731d9cb2b1ad1d24764469072da693de26a4e4e857df3bcab6d4c2b5ae7454a69f9730fc596fd156b46b7704eafb1421f6936d66a +containerchecksum 8af5c376990a7ed062588a0eb8695455936a92376b94f157d75a22f976f62017999aee8aeb692a07f98a64f05ac98bf4aba79c5f75688c54ad2196807471dc1b name collection-xetex category Collection -revision 58543 +revision 64951 shortdesc XeTeX and packages relocated 1 longdesc Packages for XeTeX, the Unicode/OpenType-enabled TeX by @@ -69614,10 +73108,10 @@ depend simple-thesis-dissertation depend tetragonos depend ucharclasses depend unicode-bidi +depend unimath-plain-xetex depend unisugar depend xebaposter depend xechangebar -depend xecjk depend xecolor depend xecyr depend xeindex @@ -69633,8 +73127,8 @@ depend xetexfontinfo depend xetexko depend xevlna depend zbmath-review-template -containersize 656 -containerchecksum a312699117932ac031f6b09fb0456518dec5c92fa046df27cfc0439f686c0dd26a362075b78b3b8d08dfbdf54f073c2ee4643801d63c67a79d728ee52db3dffb +containersize 660 +containerchecksum 457c4e7a3e2089adc69173950c5d3fa177c6e03c5936c49328bbd3c276d9940ba5aca974aea4b97c5dd51b6ec1ca9ebe28861e730aef63b1312589e0cb16df1e name collref category Package @@ -69763,6 +73257,30 @@ catalogue-ctan /macros/latex/contrib/colordoc catalogue-license lppl1 catalogue-topics doc-supp +name colorframed +category Package +revision 64551 +shortdesc Fix color problems with the package "framed" +relocated 1 +longdesc This package fixes problems with colour loss that occurres in +longdesc the environments of the framed package. +containersize 3060 +containerchecksum a1e623ec218635694ae31046002648ad840f9f30099e8a7d453ff4301bf2855a47e1139d20760db4d53d69292a0e99ecbfb4b4ec37046d4023ba61249f701434 +doccontainersize 30740 +doccontainerchecksum f3dcb1d97f012dbac252b097117573b889d5bb77490d7a2c6dc40e87e7bafc31b09b411fd5f764d9db915b3142c7549d411b28f9cd3adb63a1afe444899e3092 +docfiles size=12 + RELOC/doc/latex/colorframed/README.md details="Readme" + RELOC/doc/latex/colorframed/colorframed-doc.pdf details="Package documentation" + RELOC/doc/latex/colorframed/colorframed-doc.tex +runfiles size=2 + RELOC/tex/latex/colorframed/colorframed.sty +catalogue-contact-bugs https://github.com/jfbu/colorframed/issues +catalogue-contact-repository https://github.com/jfbu/colorframed +catalogue-ctan /macros/latex/contrib/colorframed +catalogue-license lppl1.3c +catalogue-topics decoration +catalogue-version 0.9b + name colorinfo category Package revision 15878 @@ -69809,37 +73327,40 @@ catalogue-version 0.2 name colorist category Package -revision 58434 +revision 66434 shortdesc Write your articles or books in a colorful way relocated 1 longdesc This package offers you a LaTeX style file and two classes to longdesc typeset articles or books in a colorful way. These classes -longdesc currently have native support for English and French +longdesc currently have native support for English, French, German, +longdesc Italian, Portuguese (European and Brazilian), and Spanish longdesc typesetting. They compile with any major TeX engine. You may longdesc also wish to consider the packages lebhart and beaulivre, which longdesc are enhanced versions of the classes provided here. They have longdesc unicode support, thus can only be used with either XeLaTeX or -longdesc LuaLaTeX. Currently they have native support for English, -longdesc French, and Chinese typesetting, and also use more beautiful -longdesc fonts. -containersize 7328 -containerchecksum 9787be368fba699437305f4757434ad5e8cd19bbf200bd42517478a46ce01173cef8d7fdef204c1b02fbec0b09f40d44a84a7e79ba98b54705f5864dcbe511db -doccontainersize 54348 -doccontainerchecksum e6991e2a45b789f907d4534e86970d6a0abb63e98fc1e281f2568303d83bcde569881f808813ead6c09f598a62b2d0411589355db2529a90e2f48d22594f29f3 -docfiles size=21 +longdesc LuaLaTeX. Currently they have native support for Chinese (both +longdesc simplified and traditional), English, French, German, Italian, +longdesc Japanese, Portuguese (European and Brazilian), Russian and +longdesc Spanish typesetting, and also use more beautiful fonts. +depend projlib +containersize 10812 +containerchecksum c6da4e3f9fb92144f06b5cc113dcaf8e7bc7ecb6019a490cdf6f3be4e825ae81fe88758f19c84a1049437ed416cafbf33ce0a8602cb185b847a1c90c709946c3 +doccontainersize 7448 +doccontainerchecksum 81541ddb185e3b992c8001ecddd204663d34a2b146a5d515c63871dc19d1a1d6250f9222847253d7faa80eecbcf2ab2f9c1a0b2518a5429a854d55c74fe3a22c +docfiles size=7 + RELOC/doc/latex/colorist/DEPENDS.txt RELOC/doc/latex/colorist/LICENSE RELOC/doc/latex/colorist/README.md details="Readme" - RELOC/doc/latex/colorist/colorist-doc.pdf details="Package documentation" - RELOC/doc/latex/colorist/colorist-doc.tex -runfiles size=9 +runfiles size=16 RELOC/tex/latex/colorist/colorart.cls RELOC/tex/latex/colorist/colorbook.cls + RELOC/tex/latex/colorist/colorist-fancy.sty RELOC/tex/latex/colorist/colorist.sty catalogue-also lebhart beaulivre catalogue-contact-repository https://github.com/Jinwen-XU/colorist catalogue-ctan /macros/latex/contrib/colorist catalogue-license lppl1.3c -catalogue-topics class article-like book-pub +catalogue-topics class expl3 article-like book-pub class multilingual name colorprofiles category Package @@ -69937,32 +73458,32 @@ catalogue-version 1.0 name colortbl category Package -revision 53545 +revision 64015 shortdesc Add colour to LaTeX tables relocated 1 longdesc The package allows rows and columns to be coloured, and even longdesc individual cells. -containersize 3284 -containerchecksum b24972e5a945458318a7b383ad652c7851f01e6c66fa40f8d670f4f3724d280e18d825fc905d76d111d7de969bf6be29f45447eaab78fe985275984a23fd47bd -doccontainersize 592016 -doccontainerchecksum 4de654d192374960d94c13ff47785ce40f2b0a298bae0d1b5342119f018844653ccf4f4c99c6286accdd62d94bab82cdf6eef1f7977cbb583cf37e21496b0420 -docfiles size=152 +containersize 3676 +containerchecksum f1c342fe4a90002959283b9b3ef5a2dcfd9b62e6d559f0838ed102546ba8fd55c2a2234ad2d2824b9141a055ba02a9bf2c4b5877c24f5b5dca87360067e94acc +doccontainersize 627828 +doccontainerchecksum c037827d5624448807284af963c9fffc424e258852518f77b3d50792e63ecc26c361f6e504638689dfd589fb73b86f77be7c4519398994bd53c68c1d5dcf6c04 +docfiles size=165 RELOC/doc/latex/colortbl/README.txt details="Readme" RELOC/doc/latex/colortbl/colortbl-DE.pdf details="Package manual (German)" language="de" RELOC/doc/latex/colortbl/colortbl-DE.tex RELOC/doc/latex/colortbl/colortbl.pdf details="Package manual (English)" language="en" -srccontainersize 11468 -srccontainerchecksum 6e88584339dfc54f00b9f18096c2c35fe147f7da1e0f08807ad0964d22dfc61554ec28335eef428c76adaff8d1cf37ccee4945f128869465751ae5c1f1e31d03 -srcfiles size=12 +srccontainersize 12780 +srccontainerchecksum 252a17abd3fccfe0f4fb7ec0f2f0ae79e60bd5e3ae015e85619a9cf9f362a213b7eff2a9fa45d199885f5ed09d990f9c26c22eba722f42b34cd75a0feb880404 +srcfiles size=13 RELOC/source/latex/colortbl/colortbl.dtx RELOC/source/latex/colortbl/colortbl.ins -runfiles size=3 +runfiles size=4 RELOC/tex/latex/colortbl/colortbl.sty catalogue-also xcolor catalogue-ctan /macros/latex/contrib/colortbl catalogue-license lppl catalogue-topics colour table -catalogue-version 1.0e +catalogue-version 1.0f name colorwav category Package @@ -70782,6 +74303,34 @@ catalogue-license gpl2 catalogue-topics cond-comp editorial catalogue-version 3.8 +name commonunicode +category Package +revision 62901 +shortdesc Convert common unicode symbols to LaTeX code +relocated 1 +longdesc The aim of this LaTeX package is to provide a complete as +longdesc possible list of common Unicode symbols with their translations +longdesc to LaTeX code. This is useful in the development of templates +longdesc which are intended to work with modern TeX engines (LuaTeX, +longdesc XeTeX) as well as traditional ones (TeX, pdfTeX). +containersize 5628 +containerchecksum a395e5ad2b08ffd1a29b99c66b65ddb7ab3d5207290db71ba85a0058a5404f0366030d229c5c4bc8a4450bad0a0da9fb5f6d374be2c05cbfa7a8217fadca7b11 +doccontainersize 324112 +doccontainerchecksum dcb1071fb36eae56f6aa8b90e5b88ad32566a5dd410cf9f25c157789fac73d38d24965621f8517980cebbabb957a62f3dfc9445e00c83ed0fc43a11306684029 +docfiles size=144 + RELOC/doc/latex/commonunicode/LICENSE + RELOC/doc/latex/commonunicode/README.md details="Readme" + RELOC/doc/latex/commonunicode/commonunicode.pdf details="Package documentation" + RELOC/doc/latex/commonunicode/commonunicode.tex +runfiles size=14 + RELOC/tex/latex/commonunicode/commonunicode.sty +catalogue-contact-bugs https://github.com/ppizarror/common-unicode/issues +catalogue-contact-repository https://github.com/ppizarror/common-unicode +catalogue-ctan /macros/latex/contrib/commonunicode +catalogue-license mit +catalogue-topics unicode +catalogue-version 1.0.0 + name commutative-diagrams category Package revision 55526 @@ -70910,43 +74459,43 @@ catalogue-license lppl1.3c catalogue-topics graphics-symb catalogue-version 0.81a -name components-of-TeX +name components category Package -revision 15878 +revision 63184 catalogue components shortdesc Components of TeX relocated 1 longdesc An introduction to the components and files users of TeX may longdesc encounter. -containersize 392 -containerchecksum 364836128154056aa5d1e005144a64aa64ee105c78d34127958599c8c0eb82aa70e856017be3d7166d723a0fd7c9656d72cb24e46bd61d8768c1dc82991c5f77 -doccontainersize 11052 -doccontainerchecksum 5da762a898a6cb95d5da95f444e862c8d0ac351ca63eca776fc1a9e35e2fb00389d414a85fa1bef357abc3d68b691a36ddac8c6aba20b7ea6f398c9017ac13fb +containersize 368 +containerchecksum e7f8aebb11919cd389648b1417c9d43f163858b7de28592998636a69003274d3825bb23f8faa2c29101d51343d9865780523cd95a2a014433399e2373970a116 +doccontainersize 11036 +doccontainerchecksum f64c61df38424c72abbb778e7e39023193562228bc1eaa3f683bd81f3eb61075c4948b75a47d81946f4acf1cb5affd242309b95a248240ee413b8dd5dcb40a96 docfiles size=11 - RELOC/doc/generic/components-of-TeX/README details="Package README" - RELOC/doc/generic/components-of-TeX/etexkomp.tex - RELOC/doc/generic/components-of-TeX/figkomp.tex - RELOC/doc/generic/components-of-TeX/figtotal.tex - RELOC/doc/generic/components-of-TeX/names.sty - RELOC/doc/generic/components-of-TeX/texrep.sty + RELOC/doc/generic/components/README details="Package README" + RELOC/doc/generic/components/etexkomp.tex + RELOC/doc/generic/components/figkomp.tex + RELOC/doc/generic/components/figtotal.tex + RELOC/doc/generic/components/names.sty + RELOC/doc/generic/components/texrep.sty catalogue-ctan /info/components-of-TeX catalogue-license gpl catalogue-topics documentation name comprehensive category Package -revision 55667 +revision 59099 shortdesc Symbols accessible from LaTeX relocated 1 -longdesc Over 14000 symbols are listed as a set of tables. The tables of +longdesc Over 18000 symbols are listed as a set of tables. The tables of longdesc symbols are ordered in a logical way (the document begins with longdesc a 'frequently requested symbols' list), the aim being to make longdesc the document a convenient way of looking up symbols. containersize 500 -containerchecksum 57046d6981bcda498ff025644fe915ce67a01b60c6fe58431060754e801b51b9332eb718fca263fd39b9b728b9db6702d83e227d8ed579c03d58f6d653c76a0d -doccontainersize 17436548 -doccontainerchecksum a2c4c855c0321e2d57d430f6788e762ab1bc8d51a5513fbbf0f6f4b53874d8816b877d9e4d5f3222e1014b8ea8384ff16a9d52742e9bebfc7932e08ab170e53e -docfiles size=4929 +containerchecksum 9c414012e570fac3a3aee90cc7b6983d6791dcdcda0709722dc5354068815b2407fd4ed9196b8e961164698597324b9da8ff85b741eca86a4962701e0ce40d1a +doccontainersize 29910680 +doccontainerchecksum 24c7c0fdda00f5f5dd7c66c383d95a4fd99b41c5470482d1e53e8f061796cab5955b8043f80a2a57c9f045765ff1d10f0c7b48b10705a2677b80b67d01dafa96 +docfiles size=8199 RELOC/doc/latex/comprehensive/README details="Package README" RELOC/doc/latex/comprehensive/README.TEXLIVE RELOC/doc/latex/comprehensive/SYMLIST details="Plain text list of symbol commands" @@ -70971,6 +74520,7 @@ docfiles size=4929 RELOC/doc/latex/comprehensive/source/makefakefdsymbol RELOC/doc/latex/comprehensive/source/makefakestarfont RELOC/doc/latex/comprehensive/source/makefakestix + RELOC/doc/latex/comprehensive/source/makefakeworldflags RELOC/doc/latex/comprehensive/source/makerawtables RELOC/doc/latex/comprehensive/source/symbols.ist RELOC/doc/latex/comprehensive/source/symbols.tex @@ -70980,7 +74530,7 @@ docfiles size=4929 catalogue-ctan /info/symbols/comprehensive catalogue-license lppl1.3 catalogue-topics font-index ref-latex -catalogue-version 13.0 +catalogue-version 14.0 name computational-complexity category Package @@ -71190,6 +74740,33 @@ catalogue-ctan /fonts/concmath catalogue-license lppl catalogue-topics font font-mf font-maths +name concmath-otf +category Package +revision 65683 +shortdesc Concrete based OpenType Math font +relocated 1 +longdesc This package provides an OpenType version of the Concrete Math +longdesc font created by Ulrik Vieth in Metafont. "concmath-otf.sty" is +longdesc a replacement for the original "concmath.sty" package to be +longdesc used with LuaTeX or XeTeX engines. +containersize 135020 +containerchecksum efbd04812e5c617adb4caac1de59caf11eabedb2f145dc069e49c572d14f4dacaadb0de112235c29b5f12f3c54a2d4f66a4e5e7a6928dd178be9b127d5ef550e +doccontainersize 1857764 +doccontainerchecksum 3ec3b3a39f21895413fc05e1fa54a3896b2fe6b32fb390a5ff9691a54c0fa39f2a532da58edfba4f2c34b020495b8c673d107e28abb7fb6d86e6246188567374 +docfiles size=483 + RELOC/doc/fonts/concmath-otf/README.md details="Readme" + RELOC/doc/fonts/concmath-otf/concmath-otf.ltx + RELOC/doc/fonts/concmath-otf/concmath-otf.pdf details="Package documentation" + RELOC/doc/fonts/concmath-otf/unimath-concrete.ltx + RELOC/doc/fonts/concmath-otf/unimath-concrete.pdf details="List of glyphs" +runfiles size=58 + RELOC/fonts/opentype/public/concmath-otf/Concrete-Math.otf + RELOC/tex/latex/concmath-otf/concmath-otf.sty +catalogue-ctan /fonts/concmath-otf +catalogue-license ofl lppl1.3 +catalogue-topics font font-otf font-maths font-supp +catalogue-version 0.25 + name concprog category Package revision 18791 @@ -71512,7 +75089,7 @@ catalogue-version 0.1.1 name context category Package -revision 58167 +revision 66546 shortdesc The ConTeXt macro package longdesc A full featured, parameter driven macro package, which fully longdesc supports advanced interactive documents. See the ConTeXt garden @@ -71523,24 +75100,14 @@ depend lm depend lm-math depend luatex depend manfnt-font -depend metapost depend mflogo-font -depend mptopdf -depend pdftex depend stmaryrd -depend xetex -execute AddFormat name=cont-en engine=pdftex patterns=cont-usr.tex options="-8bit *cont-en.mkii" -execute AddFormat name=cont-en engine=xetex patterns=cont-usr.tex options="-8bit *cont-en.mkii" -execute AddFormat name=cont-fr mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-fr.mkii" fmttriggers=context -execute AddFormat name=cont-it mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-it.mkii" fmttriggers=context -execute AddFormat name=cont-nl mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-nl.mkii" fmttriggers=context -execute AddFormat name=cont-ro mode=disabled engine=pdftex patterns=cont-usr.tex options="-8bit *cont-ro.mkii" fmttriggers=context execute addMap original-context-symbol.map -containersize 9617092 -containerchecksum 61fcc778837ecff88bb0e80e39e2acb3ee64e2c26e4069f7634e5dc6c74dc93caab78e4b0088ed58f494d6dcd3a5084bc55cd471baaeb292dc208cf2a241bf69 -doccontainersize 94613364 -doccontainerchecksum ee4458cd6d45a41652ae24b3b82bea5cfa2d8b9c14cf4ba1357f9f07d6572f8ba83e350b74659c471ebf5068f33f5c5762a11669ab2a4f5adb3db41f392956dd -docfiles size=29399 +containersize 9978772 +containerchecksum eb1b44e12b94e0eccc18f23c51db04b7494ce883968c23dbc1660dba581e083fe5f3003a654963faa0f0c24227e01c2ca72e56084883f0080d2279ad811dec6a +doccontainersize 84245976 +doccontainerchecksum aa322165f3fa693240bd7b1378a344788b45948e2adc51e41ce711afa0968ec3ba1fa5401082145424a2dca3f20ed655aa022057a4565f916dd1b42bf61cdb8b +docfiles size=26800 texmf-dist/doc/context/documents/general/leaflets/leaflet-context.pdf texmf-dist/doc/context/documents/general/leaflets/leaflet-luametatex.pdf texmf-dist/doc/context/documents/general/leaflets/leaflet-mixing.pdf @@ -71556,6 +75123,7 @@ docfiles size=29399 texmf-dist/doc/context/documents/general/magazines/mag-1105-mkiv.pdf texmf-dist/doc/context/documents/general/manuals/about.pdf texmf-dist/doc/context/documents/general/manuals/bidi.pdf + texmf-dist/doc/context/documents/general/manuals/canbedone-periods.pdf texmf-dist/doc/context/documents/general/manuals/charts-mkiv.pdf texmf-dist/doc/context/documents/general/manuals/cld-mkiv.pdf texmf-dist/doc/context/documents/general/manuals/colors-mkiv.pdf @@ -71573,22 +75141,28 @@ docfiles size=29399 texmf-dist/doc/context/documents/general/manuals/interaction.pdf texmf-dist/doc/context/documents/general/manuals/languages-mkiv.pdf texmf-dist/doc/context/documents/general/manuals/libraries-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-alignments.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-boxes.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-characters.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-conditionals.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-expansion.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-grouping.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-inserts.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-loops.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-macros.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel-marks.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-paragraphs.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-registers.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-scope.pdf texmf-dist/doc/context/documents/general/manuals/lowlevel-security.pdf + texmf-dist/doc/context/documents/general/manuals/lowlevel.pdf texmf-dist/doc/context/documents/general/manuals/lua-mkiv.pdf texmf-dist/doc/context/documents/general/manuals/luametafun.pdf texmf-dist/doc/context/documents/general/manuals/luametatex.pdf texmf-dist/doc/context/documents/general/manuals/luatex.pdf texmf-dist/doc/context/documents/general/manuals/ma-cb-en.pdf texmf-dist/doc/context/documents/general/manuals/math-mkiv.pdf + texmf-dist/doc/context/documents/general/manuals/math-tweaks.pdf texmf-dist/doc/context/documents/general/manuals/metafun-p.pdf texmf-dist/doc/context/documents/general/manuals/metafun-s.pdf texmf-dist/doc/context/documents/general/manuals/mk.pdf @@ -71600,6 +75174,7 @@ docfiles size=29399 texmf-dist/doc/context/documents/general/manuals/nodes.pdf texmf-dist/doc/context/documents/general/manuals/notnow.pdf texmf-dist/doc/context/documents/general/manuals/onandon.pdf + texmf-dist/doc/context/documents/general/manuals/ontarget.pdf texmf-dist/doc/context/documents/general/manuals/pagecolumns.pdf texmf-dist/doc/context/documents/general/manuals/primitives.pdf texmf-dist/doc/context/documents/general/manuals/rules-mkiv.pdf @@ -71762,6 +75337,20 @@ docfiles size=29399 texmf-dist/doc/context/presentations/context/2020/context-2020-svg.tex texmf-dist/doc/context/presentations/context/2020/context-2020-tokens.pdf texmf-dist/doc/context/presentations/context/2020/context-2020-tokens.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-compactfonts.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-compactfonts.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-localcontrol.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-localcontrol.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-luametafun.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-luametafun.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-math.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-math.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-overloadprotection.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-overloadprotection.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-paragraphs.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-paragraphs.tex + texmf-dist/doc/context/presentations/context/2021/context-2021-programming.pdf + texmf-dist/doc/context/presentations/context/2021/context-2021-programming.tex texmf-dist/doc/context/presentations/examples/present-balls-001.pdf texmf-dist/doc/context/presentations/examples/present-balls-001.tex texmf-dist/doc/context/presentations/examples/present-colorful-001.pdf @@ -71802,41 +75391,8 @@ docfiles size=29399 texmf-dist/doc/context/presentations/tug/2001/tug-2001-ideas.tex texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.pdf texmf-dist/doc/context/presentations/tug/2007/tug-2007-fonts.tex - texmf-dist/doc/context/scripts/mkii/ctxtools.html - texmf-dist/doc/context/scripts/mkii/ctxtools.man - texmf-dist/doc/context/scripts/mkii/ctxtools.xml - texmf-dist/doc/context/scripts/mkii/imgtopdf.html - texmf-dist/doc/context/scripts/mkii/imgtopdf.man - texmf-dist/doc/context/scripts/mkii/imgtopdf.xml - texmf-dist/doc/context/scripts/mkii/mptopdf.html - texmf-dist/doc/context/scripts/mkii/mptopdf.xml - texmf-dist/doc/context/scripts/mkii/pdftools.html - texmf-dist/doc/context/scripts/mkii/pdftools.man - texmf-dist/doc/context/scripts/mkii/pdftools.xml - texmf-dist/doc/context/scripts/mkii/pstopdf.html - texmf-dist/doc/context/scripts/mkii/pstopdf.man - texmf-dist/doc/context/scripts/mkii/pstopdf.xml - texmf-dist/doc/context/scripts/mkii/rlxtools.html - texmf-dist/doc/context/scripts/mkii/rlxtools.man - texmf-dist/doc/context/scripts/mkii/rlxtools.xml - texmf-dist/doc/context/scripts/mkii/texexec.html - texmf-dist/doc/context/scripts/mkii/texexec.man - texmf-dist/doc/context/scripts/mkii/texexec.xml - texmf-dist/doc/context/scripts/mkii/texmfstart.html - texmf-dist/doc/context/scripts/mkii/texmfstart.man - texmf-dist/doc/context/scripts/mkii/texmfstart.xml - texmf-dist/doc/context/scripts/mkii/textools.html - texmf-dist/doc/context/scripts/mkii/textools.man - texmf-dist/doc/context/scripts/mkii/textools.xml - texmf-dist/doc/context/scripts/mkii/texutil.html - texmf-dist/doc/context/scripts/mkii/texutil.man - texmf-dist/doc/context/scripts/mkii/texutil.xml - texmf-dist/doc/context/scripts/mkii/tmftools.html - texmf-dist/doc/context/scripts/mkii/tmftools.man - texmf-dist/doc/context/scripts/mkii/tmftools.xml - texmf-dist/doc/context/scripts/mkii/xmltools.html - texmf-dist/doc/context/scripts/mkii/xmltools.man - texmf-dist/doc/context/scripts/mkii/xmltools.xml + texmf-dist/doc/context/scripts/mkii/mptopdf.1 + texmf-dist/doc/context/scripts/mkii/mptopdf.man1.pdf texmf-dist/doc/context/scripts/mkiv/context.html texmf-dist/doc/context/scripts/mkiv/context.man texmf-dist/doc/context/scripts/mkiv/context.xml @@ -71921,6 +75477,9 @@ docfiles size=29399 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-spell.html + texmf-dist/doc/context/scripts/mkiv/mtx-spell.man + texmf-dist/doc/context/scripts/mkiv/mtx-spell.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 @@ -72018,6 +75577,9 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/bidi/bidi-titlepage.tex texmf-dist/doc/context/sources/general/manuals/bidi/bidi-vertical.tex texmf-dist/doc/context/sources/general/manuals/bidi/bidi.tex + texmf-dist/doc/context/sources/general/manuals/canbedone/canbedone-periods.tex + texmf-dist/doc/context/sources/general/manuals/canbedone/canbedone-style.tex + texmf-dist/doc/context/sources/general/manuals/canbedone/canbedone.tex texmf-dist/doc/context/sources/general/manuals/charts/charts-mkiv.tex texmf-dist/doc/context/sources/general/manuals/cld/cld-abitoflua.tex texmf-dist/doc/context/sources/general/manuals/cld/cld-afewdetails.tex @@ -72118,14 +75680,21 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/details/mill.png texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv-demo.tex texmf-dist/doc/context/sources/general/manuals/epub/epub-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-bitwise.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-contents.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-expansion.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-expressions.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-fonts.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-formats.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-hyphenation.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-inserts.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-introduction.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-keywords.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-libraries.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-normalization.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-numbers.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-offloading.tex + texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-paragraphs.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-parameters.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-parsing.tex texmf-dist/doc/context/sources/general/manuals/evenmore/evenmore-pi.tex @@ -72147,6 +75716,7 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/followingup/followingup-introduction.tex texmf-dist/doc/context/sources/general/manuals/followingup/followingup-logging.tex texmf-dist/doc/context/sources/general/manuals/followingup/followingup-lua.tex + texmf-dist/doc/context/sources/general/manuals/followingup/followingup-memory.tex texmf-dist/doc/context/sources/general/manuals/followingup/followingup-mp.tex texmf-dist/doc/context/sources/general/manuals/followingup/followingup-performance.tex texmf-dist/doc/context/sources/general/manuals/followingup/followingup-rejected.tex @@ -72257,20 +75827,28 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/languages/languages-labels.tex texmf-dist/doc/context/sources/general/manuals/languages/languages-mkiv.tex texmf-dist/doc/context/sources/general/manuals/languages/languages-numbering.tex + texmf-dist/doc/context/sources/general/manuals/languages/languages-options.tex texmf-dist/doc/context/sources/general/manuals/languages/languages-sorting.tex texmf-dist/doc/context/sources/general/manuals/libraries/ecmascript-mkiv.tex texmf-dist/doc/context/sources/general/manuals/libraries/libraries-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-alignments.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-boxes.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-buffers.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-characters.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-conditionals.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-expansion.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-grouping.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-inserts.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-localboxes.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-loops.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-macros.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-marks.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-paragraphs.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-registers.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-scope.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-security.tex texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel-style.tex + texmf-dist/doc/context/sources/general/manuals/lowlevel/lowlevel.tex texmf-dist/doc/context/sources/general/manuals/lua/lua-mkiv.tex texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-arrow.tex texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun-axis.tex @@ -72300,10 +75878,10 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/luametafun/luametafun.tex texmf-dist/doc/context/sources/general/manuals/luametafun/mozilla-svg-001.svg texmf-dist/doc/context/sources/general/manuals/luametafun/mozilla-svg-002.svg + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-building.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-callbacks.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-codes.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-contents.tex - texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-differences.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-enhancements.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-firstpage.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-fonts.tex @@ -72316,14 +75894,16 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-modifications.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-nodes.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-pdf.tex - texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-preamble.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-primitives.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-registers.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-rejected.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-statistics.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-style.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-tex.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex-titlepage.tex texmf-dist/doc/context/sources/general/manuals/luametatex/luametatex.tex + texmf-dist/doc/context/sources/general/manuals/luametatex/luatex-primitives.lua + texmf-dist/doc/context/sources/general/manuals/luametatex/luatex-primitives.tex texmf-dist/doc/context/sources/general/manuals/luatex/luatex-contents.tex texmf-dist/doc/context/sources/general/manuals/luatex/luatex-enhancements.tex texmf-dist/doc/context/sources/general/manuals/luatex/luatex-firstpage.tex @@ -72350,12 +75930,22 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/math/math-contents.tex texmf-dist/doc/context/sources/general/manuals/math/math-definitions.tex texmf-dist/doc/context/sources/general/manuals/math/math-features.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-accents-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-helpers.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-italics-002.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-primes-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-radicals-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts-scripts-001.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fonts.tex texmf-dist/doc/context/sources/general/manuals/math/math-framing-001.tex texmf-dist/doc/context/sources/general/manuals/math/math-framing.tex + texmf-dist/doc/context/sources/general/manuals/math/math-fun.tex + texmf-dist/doc/context/sources/general/manuals/math/math-grouping.tex texmf-dist/doc/context/sources/general/manuals/math/math-input.tex texmf-dist/doc/context/sources/general/manuals/math/math-introduction.tex texmf-dist/doc/context/sources/general/manuals/math/math-layout.tex texmf-dist/doc/context/sources/general/manuals/math/math-mkiv.tex + texmf-dist/doc/context/sources/general/manuals/math/math-notdone.tex texmf-dist/doc/context/sources/general/manuals/math/math-numbering.tex texmf-dist/doc/context/sources/general/manuals/math/math-oddities.tex texmf-dist/doc/context/sources/general/manuals/math/math-spacing-001.tex @@ -72363,6 +75953,7 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/math/math-suboptimal.tex texmf-dist/doc/context/sources/general/manuals/math/math-titlepage.tex texmf-dist/doc/context/sources/general/manuals/math/math-tricks.tex + texmf-dist/doc/context/sources/general/manuals/math/math-tweaks.tex texmf-dist/doc/context/sources/general/manuals/mathml/envexamp.tex texmf-dist/doc/context/sources/general/manuals/mathml/mmlexamp.tex texmf-dist/doc/context/sources/general/manuals/mathml/mmlprime.tex @@ -72523,10 +76114,12 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/musings/musings-perception.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-plain.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-roadmap.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-speed.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-stability.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-staygo.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-style.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/musings/musings-toocomplex.tex texmf-dist/doc/context/sources/general/manuals/musings/musings-whytex.tex texmf-dist/doc/context/sources/general/manuals/musings/musings.tex texmf-dist/doc/context/sources/general/manuals/nodes/nodes-sun-pia-03149.jpg @@ -72566,6 +76159,23 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/onandon/onandon-speed-012.tex texmf-dist/doc/context/sources/general/manuals/onandon/onandon-variable.tex texmf-dist/doc/context/sources/general/manuals/onandon/onandon.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-alsomath.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-anchoring.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-binary.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-contents.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-dk.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-eventually.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-gettingridof.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-introduction.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-makesnosense.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-makessense.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-math.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-metapost.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-registers.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-ridofjit.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-style.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget-titlepage.tex + texmf-dist/doc/context/sources/general/manuals/ontarget/ontarget.tex texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-000.tex texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-001.tex texmf-dist/doc/context/sources/general/manuals/pagecolumns/pagecolumns-002.tex @@ -72761,6 +76371,7 @@ docfiles size=29399 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-hashed.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 @@ -72775,6 +76386,7 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/workflows/workflows-xml.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-01.xml texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-02.xml + texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-03.xml texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-commands.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-contents.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-converter.tex @@ -72783,7 +76395,6 @@ docfiles size=29399 texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-filtering.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-introduction.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lookups.tex - texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-lpath.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-style.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-titlepage.tex texmf-dist/doc/context/sources/general/manuals/xml/xml-mkiv-tricks.tex @@ -72845,6 +76456,8 @@ docfiles size=29399 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-spell.1 + texmf-dist/doc/man/man1/mtx-spell.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 @@ -72865,11 +76478,7 @@ docfiles size=29399 texmf-dist/doc/man/man1/mtx-youless.man1.pdf texmf-dist/doc/man/man1/mtxrun.1 texmf-dist/doc/man/man1/mtxrun.man1.pdf - texmf-dist/doc/man/man1/texexec.1 - texmf-dist/doc/man/man1/texexec.man1.pdf - texmf-dist/doc/man/man1/texmfstart.1 - texmf-dist/doc/man/man1/texmfstart.man1.pdf -runfiles size=17901 +runfiles size=14742 texmf-dist/bibtex/bst/context/mkii/cont-ab.bst texmf-dist/bibtex/bst/context/mkii/cont-au.bst texmf-dist/bibtex/bst/context/mkii/cont-no.bst @@ -72884,7 +76493,6 @@ runfiles size=17901 texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.lua texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.lua texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.lua - texmf-dist/context/data/scite/context/lexers/lexer.lua texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bibtex.lua texmf-dist/context/data/scite/context/lexers/scite-context-lexer-bnf.lua texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua @@ -72929,53 +76537,6 @@ runfiles size=17901 texmf-dist/context/data/scite/context/scite-metapost.properties texmf-dist/context/data/scite/context/scite-pragma.properties texmf-dist/context/data/scite/context/scite-tex.properties - texmf-dist/context/data/texfont/type-buy.dat - texmf-dist/context/data/texfont/type-fsf.dat - texmf-dist/context/data/texfont/type-ghz.dat - texmf-dist/context/data/texfont/type-tmf.dat - texmf-dist/context/data/textadept/context/data/scite-context-data-bidi.lua - texmf-dist/context/data/textadept/context/data/scite-context-data-context.lua - texmf-dist/context/data/textadept/context/data/scite-context-data-interfaces.lua - texmf-dist/context/data/textadept/context/data/scite-context-data-metafun.lua - texmf-dist/context/data/textadept/context/data/scite-context-data-metapost.lua - texmf-dist/context/data/textadept/context/data/scite-context-data-tex.lua - texmf-dist/context/data/textadept/context/init.lua - texmf-dist/context/data/textadept/context/lexers/lexer.lua - texmf-dist/context/data/textadept/context/lexers/lexer.rme - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bibtex.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bidi.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-bnf.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cld.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp-web.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-cpp.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-dummy.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-json.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua-longstring.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-lua.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-mps.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-object.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf-xref.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-pdf.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-sas.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-sql.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex-web.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-tex.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-txt.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web-snippets.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-web.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-cdata.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-comment.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml-script.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer-xml.lua - texmf-dist/context/data/textadept/context/lexers/scite-context-lexer.lua - texmf-dist/context/data/textadept/context/lexers/text.lua - texmf-dist/context/data/textadept/context/modules/textadept-context-files.lua - texmf-dist/context/data/textadept/context/modules/textadept-context-runner.lua - texmf-dist/context/data/textadept/context/modules/textadept-context-settings.lua - texmf-dist/context/data/textadept/context/modules/textadept-context-types.lua - texmf-dist/context/data/textadept/context/textadept-context.cmd - texmf-dist/context/data/textadept/context/textadept-context.sh - texmf-dist/context/data/textadept/context/themes/scite-context-theme.lua texmf-dist/context/data/texworks/TUG/TeXworks.ini texmf-dist/context/data/texworks/completion/tw-context.txt texmf-dist/context/data/texworks/configuration/auto-indent-patterns.txt @@ -73026,46 +76587,9 @@ runfiles size=17901 texmf-dist/fonts/cid/fontforge/Adobe-Japan1-6.cidmap texmf-dist/fonts/cid/fontforge/Adobe-Japan2-0.cidmap texmf-dist/fonts/cid/fontforge/Adobe-Korea1-2.cidmap - texmf-dist/fonts/enc/dvips/context/cmin.enc - texmf-dist/fonts/enc/dvips/context/cmit.enc - texmf-dist/fonts/enc/dvips/context/cmitt.enc - texmf-dist/fonts/enc/dvips/context/cmrm.enc - texmf-dist/fonts/enc/dvips/context/cmsc.enc - texmf-dist/fonts/enc/dvips/context/cmtt.enc - texmf-dist/fonts/enc/dvips/context/ec-2004.enc - texmf-dist/fonts/enc/dvips/context/q-8r.enc - texmf-dist/fonts/enc/dvips/context/teff-trinite.enc texmf-dist/fonts/map/dvips/context/contnav.map texmf-dist/fonts/map/luatex/context/demo-font.lum - texmf-dist/fonts/map/pdftex/context/8r-base.map - texmf-dist/fonts/map/pdftex/context/ec-base.map - texmf-dist/fonts/map/pdftex/context/ec-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/mkiv-base.map - texmf-dist/fonts/map/pdftex/context/mkiv-px.map - texmf-dist/fonts/map/pdftex/context/mkiv-tx.map - texmf-dist/fonts/map/pdftex/context/original-adobe-euro.map - texmf-dist/fonts/map/pdftex/context/original-ams-base.map - texmf-dist/fonts/map/pdftex/context/original-ams-cmr.map - texmf-dist/fonts/map/pdftex/context/original-ams-euler.map - texmf-dist/fonts/map/pdftex/context/original-base.map texmf-dist/fonts/map/pdftex/context/original-context-symbol.map - texmf-dist/fonts/map/pdftex/context/original-dummy.map - texmf-dist/fonts/map/pdftex/context/original-empty.map - texmf-dist/fonts/map/pdftex/context/original-micropress-informal.map - texmf-dist/fonts/map/pdftex/context/original-public-csr.map - texmf-dist/fonts/map/pdftex/context/original-public-lm.map - texmf-dist/fonts/map/pdftex/context/original-public-plr.map - texmf-dist/fonts/map/pdftex/context/original-public-vnr.map - texmf-dist/fonts/map/pdftex/context/original-vogel-symbol.map - texmf-dist/fonts/map/pdftex/context/original-wasy.map - texmf-dist/fonts/map/pdftex/context/original-youngryu-px.map - texmf-dist/fonts/map/pdftex/context/original-youngryu-tx.map - texmf-dist/fonts/map/pdftex/context/qx-base.map - texmf-dist/fonts/map/pdftex/context/qx-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/t5-base.map - texmf-dist/fonts/map/pdftex/context/t5-os-public-lm.map - texmf-dist/fonts/map/pdftex/context/texnansi-base.map - texmf-dist/fonts/map/pdftex/context/texnansi-os-public-lm.map texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.map texmf-dist/fonts/misc/xetex/fontmapping/context/tlig.tec texmf-dist/fonts/tfm/hoekwater/context/contnav.tfm @@ -73074,27 +76598,9 @@ runfiles size=17901 texmf-dist/metapost/context/base/common/metafun.mp texmf-dist/metapost/context/base/common/mp-back.mp texmf-dist/metapost/context/base/common/mp-fobg.mp + texmf-dist/metapost/context/base/common/mp-remapped-boxes.mp + texmf-dist/metapost/context/base/common/mp-remapped-hatching.mp texmf-dist/metapost/context/base/common/mp-symb.mp - texmf-dist/metapost/context/base/mpii/metafun.mpii - texmf-dist/metapost/context/base/mpii/mp-back.mpii - texmf-dist/metapost/context/base/mpii/mp-base.mpii - texmf-dist/metapost/context/base/mpii/mp-butt.mpii - texmf-dist/metapost/context/base/mpii/mp-char.mpii - texmf-dist/metapost/context/base/mpii/mp-core.mpii - texmf-dist/metapost/context/base/mpii/mp-figs.mpii - texmf-dist/metapost/context/base/mpii/mp-fobg.mpii - texmf-dist/metapost/context/base/mpii/mp-form.mpii - texmf-dist/metapost/context/base/mpii/mp-func.mpii - texmf-dist/metapost/context/base/mpii/mp-grid.mpii - texmf-dist/metapost/context/base/mpii/mp-grph.mpii - texmf-dist/metapost/context/base/mpii/mp-page.mpii - texmf-dist/metapost/context/base/mpii/mp-shap.mpii - texmf-dist/metapost/context/base/mpii/mp-spec.mpii - texmf-dist/metapost/context/base/mpii/mp-step.mpii - texmf-dist/metapost/context/base/mpii/mp-symb.mpii - texmf-dist/metapost/context/base/mpii/mp-text.mpii - texmf-dist/metapost/context/base/mpii/mp-tool.mpii - texmf-dist/metapost/context/base/mpii/mp-txts.mpii texmf-dist/metapost/context/base/mpiv/metafun.mpiv texmf-dist/metapost/context/base/mpiv/minifun.mpiv texmf-dist/metapost/context/base/mpiv/mp-abck.mpiv @@ -73117,7 +76623,6 @@ runfiles size=17901 texmf-dist/metapost/context/base/mpiv/mp-grap.mpiv texmf-dist/metapost/context/base/mpiv/mp-grid.mpiv texmf-dist/metapost/context/base/mpiv/mp-grph.mpiv - texmf-dist/metapost/context/base/mpiv/mp-idea.mpiv texmf-dist/metapost/context/base/mpiv/mp-luas.mpiv texmf-dist/metapost/context/base/mpiv/mp-mlib.mpiv texmf-dist/metapost/context/base/mpiv/mp-node.mpiv @@ -73128,10 +76633,12 @@ runfiles size=17901 texmf-dist/metapost/context/base/mpiv/mp-text.mpiv texmf-dist/metapost/context/base/mpiv/mp-tool.mpiv texmf-dist/metapost/context/base/mpiv/mp-tres.mpiv + texmf-dist/metapost/context/base/mpiv/mp-xbox.mpiv texmf-dist/metapost/context/base/mpxl/metafun.mpxl texmf-dist/metapost/context/base/mpxl/minifun.mpxl texmf-dist/metapost/context/base/mpxl/mp-abck.mpxl texmf-dist/metapost/context/base/mpxl/mp-apos.mpxl + texmf-dist/metapost/context/base/mpxl/mp-asnc.mpxl texmf-dist/metapost/context/base/mpxl/mp-base.mpxl texmf-dist/metapost/context/base/mpxl/mp-blob.mpxl texmf-dist/metapost/context/base/mpxl/mp-butt.mpxl @@ -73151,6 +76658,7 @@ runfiles size=17901 texmf-dist/metapost/context/base/mpxl/mp-shap.mpxl texmf-dist/metapost/context/base/mpxl/mp-text.mpxl texmf-dist/metapost/context/base/mpxl/mp-tool.mpxl + texmf-dist/metapost/context/base/mpxl/mp-xbox.mpxl texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.mp texmf-dist/metapost/context/fonts/mpiv/bidi-symbols.tex texmf-dist/metapost/context/fonts/mpiv/demo-symbols.mp @@ -73172,6 +76680,7 @@ runfiles size=17901 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-ctan.lua texmf-dist/scripts/context/lua/mtx-dvi.lua texmf-dist/scripts/context/lua/mtx-epub.lua texmf-dist/scripts/context/lua/mtx-evohome.lua @@ -73196,6 +76705,7 @@ runfiles size=17901 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-spell.lua texmf-dist/scripts/context/lua/mtx-synctex.lua texmf-dist/scripts/context/lua/mtx-texworks.lua texmf-dist/scripts/context/lua/mtx-tools.lua @@ -73212,522 +76722,9 @@ runfiles size=17901 texmf-dist/scripts/context/perl/pdftrimwhite.pl texmf-dist/scripts/context/perl/texfind.pl texmf-dist/scripts/context/perl/texfont.pl - texmf-dist/scripts/context/ruby/base/ctx.rb - texmf-dist/scripts/context/ruby/base/exa.rb - texmf-dist/scripts/context/ruby/base/file.rb - texmf-dist/scripts/context/ruby/base/kpse.rb - texmf-dist/scripts/context/ruby/base/kpse/drb.rb - texmf-dist/scripts/context/ruby/base/kpse/soap.rb - texmf-dist/scripts/context/ruby/base/kpse/trees.rb - texmf-dist/scripts/context/ruby/base/kpsedirect.rb - texmf-dist/scripts/context/ruby/base/kpsefast.rb - texmf-dist/scripts/context/ruby/base/kpseremote.rb - texmf-dist/scripts/context/ruby/base/kpserunner.rb - texmf-dist/scripts/context/ruby/base/logger.rb - texmf-dist/scripts/context/ruby/base/merge.rb - texmf-dist/scripts/context/ruby/base/mp.rb - texmf-dist/scripts/context/ruby/base/pdf.rb - texmf-dist/scripts/context/ruby/base/state.rb - texmf-dist/scripts/context/ruby/base/switch.rb - texmf-dist/scripts/context/ruby/base/system.rb - texmf-dist/scripts/context/ruby/base/tex.rb - texmf-dist/scripts/context/ruby/base/texutil.rb - texmf-dist/scripts/context/ruby/base/tool.rb - texmf-dist/scripts/context/ruby/base/variables.rb - texmf-dist/scripts/context/ruby/concheck.rb - texmf-dist/scripts/context/ruby/ctxtools.rb - texmf-dist/scripts/context/ruby/graphics/gs.rb - texmf-dist/scripts/context/ruby/graphics/inkscape.rb - texmf-dist/scripts/context/ruby/graphics/magick.rb - texmf-dist/scripts/context/ruby/imgtopdf.rb - texmf-dist/scripts/context/ruby/pdftools.rb - texmf-dist/scripts/context/ruby/pstopdf.rb - texmf-dist/scripts/context/ruby/rlxtools.rb - texmf-dist/scripts/context/ruby/rscortool.rb - texmf-dist/scripts/context/ruby/rsfiltool.rb - texmf-dist/scripts/context/ruby/rslb/base.rb - texmf-dist/scripts/context/ruby/rslibtool.rb - texmf-dist/scripts/context/ruby/runtools.rb - texmf-dist/scripts/context/ruby/texexec.rb - texmf-dist/scripts/context/ruby/texmfstart.rb - texmf-dist/scripts/context/ruby/textools.rb - texmf-dist/scripts/context/ruby/texutil.rb - texmf-dist/scripts/context/ruby/tmftools.rb - texmf-dist/scripts/context/ruby/xmltools.rb - texmf-dist/scripts/context/stubs/install/first-setup.bat - texmf-dist/scripts/context/stubs/install/first-setup.sh - texmf-dist/scripts/context/stubs/mswin/context.exe - texmf-dist/scripts/context/stubs/mswin/contextjit.exe - texmf-dist/scripts/context/stubs/mswin/ctxtools.exe - texmf-dist/scripts/context/stubs/mswin/luatools.exe - texmf-dist/scripts/context/stubs/mswin/mtxrun.dll - texmf-dist/scripts/context/stubs/mswin/mtxrun.exe - texmf-dist/scripts/context/stubs/mswin/mtxrun.lua - texmf-dist/scripts/context/stubs/mswin/mtxrunjit.exe - texmf-dist/scripts/context/stubs/mswin/pstopdf.exe - texmf-dist/scripts/context/stubs/mswin/texexec.exe - texmf-dist/scripts/context/stubs/mswin/texmfstart.exe - texmf-dist/scripts/context/stubs/setup/setuptex - texmf-dist/scripts/context/stubs/setup/setuptex.bat - texmf-dist/scripts/context/stubs/setup/setuptex.csh - texmf-dist/scripts/context/stubs/source/mtxrun_dll.c - texmf-dist/scripts/context/stubs/source/mtxrun_exe.c - texmf-dist/scripts/context/stubs/source/readme.txt - texmf-dist/scripts/context/stubs/unix/context - texmf-dist/scripts/context/stubs/unix/contextjit - texmf-dist/scripts/context/stubs/unix/ctxtools - texmf-dist/scripts/context/stubs/unix/luatools - texmf-dist/scripts/context/stubs/unix/mptopdf - texmf-dist/scripts/context/stubs/unix/mtxrun - texmf-dist/scripts/context/stubs/unix/mtxrunjit - texmf-dist/scripts/context/stubs/unix/pstopdf - texmf-dist/scripts/context/stubs/unix/texexec - texmf-dist/scripts/context/stubs/unix/texmfstart - texmf-dist/scripts/context/stubs/win64/context.exe - texmf-dist/scripts/context/stubs/win64/contextjit.exe - texmf-dist/scripts/context/stubs/win64/ctxtools.exe - texmf-dist/scripts/context/stubs/win64/luatools.exe - texmf-dist/scripts/context/stubs/win64/mptopdf.exe - texmf-dist/scripts/context/stubs/win64/mtxrun.dll - texmf-dist/scripts/context/stubs/win64/mtxrun.exe - texmf-dist/scripts/context/stubs/win64/mtxrun.lua - texmf-dist/scripts/context/stubs/win64/mtxrunjit.exe - texmf-dist/scripts/context/stubs/win64/pstopdf.exe - texmf-dist/scripts/context/stubs/win64/texexec.exe - texmf-dist/scripts/context/stubs/win64/texmfstart.exe texmf-dist/tex/context/base/context-version.pdf texmf-dist/tex/context/base/context-version.png texmf-dist/tex/context/base/context.rme - texmf-dist/tex/context/base/mkii/anch-bar.mkii - texmf-dist/tex/context/base/mkii/anch-pgr.mkii - texmf-dist/tex/context/base/mkii/anch-pos.mkii - texmf-dist/tex/context/base/mkii/anch-snc.mkii - texmf-dist/tex/context/base/mkii/bibl-tra.mkii - texmf-dist/tex/context/base/mkii/buff-ini.mkii - texmf-dist/tex/context/base/mkii/buff-ver.mkii - texmf-dist/tex/context/base/mkii/catc-act.mkii - texmf-dist/tex/context/base/mkii/catc-ctx.mkii - texmf-dist/tex/context/base/mkii/catc-def.mkii - texmf-dist/tex/context/base/mkii/catc-ini.mkii - texmf-dist/tex/context/base/mkii/catc-sym.mkii - texmf-dist/tex/context/base/mkii/catc-xml.mkii - texmf-dist/tex/context/base/mkii/colo-ema.mkii - texmf-dist/tex/context/base/mkii/colo-ext.mkii - texmf-dist/tex/context/base/mkii/colo-hex.mkii - texmf-dist/tex/context/base/mkii/colo-ini.mkii - texmf-dist/tex/context/base/mkii/colo-rgb.mkii - texmf-dist/tex/context/base/mkii/colo-run.mkii - texmf-dist/tex/context/base/mkii/colo-x11.mkii - texmf-dist/tex/context/base/mkii/colo-xwi.mkii - texmf-dist/tex/context/base/mkii/cont-cs.mkii - texmf-dist/tex/context/base/mkii/cont-de.mkii - texmf-dist/tex/context/base/mkii/cont-en.mkii - texmf-dist/tex/context/base/mkii/cont-err.mkii - texmf-dist/tex/context/base/mkii/cont-fil.mkii - texmf-dist/tex/context/base/mkii/cont-fr.mkii - texmf-dist/tex/context/base/mkii/cont-gb.mkii - texmf-dist/tex/context/base/mkii/cont-it.mkii - texmf-dist/tex/context/base/mkii/cont-log.mkii - texmf-dist/tex/context/base/mkii/cont-new.mkii - texmf-dist/tex/context/base/mkii/cont-nl.mkii - texmf-dist/tex/context/base/mkii/cont-ro.mkii - texmf-dist/tex/context/base/mkii/cont-sys.ori - texmf-dist/tex/context/base/mkii/context.mkii - texmf-dist/tex/context/base/mkii/core-con.mkii - texmf-dist/tex/context/base/mkii/core-ctx.mkii - texmf-dist/tex/context/base/mkii/core-def.mkii - texmf-dist/tex/context/base/mkii/core-env.mkii - texmf-dist/tex/context/base/mkii/core-fil.mkii - texmf-dist/tex/context/base/mkii/core-fnt.mkii - texmf-dist/tex/context/base/mkii/core-gen.mkii - texmf-dist/tex/context/base/mkii/core-ini.mkii - texmf-dist/tex/context/base/mkii/core-job.mkii - texmf-dist/tex/context/base/mkii/core-mis.mkii - texmf-dist/tex/context/base/mkii/core-par.mkii - texmf-dist/tex/context/base/mkii/core-stg.mkii - texmf-dist/tex/context/base/mkii/core-sys.mkii - texmf-dist/tex/context/base/mkii/core-two.mkii - texmf-dist/tex/context/base/mkii/core-uti.mkii - texmf-dist/tex/context/base/mkii/core-var.mkii - texmf-dist/tex/context/base/mkii/enco-032.mkii - texmf-dist/tex/context/base/mkii/enco-037.mkii - texmf-dist/tex/context/base/mkii/enco-acc.mkii - texmf-dist/tex/context/base/mkii/enco-agr.mkii - texmf-dist/tex/context/base/mkii/enco-ans.mkii - texmf-dist/tex/context/base/mkii/enco-cas.mkii - texmf-dist/tex/context/base/mkii/enco-chi.mkii - texmf-dist/tex/context/base/mkii/enco-com.mkii - texmf-dist/tex/context/base/mkii/enco-cyr.mkii - texmf-dist/tex/context/base/mkii/enco-def.mkii - texmf-dist/tex/context/base/mkii/enco-ec.mkii - texmf-dist/tex/context/base/mkii/enco-ecm.mkii - texmf-dist/tex/context/base/mkii/enco-el.mkii - texmf-dist/tex/context/base/mkii/enco-fde.mkii - texmf-dist/tex/context/base/mkii/enco-ffr.mkii - texmf-dist/tex/context/base/mkii/enco-fpl.mkii - texmf-dist/tex/context/base/mkii/enco-fro.mkii - texmf-dist/tex/context/base/mkii/enco-fsl.mkii - texmf-dist/tex/context/base/mkii/enco-grk.mkii - texmf-dist/tex/context/base/mkii/enco-heb.mkii - texmf-dist/tex/context/base/mkii/enco-ibm.mkii - texmf-dist/tex/context/base/mkii/enco-il2.mkii - texmf-dist/tex/context/base/mkii/enco-ini.mkii - texmf-dist/tex/context/base/mkii/enco-l7x.mkii - texmf-dist/tex/context/base/mkii/enco-lat.mkii - texmf-dist/tex/context/base/mkii/enco-mis.mkii - texmf-dist/tex/context/base/mkii/enco-pdf.mkii - texmf-dist/tex/context/base/mkii/enco-pfr.mkii - texmf-dist/tex/context/base/mkii/enco-pol.mkii - texmf-dist/tex/context/base/mkii/enco-qx.mkii - texmf-dist/tex/context/base/mkii/enco-raw.mkii - texmf-dist/tex/context/base/mkii/enco-run.mkii - texmf-dist/tex/context/base/mkii/enco-t5.mkii - texmf-dist/tex/context/base/mkii/enco-tbo.mkii - texmf-dist/tex/context/base/mkii/enco-uc.mkii - texmf-dist/tex/context/base/mkii/enco-vis.mkii - texmf-dist/tex/context/base/mkii/enco-vna.mkii - texmf-dist/tex/context/base/mkii/enco-win.mkii - texmf-dist/tex/context/base/mkii/enco-x5.mkii - texmf-dist/tex/context/base/mkii/filt-bas.mkii - texmf-dist/tex/context/base/mkii/filt-ini.mkii - texmf-dist/tex/context/base/mkii/font-arb.mkii - texmf-dist/tex/context/base/mkii/font-bfm.mkii - texmf-dist/tex/context/base/mkii/font-chi.mkii - texmf-dist/tex/context/base/mkii/font-heb.mkii - texmf-dist/tex/context/base/mkii/font-ini.mkii - texmf-dist/tex/context/base/mkii/font-jap.mkii - texmf-dist/tex/context/base/mkii/font-run.mkii - texmf-dist/tex/context/base/mkii/font-uni.mkii - texmf-dist/tex/context/base/mkii/font-unk.mkii - texmf-dist/tex/context/base/mkii/font-xtx.mkii - texmf-dist/tex/context/base/mkii/grph-fig.mkii - texmf-dist/tex/context/base/mkii/grph-inc.mkii - texmf-dist/tex/context/base/mkii/grph-trf.mkii - texmf-dist/tex/context/base/mkii/hand-def.mkii - texmf-dist/tex/context/base/mkii/hand-ini.mkii - texmf-dist/tex/context/base/mkii/java-ans.mkii - texmf-dist/tex/context/base/mkii/java-exa.mkii - texmf-dist/tex/context/base/mkii/java-fil.mkii - texmf-dist/tex/context/base/mkii/java-fld.mkii - texmf-dist/tex/context/base/mkii/java-ini.mkii - texmf-dist/tex/context/base/mkii/java-stp.mkii - texmf-dist/tex/context/base/mkii/lang-alt.mkii - texmf-dist/tex/context/base/mkii/lang-ana.mkii - texmf-dist/tex/context/base/mkii/lang-art.mkii - texmf-dist/tex/context/base/mkii/lang-bal.mkii - texmf-dist/tex/context/base/mkii/lang-cel.mkii - texmf-dist/tex/context/base/mkii/lang-chi.mkii - texmf-dist/tex/context/base/mkii/lang-ctx.mkii - texmf-dist/tex/context/base/mkii/lang-cyr.mkii - texmf-dist/tex/context/base/mkii/lang-dis.mkii - texmf-dist/tex/context/base/mkii/lang-frd.mkii - texmf-dist/tex/context/base/mkii/lang-frq.mkii - texmf-dist/tex/context/base/mkii/lang-ger.mkii - texmf-dist/tex/context/base/mkii/lang-grk.mkii - texmf-dist/tex/context/base/mkii/lang-ind.mkii - texmf-dist/tex/context/base/mkii/lang-ini.mkii - texmf-dist/tex/context/base/mkii/lang-ita.mkii - texmf-dist/tex/context/base/mkii/lang-jap.mkii - texmf-dist/tex/context/base/mkii/lang-lab.mkii - texmf-dist/tex/context/base/mkii/lang-mis.mkii - texmf-dist/tex/context/base/mkii/lang-run.mkii - texmf-dist/tex/context/base/mkii/lang-sla.mkii - texmf-dist/tex/context/base/mkii/lang-spa.mkii - texmf-dist/tex/context/base/mkii/lang-spe.mkii - texmf-dist/tex/context/base/mkii/lang-ura.mkii - texmf-dist/tex/context/base/mkii/lang-url.mkii - texmf-dist/tex/context/base/mkii/lang-vn.mkii - texmf-dist/tex/context/base/mkii/math-ams.mkii - texmf-dist/tex/context/base/mkii/math-arr.mkii - texmf-dist/tex/context/base/mkii/math-cow.mkii - texmf-dist/tex/context/base/mkii/math-eul.mkii - texmf-dist/tex/context/base/mkii/math-fou.mkii - texmf-dist/tex/context/base/mkii/math-frc.mkii - texmf-dist/tex/context/base/mkii/math-ini.mkii - texmf-dist/tex/context/base/mkii/math-lbr.mkii - texmf-dist/tex/context/base/mkii/math-pln.mkii - texmf-dist/tex/context/base/mkii/math-run.mkii - texmf-dist/tex/context/base/mkii/math-tex.mkii - texmf-dist/tex/context/base/mkii/math-tim.mkii - texmf-dist/tex/context/base/mkii/math-uni.mkii - texmf-dist/tex/context/base/mkii/meta-clp.mkii - texmf-dist/tex/context/base/mkii/meta-dum.mkii - texmf-dist/tex/context/base/mkii/meta-fig.mkii - texmf-dist/tex/context/base/mkii/meta-ini.mkii - texmf-dist/tex/context/base/mkii/meta-mis.mkii - texmf-dist/tex/context/base/mkii/meta-nav.mkii - texmf-dist/tex/context/base/mkii/meta-pag.mkii - texmf-dist/tex/context/base/mkii/meta-pdf.mkii - texmf-dist/tex/context/base/mkii/meta-pre.mkii - texmf-dist/tex/context/base/mkii/meta-tex.mkii - texmf-dist/tex/context/base/mkii/meta-txt.mkii - texmf-dist/tex/context/base/mkii/meta-xml.mkii - texmf-dist/tex/context/base/mkii/mult-aux.mkii - texmf-dist/tex/context/base/mkii/mult-chk.mkii - texmf-dist/tex/context/base/mkii/mult-com.mkii - texmf-dist/tex/context/base/mkii/mult-con.mkii - texmf-dist/tex/context/base/mkii/mult-cs.mkii - texmf-dist/tex/context/base/mkii/mult-de.mkii - texmf-dist/tex/context/base/mkii/mult-def.mkii - texmf-dist/tex/context/base/mkii/mult-en.mkii - texmf-dist/tex/context/base/mkii/mult-fr.mkii - texmf-dist/tex/context/base/mkii/mult-fst.mkii - texmf-dist/tex/context/base/mkii/mult-ini.mkii - texmf-dist/tex/context/base/mkii/mult-it.mkii - texmf-dist/tex/context/base/mkii/mult-mcs.mkii - texmf-dist/tex/context/base/mkii/mult-mde.mkii - texmf-dist/tex/context/base/mkii/mult-men.mkii - texmf-dist/tex/context/base/mkii/mult-mfr.mkii - texmf-dist/tex/context/base/mkii/mult-mit.mkii - texmf-dist/tex/context/base/mkii/mult-mnl.mkii - texmf-dist/tex/context/base/mkii/mult-mno.mkii - texmf-dist/tex/context/base/mkii/mult-mpe.mkii - texmf-dist/tex/context/base/mkii/mult-mro.mkii - texmf-dist/tex/context/base/mkii/mult-nl.mkii - texmf-dist/tex/context/base/mkii/mult-pe.mkii - texmf-dist/tex/context/base/mkii/mult-ro.mkii - texmf-dist/tex/context/base/mkii/mult-sys.mkii - texmf-dist/tex/context/base/mkii/norm-alo.mkii - texmf-dist/tex/context/base/mkii/norm-ctx.mkii - texmf-dist/tex/context/base/mkii/norm-etx.mkii - texmf-dist/tex/context/base/mkii/norm-ltx.mkii - texmf-dist/tex/context/base/mkii/norm-ptx.mkii - texmf-dist/tex/context/base/mkii/norm-tex.mkii - texmf-dist/tex/context/base/mkii/norm-xtx.mkii - texmf-dist/tex/context/base/mkii/pack-box.mkii - texmf-dist/tex/context/base/mkii/pack-lyr.mkii - texmf-dist/tex/context/base/mkii/pack-obj.mkii - texmf-dist/tex/context/base/mkii/pack-rul.mkii - texmf-dist/tex/context/base/mkii/page-app.mkii - texmf-dist/tex/context/base/mkii/page-bck.mkii - texmf-dist/tex/context/base/mkii/page-flw.mkii - texmf-dist/tex/context/base/mkii/page-imp.mkii - texmf-dist/tex/context/base/mkii/page-ini.mkii - texmf-dist/tex/context/base/mkii/page-ins.mkii - texmf-dist/tex/context/base/mkii/page-lay.mkii - texmf-dist/tex/context/base/mkii/page-lin.mkii - texmf-dist/tex/context/base/mkii/page-log.mkii - texmf-dist/tex/context/base/mkii/page-mak.mkii - texmf-dist/tex/context/base/mkii/page-mar.mkii - texmf-dist/tex/context/base/mkii/page-mis.mkii - texmf-dist/tex/context/base/mkii/page-mul.mkii - texmf-dist/tex/context/base/mkii/page-not.mkii - texmf-dist/tex/context/base/mkii/page-one.mkii - texmf-dist/tex/context/base/mkii/page-par.mkii - texmf-dist/tex/context/base/mkii/page-plg.mkii - texmf-dist/tex/context/base/mkii/page-run.mkii - texmf-dist/tex/context/base/mkii/page-set.mkii - texmf-dist/tex/context/base/mkii/page-sid.mkii - texmf-dist/tex/context/base/mkii/page-spr.mkii - texmf-dist/tex/context/base/mkii/page-str.mkii - texmf-dist/tex/context/base/mkii/page-txt.mkii - texmf-dist/tex/context/base/mkii/pdfr-def.mkii - texmf-dist/tex/context/base/mkii/pdfr-ec.mkii - texmf-dist/tex/context/base/mkii/pdfr-il2.mkii - texmf-dist/tex/context/base/mkii/prop-ini.mkii - texmf-dist/tex/context/base/mkii/prop-lay.mkii - texmf-dist/tex/context/base/mkii/prop-mis.mkii - texmf-dist/tex/context/base/mkii/regi-8859-1.mkii - texmf-dist/tex/context/base/mkii/regi-8859-10.mkii - texmf-dist/tex/context/base/mkii/regi-8859-13.mkii - texmf-dist/tex/context/base/mkii/regi-8859-15.mkii - texmf-dist/tex/context/base/mkii/regi-8859-16.mkii - texmf-dist/tex/context/base/mkii/regi-8859-2.mkii - texmf-dist/tex/context/base/mkii/regi-8859-3.mkii - texmf-dist/tex/context/base/mkii/regi-8859-4.mkii - texmf-dist/tex/context/base/mkii/regi-8859-5.mkii - texmf-dist/tex/context/base/mkii/regi-8859-7.mkii - texmf-dist/tex/context/base/mkii/regi-8859-9.mkii - texmf-dist/tex/context/base/mkii/regi-cp1250.mkii - texmf-dist/tex/context/base/mkii/regi-cp1251.mkii - texmf-dist/tex/context/base/mkii/regi-cp1252.mkii - texmf-dist/tex/context/base/mkii/regi-cp1253.mkii - texmf-dist/tex/context/base/mkii/regi-cp1254.mkii - texmf-dist/tex/context/base/mkii/regi-cp1257.mkii - texmf-dist/tex/context/base/mkii/regi-cyp.mkii - texmf-dist/tex/context/base/mkii/regi-cyr.mkii - texmf-dist/tex/context/base/mkii/regi-def.mkii - texmf-dist/tex/context/base/mkii/regi-ibm.mkii - texmf-dist/tex/context/base/mkii/regi-ini.mkii - texmf-dist/tex/context/base/mkii/regi-mac.mkii - texmf-dist/tex/context/base/mkii/regi-syn.mkii - texmf-dist/tex/context/base/mkii/regi-uni.mkii - texmf-dist/tex/context/base/mkii/regi-utf.mkii - texmf-dist/tex/context/base/mkii/regi-vis.mkii - texmf-dist/tex/context/base/mkii/scrn-fld.mkii - texmf-dist/tex/context/base/mkii/scrn-hlp.mkii - texmf-dist/tex/context/base/mkii/scrn-int.mkii - texmf-dist/tex/context/base/mkii/scrn-nav.mkii - texmf-dist/tex/context/base/mkii/sort-def.mkii - texmf-dist/tex/context/base/mkii/sort-ini.mkii - texmf-dist/tex/context/base/mkii/sort-lan.mkii - texmf-dist/tex/context/base/mkii/spac-gen.mkii - texmf-dist/tex/context/base/mkii/spac-grd.mkii - texmf-dist/tex/context/base/mkii/spec-def.mkii - texmf-dist/tex/context/base/mkii/spec-dpm.mkii - texmf-dist/tex/context/base/mkii/spec-dpx.mkii - texmf-dist/tex/context/base/mkii/spec-dvi.mkii - texmf-dist/tex/context/base/mkii/spec-fdf.mkii - texmf-dist/tex/context/base/mkii/spec-ini.mkii - texmf-dist/tex/context/base/mkii/spec-mis.mkii - texmf-dist/tex/context/base/mkii/spec-pdf.mkii - texmf-dist/tex/context/base/mkii/spec-ps.mkii - texmf-dist/tex/context/base/mkii/spec-tpd.mkii - texmf-dist/tex/context/base/mkii/spec-tr.mkii - texmf-dist/tex/context/base/mkii/spec-tst.mkii - texmf-dist/tex/context/base/mkii/spec-var.mkii - texmf-dist/tex/context/base/mkii/spec-win.mkii - texmf-dist/tex/context/base/mkii/spec-xet.mkii - texmf-dist/tex/context/base/mkii/spec-xtx.mkii - texmf-dist/tex/context/base/mkii/spec-yy.mkii - texmf-dist/tex/context/base/mkii/strc-blk.mkii - texmf-dist/tex/context/base/mkii/strc-des.mkii - texmf-dist/tex/context/base/mkii/strc-flt.mkii - texmf-dist/tex/context/base/mkii/strc-itm.mkii - texmf-dist/tex/context/base/mkii/strc-lnt.mkii - texmf-dist/tex/context/base/mkii/strc-lst.mkii - texmf-dist/tex/context/base/mkii/strc-mar.mkii - texmf-dist/tex/context/base/mkii/strc-mat.mkii - texmf-dist/tex/context/base/mkii/strc-not.mkii - texmf-dist/tex/context/base/mkii/strc-num.mkii - texmf-dist/tex/context/base/mkii/strc-pag.mkii - texmf-dist/tex/context/base/mkii/strc-ref.mkii - texmf-dist/tex/context/base/mkii/strc-reg.mkii - texmf-dist/tex/context/base/mkii/strc-sec.mkii - texmf-dist/tex/context/base/mkii/strc-swd.mkii - texmf-dist/tex/context/base/mkii/strc-syn.mkii - texmf-dist/tex/context/base/mkii/supp-ali.mkii - texmf-dist/tex/context/base/mkii/supp-box.mkii - texmf-dist/tex/context/base/mkii/supp-dir.mkii - texmf-dist/tex/context/base/mkii/supp-emp.mkii - texmf-dist/tex/context/base/mkii/supp-eps.mkii - texmf-dist/tex/context/base/mkii/supp-fil.mkii - texmf-dist/tex/context/base/mkii/supp-fun.mkii - texmf-dist/tex/context/base/mkii/supp-lat.mkii - texmf-dist/tex/context/base/mkii/supp-mat.mkii - texmf-dist/tex/context/base/mkii/supp-mis.tex - texmf-dist/tex/context/base/mkii/supp-mpe.tex - texmf-dist/tex/context/base/mkii/supp-mps.mkii - texmf-dist/tex/context/base/mkii/supp-mrk.mkii - texmf-dist/tex/context/base/mkii/supp-num.mkii - texmf-dist/tex/context/base/mkii/supp-pat.mkii - texmf-dist/tex/context/base/mkii/supp-pdf.tex - texmf-dist/tex/context/base/mkii/supp-ran.mkii - texmf-dist/tex/context/base/mkii/supp-spe.mkii - texmf-dist/tex/context/base/mkii/supp-tpi.mkii - texmf-dist/tex/context/base/mkii/supp-vis.mkii - texmf-dist/tex/context/base/mkii/symb-cow.mkii - texmf-dist/tex/context/base/mkii/symb-eur.mkii - texmf-dist/tex/context/base/mkii/symb-glm.mkii - texmf-dist/tex/context/base/mkii/symb-ini.mkii - texmf-dist/tex/context/base/mkii/symb-jmn.mkii - texmf-dist/tex/context/base/mkii/symb-mis.mkii - texmf-dist/tex/context/base/mkii/symb-mvs.mkii - texmf-dist/tex/context/base/mkii/symb-nav.mkii - texmf-dist/tex/context/base/mkii/symb-run.mkii - texmf-dist/tex/context/base/mkii/symb-uni.mkii - texmf-dist/tex/context/base/mkii/symb-was.mkii - texmf-dist/tex/context/base/mkii/syst-con.mkii - texmf-dist/tex/context/base/mkii/syst-ext.mkii - texmf-dist/tex/context/base/mkii/syst-fnt.mkii - texmf-dist/tex/context/base/mkii/syst-gen.mkii - texmf-dist/tex/context/base/mkii/syst-ini.mkii - texmf-dist/tex/context/base/mkii/syst-new.mkii - texmf-dist/tex/context/base/mkii/syst-pln.mkii - texmf-dist/tex/context/base/mkii/syst-rtp.mkii - texmf-dist/tex/context/base/mkii/syst-str.mkii - texmf-dist/tex/context/base/mkii/tabl-com.mkii - texmf-dist/tex/context/base/mkii/tabl-ltb.mkii - texmf-dist/tex/context/base/mkii/tabl-ntb.mkii - texmf-dist/tex/context/base/mkii/tabl-nte.mkii - texmf-dist/tex/context/base/mkii/tabl-pln.mkii - texmf-dist/tex/context/base/mkii/tabl-tab.mkii - texmf-dist/tex/context/base/mkii/tabl-tbl.mkii - texmf-dist/tex/context/base/mkii/tabl-tsp.mkii - texmf-dist/tex/context/base/mkii/thrd-pic.mkii - texmf-dist/tex/context/base/mkii/thrd-ran.mkii - texmf-dist/tex/context/base/mkii/thrd-tab.mkii - texmf-dist/tex/context/base/mkii/thrd-trg.mkii - texmf-dist/tex/context/base/mkii/trac-vis.mkii - texmf-dist/tex/context/base/mkii/type-def.mkii - texmf-dist/tex/context/base/mkii/type-ini.mkii - texmf-dist/tex/context/base/mkii/type-one.mkii - texmf-dist/tex/context/base/mkii/type-otf.mkii - texmf-dist/tex/context/base/mkii/type-run.mkii - texmf-dist/tex/context/base/mkii/type-set.mkii - texmf-dist/tex/context/base/mkii/type-siz.mkii - texmf-dist/tex/context/base/mkii/type-tmf.mkii - texmf-dist/tex/context/base/mkii/typo-ini.mkii - texmf-dist/tex/context/base/mkii/unic-000.mkii - texmf-dist/tex/context/base/mkii/unic-001.mkii - texmf-dist/tex/context/base/mkii/unic-002.mkii - texmf-dist/tex/context/base/mkii/unic-003.mkii - texmf-dist/tex/context/base/mkii/unic-004.mkii - texmf-dist/tex/context/base/mkii/unic-005.mkii - texmf-dist/tex/context/base/mkii/unic-030.mkii - texmf-dist/tex/context/base/mkii/unic-031.mkii - texmf-dist/tex/context/base/mkii/unic-032.mkii - texmf-dist/tex/context/base/mkii/unic-033.mkii - texmf-dist/tex/context/base/mkii/unic-034.mkii - texmf-dist/tex/context/base/mkii/unic-035.mkii - texmf-dist/tex/context/base/mkii/unic-037.mkii - texmf-dist/tex/context/base/mkii/unic-039.mkii - texmf-dist/tex/context/base/mkii/unic-251.mkii - texmf-dist/tex/context/base/mkii/unic-cjk.mkii - texmf-dist/tex/context/base/mkii/unic-exp.mkii - texmf-dist/tex/context/base/mkii/unic-ini.mkii - texmf-dist/tex/context/base/mkii/unic-run.mkii - texmf-dist/tex/context/base/mkii/verb-c.mkii - texmf-dist/tex/context/base/mkii/verb-eif.mkii - texmf-dist/tex/context/base/mkii/verb-ini.mkii - texmf-dist/tex/context/base/mkii/verb-js.mkii - texmf-dist/tex/context/base/mkii/verb-jv.mkii - texmf-dist/tex/context/base/mkii/verb-mp.mkii - texmf-dist/tex/context/base/mkii/verb-pas.mkii - texmf-dist/tex/context/base/mkii/verb-pl.mkii - texmf-dist/tex/context/base/mkii/verb-raw.mkii - texmf-dist/tex/context/base/mkii/verb-sql.mkii - texmf-dist/tex/context/base/mkii/verb-tex.mkii - texmf-dist/tex/context/base/mkii/verb-xml.mkii - texmf-dist/tex/context/base/mkii/xetx-chr.mkii - texmf-dist/tex/context/base/mkii/xetx-cls.mkii - texmf-dist/tex/context/base/mkii/xetx-ini.mkii - texmf-dist/tex/context/base/mkii/xetx-utf.mkii - texmf-dist/tex/context/base/mkii/xtag-cml.mkii - texmf-dist/tex/context/base/mkii/xtag-ent.mkii - texmf-dist/tex/context/base/mkii/xtag-exp.mkii - texmf-dist/tex/context/base/mkii/xtag-ext.mkii - texmf-dist/tex/context/base/mkii/xtag-hyp.mkii - texmf-dist/tex/context/base/mkii/xtag-ini.mkii - texmf-dist/tex/context/base/mkii/xtag-map.mkii - texmf-dist/tex/context/base/mkii/xtag-mea.mkii - texmf-dist/tex/context/base/mkii/xtag-meb.mkii - texmf-dist/tex/context/base/mkii/xtag-mec.mkii - texmf-dist/tex/context/base/mkii/xtag-meh.mkii - texmf-dist/tex/context/base/mkii/xtag-men.mkii - texmf-dist/tex/context/base/mkii/xtag-meo.mkii - texmf-dist/tex/context/base/mkii/xtag-mer.mkii - texmf-dist/tex/context/base/mkii/xtag-mmc.mkii - texmf-dist/tex/context/base/mkii/xtag-mml.mkii - texmf-dist/tex/context/base/mkii/xtag-mmp.mkii - texmf-dist/tex/context/base/mkii/xtag-mxa.mkii - texmf-dist/tex/context/base/mkii/xtag-mxb.mkii - texmf-dist/tex/context/base/mkii/xtag-mxc.mkii - texmf-dist/tex/context/base/mkii/xtag-mxh.mkii - texmf-dist/tex/context/base/mkii/xtag-mxn.mkii - texmf-dist/tex/context/base/mkii/xtag-mxo.mkii - texmf-dist/tex/context/base/mkii/xtag-mxr.mkii - texmf-dist/tex/context/base/mkii/xtag-pml.mkii - texmf-dist/tex/context/base/mkii/xtag-pmu.mkii - texmf-dist/tex/context/base/mkii/xtag-pre.mkii - texmf-dist/tex/context/base/mkii/xtag-prs.mkii - texmf-dist/tex/context/base/mkii/xtag-raw.mkii - texmf-dist/tex/context/base/mkii/xtag-rng.mkii - texmf-dist/tex/context/base/mkii/xtag-run.mkii - texmf-dist/tex/context/base/mkii/xtag-stk.mkii - texmf-dist/tex/context/base/mkii/xtag-utf.mkii - texmf-dist/tex/context/base/mkii/xtag-xsd.mkii - texmf-dist/tex/context/base/mkii/xtag-xsl.mkii texmf-dist/tex/context/base/mkiv/anch-bar.mkiv texmf-dist/tex/context/base/mkiv/anch-bck.mkvi texmf-dist/tex/context/base/mkiv/anch-pgr.lua @@ -73811,6 +76808,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/char-ini.mkiv texmf-dist/tex/context/base/mkiv/char-map.lua texmf-dist/tex/context/base/mkiv/char-prv.lua + texmf-dist/tex/context/base/mkiv/char-scr.lua texmf-dist/tex/context/base/mkiv/char-tex.lua texmf-dist/tex/context/base/mkiv/char-utf.lua texmf-dist/tex/context/base/mkiv/char-utf.mkiv @@ -73897,6 +76895,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/data-con.lua texmf-dist/tex/context/base/mkiv/data-crl.lua texmf-dist/tex/context/base/mkiv/data-ctx.lua + texmf-dist/tex/context/base/mkiv/data-dec.lua texmf-dist/tex/context/base/mkiv/data-env.lua texmf-dist/tex/context/base/mkiv/data-exp.lua texmf-dist/tex/context/base/mkiv/data-fil.lua @@ -73910,6 +76909,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/data-pre.lua texmf-dist/tex/context/base/mkiv/data-res.lua texmf-dist/tex/context/base/mkiv/data-sch.lua + texmf-dist/tex/context/base/mkiv/data-tar.lua texmf-dist/tex/context/base/mkiv/data-tex.lua texmf-dist/tex/context/base/mkiv/data-tmf.lua texmf-dist/tex/context/base/mkiv/data-tmp.lua @@ -74004,6 +77004,9 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/font-ott.lua texmf-dist/tex/context/base/mkiv/font-oup.lua texmf-dist/tex/context/base/mkiv/font-pat.lua + texmf-dist/tex/context/base/mkiv/font-phb-imp-binary.lua + texmf-dist/tex/context/base/mkiv/font-phb-imp-library.lua + texmf-dist/tex/context/base/mkiv/font-phb.lua texmf-dist/tex/context/base/mkiv/font-pre.mkiv texmf-dist/tex/context/base/mkiv/font-prv.lua texmf-dist/tex/context/base/mkiv/font-run.mkiv @@ -74021,6 +77024,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/font-tra.mkiv texmf-dist/tex/context/base/mkiv/font-trt.lua texmf-dist/tex/context/base/mkiv/font-ttf.lua + texmf-dist/tex/context/base/mkiv/font-txt.lua texmf-dist/tex/context/base/mkiv/font-uni.mkiv texmf-dist/tex/context/base/mkiv/font-unk.mkiv texmf-dist/tex/context/base/mkiv/font-var.mkvi @@ -74034,7 +77038,6 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/grph-bmp.lua texmf-dist/tex/context/base/mkiv/grph-chk.lua texmf-dist/tex/context/base/mkiv/grph-con.lua - texmf-dist/tex/context/base/mkiv/grph-epd.lua texmf-dist/tex/context/base/mkiv/grph-epd.mkiv texmf-dist/tex/context/base/mkiv/grph-fig.mkiv texmf-dist/tex/context/base/mkiv/grph-fil.lua @@ -74102,6 +77105,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/lang-frq.mkiv texmf-dist/tex/context/base/mkiv/lang-hyp.lua texmf-dist/tex/context/base/mkiv/lang-hyp.mkiv + texmf-dist/tex/context/base/mkiv/lang-imp-indic.lua texmf-dist/tex/context/base/mkiv/lang-imp-serbian.lua texmf-dist/tex/context/base/mkiv/lang-ini.lua texmf-dist/tex/context/base/mkiv/lang-ini.mkiv @@ -74275,12 +77279,14 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/mtx-context-copy.tex texmf-dist/tex/context/base/mkiv/mtx-context-domotica.tex texmf-dist/tex/context/base/mkiv/mtx-context-fonts.tex + texmf-dist/tex/context/base/mkiv/mtx-context-hashed.tex texmf-dist/tex/context/base/mkiv/mtx-context-ideas.tex texmf-dist/tex/context/base/mkiv/mtx-context-listing.tex texmf-dist/tex/context/base/mkiv/mtx-context-meaning.tex texmf-dist/tex/context/base/mkiv/mtx-context-module.tex texmf-dist/tex/context/base/mkiv/mtx-context-precache.tex texmf-dist/tex/context/base/mkiv/mtx-context-select.tex + texmf-dist/tex/context/base/mkiv/mtx-context-setters.tex texmf-dist/tex/context/base/mkiv/mtx-context-setups.tex texmf-dist/tex/context/base/mkiv/mtx-context-sql.tex texmf-dist/tex/context/base/mkiv/mtx-context-timing.tex @@ -74307,7 +77313,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/node-aux.lua texmf-dist/tex/context/base/mkiv/node-bck.lua texmf-dist/tex/context/base/mkiv/node-bck.mkiv - texmf-dist/tex/context/base/mkiv/node-dir.lua + texmf-dist/tex/context/base/mkiv/node-bwc.lua texmf-dist/tex/context/base/mkiv/node-fin.lua texmf-dist/tex/context/base/mkiv/node-fin.mkiv texmf-dist/tex/context/base/mkiv/node-fnt.lua @@ -74408,6 +77414,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/publ-fnd.lua texmf-dist/tex/context/base/mkiv/publ-imp-apa.lua texmf-dist/tex/context/base/mkiv/publ-imp-apa.mkvi + texmf-dist/tex/context/base/mkiv/publ-imp-aps-prb.mkvi texmf-dist/tex/context/base/mkiv/publ-imp-aps.lua texmf-dist/tex/context/base/mkiv/publ-imp-aps.mkvi texmf-dist/tex/context/base/mkiv/publ-imp-author.mkvi @@ -74573,6 +77580,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/symb-imp-mis.mkiv texmf-dist/tex/context/base/mkiv/symb-imp-mvs.mkiv texmf-dist/tex/context/base/mkiv/symb-imp-nav.mkiv + texmf-dist/tex/context/base/mkiv/symb-imp-was.mkiv texmf-dist/tex/context/base/mkiv/symb-ini.lua texmf-dist/tex/context/base/mkiv/symb-ini.mkiv texmf-dist/tex/context/base/mkiv/symb-run.mkiv @@ -74727,6 +77735,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/util-pck.lua texmf-dist/tex/context/base/mkiv/util-prs.lua texmf-dist/tex/context/base/mkiv/util-ran.lua + texmf-dist/tex/context/base/mkiv/util-rnd.lua texmf-dist/tex/context/base/mkiv/util-sac.lua texmf-dist/tex/context/base/mkiv/util-sbx.lua texmf-dist/tex/context/base/mkiv/util-sci.lua @@ -74760,15 +77769,21 @@ runfiles size=17901 texmf-dist/tex/context/base/mkiv/util-sto.lua texmf-dist/tex/context/base/mkiv/util-str.lua texmf-dist/tex/context/base/mkiv/util-tab.lua + texmf-dist/tex/context/base/mkiv/util-tar.lua + texmf-dist/tex/context/base/mkiv/util-tbs.lua texmf-dist/tex/context/base/mkiv/util-tpl.lua texmf-dist/tex/context/base/mkiv/util-you.lua texmf-dist/tex/context/base/mkiv/util-zip.lua texmf-dist/tex/context/base/mkxl/anch-bar.mkxl texmf-dist/tex/context/base/mkxl/anch-bck.mklx + texmf-dist/tex/context/base/mkxl/anch-box.mkxl + texmf-dist/tex/context/base/mkxl/anch-loc.lmt + texmf-dist/tex/context/base/mkxl/anch-loc.mkxl texmf-dist/tex/context/base/mkxl/anch-pgr.lmt texmf-dist/tex/context/base/mkxl/anch-pgr.mkxl texmf-dist/tex/context/base/mkxl/anch-pos.lmt texmf-dist/tex/context/base/mkxl/anch-pos.mkxl + texmf-dist/tex/context/base/mkxl/anch-snc.lmt texmf-dist/tex/context/base/mkxl/anch-snc.mkxl texmf-dist/tex/context/base/mkxl/anch-tab.mkxl texmf-dist/tex/context/base/mkxl/attr-alt.lmt @@ -74776,6 +77791,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/attr-col.lmt texmf-dist/tex/context/base/mkxl/attr-col.mkxl texmf-dist/tex/context/base/mkxl/attr-eff.mkxl + texmf-dist/tex/context/base/mkxl/attr-ini.lmt texmf-dist/tex/context/base/mkxl/attr-ini.mkxl texmf-dist/tex/context/base/mkxl/attr-lay.lmt texmf-dist/tex/context/base/mkxl/attr-lay.mkxl @@ -74786,23 +77802,24 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/back-exp-imp-tag.lmt texmf-dist/tex/context/base/mkxl/back-exp.lmt texmf-dist/tex/context/base/mkxl/back-exp.mkxl - texmf-dist/tex/context/base/mkxl/back-ext.mkxl + texmf-dist/tex/context/base/mkxl/back-imp-lua.lmt + texmf-dist/tex/context/base/mkxl/back-imp-lua.mkxl + texmf-dist/tex/context/base/mkxl/back-imp-mps.lmt + texmf-dist/tex/context/base/mkxl/back-imp-mps.mkxl + texmf-dist/tex/context/base/mkxl/back-imp-pdf.lmt + texmf-dist/tex/context/base/mkxl/back-imp-pdf.mkxl + texmf-dist/tex/context/base/mkxl/back-imp-pdp.lmt + texmf-dist/tex/context/base/mkxl/back-imp-u3d.mkxl texmf-dist/tex/context/base/mkxl/back-ini.lmt texmf-dist/tex/context/base/mkxl/back-ini.mkxl - texmf-dist/tex/context/base/mkxl/back-lua.lmt - texmf-dist/tex/context/base/mkxl/back-lua.mkxl - texmf-dist/tex/context/base/mkxl/back-mps.lmt - texmf-dist/tex/context/base/mkxl/back-mps.mkxl - texmf-dist/tex/context/base/mkxl/back-pdf.lmt - texmf-dist/tex/context/base/mkxl/back-pdf.mkxl - texmf-dist/tex/context/base/mkxl/back-pdp.lmt texmf-dist/tex/context/base/mkxl/back-res.lmt texmf-dist/tex/context/base/mkxl/back-res.mkxl - texmf-dist/tex/context/base/mkxl/back-u3d.mkxl texmf-dist/tex/context/base/mkxl/bibl-bib.mkxl texmf-dist/tex/context/base/mkxl/bibl-tra.mkxl texmf-dist/tex/context/base/mkxl/blob-ini.lmt texmf-dist/tex/context/base/mkxl/blob-ini.mkxl + texmf-dist/tex/context/base/mkxl/bndr-ini.lmt + texmf-dist/tex/context/base/mkxl/bndr-ini.mkxl texmf-dist/tex/context/base/mkxl/buff-ini.lmt texmf-dist/tex/context/base/mkxl/buff-ini.mkxl texmf-dist/tex/context/base/mkxl/buff-par.mklx @@ -74813,12 +77830,15 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/catc-ini.mkxl texmf-dist/tex/context/base/mkxl/catc-sym.mkxl texmf-dist/tex/context/base/mkxl/char-act.mkxl + texmf-dist/tex/context/base/mkxl/char-brl.lmt texmf-dist/tex/context/base/mkxl/char-enc.mkxl texmf-dist/tex/context/base/mkxl/char-ini.mkxl + texmf-dist/tex/context/base/mkxl/char-prv.lmt texmf-dist/tex/context/base/mkxl/char-tex.lmt texmf-dist/tex/context/base/mkxl/char-utf.mkxl texmf-dist/tex/context/base/mkxl/chem-ini.mkxl texmf-dist/tex/context/base/mkxl/chem-str.mkxl + texmf-dist/tex/context/base/mkxl/cldf-bas.lmt texmf-dist/tex/context/base/mkxl/cldf-bas.mkxl texmf-dist/tex/context/base/mkxl/cldf-com.mkxl texmf-dist/tex/context/base/mkxl/cldf-ini.mkxl @@ -74858,12 +77878,16 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/core-sys.lmt texmf-dist/tex/context/base/mkxl/core-sys.mkxl texmf-dist/tex/context/base/mkxl/core-two.mkxl - texmf-dist/tex/context/base/mkxl/core-uti.lua + texmf-dist/tex/context/base/mkxl/core-uti.lmt texmf-dist/tex/context/base/mkxl/core-uti.mkxl + texmf-dist/tex/context/base/mkxl/data-fil.lmt + texmf-dist/tex/context/base/mkxl/data-hsh.lmt + texmf-dist/tex/context/base/mkxl/data-vir.lmt texmf-dist/tex/context/base/mkxl/driv-ini.lmt texmf-dist/tex/context/base/mkxl/driv-ini.mkxl texmf-dist/tex/context/base/mkxl/driv-shp.lmt texmf-dist/tex/context/base/mkxl/driv-shp.mkxl + texmf-dist/tex/context/base/mkxl/driv-usr.lmt texmf-dist/tex/context/base/mkxl/enco-ini.mkxl texmf-dist/tex/context/base/mkxl/file-ini.mklx texmf-dist/tex/context/base/mkxl/file-job.lmt @@ -74872,8 +77896,10 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/file-mod.lmt texmf-dist/tex/context/base/mkxl/file-mod.mklx texmf-dist/tex/context/base/mkxl/file-res.mklx + texmf-dist/tex/context/base/mkxl/file-syn.lmt texmf-dist/tex/context/base/mkxl/file-syn.mklx texmf-dist/tex/context/base/mkxl/font-aux.mklx + texmf-dist/tex/context/base/mkxl/font-cff.lmt texmf-dist/tex/context/base/mkxl/font-chk.lmt texmf-dist/tex/context/base/mkxl/font-chk.mkxl texmf-dist/tex/context/base/mkxl/font-col.lmt @@ -74881,6 +77907,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/font-con.lmt texmf-dist/tex/context/base/mkxl/font-ctx.lmt texmf-dist/tex/context/base/mkxl/font-def.lmt + texmf-dist/tex/context/base/mkxl/font-dsp.lmt texmf-dist/tex/context/base/mkxl/font-emp.mklx texmf-dist/tex/context/base/mkxl/font-enh.lmt texmf-dist/tex/context/base/mkxl/font-fbk.lmt @@ -74889,18 +77916,36 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/font-fmp.lmt texmf-dist/tex/context/base/mkxl/font-gds.mklx texmf-dist/tex/context/base/mkxl/font-glf.mklx + texmf-dist/tex/context/base/mkxl/font-hsh.lmt + texmf-dist/tex/context/base/mkxl/font-imp-braille.lmt + texmf-dist/tex/context/base/mkxl/font-imp-checks.lmt + texmf-dist/tex/context/base/mkxl/font-imp-digits.lmt + texmf-dist/tex/context/base/mkxl/font-imp-effects.lmt + texmf-dist/tex/context/base/mkxl/font-imp-ligatures.lmt texmf-dist/tex/context/base/mkxl/font-imp-math.lmt + texmf-dist/tex/context/base/mkxl/font-imp-quality.lmt + texmf-dist/tex/context/base/mkxl/font-imp-sanitize.lmt + texmf-dist/tex/context/base/mkxl/font-imp-scripts.lmt + texmf-dist/tex/context/base/mkxl/font-imp-text.lmt texmf-dist/tex/context/base/mkxl/font-imp-tracing.lmt texmf-dist/tex/context/base/mkxl/font-ini.lmt texmf-dist/tex/context/base/mkxl/font-ini.mklx texmf-dist/tex/context/base/mkxl/font-lib.mklx + texmf-dist/tex/context/base/mkxl/font-lig.lmt + texmf-dist/tex/context/base/mkxl/font-map.lmt texmf-dist/tex/context/base/mkxl/font-mat.mklx texmf-dist/tex/context/base/mkxl/font-mpf.lmt - texmf-dist/tex/context/base/mkxl/font-mps.lmt texmf-dist/tex/context/base/mkxl/font-ogr.lmt + texmf-dist/tex/context/base/mkxl/font-one.lmt + texmf-dist/tex/context/base/mkxl/font-onr.lmt texmf-dist/tex/context/base/mkxl/font-ota.lmt + texmf-dist/tex/context/base/mkxl/font-otd.lmt texmf-dist/tex/context/base/mkxl/font-otj.lmt + texmf-dist/tex/context/base/mkxl/font-otl.lmt texmf-dist/tex/context/base/mkxl/font-ots.lmt + texmf-dist/tex/context/base/mkxl/font-phb-imp-binary.lmt + texmf-dist/tex/context/base/mkxl/font-phb-imp-internal.lmt + texmf-dist/tex/context/base/mkxl/font-phb.lmt texmf-dist/tex/context/base/mkxl/font-pre.mkxl texmf-dist/tex/context/base/mkxl/font-sel.mklx texmf-dist/tex/context/base/mkxl/font-set.mklx @@ -74909,13 +77954,20 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/font-sym.mklx texmf-dist/tex/context/base/mkxl/font-tex.lmt texmf-dist/tex/context/base/mkxl/font-tex.mkxl + texmf-dist/tex/context/base/mkxl/font-tfm.lmt + texmf-dist/tex/context/base/mkxl/font-tpk.lmt texmf-dist/tex/context/base/mkxl/font-tra.mkxl + texmf-dist/tex/context/base/mkxl/font-ttf.lmt + texmf-dist/tex/context/base/mkxl/font-txt.lmt texmf-dist/tex/context/base/mkxl/font-uni.mkxl texmf-dist/tex/context/base/mkxl/font-unk.mkxl texmf-dist/tex/context/base/mkxl/font-var.mklx texmf-dist/tex/context/base/mkxl/font-vfc.lmt texmf-dist/tex/context/base/mkxl/font-vir.lmt + texmf-dist/tex/context/base/mkxl/good-gen.lmt texmf-dist/tex/context/base/mkxl/good-mth.lmt + texmf-dist/tex/context/base/mkxl/grph-epd.lmt + texmf-dist/tex/context/base/mkxl/grph-epd.lua texmf-dist/tex/context/base/mkxl/grph-epd.mkxl texmf-dist/tex/context/base/mkxl/grph-fig.mkxl texmf-dist/tex/context/base/mkxl/grph-inc.lmt @@ -74928,28 +77980,42 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/grph-trf.mkxl texmf-dist/tex/context/base/mkxl/hand-ini.mkxl texmf-dist/tex/context/base/mkxl/java-ini.mkxl + texmf-dist/tex/context/base/mkxl/l-number.lmt + texmf-dist/tex/context/base/mkxl/l-unicode.lmt texmf-dist/tex/context/base/mkxl/lang-def.mkxl texmf-dist/tex/context/base/mkxl/lang-dis.lmt texmf-dist/tex/context/base/mkxl/lang-frd.mkxl texmf-dist/tex/context/base/mkxl/lang-frq.mkxl + texmf-dist/tex/context/base/mkxl/lang-hup.lmt + texmf-dist/tex/context/base/mkxl/lang-hup.mkxl texmf-dist/tex/context/base/mkxl/lang-hyp.lmt texmf-dist/tex/context/base/mkxl/lang-hyp.mkxl texmf-dist/tex/context/base/mkxl/lang-ini.lmt texmf-dist/tex/context/base/mkxl/lang-ini.mkxl + texmf-dist/tex/context/base/mkxl/lang-lab.lmt texmf-dist/tex/context/base/mkxl/lang-lab.mkxl texmf-dist/tex/context/base/mkxl/lang-mis.mkxl + texmf-dist/tex/context/base/mkxl/lang-rep.lmt texmf-dist/tex/context/base/mkxl/lang-rep.mkxl texmf-dist/tex/context/base/mkxl/lang-spa.mkxl + texmf-dist/tex/context/base/mkxl/lang-tra.lmt texmf-dist/tex/context/base/mkxl/lang-tra.mkxl + texmf-dist/tex/context/base/mkxl/lang-url.lmt texmf-dist/tex/context/base/mkxl/lang-url.mkxl texmf-dist/tex/context/base/mkxl/lang-wrd.mkxl texmf-dist/tex/context/base/mkxl/layo-ini.lmt texmf-dist/tex/context/base/mkxl/layo-ini.mkxl texmf-dist/tex/context/base/mkxl/libs-imp-curl.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-foreign.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-foreign.mkxl texmf-dist/tex/context/base/mkxl/libs-imp-ghostscript.lmt texmf-dist/tex/context/base/mkxl/libs-imp-graphicsmagick.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-imagemagick.lmt texmf-dist/tex/context/base/mkxl/libs-imp-kpse.lmt texmf-dist/tex/context/base/mkxl/libs-imp-kpse.mkxl + texmf-dist/tex/context/base/mkxl/libs-imp-lz4.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-lzma.lmt + texmf-dist/tex/context/base/mkxl/libs-imp-lzo.lmt texmf-dist/tex/context/base/mkxl/libs-imp-mujs.lmt texmf-dist/tex/context/base/mkxl/libs-imp-mujs.mkxl texmf-dist/tex/context/base/mkxl/libs-imp-mysql.lmt @@ -74957,6 +78023,8 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/libs-imp-sqlite.lmt texmf-dist/tex/context/base/mkxl/libs-imp-zint.lmt texmf-dist/tex/context/base/mkxl/libs-imp-zint.mkxl + texmf-dist/tex/context/base/mkxl/libs-imp-zstd.lmt + texmf-dist/tex/context/base/mkxl/libs-ini.lmt texmf-dist/tex/context/base/mkxl/libs-ini.mkxl texmf-dist/tex/context/base/mkxl/lpdf-ano.lmt texmf-dist/tex/context/base/mkxl/lpdf-aux.lmt @@ -74972,10 +78040,8 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/lpdf-ini.lmt texmf-dist/tex/context/base/mkxl/lpdf-lmt.lmt texmf-dist/tex/context/base/mkxl/lpdf-mis.lmt - texmf-dist/tex/context/base/mkxl/lpdf-mov.lmt texmf-dist/tex/context/base/mkxl/lpdf-pde.lmt texmf-dist/tex/context/base/mkxl/lpdf-ren.lmt - texmf-dist/tex/context/base/mkxl/lpdf-res.lmt texmf-dist/tex/context/base/mkxl/lpdf-rul.lmt texmf-dist/tex/context/base/mkxl/lpdf-tag.lmt texmf-dist/tex/context/base/mkxl/lpdf-u3d.lmt @@ -74983,6 +78049,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/lpdf-xmp.lmt texmf-dist/tex/context/base/mkxl/luat-bas.mkxl texmf-dist/tex/context/base/mkxl/luat-cbk.lmt + texmf-dist/tex/context/base/mkxl/luat-cnf.lmt texmf-dist/tex/context/base/mkxl/luat-cod.lmt texmf-dist/tex/context/base/mkxl/luat-cod.mkxl texmf-dist/tex/context/base/mkxl/luat-fio.lmt @@ -74990,6 +78057,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/luat-ini.mkxl texmf-dist/tex/context/base/mkxl/luat-lib.mkxl texmf-dist/tex/context/base/mkxl/luat-log.lmt + texmf-dist/tex/context/base/mkxl/luat-run.lmt texmf-dist/tex/context/base/mkxl/luat-soc.mkxl texmf-dist/tex/context/base/mkxl/luat-usr.lmt texmf-dist/tex/context/base/mkxl/luat-usr.mkxl @@ -75000,25 +78068,44 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/m-mkivmkxl.mkxl texmf-dist/tex/context/base/mkxl/math-acc.mklx texmf-dist/tex/context/base/mkxl/math-act.lmt + texmf-dist/tex/context/base/mkxl/math-ali.lmt texmf-dist/tex/context/base/mkxl/math-ali.mkxl + texmf-dist/tex/context/base/mkxl/math-brl.lmt + texmf-dist/tex/context/base/mkxl/math-com.mkxl texmf-dist/tex/context/base/mkxl/math-def.mkxl texmf-dist/tex/context/base/mkxl/math-del.mkxl + texmf-dist/tex/context/base/mkxl/math-dif.mkxl + texmf-dist/tex/context/base/mkxl/math-dim.lmt texmf-dist/tex/context/base/mkxl/math-dis.mkxl + texmf-dist/tex/context/base/mkxl/math-dld.mklx + texmf-dist/tex/context/base/mkxl/math-ext.lmt + texmf-dist/tex/context/base/mkxl/math-fbk.lmt texmf-dist/tex/context/base/mkxl/math-fen.mkxl + texmf-dist/tex/context/base/mkxl/math-fnt.lmt texmf-dist/tex/context/base/mkxl/math-for.mkxl + texmf-dist/tex/context/base/mkxl/math-frc.lmt texmf-dist/tex/context/base/mkxl/math-frc.mkxl + texmf-dist/tex/context/base/mkxl/math-inc.lmt texmf-dist/tex/context/base/mkxl/math-inc.mkxl + texmf-dist/tex/context/base/mkxl/math-ini.lmt texmf-dist/tex/context/base/mkxl/math-ini.mkxl texmf-dist/tex/context/base/mkxl/math-inl.mkxl texmf-dist/tex/context/base/mkxl/math-int.mkxl + texmf-dist/tex/context/base/mkxl/math-lop.mkxl + texmf-dist/tex/context/base/mkxl/math-map.lmt texmf-dist/tex/context/base/mkxl/math-mis.mkxl texmf-dist/tex/context/base/mkxl/math-noa.lmt texmf-dist/tex/context/base/mkxl/math-pln.mkxl + texmf-dist/tex/context/base/mkxl/math-pre.lmt texmf-dist/tex/context/base/mkxl/math-rad.mklx + texmf-dist/tex/context/base/mkxl/math-ren.lmt texmf-dist/tex/context/base/mkxl/math-scr.mkxl + texmf-dist/tex/context/base/mkxl/math-spa.lmt texmf-dist/tex/context/base/mkxl/math-stc.mklx texmf-dist/tex/context/base/mkxl/math-tag.lmt texmf-dist/tex/context/base/mkxl/math-toy.mkxl + texmf-dist/tex/context/base/mkxl/math-ttv.lmt + texmf-dist/tex/context/base/mkxl/math-twk.mkxl texmf-dist/tex/context/base/mkxl/math-vfu.lmt texmf-dist/tex/context/base/mkxl/meta-blb.mkxl texmf-dist/tex/context/base/mkxl/meta-fig.mkxl @@ -75026,13 +78113,21 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/meta-fnt.mkxl texmf-dist/tex/context/base/mkxl/meta-fun.mkxl texmf-dist/tex/context/base/mkxl/meta-grd.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-bitmaps.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-clock.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-demo.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-experiments.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-functions.lmt + texmf-dist/tex/context/base/mkxl/meta-imp-functions.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-gamesymbols.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-glyphs.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-kindergarten.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-magick.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-placeholders.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-punk.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-symbols.mkxl texmf-dist/tex/context/base/mkxl/meta-imp-threesix.mkxl + texmf-dist/tex/context/base/mkxl/meta-imp-txt.lmt texmf-dist/tex/context/base/mkxl/meta-imp-txt.mkxl texmf-dist/tex/context/base/mkxl/meta-ini.lmt texmf-dist/tex/context/base/mkxl/meta-ini.mkxl @@ -75048,6 +78143,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/mlib-ctx.lmt texmf-dist/tex/context/base/mkxl/mlib-ctx.mkxl texmf-dist/tex/context/base/mkxl/mlib-fio.lmt + texmf-dist/tex/context/base/mkxl/mlib-fnt.lmt texmf-dist/tex/context/base/mkxl/mlib-int.lmt texmf-dist/tex/context/base/mkxl/mlib-lmp.lmt texmf-dist/tex/context/base/mkxl/mlib-lmt.lmt @@ -75056,11 +78152,13 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/mlib-mpf.lmt texmf-dist/tex/context/base/mkxl/mlib-pdf.lmt texmf-dist/tex/context/base/mkxl/mlib-pdf.mkxl + texmf-dist/tex/context/base/mkxl/mlib-pos.lmt texmf-dist/tex/context/base/mkxl/mlib-pps.lmt texmf-dist/tex/context/base/mkxl/mlib-pps.mkxl texmf-dist/tex/context/base/mkxl/mlib-ran.lmt texmf-dist/tex/context/base/mkxl/mlib-run.lmt texmf-dist/tex/context/base/mkxl/mlib-scn.lmt + texmf-dist/tex/context/base/mkxl/mlib-snc.lmt texmf-dist/tex/context/base/mkxl/mlib-svg.lmt texmf-dist/tex/context/base/mkxl/mult-aux.mkxl texmf-dist/tex/context/base/mkxl/mult-def.mkxl @@ -75070,11 +78168,15 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/mult-prm.mkxl texmf-dist/tex/context/base/mkxl/mult-sys.mkxl texmf-dist/tex/context/base/mkxl/node-acc.lmt + texmf-dist/tex/context/base/mkxl/node-ali.lmt texmf-dist/tex/context/base/mkxl/node-aux.lmt texmf-dist/tex/context/base/mkxl/node-bck.lmt texmf-dist/tex/context/base/mkxl/node-bck.mkxl + texmf-dist/tex/context/base/mkxl/node-bwc.lmt texmf-dist/tex/context/base/mkxl/node-cmp.lmt + texmf-dist/tex/context/base/mkxl/node-dir.lmt texmf-dist/tex/context/base/mkxl/node-ext.lmt + texmf-dist/tex/context/base/mkxl/node-ext.mkxl texmf-dist/tex/context/base/mkxl/node-fin.lmt texmf-dist/tex/context/base/mkxl/node-fin.mkxl texmf-dist/tex/context/base/mkxl/node-fnt.lmt @@ -75096,8 +78198,12 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/node-shp.lmt texmf-dist/tex/context/base/mkxl/node-snp.lmt texmf-dist/tex/context/base/mkxl/node-syn.lmt + texmf-dist/tex/context/base/mkxl/node-syn.mkxl texmf-dist/tex/context/base/mkxl/node-tex.lmt texmf-dist/tex/context/base/mkxl/node-tra.lmt + texmf-dist/tex/context/base/mkxl/node-tsk.lmt + texmf-dist/tex/context/base/mkxl/node-tst.lmt + texmf-dist/tex/context/base/mkxl/node-typ.lmt texmf-dist/tex/context/base/mkxl/norm-ctx.mkxl texmf-dist/tex/context/base/mkxl/pack-bar.mkxl texmf-dist/tex/context/base/mkxl/pack-bck.mklx @@ -75106,6 +78212,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/pack-cut.mkxl texmf-dist/tex/context/base/mkxl/pack-fen.mkxl texmf-dist/tex/context/base/mkxl/pack-lyr.mkxl + texmf-dist/tex/context/base/mkxl/pack-mat.mkxl texmf-dist/tex/context/base/mkxl/pack-mis.mklx texmf-dist/tex/context/base/mkxl/pack-mrl.mkxl texmf-dist/tex/context/base/mkxl/pack-obj.lmt @@ -75117,6 +78224,8 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/pack-rul.mkxl texmf-dist/tex/context/base/mkxl/page-app.mkxl texmf-dist/tex/context/base/mkxl/page-bck.mkxl + texmf-dist/tex/context/base/mkxl/page-blk.lmt + texmf-dist/tex/context/base/mkxl/page-blk.mkxl texmf-dist/tex/context/base/mkxl/page-box.mklx texmf-dist/tex/context/base/mkxl/page-brk.mkxl texmf-dist/tex/context/base/mkxl/page-col.mkxl @@ -75128,6 +78237,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/page-flw.mkxl texmf-dist/tex/context/base/mkxl/page-imp.mkxl texmf-dist/tex/context/base/mkxl/page-inf.mkxl + texmf-dist/tex/context/base/mkxl/page-ini.lmt texmf-dist/tex/context/base/mkxl/page-ini.mkxl texmf-dist/tex/context/base/mkxl/page-inj.mklx texmf-dist/tex/context/base/mkxl/page-ins.mkxl @@ -75147,10 +78257,12 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/page-pcl.mkxl texmf-dist/tex/context/base/mkxl/page-plg.mkxl texmf-dist/tex/context/base/mkxl/page-pst.mkxl + texmf-dist/tex/context/base/mkxl/page-sel.lmt texmf-dist/tex/context/base/mkxl/page-sel.mklx texmf-dist/tex/context/base/mkxl/page-sid.mkxl texmf-dist/tex/context/base/mkxl/page-smp.mkxl texmf-dist/tex/context/base/mkxl/page-spr.mkxl + texmf-dist/tex/context/base/mkxl/page-str.lmt texmf-dist/tex/context/base/mkxl/page-str.mkxl texmf-dist/tex/context/base/mkxl/page-txt.mklx texmf-dist/tex/context/base/mkxl/page-var.mkxl @@ -75159,16 +78271,21 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/publ-ini.mkxl texmf-dist/tex/context/base/mkxl/publ-old.mkxl texmf-dist/tex/context/base/mkxl/publ-xml.mkxl + texmf-dist/tex/context/base/mkxl/regi-ini.lmt texmf-dist/tex/context/base/mkxl/regi-ini.mkxl texmf-dist/tex/context/base/mkxl/scrn-bar.mklx texmf-dist/tex/context/base/mkxl/scrn-but.mklx texmf-dist/tex/context/base/mkxl/scrn-fld.mklx texmf-dist/tex/context/base/mkxl/scrn-hlp.mklx + texmf-dist/tex/context/base/mkxl/scrn-ini.lmt texmf-dist/tex/context/base/mkxl/scrn-ini.mklx texmf-dist/tex/context/base/mkxl/scrn-pag.lmt texmf-dist/tex/context/base/mkxl/scrn-pag.mklx + texmf-dist/tex/context/base/mkxl/scrn-ref.lmt texmf-dist/tex/context/base/mkxl/scrn-ref.mklx + texmf-dist/tex/context/base/mkxl/scrn-wid.lmt texmf-dist/tex/context/base/mkxl/scrn-wid.mklx + texmf-dist/tex/context/base/mkxl/scrp-ini.lmt texmf-dist/tex/context/base/mkxl/scrp-ini.mkxl texmf-dist/tex/context/base/mkxl/sort-ini.mkxl texmf-dist/tex/context/base/mkxl/spac-ali.lmt @@ -75195,24 +78312,36 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/strc-des.mklx texmf-dist/tex/context/base/mkxl/strc-doc.mkxl texmf-dist/tex/context/base/mkxl/strc-enu.mklx + texmf-dist/tex/context/base/mkxl/strc-flt.lmt texmf-dist/tex/context/base/mkxl/strc-flt.mklx texmf-dist/tex/context/base/mkxl/strc-ind.mkxl texmf-dist/tex/context/base/mkxl/strc-ini.mklx + texmf-dist/tex/context/base/mkxl/strc-itm.lmt texmf-dist/tex/context/base/mkxl/strc-itm.mklx texmf-dist/tex/context/base/mkxl/strc-lab.mkxl texmf-dist/tex/context/base/mkxl/strc-lev.mklx texmf-dist/tex/context/base/mkxl/strc-lnt.mklx + texmf-dist/tex/context/base/mkxl/strc-lst.lmt texmf-dist/tex/context/base/mkxl/strc-lst.mklx + texmf-dist/tex/context/base/mkxl/strc-mar-old.lmt + texmf-dist/tex/context/base/mkxl/strc-mar-old.mkxl + texmf-dist/tex/context/base/mkxl/strc-mar.lmt texmf-dist/tex/context/base/mkxl/strc-mar.mkxl + texmf-dist/tex/context/base/mkxl/strc-mat.lmt texmf-dist/tex/context/base/mkxl/strc-mat.mkxl + texmf-dist/tex/context/base/mkxl/strc-not.lmt texmf-dist/tex/context/base/mkxl/strc-not.mklx texmf-dist/tex/context/base/mkxl/strc-num.mkxl texmf-dist/tex/context/base/mkxl/strc-pag.mkxl + texmf-dist/tex/context/base/mkxl/strc-ref.lmt texmf-dist/tex/context/base/mkxl/strc-ref.mklx + texmf-dist/tex/context/base/mkxl/strc-reg.lmt texmf-dist/tex/context/base/mkxl/strc-reg.mkxl texmf-dist/tex/context/base/mkxl/strc-ren.mkxl + texmf-dist/tex/context/base/mkxl/strc-rsc.lmt texmf-dist/tex/context/base/mkxl/strc-sbe.mkxl texmf-dist/tex/context/base/mkxl/strc-sec.mkxl + texmf-dist/tex/context/base/mkxl/strc-syn.lmt texmf-dist/tex/context/base/mkxl/strc-syn.mkxl texmf-dist/tex/context/base/mkxl/strc-tag.lmt texmf-dist/tex/context/base/mkxl/strc-tag.mkxl @@ -75222,6 +78351,7 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/supp-box.mkxl texmf-dist/tex/context/base/mkxl/supp-dir.mkxl texmf-dist/tex/context/base/mkxl/supp-mat.mkxl + texmf-dist/tex/context/base/mkxl/supp-ran.lmt texmf-dist/tex/context/base/mkxl/supp-ran.mkxl texmf-dist/tex/context/base/mkxl/symb-emj.lmt texmf-dist/tex/context/base/mkxl/symb-emj.mkxl @@ -75242,13 +78372,17 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/tabl-frm.mkxl texmf-dist/tex/context/base/mkxl/tabl-ltb.mkxl texmf-dist/tex/context/base/mkxl/tabl-mis.mkxl + texmf-dist/tex/context/base/mkxl/tabl-ntb.lmt texmf-dist/tex/context/base/mkxl/tabl-ntb.mkxl texmf-dist/tex/context/base/mkxl/tabl-nte.mkxl texmf-dist/tex/context/base/mkxl/tabl-tab.mkxl + texmf-dist/tex/context/base/mkxl/tabl-tbl.lmt texmf-dist/tex/context/base/mkxl/tabl-tbl.mkxl texmf-dist/tex/context/base/mkxl/tabl-tsp.mkxl texmf-dist/tex/context/base/mkxl/tabl-xnt.mklx + texmf-dist/tex/context/base/mkxl/tabl-xtb.lmt texmf-dist/tex/context/base/mkxl/tabl-xtb.mklx + texmf-dist/tex/context/base/mkxl/task-ini.lmt texmf-dist/tex/context/base/mkxl/task-ini.mkxl texmf-dist/tex/context/base/mkxl/toks-aux.lmt texmf-dist/tex/context/base/mkxl/toks-aux.mkxl @@ -75260,18 +78394,34 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/trac-deb.lmt texmf-dist/tex/context/base/mkxl/trac-deb.mkxl texmf-dist/tex/context/base/mkxl/trac-inf.lmt + texmf-dist/tex/context/base/mkxl/trac-jus.lmt texmf-dist/tex/context/base/mkxl/trac-jus.mkxl + texmf-dist/tex/context/base/mkxl/trac-set.lmt texmf-dist/tex/context/base/mkxl/trac-tex.mkxl texmf-dist/tex/context/base/mkxl/trac-tim.lmt texmf-dist/tex/context/base/mkxl/trac-vis.lmt texmf-dist/tex/context/base/mkxl/trac-vis.mkxl texmf-dist/tex/context/base/mkxl/type-def.mkxl texmf-dist/tex/context/base/mkxl/type-fbk.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-bengali.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-braille.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-devanagari.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-euler.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-gujarati.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-indic.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-kannada.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-malayalam.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-tamil.mkxl + texmf-dist/tex/context/base/mkxl/type-imp-telugu.mkxl texmf-dist/tex/context/base/mkxl/type-ini.lmt texmf-dist/tex/context/base/mkxl/type-ini.mklx texmf-dist/tex/context/base/mkxl/type-lua.mkxl texmf-dist/tex/context/base/mkxl/type-set.mkxl texmf-dist/tex/context/base/mkxl/type-siz.mkxl + texmf-dist/tex/context/base/mkxl/typo-ada.lmt + texmf-dist/tex/context/base/mkxl/typo-ada.mkxl + texmf-dist/tex/context/base/mkxl/typo-adj.lmt + texmf-dist/tex/context/base/mkxl/typo-adj.mkxl texmf-dist/tex/context/base/mkxl/typo-bld.lmt texmf-dist/tex/context/base/mkxl/typo-bld.mkxl texmf-dist/tex/context/base/mkxl/typo-brk.lmt @@ -75284,25 +78434,34 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/typo-del.mkxl texmf-dist/tex/context/base/mkxl/typo-dig.lmt texmf-dist/tex/context/base/mkxl/typo-dig.mkxl + texmf-dist/tex/context/base/mkxl/typo-dir.lmt texmf-dist/tex/context/base/mkxl/typo-dir.mkxl texmf-dist/tex/context/base/mkxl/typo-drp.lmt texmf-dist/tex/context/base/mkxl/typo-drp.mkxl texmf-dist/tex/context/base/mkxl/typo-duc.lmt + texmf-dist/tex/context/base/mkxl/typo-fkr.lmt texmf-dist/tex/context/base/mkxl/typo-fkr.mkxl texmf-dist/tex/context/base/mkxl/typo-fln.lmt texmf-dist/tex/context/base/mkxl/typo-fln.mkxl + texmf-dist/tex/context/base/mkxl/typo-hid.lmt + texmf-dist/tex/context/base/mkxl/typo-hid.mkxl texmf-dist/tex/context/base/mkxl/typo-ini.lmt texmf-dist/tex/context/base/mkxl/typo-ini.mkxl + texmf-dist/tex/context/base/mkxl/typo-inj.lmt texmf-dist/tex/context/base/mkxl/typo-inj.mkxl texmf-dist/tex/context/base/mkxl/typo-itc.lmt texmf-dist/tex/context/base/mkxl/typo-itc.mklx texmf-dist/tex/context/base/mkxl/typo-itm.mkxl texmf-dist/tex/context/base/mkxl/typo-krn.lmt texmf-dist/tex/context/base/mkxl/typo-krn.mkxl + texmf-dist/tex/context/base/mkxl/typo-lan.lmt texmf-dist/tex/context/base/mkxl/typo-lan.mkxl + texmf-dist/tex/context/base/mkxl/typo-lbx.lmt + texmf-dist/tex/context/base/mkxl/typo-lbx.mkxl texmf-dist/tex/context/base/mkxl/typo-lig.mkxl texmf-dist/tex/context/base/mkxl/typo-lin.lmt texmf-dist/tex/context/base/mkxl/typo-lin.mkxl + texmf-dist/tex/context/base/mkxl/typo-man.lmt texmf-dist/tex/context/base/mkxl/typo-mar.lmt texmf-dist/tex/context/base/mkxl/typo-mar.mkxl texmf-dist/tex/context/base/mkxl/typo-ovl.lmt @@ -75312,8 +78471,11 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/typo-par.lmt texmf-dist/tex/context/base/mkxl/typo-par.mkxl texmf-dist/tex/context/base/mkxl/typo-plc.mkxl + texmf-dist/tex/context/base/mkxl/typo-pnc.lmt texmf-dist/tex/context/base/mkxl/typo-pnc.mkxl + texmf-dist/tex/context/base/mkxl/typo-prc.lmt texmf-dist/tex/context/base/mkxl/typo-prc.mklx + texmf-dist/tex/context/base/mkxl/typo-rep.lmt texmf-dist/tex/context/base/mkxl/typo-rep.mkxl texmf-dist/tex/context/base/mkxl/typo-rub.lmt texmf-dist/tex/context/base/mkxl/typo-rub.mkxl @@ -75324,59 +78486,59 @@ runfiles size=17901 texmf-dist/tex/context/base/mkxl/typo-spa.mkxl texmf-dist/tex/context/base/mkxl/typo-sus.lmt texmf-dist/tex/context/base/mkxl/typo-sus.mkxl + texmf-dist/tex/context/base/mkxl/typo-syn.lmt + texmf-dist/tex/context/base/mkxl/typo-syn.mkxl texmf-dist/tex/context/base/mkxl/typo-tal.lmt texmf-dist/tex/context/base/mkxl/typo-tal.mkxl texmf-dist/tex/context/base/mkxl/typo-txt.mklx + texmf-dist/tex/context/base/mkxl/typo-wrp.lmt texmf-dist/tex/context/base/mkxl/typo-wrp.mkxl texmf-dist/tex/context/base/mkxl/unic-ini.mkxl + texmf-dist/tex/context/base/mkxl/util-deb.lmt + texmf-dist/tex/context/base/mkxl/util-fil.lmt + texmf-dist/tex/context/base/mkxl/util-pck.lmt + texmf-dist/tex/context/base/mkxl/util-sac.lmt texmf-dist/tex/context/bib/common/sample.bib - texmf-dist/tex/context/bib/mkii/bibl-ams.tex - texmf-dist/tex/context/bib/mkii/bibl-apa-de.tex - texmf-dist/tex/context/bib/mkii/bibl-apa-fr.tex - texmf-dist/tex/context/bib/mkii/bibl-apa-it.tex - texmf-dist/tex/context/bib/mkii/bibl-apa.tex - texmf-dist/tex/context/bib/mkii/bibl-aps.tex - texmf-dist/tex/context/bib/mkii/bibl-num-fr.tex - texmf-dist/tex/context/bib/mkii/bibl-num.tex - texmf-dist/tex/context/bib/mkii/bibl-ssa.tex texmf-dist/tex/context/colors/icc/context/colorprofiles.lua texmf-dist/tex/context/colors/icc/context/colorprofiles.xml + texmf-dist/tex/context/colors/icc/profiles/default_gray.icc + texmf-dist/tex/context/colors/icc/profiles/ecirgb_v2.icc + texmf-dist/tex/context/colors/icc/profiles/ecirgb_v2_iccv4.icc + texmf-dist/tex/context/colors/icc/profiles/isocoated_v2_300_eci.icc + texmf-dist/tex/context/colors/icc/profiles/isocoated_v2_eci.icc + texmf-dist/tex/context/colors/icc/profiles/srgb_v4_icc_preference.icc texmf-dist/tex/context/filenames.pdf texmf-dist/tex/context/filenames.tex - texmf-dist/tex/context/fonts/mkii/type-buy.mkii - texmf-dist/tex/context/fonts/mkii/type-cbg.mkii - texmf-dist/tex/context/fonts/mkii/type-cow.mkii - texmf-dist/tex/context/fonts/mkii/type-exp.mkii - texmf-dist/tex/context/fonts/mkii/type-fsf.mkii - texmf-dist/tex/context/fonts/mkii/type-ghz.mkii - texmf-dist/tex/context/fonts/mkii/type-hgz.mkii - texmf-dist/tex/context/fonts/mkii/type-mac.mkii - texmf-dist/tex/context/fonts/mkii/type-msw.mkii - texmf-dist/tex/context/fonts/mkii/type-pre.mkii - texmf-dist/tex/context/fonts/mkii/type-win.mkii - texmf-dist/tex/context/fonts/mkii/type-xtx.mkii texmf-dist/tex/context/fonts/mkiv/antykwa-math.lfg texmf-dist/tex/context/fonts/mkiv/antykwapoltawskiego.lfg - texmf-dist/tex/context/fonts/mkiv/asana-math.lfg texmf-dist/tex/context/fonts/mkiv/bonum-math.lfg texmf-dist/tex/context/fonts/mkiv/cambria-math.lfg texmf-dist/tex/context/fonts/mkiv/cambria.lfg texmf-dist/tex/context/fonts/mkiv/cc-icons.lfg texmf-dist/tex/context/fonts/mkiv/ccicons.lfg texmf-dist/tex/context/fonts/mkiv/color-latin.lfg + texmf-dist/tex/context/fonts/mkiv/common-math-jmn.lfg + texmf-dist/tex/context/fonts/mkiv/common-math.lfg + texmf-dist/tex/context/fonts/mkiv/concrete-math.lfg texmf-dist/tex/context/fonts/mkiv/dejavu-math.lfg texmf-dist/tex/context/fonts/mkiv/demo.lfg texmf-dist/tex/context/fonts/mkiv/dingbats.lfg - texmf-dist/tex/context/fonts/mkiv/ebgaramond.lfg + texmf-dist/tex/context/fonts/mkiv/ebgaramond-math.lfg + texmf-dist/tex/context/fonts/mkiv/erewhon-math.lfg texmf-dist/tex/context/fonts/mkiv/euler-math.lfg + texmf-dist/tex/context/fonts/mkiv/generic-math.lfg texmf-dist/tex/context/fonts/mkiv/hanbatanglvt.lfg texmf-dist/tex/context/fonts/mkiv/husayni.lfg texmf-dist/tex/context/fonts/mkiv/hvmath-math.lfg texmf-dist/tex/context/fonts/mkiv/informal-math.lfg texmf-dist/tex/context/fonts/mkiv/iwona-math.lfg + texmf-dist/tex/context/fonts/mkiv/koeielettersot.lfg + texmf-dist/tex/context/fonts/mkiv/kpfonts-math.lfg + texmf-dist/tex/context/fonts/mkiv/kurier-math.lfg + texmf-dist/tex/context/fonts/mkiv/libertinus-math.lfg texmf-dist/tex/context/fonts/mkiv/lm-math.lfg texmf-dist/tex/context/fonts/mkiv/lm.lfg - texmf-dist/tex/context/fonts/mkiv/lucida-opentype-math.lfg + texmf-dist/tex/context/fonts/mkiv/lucida-math.lfg texmf-dist/tex/context/fonts/mkiv/lucida-typeone-math.lfg texmf-dist/tex/context/fonts/mkiv/mathtimes-math.lfg texmf-dist/tex/context/fonts/mkiv/mdbch-math.lfg @@ -75387,32 +78549,39 @@ runfiles size=17901 texmf-dist/tex/context/fonts/mkiv/mdugm-math.lfg texmf-dist/tex/context/fonts/mkiv/minion-math.lfg texmf-dist/tex/context/fonts/mkiv/minion.lfg + texmf-dist/tex/context/fonts/mkiv/modern-math.lfg + texmf-dist/tex/context/fonts/mkiv/newcomputermodern-math.lfg texmf-dist/tex/context/fonts/mkiv/pagella-math.lfg texmf-dist/tex/context/fonts/mkiv/px-math.lfg texmf-dist/tex/context/fonts/mkiv/schola-math.lfg - texmf-dist/tex/context/fonts/mkiv/stix-two-math.lfg + texmf-dist/tex/context/fonts/mkiv/stixtwo-math.lfg texmf-dist/tex/context/fonts/mkiv/symbol-math.lfg texmf-dist/tex/context/fonts/mkiv/termes-math.lfg texmf-dist/tex/context/fonts/mkiv/texgyre.lfg texmf-dist/tex/context/fonts/mkiv/treatments.lfg texmf-dist/tex/context/fonts/mkiv/tx-math.lfg + texmf-dist/tex/context/fonts/mkiv/type-imp-adobegaramond.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-alegreya.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-almfixed.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-antykwa.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-antykwapoltawskiego.mkiv - texmf-dist/tex/context/fonts/mkiv/type-imp-asana.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-averia.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-buy.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-cambria.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-charter.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-cleartype.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-computer-modern-unicode.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-concrete.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-cow.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-dejavu.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-ebgaramond.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-erewhon.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-euler.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-firacode.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-gentium.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-ghz.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-gofonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-hcrfonts.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-hgz.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-husayni.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-hvmath.mkiv @@ -75421,6 +78590,7 @@ runfiles size=17901 texmf-dist/tex/context/fonts/mkiv/type-imp-ipaex.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-iwona.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-koeielettersot.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-kpfonts.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-kurier.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-latinmodern.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-lato.mkiv @@ -75428,14 +78598,15 @@ runfiles size=17901 texmf-dist/tex/context/fonts/mkiv/type-imp-libertine.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-libertinus.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-lmnames.mkiv - texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-opentype.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-lucida-typeone.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-lucida.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-mathdesign.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-mathdigits.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-mathtimes.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-minion.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-modernlatin.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-mscore.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-newcomputermodern.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-opendyslexic.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-osx.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-plex.mkiv @@ -75446,26 +78617,14 @@ runfiles size=17901 texmf-dist/tex/context/fonts/mkiv/type-imp-stix.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-texgyre.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-unfonts.mkiv + texmf-dist/tex/context/fonts/mkiv/type-imp-xcharter.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-xits.mkiv texmf-dist/tex/context/fonts/mkiv/type-imp-xitsbidi.mkiv texmf-dist/tex/context/fonts/mkiv/unifraktur.lfg + texmf-dist/tex/context/fonts/mkiv/xcharter-math.lfg texmf-dist/tex/context/fonts/mkiv/xits-math.lfg - texmf-dist/tex/context/interface/mkii/cont-cs.xml - texmf-dist/tex/context/interface/mkii/cont-de.xml - texmf-dist/tex/context/interface/mkii/cont-fr.xml - texmf-dist/tex/context/interface/mkii/cont-it.xml - texmf-dist/tex/context/interface/mkii/cont-nl.xml - texmf-dist/tex/context/interface/mkii/cont-pe.xml - texmf-dist/tex/context/interface/mkii/cont-ro.xml - texmf-dist/tex/context/interface/mkii/keys-cs.xml - texmf-dist/tex/context/interface/mkii/keys-cz.xml - texmf-dist/tex/context/interface/mkii/keys-de.xml - texmf-dist/tex/context/interface/mkii/keys-en.xml - texmf-dist/tex/context/interface/mkii/keys-fr.xml - texmf-dist/tex/context/interface/mkii/keys-it.xml - texmf-dist/tex/context/interface/mkii/keys-nl.xml - texmf-dist/tex/context/interface/mkii/keys-pe.xml - texmf-dist/tex/context/interface/mkii/keys-ro.xml + texmf-dist/tex/context/fonts/mkxl/bhai.lfg + texmf-dist/tex/context/fonts/mkxl/shobhika.lfg texmf-dist/tex/context/interface/mkiv/context-en.xml texmf-dist/tex/context/interface/mkiv/i-accent.xml texmf-dist/tex/context/interface/mkiv/i-align.xml @@ -75709,19 +78868,12 @@ runfiles size=17901 texmf-dist/tex/context/interface/mkiv/i-whitespace.xml texmf-dist/tex/context/interface/mkiv/i-xml.xml texmf-dist/tex/context/interface/mkiv/i-xtable.xml - texmf-dist/tex/context/modules/common/s-abbreviations-extras.tex - texmf-dist/tex/context/modules/common/s-abbreviations-logos.tex - texmf-dist/tex/context/modules/common/s-abbreviations-mixed.mkiv - texmf-dist/tex/context/modules/common/s-abbreviations-pseudocaps.mkiv - texmf-dist/tex/context/modules/common/s-abbreviations-smallcaps.mkiv - texmf-dist/tex/context/modules/common/s-abbreviations-words.mkiv texmf-dist/tex/context/modules/common/s-cdr-01.tex texmf-dist/tex/context/modules/common/s-faq-00.tex texmf-dist/tex/context/modules/common/s-faq-01.tex texmf-dist/tex/context/modules/common/s-faq-02.tex texmf-dist/tex/context/modules/common/s-faq-03.tex texmf-dist/tex/context/modules/common/s-mod.ctx - texmf-dist/tex/context/modules/common/s-obsolete-tokens.mkiv texmf-dist/tex/context/modules/common/s-pre-00.tex texmf-dist/tex/context/modules/common/s-pre-06.tex texmf-dist/tex/context/modules/common/s-pre-07.tex @@ -75739,123 +78891,6 @@ runfiles size=17901 texmf-dist/tex/context/modules/common/s-pre-67.tex texmf-dist/tex/context/modules/common/s-pre-93.tex texmf-dist/tex/context/modules/common/s-pre-96.tex - texmf-dist/tex/context/modules/mkii/m-arabtex.mkii - texmf-dist/tex/context/modules/mkii/m-chart.mkii - texmf-dist/tex/context/modules/mkii/m-chemic.mkii - texmf-dist/tex/context/modules/mkii/m-cweb.mkii - texmf-dist/tex/context/modules/mkii/m-database.mkii - texmf-dist/tex/context/modules/mkii/m-dratex.mkii - texmf-dist/tex/context/modules/mkii/m-edtsnc.mkii - texmf-dist/tex/context/modules/mkii/m-educat.mkii - texmf-dist/tex/context/modules/mkii/m-format.mkii - texmf-dist/tex/context/modules/mkii/m-graph.mkii - texmf-dist/tex/context/modules/mkii/m-layout.mkii - texmf-dist/tex/context/modules/mkii/m-level.mkii - texmf-dist/tex/context/modules/mkii/m-narrowtt.mkii - texmf-dist/tex/context/modules/mkii/m-obsolete.mkii - texmf-dist/tex/context/modules/mkii/m-pdfsnc.mkii - texmf-dist/tex/context/modules/mkii/m-pictex.mkii - texmf-dist/tex/context/modules/mkii/m-pstricks.mkii - texmf-dist/tex/context/modules/mkii/m-quest.mkii - texmf-dist/tex/context/modules/mkii/m-r.mkii - texmf-dist/tex/context/modules/mkii/m-steps.mkii - texmf-dist/tex/context/modules/mkii/m-streams.mkii - texmf-dist/tex/context/modules/mkii/m-subsub.mkii - texmf-dist/tex/context/modules/mkii/m-tex4ht.mkii - texmf-dist/tex/context/modules/mkii/m-units.mkii - texmf-dist/tex/context/modules/mkii/m-visual.mkii - texmf-dist/tex/context/modules/mkii/ppchtex.mkii - texmf-dist/tex/context/modules/mkii/rlxcache.rlx - texmf-dist/tex/context/modules/mkii/rlxtools.rlx - texmf-dist/tex/context/modules/mkii/s-abr-01.mkii - texmf-dist/tex/context/modules/mkii/s-abr-02.mkii - texmf-dist/tex/context/modules/mkii/s-chi-00.mkii - texmf-dist/tex/context/modules/mkii/s-fnt-01.mkii - texmf-dist/tex/context/modules/mkii/s-fnt-02.mkii - texmf-dist/tex/context/modules/mkii/s-grk-00.mkii - texmf-dist/tex/context/modules/mkii/s-jap-00.mkii - texmf-dist/tex/context/modules/mkii/s-mag-01.mkii - texmf-dist/tex/context/modules/mkii/s-map-10.mkii - texmf-dist/tex/context/modules/mkii/s-mod-00.mkii - texmf-dist/tex/context/modules/mkii/s-mod-01.mkii - texmf-dist/tex/context/modules/mkii/s-mod-02.mkii - texmf-dist/tex/context/modules/mkii/s-pre-01.mkii - texmf-dist/tex/context/modules/mkii/s-pre-02.mkii - texmf-dist/tex/context/modules/mkii/s-pre-03.mkii - texmf-dist/tex/context/modules/mkii/s-pre-04.mkii - texmf-dist/tex/context/modules/mkii/s-pre-05.mkii - texmf-dist/tex/context/modules/mkii/s-pre-09.mkii - texmf-dist/tex/context/modules/mkii/s-pre-10.mkii - texmf-dist/tex/context/modules/mkii/s-pre-11.mkii - texmf-dist/tex/context/modules/mkii/s-pre-14.mkii - texmf-dist/tex/context/modules/mkii/s-pre-15.mkii - texmf-dist/tex/context/modules/mkii/s-pre-17.mkii - texmf-dist/tex/context/modules/mkii/s-pre-19.mkii - texmf-dist/tex/context/modules/mkii/s-pre-30.mkii - texmf-dist/tex/context/modules/mkii/s-pre-60.mkii - texmf-dist/tex/context/modules/mkii/s-pre-61.mkii - texmf-dist/tex/context/modules/mkii/s-pre-62.mkii - texmf-dist/tex/context/modules/mkii/s-pre-63.mkii - texmf-dist/tex/context/modules/mkii/s-pre-64.mkii - texmf-dist/tex/context/modules/mkii/s-pre-68.mkii - texmf-dist/tex/context/modules/mkii/s-pre-71.mkii - texmf-dist/tex/context/modules/mkii/s-ptj-01.mkii - texmf-dist/tex/context/modules/mkii/s-syntax.mkii - texmf-dist/tex/context/modules/mkii/x-calcmath.mkii - texmf-dist/tex/context/modules/mkii/x-chemml.mkii - texmf-dist/tex/context/modules/mkii/x-chemml.xsd - texmf-dist/tex/context/modules/mkii/x-contml.mkii - texmf-dist/tex/context/modules/mkii/x-contml.xsd - texmf-dist/tex/context/modules/mkii/x-corres.mkii - texmf-dist/tex/context/modules/mkii/x-corres.rng - texmf-dist/tex/context/modules/mkii/x-dir-01.mkii - texmf-dist/tex/context/modules/mkii/x-dir-02.mkii - texmf-dist/tex/context/modules/mkii/x-dir-05.mkii - texmf-dist/tex/context/modules/mkii/x-fdf-00.mkii - texmf-dist/tex/context/modules/mkii/x-fe.mkii - texmf-dist/tex/context/modules/mkii/x-fig-00.dtd - texmf-dist/tex/context/modules/mkii/x-fig-00.mkii - texmf-dist/tex/context/modules/mkii/x-fig-00.xsd - texmf-dist/tex/context/modules/mkii/x-fig-01.mkii - texmf-dist/tex/context/modules/mkii/x-fig-02.mkii - texmf-dist/tex/context/modules/mkii/x-fig-03.mkii - texmf-dist/tex/context/modules/mkii/x-fo.mkii - texmf-dist/tex/context/modules/mkii/x-foxet.mkii - texmf-dist/tex/context/modules/mkii/x-mathml.mkii - texmf-dist/tex/context/modules/mkii/x-mathml.xsd - texmf-dist/tex/context/modules/mkii/x-newcml.mkii - texmf-dist/tex/context/modules/mkii/x-newmme.mkii - texmf-dist/tex/context/modules/mkii/x-newmml.mkii - texmf-dist/tex/context/modules/mkii/x-newmmo.mkii - texmf-dist/tex/context/modules/mkii/x-newpml.mkii - texmf-dist/tex/context/modules/mkii/x-om2cml.xsl - texmf-dist/tex/context/modules/mkii/x-openmath.mkii - texmf-dist/tex/context/modules/mkii/x-openmath.xsl - texmf-dist/tex/context/modules/mkii/x-physml.mkii - texmf-dist/tex/context/modules/mkii/x-physml.xsd - texmf-dist/tex/context/modules/mkii/x-res-00.mkii - texmf-dist/tex/context/modules/mkii/x-res-01.mkii - texmf-dist/tex/context/modules/mkii/x-res-02.mkii - texmf-dist/tex/context/modules/mkii/x-res-03.mkii - texmf-dist/tex/context/modules/mkii/x-res-04.mkii - texmf-dist/tex/context/modules/mkii/x-res-08.mkii - texmf-dist/tex/context/modules/mkii/x-res-09.mkii - texmf-dist/tex/context/modules/mkii/x-res-10.mkii - texmf-dist/tex/context/modules/mkii/x-res-11.mkii - texmf-dist/tex/context/modules/mkii/x-res-12.mkii - texmf-dist/tex/context/modules/mkii/x-res-20.mkii - texmf-dist/tex/context/modules/mkii/x-res-50.mkii - texmf-dist/tex/context/modules/mkii/x-sch-00.mkii - texmf-dist/tex/context/modules/mkii/x-sch-01.mkii - texmf-dist/tex/context/modules/mkii/x-set-01.mkii - texmf-dist/tex/context/modules/mkii/x-set-02.mkii - texmf-dist/tex/context/modules/mkii/x-set-11.mkii - texmf-dist/tex/context/modules/mkii/x-set-12.mkii - texmf-dist/tex/context/modules/mkii/x-sm2om.xsl - texmf-dist/tex/context/modules/mkii/x-steps.mkii - texmf-dist/tex/context/modules/mkii/x-xml-01.mkii - texmf-dist/tex/context/modules/mkii/x-xml-02.mkii - texmf-dist/tex/context/modules/mkii/x-xml-11.mkii texmf-dist/tex/context/modules/mkiv/m-asymptote.lua texmf-dist/tex/context/modules/mkiv/m-asymptote.mkiv texmf-dist/tex/context/modules/mkiv/m-barcodes.mkiv @@ -75863,6 +78898,7 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/m-chart.lua texmf-dist/tex/context/modules/mkiv/m-chart.mkvi texmf-dist/tex/context/modules/mkiv/m-chemic.mkiv + texmf-dist/tex/context/modules/mkiv/m-circuitikz.mkiv texmf-dist/tex/context/modules/mkiv/m-compatible.mkiv texmf-dist/tex/context/modules/mkiv/m-cweb.mkiv texmf-dist/tex/context/modules/mkiv/m-database.lua @@ -75874,7 +78910,6 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/m-examn.mkiv texmf-dist/tex/context/modules/mkiv/m-fields.mkiv texmf-dist/tex/context/modules/mkiv/m-format.mkiv - texmf-dist/tex/context/modules/mkiv/m-gnuplot.mkxl texmf-dist/tex/context/modules/mkiv/m-graph.mkiv texmf-dist/tex/context/modules/mkiv/m-hemistich.mkiv texmf-dist/tex/context/modules/mkiv/m-ipsum.mkiv @@ -75911,17 +78946,18 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/m-steps.mkvi texmf-dist/tex/context/modules/mkiv/m-subsub.mkiv texmf-dist/tex/context/modules/mkiv/m-system-aliasing.mkiv - texmf-dist/tex/context/modules/mkiv/m-system-readers.mkxl texmf-dist/tex/context/modules/mkiv/m-three.mkiv texmf-dist/tex/context/modules/mkiv/m-tikz.mkiv texmf-dist/tex/context/modules/mkiv/m-timing.mkiv - texmf-dist/tex/context/modules/mkiv/m-timing.mkxl texmf-dist/tex/context/modules/mkiv/m-trackers.mkiv texmf-dist/tex/context/modules/mkiv/m-translate.mkiv texmf-dist/tex/context/modules/mkiv/m-typesetting.mkiv texmf-dist/tex/context/modules/mkiv/m-units.mkiv texmf-dist/tex/context/modules/mkiv/m-visual.mkiv + texmf-dist/tex/context/modules/mkiv/m-zint.mkiv texmf-dist/tex/context/modules/mkiv/ppchtex.mkiv + texmf-dist/tex/context/modules/mkiv/s-abbreviations-extras.tex + texmf-dist/tex/context/modules/mkiv/s-abbreviations-logos.tex texmf-dist/tex/context/modules/mkiv/s-abbreviations-mixed.mkiv texmf-dist/tex/context/modules/mkiv/s-abbreviations-pseudocaps.mkiv texmf-dist/tex/context/modules/mkiv/s-abbreviations-smallcaps.mkiv @@ -75996,7 +79032,9 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/s-math-parameters.mkiv texmf-dist/tex/context/modules/mkiv/s-math-repertoire.mkiv texmf-dist/tex/context/modules/mkiv/s-module-basic.mkiv + texmf-dist/tex/context/modules/mkiv/s-obsolete-tokens.mkiv texmf-dist/tex/context/modules/mkiv/s-pages-statistics.mkiv + texmf-dist/tex/context/modules/mkiv/s-physics-units.lua texmf-dist/tex/context/modules/mkiv/s-physics-units.mkiv texmf-dist/tex/context/modules/mkiv/s-present-balls.mkiv texmf-dist/tex/context/modules/mkiv/s-present-banner.mkiv @@ -76041,12 +79079,11 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/s-sql-tables.mkiv texmf-dist/tex/context/modules/mkiv/s-structure-sections.mkiv texmf-dist/tex/context/modules/mkiv/s-syntax.mkiv - texmf-dist/tex/context/modules/mkiv/s-system-macros.mkxl - texmf-dist/tex/context/modules/mkiv/s-system-tokens.mkxl texmf-dist/tex/context/modules/mkiv/s-system-visual.mkiv texmf-dist/tex/context/modules/mkiv/s-tugboat-columns.mkiv texmf-dist/tex/context/modules/mkiv/s-tugboat.mkiv texmf-dist/tex/context/modules/mkiv/s-typesetting-kerning.mkiv + texmf-dist/tex/context/modules/mkiv/s-version.mkiv texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.lua texmf-dist/tex/context/modules/mkiv/s-xml-analyzers.mkiv texmf-dist/tex/context/modules/mkiv/s-youless.mkiv @@ -76074,7 +79111,6 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/x-mathml-html.mkiv texmf-dist/tex/context/modules/mkiv/x-mathml.lua texmf-dist/tex/context/modules/mkiv/x-mathml.mkiv - texmf-dist/tex/context/modules/mkiv/x-newmml.mkiv texmf-dist/tex/context/modules/mkiv/x-pandoc.mkiv texmf-dist/tex/context/modules/mkiv/x-pfs-01.mkiv texmf-dist/tex/context/modules/mkiv/x-pfsense.ctx @@ -76090,17 +79126,45 @@ runfiles size=17901 texmf-dist/tex/context/modules/mkiv/x-steps.mkiv texmf-dist/tex/context/modules/mkiv/x-udhr.mkiv texmf-dist/tex/context/modules/mkiv/x-xfdf.mkiv + texmf-dist/tex/context/modules/mkxl/m-barcodes.mkxl + texmf-dist/tex/context/modules/mkxl/m-circuitikz.mkxl + texmf-dist/tex/context/modules/mkxl/m-crappyspec.mkxl + texmf-dist/tex/context/modules/mkxl/m-gimmicks.mkxl + texmf-dist/tex/context/modules/mkxl/m-gnuplot.mkxl + texmf-dist/tex/context/modules/mkxl/m-json.mkxl + texmf-dist/tex/context/modules/mkxl/m-mathfun.mkxl + texmf-dist/tex/context/modules/mkxl/m-oldmath.mkxl + texmf-dist/tex/context/modules/mkxl/m-openstreetmap.lmt + texmf-dist/tex/context/modules/mkxl/m-openstreetmap.mkxl + texmf-dist/tex/context/modules/mkxl/m-svg.mkxl + texmf-dist/tex/context/modules/mkxl/m-system-readers.mkxl + texmf-dist/tex/context/modules/mkxl/m-tikz-pgfplots.tex + texmf-dist/tex/context/modules/mkxl/m-tikz-pgfplotstable.tex + texmf-dist/tex/context/modules/mkxl/m-tikz.mkxl + texmf-dist/tex/context/modules/mkxl/m-timing.mkxl + texmf-dist/tex/context/modules/mkxl/s-braille-basic.mkxl texmf-dist/tex/context/modules/mkxl/s-characters-combinations.lmt texmf-dist/tex/context/modules/mkxl/s-characters-combinations.mkxl texmf-dist/tex/context/modules/mkxl/s-colors-show.mkxl texmf-dist/tex/context/modules/mkxl/s-fonts-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-languages-goodies.lmt + texmf-dist/tex/context/modules/mkxl/s-languages-goodies.mkxl texmf-dist/tex/context/modules/mkxl/s-layout-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-math-atoms.mkxl + texmf-dist/tex/context/modules/mkxl/s-math-definitions.mkxl + texmf-dist/tex/context/modules/mkxl/s-math-tweaks.mkxl texmf-dist/tex/context/modules/mkxl/s-publications-show.mkxl texmf-dist/tex/context/modules/mkxl/s-symbols-show.mkxl + texmf-dist/tex/context/modules/mkxl/s-system-macros.mkxl + texmf-dist/tex/context/modules/mkxl/s-system-tokens.lmt + texmf-dist/tex/context/modules/mkxl/s-system-tokens.mkxl + texmf-dist/tex/context/modules/mkxl/x-mathml.lmt + texmf-dist/tex/context/modules/mkxl/x-mathml.mkxl texmf-dist/tex/context/patterns/common/lang-af.rme texmf-dist/tex/context/patterns/common/lang-agr.rme texmf-dist/tex/context/patterns/common/lang-ala.rme texmf-dist/tex/context/patterns/common/lang-bg.rme + texmf-dist/tex/context/patterns/common/lang-bn.rme texmf-dist/tex/context/patterns/common/lang-ca.rme texmf-dist/tex/context/patterns/common/lang-cs.rme texmf-dist/tex/context/patterns/common/lang-cy.rme @@ -76114,10 +79178,14 @@ runfiles size=17901 texmf-dist/tex/context/patterns/common/lang-fi.rme texmf-dist/tex/context/patterns/common/lang-fr.rme texmf-dist/tex/context/patterns/common/lang-gb.rme + texmf-dist/tex/context/patterns/common/lang-gr.rme + texmf-dist/tex/context/patterns/common/lang-gu.rme + texmf-dist/tex/context/patterns/common/lang-hi.rme texmf-dist/tex/context/patterns/common/lang-hr.rme texmf-dist/tex/context/patterns/common/lang-hu.rme texmf-dist/tex/context/patterns/common/lang-is.rme texmf-dist/tex/context/patterns/common/lang-it.rme + texmf-dist/tex/context/patterns/common/lang-kn.rme texmf-dist/tex/context/patterns/common/lang-la.rme texmf-dist/tex/context/patterns/common/lang-lt.rme texmf-dist/tex/context/patterns/common/lang-lv.rme @@ -76131,108 +79199,25 @@ runfiles size=17901 texmf-dist/tex/context/patterns/common/lang-pt.rme texmf-dist/tex/context/patterns/common/lang-ro.rme texmf-dist/tex/context/patterns/common/lang-ru.rme + texmf-dist/tex/context/patterns/common/lang-sa.rme texmf-dist/tex/context/patterns/common/lang-sk.rme texmf-dist/tex/context/patterns/common/lang-sl.rme + texmf-dist/tex/context/patterns/common/lang-sq.rme texmf-dist/tex/context/patterns/common/lang-sr.rme texmf-dist/tex/context/patterns/common/lang-sv.rme + texmf-dist/tex/context/patterns/common/lang-ta.rme + texmf-dist/tex/context/patterns/common/lang-te.rme texmf-dist/tex/context/patterns/common/lang-th.rme texmf-dist/tex/context/patterns/common/lang-tk.rme texmf-dist/tex/context/patterns/common/lang-tr.rme texmf-dist/tex/context/patterns/common/lang-uk.rme texmf-dist/tex/context/patterns/common/lang-us.rme texmf-dist/tex/context/patterns/common/lang-zh.rme - texmf-dist/tex/context/patterns/mkii/lang-af.hyp - texmf-dist/tex/context/patterns/mkii/lang-af.pat - texmf-dist/tex/context/patterns/mkii/lang-agr.hyp - texmf-dist/tex/context/patterns/mkii/lang-agr.pat - texmf-dist/tex/context/patterns/mkii/lang-ala.hyp - texmf-dist/tex/context/patterns/mkii/lang-ala.pat - texmf-dist/tex/context/patterns/mkii/lang-bg.hyp - texmf-dist/tex/context/patterns/mkii/lang-bg.pat - texmf-dist/tex/context/patterns/mkii/lang-ca.hyp - texmf-dist/tex/context/patterns/mkii/lang-ca.pat - texmf-dist/tex/context/patterns/mkii/lang-cs.hyp - texmf-dist/tex/context/patterns/mkii/lang-cs.pat - texmf-dist/tex/context/patterns/mkii/lang-cy.hyp - texmf-dist/tex/context/patterns/mkii/lang-cy.pat - texmf-dist/tex/context/patterns/mkii/lang-da.hyp - texmf-dist/tex/context/patterns/mkii/lang-da.pat - texmf-dist/tex/context/patterns/mkii/lang-de.hyp - texmf-dist/tex/context/patterns/mkii/lang-de.pat - texmf-dist/tex/context/patterns/mkii/lang-deo.hyp - texmf-dist/tex/context/patterns/mkii/lang-deo.pat - texmf-dist/tex/context/patterns/mkii/lang-eo.hyp - texmf-dist/tex/context/patterns/mkii/lang-eo.pat - texmf-dist/tex/context/patterns/mkii/lang-es.hyp - texmf-dist/tex/context/patterns/mkii/lang-es.pat - texmf-dist/tex/context/patterns/mkii/lang-et.hyp - texmf-dist/tex/context/patterns/mkii/lang-et.pat - texmf-dist/tex/context/patterns/mkii/lang-eu.hyp - texmf-dist/tex/context/patterns/mkii/lang-eu.pat - texmf-dist/tex/context/patterns/mkii/lang-fi.hyp - texmf-dist/tex/context/patterns/mkii/lang-fi.pat - texmf-dist/tex/context/patterns/mkii/lang-fr.hyp - texmf-dist/tex/context/patterns/mkii/lang-fr.pat - texmf-dist/tex/context/patterns/mkii/lang-gb.hyp - texmf-dist/tex/context/patterns/mkii/lang-gb.pat - texmf-dist/tex/context/patterns/mkii/lang-hr.hyp - texmf-dist/tex/context/patterns/mkii/lang-hr.pat - texmf-dist/tex/context/patterns/mkii/lang-hu.hyp - texmf-dist/tex/context/patterns/mkii/lang-hu.pat - texmf-dist/tex/context/patterns/mkii/lang-is.hyp - texmf-dist/tex/context/patterns/mkii/lang-is.pat - texmf-dist/tex/context/patterns/mkii/lang-it.hyp - texmf-dist/tex/context/patterns/mkii/lang-it.pat - texmf-dist/tex/context/patterns/mkii/lang-la.hyp - texmf-dist/tex/context/patterns/mkii/lang-la.pat - texmf-dist/tex/context/patterns/mkii/lang-lt.hyp - texmf-dist/tex/context/patterns/mkii/lang-lt.pat - texmf-dist/tex/context/patterns/mkii/lang-lv.hyp - texmf-dist/tex/context/patterns/mkii/lang-lv.pat - texmf-dist/tex/context/patterns/mkii/lang-mk.hyp - texmf-dist/tex/context/patterns/mkii/lang-mk.pat - texmf-dist/tex/context/patterns/mkii/lang-ml.hyp - texmf-dist/tex/context/patterns/mkii/lang-ml.pat - texmf-dist/tex/context/patterns/mkii/lang-mn.hyp - texmf-dist/tex/context/patterns/mkii/lang-mn.pat - texmf-dist/tex/context/patterns/mkii/lang-nb.hyp - texmf-dist/tex/context/patterns/mkii/lang-nb.pat - texmf-dist/tex/context/patterns/mkii/lang-nl.hyp - texmf-dist/tex/context/patterns/mkii/lang-nl.pat - texmf-dist/tex/context/patterns/mkii/lang-nn.hyp - texmf-dist/tex/context/patterns/mkii/lang-nn.pat - texmf-dist/tex/context/patterns/mkii/lang-pl.hyp - texmf-dist/tex/context/patterns/mkii/lang-pl.pat - texmf-dist/tex/context/patterns/mkii/lang-pt.hyp - texmf-dist/tex/context/patterns/mkii/lang-pt.pat - texmf-dist/tex/context/patterns/mkii/lang-ro.hyp - texmf-dist/tex/context/patterns/mkii/lang-ro.pat - texmf-dist/tex/context/patterns/mkii/lang-ru.hyp - texmf-dist/tex/context/patterns/mkii/lang-ru.pat - texmf-dist/tex/context/patterns/mkii/lang-sk.hyp - texmf-dist/tex/context/patterns/mkii/lang-sk.pat - texmf-dist/tex/context/patterns/mkii/lang-sl.hyp - texmf-dist/tex/context/patterns/mkii/lang-sl.pat - texmf-dist/tex/context/patterns/mkii/lang-sr.hyp - texmf-dist/tex/context/patterns/mkii/lang-sr.pat - texmf-dist/tex/context/patterns/mkii/lang-sv.hyp - texmf-dist/tex/context/patterns/mkii/lang-sv.pat - texmf-dist/tex/context/patterns/mkii/lang-th.hyp - texmf-dist/tex/context/patterns/mkii/lang-th.pat - texmf-dist/tex/context/patterns/mkii/lang-tk.hyp - texmf-dist/tex/context/patterns/mkii/lang-tk.pat - texmf-dist/tex/context/patterns/mkii/lang-tr.hyp - texmf-dist/tex/context/patterns/mkii/lang-tr.pat - texmf-dist/tex/context/patterns/mkii/lang-uk.hyp - texmf-dist/tex/context/patterns/mkii/lang-uk.pat - texmf-dist/tex/context/patterns/mkii/lang-us.hyp - texmf-dist/tex/context/patterns/mkii/lang-us.pat - texmf-dist/tex/context/patterns/mkii/lang-zh.hyp - texmf-dist/tex/context/patterns/mkii/lang-zh.pat texmf-dist/tex/context/patterns/mkiv/lang-af.lua texmf-dist/tex/context/patterns/mkiv/lang-agr.lua texmf-dist/tex/context/patterns/mkiv/lang-ala.lua texmf-dist/tex/context/patterns/mkiv/lang-bg.lua + texmf-dist/tex/context/patterns/mkiv/lang-bn.lua texmf-dist/tex/context/patterns/mkiv/lang-ca.lua texmf-dist/tex/context/patterns/mkiv/lang-cs.lua texmf-dist/tex/context/patterns/mkiv/lang-cy.lua @@ -76246,10 +79231,14 @@ runfiles size=17901 texmf-dist/tex/context/patterns/mkiv/lang-fi.lua texmf-dist/tex/context/patterns/mkiv/lang-fr.lua texmf-dist/tex/context/patterns/mkiv/lang-gb.lua + texmf-dist/tex/context/patterns/mkiv/lang-gr.lua + texmf-dist/tex/context/patterns/mkiv/lang-gu.lua + texmf-dist/tex/context/patterns/mkiv/lang-hi.lua texmf-dist/tex/context/patterns/mkiv/lang-hr.lua texmf-dist/tex/context/patterns/mkiv/lang-hu.lua texmf-dist/tex/context/patterns/mkiv/lang-is.lua texmf-dist/tex/context/patterns/mkiv/lang-it.lua + texmf-dist/tex/context/patterns/mkiv/lang-kn.lua texmf-dist/tex/context/patterns/mkiv/lang-la.lua texmf-dist/tex/context/patterns/mkiv/lang-lt.lua texmf-dist/tex/context/patterns/mkiv/lang-lv.lua @@ -76263,10 +79252,14 @@ runfiles size=17901 texmf-dist/tex/context/patterns/mkiv/lang-pt.lua texmf-dist/tex/context/patterns/mkiv/lang-ro.lua texmf-dist/tex/context/patterns/mkiv/lang-ru.lua + texmf-dist/tex/context/patterns/mkiv/lang-sa.lua texmf-dist/tex/context/patterns/mkiv/lang-sk.lua texmf-dist/tex/context/patterns/mkiv/lang-sl.lua + texmf-dist/tex/context/patterns/mkiv/lang-sq.lua texmf-dist/tex/context/patterns/mkiv/lang-sr.lua texmf-dist/tex/context/patterns/mkiv/lang-sv.lua + texmf-dist/tex/context/patterns/mkiv/lang-ta.lua + texmf-dist/tex/context/patterns/mkiv/lang-te.lua texmf-dist/tex/context/patterns/mkiv/lang-th.lua texmf-dist/tex/context/patterns/mkiv/lang-tk.lua texmf-dist/tex/context/patterns/mkiv/lang-tr.lua @@ -76274,6 +79267,8 @@ runfiles size=17901 texmf-dist/tex/context/patterns/mkiv/lang-us.lua texmf-dist/tex/context/patterns/mkiv/lang-zh.lua texmf-dist/tex/context/patterns/mkiv/word-xx.lua + texmf-dist/tex/context/patterns/mkxl/lang-de.llg + texmf-dist/tex/context/patterns/mkxl/lang-en.llg texmf-dist/tex/context/sample/common/bryson.tex texmf-dist/tex/context/sample/common/carey.tex texmf-dist/tex/context/sample/common/carrol.tex @@ -76282,7 +79277,6 @@ runfiles size=17901 texmf-dist/tex/context/sample/common/cow-brown.mps texmf-dist/tex/context/sample/common/cow-brown.pdf texmf-dist/tex/context/sample/common/cow.pdf - texmf-dist/tex/context/sample/common/cuomo.tex texmf-dist/tex/context/sample/common/d-res-01.xml texmf-dist/tex/context/sample/common/darwin.tex texmf-dist/tex/context/sample/common/davis.tex @@ -76304,6 +79298,7 @@ runfiles size=17901 texmf-dist/tex/context/sample/common/mcnish.tex texmf-dist/tex/context/sample/common/mill.png texmf-dist/tex/context/sample/common/montgomery.tex + texmf-dist/tex/context/sample/common/pluto.xml texmf-dist/tex/context/sample/common/poe.tex texmf-dist/tex/context/sample/common/reich.tex texmf-dist/tex/context/sample/common/sample.tex @@ -76311,11 +79306,13 @@ runfiles size=17901 texmf-dist/tex/context/sample/common/samples.tex texmf-dist/tex/context/sample/common/sapolsky.tex texmf-dist/tex/context/sample/common/spider.eps + texmf-dist/tex/context/sample/common/stork.tex texmf-dist/tex/context/sample/common/thuan.tex texmf-dist/tex/context/sample/common/tufte.tex texmf-dist/tex/context/sample/common/waltham.tex texmf-dist/tex/context/sample/common/ward.tex texmf-dist/tex/context/sample/common/weisman.tex + texmf-dist/tex/context/sample/common/welcome-to-context.tex texmf-dist/tex/context/sample/common/zapf.tex texmf-dist/tex/context/sample/third/aesop-de.tex texmf-dist/tex/context/sample/third/aristotle-grc.tex @@ -76369,7 +79366,6 @@ runfiles size=17901 texmf-dist/tex/context/test/mkiv/pdf-x3-2003.mkiv texmf-dist/tex/context/test/mkiv/pdf-x4.mkiv texmf-dist/tex/context/test/mkiv/pdf-x4p.mkiv - texmf-dist/tex/context/user/mkii/cont-sys.rme texmf-dist/tex/generic/context/luatex/luatex-basics-chr.lua texmf-dist/tex/generic/context/luatex/luatex-basics-gen.lua texmf-dist/tex/generic/context/luatex/luatex-basics-nod.lua @@ -76409,10 +79405,6 @@ runfiles size=17901 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 @@ -76707,7 +79699,7 @@ catalogue-topics typesetting name context-filter category ConTeXt -revision 55718 +revision 62070 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 @@ -76718,16 +79710,17 @@ longdesc output should be read back, and to choose the name of the longdesc temporary files that are created. The module is compatible with longdesc both MkII and MkIV. depend context -containersize 6564 -containerchecksum cfd8b7f1276464a8593dce148e170105c2da3d20a755a4d197999b2c00610a3ee0227a8820e5eb34c09ac3537381c8cc984a67efba2c3fe8b85f7c57cb13c720 -doccontainersize 10884 -doccontainerchecksum 20279aeab1d574ff034b208d8657b02d35efc7f6ab1a92847bc3a7d0453e152571fec214cbfc90a70cd8e8debd2ec57317fda47183a10f644776949c295fc1a9 +containersize 6872 +containerchecksum c2534b543fd5444776a054f43fafa393040af5bcb67f869d61d200a4a1d0355f1d81c64adab683d15a6be806a21dfc9ad661995bbe51da3c0bfb841ade4b077f +doccontainersize 11080 +doccontainerchecksum a9c2ea88b0e2514840c368ea7686894dda4b86c93ec8f34989238ffdf5704f1c1898d0ee5e0724035314d2d37803f1a1afdd445dd802a94f5ff4223148f81767 docfiles size=10 RELOC/doc/context/third/filter/VERSION RELOC/doc/context/third/filter/filter.txt details="Package notes" -runfiles size=12 +runfiles size=18 RELOC/tex/context/third/filter/t-filter.mkii RELOC/tex/context/third/filter/t-filter.mkiv + RELOC/tex/context/third/filter/t-filter.mkxl RELOC/tex/context/third/filter/t-module-catcodes.mkii RELOC/tex/context/third/filter/t-module-catcodes.mkiv catalogue-ctan /macros/context/contrib/context-filter @@ -76869,32 +79862,6 @@ catalogue-ctan /macros/context/contrib/context-handlecsv catalogue-license gpl3 catalogue-topics context csv-support -name context-inifile -category ConTeXt -revision 47085 -shortdesc An ini-file pretty-printer, using ConTeXt -relocated 1 -longdesc The module parses an ini-file and prints the contents with a -longdesc user-defined layout. The entries of the file may be sorted by -longdesc up to three sort keys. The format of a simple ini-file would -longdesc be: [key1] symbol1 = value1 symbol2 = value2 [key2] symbol1 = -longdesc value3 symbol2 = value4 The module only works with ConTeXt -longdesc MkIV, and uses Lua to help process the input. -depend context -containersize 2756 -containerchecksum 9dd9b61cd2b5700b0e2b6e59bf4040de9431820c659f121c2681e454ddb4b34454270eac6c442836c90f8a1819761ce0d7659684a1f0c8876fec1f947a0b16f7 -doccontainersize 81492 -doccontainerchecksum 9635bc80ae7222c6a38004ad5f985004634b7db9596e03a23123ad71bbf177639bb1b028bdfe79d51b75c1c429c327f65c2b5e0720723d8bcdf63f4939312850 -docfiles size=24 - RELOC/doc/context/third/inifile/VERSION - RELOC/doc/context/third/inifile/inifile-demo.pdf details="Example of use" - RELOC/doc/context/third/inifile/inifile-doc.pdf details="Package documentation" -runfiles size=2 - RELOC/tex/context/third/inifile/t-inifile.tex -catalogue-ctan /macros/context/contrib/context-inifile -catalogue-license gpl -catalogue-topics data-disp - name context-layout category ConTeXt revision 47085 @@ -76919,75 +79886,48 @@ catalogue-topics context name context-letter category ConTeXt -revision 56073 +revision 60787 shortdesc ConTeXt package for writing letters relocated 1 longdesc A means of writing 'vanilla' letters and memos is provided, longdesc with support covering ConTeXt Mkii and Mkiv. The design of longdesc letters may be amended by a wide range of style specifications. depend context -containersize 27176 -containerchecksum 12c0e37865f241eb37b46989346e16c75cd49672e76e22f511d2a146ea221e0279c93ebacd0b85e0377cffab0ae07e26515fe3a6abb86bc85df52b87569dec2a -doccontainersize 692 -doccontainerchecksum 81e18af260a8441aedc04e48f120c69ea9fadf08fd69b18d95caeb1e98d5de8d0d37aadcb7589273122c4cf8a8b8832ed55675426f5cb29dfa3f9e60dd3012f4 +containersize 20808 +containerchecksum 558836a8c95743270f627a18dfe7a29ffc7a2eaeb4cf663d589ef5c07eab4dad6f09db31511379c90a41d1e9e7da5766e8dc3c8bb0902fa06bda4fb33caa97c9 +doccontainersize 696 +doccontainerchecksum 94e1bf68371f3e8c426cfff5c471f93c86ce51fdd92dfad59669d32cc73d86de606113ece55d13a0f25ac4a26f16916407de9175b84acc79ba107156c20cd20a docfiles size=2 RELOC/doc/context/third/letter/README details="Readme" RELOC/doc/context/third/letter/VERSION -runfiles size=120 +runfiles size=77 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 @@ -77052,46 +79992,6 @@ catalogue-ctan /macros/context/contrib/context-mathsets catalogue-license other-free catalogue-topics maths -name context-notes-zh-cn -category Package -revision 23171 -shortdesc Notes on using ConTeXt MkIV -relocated 1 -longdesc An introductory tutorial on ConTeXt, in Chinese. The document -longdesc covers ConTeXt installation, fonts, layout design, -longdesc cross-reference, project structure, metafun and presentation -longdesc design. -depend context -containersize 492 -containerchecksum a05cd68d609fb9427ca07f64ba1b9ad85762464a3294653c8a790c0a6a41d6af43aab72a1eb7ef0d56a299db2f54af5666dbe974f9fdac014f624350c8bfe50a -doccontainersize 858504 -doccontainerchecksum 4261b8aeb5b3cbebde2890af1b7039c6f557ce36f4979228f40f9e5e99b19aa5c457ed6842f4501f4dc32f51f58d9fcd0764028b9d5c74fd07d41c8c866220a1 -docfiles size=252 - RELOC/doc/context/third/context-notes-zh-cn/README details="Readme" - RELOC/doc/context/third/context-notes-zh-cn/ctxnotes.pdf details="The document itself" - RELOC/doc/context/third/context-notes-zh-cn/src/Makefile - RELOC/doc/context/third/context-notes-zh-cn/src/basis.tex - RELOC/doc/context/third/context-notes-zh-cn/src/bibl-lyr.tex - RELOC/doc/context/third/context-notes-zh-cn/src/bibliography.bib - RELOC/doc/context/third/context-notes-zh-cn/src/ctxnotes.tex - RELOC/doc/context/third/context-notes-zh-cn/src/doc-env.tex - RELOC/doc/context/third/context-notes-zh-cn/src/figures/bookmark.png - RELOC/doc/context/third/context-notes-zh-cn/src/figures/cow.pdf - RELOC/doc/context/third/context-notes-zh-cn/src/figures/gardeninglion.jpg - RELOC/doc/context/third/context-notes-zh-cn/src/figures/header.png - RELOC/doc/context/third/context-notes-zh-cn/src/fonts.tex - RELOC/doc/context/third/context-notes-zh-cn/src/layout.tex - RELOC/doc/context/third/context-notes-zh-cn/src/metafun.tex - RELOC/doc/context/third/context-notes-zh-cn/src/project.tex - RELOC/doc/context/third/context-notes-zh-cn/src/references.tex - RELOC/doc/context/third/context-notes-zh-cn/src/t-layout.tex - RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.lua - RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.mkiv - RELOC/doc/context/third/context-notes-zh-cn/src/t-zhspuncs.lua -catalogue-ctan /info/context-notes-zh-cn -catalogue-license gpl -catalogue-topics chinese-doc - name context-rst category ConTeXt revision 47085 @@ -77184,7 +80084,7 @@ catalogue-topics font-supp context name context-simpleslides category ConTeXt -revision 47085 +revision 63903 shortdesc A module for preparing presentations relocated 1 longdesc This ConTeXt module provides an easy-to-use interface for @@ -77195,10 +80095,10 @@ longdesc mixed with the text of slides. The module provides several longdesc predefined styles, designed for academic presentation. Most longdesc styles are configurable, and it is easy to design new styles. depend context -containersize 29208 -containerchecksum 8bc6a0ee37116c200cffdc6595fa4d6b3383dd92da869f2e142d475a5693cc2ff4745144e3b2fd5a3ad0876a5182f1824a2a402aa48b0b02e288990e16056083 -doccontainersize 849592 -doccontainerchecksum 06b57a4d89ad4aebdc08fb002229b822073b36da4096db390ffa3dfc92c32b6a0b138fb31a09406a011d647d260fba9274144f5463a1df3c50ec816d31d2662a +containersize 29096 +containerchecksum 2db8348769d60d38266ad3798264864a0453b38c769db02ddaee072e795596fd48cc201caa5023d980c1a748c41a30e4c560ece68def59deb3c467bec2e60f64 +doccontainersize 849560 +doccontainerchecksum 532a9a142b30c8fe2ff3431d24988ef96e5da63276cd0084fe8b69b3e9cb572a0beab8d7ee4291d00a4b1d725f3d23ed47632811fde7e2aca41998c5d44a0481 docfiles size=2065 RELOC/doc/context/third/simpleslides/VERSION RELOC/doc/context/third/simpleslides/example.pdf @@ -77293,7 +80193,7 @@ catalogue-topics context name context-transliterator category ConTeXt -revision 47085 +revision 61127 shortdesc Transliterate text from 'other' alphabets relocated 1 longdesc The package will read text in one alphabet, and provide a @@ -77301,26 +80201,20 @@ longdesc transliterated version in another; this is useful for readers longdesc who cannot read the original alphabet. The package can make longdesc allowance for hyphenation. depend context -containersize 70668 -containerchecksum d41cd0ebcb99670bd48f8becde633c21401dd9044bbf93618a031da10c59bb8f6d4d6bbc68eecac75965b26f5052f797609d67d791cd7a281f72cd062d3d7388 -doccontainersize 186784 -doccontainerchecksum 4dd501af23511dc81853ddd48ace2aa572c553aea0ba09cf2895b8bd05c4bdf08a6f5e254eab88d4098d441f1d410c0161b1e8b24e3ebf88a38bf364e90b8539 -docfiles size=55 - RELOC/doc/context/third/transliterator/COPYING +containersize 19012 +containerchecksum f919d3f9e6ab25932cfaeadfc07f86ebdbe00d84dc21236e4775930fc3866cee69cf9a25d373e13655f4396a3c395ea6ea103a28ffb4f00a4e95b7ceaec155c9 +doccontainersize 192808 +doccontainerchecksum 8473c1ca7b48009055f5c33031ec60f80d84dc43396789b0c0c7e6d65bcf014a237088dca07211beae4bfb80377f55cf12a9f379995cff50f52143fc4bc81295 +docfiles size=56 RELOC/doc/context/third/transliterator/VERSION RELOC/doc/context/third/transliterator/transliterator.pdf details="Package documentation" RELOC/doc/context/third/transliterator/transliterator.tex -runfiles size=112 +runfiles size=32 + RELOC/scripts/context/lua/third/transliterator/mtx-t-transliterate.lua 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 @@ -77328,11 +80222,7 @@ runfiles size=112 RELOC/tex/context/third/transliterator/trans_tables_scntfc.lua RELOC/tex/context/third/transliterator/trans_tables_sr.lua RELOC/tex/context/third/transliterator/trans_tables_trsc.lua - RELOC/tex/context/third/transliterator/transliterator.ctl - RELOC/tex/context/third/transliterator/transliterator.log RELOC/tex/context/third/transliterator/transliterator.lua - RELOC/tex/context/third/transliterator/transliterator.run - RELOC/tex/context/third/transliterator/transliterator.tuc catalogue-ctan /macros/context/contrib/context-transliterator catalogue-license bsd catalogue-topics enc-juggle @@ -77361,94 +80251,61 @@ catalogue-topics geometry context name context-typescripts category ConTeXt -revision 47085 +revision 60422 shortdesc Small modules to load various fonts for use in ConTeXt relocated 1 longdesc The package provides files offering interfaces to 33 publicly longdesc available fonts (or collections of fonts from the same longdesc foundry); each is available in a .mkii and a .mkiv version. depend context -containersize 9224 -containerchecksum f2d43256997cfba2ab2fe0fc8ebe90a3798bb42e6d455fbe84540654a95fb06a170aa19cf11e4f3477517473b21fc05426247b1f1d39c9132e703c0f1a9a5d0c -doccontainersize 648 -doccontainerchecksum de15432472678cd9c7bdc0e2597f1fe02275fa986767f269fb4237e8d0095a1100908e0b46429741c8ffebfa84fcc27272045314cfc185ccaadf5ffbbe030f69 +containersize 7216 +containerchecksum a13d06b9a792cbd2352016df508a7860e45b541d04cef1c9d9c8b5a6199120a71dfd69f990700c4a76ac31ec11209caef431a190b9045bdc46cc44f88cbef0a3 +doccontainersize 644 +doccontainerchecksum 3d948f22da14b1d481817477235657cee714e4a2a69834729c20e18157f1175890ddc7fce992e8f5f27e26cd6d08186ff1521e2186681557cfff1a4778267324 docfiles size=2 RELOC/doc/context/third/typescripts/README details="Readme" RELOC/doc/context/third/typescripts/VERSION -runfiles size=71 - RELOC/tex/context/third/typescripts/type-adobe.mkii - RELOC/tex/context/third/typescripts/type-adobe.mkiv - RELOC/tex/context/third/typescripts/type-aller.mkii - RELOC/tex/context/third/typescripts/type-aller.mkiv - RELOC/tex/context/third/typescripts/type-anivers.mkii - RELOC/tex/context/third/typescripts/type-anivers.mkiv - RELOC/tex/context/third/typescripts/type-audimat.mkii - RELOC/tex/context/third/typescripts/type-audimat.mkiv - RELOC/tex/context/third/typescripts/type-axel.mkii - RELOC/tex/context/third/typescripts/type-axel.mkiv - RELOC/tex/context/third/typescripts/type-azuro.mkii - RELOC/tex/context/third/typescripts/type-azuro.mkiv - RELOC/tex/context/third/typescripts/type-calluna.mkii - RELOC/tex/context/third/typescripts/type-calluna.mkiv - RELOC/tex/context/third/typescripts/type-charissil.mkii - RELOC/tex/context/third/typescripts/type-charissil.mkiv - RELOC/tex/context/third/typescripts/type-charter.mkii - RELOC/tex/context/third/typescripts/type-charter.mkiv - RELOC/tex/context/third/typescripts/type-delicious.mkii - RELOC/tex/context/third/typescripts/type-delicious.mkiv - RELOC/tex/context/third/typescripts/type-diavlo.mkii - RELOC/tex/context/third/typescripts/type-diavlo.mkiv - RELOC/tex/context/third/typescripts/type-droid.mkii - RELOC/tex/context/third/typescripts/type-droid.mkiv - RELOC/tex/context/third/typescripts/type-ernestine.mkiv - RELOC/tex/context/third/typescripts/type-fertigo.mkii - RELOC/tex/context/third/typescripts/type-fertigo.mkiv - RELOC/tex/context/third/typescripts/type-fontin.mkii - RELOC/tex/context/third/typescripts/type-fontin.mkiv - RELOC/tex/context/third/typescripts/type-goudysans.mkii - RELOC/tex/context/third/typescripts/type-goudysans.mkiv - RELOC/tex/context/third/typescripts/type-junicode.mkii - RELOC/tex/context/third/typescripts/type-junicode.mkiv - RELOC/tex/context/third/typescripts/type-justus.mkii - RELOC/tex/context/third/typescripts/type-justus.mkiv - RELOC/tex/context/third/typescripts/type-kaffeesatz.mkii - RELOC/tex/context/third/typescripts/type-kaffeesatz.mkiv - RELOC/tex/context/third/typescripts/type-kontrapunkt.mkii - RELOC/tex/context/third/typescripts/type-kontrapunkt.mkiv - RELOC/tex/context/third/typescripts/type-liberation.mkii - RELOC/tex/context/third/typescripts/type-liberation.mkiv - RELOC/tex/context/third/typescripts/type-luxi.mkii - RELOC/tex/context/third/typescripts/type-luxi.mkiv - RELOC/tex/context/third/typescripts/type-miso.mkii - RELOC/tex/context/third/typescripts/type-miso.mkiv - RELOC/tex/context/third/typescripts/type-museo.mkii - RELOC/tex/context/third/typescripts/type-museo.mkiv - RELOC/tex/context/third/typescripts/type-office.mkiv - RELOC/tex/context/third/typescripts/type-pigiarniq.mkii - RELOC/tex/context/third/typescripts/type-pigiarniq.mkiv - RELOC/tex/context/third/typescripts/type-sabon.mkii - RELOC/tex/context/third/typescripts/type-sabon.mkiv - RELOC/tex/context/third/typescripts/type-tallys.mkii - RELOC/tex/context/third/typescripts/type-tallys.mkiv - RELOC/tex/context/third/typescripts/type-tuffy.mkii - RELOC/tex/context/third/typescripts/type-tuffy.mkiv - RELOC/tex/context/third/typescripts/type-ubuntu.mkii - RELOC/tex/context/third/typescripts/type-ubuntu.mkiv - RELOC/tex/context/third/typescripts/type-uqammaq.mkii - RELOC/tex/context/third/typescripts/type-uqammaq.mkiv - RELOC/tex/context/third/typescripts/type-vera.mkii - RELOC/tex/context/third/typescripts/type-vera.mkiv - RELOC/tex/context/third/typescripts/type-verajja.mkii - RELOC/tex/context/third/typescripts/type-verajja.mkiv - RELOC/tex/context/third/typescripts/type-vollkorn.mkii - RELOC/tex/context/third/typescripts/type-vollkorn.mkiv +runfiles size=35 + RELOC/tex/context/third/typescripts/type-imp-adobe.mkiv + RELOC/tex/context/third/typescripts/type-imp-aller.mkiv + RELOC/tex/context/third/typescripts/type-imp-anivers.mkiv + RELOC/tex/context/third/typescripts/type-imp-audimat.mkiv + RELOC/tex/context/third/typescripts/type-imp-axel.mkiv + RELOC/tex/context/third/typescripts/type-imp-azuro.mkiv + RELOC/tex/context/third/typescripts/type-imp-calluna.mkiv + RELOC/tex/context/third/typescripts/type-imp-charissil.mkiv + RELOC/tex/context/third/typescripts/type-imp-delicious.mkiv + RELOC/tex/context/third/typescripts/type-imp-diavlo.mkiv + RELOC/tex/context/third/typescripts/type-imp-droid.mkiv + RELOC/tex/context/third/typescripts/type-imp-ernestine.mkiv + RELOC/tex/context/third/typescripts/type-imp-fertigo.mkiv + RELOC/tex/context/third/typescripts/type-imp-fontin.mkiv + RELOC/tex/context/third/typescripts/type-imp-goudysans.mkiv + RELOC/tex/context/third/typescripts/type-imp-itccharter.mkiv + RELOC/tex/context/third/typescripts/type-imp-junicode.mkiv + RELOC/tex/context/third/typescripts/type-imp-justus.mkiv + RELOC/tex/context/third/typescripts/type-imp-kaffeesatz.mkiv + RELOC/tex/context/third/typescripts/type-imp-kontrapunkt.mkiv + RELOC/tex/context/third/typescripts/type-imp-luxi.mkiv + RELOC/tex/context/third/typescripts/type-imp-miso.mkiv + RELOC/tex/context/third/typescripts/type-imp-museo.mkiv + RELOC/tex/context/third/typescripts/type-imp-office.mkiv + RELOC/tex/context/third/typescripts/type-imp-pigiarniq.mkiv + RELOC/tex/context/third/typescripts/type-imp-sabon.mkiv + RELOC/tex/context/third/typescripts/type-imp-tallys.mkiv + RELOC/tex/context/third/typescripts/type-imp-tuffy.mkiv + RELOC/tex/context/third/typescripts/type-imp-ubuntu.mkiv + RELOC/tex/context/third/typescripts/type-imp-uqammaq.mkiv + RELOC/tex/context/third/typescripts/type-imp-vera.mkiv + RELOC/tex/context/third/typescripts/type-imp-verajja.mkiv + RELOC/tex/context/third/typescripts/type-imp-vollkorn.mkiv catalogue-ctan /macros/context/contrib/context-typescripts catalogue-license gpl2 catalogue-topics font-use context name context-vim category ConTeXt -revision 58082 +revision 62071 shortdesc Generate ConTeXt syntax highlighting code from vim relocated 1 longdesc ConTeXt has excellent pretty printing capabilities for many @@ -77462,19 +80319,20 @@ longdesc generate the syntax highlighting. There is a helper longdesc 2context.vim script to do the syntax parsing in ViM. depend context depend context-filter -containersize 10048 -containerchecksum 47f6ef2dec0048dc5b858ac32bee045f3b0c62ac8ea4b8684f3e219b9df924f507889d69516bd03c582a36d62b1d5d213678871be58bd6792bf19edcd5a9dab4 -doccontainersize 10784 -doccontainerchecksum f67ae9f7864db3398f1dfaaa9b79cd7faa208d40531d6501c977fc45b4ae45ac2c73695fa7e2e35e446494009f38f5e7b1fe82075cccbaed92a1a312eb00e3b2 +containersize 10232 +containerchecksum 12100c7aa3eb555cf9dbe72454a96e63feda52329a8a192ff86ba30477acab4ebaaf84c15a79f16d4e3f95cef02baf8146e5810b8c9e8e94c25ba1317bf4fc2c +doccontainersize 10908 +doccontainerchecksum 0f49e22b9e1d465f46727a9e952e095eceab55e77a2559fe497cf14690377f77ca42aa23ce7eaca659e9b0983e5a950b36733eef49b0473fd33a8f783edb43b1 docfiles size=10 RELOC/doc/context/third/vim/VERSION RELOC/doc/context/third/vim/vim.txt details="Package usage notes" -runfiles size=18 +runfiles size=21 RELOC/tex/context/third/vim/2context.vim RELOC/tex/context/third/vim/t-syntax-groups.mkii RELOC/tex/context/third/vim/t-syntax-groups.mkiv RELOC/tex/context/third/vim/t-syntax-highlight.mkii RELOC/tex/context/third/vim/t-syntax-highlight.mkiv + RELOC/tex/context/third/vim/t-syntax-highlight.mkxl RELOC/tex/context/third/vim/t-vim.tex RELOC/tex/context/third/vim/vimtyping-default.css catalogue-also context-filter @@ -77513,245 +80371,172 @@ catalogue-topics context name context.aarch64-linux category Package -revision 46208 +revision 66562 shortdesc aarch64-linux files of context -containersize 468 -containerchecksum e9cee1a9fea82e473ee814778942308b955b5e75e892cd464fc317b6012f698a3130aa5a05a227e1dd21ef9cc5a2391b7fb8a4f2cef4ca2b1cd6c53aaed69067 -binfiles arch=aarch64-linux size=7 +containersize 985796 +containerchecksum 4e1332729fd429fdd9599d921c395f97a8e64769280c9bc00ba88e4f669017d8273f8dd16f62348959abd432c8ee5d84f3c4336390b0af834ec6ed09fe48577c +binfiles arch=aarch64-linux size=766 bin/aarch64-linux/context - bin/aarch64-linux/contextjit - bin/aarch64-linux/luatools + bin/aarch64-linux/context.lua + bin/aarch64-linux/luametatex bin/aarch64-linux/mtxrun - bin/aarch64-linux/mtxrunjit - bin/aarch64-linux/texexec - bin/aarch64-linux/texmfstart + bin/aarch64-linux/mtxrun.lua name context.amd64-freebsd category Package -revision 34112 +revision 66562 shortdesc amd64-freebsd files of context -containersize 460 -containerchecksum 2f63ad94028aceb15c8da68e64660b555ad16b46c9366605982d1723c1a713bdc505963401f340898abb96eda41fc66e812dede665d374c7f1818adfc5aeeeff -binfiles arch=amd64-freebsd size=7 +containersize 972848 +containerchecksum 045e0762cc15aac586105fa4aac37116a9aa73a52cb8e79120c14898d11458d684bc4bc0726575f837f1171aeedcbe1d431ef4bccd8c5d685869df1f190ced49 +binfiles arch=amd64-freebsd size=730 bin/amd64-freebsd/context - bin/amd64-freebsd/contextjit - bin/amd64-freebsd/luatools + bin/amd64-freebsd/context.lua + bin/amd64-freebsd/luametatex bin/amd64-freebsd/mtxrun - bin/amd64-freebsd/mtxrunjit - bin/amd64-freebsd/texexec - bin/amd64-freebsd/texmfstart + bin/amd64-freebsd/mtxrun.lua name context.amd64-netbsd category Package -revision 34112 +revision 66563 shortdesc amd64-netbsd files of context -containersize 464 -containerchecksum 6333829aa66af572ca46dbeb7194baa819b61bdee92c459f44a0bccf41ced1073533a48634b8d7b510113fb1d22383ef5b9b388ff44f6be40a03c529b4effc89 -binfiles arch=amd64-netbsd size=7 +containersize 1075944 +containerchecksum ebe728ceafad4844686a25758a4e058ddd7c39f064d6d42cdc255679f1b6bbf6cc2d6a29973e5c46f881dbd4312d543d10e764019e20a1272e4c98b363fa3586 +binfiles arch=amd64-netbsd size=783 bin/amd64-netbsd/context - bin/amd64-netbsd/contextjit - bin/amd64-netbsd/luatools + bin/amd64-netbsd/context.lua + bin/amd64-netbsd/luametatex bin/amd64-netbsd/mtxrun - bin/amd64-netbsd/mtxrunjit - bin/amd64-netbsd/texexec - bin/amd64-netbsd/texmfstart + bin/amd64-netbsd/mtxrun.lua name context.armhf-linux category Package -revision 34112 +revision 66562 shortdesc armhf-linux files of context -containersize 468 -containerchecksum fecdb490311e357fe1e70b5f7cf24534331aa13ae559ab876835bf620cc24aebace0116b182d5af0dfc264c5940223da59f54c9c4b6f49041865b004e5247ecb -binfiles arch=armhf-linux size=7 +containersize 792340 +containerchecksum a4d31c9e318c8ba6d645b3282cae2e523a902ae527b2f9346d53c1f8864d2d094ff7a17c7db0c4026b80572694fe2dcf709a2866262fcfeff7df6fe8d3a0aee8 +binfiles arch=armhf-linux size=583 bin/armhf-linux/context - bin/armhf-linux/contextjit - bin/armhf-linux/luatools + bin/armhf-linux/context.lua + bin/armhf-linux/luametatex bin/armhf-linux/mtxrun - bin/armhf-linux/mtxrunjit - bin/armhf-linux/texexec - bin/armhf-linux/texmfstart - -name context.i386-cygwin -category Package -revision 34112 -shortdesc i386-cygwin files of context -containersize 464 -containerchecksum 92e9be45e80960767c1840cdec387a4ea01794a26ece70ded484dea095aa3057a22af3e4b47da55a9298a6bffc18120559822439462c9683bdc8e1926c73d9f3 -binfiles arch=i386-cygwin size=7 - bin/i386-cygwin/context - bin/i386-cygwin/contextjit - bin/i386-cygwin/luatools - bin/i386-cygwin/mtxrun - bin/i386-cygwin/mtxrunjit - bin/i386-cygwin/texexec - bin/i386-cygwin/texmfstart + bin/armhf-linux/mtxrun.lua name context.i386-freebsd category Package -revision 34112 +revision 66562 shortdesc i386-freebsd files of context -containersize 472 -containerchecksum cf56ad167df69984888ff5c2ed3e9a7d2b8385432f5242a596b5cd9e52bcbf52fd7872f1762cb0c6d1f8354a1b9df4102c911aea52bce89fc2403fa61cbe7d4c -binfiles arch=i386-freebsd size=7 +containersize 884412 +containerchecksum dc2d8ac0da1cd4970aa025cf6dce5bdd92ad9f1b712c86817e683b4c033aaeab8bb25fd1d67c31e71b3a8403f6308347a2b445be5d572ebf1630d036fb2f2dc0 +binfiles arch=i386-freebsd size=652 bin/i386-freebsd/context - bin/i386-freebsd/contextjit - bin/i386-freebsd/luatools + bin/i386-freebsd/context.lua + bin/i386-freebsd/luametatex bin/i386-freebsd/mtxrun - bin/i386-freebsd/mtxrunjit - bin/i386-freebsd/texexec - bin/i386-freebsd/texmfstart + bin/i386-freebsd/mtxrun.lua name context.i386-linux category Package -revision 34112 +revision 66562 shortdesc i386-linux files of context -containersize 460 -containerchecksum 134f4bf731ee801fd7018100c8453180f339a2180781c85f1e5cd8a9c3d5e6f35b450cc99b77a73e2a9f90ea9027bf6145c429ebf70e59712248940f04c45b9a -binfiles arch=i386-linux size=7 +containersize 1212508 +containerchecksum 488d1caf3349ff12bb80c6494d1a99a1a156c43bf5be8c9bf60d6a8ec9fb50623288f694939df67a4da8c9bc372008d7be3f2908cf0018d9007b9475c04bafdc +binfiles arch=i386-linux size=938 bin/i386-linux/context - bin/i386-linux/contextjit - bin/i386-linux/luatools + bin/i386-linux/context.lua + bin/i386-linux/luametatex bin/i386-linux/mtxrun - bin/i386-linux/mtxrunjit - bin/i386-linux/texexec - bin/i386-linux/texmfstart - -name context.i386-netbsd -category Package -revision 34112 -shortdesc i386-netbsd files of context -containersize 460 -containerchecksum b046a1f317f91c5a567c5180436147a8221206d0b8364a8a91ba6d19c80b23222b9a2ab379a7715307a9599090905cea8a64bcef24580e240d1d4517d8179acb -binfiles arch=i386-netbsd size=7 - bin/i386-netbsd/context - bin/i386-netbsd/contextjit - bin/i386-netbsd/luatools - bin/i386-netbsd/mtxrun - bin/i386-netbsd/mtxrunjit - bin/i386-netbsd/texexec - bin/i386-netbsd/texmfstart + bin/i386-linux/mtxrun.lua name context.i386-solaris category Package -revision 34112 +revision 66562 shortdesc i386-solaris files of context -containersize 472 -containerchecksum cd261832da8e7c0ad10e9e36d40f7eee5bf55a3f8dfd76a5643efa98dfb70bd668fcd9acdbf6809575a18a8ccf367df4fb87310d7bef61682ea7ebea442057cf -binfiles arch=i386-solaris size=7 +containersize 986812 +containerchecksum d814f1dbd269df8e0260d6641152d945bb66827c12136a189a5d2d90875af933e663f5e85300c6548054043f2a297160cf7fba267cf22e877825eae4765c79f9 +binfiles arch=i386-solaris size=708 bin/i386-solaris/context - bin/i386-solaris/contextjit - bin/i386-solaris/luatools + bin/i386-solaris/context.lua + bin/i386-solaris/luametatex bin/i386-solaris/mtxrun - bin/i386-solaris/mtxrunjit - bin/i386-solaris/texexec - bin/i386-solaris/texmfstart + bin/i386-solaris/mtxrun.lua name context.universal-darwin category Package -revision 57908 +revision 66562 shortdesc universal-darwin files of context -containersize 472 -containerchecksum c65bac184d5dc03a965bf538fa6c7b34766e43f56662751228287899d3ca53476f9d4430fbf4b6b7779070881dcd33a5865078ec80af59ba47eea299d2874c59 -binfiles arch=universal-darwin size=7 +containersize 1699140 +containerchecksum 5f136657bb5d0304f47e0bca9afd2014a34ee29532d8e3ac7a8f02c33edeeee64d6a8f1234172854cbe154c68aaf82d12e4632bf136fa48e1e76d8b25283d304 +binfiles arch=universal-darwin size=1366 bin/universal-darwin/context - bin/universal-darwin/contextjit - bin/universal-darwin/luatools + bin/universal-darwin/context.lua + bin/universal-darwin/luametatex bin/universal-darwin/mtxrun - bin/universal-darwin/mtxrunjit - bin/universal-darwin/texexec - bin/universal-darwin/texmfstart - -name context.win32 -category Package -revision 58167 -shortdesc win32 files of context -containersize 134260 -containerchecksum ff340adafa56834b4af6ad4d5ad023e9a7e5847b2eca62826f16c2e741bfad82a24593064f04986f76de5e661a2b42f4a86deeceb8d01f19ea01d3d6969d4f02 -binfiles arch=win32 size=185 - bin/win32/context.exe - bin/win32/contextjit.exe - bin/win32/luatools.exe - bin/win32/mtxrun.dll - bin/win32/mtxrun.exe - bin/win32/mtxrun.lua - bin/win32/mtxrunjit.exe - bin/win32/texexec.exe - bin/win32/texmfstart.exe - -name context.x86_64-cygwin -category Package -revision 34112 -shortdesc x86_64-cygwin files of context -containersize 472 -containerchecksum aeff6ffb44d74d8beabfbc309777fb78c8f2adb38274c9f774ebc42b47ebd90454b7849060665ebc63999811a2011509a1a219f6e7ad0a00364b69e7d8694ed4 -binfiles arch=x86_64-cygwin size=7 - bin/x86_64-cygwin/context - bin/x86_64-cygwin/contextjit - bin/x86_64-cygwin/luatools - bin/x86_64-cygwin/mtxrun - bin/x86_64-cygwin/mtxrunjit - bin/x86_64-cygwin/texexec - bin/x86_64-cygwin/texmfstart + bin/universal-darwin/mtxrun.lua + +name context.windows +category Package +revision 66582 +shortdesc windows files of context +containersize 1157288 +containerchecksum 206858a87959a3aaea918b9fad405948bf0543c18b75ee670003fcdd33f4182f75fcb8d9e978f9ee87daeb6d3f54e80c787408e2dd996bbcb236eb9626210b8b +binfiles arch=windows size=2374 + bin/windows/context.exe + bin/windows/context.lua + bin/windows/luametatex.exe + bin/windows/mtxrun.exe + bin/windows/mtxrun.lua name context.x86_64-darwinlegacy category Package -revision 43871 +revision 66562 shortdesc x86_64-darwinlegacy files of context -containersize 476 -containerchecksum cb79e020b5de95a97ce69fa4170f1efea0fd13212f1dc54a33caff5d9abdd3804d824c0f0adbd3934a17bb5f2ddd0a1a86b839b9b37f11467bb1723bfab5864d -binfiles arch=x86_64-darwinlegacy size=7 +containersize 931252 +containerchecksum 8e328c0daa2c33d6bcb57bfa768ceafad3a63e1d16d7802aab3f9864fdcdb4dc037cb101a277d8b9eb4bb359b8029d0f0ccebf9a1441d8175194d51adafc482b +binfiles arch=x86_64-darwinlegacy size=694 bin/x86_64-darwinlegacy/context - bin/x86_64-darwinlegacy/contextjit - bin/x86_64-darwinlegacy/luatools + bin/x86_64-darwinlegacy/context.lua + bin/x86_64-darwinlegacy/luametatex bin/x86_64-darwinlegacy/mtxrun - bin/x86_64-darwinlegacy/mtxrunjit - bin/x86_64-darwinlegacy/texexec - bin/x86_64-darwinlegacy/texmfstart + bin/x86_64-darwinlegacy/mtxrun.lua name context.x86_64-linux category Package -revision 34112 +revision 66562 shortdesc x86_64-linux files of context -containersize 464 -containerchecksum eeea45be144fd63c2f07615cddf2b52eb8c34160fc0f1fdc27c3697e4cff1f5a72ad6dc1c2a48363067e15fddb00ad7dc7daffde53e60a0d84bd6887d83f4c07 -binfiles arch=x86_64-linux size=7 +containersize 1079080 +containerchecksum 85f6d1f81051fe526afcd901d71b0954131412d98cc6f183a3370ef2bea6b4681b2e11e11d08f6e508c1b6e58f543d154ee58adf2ec720231790d1bfbb75f6c1 +binfiles arch=x86_64-linux size=762 bin/x86_64-linux/context - bin/x86_64-linux/contextjit - bin/x86_64-linux/luatools + bin/x86_64-linux/context.lua + bin/x86_64-linux/luametatex bin/x86_64-linux/mtxrun - bin/x86_64-linux/mtxrunjit - bin/x86_64-linux/texexec - bin/x86_64-linux/texmfstart + bin/x86_64-linux/mtxrun.lua name context.x86_64-linuxmusl category Package -revision 46840 +revision 66562 shortdesc x86_64-linuxmusl files of context -containersize 476 -containerchecksum cd6d6eb0c40adabc8faacfd27b159606f9961c8b769cb6969a00df33d2b088e8d611fd54dad140f2aa21cf7a79fb17841776753280f9f45d91cac336a1c79e18 -binfiles arch=x86_64-linuxmusl size=7 +containersize 990652 +containerchecksum 2c59605e44647f1fec93f5b6a75191e1cfde5843ff8d35c3e2d7f840577e68723fa8f1f35fdc458b1531c3b770ad9f70a95812cd703999963e0b822344315a17 +binfiles arch=x86_64-linuxmusl size=758 bin/x86_64-linuxmusl/context - bin/x86_64-linuxmusl/contextjit - bin/x86_64-linuxmusl/luatools + bin/x86_64-linuxmusl/context.lua + bin/x86_64-linuxmusl/luametatex bin/x86_64-linuxmusl/mtxrun - bin/x86_64-linuxmusl/mtxrunjit - bin/x86_64-linuxmusl/texexec - bin/x86_64-linuxmusl/texmfstart + bin/x86_64-linuxmusl/mtxrun.lua name context.x86_64-solaris category Package -revision 34112 +revision 66562 shortdesc x86_64-solaris files of context -containersize 460 -containerchecksum d099aae5eb3831e619a2094ec5aac94e03499f68a471f2087e3c7a9c02cf5c8890c71e9a898d11dc814ef7fd4858cd414d75f94492276d9754eaa2bcf926ce7b -binfiles arch=x86_64-solaris size=7 +containersize 1107928 +containerchecksum 7b8e834e170a287151f4d1f071eac48325f121e15c2cb4de0033f6976ed68533876d48aa505f2f2f7476a82ca5d8bbb2c54b89417d7d9cf674f30db95bd35018 +binfiles arch=x86_64-solaris size=836 bin/x86_64-solaris/context - bin/x86_64-solaris/contextjit - bin/x86_64-solaris/luatools + bin/x86_64-solaris/context.lua + bin/x86_64-solaris/luametatex bin/x86_64-solaris/mtxrun - bin/x86_64-solaris/mtxrunjit - bin/x86_64-solaris/texexec - bin/x86_64-solaris/texmfstart + bin/x86_64-solaris/mtxrun.lua name continue category Package @@ -77938,15 +80723,6 @@ containerchecksum eb1c2ec03fbd320b2999efe2b0eea3af8ee41b5956130122022444e7bf70ef binfiles arch=armhf-linux size=1 bin/armhf-linux/convbkmk -name convbkmk.i386-cygwin -category Package -revision 30408 -shortdesc i386-cygwin files of convbkmk -containersize 340 -containerchecksum 5e37da7699c7fc77d81a7eb62b773e8f8dc34640f413dc4db2c720ac7134305009eece97a672f387b154442e59b66726f155264dd54530053d7f68f1c466010a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/convbkmk - name convbkmk.i386-freebsd category Package revision 30408 @@ -77992,14 +80768,14 @@ containerchecksum cba31583379b47b0841e259642c11967e7203544eefa357f378aecb99fb2f8 binfiles arch=universal-darwin size=1 bin/universal-darwin/convbkmk -name convbkmk.win32 +name convbkmk.windows category Package -revision 26326 -shortdesc win32 files of convbkmk -containersize 684 -containerchecksum 96b29060ff1ee66700757c5acf9015c33099c3ce62c3e1a4e6f45702b4ef235a53a33e4dbb044e1688a8117b90fe38a68d0260a043d806b3c5c70aede403d20c -binfiles arch=win32 size=1 - bin/win32/convbkmk.exe +revision 65891 +shortdesc windows files of convbkmk +containersize 2308 +containerchecksum d97a80114a38f75095842e56557ab19c3dba66e417d8f4dbd9e6c3ed6e205ae8bd8da13c777b708bedcf9c1c8b26c0cc6168e22727103701f0bf5ad6c66efe27 +binfiles arch=windows size=2 + bin/windows/convbkmk.exe name convbkmk.x86_64-cygwin category Package @@ -78077,7 +80853,7 @@ catalogue-version 0.9b name cooking-units category Package -revision 53403 +revision 65241 shortdesc Typeset and convert units for cookery books and recipes relocated 1 longdesc The package provides commands to typeset amounts and units @@ -78086,25 +80862,25 @@ longdesc convert one unit into another (for example 'dag' to 'g'; see longdesc the documentation for more examples). This packages requires longdesc expl3 and xparse, translations, xfrac, l3keys2e, and, longdesc optionally, fmtcount. -containersize 17464 -containerchecksum 4182a43bc869dca19d022ae019fd479ac658c609a792677b9cfe5e3271af890ee353974b15b9cd4bb667f39fb38b96ee1a31359ca4a89986a3c03053ffd1974c -doccontainersize 697692 -doccontainerchecksum 71e7ab3f1a89984063e26d5532eb1c1533efb06b8d8164548b7b46eab966e88e8ce5300ca0c91c639ae896b95bf5e9487c8c149d2f90af7cca0168b674052c8e -docfiles size=172 +containersize 22592 +containerchecksum 82f6e5b097ff7bc737526b13b04724fa144cb96d796cff517019e49befa174f621a41ec4c52d29fd20bb502dab46db1699b98f57de337fef8320392c63839675 +doccontainersize 722996 +doccontainerchecksum 1297801aaf9b7ae7edb900165792e1b7ae91ab6c32482a7006dfddae37e1438a3748f3e048ce385b76dafdbe78ccf5c643e9d78c07f2bc9cdf7802affce14764 +docfiles size=183 RELOC/doc/latex/cooking-units/README.md details="Readme" RELOC/doc/latex/cooking-units/cooking-units.pdf details="Package documentation" -srccontainersize 56868 -srccontainerchecksum 8eb0c4698cf35fcb24b4e02db44f284c51f953ce1debc5f334fa514e4cee0ccb3278c74bdded88cfe379a47ac1f32efe089711f11fafa477f7a053e2e45a0092 -srcfiles size=72 +srccontainersize 74760 +srccontainerchecksum 245b98785b44afb68c70b5cabc228b282d8b9351ca97b0b0f472dd8ebd547928f538c002366a4b9344d74dfa35efffebfa5314ee1cc5e5f292d7134b03b58698 +srcfiles size=94 RELOC/source/latex/cooking-units/cooking-units.dtx RELOC/source/latex/cooking-units/cooking-units.ins -runfiles size=32 +runfiles size=42 RELOC/tex/latex/cooking-units/cooking-units.sty catalogue-contact-repository https://github.com/Vidabe/cooking-units catalogue-ctan /macros/latex/contrib/cooking-units -catalogue-license lppl -catalogue-topics cooking units -catalogue-version 1.46 +catalogue-license lppl1.3c +catalogue-topics cooking units expl3 +catalogue-version 3.00 name cookingsymbols category Package @@ -78169,9 +80945,32 @@ catalogue-license lgpl catalogue-topics maths struc-mkup catalogue-version 1.35 +name coolfn +category Package +revision 66221 +shortdesc Typeset long legal footnotes +relocated 1 +longdesc This package provides formatting for footnotes in long legal +longdesc documents, using hanging indents to make them look nicer. +containersize 1564 +containerchecksum 943b118df8a5a20ae398f3066df04557855986d2d2dc31c2d15d0b2f2493c5837073aab9615fb1ab271c956250888d13d68009133d9da8f593f06879f5c19b20 +doccontainersize 54544 +doccontainerchecksum 7d1f29eb14cf1346b4a13770cd32eb48e82b61dc71bdaae7c347448c0ca46c14f7886c5bcbdd3d9b8f746027b24674c4f7ecddece90688bfa6aa3ca341527e73 +docfiles size=16 + RELOC/doc/latex/coolfn/README details="Readme" + RELOC/doc/latex/coolfn/coolfndocumentation.pdf details="Package documentation" + RELOC/doc/latex/coolfn/coolfndocumentation.tex +runfiles size=1 + RELOC/tex/latex/coolfn/coolfn.sty +catalogue-contact-repository https://github.com/ezgranet/coolfn +catalogue-ctan /macros/latex/contrib/coolfn +catalogue-license lppl1.3c +catalogue-topics footnote +catalogue-version 1.1.0 + name coollist category Package -revision 15878 +revision 63523 shortdesc Manipulate COntent Oriented LaTeX Lists relocated 1 longdesc Lists are defined as a sequence of tokens separated by a comma. @@ -78180,15 +80979,15 @@ longdesc of the list while neglecting others--essentially turning lists longdesc into a sort of array. List elements are accessed by specifying longdesc the position of the object within the list (the index of the longdesc item). -containersize 2360 -containerchecksum e7568164dc7d7aa9395cd79e52e4f58b1087d1203d7ad73dca6aefab9222af6875cbacd3270d3ef193416c1b2d893877118c74a206fdc813b3fbd52935ac9d7c -doccontainersize 110360 -doccontainerchecksum 6e183739d0dea5e0da341381c06a671879caf6fc666a74c87b8c3e9df425d3a99cc4ca2f2acb32969cce869a496f0a50bbfbf1351bd71e177b63829bd11aa6ec +containersize 2332 +containerchecksum f9c220204782a1b61deb6e049b10bb81b5417383e1dd9b7e9b0ec827da48f06e3167f0dc2453d46f3f54923fc2200c2cc714f2f3725f6f41602f8dc493503855 +doccontainersize 110572 +doccontainerchecksum 09d1780a5738f82ff8d1820c015447855b8a930e63f3d0bb3e8e428a3bc6f6239f185fb6f9d7d45af2d9af5ba283fc0fafee7fd9bc88dacf654dfeee46dc375f docfiles size=33 RELOC/doc/latex/coollist/README RELOC/doc/latex/coollist/coollist.pdf details="Package documentation" -srccontainersize 7020 -srccontainerchecksum 5c49e978c7d2ecb73de8a1b5284bbc81c10ed311f67fc2c435d27ebcf048562e2329be02d92cb829ebd497e5cdd11660ec1372bd3256bbce0037766ee8fb647a +srccontainersize 7076 +srccontainerchecksum beb55ae83841be57a743a39c49c83028a0207b8d307e717f91381d3157139748abac33f300683dbcdb683353ad2d8798dbc416d450ba950d9245e45ff87be89f srcfiles size=9 RELOC/source/latex/coollist/coollist.dtx RELOC/source/latex/coollist/coollist.ins @@ -78258,7 +81057,7 @@ catalogue-version 1.2 name cooltooltips category Package -revision 15878 +revision 60201 shortdesc Associate a pop-up window and tooltip with PDF hyperlinks relocated 1 longdesc The cooltooltips package enables a document to contain @@ -78266,15 +81065,16 @@ longdesc hyperlinks that pop up a brief tooltip when the mouse moves longdesc over them and also open a small window containing additional longdesc text. cooltooltips provides the mechanism used by the Visual longdesc LaTeX FAQ to indicate the question that each hyperlink answers. -containersize 2432 -containerchecksum c17cb15979b575ece2c16dac8d56991c7cb32d99e165205c099b5058b658c60b393696fee5f7178611d5ccdf1d812522640dee56c1c4c881a73a11edc2ec8799 -doccontainersize 189604 -doccontainerchecksum 6a091ed9c41f4cf31d9db7cb2c1c76a342583f9d568ed89380bb624fba35cb3b788abde47f746b0e8a0402da19171fce72c7f356da2a2e4cb8264452f727eff7 -docfiles size=57 +containersize 2456 +containerchecksum fde90a48c95ee35a7b9c9dfc1359df09646cd9f5cf1a44a7eba7ffd9aaf98c2bee400dd7ee6796583bea5a874c2693d25d3e502cdd4c3a207949f46ba7525505 +doccontainersize 224384 +doccontainerchecksum 0b9d55f41afb738f1503e232e06809cc2354775c6793c1f5f3f3c65d4aa349294b5e9ad4d223f588dbda0b0f53091cbee4855804273a8d8f21a6689760a556e0 +docfiles size=59 RELOC/doc/latex/cooltooltips/README details="Readme" RELOC/doc/latex/cooltooltips/cooltooltips.pdf details="Package documentation" -srccontainersize 9564 -srccontainerchecksum 8aad4d9623d41caee76932db0a9436760ee5aef346c68e393e39fbc1ebdebb643b7b5215c232ef04f7968c34e3d0b73e0f4a23d2e060930d97b3a047d1bce149 + RELOC/doc/latex/cooltooltips/example.png +srccontainersize 9712 +srccontainerchecksum 584d4880126bbca5343a4a8df85ca348d397dfb5cd5fe8a62d61224f9c95c5a0aed20f8c522d65ed68c6435506613fd0decc35acd848bedf2bf89de6842a7f27 srcfiles size=9 RELOC/source/latex/cooltooltips/cooltooltips.dtx RELOC/source/latex/cooltooltips/cooltooltips.ins @@ -78283,7 +81083,389 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/cooltooltips catalogue-license lppl catalogue-topics pdf-feat -catalogue-version 1.0 +catalogue-version 1.1 + +name coop-writing +category Package +revision 61607 +shortdesc Support for Cooperative Writing and editorial comments +relocated 1 +longdesc This package for Cooperative Writing supports editorial +longdesc comments and gives some extra support for writing and +longdesc submitting papers, such as anonymization commands for any +longdesc document that involves more than one author or editor. The +longdesc general behavior of this package is to provide different ways +longdesc of marking your text, for example with comments or to-do-notes, +longdesc suggestions to add, remove or change text that can be totally +longdesc supressed from the output when desired. Mostly, this can be +longdesc easily done using one of the three main option states: editing, +longdesc submit, and publish. Users should use the editing state most of +longdesc the time. In this state, all markings will appear and +longdesc anonymization will be off. When submitting, the submit state +longdesc will provide a clean article, without any markings, but +longdesc anonymized. It is possible to use the options submit and +longdesc noanonymize together. Publish will never anonymize. The goal is +longdesc to make the submit and publish documents states minimally +longdesc invasive, to avoid any clash with publishers' styles. Commands +longdesc were inspired from different packages that do not work together +longdesc very well, such as ed, todonotes, and color-edits. +containersize 4912 +containerchecksum b00d0ba304a9aa88929a0f130b3e73bf8c095b25cebc6b33d8d01d15cc73766ac3db3a588719fe6480fb4105ed0bde32d5ab2354f2cc223c2e3bb90a8e6f877a +doccontainersize 290348 +doccontainerchecksum 489060dd92b0044cb76c8e4f3f17aecf85da7b320406875b0c9b46fde2edf485868669e4986d9d602eb317ec0199e6ab81bb34096f7635fa4479203e03336577 +docfiles size=120 + RELOC/doc/latex/coop-writing/README.md details="Readme" + RELOC/doc/latex/coop-writing/coop-writing.pdf details="Package documentation" +srccontainersize 17168 +srccontainerchecksum f00f9b9db508f6fb924a4371413631eb6a269f1e70034891a1cf1f6b8df6d81f5f3e7d12e5ff7df29524d5354fd2e6123651d549e997457cf4723a8e723053e4 +srcfiles size=17 + RELOC/source/latex/coop-writing/coop-writing.dtx + RELOC/source/latex/coop-writing/coop-writing.ins +runfiles size=5 + RELOC/tex/latex/coop-writing/coop-writing.sty +catalogue-contact-announce https://github.com/xexeo/coop-writing/discussions/ +catalogue-contact-bugs https://github.com/xexeo/coop-writing/issues +catalogue-contact-repository https://github.com/xexeo/coop-writing +catalogue-ctan /macros/latex/contrib/coop-writing +catalogue-license mit +catalogue-topics editorial +catalogue-version 1.2.4 + +name cooperhewitt +category Package +revision 64967 +shortdesc LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX support for the Cooper Hewitt family of sans serif fonts +relocated 1 +longdesc Cooper Hewitt is a contemporary sans serif, with characters +longdesc composed of modified-geometric curves and arches. Initially +longdesc commissioned by Pentagram to evolve his Polaris Condensed +longdesc typeface, Chester Jenkins created a new digital form to support +longdesc the newly transformed Smithsonian Design Museum. +execute addMap CooperHewitt.map +containersize 934800 +containerchecksum 91047a9831d2f1bd9ce8c3d6b1089316a40312b4920d9e8e26df4a5fc64293eadc45ac211c039ac8bc83df5d3406cfd006d1192945bb3776983f5d571c9e364c +doccontainersize 21800 +doccontainerchecksum 211601a3a1fe2092a1cbb67cf6fa71f7ea2225f425a8556c1b88396c3f0d721ee144346fbd29204c4d68da77363653b1f0b14693139278f2b22a6104bdf949d0 +docfiles size=10 + RELOC/doc/fonts/cooperhewitt/OFL.txt + RELOC/doc/fonts/cooperhewitt/README details="Readme" + RELOC/doc/fonts/cooperhewitt/cooperhewitt-samples.pdf details="Font samples" + RELOC/doc/fonts/cooperhewitt/cooperhewitt-samples.tex +runfiles size=873 + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_4je6jj.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_kvtx4d.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_psuovm.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_r6y6f6.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_sz67he.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_tjvrzf.enc + RELOC/fonts/enc/dvips/cooperhewitt/cphwt_vrwj46.enc + RELOC/fonts/map/dvips/cooperhewitt/CooperHewitt.map + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Bold.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-BoldItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Book.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-BookItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Heavy.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-HeavyItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Light.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-LightItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Medium.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-MediumItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Semibold.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-SemiboldItalic.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-Thin.otf + RELOC/fonts/opentype/public/cooperhewitt/CooperHewitt-ThinItalic.otf + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Book-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-BookItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Heavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Semibold-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/cooperhewitt/CpHwt-ThinItalic-tlf-ts1.tfm + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Bold.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-BoldItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Book.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-BookItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Heavy.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-HeavyItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Light.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-LightItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Medium.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-MediumItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Semibold.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-SemiboldItalic.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-Thin.pfb + RELOC/fonts/type1/public/cooperhewitt/CpHwt-ThinItalic.pfb + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Book-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-BookItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Heavy-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-HeavyItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Light-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Semibold-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-SemiboldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-tlf-ot1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/cooperhewitt/CpHwt-ThinItalic-tlf-ts1.vf + RELOC/tex/latex/cooperhewitt/CooperHewitt.sty + RELOC/tex/latex/cooperhewitt/LY1CpHwt-Sup.fd + RELOC/tex/latex/cooperhewitt/LY1CpHwt-TLF.fd + RELOC/tex/latex/cooperhewitt/OT1CpHwt-Sup.fd + RELOC/tex/latex/cooperhewitt/OT1CpHwt-TLF.fd + RELOC/tex/latex/cooperhewitt/T1CpHwt-Sup.fd + RELOC/tex/latex/cooperhewitt/T1CpHwt-TLF.fd + RELOC/tex/latex/cooperhewitt/TS1CpHwt-TLF.fd +catalogue-contact-development https://www.cooperhewitt.org/open-source-at-cooper-hewitt/cooper-hewitt-the-typeface-by-chester-jenkins/ +catalogue-ctan /fonts/cooperhewitt +catalogue-license ofl lppl +catalogue-topics font font-sans font-t1enc font-proportional font-otf font-type1 name coordsys category Package @@ -78383,7 +81565,7 @@ catalogue-version 0.1 name cormorantgaramond category Package -revision 54696 +revision 64411 shortdesc Cormorant Garamond family of fonts relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -78392,10 +81574,10 @@ longdesc Christian Thalman of Catharsis Fonts. The family includes longdesc light, regular, medium, semi-bold, and bold weights, with longdesc italics. execute addMap CormorantGaramond.map -containersize 5583244 -containerchecksum ecb159a7278d7f2e98402b0174f6985d6e29ce340e2c9cdaafb39116f7be42ae2f802b9cd48265bb8b7b0ef4e0320c35459e07df9af7f18831fb4f2750bb5437 -doccontainersize 158028 -doccontainerchecksum a746ec2d0702cc8ac5b9d62c824c5227ad9ad816a74f04f115fdfb9a19d8e64b31739e4d4421386ea43e98286eab05257f69686c1bb5edda0d9a25e533e81a8a +containersize 5571976 +containerchecksum 1f1707a00298fc2015ba01259dc8558a79e72a10753f3c101f318359f0d4a3b6a9ae16cb1c1825ccf152fb50045f2cca429b00da27607fa8ba1046ad15e5a86f +doccontainersize 158032 +doccontainerchecksum 85a5ba16ec8756b5052b4e6342d47e83c9fc8f348ac3b4c067afba131a7ed853cab04c22f8723a912a1178cc8ed373ab5fdd9d2be0d9816918bd22233c13ba95 docfiles size=42 RELOC/doc/fonts/cormorantgaramond/OFL.txt RELOC/doc/fonts/cormorantgaramond/README details="Readme" @@ -79523,9 +82705,9 @@ catalogue-version 1.00a name courier category Package -revision 35058 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -79538,8 +82720,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap ucr.map -containersize 481100 -containerchecksum a7a7350f23921254b9a37e498c2360aeb67d4aa8161072dafa38c941eca35388eaa5d8a341e8b490e783f346ed6b0f4a4d356dd914f70a858c92c76ff1808440 +containersize 481072 +containerchecksum 30d6c8906671239b9ef04b3c4d571f59e928ffefc965cd592ecd3277062c778b6f8cb0782f5eb8c6bc27d03b69a88a120593477ced93bcc44cdd4fbc3e5b8adb runfiles size=291 RELOC/dvips/courier/config.ucr RELOC/fonts/afm/adobe/courier/pcrb8a.afm @@ -79836,7 +83018,7 @@ catalogue-version 2.0 name coverpage category Package -revision 15878 +revision 63509 shortdesc Automatic cover page creation for scientific papers relocated 1 longdesc The package CoverPage was created to supplement scientific @@ -79855,10 +83037,10 @@ longdesc the main document and its page layout. This package requires longdesc four other packages (keyval, url, textcomp, and verbatim), but longdesc all of them are standard packages and should be part of every longdesc LaTeX installation. -containersize 3676 -containerchecksum 6ba22fe89f292ef65ec41a958a93a8ab729954fab33f10677954791bb2be8bcbca71ba4953b6ec47066d3b92e444ebbef9b5f465952076ff0c679706f0ba406a -doccontainersize 280964 -doccontainerchecksum 01346bc57d5742be2196c8768106fc06534ce03571dc1e3e9d48957ba6d0e1a3aab1a4ac070d4e545f058d1b3833e908398fff62d3ce6bd462b927646ff1e60e +containersize 3712 +containerchecksum a41ebddf89a5fd375ab107e207b9397b3496bc7daf213b4c29779b15d0134a131d6646a4474a5cd9d3bf56da58350fb2ea4b98692bccb8d7b06c8a4f2244ffec +doccontainersize 280968 +doccontainerchecksum 0931d1f63b60b1b94467114db0fcc67e4905ee1fbfe7c2083eceb0f7715eff201ccca4cd74183b70a4c84808838244b3570529b372ab64a9ef6bcc0f5357aa77 docfiles size=86 RELOC/doc/latex/coverpage/CoverPage.pdf details="Package documentation" RELOC/doc/latex/coverpage/ECCV06Sample.pdf details="Another sample" @@ -79866,37 +83048,40 @@ docfiles size=86 RELOC/doc/latex/coverpage/SimpleSample.BibTeX.txt RELOC/doc/latex/coverpage/SimpleSample.pdf details="Simple sample" RELOC/doc/latex/coverpage/SimpleSample.tex -srccontainersize 10320 -srccontainerchecksum cd47f6d17ab585e84244164bed3b905163157e911dec81ddcd630f23f0b520763b9972b3430f25ff4039e27310eac21e6257727aa4544b7a0e40e7020fc72b42 +srccontainersize 10324 +srccontainerchecksum 15d25cd0b009c1f8006b344498f40a293d18cf08b9098c9923b1fc678a65a2a2a55efcab53744e55ce41d34f4aad248d389aa6127827b1836ec6a706ed6c73cb srcfiles size=9 RELOC/source/latex/coverpage/CoverPage.dtx RELOC/source/latex/coverpage/CoverPage.ins runfiles size=3 RELOC/tex/latex/coverpage/CoverPage.cfg RELOC/tex/latex/coverpage/CoverPage.sty +catalogue-also authorarchive +catalogue-contact-bugs https://github.com/koppor/CoverPage/issues +catalogue-contact-repository https://github.com/koppor/CoverPage catalogue-ctan /macros/latex/contrib/coverpage catalogue-license lppl1.2 -catalogue-topics journalpub +catalogue-topics archival journalpub catalogue-version 1.01 name covington category Package -revision 58589 -shortdesc Linguistic support +revision 64241 +shortdesc LaTeX macros for Linguistics relocated 1 longdesc Numerous minor LaTeX enhancements for linguistics, including longdesc multiple accents on the same letter, interline glosses longdesc (word-by-word translations), Discourse Representation longdesc Structures, and example numbering. -containersize 8588 -containerchecksum 505e6d4ce7e009173d14eb2288bebd3805d1bdf39819f7c9dc58abea1687e4ea7ec816ed3c2e3c7dcd8c98bbc8cad3f59cba103404457ab9c8726e14cfa1d3cb -doccontainersize 500228 -doccontainerchecksum 73fdb576dfb6337c9500d8c92a2be2216d84da12fd04b1cfe7044f4e24fca0120c3bb98f18aa4263617721ec3449cdf98a39e441ece77c2adff63930182a1673 -docfiles size=135 +containersize 8960 +containerchecksum 36c48b3d496464d6aa2d4debbd50e9794fd608a19b6c3f443ccd726dbf105ed3ac6da5af89947ddf509489fb3835c5ae630075d149ba8866f51fe43ef1c3de33 +doccontainersize 528464 +doccontainerchecksum b20a69084adc6f2a4801672069f6f445e3d15f52fce3e32c707abdc4545a4c0115c0819648dbfaf1ac0562250377372d66e354fd28d2977b065c222e33d1019f +docfiles size=143 RELOC/doc/latex/covington/README details="Readme" - RELOC/doc/latex/covington/covington.pdf details="Package documentation" language="en" + RELOC/doc/latex/covington/covington.pdf details="Package documentation" RELOC/doc/latex/covington/covington.tex -runfiles size=8 +runfiles size=9 RELOC/tex/latex/covington/covington.sty catalogue-also gb4e catalogue-contact-bugs https://github.com/jspitz/covington/issues @@ -79904,7 +83089,7 @@ catalogue-contact-repository https://github.com/jspitz/covington catalogue-ctan /macros/latex/contrib/covington catalogue-license lppl1.3 catalogue-topics linguistic -catalogue-version 2.5 +catalogue-version 2.8 name cprotect category Package @@ -79937,6 +83122,29 @@ catalogue-license lppl1.3 catalogue-topics verbatim catalogue-version 1.0e +name cprotectinside +category Package +revision 63833 +shortdesc Use cprotect arbitrarily nested +relocated 1 +longdesc This package extends the cprotect package to allow users to use +longdesc verbatim-like commands inside arbitrary parameters. +containersize 1648 +containerchecksum 5f4a3dad026c07720a11935e5ae4fd4b6f5f060292c249224d3a45ee818063ada48778a8399b324f1f13ec4744215a5eaa4f41cbfb82e1f9503d720e3020de55 +doccontainersize 299480 +doccontainerchecksum a8b050ddc6f3dedfd2ca6c4d7b4def6ab63d55cdb6e8e1622ce95f61aabcf2d9d8bf56c05065c9f4c49c507414273efbecb101652d372e78fef2251a87bc6bfd +docfiles size=76 + RELOC/doc/latex/cprotectinside/README details="Readme" + RELOC/doc/latex/cprotectinside/cprotectinside.pdf details="Package documentation" + RELOC/doc/latex/cprotectinside/cprotectinside.tex +runfiles size=1 + RELOC/tex/latex/cprotectinside/cprotectinside.sty +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/cprotectinside +catalogue-license lppl1.3c +catalogue-topics verbatim expl3 +catalogue-version 0.0.0 + name cqubeamer category Package revision 54512 @@ -80052,9 +83260,68 @@ catalogue-license lppl catalogue-topics boxing typesetting decoration catalogue-version 0.1 +name create-theorem +category Package +revision 64104 +shortdesc Multilingual support for theorem-like environments +relocated 1 +longdesc This package provides commands for naming, initializing and +longdesc configuring theorem-like environments. These commands have +longdesc key-value based interfaces and are especially useful in +longdesc multilingual documents, allowing the easy declaration of +longdesc theorem-like environments that can automatically adapt to the +longdesc language settings. +depend crefthe +containersize 10224 +containerchecksum dcb4f947d6d0fed303d53c19e29049070b1c3ca47fb0d78c0c1c3455f6de59ea2aa98640ac88549bb8f00f1b5cd4320a84f92f98d08a0ee788eb47417a86486d +doccontainersize 95776 +doccontainerchecksum 4c84bebff2a93f8326fb8ce795a9fe2193194f70d49b5448b51d25a98378336bc931a60d762dc12bcfb2fffc362663391347a4b89e69336fb47efd23dcae4499 +docfiles size=37 + RELOC/doc/latex/create-theorem/DEPENDS.txt + RELOC/doc/latex/create-theorem/LICENSE + RELOC/doc/latex/create-theorem/README.md details="Readme" + RELOC/doc/latex/create-theorem/create-theorem-doc.pdf details="Package documentation" + RELOC/doc/latex/create-theorem/create-theorem-doc.tex +runfiles size=25 + RELOC/tex/latex/create-theorem/create-theorem.sty +catalogue-contact-repository https://github.com/Jinwen-XU/create-theorem +catalogue-ctan /macros/latex/contrib/create-theorem +catalogue-license lppl1.3c +catalogue-topics multilingual maths maths-theorem expl3 +catalogue-version 2022-08-08a + +name crefthe +category Package +revision 64498 +shortdesc Cross referencing with proper definite articles +relocated 1 +longdesc By default, when using cleveref's \cref to reference +longdesc theorem-like environments, the names do not contain definite +longdesc articles. In languages such as French, Italian, Portuguese, +longdesc Spanish, etc. this results in incorrect grammar. For this +longdesc purpose, the current package offers \crefthe, which handles the +longdesc definite articles properly (especially for the article +longdesc contractions in many European languages). +containersize 3244 +containerchecksum 00e42796dfb4a48ffcf1750562842e0bee1f3216929d05729b9930134bc55521e4e9b9a3840dde0d615539c2206088a1e554dcad41ebaa83a0c3822e66893aa5 +doccontainersize 61900 +doccontainerchecksum b9ce19968dd09744ee594b40c0ad4478675c2530679183e3de0e79e344a106c244ad9201c61cad42f60e24f97b61490b2f103b8ffc591d4fd1388dcd4dcbcf5e +docfiles size=24 + RELOC/doc/latex/crefthe/LICENSE + RELOC/doc/latex/crefthe/README.md details="Readme" + RELOC/doc/latex/crefthe/crefthe-doc.pdf details="Package documentation" + RELOC/doc/latex/crefthe/crefthe-doc.tex +runfiles size=4 + RELOC/tex/latex/crefthe/crefthe.sty +catalogue-alias ccref +catalogue-contact-repository https://github.com/Jinwen-XU/crefthe +catalogue-ctan /macros/latex/contrib/crefthe +catalogue-license lppl1.3c +catalogue-topics label-ref expl3 + name crimson category Package -revision 54512 +revision 64559 shortdesc Crimson fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX, and LuaLaTeX @@ -80067,10 +83334,10 @@ longdesc Text). Support for small caps and old-style numerals is still longdesc "under construction"; these features are not supported by this longdesc version of the package. execute addMap crimson.map -containersize 1383508 -containerchecksum 26a4e2fb4439f111893c85b7f9b77162be5960a34e000d7a33ce59cc2db83c39cf283a882c89fcb031162ab6a398c481adfe0556dd42b76a2ab36cd9d1573108 -doccontainersize 34244 -doccontainerchecksum 1e97ec47cfe2a9fcc66a87469262c611e6e95c051444915548d2bea644f4c8fba3ce38beccdf2ac52d95e416e4fe8b6dba33eacb4aea9b33726e84e04ad11cb9 +containersize 1383500 +containerchecksum fb807f6602365c65470ceb947e72c63171fc401145b83a63429836d274ca1a0877008c27e4f6416b2a89a3fceb2912062749deeec81346e59c734fa14e4cc289 +doccontainersize 34252 +doccontainerchecksum 105068d0dd81b33a8c073ab33542f2ba7893d4e1d95dcf7af58b413d54a3e7e0cf24911fc2e56ee9821d6d55f016355d4e42db2d981e48e1feaa98b498e20e73 docfiles size=12 RELOC/doc/fonts/crimson/OFL.txt RELOC/doc/fonts/crimson/README details="Readme" @@ -80182,7 +83449,7 @@ catalogue-topics font font-serif font-t1enc font-proportional font-otf font-type name crimsonpro category Package -revision 54512 +revision 64565 shortdesc CrimsonPro fonts with LaTeX support relocated 1 longdesc The CrimsonPro fonts are designed by Jacques Le Bailly and @@ -80190,10 +83457,10 @@ longdesc derived from the Crimson Text fonts designed by Sebastian longdesc Kosch. The family includes eight weights and italics for each longdesc weight. execute addMap CrimsonPro.map -containersize 2563452 -containerchecksum 4e7d10cc23057a5bf2bef8f62dc392f5a3855184d18c814e5569bd6e8d7f0ce692ed9329377aca920a3b6b8f924ea9df47c6c51cf29c638483b7a294da1a16f5 -doccontainersize 85172 -doccontainerchecksum 8c6e5951acce558777527fbe4f36380418e9ebae9dd38d62d034f6a33a87de76259c8fa074d2a3afedc746d595ea60f1710c792af6ab6a4c413ebf8a12480bba +containersize 2549080 +containerchecksum e119ee9df715d799231eece3e5c5c0c125077b9ca526d1293f943dd2700b45da0bbbac90a964248415bf9cb1a51923bef26995acf25397216edca531594d321d +doccontainersize 85180 +doccontainerchecksum 3f151947afe36a62d958804ffafddf533b9970162511ff2038629582acb15b4614d9bd5ffa28b53961c53996d2a8ebc0852b511007ae83d2b4f5f908a1d1b04e docfiles size=24 RELOC/doc/fonts/crimsonpro/OFL.txt RELOC/doc/fonts/crimsonpro/README details="Readme" @@ -81182,6 +84449,60 @@ catalogue-license lppl catalogue-topics layout-page catalogue-version 1.10.2 +name crossrefenum +category Package +revision 66014 +shortdesc Smart typesetting of enumerated cross-references for various TeX formats +relocated 1 +longdesc crossrefenum lets TeX manage the formatting of bunches of +longdesc cross-references for you. It features: Automatic collapsing of +longdesc references; Support for references by various criteria, +longdesc including page and note number, line number in ConTeXt and +longdesc edpage and edline when used in conjunction with reledmac +longdesc Handling of references combining two criteria (e.g. by page and +longdesc note number) Extension mechanisms to add support to other types +longdesc of references without modifying the internal macros. Note that +longdesc sorting is not supported. I assume that users know in what +longdesc order the labels they refer to appear in their document. It is +longdesc written in Plain TeX as much as possible in order to make it +longdesc compatible with a wide array of formats. For the moment, it +longdesc works out of the box with ConTeXt and LaTeX. +containersize 11672 +containerchecksum ec85888801dd66c0e1b22a257be19eb141b922975a7dfeff90ba146232a6d8b9a7b76e338b68548ae228a1317af0208072c06cd10ddebbada93b11b72907c817 +doccontainersize 287560 +doccontainerchecksum c5d847af7f8c2d753563d5f393cd3de2936de96ebf1e653b7e0b9f72da75f3481ce1a783329f74ccf8e5f160eae81e045c663775dac916c431edafb1677b5860 +docfiles size=150 + RELOC/doc/generic/crossrefenum/CHANGELOG.md + RELOC/doc/generic/crossrefenum/LICENSE.txt + RELOC/doc/generic/crossrefenum/README.md details="Readme" + RELOC/doc/generic/crossrefenum/doc/LICENSE_FDL_1-3.md + RELOC/doc/generic/crossrefenum/doc/Makefile + RELOC/doc/generic/crossrefenum/doc/TEMPLATE_crossrefenum.context + RELOC/doc/generic/crossrefenum/doc/crossrefenum.md + RELOC/doc/generic/crossrefenum/doc/crossrefenum.pdf details="Package documentation" + RELOC/doc/generic/crossrefenum/doc/fixes.lua + RELOC/doc/generic/crossrefenum/test/Makefile + RELOC/doc/generic/crossrefenum/test/config-crossrefenum.tex + RELOC/doc/generic/crossrefenum/test/config-formats.tex + RELOC/doc/generic/crossrefenum/test/data-common.tex + RELOC/doc/generic/crossrefenum/test/data-lines.tex + RELOC/doc/generic/crossrefenum/test/data-reledmac.tex + RELOC/doc/generic/crossrefenum/test/format-specific-defs.tex + RELOC/doc/generic/crossrefenum/test/main-test.tex + RELOC/doc/generic/crossrefenum/test/main-test_context.pdf + RELOC/doc/generic/crossrefenum/test/main-test_latex.pdf + RELOC/doc/generic/crossrefenum/test/validated-output +runfiles size=15 + RELOC/tex/generic/crossrefenum/crossrefenum.sty + RELOC/tex/generic/crossrefenum/crossrefenum.tex + RELOC/tex/generic/crossrefenum/t-crossrefenum.tex +catalogue-contact-bugs https://bastien-dumont.onmypc.net/git/bdumont/crossrefenum/issues +catalogue-contact-repository https://bastien-dumont.onmypc.net/git/bdumont/crossrefenum +catalogue-ctan /macros/generic/crossrefenum +catalogue-license gpl3+ fdl +catalogue-topics label-ref context +catalogue-version 1.0.2 + name crossreference category Package revision 15878 @@ -81238,7 +84559,7 @@ catalogue-version 1.0 name crossrefware category Package -revision 47861 +revision 64754 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 @@ -81249,11 +84570,11 @@ longdesc convert urls pointing to doi.org to dois ltx2crossrefxml.pl: a longdesc tool for the creation of XML files for submitting to longdesc crossref.org. The scripts use bibtexperllibs. depend crossrefware.ARCH -containersize 8984 -containerchecksum 351f123bab2b83614b660959e86573845e32b6ac894ddabf24484cc3bbb68d71fef1e543b4d14a3684804f8b4b8e4a5123c8acc46fd813048320ab50f245475a -doccontainersize 231232 -doccontainerchecksum cef9694f4e984ee077902852143e2c88bb533739c6b53c010eae74c32b486faf7806010beecee49bfce07d5f35270bd312852f6d5701860073854a5fec949125 -docfiles size=88 +containersize 16124 +containerchecksum 7e8836c9c1cec51676a01e3e631cd3a0155f081909415e8ae2a4143b5eb611c5c843a0c700af98dc983ace1f9e3492da5a42bd54e74757ca68da7f106f7eb6b5 +doccontainersize 345376 +doccontainerchecksum 7b7212f8a4b6f75d93ec573f9d7544f09df2e73e0b2a32e2f22866378f0d69e0b035511ee5cbc7eee4114b5540b3783d613aafd7508a41aa336195e49b070a78 +docfiles size=119 texmf-dist/doc/man/man1/bbl2bib.1 texmf-dist/doc/man/man1/bbl2bib.man1.pdf texmf-dist/doc/man/man1/bibdoiadd.1 @@ -81271,7 +84592,7 @@ docfiles size=88 texmf-dist/doc/support/crossrefware/citations.bib texmf-dist/doc/support/crossrefware/crossrefware.pdf details="Package documentation" texmf-dist/doc/support/crossrefware/head.ltx -runfiles size=14 +runfiles size=19 texmf-dist/scripts/crossrefware/bbl2bib.pl texmf-dist/scripts/crossrefware/bibdoiadd.pl texmf-dist/scripts/crossrefware/bibmradd.pl @@ -81343,20 +84664,6 @@ binfiles arch=armhf-linux size=6 bin/armhf-linux/bibzbladd bin/armhf-linux/ltx2crossrefxml -name crossrefware.i386-cygwin -category Package -revision 45927 -shortdesc i386-cygwin files of crossrefware -containersize 460 -containerchecksum 52aa1a45cd5606717e86b48513db01043a566de2f95b897d2aa783d475e66cba876d47930dd747759d462e0c8c3f6be9482242fd9558e00274a05ac61de00f07 -binfiles arch=i386-cygwin size=6 - bin/i386-cygwin/bbl2bib - bin/i386-cygwin/bibdoiadd - bin/i386-cygwin/bibmradd - bin/i386-cygwin/biburl2doi - bin/i386-cygwin/bibzbladd - bin/i386-cygwin/ltx2crossrefxml - name crossrefware.i386-freebsd category Package revision 45927 @@ -81427,19 +84734,19 @@ binfiles arch=universal-darwin size=6 bin/universal-darwin/bibzbladd bin/universal-darwin/ltx2crossrefxml -name crossrefware.win32 +name crossrefware.windows category Package -revision 45927 -shortdesc win32 files of crossrefware -containersize 824 -containerchecksum 4be206409af49e572a90e2ebd86c3597537bf5d32c841cdb8456713619cf2bcd9eb7c482cf84531da30c9dd9a595fdea0db129e524b9dbfa6ea06d766456ebcd -binfiles arch=win32 size=6 - bin/win32/bbl2bib.exe - bin/win32/bibdoiadd.exe - bin/win32/bibmradd.exe - bin/win32/biburl2doi.exe - bin/win32/bibzbladd.exe - bin/win32/ltx2crossrefxml.exe +revision 65891 +shortdesc windows files of crossrefware +containersize 2480 +containerchecksum 4e601efd2d2dff0e247cb570fd9f0d2c63c9dab1432144c2b0c27345fa4fcaeffb1c98361b2e0690ddaa4a010a7683278dfee1db20ee8f9f972ec7e4775995b8 +binfiles arch=windows size=12 + bin/windows/bbl2bib.exe + bin/windows/bibdoiadd.exe + bin/windows/bibmradd.exe + bin/windows/biburl2doi.exe + bin/windows/bibzbladd.exe + bin/windows/ltx2crossrefxml.exe name crossrefware.x86_64-cygwin category Package @@ -81513,7 +84820,7 @@ binfiles arch=x86_64-solaris size=6 name crossword category Package -revision 55271 +revision 64375 shortdesc Typeset crossword puzzles relocated 1 longdesc An extended grid-based puzzle package, designed to take all @@ -81532,17 +84839,17 @@ longdesc separated by thick lines. Input to the package is somewhat longdesc redundant: specification of the grid is separate from longdesc specification of the clues (if they're necessary). The author longdesc considers this style both 'natural' and robust. -containersize 4232 -containerchecksum 120d76d4513d2fb2d5ddaa9b5a45a3fabc42b4574776e60fc700f9de07030679ad36f2328ffd1dd5a0ce0148c4b2ce7c6f774eecf1fb2ad747fdbe585178ea26 -doccontainersize 338744 -doccontainerchecksum ca1d098a53724ce035ab8eb6e07de2f2b38deaca029b4e3a0d15e98dfa5ed9998fdb95b8dd5ab254862ca0ecbb7c15fda6bbef3d84cd6a7293f0172abbadb901 +containersize 4236 +containerchecksum 8be92df53341bca46907f0125122e2498761880606fb42621df7b4e9f5d9cc9e9a8b74454aa254f49b6fd471b371df7f9f873d9209a94c419433b53247bc29a7 +doccontainersize 338704 +doccontainerchecksum 445ff450f4ebb1e615d0e9a7193904f4512dddf4af3b693f6eae9a115d5456202c54c291c263c37fa37d082d3403c4b7a83deff7e1ae37548efd7ad47b97bfad docfiles size=87 RELOC/doc/latex/crossword/LICENSE RELOC/doc/latex/crossword/README.md details="Package Readme" RELOC/doc/latex/crossword/cwpuzzle.pdf details="Package documentation" RELOC/doc/latex/crossword/makefile -srccontainersize 15664 -srccontainerchecksum 4071af8acad185db5ff31137f966378dd239a155668b822fcaee4091d460fd8062a0b08fc39b5d5a2b0d2c0d1adfbacc0884ae9654a555eae634b71cf722adea +srccontainersize 15656 +srccontainerchecksum 018058d6dae55c27804cc750fd6469f432c1a0edca187f6adcf75255d9d2a27c34a446e54dc7a6b5de3e030a0145f5b950961f53e4dfb8976fbd283f4db30e38 srcfiles size=20 RELOC/source/latex/crossword/cwpuzzle.dtx RELOC/source/latex/crossword/cwpuzzle.ins @@ -81554,7 +84861,7 @@ catalogue-contact-repository https://sourceforge.net/p/gene-tex-lib/svn/HEAD/tre catalogue-ctan /macros/latex/contrib/gene/crossword catalogue-license other-free catalogue-topics games cwpuzzle -catalogue-version 1.10 +catalogue-version 1.11 name crosswrd category Package @@ -81590,9 +84897,42 @@ catalogue-license lppl catalogue-topics games cwpuzzle catalogue-version 3.0 +name crumbs +category Package +revision 64602 +shortdesc Add a Navigation Path to the page header +relocated 1 +longdesc This package adds a navigation path ("breadcrumb trail") at the +longdesc header of a presentation, just like some websites do in order +longdesc to simplify navigation. +depend catchfile +depend etoolbox +depend xkeyval +containersize 2204 +containerchecksum f4e3e045665c16d02c6b1cf2d43957fcbfe38ceb17b6bed9445803d4134a3ad2c22b552230ed685d42c33864169c782c9ef51ba47669d7a975e699ec532a1f76 +doccontainersize 256688 +doccontainerchecksum b6e13f1177eace8e349648dd376e3252b34ada5e84c0a676631ef313507064c68624936730fe9780707bced36f05d4103cd9aa33a4bd511cd23836ed2ab38d03 +docfiles size=66 + RELOC/doc/latex/crumbs/DEPENDS.txt + RELOC/doc/latex/crumbs/LICENSE.txt + RELOC/doc/latex/crumbs/README.md details="Readme" + RELOC/doc/latex/crumbs/crumbs.pdf details="Package documentation" +srccontainersize 4356 +srccontainerchecksum 5220b2d854c11d4c0734ec22dded6c1259d470c416c08fec4d4fff35714bd56126f5c4f8785e958454c1a3854541b9d8cb571d4f7a86b636b1c12e739c52072d +srcfiles size=4 + RELOC/source/latex/crumbs/crumbs.dtx + RELOC/source/latex/crumbs/crumbs.ins +runfiles size=2 + RELOC/tex/latex/crumbs/crumbs.sty +catalogue-contact-repository https://github.com/yegor256/crumbs +catalogue-ctan /macros/latex/contrib/crumbs +catalogue-license mit +catalogue-topics headings +catalogue-version 0.4.1 + name cryptocode category Package -revision 55920 +revision 60249 shortdesc Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography relocated 1 longdesc The cryptocode package provides a set of macros to ease the @@ -81602,16 +84942,16 @@ longdesc cryptographic papers. This includes simple predefined commands longdesc for concepts such as a security parameter or advantage terms longdesc but also flexible and powerful environments to layout longdesc game-based proofs or black-box reductions. -containersize 21352 -containerchecksum df6a8f1f92357f235ce6ab120925c4e833985ba8ec487f8477a06ac8808997c3f34e2955178f505460cc008183966ffb06280b41a9ead249e8f03062cf2f7140 -doccontainersize 1029036 -doccontainerchecksum 1369982ed17f6205ed2206b082faa902b8d0b2fa88669f215cc113a4bdb7e027f9e696311a3a0a19e5a48151a858d5c7a151bf4d42eff04a807c32f8559d67bf -docfiles size=256 +containersize 21648 +containerchecksum d4d85db9f631bd2f3c78654e88b9c77df7af991f304732ec92b58d08111baf2548bd7d27e6187b0fb6dac7cb0517d27ef3973293cb76088ee8824cb28b1493b0 +doccontainersize 1046800 +doccontainerchecksum 8516c946f2a72a898a6320be3b9037b3e94ec1e4c4624ac0c7f67f64855308f793275d682e2c16b5566abc17ab58200ec1ddc32dbb9fe2c08fe21183bac2986a +docfiles size=261 RELOC/doc/latex/cryptocode/README.md details="Readme" RELOC/doc/latex/cryptocode/cryptocode.pdf details="Package documentation" -srccontainersize 49508 -srccontainerchecksum e9849dd4382b51e6f2d19bea2e074c2918fd4aefbab9f7add357cc6a122a4b4c35416d50886b7fb68a2db899d00ff8892a38ab91833d1a694969f946ce415a56 -srcfiles size=72 +srccontainersize 50996 +srccontainerchecksum ec51e316bbeaa2a28f7fea918fcfd3338fdff0153325b93309d79300b9df1655620227596cddb429952ee2d9074da8eebe6dd64207e2f300f475215eb33b9f3a +srcfiles size=74 RELOC/source/latex/cryptocode/cryptocode.dtx RELOC/source/latex/cryptocode/cryptocode.ins runfiles size=61 @@ -81622,7 +84962,7 @@ catalogue-contact-repository https://github.com/arnomi/cryptocode catalogue-ctan /macros/latex/contrib/cryptocode catalogue-license lppl1.3 catalogue-topics pseudocode -catalogue-version 0.40 +catalogue-version 0.44 name cryst category Package @@ -82068,24 +85408,61 @@ catalogue-ctan /macros/cstex/base/csfonts.tar.gz catalogue-license gpl catalogue-topics czech slovak font font-mf +name csassignments +category Package +revision 63992 +shortdesc A wrapper for article with macros and customizations for computer science assignments +relocated 1 +longdesc This class wraps the default article and extends it for a +longdesc homogeneous look of hand-in assignments at university (RWTH +longdesc Aachen University, Computer Science Department), specifically +longdesc in the field of computer science, but easily extensible to +longdesc other fields. It provides macros for structuring exercises, +longdesc aggregating points, and displaying a grading table, as well as +longdesc several macros for easier math mode usage. +containersize 3884 +containerchecksum 0e5356f133fb6f3fb33ee0407a53d59330e646e4f1356c307464c45f5dbb66435d68ec833c6482673417c53d611816c4a66a5db34da6b14e327691c0f0c3590f +doccontainersize 106972 +doccontainerchecksum 3523504d0f7289d485fd34463ab7a0ba2fcc3d4a9b2908f3853977a8b3d7fad4266fd20050d2ee8a685483f47a66e04b50fd4cbaf0788f22c1ce48d2f4b89476 +docfiles size=36 + RELOC/doc/latex/csassignments/README.md details="Readme" + RELOC/doc/latex/csassignments/csassignments.pdf details="Package documentation" +srccontainersize 8200 +srccontainerchecksum 0ba1b40ea19e3c1196a4314427ed882a00a4c4807127d0792ad6f020cb273d3c157ffc469bb7f363726b8a73ec20a9989de43a9cd82e114ccf1b9a1e66328547 +srcfiles size=8 + RELOC/source/latex/csassignments/csassignments.dtx + RELOC/source/latex/csassignments/csassignments.ins +runfiles size=3 + RELOC/tex/latex/csassignments/csassignments.cls +catalogue-contact-bugs https://github.com/zoomoid/assignments/issues +catalogue-contact-repository https://github.com/zoomoid/assignments +catalogue-ctan /macros/latex/contrib/csassignments +catalogue-license mit +catalogue-topics class comp-sci maths +catalogue-version 1.0.2 + name csbulletin category Package -revision 54433 +revision 65250 shortdesc LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj) relocated 1 longdesc The package provides the class for articles for the CSTUG longdesc Bulletin (Zpravodaj Ceskoslovenskeho sdruzeni uzivatelu TeXu). longdesc You can see the structure of a document by looking at the longdesc source file of the manual. -containersize 12916 -containerchecksum 7b1f41ce8c9cecd8cce3aa1458a029a558b3a70dbcf8e5fb53e192db5d4b56ffdca3e323fa54d7960e141d6e1e32ca52b8824b3c326c94def8b32ad42d0dfee0 -doccontainersize 274080 -doccontainerchecksum 4299308a6408a826f139bbca785cbb139f94ff10e67c80c597e0e7cbfd3bb6ff4889865a04922e4cbe23cf0d3d6f1c1ccc5cfe4d5c2dfee4c747ba18873d6190 -docfiles size=73 +containersize 12936 +containerchecksum 64d8593e12beed90aac7cffee0632b4d16d77e5cc12702600ac62a8374429ab0a35390d8046b43579855744dd4f59c458c574e173254d3cf21ee45d3eb97b4db +doccontainersize 282524 +doccontainerchecksum 2ca7ffe0973b443a2114cdd1e171f62b845f4f0185aaa5b7c7cc2809cd3a2b927784a4fa68c9a3a28fa40f44217826d1f34165a027838d3bd9f4e0e740a294d3 +docfiles size=80 RELOC/doc/latex/csbulletin/LICENSE.txt RELOC/doc/latex/csbulletin/README details="Readme" - RELOC/doc/latex/csbulletin/csbulletin.pdf details="Package manual" + RELOC/doc/latex/csbulletin/csbulletin.pdf details="Package manual" language="cs" RELOC/doc/latex/csbulletin/csbulletin.tex + RELOC/doc/latex/csbulletin/example-czech.tex + RELOC/doc/latex/csbulletin/example-english.tex + RELOC/doc/latex/csbulletin/example-slovak.tex + RELOC/doc/latex/csbulletin/example.bib runfiles size=13 RELOC/tex/latex/csbulletin/csbulacronym.sty RELOC/tex/latex/csbulletin/csbulletin.cls @@ -82093,12 +85470,12 @@ runfiles size=13 RELOC/tex/latex/csbulletin/csbulobalka.sty RELOC/tex/latex/csbulletin/csbulv1.cls catalogue-ctan /macros/latex/contrib/csbulletin -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics journalpub class name cslatex category Package -revision 57972 +revision 66186 shortdesc LaTeX support for Czech/Slovak typesetting depend atbegshi depend atveryend @@ -82117,16 +85494,16 @@ depend unicode-data execute AddFormat name=cslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=atbegshi,atveryend,cm,csplain,everyshi,firstaid,hyphen-base,l3kernel,l3packages,latex-fonts,latex,unicode-data execute AddFormat name=pdfcslatex engine=pdftex options="-etex cslatex.ini" fmttriggers=atbegshi,atveryend,cm,csplain,everyshi,firstaid,hyphen-base,l3kernel,l3packages,latex-fonts,latex,unicode-data,tex-ini-files containersize 12744 -containerchecksum dd6b98eb22786f39c830a4c012396507dca694d727f1a7eb147a1c8c2d4442d8120e016de4c08c038239dfac866f828bc7686d8fd124d1af63edd0994db80f9f -doccontainersize 18996 -doccontainerchecksum 8ec3527c25c07641788b809cca4f4cc8bb034f63f1100b74270041b503dbc8926a410429a370692502596bd6ffec69a970a19b1c32178e4722f81acdbf0ea934 +containerchecksum 21e2f395230c07a28b7ac75c2728797dd2d343aa408c55c8d0d8d082a67ab9051672830206a4a758c7af5ecfe4f19683acaf7ceab6f83c44f17e307b3713bc3a +doccontainersize 18992 +doccontainerchecksum 79d2cf8228f1dca5c3a8b096e8656cdf4d53ff491c508e00fd4a1b83e5fb753d3e6e677d05b5a97cdf35e5fecd118a628a1769f2da80f110a9f706dde7e939d1 docfiles size=14 texmf-dist/doc/man/man1/cslatex.1 texmf-dist/doc/man/man1/cslatex.man1.pdf texmf-dist/doc/man/man1/pdfcslatex.1 texmf-dist/doc/man/man1/pdfcslatex.man1.pdf -srccontainersize 24036 -srccontainerchecksum 0563f453bf7e34b4948a29d832207f8148082c5186a6915a6bdc1c41d0c08399505491ccdea0b45e8bf326a8e8459d37eeaca546143d9f622ce4dacba11cac7f +srccontainersize 24040 +srccontainerchecksum 056119be63dad77f7d990a4ab8e3b2490292b890f80f5da400c7a081b4ba18594d732238f700babab14edb7c0a6ca9d6bfd4586a175d1e8a8f9be7c06957a400 srcfiles size=26 texmf-dist/source/cslatex/base/cslatex.dtx texmf-dist/source/cslatex/base/cslatex.ins @@ -82216,16 +85593,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/cslatex bin/armhf-linux/pdfcslatex -name cslatex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of cslatex -containersize 344 -containerchecksum f5c060fd52e58b88915b7d3e041cc987753bf13a415d6943899b58eafb53b6e5b3682d663894c3e0edab9e7957e371555f70b68c3a626988cd631efa9c061e51 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/cslatex - bin/i386-cygwin/pdfcslatex - name cslatex.i386-freebsd category Package revision 16472 @@ -82276,15 +85643,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/cslatex bin/universal-darwin/pdfcslatex -name cslatex.win32 +name cslatex.windows category Package -revision 57883 -shortdesc win32 files of cslatex -containersize 884 -containerchecksum 3fd2a7680e7b673aa800d8a174f87d9b6dcec76779cf7efca3c3734a57da38490a84ccb896dcbb805f921455d6e4e4a95c7bd784cc90f3008130dcf4ac20d781 -binfiles arch=win32 size=2 - bin/win32/cslatex.exe - bin/win32/pdfcslatex.exe +revision 65891 +shortdesc windows files of cslatex +containersize 2384 +containerchecksum 184fadfa201cfa2a2c5ad6ac24d503a026fa007c2ade317450b5a29f9ad8eb1d2961583ddd9aaba55f98b21f33b02b9db4078d0a376010331a31a146f97bf1e5 +binfiles arch=windows size=4 + bin/windows/cslatex.exe + bin/windows/pdfcslatex.exe name cslatex.x86_64-cygwin category Package @@ -82338,7 +85705,7 @@ binfiles arch=x86_64-solaris size=2 name csplain category Package -revision 58353 +revision 62771 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: @@ -82371,8 +85738,8 @@ execute AddFormat name=luacsplain engine=luatex options="-etex csplain execute AddFormat name=pdfcsplain engine=luatex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain,tex-ini-files,luatex,luatex85 execute AddFormat name=pdfcsplain engine=pdftex options="-etex -enc csplain-utf8.ini" fmttriggers=cm,cs,hyphen-base,plain,enctex,hyph-utf8,tex-ini-files execute AddFormat name=pdfcsplain engine=xetex options="-etex csplain.ini" fmttriggers=cm,cs,hyphen-base,plain -containersize 122364 -containerchecksum 27fc3fbb1aa29693fcd1d39abf92e3248fa769b8c4e0171948c2a7957e52dad2e08759050321401f7cb900285de62246bc0013d22141281111a82681c11802e4 +containersize 123204 +containerchecksum c4dbe1721fc2281cba7e426f6c75d35671cfeddf77a947f147a33c651090bc90528583445736bc2933c2d3986424e1b3ac4984e93cfae5f0ad1cfe41902f63cb runfiles size=217 texmf-dist/tex/csplain/base/csenc-k.tex texmf-dist/tex/csplain/base/csenc-p.tex @@ -82459,7 +85826,7 @@ catalogue-contact-home http://petr.olsak.net/csplain-e.html catalogue-ctan /macros/cstex/base/csplain.tar.gz catalogue-license other-free catalogue-topics czech slovak format -catalogue-version Mar. 2021 +catalogue-version Mar. 2022 name csplain.aarch64-linux category Package @@ -82505,17 +85872,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/luacsplain bin/armhf-linux/pdfcsplain -name csplain.i386-cygwin -category Package -revision 50544 -shortdesc i386-cygwin files of csplain -containersize 368 -containerchecksum 80b9025839b28e3f1b6d6d39ab8a8206227cb7523bf1bc215e70e0298bad71932891021adc6051f255a81dd75ce7fe1a10c9c36a4df54c841f0a9bd13c7e1c9a -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/csplain - bin/i386-cygwin/luacsplain - bin/i386-cygwin/pdfcsplain - name csplain.i386-freebsd category Package revision 50528 @@ -82571,16 +85927,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/luacsplain bin/universal-darwin/pdfcsplain -name csplain.win32 +name csplain.windows category Package -revision 57883 -shortdesc win32 files of csplain -containersize 912 -containerchecksum a3ba21f3fa21fd10c8c78d0a0865b19c092ae1ca759c24145d3068d3ebeb263cb7b19d6f6f5aec17fe7e5675708da2dec724e63005eb752c7adb46f78c05cce8 -binfiles arch=win32 size=3 - bin/win32/csplain.exe - bin/win32/luacsplain.exe - bin/win32/pdfcsplain.exe +revision 65891 +shortdesc windows files of csplain +containersize 2428 +containerchecksum 79e9feb35f8ea722a02ecbdd2880991c72be04cbaf2ab16a7ca85d62db8df8257ab1cd44998e0901a1d530fde32ce3495cf6fe1709676a392c6d1c9a5e11e280 +binfiles arch=windows size=6 + bin/windows/csplain.exe + bin/windows/luacsplain.exe + bin/windows/pdfcsplain.exe name csplain.x86_64-cygwin category Package @@ -82639,7 +85995,7 @@ binfiles arch=x86_64-solaris size=3 name csquotes category Package -revision 57844 +revision 64389 shortdesc Context sensitive quotation facilities relocated 1 longdesc This package provides advanced facilities for inline and @@ -82657,11 +86013,11 @@ longdesc well as the optional active quotes are freely configurable. The longdesc package is dependent on e-TeX, and requires the author's longdesc etoolbox package. depend etoolbox -containersize 17924 -containerchecksum c783ac945ed324cfbefad1c614010a1b1bf6774d7961a085ecdfe1a870d80134a86ef6bec6b0114f9274a83f292b22ecd21d8568977d8f7c07dda084b5bfb348 -doccontainersize 316964 -doccontainerchecksum 7a7ea8568c647fb06c5e309bdc64e48ef6f57f31b1cd7957e47f1a4a7897c9bd37ffe8ce4a17452db584546db741319baf90dbe99b5c3fe666dff5ecf53a843e -docfiles size=104 +containersize 18088 +containerchecksum 68427cbe486f3b53bdb24869a3ad52cf6a006d7872ff9408560d9e4b0f1e8184fcb437d54e10f11d7a3585ff8ff7ad40ab4a95aa66091bb69a75a3e8e60aede8 +doccontainersize 325560 +doccontainerchecksum ceba04fab9ec257c6bbc2fc903e3888bae9ef6bfa5664c8e01da14ee2b1482005aece22b6bf4fa7fb893c2dc1b0cb7f762eb048e0b2c039be80ef73b0bfef131 +docfiles size=107 RELOC/doc/latex/csquotes/README.md details="Package README" RELOC/doc/latex/csquotes/csquotes.pdf details="Tutorial on use of the package" RELOC/doc/latex/csquotes/csquotes.tex @@ -82673,7 +86029,7 @@ runfiles size=25 catalogue-ctan /macros/latex/contrib/csquotes catalogue-license lppl1.3c catalogue-topics quote-marks etex -catalogue-version 5.2l +catalogue-version 5.2n name csquotes-de category Package @@ -82720,7 +86076,7 @@ catalogue-version 1.02 name cstex category Package -revision 58354 +revision 64149 shortdesc Support for Czech/Slovak languages relocated 1 longdesc This package mirrors the macros part of the home site's @@ -82728,10 +86084,10 @@ longdesc distribution of CSTeX. The licence (modified GPL) applies to longdesc some of the additions that make it a Czech/Slovak language longdesc distribution, rather than the distribution of a basic longdesc Plain/LaTeX distribution. -containersize 516 -containerchecksum bc27207c1b7ee821f876f9adbe6187b6e6c1c5d0fd207a99bb76fa8a01f3738012150c96fd2d16e99a2736a11f8505696d1ea6e22426dc5049a43be9116f5585 -doccontainersize 3963200 -doccontainerchecksum f9cc9398ecbe1e2d97391f27d9c997cd730c33f275708e399fd5604239f68bda7a408cc2e7ec3ba8220173090d4f5fa3771825c7904f7f4a81a477b16fae0ac9 +containersize 476 +containerchecksum cc0f0d0e2af2c210cb7888e90d668016dba4cfce3ae90faf0597a7f8c2058dfe56b92b71d185705c7d3b19d53b989724a9106ab56664fd2e6f4e95da5c0a48b8 +doccontainersize 3963708 +doccontainerchecksum e84c12eed94f459a7769527197f8b4b2f638297eec5d41bc7e4e3cc86c593cf957158946eb495947ff557ff323a085212b61cb3233972238d3afa2fff54e367b docfiles size=1156 RELOC/doc/cstex/00-README-cslatex RELOC/doc/cstex/INSTALL.cslatex @@ -82770,7 +86126,6 @@ docfiles size=1156 RELOC/doc/cstex/testlat.tex RELOC/doc/cstex/zmeny.txt catalogue-also cslatex -catalogue-contact-home http://math.feld.cvut.cz/olsak/cstex/ catalogue-ctan /macros/cstex catalogue-license other-free catalogue-topics distribution @@ -82837,7 +86192,7 @@ catalogue-version 1.0 name csvsimple category Package -revision 51010 +revision 64450 shortdesc Simple CSV file processing relocated 1 longdesc The package provides a simple LaTeX interface for the @@ -82847,31 +86202,40 @@ longdesc usage. Filtering and table generation are especially supported; longdesc however, this lightweight tool offers no support for data longdesc sorting or data base storage. The package depends on etoolbox, longdesc ifthen, pgfrcs, pgfkeys, and shellesc. -containersize 5568 -containerchecksum c071fb93d269e27c7059919213a858d82bb5fc381d8a9a0faf82ad0b05eaac808dbfc19c30c8530a98582f3179a01774de78b0f290a15d4ef79e06eef0a9aba8 -doccontainersize 752344 -doccontainerchecksum da691d9d44e1624ccab48e5979ae9ecb8697387a19280602c28467c8f2aefbafc494067217836a09a6ba1a653c8fd3a7903e3607ca56922ebf47870bea49c583 -docfiles size=246 - RELOC/doc/latex/csvsimple/CHANGES - RELOC/doc/latex/csvsimple/README details="Readme" language="en" +containersize 11344 +containerchecksum 5c17b0055230159d8e37ab77738d7f177578fa4061dbf5fca0071da4dadcc929946fddee11bbfb32c2109adffe8e33bad74ee0f343b467ab695a85face9ca516 +doccontainersize 1659136 +doccontainerchecksum 9d63055aecb4f5939799b03691c6620c5b07b7b8b785a00a84d2c937409f675223aab97e68ceedbdf21b0193a05fcf3763971ca3c9e016933f2c55b5a2c8f8ef +docfiles size=660 + RELOC/doc/latex/csvsimple/CHANGES.md + RELOC/doc/latex/csvsimple/README.md details="Readme" RELOC/doc/latex/csvsimple/amountsort.xml RELOC/doc/latex/csvsimple/catsort.xml - RELOC/doc/latex/csvsimple/csvsimple-example.pdf details="example of use" language="en" + RELOC/doc/latex/csvsimple/csvsimple-doc.sty + RELOC/doc/latex/csvsimple/csvsimple-example.csv + RELOC/doc/latex/csvsimple/csvsimple-example.pdf details="Example of use" RELOC/doc/latex/csvsimple/csvsimple-example.tex - RELOC/doc/latex/csvsimple/csvsimple.pdf details="Package documentation" language="en" + RELOC/doc/latex/csvsimple/csvsimple-l3.pdf details="Package documentation (LaTeX3 version)" + RELOC/doc/latex/csvsimple/csvsimple-l3.tex + RELOC/doc/latex/csvsimple/csvsimple-legacy.pdf details="Package documentation (legacy version)" + RELOC/doc/latex/csvsimple/csvsimple-legacy.tex + RELOC/doc/latex/csvsimple/csvsimple-title.png + RELOC/doc/latex/csvsimple/csvsimple.pdf details="Package documentation" RELOC/doc/latex/csvsimple/csvsimple.tex RELOC/doc/latex/csvsimple/encoding.xml RELOC/doc/latex/csvsimple/gradesort.xml RELOC/doc/latex/csvsimple/matriculationsort.xml RELOC/doc/latex/csvsimple/namesort.xml RELOC/doc/latex/csvsimple/transform.xml -runfiles size=7 +runfiles size=19 + RELOC/tex/latex/csvsimple/csvsimple-l3.sty + RELOC/tex/latex/csvsimple/csvsimple-legacy.sty RELOC/tex/latex/csvsimple/csvsimple.sty catalogue-also csvtools datatool catalogue-ctan /macros/latex/contrib/csvsimple catalogue-license lppl1.3 -catalogue-topics data-import data-disp csv-support -catalogue-version 1.21 +catalogue-topics data-import data-disp csv-support expl3 +catalogue-version 2.3.2 name ctable category Package @@ -83043,15 +86407,6 @@ containerchecksum d1c396253433e3ab213864b88800be27ab06f9ece53eab980d5ba38dce9013 binfiles arch=armhf-linux size=1 bin/armhf-linux/ctan-o-mat -name ctan-o-mat.i386-cygwin -category Package -revision 47461 -shortdesc i386-cygwin files of ctan-o-mat -containersize 340 -containerchecksum 299afb1a64801e0abadbbed353e428624b69cdf777f36b1aca99f792f3fb0cedc1aa27f1b59b95718607649218028ca6d0c5c82601f762ac16177cfd0904a3f4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ctan-o-mat - name ctan-o-mat.i386-freebsd category Package revision 47009 @@ -83097,14 +86452,14 @@ containerchecksum 7436012aaf6aca42b5eb2a3418c7dd5f1d1f5758423b368593b4bb54bf0250 binfiles arch=universal-darwin size=1 bin/universal-darwin/ctan-o-mat -name ctan-o-mat.win32 +name ctan-o-mat.windows category Package -revision 51578 -shortdesc win32 files of ctan-o-mat -containersize 684 -containerchecksum 2bb713d4b6f0ac5c72e7070f73d925ae240ad5183db9f8ca2c1f46f28494e41d48b0b662f10378203865597661743b970bc2af4e0f927b4359933cec46673d28 -binfiles arch=win32 size=1 - bin/win32/ctan-o-mat.exe +revision 65891 +shortdesc windows files of ctan-o-mat +containersize 2312 +containerchecksum bc4243d7cd5c340e7a200e004e42f9929f5fdece94e5a8e3c542ba2c9861bde99321a7b047c9ec8aa92f2a93b27c2a6c10e445424d278e6eea26044747962f51 +binfiles arch=windows size=2 + bin/windows/ctan-o-mat.exe name ctan-o-mat.x86_64-cygwin category Package @@ -83177,18 +86532,18 @@ catalogue-version 1.0 name ctanbib category Package -revision 52145 +revision 66068 shortdesc Export CTAN entries to bib format longdesc This package provides a Lua script which can be used for longdesc retrieving bibliographic information in BibLaTeX format for longdesc packages hosted on CTAN. The ctanbib script depends only on longdesc LuaXML. depend ctanbib.ARCH -containersize 2588 -containerchecksum af03e3079304d24b7cf996158ce7344a15aa2f17efc46378132bedc5e9bb4488f89210c24a8a5ef0c21a293600589aef78b7a8c7a7673ad09ceab2077b0a351d -doccontainersize 52852 -doccontainerchecksum 1a971e49827476b5ae419189f7acff4c17ab41159d60c5627663d435368b28aa7dc4aeeb5fcc2c4a9f34f648ac9f2de229b250660333ca2f32bfd0808f24e732 -docfiles size=17 +containersize 2916 +containerchecksum 9ebcdb2b194ce91075addb5e42ec419203012f494ecf9ea663f1007f085946ddeb5a618439924406119a07b3801d09dfd3d5ca04db2886c6a530e798a78fd487 +doccontainersize 55084 +doccontainerchecksum 0c02549c5e0390727c50a53697abb042be5af30d2d455d9cd098462f33f2f2fe996d1c05e3fc04c87a5d178d49a3dc371c17c1840033f2e023f7e66d570fa086 +docfiles size=18 texmf-dist/doc/man/man1/ctanbib.1 texmf-dist/doc/man/man1/ctanbib.man1.pdf texmf-dist/doc/support/ctanbib/README.md details="Readme" @@ -83201,7 +86556,7 @@ catalogue-contact-repository https://github.com/michal-h21/ctanbib catalogue-ctan /support/ctanbib catalogue-license lppl1.3 catalogue-topics bibtex-gen ctan luatex use-lua -catalogue-version 0.1d +catalogue-version 0.2b name ctanbib.aarch64-linux category Package @@ -83239,15 +86594,6 @@ containerchecksum 8997fa78caf16ae39030385931772a4408f53276a2eab30a10e1596a7db1f2 binfiles arch=armhf-linux size=1 bin/armhf-linux/ctanbib -name ctanbib.i386-cygwin -category Package -revision 48478 -shortdesc i386-cygwin files of ctanbib -containersize 336 -containerchecksum 6c6e231c7dc313ef50d09a8293ccf113a2bb7ec381c44a705cb073e6d7f4b72f46b28a0bf648f6eee44366e77134fa5d92685a310a6d40cc5ff30a74f8d20351 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ctanbib - name ctanbib.i386-freebsd category Package revision 48478 @@ -83293,14 +86639,14 @@ containerchecksum 65580cf49c2de607c829035fbd32d81a435b298c0fc235ce743a2effa65742 binfiles arch=universal-darwin size=1 bin/universal-darwin/ctanbib -name ctanbib.win32 +name ctanbib.windows category Package -revision 48478 -shortdesc win32 files of ctanbib -containersize 680 -containerchecksum 54b57b4cccf3348f30718784bc4dafcea7c97ea10755d2ce1b6b46ae1a32a51b1f5c13cb1e891ee7227614cbe7d331403cee3ed4dbf10e501981796ced974ce9 -binfiles arch=win32 size=1 - bin/win32/ctanbib.exe +revision 65891 +shortdesc windows files of ctanbib +containersize 2304 +containerchecksum a75dd88cb02519f2479a63ab78171c549e989c06e07638e344d1cad995b4d434c8426945e4404ce00840b9b4837559372c21636cf04292560fed8f9800f5d823 +binfiles arch=windows size=2 + bin/windows/ctanbib.exe name ctanbib.x86_64-cygwin category Package @@ -83416,15 +86762,6 @@ containerchecksum 8fe55551b1eda0082bf436242ba352d31b70dd2501a4cd1032b05e514b70f1 binfiles arch=armhf-linux size=1 bin/armhf-linux/ctanify -name ctanify.i386-cygwin -category Package -revision 24061 -shortdesc i386-cygwin files of ctanify -containersize 336 -containerchecksum 5e3ca783b0ea550b1b7d889ffd840a75b58a33114d53edf1f8cfa48f64c40d87ae5a6c618d751b40a21b34f379d27bd061ddfb92d9d511d47abe91db0f183a8d -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ctanify - name ctanify.i386-freebsd category Package revision 24061 @@ -83470,14 +86807,14 @@ containerchecksum d07a4e363a441dbca463d86dad73fa8d5155075f7427f0c2e3be8d68bc1081 binfiles arch=universal-darwin size=1 bin/universal-darwin/ctanify -name ctanify.win32 +name ctanify.windows category Package -revision 24061 -shortdesc win32 files of ctanify -containersize 684 -containerchecksum c07df95ddc560a64cd77f7aae10073fbed090d6ea5e94d163aad07db5c98f9db2a64e56d7a9cd74698a7b0b153c20855ec96107e3867953d829c6efae3b8b49a -binfiles arch=win32 size=1 - bin/win32/ctanify.exe +revision 65891 +shortdesc windows files of ctanify +containersize 2308 +containerchecksum 35c68a2de89a1dabbe1a4c3fdf1640277edf644f3276552262415364a142dce2bee7a1e4a047e8973ef37389af1c400ccacef69311751e8af322cd6248ee928e +binfiles arch=windows size=2 + bin/windows/ctanify.exe name ctanify.x86_64-cygwin category Package @@ -83587,15 +86924,6 @@ containerchecksum 3b8fe6255a0c356ecc81c69deb91de18b9c0ac22a0870053541d617f978fc8 binfiles arch=armhf-linux size=1 bin/armhf-linux/ctanupload -name ctanupload.i386-cygwin -category Package -revision 23866 -shortdesc i386-cygwin files of ctanupload -containersize 344 -containerchecksum 864ca9831ffc53262542213aa4be9f556086db6474299dd5889e74d818f0e037b67aab4510277b4a74f12f31ea7fd41fcb108bda91c83f045d2e464052b47856 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ctanupload - name ctanupload.i386-freebsd category Package revision 23866 @@ -83641,14 +86969,14 @@ containerchecksum 1e7fbd9a49fa9b82343e759f88d4d89b43c68cb0e795c8319e46a6955f3578 binfiles arch=universal-darwin size=1 bin/universal-darwin/ctanupload -name ctanupload.win32 +name ctanupload.windows category Package -revision 23866 -shortdesc win32 files of ctanupload -containersize 684 -containerchecksum c2c20dbd0750a555f745b2472ccf919439f55bba1704037dd7678b3f67fac495167772a5cabf9b557dfd7dcdc406e6e77e60661d932e98bc6e2bf5de9480e324 -binfiles arch=win32 size=1 - bin/win32/ctanupload.exe +revision 65891 +shortdesc windows files of ctanupload +containersize 2308 +containerchecksum df683c67a4588aee34e977e3353dfb280cae82d8466da59e85c197156fa40a758f009553c2a385499d7b78b3c987a85e24b076547bddf509f3ae0bd3fb028a41 +binfiles arch=windows size=2 + bin/windows/ctanupload.exe name ctanupload.x86_64-cygwin category Package @@ -83697,7 +87025,7 @@ binfiles arch=x86_64-solaris size=1 name ctex category Package -revision 58583 +revision 66115 shortdesc LaTeX classes and packages for Chinese typesetting relocated 1 longdesc ctex is a collection of macro packages and document classes for @@ -83739,21 +87067,21 @@ depend xunicode depend zhmetrics depend zhmetrics-uptex depend zhnumber -containersize 129772 -containerchecksum 64fa2fd00ebbf9fa5a16f0ec23429f77f48e9d84f8a064e2be475e9e0449c73bb9c5f63a93b574bd3ea7af737f5aea72ad7f0be1b98e2e1c0bdda5061becf6e3 -doccontainersize 1178224 -doccontainerchecksum 409173d58ffd65ba57acfc580fa2b0860327d536b8758816275ab0541138af0869ca1460f8fb725e0f185546349fca2d867afe24a19e74c9c147c36175d8e060 -docfiles size=299 +containersize 130980 +containerchecksum 43954ec2acfd2a0e37acb55c3bc7496a9959abeb60787a4daa742cfccc3bfe5b88542d341552aa9bfef6b4224c79a14c5a5e9a7221cc0ecf83d22c9e6ce6a48b +doccontainersize 1143636 +doccontainerchecksum 475eb846b55672b23769af8757c7532b30d3d13d6667fcd71b8783ab291dd3a39fef6d255080745d4d609276f9074896fae7e674e8abeccad7c5984db5f88636 +docfiles size=291 RELOC/doc/latex/ctex/README.md details="Readme" RELOC/doc/latex/ctex/ctex.pdf details="Package documentation" language="zh" -srccontainersize 86952 -srccontainerchecksum 7fb4745ff434fa138fba81d2df95269be134caaa130a00e789252c3855dcbfb39206d558f963ed63c3a16072efc3184f6ce075f3bdae2d4ea23e00b2bcf32169 -srcfiles size=119 +srccontainersize 89524 +srccontainerchecksum 59df412a321a4ad75e1b948dd12d250a844c042c9a7c5ef24f0108591fbb087ec6949b537788f070d496b9ead0e8b8de120b37f6977dd536bf10ac353d5da6c2 +srcfiles size=122 RELOC/source/latex/ctex/ctex-zhconv-make.lua RELOC/source/latex/ctex/ctex.dtx RELOC/source/latex/ctex/ctex.ins RELOC/source/latex/ctex/ctexpunct.spa -runfiles size=437 +runfiles size=439 RELOC/tex/generic/ctex/ctex-spa-macro.tex RELOC/tex/generic/ctex/ctex-spa-make.tex RELOC/tex/generic/ctex/ctxdocstrip.tex @@ -83826,12 +87154,13 @@ runfiles size=437 RELOC/tex/luatex/ctex/ctex-zhconv-index.lua RELOC/tex/luatex/ctex/ctex-zhconv.lua catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues -catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-home http://www.ctex.org catalogue-contact-repository https://github.com/CTeX-org/ctex-kit +catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /language/chinese/ctex catalogue-license lppl1.3c catalogue-topics chinese book-pub class -catalogue-version 2.5.6 +catalogue-version 2.5.10 name ctex-faq category Package @@ -83901,15 +87230,15 @@ catalogue-topics tibetan name ctie category TLCore -revision 57972 +revision 66186 shortdesc C version of tie (merging Web change files) longdesc This is a version of tie converted for use with cweb. depend ctie.ARCH depend kpathsea -containersize 384 -containerchecksum 68cb48fc07bb2b184d38b65d722918954d376243e7f5133ba2f6ba67be8cb8f6594d2f66dbb733e6ba16edca033aa5046da8abadc2a80426e1151e975f6b27c5 -doccontainersize 16976 -doccontainerchecksum a77483824772f5474b6f2954358548e6ce30a60635d1776e5cbd44b020bffad5ebf43ae0474b41b67832cd133f72ff4d25be8985fd669e493815d86f69d09c26 +containersize 380 +containerchecksum 0180080c48fea7b717ff0ad27e060ad4564841fe2929b8db919aa0402886a00e0fa40f1398ef82bbf9e983343c9f9f6c797606045d55ed07e572e006588c7353 +doccontainersize 16972 +doccontainerchecksum 178a88260131781b6678ee63b1b35ecc0734525309b99c0d5bd4498127970bd67e30c23072392b6678186532a845c7e27188b1902b5dca52180720bc98fe3dd6 docfiles size=6 texmf-dist/doc/man/man1/ctie.1 texmf-dist/doc/man/man1/ctie.man1.pdf @@ -83920,145 +87249,136 @@ catalogue-version 1.1 name ctie.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of ctie -containersize 34216 -containerchecksum 6d701222cc7fe6f71ade210eb89aa7b9254e67680e59401a4cd27b0fcffee7f908c3cea0fcd2208714ccfbe5ad2b1e48a031878b91f07e1a56b83ecf052ace35 +containersize 34260 +containerchecksum 7c755e114fa281ad238e36307442ea871bcfb92a84375c52fdf896589c1fe903fe18d56b6ae4e8db30d4c57ffe49e8ec264f6ca398999cd298354ec593ba2d2b binfiles arch=aarch64-linux size=22 bin/aarch64-linux/ctie name ctie.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of ctie -containersize 35480 -containerchecksum 79667ec054fdad3f048ca869c7ecb0edb1edbb2c294fe64e59601f49b6c807336faea533d110774f480a8bf264560a094d931316061e0a1c1bc9559b9037b632 +containersize 35872 +containerchecksum 99f5a06849bac63a784a5f431e1a2068e934a5f90eb815facffbe56df2b81fa8d97d4f8e609dea0370cc35dd00cba00932bde85aae6459f472582334c0d58fbd binfiles arch=amd64-freebsd size=21 bin/amd64-freebsd/ctie name ctie.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of ctie -containersize 32220 -containerchecksum 175a6533fec2c4efe7c103ea2ef00f44e4aab7ad5afc82c6792ad47392df082a63cb5548f76a3261ee778ab31076a566c78b72837e4ebfcfd43494815da53782 +containersize 32236 +containerchecksum 7e96fc560fd461fa877a4ee5253cf796829321b4047370e8938b6df2e08da1d016f9c14bc1fc6f8dd204047a8b62831cbbd535ff49cf9f37c7442ea9e2479dda binfiles arch=amd64-netbsd size=25 bin/amd64-netbsd/ctie name ctie.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of ctie -containersize 28732 -containerchecksum 182ecf5eba98b32a7fb9364a36dd07f27f419f823ac11796086516bbdfb2300866b821c571ca458f0713364262830846a36c417dd07ec414168546122324db47 +containersize 28712 +containerchecksum 3cab47f6494e3eaf70c3297208c5a6e49b831d9ac9280e402e8fb067a559201ffe68eb70fed6c6635abdeae43cc71c60720ccb01f9ddfc95b07899aeb1d9f292 binfiles arch=armhf-linux size=18 bin/armhf-linux/ctie -name ctie.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of ctie -containersize 6672 -containerchecksum f30908f3247411a434d2024677dbe4cc9e988c79aae2936269f4c9636c841c418e35b28c3af08c54063c86ab6a7c0f97d74037cdd282b74cc47e45b937b710fc -binfiles arch=i386-cygwin size=5 - bin/i386-cygwin/ctie.exe - name ctie.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of ctie -containersize 32124 -containerchecksum ced8a897819fb72d8c73a63ca84bb4d1e531a74b325c4c36ea126f6a00447a40f499d00e461574edf50c1a93ff87b50af22f0e0ffc40f90f36fb170560096a26 +containersize 33004 +containerchecksum 51242384d73cb702ed43d308309bdc1814acf8eea959ebdf809b9ff26a8d59fd4765555b7ca0c63ebbaad20827837ba79821f29f7f478136bee513f7a84bac77 binfiles arch=i386-freebsd size=19 bin/i386-freebsd/ctie name ctie.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of ctie -containersize 38192 -containerchecksum 5a003d1974b2c43ad5609f4bb3092b763fe5bcae1bb6fc47a6e95e06c872cae55b900778fe14aa9d51676c82afc4e78291d7fb4c9a709f6028603b420c14a834 +containersize 38580 +containerchecksum 2c83837c6f7e6fa50a1db31156a94d2d0a1badd352adc77be962d4ff6d6c0b849c64a482d713ede05d902639c8a876e096d8b26fc65ce8b0d012a1ee72c10a00 binfiles arch=i386-linux size=24 bin/i386-linux/ctie name ctie.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of ctie -containersize 29808 -containerchecksum b34ebdc1e65b8721e7b6240d0136a12e9010c8fc6cf6a63dbfc0c8cc66ac828fb012a066d5d2a265dd1fa5e3ef86f75cf616a583aeae58f00febceae5b9031ab +containersize 29792 +containerchecksum ce0af13049c97c91bef7fecfd9cdb66899135bf24177dd9e3dec47810ff16016362bc63e871ecb6e70d867bc663cffc7d8562496b01fe1de572de594eb7aef84 binfiles arch=i386-netbsd size=24 bin/i386-netbsd/ctie name ctie.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of ctie -containersize 34268 -containerchecksum 165414b75a99fcc43439a3fc6d7dd43f3d190d1ed4cf4e7494edf640c73c84a33dee0c951a8712f280e5fd5009521621103af0f9e0536810d59e58d0214bfb99 +containersize 34324 +containerchecksum 59f93c39eeaa8ecb14bcc7efab50d2c44b48f08f589a9c6b496b900d87e84d08b46907205f9ec1f37d4011f791edad6795704d2b6237e39295578ab0be8dd726 binfiles arch=i386-solaris size=19 bin/i386-solaris/ctie name ctie.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of ctie -containersize 66028 -containerchecksum b6b180112460ec00f7fd0ac35c7e7edbe4c8e7d8ccc45d88896bffcfaaf3118075327f37f415a6b30deebd891b5e39e7c5b15c156994b356d54d252ac17a1db7 -binfiles arch=universal-darwin size=59 +containersize 66276 +containerchecksum 9fcf39802581b89be2f59f95a193b587488e8d7367715006b54cce6188df21f68ddc75e39f70eece53f38077d01c061f5f0f3abd5bb40f5f34a87acd9b650236 +binfiles arch=universal-darwin size=63 bin/universal-darwin/ctie -name ctie.win32 +name ctie.windows category TLCore -revision 58783 -shortdesc win32 files of ctie -containersize 6920 -containerchecksum d1fd450690a1e98f109b19a41693a774163e463f92ebf699a05e7e04ee572e9ad82927544e2ef22aac8d12838dfe8e681286112889751411a698cc821832d217 -binfiles arch=win32 size=4 - bin/win32/ctie.exe +revision 65891 +shortdesc windows files of ctie +containersize 6792 +containerchecksum 19a7a9e88125c6785e86f81f00e35e450bebc71a39abdf3618acc6aff352c75357363ef0ab6ddeec8caaaa2d96d47dcda59995704f4f948818f58a852da2d9f8 +binfiles arch=windows size=4 + bin/windows/ctie.exe name ctie.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of ctie -containersize 6792 -containerchecksum b281d6c1101f5da8753a0219b44c47a4b2b0c29d6b862cd97278cabdc51e692b5cd47020dd2f467961c2b3ecdc77ba462f651590e347eadfa6de7ce6b1dacda2 +containersize 6816 +containerchecksum 56831dcbf0decf1486f1fa63aa9e00b93f1710880d5ec2f41659b36b35c758ca4584b0a49aefb2d9c42b3826180ff4976cf22fd83e8e5d4bc6c6fe3aba749d65 binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/ctie.exe name ctie.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of ctie -containersize 33740 -containerchecksum da5f7e91fef4677edd58cfbfce662c540c457198fef9d077b05d0e1e692479b2d7fe0cc14a08a6045767195b283d97a173781d349493728a18f2c3660938a484 +containersize 33716 +containerchecksum c87e7576395492a39e05fd4b17547cbbdf48c01cf5715c9c4ee4c91d623921b58c977e311c8ddee1817d320429f954c0628b818fa9e3d69d1c6c84ac2d1b8a7f binfiles arch=x86_64-darwinlegacy size=20 bin/x86_64-darwinlegacy/ctie name ctie.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of ctie -containersize 35932 -containerchecksum 8687c626c928bb025df16290c46e6af53db926634ee271885e45865cd80996ae92aef81f7bdb8a8eae58e5faae83abcdb44926bb65257adfc6827cd3c630cc91 -binfiles arch=x86_64-linux size=21 +containersize 35896 +containerchecksum aabd21df909de1035e1e307494511f4eea7a834abe71c8d199ab001ebc118ab6330f08ccb0adfdaed1780a8bde30e85e462933d71803a5692b2d9a3f0514a8bd +binfiles arch=x86_64-linux size=22 bin/x86_64-linux/ctie name ctie.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of ctie -containersize 37116 -containerchecksum 2de209cb413bde6089a0cda6eee8a15e89f1bfbdf853ae567eeebe744a1a2343e556ae30977237d386ec826b1609cf208241cae20d29a60d6e19e775764a81f8 +containersize 36756 +containerchecksum 1fab2e0ffb05913ccb4aef91c7cb3591c083536fdd4fff8a1ef62568d754555eba79e5da44364a8112d3257ab9a34c0b179bc7f46ade861cdd6a5c27be7912a5 binfiles arch=x86_64-linuxmusl size=22 bin/x86_64-linuxmusl/ctie name ctie.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of ctie -containersize 36976 -containerchecksum 3eea8d78e3a103d9e7dc15c872e31ac89d9bae75d3f66f5d198b0625478e03089f003402690dc12cc274ac358c1d22b0ed94b91241edd42ce7fb76c19c39b80c +containersize 37044 +containerchecksum ed567b0a59040aacf19cf6d588662460d1b3fc80ba2ea4a33a70699d688e7d2dc8b8e0340bc3b00da6ef64356e71767e0ec282846bae7c997901ca111abb455e binfiles arch=x86_64-solaris size=23 bin/x86_64-solaris/ctie @@ -84155,7 +87475,7 @@ catalogue-version 0.4 name currfile category Package -revision 56478 +revision 64673 shortdesc Provide file name and path of input files relocated 1 longdesc The package provides macros holding file name information @@ -84169,28 +87489,27 @@ longdesc of such a file. The depth of inclusion is made available, longdesc together with the "parent" (including file) and "parents" (all longdesc including files to the root of the tree). The package longdesc supersedes FiNK. -containersize 3740 -containerchecksum 8305bee1b1375f3157a938714b0803d976818dce716d0587ae3aac2020c38fdd987ca45d55aa8605c497b3bd0cb5ac909f5c8347f30836dd5ec2b36d18d06a64 -doccontainersize 173380 -doccontainerchecksum 7efdf77590627c00ebf0741cc7c77f7813f64fa7a9596c7b35c48e0b0364328a9166fdae5d93f0426ce2b8878c42e1c8f2e7d36823a08ddc7e5fcbba4bebc2d9 -docfiles size=44 +containersize 3748 +containerchecksum 4c63d6d33c21a0ac9aed990fa79eb1457908d9301dfb81b3dc7167d5b8089ebd20abfbcf29380a7dd348c6ca8c131260e366aa55819a6affde146408a8e80014 +doccontainersize 180748 +doccontainerchecksum e891b03438257ae5e8eb3b6bf21a44b05df274cc18877a6c39569e94dcc9f5e678aed5a5858eb2e9762b4a8ac6b04856839dd47d81b5de55e4023a369e09ba7e +docfiles size=46 RELOC/doc/latex/currfile/README details="Readme" RELOC/doc/latex/currfile/currfile.pdf details="Package documentation" -srccontainersize 11704 -srccontainerchecksum 34db7dc10bc9573093242480a7e9a2b1138458dfdf3e71bc5a7a8fa3642a9e2545f1fbd308e27096213f031c55638f778594a9844ce96c6921e3f2290c9d0fc1 +srccontainersize 11756 +srccontainerchecksum e68a86c05be5c92eb8a7a224bb404cfbf96e7950e6154e2446237692320f06368c0097d7ad0b57438012a36994e838b514e4588b6eb7d31478160bdf66bce4d7 srcfiles size=13 RELOC/source/latex/currfile/currfile.dtx RELOC/source/latex/currfile/currfile.ins runfiles size=5 RELOC/tex/latex/currfile/currfile-abspath.sty RELOC/tex/latex/currfile/currfile.sty -catalogue-contact-bugs https://sourceforge.net/p/currfile/tickets/ -catalogue-contact-home https://sourceforge.net/p/currfile/ -catalogue-contact-repository https://sourceforge.net/p/currfile/code/ +catalogue-contact-bugs https://github.com/MartinScharrer/currfile/issues +catalogue-contact-repository https://github.com/MartinScharrer/currfile catalogue-ctan /macros/latex/contrib/currfile -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics doc-tool -catalogue-version 0.7d +catalogue-version 0.8 name currvita category Package @@ -84303,7 +87622,7 @@ catalogue-version 1.16 name curve2e category Package -revision 57402 +revision 65469 shortdesc Extensions for package pict2e relocated 1 longdesc The package extends the drawing capacities of the pict2e that @@ -84313,18 +87632,18 @@ longdesc vectors, new specifications for line terminations and joins, longdesc arcs with any angular aperture, arcs with arrows at one or both longdesc ends, generic curves specified with their nodes and the tangent longdesc direction at these nodes. -containersize 9920 -containerchecksum 9346fff324a93225d271a2bce1a038888a1850c27ec090832740c22538342192889098ccdcbff1c5034d48c41c479b131b1fa7a401e0db684ba01536f3eb7ef3 -doccontainersize 1170628 -doccontainerchecksum bd84b3122aac83e5584921c4c8484430b546012bd5d93f49a1387acf6476636bdf6f00f77b90af53252acb3600ae75c7038fed4d213b76e71543df3b5900eb09 -docfiles size=320 +containersize 9936 +containerchecksum 0d2e5e851136e73d205cd87fdd22eb2d4513c4f8d1f510c1adefc6a278c9c47e148ca6c45d7cbedfc5e51543f06301f7960bdc704fd4da3dbc2bcbbd68e506e3 +doccontainersize 1160296 +doccontainerchecksum d7c0dad1800cc12ab3908036a8f59d87a37c6a2218a6fd6b0280019f98d34908b080499abebb1976ecf16957d9290cadebc93c90c766d467b6452f6a8b7c8743 +docfiles size=325 RELOC/doc/latex/curve2e/README.txt details="Readme" RELOC/doc/latex/curve2e/curve2e-manual.pdf details="User manual" RELOC/doc/latex/curve2e/curve2e-manual.tex RELOC/doc/latex/curve2e/curve2e.pdf details="Code documentation" -srccontainersize 46304 -srccontainerchecksum c64897e4f2c6c2705b5093b2a937d2cf2dfa8cc2d0c9290775d155f733c82e0b7f11d30b8c58e21416b0f4a1e0cd4b29f1bbac5cdb665e821ec11218767865b5 -srcfiles size=45 +srccontainersize 46884 +srccontainerchecksum 4767deede52b6c3a31168f37a41a8f127ad6de0208b6aa42ca00ec7ed2cdcddc0317de2920ccdd5f1896b6b007ebeabcbd5aaf8211f798584ff64f960f63e5da +srcfiles size=46 RELOC/source/latex/curve2e/curve2e.dtx runfiles size=15 RELOC/tex/latex/curve2e/curve2e-v161.sty @@ -84332,7 +87651,7 @@ runfiles size=15 catalogue-ctan /macros/latex/contrib/curve2e catalogue-license lppl1.3c catalogue-topics graphics graphics-in-tex graphics-curve -catalogue-version 2.2.15 +catalogue-version 2.2.22 name curves category Package @@ -84422,33 +87741,66 @@ catalogue-license lppl catalogue-topics bibtex-sty catalogue-version 4.33 +name customdice +category Package +revision 64089 +shortdesc Simple commands for drawing customisable dice +relocated 1 +longdesc The customdice package for LaTeX, LuaLaTeX and XeTeX that +longdesc provides functionality for drawing dice. The aim is to provide +longdesc highly-customisable but simple-to-use commands, allowing: +longdesc adding custom text to dice faces; control over colouring; +longdesc control over sizing. +containersize 2616 +containerchecksum d537d8357fa1d718f685d3bd05afe849eaffcd63050b8ef5f85dfea39260b9268e7ed12e727ac3a14a7194f21e4de158bc0a8143408c45e5f3718ea143a27aff +doccontainersize 360976 +doccontainerchecksum 7512a7fa81198895666d135bd50d75345e8d7152289f51126fa3fb68a028f05666d4807e63c82db5068a9aeaca11fcb06d7b0edd4d77804bee195409bf042144 +docfiles size=92 + RELOC/doc/latex/customdice/README.md details="Readme" + RELOC/doc/latex/customdice/customdice.pdf details="Package documentation" +srccontainersize 7408 +srccontainerchecksum 8ab4af162c7abb96a129934f5c6b1471ba781d43dd7d0dd220a53638010c9c082d26c634a3e65c02f51bb92a7603a3aea9f370e82cea1d8de17afb9d815d1a33 +srcfiles size=14 + RELOC/source/latex/customdice/customdice.dtx + RELOC/source/latex/customdice/customdice.ins +runfiles size=5 + RELOC/tex/latex/customdice/customdice.sty +catalogue-contact-bugs https://github.com/prowlett/customdice/issues +catalogue-contact-repository https://github.com/prowlett/customdice +catalogue-ctan /graphics/pgf/contrib/customdice +catalogue-license cc-by-sa-4 +catalogue-topics graphics-use +catalogue-version 1.1 + name cutwin category Package -revision 29803 +revision 60901 shortdesc Cut a window in a paragraph, typeset material in it relocated 1 longdesc The package provides facilities to cut windows out of longdesc paragraphs, and to typeset text or other material in the longdesc window. The window may be rectangular, or may have other sorts longdesc of shape. -containersize 2784 -containerchecksum 484c995cd3b18f723899fc04e3af7b49bc7ac90a02448c4b49643b8ebe09c445bab122bc2ca0f2cab872323438fb02af3e5a053977ae8ff6146cb4af96f08ba1 -doccontainersize 304448 -doccontainerchecksum 89b4fb68d949b86eb3b5d90f7d8c828e10df591cf734f5e6908a221aa9e2d50820841e6095dc912619d4461c37b735907504e63fffbfd95c3371602144f87429 -docfiles size=81 - RELOC/doc/latex/cutwin/README details="Readme" +containersize 2836 +containerchecksum 922ab4c0f1158fa699c883e0fd8ed942a077c3b3109b048087756895d0ab6ead05182fbe17ab19310b78691fd77444d1460c7e021689c2eab092ed82974ed6d7 +doccontainersize 334216 +doccontainerchecksum f37bc538e4affa716aa315535fad7fdb2bb0e5188844d028b8bda4935339965e3f375439ab0abc62d63f2f57c3d439a25888f29cdf3be484092a57ff86c86c72 +docfiles size=85 + RELOC/doc/latex/cutwin/README.md details="Readme" RELOC/doc/latex/cutwin/cutwin.pdf details="Package documentation" -srccontainersize 9748 -srccontainerchecksum 0e6fbb5bdf3cc9b1d270979f379e2f50b356353533278495526275bab3211b1e6ef670a5269e412ae87c3fe4ca0ee8411dadfb42e4e2cce6dc200c863532b997 +srccontainersize 9416 +srccontainerchecksum d3a544d356d4afb5599379a1c767d2aed9ace420d4540a1c62b617cb8f542fbcb225ec4e42ab65f7ddebf91df3c77a6b9bf0f59de9e6a11e06ae68fddd5b21ad srcfiles size=10 RELOC/source/latex/cutwin/cutwin.dtx RELOC/source/latex/cutwin/cutwin.ins runfiles size=3 RELOC/tex/latex/cutwin/cutwin.sty +catalogue-contact-bugs https://github.com/LaTeX-Package-Repositories/cutwin/issues +catalogue-contact-repository https://github.com/LaTeX-Package-Repositories/cutwin catalogue-ctan /macros/latex/contrib/cutwin catalogue-license lppl1.3 catalogue-topics text-flow -catalogue-version 0.1 +catalogue-version 0.2 name cv category Package @@ -84508,9 +87860,45 @@ catalogue-license other-free catalogue-topics cv class catalogue-version 0.2 +name cvss +category Package +revision 65169 +shortdesc Compute and display CVSS base scores +relocated 1 +longdesc The Common Vulnerability Scoring System (CVSS) is an open +longdesc framework for communicating the characteristics and severity of +longdesc software vulnerabilities. CVSS consists of three metric groups: +longdesc Base, Temporal, and Environmental. This package allows the user +longdesc to compute CVSS3.1 base scores and use them in documents, i.e. +longdesc it only deals with the Base score. Temporal and Environental +longdesc scores will be part of a future release. More information can +longdesc be found at https://www.first.org/cvss/specification-document. +containersize 3320 +containerchecksum 563d310188adc99e14bc93772f8f94af0741665c15d8013d9cc98fa5d86129d48b62473835973bba90fcb4117fbd782b029b87045e5b392fabd308c8f1a6de42 +doccontainersize 574872 +doccontainerchecksum 604139dd0e636b5b050d07417f7990c741e7400c7c656d76fb15d56a76b869a2805e43236ac2ea062826df5f102753c8f1450a4e09b24dbc2f96b6668975bbe3 +docfiles size=146 + RELOC/doc/latex/cvss/LICENSE + RELOC/doc/latex/cvss/README.md details="Readme" + RELOC/doc/latex/cvss/cvss.pdf details="Package documentation" +srccontainersize 7376 +srccontainerchecksum 771545e51e6066529d43edd5f14f070c816c8b86478f5e2598929f34838dfd0e90d9ed666d478e8f5c3aa14da9f6f7b8658e6b1527f212c775cbc2c7645e9e2f +srcfiles size=12 + RELOC/source/latex/cvss/cvss.dtx + RELOC/source/latex/cvss/cvss.ins +runfiles size=3 + RELOC/tex/latex/cvss/cvss.sty +catalogue-contact-bugs https://github.com/3isenHeiM/CVSS-latex/issues +catalogue-contact-development https://github.com/3isenHeiM/CVSS-latex/pulls +catalogue-contact-repository https://github.com/3isenHeiM/CVSS-latex +catalogue-ctan /macros/latex/contrib/cvss +catalogue-license lppl1.3c +catalogue-topics calculation expl3 +catalogue-version 1.1.0 + name cweb category Package -revision 57972 +revision 66186 catalogue cwebbin shortdesc CWEB for ANSI-C/C++ compilers longdesc A highly portable and extended version of Levy/Knuth CWEB 3.64c @@ -84528,11 +87916,11 @@ longdesc version and adding new features from CWEBbin. As of November longdesc 2019 CTAN no longer holds a copy of this material. Please go to longdesc the package's github repository for more information. depend cweb.ARCH -containersize 23440 -containerchecksum 84af281f5dd3313b2601ade3c038b67baca43a388e6a40ff079be66e2de6fbee0bfc15971241f4c6021a105d2b26926ac228de236fe13019fd0d8d8c4fd6751a -doccontainersize 389396 -doccontainerchecksum e2b13d368b1c338e487c9ac770a8f0da5ea5a58880774b8b6b5a53047a2485d1cc98682808ab1161b308f7480f5a1fcbfd2c45ac39646a3aca8ae92d17db9f92 -docfiles size=139 +containersize 24352 +containerchecksum 7888adf1d9721784827b3f9aa880b9929481cf58d13b3331f5ca17f8818894f0bfefde882c248676079fbe47981032132c44bf9012fa515afc36139ef760a0e5 +doccontainersize 73548 +doccontainerchecksum 978e2666f833bce94ac7323d9f9e9c45542bf6ea2c5a5c35e6d54679831ad4c5c5676d527b249b6ea2f27750f7e6e54ad18032e6ddae6bb84469d64bf2c18e46 +docfiles size=64 texmf-dist/doc/man/man1/ctangle.1 texmf-dist/doc/man/man1/ctangle.man1.pdf texmf-dist/doc/man/man1/ctwill-refsort.1 @@ -84545,8 +87933,9 @@ docfiles size=139 texmf-dist/doc/man/man1/cweave.man1.pdf texmf-dist/doc/man/man1/cweb.1 texmf-dist/doc/man/man1/cweb.man1.pdf - texmf-dist/doc/plain/cweb/cwebman.pdf -runfiles size=51 + texmf-dist/doc/man/man1/twill.1 + texmf-dist/doc/man/man1/twill.man1.pdf +runfiles size=54 texmf-dist/tex/plain/cweb/ctproofmac.tex texmf-dist/tex/plain/cweb/cttwinxmac.tex texmf-dist/tex/plain/cweb/ctwimac.tex @@ -84564,7 +87953,10 @@ runfiles size=51 texmf-dist/tex/plain/cweb/cwebbin/pdfctwimac.tex texmf-dist/tex/plain/cweb/cwebbin/pdfwebtocfront.tex texmf-dist/tex/plain/cweb/cwebmac.tex + texmf-dist/tex/plain/cweb/twinx-startup.tex +catalogue-contact-bugs https://lists.tug.org/tex-k catalogue-contact-repository https://github.com/ascherer/cwebbin +catalogue-contact-support https://lists.tug.org/tex-k catalogue-license knuth catalogue-topics litprog @@ -84682,211 +88074,213 @@ runfiles size=16 name cweb.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of cweb -containersize 110384 -containerchecksum 4095c853348c87d09bca2269c2e92c8a0ec3cde028fe19a58ae39398085e5902ce39753a3d0f73139cff7cdbfb10fee9daae7c10145bc199883494a110b2eb04 -binfiles arch=aarch64-linux size=114 +containersize 148724 +containerchecksum 08240d3b21ad4f7bb62213eb8c9bc9598e713755c51bb889b722e3ff82c9d201e8cab359d8af181013b17410d3167cbb88f480cd2bbabe430789a2f88f281200 +binfiles arch=aarch64-linux size=157 bin/aarch64-linux/ctangle bin/aarch64-linux/ctwill bin/aarch64-linux/ctwill-refsort bin/aarch64-linux/ctwill-twinx bin/aarch64-linux/cweave + bin/aarch64-linux/twill name cweb.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of cweb -containersize 131440 -containerchecksum 03be843dd2ecb1fd7017c69baed178ec06460913d0360480aba779b31043af6f2d3e86592483a910f43407be6ed443b7ef85f5e618de14f1ca708e9f672831df -binfiles arch=amd64-freebsd size=129 +containersize 177276 +containerchecksum e4aab3b9022019a5529738c790bce4f0460ecce531aaa390d8c90a4c0b2ae25d7b99ad31c52e263fedd07d8a75f54ab1182e32a0af4e1043ef182b00c00b2f4f +binfiles arch=amd64-freebsd size=175 bin/amd64-freebsd/ctangle bin/amd64-freebsd/ctwill bin/amd64-freebsd/ctwill-refsort bin/amd64-freebsd/ctwill-twinx bin/amd64-freebsd/cweave + bin/amd64-freebsd/twill name cweb.amd64-netbsd category Package -revision 58145 +revision 65923 shortdesc amd64-netbsd files of cweb -containersize 109416 -containerchecksum 50d4c4fcb78a26860735e7093967f31e2def983a6dce6db58d9ae4930ca032823a09bb1008cf8b5c83c4982449bc582e13d06cb421778e4717589f9d62814f81 -binfiles arch=amd64-netbsd size=130 +containersize 147836 +containerchecksum be48eed57a8d4923b56050a967f6569fc93d16c08fbaba725681859fa9a714182cc3df7f019bff31ba76fbe17523d5797b4e74387c4c157416e8ce3aad957d99 +binfiles arch=amd64-netbsd size=177 bin/amd64-netbsd/ctangle bin/amd64-netbsd/ctwill bin/amd64-netbsd/ctwill-refsort bin/amd64-netbsd/ctwill-twinx bin/amd64-netbsd/cweave + bin/amd64-netbsd/twill name cweb.armhf-linux category Package -revision 58180 +revision 65877 shortdesc armhf-linux files of cweb -containersize 87404 -containerchecksum 30da51997e72093a0a4d678ab97fcdb05990c3362d71fc2010de4172b176e0147fa5d22a1b280d613def8fc7e891370e00fc4ed46d10c480fad921b5d4d04362 -binfiles arch=armhf-linux size=92 +containersize 118596 +containerchecksum b988d8da37304ba67a608bf2016cbb7c01c7d937ea5708818359237f32444f5464e9a76246e38e7acdf43483e3acbeb23e59786bac84a3090b35e6fa6ff8faf0 +binfiles arch=armhf-linux size=126 bin/armhf-linux/ctangle bin/armhf-linux/ctwill bin/armhf-linux/ctwill-refsort bin/armhf-linux/ctwill-twinx bin/armhf-linux/cweave - -name cweb.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of cweb -containersize 68048 -containerchecksum 28a6c70eea7fa648850fe99d8a95a2772d50ab86829a1dca813b5b9be2caeba4be1ff43f1d9ac5a09fafc7f7d4a654f33721b158f00a932ac3d443a5fb5c7472 -binfiles arch=i386-cygwin size=63 - bin/i386-cygwin/ctangle.exe - bin/i386-cygwin/ctwill-refsort.exe - bin/i386-cygwin/ctwill-twinx.exe - bin/i386-cygwin/ctwill.exe - bin/i386-cygwin/cweave.exe + bin/armhf-linux/twill name cweb.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of cweb -containersize 107384 -containerchecksum fb36234ee88a9bad1165e437c44184ce809ab3619d0717bd2065ac16b497c9191ef5be7a4f6ab08cdcbf308fe681b68f4d11d31ca5a6a039968c4f6fee6c02ab -binfiles arch=i386-freebsd size=111 +containersize 140668 +containerchecksum a67a1718f1b6b11095d8cad57e71e8d8bc140a074870aa21a2470a208df9676bb04f0cf21a62333deaf6944dd8d7751f0c85356cd03c6d306577d7a9ec97d755 +binfiles arch=i386-freebsd size=149 bin/i386-freebsd/ctangle bin/i386-freebsd/ctwill bin/i386-freebsd/ctwill-refsort bin/i386-freebsd/ctwill-twinx bin/i386-freebsd/cweave + bin/i386-freebsd/twill name cweb.i386-linux category Package -revision 58136 +revision 65877 shortdesc i386-linux files of cweb -containersize 110948 -containerchecksum 481a384feb53e234e95e1c7c9cf1c63aee3c40a85a07164ef99c2c7565bb5ce23fd02616ba67db67fa7d88c4cfdcb9451751a2d7bdbe6569d0fbd43a4b9333f0 -binfiles arch=i386-linux size=114 +containersize 144220 +containerchecksum f5cc6ebb91ec0639811c2cdd0268b428ffd2dbbd9335af720a92ad0a30993602c2eeff0b3bead222f92717f2673775701f5c99eee7466a8b43edac9d03e91a33 +binfiles arch=i386-linux size=156 bin/i386-linux/ctangle bin/i386-linux/ctwill bin/i386-linux/ctwill-refsort bin/i386-linux/ctwill-twinx bin/i386-linux/cweave + bin/i386-linux/twill name cweb.i386-netbsd category Package -revision 58145 +revision 65923 shortdesc i386-netbsd files of cweb -containersize 90680 -containerchecksum b0320d33f0a989ef68521489996882ec3120f57df3ec618bc035f6796d0ebf30f628fd9c6c2fc9fb1ff554b1bd8496f204783ec66b65efd3aca4f97805384827 -binfiles arch=i386-netbsd size=117 +containersize 117724 +containerchecksum 83f5364a35b778953ec603c49b959ec552e7d659376c1040c207616ec62e0a6a412c9c1d47356b653170528bb5817c995c24901090265a28439a828c96d4d632 +binfiles arch=i386-netbsd size=161 bin/i386-netbsd/ctangle bin/i386-netbsd/ctwill bin/i386-netbsd/ctwill-refsort bin/i386-netbsd/ctwill-twinx bin/i386-netbsd/cweave + bin/i386-netbsd/twill name cweb.i386-solaris category Package -revision 57938 +revision 65877 shortdesc i386-solaris files of cweb -containersize 106872 -containerchecksum 1710bd96d6fd2ece1ba93ef150bc88a18817b3f0c7c5b1e6049cdb8b6dd34b9d51d7b0a16d169816238718754d141d4cdba928c71989d07ae4ae28bb4b807836 -binfiles arch=i386-solaris size=99 +containersize 141700 +containerchecksum e79f75767e451c828cee36b2d2e3c6c17b13136c0e0cea3840cb2114fb37c4abcd8072c43b35e90cac22ece3d47a47696e86ca6b39d07da7a224710e6039e7db +binfiles arch=i386-solaris size=135 bin/i386-solaris/ctangle bin/i386-solaris/ctwill bin/i386-solaris/ctwill-refsort bin/i386-solaris/ctwill-twinx bin/i386-solaris/cweave + bin/i386-solaris/twill name cweb.universal-darwin category Package -revision 58157 +revision 65895 shortdesc universal-darwin files of cweb -containersize 243276 -containerchecksum 13ab399933101839446f61e35ddf8c12efe2254824e67bfa9d80ae2696732fd3ce8a99b45eb6edc454976f2d024de9b660f79f765577f696e28d53d62a7b2daa -binfiles arch=universal-darwin size=352 +containersize 332852 +containerchecksum 2ab78ebea0f0c4dfdfd877cb5492e33a47fde7f68d6ec09bfc8c523f357b7f2792bd77a204c7319b4254f6bd6bebaf800001a637f1b7c5c7f18e751a9bd996f5 +binfiles arch=universal-darwin size=467 bin/universal-darwin/ctangle bin/universal-darwin/ctwill bin/universal-darwin/ctwill-refsort bin/universal-darwin/ctwill-twinx bin/universal-darwin/cweave - -name cweb.win32 -category Package -revision 58783 -shortdesc win32 files of cweb -containersize 72252 -containerchecksum dad428345f1168959c89e02049d22d488ca07dc91a3ba1385aa9f49699a558a5d17491470122437124ba3bfcfb5b8d04c4bf298f867ae7963201a3bb9daf2186 -binfiles arch=win32 size=59 - bin/win32/ctangle.exe - bin/win32/ctwill-refsort.exe - bin/win32/ctwill-twinx.exe - bin/win32/ctwill.exe - bin/win32/cweave.exe + bin/universal-darwin/twill + +name cweb.windows +category Package +revision 65891 +shortdesc windows files of cweb +containersize 110408 +containerchecksum 72c6697d7eca1018dcf05ab09e1e01a476375b5a07e55fbb90940cd20f4462b0d4c2e2fe830e5e18214d2eaa566023aa6365b9fb532bd1abbdd49eb8f4eec9e3 +binfiles arch=windows size=77 + bin/windows/ctangle.exe + bin/windows/ctwill-refsort.exe + bin/windows/ctwill-twinx.exe + bin/windows/ctwill.exe + bin/windows/cweave.exe + bin/windows/twill.exe name cweb.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of cweb -containersize 80848 -containerchecksum c8f070c25319332e6218c6631f926344503757bc42511eee07aae55cd08d5b4c73fb0545ca978050b4fe8e3eea8723783717740d81db4ffa9730b530f2356957 -binfiles arch=x86_64-cygwin size=63 +containersize 111940 +containerchecksum 92948c60cd59a9fc852f41900dfdf6f7c5f10cbeece2cbfaae13f15cb6407d74508405e1e4634864f8669463cfcdeeccd0c0bd0c6f04af6e0ad241eaf5169b55 +binfiles arch=x86_64-cygwin size=84 bin/x86_64-cygwin/ctangle.exe bin/x86_64-cygwin/ctwill-refsort.exe bin/x86_64-cygwin/ctwill-twinx.exe bin/x86_64-cygwin/ctwill.exe bin/x86_64-cygwin/cweave.exe + bin/x86_64-cygwin/twill.exe name cweb.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of cweb -containersize 104596 -containerchecksum a28935b79d26df9ddc450ab8142164b574beed3a9137cd6722f3cbf5a5c986dd8f78dcd12c48c8b4190ef75856c177958bf24771a4f67746a83b13d9d5078131 -binfiles arch=x86_64-darwinlegacy size=104 +containersize 141536 +containerchecksum 007f9e35ac699bc5f59699b9e555cc2e3a01c6afebe65aad2b4ce756f227ec2c965d24153a6360b60f9cfdea5c4b7c02e1e34aad77890eec7fe1a16fb4689c81 +binfiles arch=x86_64-darwinlegacy size=139 bin/x86_64-darwinlegacy/ctangle bin/x86_64-darwinlegacy/ctwill bin/x86_64-darwinlegacy/ctwill-refsort bin/x86_64-darwinlegacy/ctwill-twinx bin/x86_64-darwinlegacy/cweave + bin/x86_64-darwinlegacy/twill name cweb.x86_64-linux category Package -revision 58136 +revision 65877 shortdesc x86_64-linux files of cweb -containersize 116520 -containerchecksum 7f1e4a1f26d23b83a2a01cf61f6ff5624d355a95a20518733df94f4faa8f92a5078d86173e000c87e0417dbd02d56abf9bff2dc2d3b3621d398c1040a34d84a6 -binfiles arch=x86_64-linux size=107 +containersize 157688 +containerchecksum 051804cb61392e6c5e71461cbe442a088989f3a72423904a9a27c7cdea02f7f9df5f0ec95600a2129d6d929d457214a6cb7ec0acab6d4e6355b2dfa04e57b0e5 +binfiles arch=x86_64-linux size=152 bin/x86_64-linux/ctangle bin/x86_64-linux/ctwill bin/x86_64-linux/ctwill-refsort bin/x86_64-linux/ctwill-twinx bin/x86_64-linux/cweave + bin/x86_64-linux/twill name cweb.x86_64-linuxmusl category Package -revision 58136 +revision 65877 shortdesc x86_64-linuxmusl files of cweb -containersize 117428 -containerchecksum 5878ea36656565b93db88cb50b3adfc1a500bb03248b1170e4504caeb433b6c5139808be0e0ba847ef0559a3f4d62f74cb926e7ef2af429d8f4533af934dbde8 -binfiles arch=x86_64-linuxmusl size=112 +containersize 163420 +containerchecksum 791eb45dc2d89ac156c49c6fb967bfcf621d195856a0db9e6b9d7385ee2652321b7486e228c97f05239640c86ff58681912c05e3fa70393b3ee43cf213c8b022 +binfiles arch=x86_64-linuxmusl size=150 bin/x86_64-linuxmusl/ctangle bin/x86_64-linuxmusl/ctwill bin/x86_64-linuxmusl/ctwill-refsort bin/x86_64-linuxmusl/ctwill-twinx bin/x86_64-linuxmusl/cweave + bin/x86_64-linuxmusl/twill name cweb.x86_64-solaris category Package -revision 57938 +revision 65877 shortdesc x86_64-solaris files of cweb -containersize 122120 -containerchecksum e2e75ca95a62c76d0c6d3c99b7ab10c52930894d62cb837019de9391c0816c87b542d034483fb456ee56758f968febf6416a0d029e1d92b6fcfcf1017a92af5d -binfiles arch=x86_64-solaris size=116 +containersize 165744 +containerchecksum f619b7436ebea0f26d30d30b4dc138375bd0d8e2429827ad7f4a51e1f3b95e09619f8ddea6eaa098a7a906c1cf771ad074a3e9bb6f373f6ae0d65321e7c20361 +binfiles arch=x86_64-solaris size=157 bin/x86_64-solaris/ctangle bin/x86_64-solaris/ctwill bin/x86_64-solaris/ctwill-refsort bin/x86_64-solaris/ctwill-twinx bin/x86_64-solaris/cweave + bin/x86_64-solaris/twill name cyber category Package @@ -85062,7 +88456,7 @@ catalogue-version 0.915 name cyrillic category Package -revision 47350 +revision 63613 catalogue latex-cyrillic shortdesc Support for Cyrillic fonts in LaTeX relocated 1 @@ -85073,11 +88467,11 @@ longdesc cover (between them) pretty much every language that is written longdesc in a Cyrillic alphabet. This directory is part of the LaTeX longdesc "required" distribution. depend cyrillic-bin -containersize 15820 -containerchecksum 447f8628641df193b258559435567e5e7f912de6a87688e68676ab683512f09661b2098707fa6ff9544972bdf3a58d81caf946811d3ff8516782062b1a10545c -doccontainersize 924900 -doccontainerchecksum fa2a5ca9c0952b80150e0d2b37f9472981ba3ce45e8ea5cba399551c6cf5a309d8329702494eefa759ca6423fc7df523cdce47eb9e9ecd12a5b15c1ba322ac48 -docfiles size=291 +containersize 15776 +containerchecksum 1b8889d33e5433b32d0b84bd31ef7ea96fe338456ef8e1732ea6c254dfe2f21d3600766b1e51bafa4ddbf0144e8420ad8ba6ad593eaa32c3d45dde99b0b4ec8c +doccontainersize 926868 +doccontainerchecksum b0b1d24d3e8887c5b9c251922157de7cf042845009c07e62fd324ba850dff9f39bc6ebad04ab216ad69070da93f77f68693d1be57cd15b038374f0253329c8fa +docfiles size=301 RELOC/doc/latex/cyrillic/README.md details="Readme" RELOC/doc/latex/cyrillic/changes.txt RELOC/doc/latex/cyrillic/cyinpenc.pdf @@ -85089,8 +88483,8 @@ docfiles size=291 RELOC/doc/latex/cyrillic/ot2cmams.pdf RELOC/doc/latex/cyrillic/ot2cmlh.pdf RELOC/doc/latex/cyrillic/t2lhfnt.pdf -srccontainersize 21448 -srccontainerchecksum 5f19310aa96200cd97eede4308ee7e0de75c06905880879b8fe83c614b63588717e2cff476e4dfa6e32a1a83c5925eeda0bc915d3b1bdf42250ac8523f61c215 +srccontainersize 21412 +srccontainerchecksum 4dc564f475a883cb75ae0fad6b5aecb936c1ab9cdaae857dc7cdfb3d8f06f6534542c36b053cc7b74f455a2646f081060c670b35f1eda5fa69418b1c1f97e5dd srcfiles size=46 RELOC/source/latex/cyrillic/cyinpenc.dtx RELOC/source/latex/cyrillic/cyoutenc.dtx @@ -85212,16 +88606,17 @@ runfiles size=133 catalogue-ctan /macros/latex/required/cyrillic catalogue-license lppl1.3 catalogue-topics cyrillic +catalogue-version 2022-06-01-PL1 name cyrillic-bin category TLCore -revision 53559 +revision 62517 shortdesc Cyrillic bibtex and makeindex depend cyrillic-bin.ARCH containersize 1500 -containerchecksum cb6d1ed18b1e8cf24d0856fc8a8fe8b2e4c2e5889e68521440386c0fcde8226367242c8adee9d4f127cadaa3f4a4ca2693ee501810d243d426fc8a395a49e3a9 -doccontainersize 25592 -doccontainerchecksum e8f1aa0313026995668e491f63171c57841c79187435b8b7ad9e807d2c7b40970b2ec1b14181d6122231b7557fb66c39dca0eec0a877735380d152482865feec +containerchecksum 30d3bdb0f92a0006613dee654714818b6961207029982d62b9933829b3d044bea0b2d9a30d0007dac23c08358a7ada2df9ac25ee92398cb32d47e9c29c503c67 +doccontainersize 32280 +doccontainerchecksum 91da42251e165d17507b37eb48b35e157c75b06fa8822c9717fafd5e7aadc60bfeb084dc30a5ec32df22ae4e69c03c3f00e8a243d187881212ffe62c96b6235b docfiles size=12 texmf-dist/doc/man/man1/rubibtex.1 texmf-dist/doc/man/man1/rubibtex.man1.pdf @@ -85271,16 +88666,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/rubibtex bin/armhf-linux/rumakeindex -name cyrillic-bin.i386-cygwin -category TLCore -revision 53554 -shortdesc i386-cygwin files of cyrillic-bin -containersize 384 -containerchecksum 5da95d053cb49e1782b7a30ffa61b09c14a72a47cf8779c244039c25d848b00b1f2d5c6e2257b69120df8e13b0d46e61c1ed5b28d83ddceeb2d15ae62792ac59 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/rubibtex - bin/i386-cygwin/rumakeindex - name cyrillic-bin.i386-freebsd category TLCore revision 53554 @@ -85542,6 +88927,40 @@ catalogue-license lppl catalogue-topics font font-otf font-type1 catalogue-version 0.03 +name darkmode +category Package +revision 64271 +shortdesc General Dark Mode Support for LaTeX-Documents +relocated 1 +longdesc This package provides an API for template and package +longdesc developers to create dynamic color schemes for light- and +longdesc darkmodes. For those unaware: We refer to dark mode when a +longdesc document has a dark background with a light font and to light +longdesc mode if it has a dark font with a light background. +containersize 1508 +containerchecksum f844ce29d5147d9a558f257bfd1a6c32f2f1de1fcca4f3319d22528da052fc228e61606623820fe078db208509774dfc87dcd82058a2e744e703d03edc0bdec1 +doccontainersize 753688 +doccontainerchecksum db103f2257b3d844592ba12c0e2c22d6ae97e8dc5e47521392ddd59951d9f9a56004d0891f0a5e84d511ec2043f1fa26c4cca4ddfa23ef7abea39637e6d54a99 +docfiles size=243 + RELOC/doc/latex/darkmode/README.md details="Readme" + RELOC/doc/latex/darkmode/darkmode-code.pdf details="Package documentation" + RELOC/doc/latex/darkmode/darkmode-code.tex + RELOC/doc/latex/darkmode/darkmode.pdf + RELOC/doc/latex/darkmode/darkmode.tex +srccontainersize 3624 +srccontainerchecksum 39a760fd973d56c94f60026906597bf74b57ddc8a0bdb913856a06358b849999e7f7c49c54e102160771e599bc3177da5788651f48abaffceb14d9e77465ac0b +srcfiles size=4 + RELOC/source/latex/darkmode/darkmode.dtx + RELOC/source/latex/darkmode/darkmode.ins +runfiles size=1 + RELOC/tex/latex/darkmode/darkmode.sty +catalogue-contact-bugs https://github.com/Rdeisenroth/darkmode-latex-package/issues +catalogue-contact-repository https://github.com/Rdeisenroth/darkmode-latex-package +catalogue-ctan /macros/latex/contrib/darkmode +catalogue-license lppl1.3 +catalogue-topics colour expl3 +catalogue-version 1.0.1 + name dashbox category Package revision 23425 @@ -85639,28 +89058,28 @@ catalogue-version 2.0h name dataref category Package -revision 42883 +revision 62942 shortdesc Manage references to experimental data relocated 1 longdesc The package provides a mechanism that maintains a fixed longdesc symbolic reference to numerical results; such results may vary longdesc as the project proceeds (and hence the project report longdesc develops). -containersize 6868 -containerchecksum 8b76861673fe05785582abbfb50d46ee6beea2cd63bd7f622e2640acce9c88a39e4fbf57b6db7872dc3f3b473d3e33581bb6c93f305e036148efb1c3ad4b6d8f -doccontainersize 247204 -doccontainerchecksum 2d1bb12245c071b8282db3d0aaf198206fe2b8509527ef6e56950464b6f13d20be8381015fa62a1b0c7469e004664182170ba400c7650b38bc597e269f1d173d -docfiles size=68 +containersize 7604 +containerchecksum da099bb462ae2698784097cb04268b039f0900fbe57d77284532c0ef694c50d422436e5e0d8ffdc9442b98c12d52c72629b29f772b0d66f226ebabca579b2249 +doccontainersize 263744 +doccontainerchecksum 6f51ed66ef467438a856ed22a7644d2bc574c789e89025cead65393d701abaee299861873d97c9509522ac7e478a35693e34d2afc0bee3d08d862b11992e4230 +docfiles size=73 RELOC/doc/latex/dataref/README.md details="Readme" RELOC/doc/latex/dataref/dataref-doc.pdf details="Package documentation" RELOC/doc/latex/dataref/dataref-doc.tex -runfiles size=7 +runfiles size=8 RELOC/tex/latex/dataref/dataref.sty catalogue-contact-repository https://github.com/stettberger/dataref catalogue-ctan /macros/latex/contrib/dataref catalogue-license lppl1.3 catalogue-topics label-ref data-manip -catalogue-version 0.6 +catalogue-version 0.7 name datatool category Package @@ -85762,23 +89181,23 @@ catalogue-version 2.32 name datax category Package -revision 57033 +revision 61772 shortdesc Import individual data from script files relocated 1 longdesc This LaTeX package uses pgfkeys to retrieve individual data longdesc points generated in some script. Analogous to how one might longdesc generate graphics in a script and import those graphics into a longdesc LaTeX document. -containersize 1208 -containerchecksum f8eda309dcff2ea8fd827cf3dd5c15ea265105234e33f96e27c14316e5e4183ade4c6a240b174df3564fcc1a4046ba3ada482a6fae653ffb5e43e18682852336 -doccontainersize 189688 -doccontainerchecksum e4257e66220e0048df198d60a963524187d7373ab7394f4b33944251f534f67648110a8cfda588a992500c381470dee55423be6c224a4e3cd08cf4e633bc0d3d -docfiles size=48 +containersize 1256 +containerchecksum 04de65ca5219e0e3b53fd0c0b92fa514bec77be2f889e48ad100f93113f54e738016fdd93ae59d79ae7f4ea31108efb9cbac87a6db010b71008fb17dcfa19900 +doccontainersize 198520 +doccontainerchecksum e1dd35b5dce9a4ea5b1bb9d9db14b8e6b6f8ab1a8f374079c2328862fb231b4eb69a05e1bddac424401d063925b4a75a9994000ee4c36c43e3fa6344badd6f5e +docfiles size=52 RELOC/doc/latex/datax/README.md details="Readme" RELOC/doc/latex/datax/datax-logo.tikz RELOC/doc/latex/datax/datax.pdf details="Package documentation" -srccontainersize 4068 -srccontainerchecksum c47641c49bf9c1dc0e47eb8045920cdd0e519c07eb18efa047fb7c2a6122166a4e8bc793adfd3db8373b77be901dc6cc8501f5bc9dcf895ed3bce3a261b55671 +srccontainersize 4156 +srccontainerchecksum 076509cc39ab41b028cc17551342bcc26cf8bbcd5c12d25d291e2eafb3610d390610d36e917a192b38fd7870c6ddee60a365bfa9711b024c6de2a3494dcc498a srcfiles size=4 RELOC/source/latex/datax/datax.dtx RELOC/source/latex/datax/datax.ins @@ -85788,7 +89207,7 @@ catalogue-contact-repository https://github.com/Datax-package/Datax.sty catalogue-ctan /macros/latex/contrib/datax catalogue-license lppl1.3 catalogue-topics data-import -catalogue-version 1.1.1 +catalogue-version 1.2.0 name dateiliste category Package @@ -85823,25 +89242,25 @@ catalogue-version 0.6 name datenumber category Package -revision 18951 +revision 61761 shortdesc Convert a date into a number and vice versa relocated 1 longdesc This package provides commands to convert a date into a number longdesc and vice versa. Additionally there are commands for longdesc incrementing and decrementing a date. Leap years and the longdesc Gregorian calendar reform are considered. -containersize 3328 -containerchecksum f87518683c9820e816f33e535bc8e5d7e31fcda124178593f9635b040151d1f43f6eeb4d69ca974b847c97efcf19fa94f571d5534dfdc8ac0e40d711d26190b3 -doccontainersize 94372 -doccontainerchecksum b9c156b19bd6abbb3f996495dcda633172f8e559add744ebe25bb58070ba06bc233c2dda54c93415da14aecc30d2888241bf9b80c0dc5922b46cd3ee05865701 -docfiles size=42 - RELOC/doc/latex/datenumber/README.txt details="Package README" language="en" - RELOC/doc/latex/datenumber/doc.pdf details="Package documentation" language="en" - RELOC/doc/latex/datenumber/doc.tex - RELOC/doc/latex/datenumber/docgerman.pdf details="Package documentation" language="de" - RELOC/doc/latex/datenumber/docgerman.tex -srccontainersize 5664 -srccontainerchecksum ffeea9042501496e815db5c90cf8a99931fe96bb8dbae6e2551994242336892567c140ed352ddf962d1f144844960eaf03187aec6869780a2c3e218446940174 +containersize 3308 +containerchecksum 5c7d23f949684000d0e38855e11e4869433c33f82fc42da0568d4b74fb0e69fe3fbcd5f72516222059ee446938144c18b10552290e24e077f2e624286e729d28 +doccontainersize 307264 +doccontainerchecksum 18f2573f8c02685d20085c31384b75dd1ab5a47a5bb2b9dcda036a7cd1ecec80db175a674c1f148cd51a078721ed88a3c9b7a0915acd7c023c02ea9a16e2a1f2 +docfiles size=105 + RELOC/doc/latex/datenumber/README.txt details="Package README" + RELOC/doc/latex/datenumber/datenumber-english.pdf details="Package documentation (English)" + RELOC/doc/latex/datenumber/datenumber-english.tex + RELOC/doc/latex/datenumber/datenumber-german.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/datenumber/datenumber-german.tex +srccontainersize 5704 +srccontainerchecksum 7835857f1c4f3e59918fe9ecc903dc09139191b050b1b0166e4e1fbe4a5d0c95f33b8591f30012ef5d69af324e8a71cf24b39893029519c13e13d8044b191261 srcfiles size=6 RELOC/source/latex/datenumber/datenumber.dtx RELOC/source/latex/datenumber/datenumber.ins @@ -85854,9 +89273,42 @@ runfiles size=8 RELOC/tex/latex/datenumber/datenumbergerman.ldf RELOC/tex/latex/datenumber/datenumberspanish.ldf catalogue-ctan /macros/latex/contrib/datenumber -catalogue-license lppl +catalogue-license lppl1.2 catalogue-topics date-time -catalogue-version 0.02 +catalogue-version 0.03 + +name datestamp +category Package +revision 61719 +shortdesc Fixed date-stamps with LuaLaTeX +relocated 1 +longdesc Add fixed date-stamps with simple and customizable aux files +longdesc and LuaLaTeX. As long as the aux file is not deleted/modified +longdesc the date-stamp generated with this package remains intact. +containersize 1552 +containerchecksum 558e8ec60ec317f8342efd63d0146b92e43ca37a772b8fb200a40234d48a71e5374cb3f3f15bfdef129fd1fee8ed27491bcb8b69ae2b681abee72a3dcb8f18af +doccontainersize 114964 +doccontainerchecksum d9627cbb294f0bcb96b019d3497b12ecd4b4eb656a1dfd70d1adc6cc4cd217bed9d4f9e209497c683f925cff4063d759b02b44bfc1f38421a9044aa8ef8bc988 +docfiles size=32 + RELOC/doc/lualatex/datestamp/README.txt details="Readme" + RELOC/doc/lualatex/datestamp/datestamp-example.pdf details="Example of use" + RELOC/doc/lualatex/datestamp/datestamp-example.tex + RELOC/doc/lualatex/datestamp/datestamp.pdf details="Package documentation" +srccontainersize 3452 +srccontainerchecksum 3afaedee82a4e4c6f92f465fa59ccb29976272a75aeb523d8c161b07bbe313b5e79dfd96195d0426926a3ddb3117944ab21838d085e1cd59256bae31419e243d +srcfiles size=3 + RELOC/source/lualatex/datestamp/datestamp.dtx + RELOC/source/lualatex/datestamp/datestamp.ins +runfiles size=1 + RELOC/tex/lualatex/datestamp/datestamp.sty +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=datestamp +catalogue-contact-home https://puszcza.gnu.org.ua/projects/datestamp/ +catalogue-contact-repository https://git.gnu.org.ua/datestamp.git/ +catalogue-contact-support mailto:datestamp-help@gnu.org.ua +catalogue-ctan /macros/luatex/latex/datestamp +catalogue-license gpl3+ fdl +catalogue-topics luatex date-time +catalogue-version 0.3 name datetime category Package @@ -85952,7 +89404,7 @@ catalogue-version 2.60 name datetime2 category Package -revision 58590 +revision 63102 shortdesc Formats for dates, times and time zones relocated 1 longdesc This package provides commands for formatting dates, times and @@ -85966,10 +89418,13 @@ longdesc independently maintained and installed modules. The longdesc datetime2-calc package uses the pgfcalendar package (part of longdesc the PGF/TikZ bundle). This package replaces datetime.sty which longdesc is now obsolete. -containersize 8832 -containerchecksum 88aae0979b3ca9688aff9c5840c93a626e4d652f8fce664e70132dfb3413e8045f816d54ac6aac4477292f655bcb378f89f0f4f09465f2ae536520e3cf68c128 +depend etoolbox +depend tracklang +depend xkeyval +containersize 8852 +containerchecksum 7f2ad65f95e3881e5016647bff85b10138faaa7d26d097bdce0ec7b30cc0d913a43c2a45b0caa69a6669e54725122cf1a86117d0d4f543caba67058423af7f62 doccontainersize 1017512 -doccontainerchecksum 5baa0ef9d3d1e6f0f375ce6dca2f83681d8dca9f3d027c60b705f005a22e87dc1d952a0f4f8d9fa50f0bb887794a8ad89e28ad89f8a99ceea78c97659a4a656f +doccontainerchecksum d43970aea6c7971ed6a3564a6681caea0e0f5606607496d9ec51d6c2fa741dd6c28754c9e9f06cde0ad1a79280b53629eb427faf820d00549468a650cbd0eac8 docfiles size=265 RELOC/doc/latex/datetime2/CHANGES RELOC/doc/latex/datetime2/README details="Readme" @@ -85988,8 +89443,8 @@ docfiles size=265 RELOC/doc/latex/datetime2/samples/datetime2-sample-styles.tex RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.pdf RELOC/doc/latex/datetime2/samples/datetime2-sample-xe.tex -srccontainersize 51628 -srccontainerchecksum c99ec68e3a0fcab5c3c1a3f09ab1553b299a79719c6963facf8d371d8f71488049bda47263f6b99244076d914ba85ffb449b014935654c93ee189fdd51456c3e +srccontainersize 51632 +srccontainerchecksum 511c10e67c7d77ee10d8d75704628313a1598636ce82a5ce114942854b3a9d2da237ed12fdab986f13b04ce3c2123933db91b850360b309aa52305575a7cf2d4 srcfiles size=79 RELOC/source/latex/datetime2/datetime2.dtx RELOC/source/latex/datetime2/datetime2.ins @@ -86604,22 +90059,22 @@ catalogue-version 1.1 name datetime2-icelandic category Package -revision 47501 +revision 65213 shortdesc Icelandic language module for the datetime2 package relocated 1 longdesc This module provides the "icelandic" style that can be set longdesc using \DTMsetstyle provided by datetime2.sty. This package is longdesc currently unmaintained. Please see the README for the procedure longdesc to follow if you want to take over the maintenance. -containersize 2552 -containerchecksum 50b5b4a4dbe38b669929637c9b22517b960ac0eab3486705efbd92e57e50c7c3a7f46c0d2ab0048a1c382f052589f091724828e2139d8796408edb899cac2e50 -doccontainersize 80808 -doccontainerchecksum 148963ad2651a79371d8f218c763c90c96d28d18d84c2f57e76ad64b456418a44d15983fd1b1622e33c6ef256f6457b6b33090b7c57fd3c37b8dbc8a0754c09b -docfiles size=21 +containersize 2532 +containerchecksum 020254357b8f32dc146018f3eca4080f239203128671d8e99b712dd038e39bfbdabbabc2e62bf0782a86a3f5c6742d8ae130dd589cc6ea28f87a3ebdc9e9d994 +doccontainersize 73388 +doccontainerchecksum e3cd7b3a0d8ef17d5b5baee057a0b5c4a445c3b8ebd2894b27d5dea9e7373fe4798bbd48b83a1a96704661b935c3196f52ee8b21d624a91ad75ec51e5a246aef +docfiles size=20 RELOC/doc/latex/datetime2-icelandic/README details="Readme" RELOC/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf details="Package documentation" -srccontainersize 4784 -srccontainerchecksum 83cc155aa3cba3aff874762490d6cb9f85c0218c7209ff6ce304c16f04ef28a0b30a5978d08ed2e1ff24a2a81359387185e2ba16d45d8f83fdc8c81bdf5b5df4 +srccontainersize 4772 +srccontainerchecksum 4b9c797ea798156c88f4e4350e28ce3a63111a6c8cbf7399676ccee60f117196cb32dda2bc56b7a2386756afbe6e5207d83e59405d8e0f96f59f85f2359b80be srcfiles size=5 RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.dtx RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.ins @@ -86630,7 +90085,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-icelandic catalogue-license lppl1.3 catalogue-topics date-time multilingual -catalogue-version 1.1 +catalogue-version 1.2 name datetime2-irish category Package @@ -87361,9 +90816,47 @@ catalogue-license lppl1.3 catalogue-topics float catalogue-version 1.0a +name dbshow +category Package +revision 61634 +shortdesc A package to store and display data with custom filters, orders, and styles +relocated 1 +longdesc The package provides four core functions: data storage and +longdesc display data filtering data sorting data display All data is +longdesc saved once and then you can display these data with custom +longdesc filters, orders and styles. The package can be used, for +longdesc example, to record and display something you'd like to review, +longdesc maybe the question you always answered incorrectly or some +longdesc forgettable knowledge. But obviously, the package is much more +longdesc powerful and extensible for more interesting tasks depending on +longdesc the individual. +containersize 7092 +containerchecksum 339bd686c658c462c9da56018234c6a31e72a3def962798772bed17bd453efa94c5f8e2d72a2f033714eaabbde8b45bbeed07d302e311d65a27c37f8ef177a2f +doccontainersize 590640 +doccontainerchecksum 4d4ff36d121b950d7569f4ae8e7fee7e0a4790f61e8d2b58c136644d0ce455e8b8f4c1857c8df68d2f230016e5ea28a35047234ee101b3f949d1598f4e15e52c +docfiles size=149 + RELOC/doc/latex/dbshow/README.md details="Readme" + RELOC/doc/latex/dbshow/dbshow.pdf details="Package documentation" language="zh,en" +srccontainersize 29152 +srccontainerchecksum 189d3f8bd131bb3fb8bc7481215fa670001ec9bbe20a4d1ec99a9864005b44fe9fb582ad5462ef23f62ec538fe8d2dd9136cf79e94756c4b6e02d644e2d66a1d +srcfiles size=42 + RELOC/source/latex/dbshow/dbshow.dtx + RELOC/source/latex/dbshow/dbshow.ins +runfiles size=10 + RELOC/tex/latex/dbshow/dbshow.sty +catalogue-contact-bugs https://github.com/ZhiyuanLck/dbshow/issues +catalogue-contact-development https://github.com/ZhiyuanLck/dbshow/pulls +catalogue-contact-home https://github.com/ZhiyuanLck/dbshow +catalogue-contact-repository https://github.com/ZhiyuanLck/dbshow/releases +catalogue-contact-support https://github.com/ZhiyuanLck/dbshow/issues +catalogue-ctan /macros/latex/contrib/dbshow +catalogue-license lppl1.3c +catalogue-topics data-disp data-prep data-sel expl3 +catalogue-version 1.5 + name dccpaper category Package -revision 57522 +revision 61763 shortdesc Typeset papers for the International Journal of Digital Curation relocated 1 longdesc The LaTeX class ijdc-v14 produces camera-ready papers and @@ -87373,21 +90866,21 @@ longdesc legacy class ijdc-v9 is provided for papers and articles longdesc written for volumes 9-13. The similar idcc class can be used longdesc for submissions to the International Digital Curation longdesc Conference, beginning with the 2015 conference. -containersize 25252 -containerchecksum 02cf56e0c9d4450382336869d2edc09e543b119b68ff365c52049a7558297710e4089adb585124396d03745ce69b35d230091ee2c7d4e76011e78f6188cc9b9f -doccontainersize 302260 -doccontainerchecksum 2ed2fcfd16373b2af10f91169b2358b787d66af88374600290d362ca9da9db18dafe2cfbe4b2d057ff88b758b70572197ac037f834b02555313ee759af65d6cc -docfiles size=80 +containersize 24808 +containerchecksum 98648e229632afa6503388edbf7418b2f92fb46351bdedf7d678132be91b3740927ce4c17ccb2ddbee6e24cfc0810b415c013cb61aa81db986efb5daef311aed +doccontainersize 286284 +doccontainerchecksum e9809887d68592513d5d9992add687dc7fe82e7570fcbc46cf582f66152c94d5f9729735f0f5714245421556b470fcf0f6cb0129017fd79df20e96fc0f4548e2 +docfiles size=88 RELOC/doc/latex/dccpaper/README.md details="Readme" RELOC/doc/latex/dccpaper/dccpaper-apacite.bib RELOC/doc/latex/dccpaper/dccpaper-biblatex.bib RELOC/doc/latex/dccpaper/dccpaper.pdf details="Package documentation" -srccontainersize 27332 -srccontainerchecksum 16764f191263cd3b7ce5a4c128f61b60dff4920b65254202fb0a996e80ca94b206131d9279037fd4948a14fad1f1f007f6e7683373912c7d03ff6626ca3d0db8 -srcfiles size=27 +srccontainersize 26584 +srccontainerchecksum da0843ea5f46a187b0d454b5a421699865086af684512a2202aded1e50c240e1345130753fff0a779794d5897f32be793006802c59a7aa741a0f53b4ac002f91 +srcfiles size=26 RELOC/source/latex/dccpaper/Makefile RELOC/source/latex/dccpaper/dccpaper.dtx -runfiles size=28 +runfiles size=27 RELOC/tex/latex/dccpaper/dccpaper-base.sty RELOC/tex/latex/dccpaper/dccpaper-by.eps RELOC/tex/latex/dccpaper/dccpaper-by.pdf @@ -87399,7 +90892,7 @@ catalogue-contact-repository https://github.com/DigitalCurationCentre/dccpaper catalogue-ctan /macros/latex/contrib/dccpaper catalogue-license lppl1.3c cc-by-4 catalogue-topics journalpub confproc class -catalogue-version 2.1 +catalogue-version 2.3 name dcpic category Package @@ -87462,7 +90955,7 @@ catalogue-version 0.2 name de-macro category Package -revision 57349 +revision 61719 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 @@ -87472,10 +90965,10 @@ longdesc running de-macro on it. De-macro will expand macros defined in longdesc \(re)newcommand or \(re)newenvironment commands, within the longdesc document, or in the document's "private" package file. depend de-macro.ARCH -containersize 7920 -containerchecksum 558a55b14822cda4cfaa05511bbd6030049145916669b699795827181462e628d0a84baf087b8d56e3dccb353d17f581af9bc1662506878124e5cfaddbd97b9a -doccontainersize 57104 -doccontainerchecksum af0a7a463c7a9623050a3fe73782076965eefb58dec17752c80e35a647b5a7a6b354a1dea89ba03b503eef0faffbd2f134a6e5666f4c68665d322bf3b77922d6 +containersize 7924 +containerchecksum 8952325be56b193440dd24f0e6847ed1a9bea4cf8aed86afc7b7ff0a0f6d61130320834e679d55a020d8114d555733a92e645eea8fa1d3afabeb8cac5ef097ea +doccontainersize 57108 +doccontainerchecksum 079dfa97d55a2989e300856e7877591bd041b239454a0a0f72ed20e329fe2f9ebbbff22497eec1b622e2679316242a845eacab5716e01e74c5c810fb357c1636 docfiles size=17 texmf-dist/doc/support/de-macro/README details="Readme" texmf-dist/doc/support/de-macro/user-guide.pdf details="Package documentation" @@ -87486,7 +90979,7 @@ catalogue-contact-home https://cs-web.bu.edu/faculty/gacs/software/de-macro/ catalogue-ctan /support/de-macro catalogue-license other-free catalogue-topics macro-supp -catalogue-version 1.4 +catalogue-version 1.4.1 name de-macro.aarch64-linux category Package @@ -87524,15 +91017,6 @@ containerchecksum 6dc4b814f0617704425967d9fccc0c113ca0a8d33fd6b20dcd90c51d3944c6 binfiles arch=armhf-linux size=1 bin/armhf-linux/de-macro -name de-macro.i386-cygwin -category Package -revision 17399 -shortdesc i386-cygwin files of de-macro -containersize 340 -containerchecksum 2144b76c876c56e78a830be05a0edc721a286547e53d9c8063b5e57711dbfe00246d86143ee2b57d4bbba808e12d06c34cd09bbc54336ac5c5871f3d606b1cd1 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/de-macro - name de-macro.i386-freebsd category Package revision 17399 @@ -87578,14 +91062,14 @@ containerchecksum f226fa7195df1aeeb848648987dfbe98d723ca4f1fc3be738c8a2e63d3d4f5 binfiles arch=universal-darwin size=1 bin/universal-darwin/de-macro -name de-macro.win32 +name de-macro.windows category Package -revision 17428 -shortdesc win32 files of de-macro -containersize 684 -containerchecksum e521155458db58da2127c2e42408e8568c739ea2b09f6dba3f55f71a0282d84b55bcc1fe91cae73f71cc25f17e3ffb6ff25c16f3b21767daada9e13126fc52db -binfiles arch=win32 size=1 - bin/win32/de-macro.exe +revision 65891 +shortdesc windows files of de-macro +containersize 2308 +containerchecksum ac750c3ee54a13a067b17eab05075daae37aba9d268ae917fdefe53e6220f8dd7ad4b0ea8593af116284bd477fc809494f6fa9494849ccae90133921a6227959 +binfiles arch=windows size=2 + bin/windows/de-macro.exe name de-macro.x86_64-cygwin category Package @@ -87632,6 +91116,43 @@ containerchecksum 6ce5e65bfe98003873240413f3dda96a87d553d16b68324ee379689cf5132e binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/de-macro +name debate +category Package +revision 64846 +shortdesc Debates between reviewers +relocated 1 +longdesc This package helps to organize debates between multiple +longdesc reviewers of a paper within the text. +depend listings +depend listingsutf8 +depend pdfcol +depend tcolorbox +depend xcolor +depend xkeyval +containersize 1688 +containerchecksum 88f9ff3f473dfbd84509adfe4491d15b7c20229361afde9cbce382be0441378cd6bb7d306c9b0a424dc065f34ab2d86eca8a0334d00fd3a5bae513776c418815 +doccontainersize 285712 +doccontainerchecksum ba5e90ecc8c1733cdb78233099cdc95e09d02786df11606b3f823f2b1b60934cd2881c873ad7afa192ee1b0ff5ad91121896cb30e7405ee3ae9bc960d26e7f9c +docfiles size=74 + RELOC/doc/latex/debate/DEPENDS.txt + RELOC/doc/latex/debate/LICENSE.txt + RELOC/doc/latex/debate/README.md details="Readme" + RELOC/doc/latex/debate/debate.pdf details="Package documentation" +srccontainersize 3084 +srccontainerchecksum b9c0b94eea82d7b684aa358788a5ee3cb9709738137827b7a4f70ddd0d02ad92b6feecf03d0de7dd08c1ab233f17db3c973cfafef98134be33a41d6a8d7c4da6 +srcfiles size=3 + RELOC/source/latex/debate/debate.dtx + RELOC/source/latex/debate/debate.ins +runfiles size=1 + RELOC/tex/latex/debate/debate.sty +catalogue-also fixmetodonotes +catalogue-contact-home https://github.com/yegor256/debate +catalogue-contact-repository https://github.com/yegor256/debate +catalogue-ctan /macros/latex/contrib/debate +catalogue-license mit +catalogue-topics notes +catalogue-version 0.2.1 + name decimal category Package revision 23374 @@ -87659,7 +91180,7 @@ catalogue-topics typesetting name decision-table category Package -revision 57094 +revision 60673 shortdesc An easy way to create Decision Model and Notation decision tables relocated 1 longdesc The decision-table package allows for an easy way to generate @@ -87673,26 +91194,26 @@ longdesc environment. Furthermore, this allows labels and captions to be longdesc added seamlessly. It is also possible to place multiple DMN longdesc tables in one table/figure environment. The package relies on longdesc nicematrix and l3keys2e. -containersize 1672 -containerchecksum 2e89be9bbbc6a6f0fef9f3eb3caa63a6f8c6b749df1057f712d5153a78d4b15542f1fb30d3d5f5078d99a1b45f4d4e92be44d7c631eb86e349e56b03dcb4c93b -doccontainersize 108752 -doccontainerchecksum cdfa48c2835b48f5b0f7d454a4255128613b0f3f9bd2d750b8107c7d8eef1a36aaca3ff6aecc6cfbb1572fd2dca109628d94b4b9419ca44d91cd1ddb12326cde +containersize 2080 +containerchecksum 8a0bbe49c3ef76a7a60fff1778bfc06c2e11521e028bfcb190c85e8a38932bb1f2a97c26293a2965ee8d2e4e6d2cdda54dd2954881ac9b1b8e2506529af1ec97 +doccontainersize 107624 +doccontainerchecksum d5b9301a4308a4e2709b4c82a621fbea2af0cbd767252446f698f269b3ef131502d3db3aaec6d192642b154b546124326280ca4c1331dce64b36517db51c3bc4 docfiles size=29 RELOC/doc/latex/decision-table/README details="Readme" RELOC/doc/latex/decision-table/decision-table.pdf details="Package documentation" -srccontainersize 4736 -srccontainerchecksum 12f617e0aeedfae0cfd2e2a1fadad55cbfaeb51abdd2faea829fb04c47edae811eacef4a7480cf46533c3a445eadf8a9090dc47aef0d656a3e204eb6f19a26bb -srcfiles size=5 +srccontainersize 5920 +srccontainerchecksum c24db9cf19bf41d714d643d2be4bad5e339ba8f57175186793db0ae03b941ddfcc3584061ec4ef2aa2de550103346381d31c19a054d428210b35ef083866ba28 +srcfiles size=7 RELOC/source/latex/decision-table/decision-table.dtx RELOC/source/latex/decision-table/decision-table.ins -runfiles size=1 +runfiles size=3 RELOC/tex/latex/decision-table/decision-table.sty catalogue-contact-bugs https://gitlab.com/Vadevesi/dmn-tex/-/issues catalogue-contact-repository https://gitlab.com/Vadevesi/dmn-tex/ catalogue-ctan /macros/latex/contrib/decision-table catalogue-license lppl1.3c catalogue-topics diagram table planning expl3 -catalogue-version 0.0.3 +catalogue-version 0.0.4 name decorule category Package @@ -87755,7 +91276,7 @@ catalogue-topics german hyphenation name dehyph-exptl category Package -revision 58212 +revision 66390 shortdesc Experimental hyphenation patterns for the German language relocated 1 longdesc The package provides experimental hyphenation patterns for the @@ -87769,13 +91290,13 @@ longdesc reformierten Rechtschreibung ab und konnen mit den Paketen longdesc Babel und hyphsubst aus dem Oberdiek-Bundel verwendet werden. depend hyph-utf8 depend hyphen-base -execute AddHyphen name=german-x-2021-02-26 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2021-02-26.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= -execute AddHyphen name=ngerman-x-2021-02-26 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2021-02-26.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= -containersize 129340 -containerchecksum ed2a3c4d91ecc125ecc2179594e66b5bbe66bb806c1b232ae1b71fdd0d29152a2d28e3dc6dbb2e1724650b8b8cb67e8c8bdf5b7506357207ba61c636768fb8c5 -doccontainersize 137796 -doccontainerchecksum e40955db986b94bb9bbbbf9daaf6a12d2898ae736741fb0a5626755b55908b056a2b4dbc1d87e9681201d7e45c99297393d6e1d2de17d135d8d74c732106897a -docfiles size=54 +execute AddHyphen name=german-x-2023-03-06 synonyms=german-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehypht-x-2023-03-06.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= +execute AddHyphen name=ngerman-x-2023-03-06 synonyms=ngerman-x-latest lefthyphenmin=2 righthyphenmin=2 file=dehyphn-x-2023-03-06.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= +containersize 134340 +containerchecksum 2dd98977dc31445cd981dda46f289a93b4340406801db929c21e8d08300b17745cda637f6b40ccbd2a02a0ebafa980fd9c1591b8f7beffe3fa029bf8c82d2eee +doccontainersize 145172 +doccontainerchecksum c28f49469c8a2bad8fbe34ca1a0df6441649edb96c19d9482fd2140068447d86716911534cff181fddcf784c8e80a20eb1c952b2b9c323df7725b46d950c7b4c +docfiles size=56 RELOC/doc/generic/dehyph-exptl/CHANGES RELOC/doc/generic/dehyph-exptl/INSTALL RELOC/doc/generic/dehyph-exptl/LICENSE.data @@ -87784,20 +91305,20 @@ docfiles size=54 RELOC/doc/generic/dehyph-exptl/dehyph-exptl.bib RELOC/doc/generic/dehyph-exptl/dehyph-exptl.pdf details="Package documentation" language="de" RELOC/doc/generic/dehyph-exptl/dehyph-exptl.tex -runfiles size=197 - RELOC/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.pat - RELOC/tex/generic/dehyph-exptl/dehyphn-x-2021-02-26.tex - RELOC/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.pat - RELOC/tex/generic/dehyph-exptl/dehypht-x-2021-02-26.tex - RELOC/tex/generic/dehyph-exptl/dehyphts-x-2021-02-26.pat - RELOC/tex/generic/dehyph-exptl/dehyphts-x-2021-02-26.tex -catalogue-contact-home http://projekte.dante.de/Trennmuster/WebHome +runfiles size=206 + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2023-03-06.pat + RELOC/tex/generic/dehyph-exptl/dehyphn-x-2023-03-06.tex + RELOC/tex/generic/dehyph-exptl/dehypht-x-2023-03-06.pat + RELOC/tex/generic/dehyph-exptl/dehypht-x-2023-03-06.tex + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2023-03-06.pat + RELOC/tex/generic/dehyph-exptl/dehyphts-x-2023-03-06.tex +catalogue-contact-home https://projekte.dante.de/Trennmuster/WebHome catalogue-contact-repository https://repo.or.cz/w/wortliste.git catalogue-contact-support mailto:trennmuster@dante.de catalogue-ctan /language/hyphenation/dehyph-exptl catalogue-license mit lppl catalogue-topics hyphenation german -catalogue-version 0.7 +catalogue-version 0.9 name dejavu category Package @@ -88563,63 +92084,97 @@ catalogue-ctan /macros/latex/exptl/delimtxt catalogue-license lppl catalogue-topics foreign-import +name democodetools +category Package +revision 64314 +shortdesc Package for LaTeX code documentation +relocated 1 +longdesc This is 'yet another doc/docx/doc3' package for LaTeX code +longdesc documentation. +containersize 7628 +containerchecksum f1c15d50ff6078ecfb012e5235736785aaed4cb59ebb8f4d54c06865d5299b7b32ab436b79671d68c8557b12de65cb50f162424affb7a91aefd4fe4dfefae04f +doccontainersize 354068 +doccontainerchecksum ac49187b57e75bcad5d70960711b5a34162a7c97b237a1fed19d08089f3b7abdd7db9ea24368b8f0f2e9e4124c5f8832ea0570d8f37e002d00ec7007c784386c +docfiles size=98 + RELOC/doc/latex/democodetools/README.md details="Readme" + RELOC/doc/latex/democodetools/democodetools.pdf details="Package documentation" + RELOC/doc/latex/democodetools/democodetools.tex +runfiles size=8 + RELOC/tex/latex/democodetools/democodelisting.sty + RELOC/tex/latex/democodetools/democodetools.sty +catalogue-contact-bugs https://github.com/alceu-frigeri/democodetools/issues +catalogue-contact-repository https://github.com/alceu-frigeri/democodetools +catalogue-ctan /macros/latex/contrib/democodetools +catalogue-license lppl1.3c gpl +catalogue-topics doc-supp +catalogue-version 1.0.1beta + name denisbdoc category Package -revision 56664 +revision 66137 shortdesc A personal dirty package for documenting packages relocated 1 longdesc A personal dirty package for documenting packages. -containersize 15044 -containerchecksum 636537275629ba01fe78b5a189e94845898555715ddc879a3558539016e9cbc814ea74d6eed0cc31e42d8062e6ba6c6bb5c00064a14644c236a3c4f48f688e3f -doccontainersize 1184 -doccontainerchecksum 6e1715fe7ed2c3d0091688ffa4e0e2245a838063a896334727ea87bad566771fa93c66cd0580c3ce1980b217cdf5e6bfba36b77d10d19ea55afe4e8fd92db8be -docfiles size=3 +containersize 15584 +containerchecksum 43bbcb7f73c1ba704fef0754a4d79c99b45c99c7ff3b06f70db1c0c922734f9c3bc973841b6c1ffe6879324f935e936ab396aeb2d2fce1bce029b6b0379882d0 +doccontainersize 14468 +doccontainerchecksum 4a0572e776d2b00d088bdcf5e65c94c15d644182a5ab8284a6b16e9ca795ad95ab89448954dfe5aeaacb986a012da0f1abccde7df35f4619a6ad5dc633facf96 +docfiles size=7 RELOC/doc/latex/denisbdoc/README.md details="Readme" RELOC/doc/latex/denisbdoc/denisbdoc-chng.xdy + RELOC/doc/latex/denisbdoc/denisbdoc.pdf RELOC/doc/latex/denisbdoc/denisbdoc.xdy -srccontainersize 21392 -srccontainerchecksum 89abdd37bda49536437063229346ea70655211716ebcc0798a4df87d49df9a2fb38f201e0b80e8d3748a2d847ccc2ce320c29d71f9922d5f2932eb07de3c5645 -srcfiles size=21 +srccontainersize 22704 +srccontainerchecksum f173f64219c4ab4194cbfb091273311da6963f09995fb2d751302c356613bee2bd4a874a35dbe1e99b995a5d50d9803025e8861947dedf77fa990a5f601f646f +srcfiles size=23 RELOC/source/latex/denisbdoc/denisbdoc.dtx -runfiles size=15 +runfiles size=16 RELOC/tex/latex/denisbdoc/denisbdoc.sty catalogue-ctan /macros/latex/contrib/denisbdoc catalogue-license lppl1.3c catalogue-topics doc-supp -catalogue-version 0.9.1 +catalogue-version 0.9.4 name derivative category Package -revision 55890 +revision 63850 shortdesc Nice and easy derivatives relocated 1 -longdesc This package provides a set of commands \NewOdvVariant, -longdesc \NewPdvVariant etc. that can be used to define derivatives. -longdesc Each derivative comes with a great number of options that tweak -longdesc the derivative's format to your liking. The following types of -longdesc derivatives come readily defined: \odv Ordinary derivative, -longdesc \pdv Partial derivative, \fdv Functional derivative, \mdv -longdesc Material derivative, \adv Average rate of change, \jdv -longdesc Jacobian. -containersize 6972 -containerchecksum afb3a5e900dd77e4d262320485ef0526c362415cf68e2b0d199c388980211a8c21caef3789fdfe348f290563373823fad4e3881ca3bb11f0974a30fe49f6ecc3 -doccontainersize 198008 -doccontainerchecksum 800dbd742c60548ddab9d66cd97e142b389f81f3719ca34c6027d69ccae2b790480261eb984c1bf3d8775eaab29f607ebfa2eac6d778f36c999f083cf7ded323 +longdesc Typesetting derivatives and differentials in a consistent way +longdesc are clumsy and require care to ensure the preferred formatting. +longdesc Several packages have been developed for this purpose, each +longdesc with its own features and drawbacks, with the most ambitious +longdesc one being diffcoeff. While this package is comparable to +longdesc diffcoeff in terms of features, it takes a different approach. +longdesc One difference is this package provides more options to tweak +longdesc the format of the derivatives and differentials. However, the +longdesc automatic calculation of the total order isn't as developed as +longdesc the one in diffcoeff. This package makes it easy to write +longdesc derivatives and differentials consistently with its predefined +longdesc commands. It also provides a set of commands that can define +longdesc custom derivatives and differential operators. The options +longdesc follow a consistent naming scheme making them easy to use and +longdesc understand. +containersize 8456 +containerchecksum 67e5c2a148105051ca882b70d2f3f9c63a06e2f34bb72b84b13bf225a7583bcf919c525890071e3ffe3bbaa0bbc616b8fc62ba050d1c910fceb161131a6fb3a9 +doccontainersize 199584 +doccontainerchecksum 8e2986eda21c8688feaa0f659bd79a8f8f2931381f0dad7fbd055dbf98d8e8fb7c1724df8d2d081ae0ec45781c7eab10edf01535076d28830fef9aff5d4452f4 docfiles size=72 RELOC/doc/latex/derivative/README.md details="Readme" RELOC/doc/latex/derivative/derivative.pdf details="Package documentation" RELOC/doc/latex/derivative/derivative.tex -runfiles size=11 +runfiles size=12 RELOC/tex/latex/derivative/derivative.sty catalogue-also diffcoeff +catalogue-contact-repository https://github.com/sjelatex/derivative catalogue-ctan /macros/latex/contrib/derivative catalogue-license lppl1.3 catalogue-topics maths expl3 -catalogue-version 0.98 +catalogue-version 1.2 name detex category TLCore -revision 57972 +revision 66186 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 @@ -88629,9 +92184,9 @@ longdesc \includeonly commands. The author now considers this program to longdesc be "retired" and Piotr Kubowicz's OpenDetex as its successor. depend detex.ARCH containersize 592 -containerchecksum 869c42ec791b3a9dfc2c65b7081e52dabc4adcf8a95f1fb01362be7270ec9cf294bec7b41f9ce79a22d7708f08df03466fb3e1168ac4a4397580324dff3ad94f -doccontainersize 21848 -doccontainerchecksum 25abd181e5acf88a0984d31bb1d4d8ead50efd5c71720ce1903f54e2784ec5d1f185e5e89ff0a7efad6a35a0178efa22041e6be46c5da6b79c050f1e45e83e63 +containerchecksum e258d80d1509831132c4f70df81b8e93cfc9d92ee74c5d39e7f35bd4f71a3eb93fe3594afbd5ab0e33cf0b6f45c816506e32ca8f41427f3c3fe661f3086100d1 +doccontainersize 21900 +doccontainerchecksum 3d5a3b371e007bda61441460479a208062fd0d477d1fc9ab9a6764c1969fd383acec9e336e8d0b16aab5606444f5d87335320e010657cf088e9caeb18d6dddf5 docfiles size=8 texmf-dist/doc/man/man1/detex.1 texmf-dist/doc/man/man1/detex.man1.pdf @@ -88641,145 +92196,136 @@ catalogue-topics plain-text obsolete name detex.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of detex -containersize 46364 -containerchecksum 8c85cd10e5addc94ffb8f1daec2b1b5057200b57ca3a13a6f7987cf3ef49caa384a14af764f44f102b95653a5f08380b6619637914908cdbb60601b199a47c2e +containersize 46664 +containerchecksum 764c0369642a4ae08c812803e64ab1f4facab072e6983d1a48f91c4e4cefeabbed414cc57fe9cb479a542189e45cc8308d55ea485b4840a8cb052a164bf194a6 binfiles arch=aarch64-linux size=31 bin/aarch64-linux/detex name detex.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of detex -containersize 49080 -containerchecksum bedabd34a838b2771c9b71a7afe9007e5e3d1e9a7be1426338ab4be55f03e146f6783ce5cf8e0c1018b9c69a0ee1912b4c1f36de3d6bf144b5b08feaaac68a2e +containersize 49376 +containerchecksum d2277e902675ec63f49af86938347f16c066da5e7bb6ec7516a15b3dcbc401d8b963d7a406bfd4d0ed4f0376c5088aa039ee943348c6cfef53dc42f6a33257b4 binfiles arch=amd64-freebsd size=30 bin/amd64-freebsd/detex name detex.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of detex -containersize 43884 -containerchecksum 40595956bbe09fe274d7fdefa8d9e8cbb6d00bdc758df02a34c45f2b92fea69ed15e7b642cc73ac1c41594539af7d7d1ca3f22af82a7828e4febffed081e4021 +containersize 44048 +containerchecksum 47dd3c61ca926a24780a6f418fdcb4183efd039be2d57e7897c5be2197c247e7c33caebe06a48953bd066847f8445ffc3b9c1109f814ae871537a1e971da2bd1 binfiles arch=amd64-netbsd size=34 bin/amd64-netbsd/detex name detex.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of detex -containersize 40060 -containerchecksum 6f9ebfe006bb12dee0e1308507194f1c959ef18dced19b9976a84bcb9343628f78b14a0737a6e3c8a1127b80e9e46ec3f584076cf1744471aa65388c221dcc6a +containersize 40176 +containerchecksum a784612830493d746dcfb82d0e633f349182418848edb3ab0d96798647d8f6a4b4c33fd1debf285ef4e37420ad1f6e2d6fca8f288874fe1bb563e15f4578fcab binfiles arch=armhf-linux size=26 bin/armhf-linux/detex -name detex.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of detex -containersize 19200 -containerchecksum e77418d7761aaaf6ace076ffa9bbfeb26a0e62896c9f0815de5b35f65e4eb4cb59462c57bdd446bd719b171862dd3b28f923ce4401cd865fd861d86cad840be3 -binfiles arch=i386-cygwin size=14 - bin/i386-cygwin/detex.exe - name detex.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of detex -containersize 43592 -containerchecksum b38fd3176848535d806eefb73f789e7864ebb04094ee8012c086662e14f8fdf3acd3729c7981fcc1ae9325131e9098013e6b3a4b1724c4936f63710e3e7c3dbd +containersize 44568 +containerchecksum 6382ee5a6151a3e97a0c12a197846d4492906fc4709e621af79edeecad7a5aaf26fdb942704fd4dfbd1117d8a466de012f0bda2b3d2f055a6747e42fec01e0ed binfiles arch=i386-freebsd size=27 bin/i386-freebsd/detex name detex.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of detex -containersize 49936 -containerchecksum 47507a26e287552f0a3c03c8c6f99c9615375eb1f917d0a9772a648742761384efdba644e563926849d99f3494a9ee8a89f99798a1d69d8961e87531181c0944 -binfiles arch=i386-linux size=32 +containersize 51456 +containerchecksum 350728e23a86db10b7943e8f3f0ad299f7208c1894ac88219c7bec275ba4aaab38ba20ee28e059e08b0f2be4248dde151bfce75750ee9a049b912c9a1065156f +binfiles arch=i386-linux size=34 bin/i386-linux/detex name detex.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of detex -containersize 40312 -containerchecksum c58ab5433f662db36f34a24ab652cd209deac87e8abc06ff6ee0f48620bdf1dd289004413409c3058a22a2f6be1938242a5c804e14446718b9b726de6a327169 +containersize 40416 +containerchecksum 18f6f68ce3f6979fd5e32c804c8b1b4290bb72fb1c896c0d6a0a065da7d0fa27e893498f34dfc67ce51d8731b85c285479c7775f7f474001e5bd358b4c44bc3b binfiles arch=i386-netbsd size=31 bin/i386-netbsd/detex name detex.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of detex -containersize 47096 -containerchecksum 8dde6c88efc01b4d50c23ce36b076913c49fd39a68c0b7643123f443a2b88308f98d900c2f7d207dd0c03ed978f7597ef31616711bf9ad57d6df815cc0394edb -binfiles arch=i386-solaris size=29 +containersize 47132 +containerchecksum 4159cbd0984c19e184665876f0160c586cdfec76b4bef362c87396618aabe2fb6ffdbaa9d6b550e951d51bb07775af99cfd70f0632865fba14db9c86bc6789da +binfiles arch=i386-solaris size=30 bin/i386-solaris/detex name detex.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of detex -containersize 85748 -containerchecksum 3bdd73753de44f8717b657ee2c027ed43a3a5af7875fcf3750f2fea74c1000c1df7147754866232af52dd602d5977ada96b4b544e9abc96a6bd083456922c6c7 -binfiles arch=universal-darwin size=75 +containersize 86016 +containerchecksum e3811ccef5db2f71235577697facf8ca6e9343501d588f4a0b3da48f5641fb86d8f0a68ad782381fea220d24357c8c5dd84e17cbe56a6ad9c413fa7b1051e174 +binfiles arch=universal-darwin size=79 bin/universal-darwin/detex -name detex.win32 +name detex.windows category TLCore -revision 58783 -shortdesc win32 files of detex -containersize 17368 -containerchecksum b7a19b33b3acddb8afda3587a767fd74d26e110fa0ab23dc5c1267f962e1e7dc866688c03668fb4a507601f7e73bd6a6b18e547b12658be8ea1374e9d7d26504 -binfiles arch=win32 size=10 - bin/win32/detex.exe +revision 65891 +shortdesc windows files of detex +containersize 18192 +containerchecksum a6bbc24e5a816006f0e59ea0ea42dd19dbb9d1a1281e732f8dd5d5117ff527d3881b42b70c7a3e529ef14d0a5d0ccbc925751813b2181bbec191f32d4e6a41da +binfiles arch=windows size=11 + bin/windows/detex.exe name detex.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of detex -containersize 21396 -containerchecksum b1a7db15eae23d56d60a4f29b1d1da99d061e76a9adbc0c67554293618b468ca21521de30f0e4ec090f1f4313342cbb239e36a1d183ed1d84e0393d927f07323 +containersize 21528 +containerchecksum 936a12f1ad9c4f5cfe9d9a3655709f923580b648c93abd3169a0b0b289341bae89e514fe3bbdfe1ed21a58550182b688d43f7ffb6ee510ede59ae1f5d6b32bf0 binfiles arch=x86_64-cygwin size=14 bin/x86_64-cygwin/detex.exe name detex.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of detex -containersize 45432 -containerchecksum 4f11997155ad618db08280ff375b9258fb27bd2bf24ff222f34341107ca4ee29c2287524b02b429170649378203965cd8728bc02f3784fa968a6aecac6333131 +containersize 45520 +containerchecksum 4a22994df1da0be1d621598cbba2435aa1fd374006390f05582c1ed6c33d583d6406e7bfd7c464435053dce90f83bd964a15706ac5f4e72f23c2077843cddc68 binfiles arch=x86_64-darwinlegacy size=29 bin/x86_64-darwinlegacy/detex name detex.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of detex -containersize 49268 -containerchecksum 18989c7de0bb3142311bbe45fd21731569e2b1fa7097ac9db25df99687310419030b3ba6fe5faddf75ab26b8c396084f32881cc966dcbad04d220ce272f9fbf0 -binfiles arch=x86_64-linux size=30 +containersize 50512 +containerchecksum fe4f535624011d75ef0a92fbe1d3a81331a3590a8cabb3b2792972058920ab6933b82f378d5577e4cd9ca41167ee955f72a6f671ebb3839992dad6aaf72ae6da +binfiles arch=x86_64-linux size=33 bin/x86_64-linux/detex name detex.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of detex -containersize 50660 -containerchecksum 0a81f6f785ae58be454bbc2892927c50d740dd227357427932c32dd062d9857e46e39b7369a0a145f65c568aa64989a0e7a11d6d566e0806d3b4120616593bac -binfiles arch=x86_64-linuxmusl size=31 +containersize 52156 +containerchecksum 1c9a7a1894c0224030456a55ba1b8f6bce50b5479af6850913f1989bb87f05563b9f03a6b2886482b976aa3e06e0ed7aa5d35deab065a448292e41bb1215ee80 +binfiles arch=x86_64-linuxmusl size=32 bin/x86_64-linuxmusl/detex name detex.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of detex -containersize 52764 -containerchecksum acca010d3e0c8fb7588a23b000a6bbfcb42abaea54a097e4f93fdfc1509d3105d2ceef70123dd44c61bf18e338ce64a07c991b6e4c7355473ba2b97539808d38 +containersize 52844 +containerchecksum b62644ae6d171fc5a7b82dc0bfee7b70b60f64475d945d312ba082ab32a5ec2c0442f11732f67745e197cd54ba0d4dd4b0e5527f9b14774f86679c2a10ea975e binfiles arch=x86_64-solaris size=34 bin/x86_64-solaris/detex @@ -88943,15 +92489,6 @@ containerchecksum 99917459e2b88adf62d351b023085da2998f9ed42e1e4b3bc6747b79c043ba binfiles arch=armhf-linux size=1 bin/armhf-linux/diadia -name diadia.i386-cygwin -category Package -revision 37645 -shortdesc i386-cygwin files of diadia -containersize 336 -containerchecksum c2dc12c140591b988047199e0d1ee3c0afb64b65b94741465f4915d1a14fffae5d87264255bebe6fa11d9c65d5b7fa01438aef1a0e4badcd7c7709c42023b8ad -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/diadia - name diadia.i386-freebsd category Package revision 37645 @@ -88997,14 +92534,14 @@ containerchecksum 7a83303f5758e79dfc5cbfc9a0a77075a8779688670cf1f186bbc19e4787f9 binfiles arch=universal-darwin size=1 bin/universal-darwin/diadia -name diadia.win32 +name diadia.windows category Package -revision 37645 -shortdesc win32 files of diadia -containersize 680 -containerchecksum 6b7bf08087ff7450879d0bb7373cfb4753dcedf9f2c6af0c046ae29dacbbb13973260c585cd6721e007510b6f37c6a9b0921451aaf146ca6ceae18f2cebd9ecc -binfiles arch=win32 size=1 - bin/win32/diadia.exe +revision 65891 +shortdesc windows files of diadia +containersize 2304 +containerchecksum c8faafc03ca75a873af817c8a9cf274cf8d5540ac8480af9b148c6ca6e52c01bb5a5e0df139641b55bff1e97a364502a0fe3202fe9e138859057a6349bc2fb14 +binfiles arch=windows size=2 + bin/windows/diadia.exe name diadia.x86_64-cygwin category Package @@ -89441,38 +92978,202 @@ catalogue-topics font font-symbol font-type1 linguistic name diffcoeff category Package -revision 53244 +revision 65676 shortdesc Write differential coefficients easily and consistently relocated 1 -longdesc diffcoeff.sty allows the easy and consistent writing of +longdesc This package allows the easy and consistent writing of longdesc ordinary, partial and other derivatives of arbitrary (algebraic longdesc or numeric) order. For mixed partial derivatives, the total longdesc order of differentiation is calculated by the package. Optional longdesc arguments allow specification of points of evaluation (ordinary longdesc derivatives), or variables held constant (partial derivatives), longdesc and the placement of the differentiand (numerator or appended). -longdesc The package is built on xtemplate, allowing systematic -longdesc fine-tuning of the display and generation and use of variant -longdesc forms (like derivatives built from D, \Delta or \delta). A -longdesc command for differentials ensures the dx used in e.g. integrals -longdesc is consistent with the form used in derivatives. The package -longdesc requires the LaTeX3 bundles l3kernel and l3packages. -containersize 6040 -containerchecksum 4f8a1dd23b34cf7d6f213a6bf6699286c7e0df73a8a81ce59d6bd2d500f108f60293fac6f1c938c73afd5d4b1b20f64f2ccfe74f5031b0dda8cba65eabe7178a -doccontainersize 620496 -doccontainerchecksum b45ae815b92e542d0158da9a75978f97b2ca14056484a776dbd236da551dabe025fd85366fe2ca230b095119bb47fc3048fbb8f1cc4943f7fde9aa4820f0cb36 -docfiles size=188 +longdesc The package is built on xtemplate and the configurability it +longdesc enables, extending to differentials (including simple line +longdesc elements) and jacobians. +containersize 11108 +containerchecksum 3f6e304dbe15deee61f6a54f8d9c69a06bf1ef48e9a0583179bbf5afbaec8364fb3a974f47ab6d6f350c6ea7083095854109e1d4555e2395781e40774ce46f67 +doccontainersize 1328268 +doccontainerchecksum c742e1e8679f3ebf58f2a189acb695af893231c922f5659d9c586f5c684020f30368cf41def55dc1537b25eb05a8b4d8de771d19129dc15df64cdab7b3986ca6 +docfiles size=452 RELOC/doc/latex/diffcoeff/README.txt details="Readme" RELOC/doc/latex/diffcoeff/diffcoeff.pdf details="Package documentation" RELOC/doc/latex/diffcoeff/diffcoeff.tex -runfiles size=7 + RELOC/doc/latex/diffcoeff/diffcoeff4.pdf + RELOC/doc/latex/diffcoeff/diffcoeff4.tex +runfiles size=18 RELOC/tex/latex/diffcoeff/diffcoeff-doc.def RELOC/tex/latex/diffcoeff/diffcoeff.sty + RELOC/tex/latex/diffcoeff/diffcoeff4.sty + RELOC/tex/latex/diffcoeff/diffcoeff5.def catalogue-also derivative catalogue-ctan /macros/latex/contrib/diffcoeff catalogue-license lppl1.3c -catalogue-topics maths -catalogue-version 3.2 +catalogue-topics maths expl3 +catalogue-version 5.2 + +name digestif +category Package +revision 65223 +shortdesc Editor plugin for LaTeX, ConTeXt etc. +longdesc Digestif is a code analyzer, and a language server, for LaTeX, +longdesc plain TeX, ConTeXt and Texinfo. It provides context-sensitive +longdesc completion, documentation, code navigation, and related +longdesc functionality to any text editor that speaks the LSP protocol. +depend digestif.ARCH +containersize 637308 +containerchecksum 098d625749cee42f965d21ef5ec2843211db36fd0f4cced882ed15f32a20a2d70bf292b01e6797e7ca097adfadf2fd40d3c5eef6c694da39e8302770cfb784d3 +doccontainersize 5560 +doccontainerchecksum fabc6d0ea5a1e55b7ecd6430b2373c15e413c985485331bd7bd5bca437947a76ac7d8ac6ed2ea3d6afe687284aef673b0e302a1c9925737c6e1d95cecf2ea8cb +docfiles size=7 + texmf-dist/doc/support/digestif/INSTALL.md + texmf-dist/doc/support/digestif/LICENSE.md + texmf-dist/doc/support/digestif/README.md details="Readme" + texmf-dist/doc/support/digestif/bin/digestif +runfiles size=157 + texmf-dist/scripts/digestif/digestif.texlua + texmf-dist/scripts/digestif/digestif.zip +catalogue-contact-bugs https://github.com/astoff/digestif/issues +catalogue-contact-repository https://github.com/astoff/digestif +catalogue-ctan /support/digestif +catalogue-license gpl3+ lppl1.3 fdl +catalogue-topics editor-extn use-lua use-luatex +catalogue-version 0.5.1 + +name digestif.aarch64-linux +category Package +revision 65210 +shortdesc aarch64-linux files of digestif +containersize 340 +containerchecksum 2f3677fd7a19a107348504748b2c34b539c825d98fcf5f27f3ea0433c45ba3974d9690b77e24c77638df6d701ec25b3cdc4b9fdd1be2d57c4e4dff127130f4f2 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/digestif + +name digestif.amd64-freebsd +category Package +revision 65210 +shortdesc amd64-freebsd files of digestif +containersize 344 +containerchecksum 04377d809dbf3bac5582c494ffbbcaba488503a911369954b239a413c57653d1c2e123eef3283090b2b29c7158f09f29160366755931650131f3ad9a3bf76da4 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/digestif + +name digestif.amd64-netbsd +category Package +revision 65210 +shortdesc amd64-netbsd files of digestif +containersize 344 +containerchecksum df5199ab89006cc109b9184e1e40620e84e9212075e27588312501e1fa8e2f3d2750d2526df10b261890f3fa6b02332783337c7f341725a2ff04e2145387fdd8 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/digestif + +name digestif.armhf-linux +category Package +revision 65210 +shortdesc armhf-linux files of digestif +containersize 344 +containerchecksum d7ed355b76eb520d0a60eca601b12e536c40b12acccdfc155b95f47c339586c1e7025b5be94b026d280f3f968f1a93d44731cfbc38356d67a65f1c4451886f16 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/digestif + +name digestif.i386-freebsd +category Package +revision 65210 +shortdesc i386-freebsd files of digestif +containersize 344 +containerchecksum 053c859b10e9d39b6f5084c78beb021d81b3723427c66e62b27addc850ad2991d620ae3c9045c415b799194808924dd6cdd8a63266f79f72240ce344a94615bb +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/digestif + +name digestif.i386-linux +category Package +revision 65210 +shortdesc i386-linux files of digestif +containersize 340 +containerchecksum b3a5f581b1d582351e99296ebac92f6cf646f379b297d2f5b03f360f560686245881c6c15e3278457a149188c2aad57dbd8e734ea12d60eac1901cfe4697a86f +binfiles arch=i386-linux size=1 + bin/i386-linux/digestif + +name digestif.i386-netbsd +category Package +revision 65210 +shortdesc i386-netbsd files of digestif +containersize 340 +containerchecksum 1ff23630160200888ab5167654cdf652e8f3f8e6698c29b1ad0822a1081beb7e1f6a6ba34019aea8281353df6e00b43728cdbe1fd143ded7412fd21c68e17689 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/digestif + +name digestif.i386-solaris +category Package +revision 65210 +shortdesc i386-solaris files of digestif +containersize 340 +containerchecksum d73f7d09d836f1a4946b862c2fe4d1fa844cf005c3034f5d619d248019772b98516c4270bb3dac9144b96340e3f723051d6643d73ccdf9c07915c7bfdb6e9a73 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/digestif + +name digestif.universal-darwin +category Package +revision 65210 +shortdesc universal-darwin files of digestif +containersize 344 +containerchecksum 86f9fbb6a96931bb86d927672ab4d477eab455e785ddc65070689ab3c60df0512bc6728afbeed15e57753f24752a256015f6e85de24a0c5cc4b7657c9645b281 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/digestif + +name digestif.windows +category Package +revision 65891 +shortdesc windows files of digestif +containersize 2304 +containerchecksum 97e3043e866b02640fa2d2a478eecf3ece0c467a1174af843561351ef912d2b44804386dbc8067ec2b33a74024a978c6a637233f8ff5155be832048820517016 +binfiles arch=windows size=2 + bin/windows/digestif.exe + +name digestif.x86_64-cygwin +category Package +revision 65210 +shortdesc x86_64-cygwin files of digestif +containersize 344 +containerchecksum c253dfdb130fb5c386b97a399572997e296ce76456c3752e1c7389fcc9e9214a5ae8ec499231e0ab347222d6bcf1e1b40d83704e315009592e5c52abaab24aff +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/digestif + +name digestif.x86_64-darwinlegacy +category Package +revision 65210 +shortdesc x86_64-darwinlegacy files of digestif +containersize 352 +containerchecksum 575600e11926f9713625328a6b09e3eed075aa4ecce0536ed8659c246eb00ebe5d16b6aab99c373b5d2954257f2f6f620f783a7d6797d3d7811bdaf6bc5348a9 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/digestif + +name digestif.x86_64-linux +category Package +revision 65210 +shortdesc x86_64-linux files of digestif +containersize 344 +containerchecksum 244a0a18a95bf722b1ba1c111a535b9046c4a3be31a351e96999bf51dfeb5fac562cdb6010ea4b5db27e6813c0820313c821ba011a32cf4f0e02dd10f0792a25 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/digestif + +name digestif.x86_64-linuxmusl +category Package +revision 65210 +shortdesc x86_64-linuxmusl files of digestif +containersize 348 +containerchecksum e3e55d57a17a298901e61b1b7dc67e39aa913b0b43d4b6f0e4496e74bfd2a0632fff037a009391203b7c9fd32e43d61c70af699950af06a4d09b5c18da73db2d +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/digestif + +name digestif.x86_64-solaris +category Package +revision 65210 +shortdesc x86_64-solaris files of digestif +containersize 340 +containerchecksum e2c17f7f864bb628f0601da64d522b12d346b947130476f9ab4f01dbdb079d22b66c30df92e8b037e3e2bc0d23108a6a5c5226c850d54661a1aebd08e5e2290c +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/digestif name digiconfigs category Package @@ -89501,7 +93202,7 @@ catalogue-version 0.5 name dijkstra category Package -revision 55661 +revision 64580 shortdesc Dijkstra algorithm for LaTeX relocated 1 longdesc This small package uses the Dijkstra algorithm for weighted @@ -89509,11 +93210,11 @@ longdesc graphs,directed or not: the search table of the shortest path longdesc can be displayed, the minimum distance between two vertices and longdesc the corresponding path are stored in macros. This packages longdesc depends on simplekv. -containersize 4928 -containerchecksum c44121120afd9bc53e747ee3a5e11f6d72ab140f266ebecab5c57bff4fe8e10ac07e140df4b9a21482d61d3d40ed5cda3e7511e83d08214c832ce73bca00f199 -doccontainersize 374620 -doccontainerchecksum b258ff0230ac4b21a944602ae3382bda2ab79f162bd832a2b18e724101de4475218aaca09afbc23a7309c15a2897e02380743369ee681186ef577fb60745f493 -docfiles size=96 +containersize 5116 +containerchecksum 5662fff484dc88098c2bd22784aa95c4d990c5a725eedabaa1f542c53671783fc89ea1a4d6f7450483dcdb2cc8ce758a8a26c40d7ad27b93d7e3eef4d31d2ebc +doccontainersize 160036 +doccontainerchecksum 474f8fedec9daf17363773a200b81ba57f57175b1c52de5b7a7c8f7395996725284056ddf4a9e3e68baa1197dce84ed2767795956a403946f530492b6713b8d3 +docfiles size=43 RELOC/doc/latex/dijkstra/README details="Readme" RELOC/doc/latex/dijkstra/dijkstra-fr.pdf details="Package documentation" language="fr" RELOC/doc/latex/dijkstra/dijkstra-fr.tex @@ -89522,7 +93223,7 @@ runfiles size=5 catalogue-ctan /macros/latex/contrib/dijkstra catalogue-license lppl1.3c catalogue-topics maths automata -catalogue-version 0.12 +catalogue-version 0.13 name dimnum category Package @@ -90221,7 +93922,7 @@ catalogue-topics program-doc name doclicense category Package -revision 58350 +revision 63340 shortdesc Support for putting documents under a license relocated 1 longdesc This package allows you to put your document under a license @@ -90229,21 +93930,21 @@ longdesc and include a link to read about the license or include an icon longdesc or image of the license. Currently, only Creative Commons is longdesc supported, but this package is designed to handle all kinds of longdesc licenses. -containersize 234912 -containerchecksum 1f701453752b32f1030dd7cda6f51bd94d6d9d67f465070b613f4ea55857f300be8c7a19c7440c6fab129e3fc1749fe6b9aad13b1fc28b5b61670f65bf0e0a81 -doccontainersize 215236 -doccontainerchecksum 14b5f1cd3bbb3b9c411ab8f461673f1b4028549fa5675925ca6221723e6de3588df495a9a4e316b29d4e5c6836eff845ea3ef9544d2823fa548b4fc54080cd05 -docfiles size=68 +containersize 236500 +containerchecksum c46f4b7368ee52f68eae743fc4184c18a5ce4038976d0e4b810e4395f90c6651283cb345eee59de994973f0fdc93fda983438ff9690058065904cadc58aec8fa +doccontainersize 228964 +doccontainerchecksum ae39c96a61f534f6a66e902d273816e55b48f1d12a2256a3c1fc2dbf0e6027543771ebd722fd4b6b575b7d632cbb3dcf56c58513694672de298d528527ec8c89 +docfiles size=70 RELOC/doc/latex/doclicense/README.md details="Readme" RELOC/doc/latex/doclicense/doclicense.pdf details="Package documentation" RELOC/doc/latex/doclicense/manifest.txt -srccontainersize 11216 -srccontainerchecksum d5edb3908034af8d6c9b2e094eee6747398041df2d812b5cc1708223350e91837b5556a58db91897bf044e25a4cf036a0d945eec2db14f807d7e32c89340aaf4 -srcfiles size=12 +srccontainersize 13012 +srccontainerchecksum fab1662738be1aa2aeab240725df64a325a6cd17e77054e19432008914ccd380495aa9eb75b8b3ab72b5388bb0b0237fe23f17ce5976a05ac31e098381f49fdf +srcfiles size=13 RELOC/source/latex/doclicense/Makefile RELOC/source/latex/doclicense/doclicense.dtx RELOC/source/latex/doclicense/doclicense.ins -runfiles size=429 +runfiles size=434 RELOC/tex/latex/doclicense/doclicense-UKenglish.ldf RELOC/tex/latex/doclicense/doclicense-USenglish.ldf RELOC/tex/latex/doclicense/doclicense-acadian.ldf @@ -90256,8 +93957,11 @@ runfiles size=429 RELOC/tex/latex/doclicense/doclicense-canadien.ldf RELOC/tex/latex/doclicense/doclicense-catalan.ldf RELOC/tex/latex/doclicense/doclicense-chinese-gbk.ldf + RELOC/tex/latex/doclicense/doclicense-chinese-tw.ldf RELOC/tex/latex/doclicense/doclicense-chinese-utf8.ldf + RELOC/tex/latex/doclicense/doclicense-croatian.ldf RELOC/tex/latex/doclicense/doclicense-english.ldf + RELOC/tex/latex/doclicense/doclicense-esperanto.ldf RELOC/tex/latex/doclicense/doclicense-french.ldf RELOC/tex/latex/doclicense/doclicense-galician.ldf RELOC/tex/latex/doclicense/doclicense-german.ldf @@ -90270,6 +93974,8 @@ runfiles size=429 RELOC/tex/latex/doclicense/doclicense-portuguese.ldf RELOC/tex/latex/doclicense/doclicense-russian.ldf RELOC/tex/latex/doclicense/doclicense-spanish.ldf + RELOC/tex/latex/doclicense/doclicense-swedish.ldf + RELOC/tex/latex/doclicense/doclicense-ukrainian.ldf RELOC/tex/latex/doclicense/doclicense.sty RELOC/tex/latex/doclicense/images/doclicense-CC-by-80x15.eps RELOC/tex/latex/doclicense/images/doclicense-CC-by-80x15.pdf @@ -90375,9 +94081,9 @@ runfiles size=429 catalogue-contact-bugs https://github.com/ypid/latex-packages/issues catalogue-contact-repository https://github.com/ypid/latex-packages/tree/master/doclicense catalogue-ctan /macros/latex/contrib/doclicense -catalogue-license lppl1.3c +catalogue-license cc0 lppl1.3c catalogue-topics licence-mgmt -catalogue-version 2.3.0 +catalogue-version 3.2.0 name docmfp category Package @@ -90434,9 +94140,44 @@ catalogue-license lppl1.3 catalogue-topics subdocs catalogue-version 1.4 +name docshots +category Package +revision 65141 +shortdesc TeX samples next to their PDF Snapshots +relocated 1 +longdesc This LaTeX package helps you show TeX code next to the +longdesc corresponding PDF snapshots, in two-column formatting. You can +longdesc use it either in .dtx documentation or in .tex files. +depend fancyvrb +depend iexec +depend pdfcrop +depend pgf +depend pgf-blur +containersize 2764 +containerchecksum 1d4ce9b3bd39d12bc4fc2630c3f9116e7030d623700e951fa99e5bd25fcb2965765d5bf32a709eb9ea2ebd39382ef1ef33205ddd24c6cd5e9b75136de0ff18c2 +doccontainersize 336648 +doccontainerchecksum 7ab3122caf188621a0f5045b9d8dff1361b6577c6e80d6f6bf20a9e81703e7060936162356e4c34c44bea6f8611ae8819eafd8abf745a28346ce3d8b065596f8 +docfiles size=87 + RELOC/doc/latex/docshots/DEPENDS.txt + RELOC/doc/latex/docshots/LICENSE.txt + RELOC/doc/latex/docshots/README.md details="Readme" + RELOC/doc/latex/docshots/docshots.pdf details="Package documentation" +srccontainersize 7108 +srccontainerchecksum 1913dbf266953cd42e9a840e140b00fc785f12f610d0e5c84f70a1eb3bef06b8a4cd5c612c682a8c6ab2fb8ff355fe416cbbe70ef366e123f13419bcaaa1abbc +srcfiles size=7 + RELOC/source/latex/docshots/docshots.dtx + RELOC/source/latex/docshots/docshots.ins +runfiles size=2 + RELOC/tex/latex/docshots/docshots.sty +catalogue-contact-repository https://github.com/yegor256/docshots +catalogue-ctan /macros/latex/contrib/docshots +catalogue-license mit +catalogue-topics doc-supp +catalogue-version 0.4.0 + name docsurvey category Package -revision 57362 +revision 61447 shortdesc A survey of LaTeX documentation relocated 1 longdesc A survey of programming-related documentation for LaTeX. @@ -90446,10 +94187,10 @@ longdesc distributions, programming-related packages, users groups and longdesc online communities, and information on creating packages and longdesc documentation. containersize 548 -containerchecksum 89b01331fcfe0b039716b7b56f34c6006a15b69d9e8862426d0137221ed6c2909f7537f5252f657eb0448a1484d95bce57a947867bcf25486b893f679ef14072 -doccontainersize 358204 -doccontainerchecksum 795cfea7772c3a0a596dee18c0e2398e883c03e10f9d901a8bbc6dea0e8e599936502acbd687b22fc617d73f96993c6d0eb7801a5445ccf448e42a6ed1605eff -docfiles size=106 +containerchecksum bfb93b2510b2b2e334e63468dbb4a4860d4a2166c36b5ce5ff706007a2af605ffb1b5b64c567fe1a3bc46a4fe420fef4020ce6bdc16a4a6d3396ef00dc69d076 +doccontainersize 260928 +doccontainerchecksum 5f91a58cd18315c612860bcfcac7b85ffd402b02dfe669e6fae1efbbac5eaec683b3a286231f9db1cfe5ba967be67f08b1319dea72263f7bbcc84cfd913ffc1a +docfiles size=84 RELOC/doc/latex/docsurvey/README.txt details="Readme" RELOC/doc/latex/docsurvey/docsurvey.pdf details="The document itself" RELOC/doc/latex/docsurvey/docsurvey.tex @@ -91411,15 +95152,6 @@ containerchecksum bcdc2a4e1ba4f63e5558b8c19d8a2fdf0ba434c7b690052704d099dc2167a1 binfiles arch=armhf-linux size=1 bin/armhf-linux/dosepsbin -name dosepsbin.i386-cygwin -category Package -revision 24759 -shortdesc i386-cygwin files of dosepsbin -containersize 340 -containerchecksum 5ac4d35ac5e394251bfe0b8096eda1eb6c76e74aeb75e029c3dacce5162043fd720832eb689f9e85264884f9be377373bb1937f0640368eff33ffd960add8517 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/dosepsbin - name dosepsbin.i386-freebsd category Package revision 24759 @@ -91465,14 +95197,14 @@ containerchecksum a5af89d2253e7bd231f9f2d56591531e763949949f575ab5db269f00e5752e binfiles arch=universal-darwin size=1 bin/universal-darwin/dosepsbin -name dosepsbin.win32 +name dosepsbin.windows category Package -revision 24759 -shortdesc win32 files of dosepsbin -containersize 684 -containerchecksum 880854e12823c3789df87ae2991fd2d1efd0f7a470cce497a20863e01b03b10ba1fea03359ce112d2912da0e691360d10edf58d9aaa610dd70a24fcba2b9ca41 -binfiles arch=win32 size=1 - bin/win32/dosepsbin.exe +revision 65891 +shortdesc windows files of dosepsbin +containersize 2300 +containerchecksum 2e2109a480689a1baff584ad8b0589eb4e5b0264e8a6f3a01fa7f562ebb7940385b78d6ea02199fe6ffceaba0b1d2e0b2d21d18b9f9a3b21a429845e8c590c7b +binfiles arch=windows size=2 + bin/windows/dosepsbin.exe name dosepsbin.x86_64-cygwin category Package @@ -91721,23 +95453,23 @@ catalogue-version 1.111 name doulossil category Package -revision 56407 +revision 63255 shortdesc A font for typesetting the International Phonetic Alphabet (IPA) relocated 1 longdesc This package provides the IPA font Doulos SIL in TrueType longdesc format. -containersize 404856 -containerchecksum f4260c3849929daf7d4d3de75096111e9004925998a251bfe759ed0b494b3da88634989f77597cfbd5277a94646ef56d4313ac12bb90431cd5c13681123998d1 -doccontainersize 60420 -doccontainerchecksum 0b258cc6512eb3fc01b193754520431c492ce91d9b3cd73d192e98dcbb9f4fe9190f89886fb0f8d453016ed8d0a89943b3356026da625904d26ffbb5b686b229 +containersize 404852 +containerchecksum 02e347325823f5b8359bbf192965b58a2b1907dce315277a65dc573b1d2e612fde821455dc8f8afc69dcc532f43a20d0f78d0b0f5649641c8ce6dde73525fc4d +doccontainersize 60428 +doccontainerchecksum 360c64adf1eface29c60c18e4b20c4aa382713f0e4a59ecab2737135a422178238214c9cb567669bdee82519e0658497bf409f92733403a1749730986be71d5c docfiles size=17 RELOC/doc/fonts/doulossil/README.txt details="Readme" RELOC/doc/fonts/doulossil/doulossil.pdf details="Font samples" RELOC/doc/fonts/doulossil/doulossil.tex runfiles size=387 RELOC/fonts/truetype/public/doulossil/Doulos_SIL_Regular.ttf -catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/doulossil/-/issues -catalogue-contact-repository https://gitlab.com/niranjanvikastambe/doulossil +catalogue-contact-bugs https://gitlab.com/niruvt/doulossil/-/issues +catalogue-contact-repository https://gitlab.com/niruvt/doulossil catalogue-ctan /fonts/doulossil catalogue-license ofl catalogue-topics font font-ttf font-symbol phonetic linguistic @@ -94685,7 +98417,7 @@ catalogue-version 1.0 name dsserif category Package -revision 54512 +revision 60898 shortdesc A double-struck serifed font for mathematical use relocated 1 longdesc DSSerif is a mathematical font package with double struck @@ -94694,25 +98426,25 @@ longdesc bold weights. The design was inspired by the STIX double struck longdesc fonts, which are sans serif, but starting from a Courier-like longdesc base. execute addMap DSSerif.map -containersize 78396 -containerchecksum d1f173c1892acb75e319fe3e8702b5c8ba233ba3b236babd368c3a8bb47ba67de222e6d80ed65c17de9d152b98a930b59c74dc82fba619c2b24b4dc8143d5890 -doccontainersize 247184 -doccontainerchecksum a8a6c9224cb7a55d12d8825d108066038be9ceb3ebf50caf796dc17a84f4d9d615507778934046b8944d235acb3f829e7654527cf485c9bd2562998b376f26cc -docfiles size=72 +containersize 90204 +containerchecksum 7fa159e85b370a1327a8cace1a20ed54b37f2413e553dbcd42c6e75cd224da35b47402d89d39971873e888cc9f89117fe5403887299ad8c43e6bf2f706df357d +doccontainersize 281156 +doccontainerchecksum e831d9ba6233cd260cd6f212f4f8b3adb360f6d701d121d26f0de95360dd56ccf7e3a5fb6fde990d875e60ca20f7632a4badaa9df8e3b98f16bfa5b176308761 +docfiles size=83 + RELOC/doc/fonts/dsserif/DSSerif-drv.tex RELOC/doc/fonts/dsserif/OFL-FAQ.txt RELOC/doc/fonts/dsserif/OFL.txt RELOC/doc/fonts/dsserif/README details="Readme" RELOC/doc/fonts/dsserif/dsserif-doc.pdf details="Package documentation" RELOC/doc/fonts/dsserif/dsserif-doc.tex -srccontainersize 1716 -srccontainerchecksum 01fdb50fc1d1cfc294121882c3d05ed0878caf154f71f2b5dab6e21f3e96ddaccccf9da49d7aaf000a47c69f890a600d1914fce892d5efa485964140486ee950 -srcfiles size=5 - RELOC/source/dsserif/DSSerif-drv.tex - RELOC/source/dsserif/adjustments.mtx - RELOC/source/dsserif/mathalfij.etx - RELOC/source/dsserif/mathalfijB.etx - RELOC/source/dsserif/notes.txt -runfiles size=33 + RELOC/doc/fonts/dsserif/notes.txt +srccontainersize 1000 +srccontainerchecksum dcdf454c0d970338951b5b458df039ecc0287020fbf13c3ef46d2effc4aace39cdb424937d506783f572ccfd7cc136e9059e9894d4339b53f4b1be4b52d93579 +srcfiles size=3 + RELOC/source/fonts/dsserif/adjustments.mtx + RELOC/source/fonts/dsserif/mathalfij.etx + RELOC/source/fonts/dsserif/mathalfijB.etx +runfiles size=38 RELOC/fonts/afm/public/dsserif/DSSerif-Bold.afm RELOC/fonts/afm/public/dsserif/DSSerif.afm RELOC/fonts/afm/public/dsserif/DSSerifUni-Bold.afm @@ -94729,13 +98461,13 @@ runfiles size=33 RELOC/tex/latex/dsserif/dsserif.sty RELOC/tex/latex/dsserif/udsserif.fd catalogue-ctan /fonts/dsserif -catalogue-license ofl lppl lppl1.3 +catalogue-license ofl lppl1.3 catalogue-topics font font-serif font-maths font-bbd font-type1 -catalogue-version 1.01 +catalogue-version 1.031 name dtk category Package -revision 56696 +revision 65315 shortdesc Document class for the journal of DANTE relocated 1 longdesc The bundle provides a class and style file for typesetting "Die @@ -94743,10 +98475,10 @@ longdesc TeXnische Komodie" -- the communications of the German TeX longdesc Users Group DANTE e.V. The arrangement means that the class may longdesc be used by article writers to typeset a single article, as well longdesc as to produce the complete journal. -containersize 17488 -containerchecksum 6553c4facf6e28210e22641d10babb0c4073c9514231e345f33aef419c95ea30b6fd744711233f91f90183624d5bd5c21ca7901c4ad46358b7b6335c09059241 -doccontainersize 79580 -doccontainerchecksum 9656de8b3319a84d5d32900a65c013e44ebfa5488761bb31a5d3f84faaf22f648367a842d274b25a19c70bb650e4043dcc18fa0fdeaafd6bc360534c118589d8 +containersize 14932 +containerchecksum 6ddebf4d05d5eed8d2569c19a113b2653d11689db9aa8b702c8445473dc102685ee0da967af3d44763e4514dfd2c7a3b9309223abff10da2aa37a9b5d9d58095 +doccontainersize 79004 +doccontainerchecksum debb6a9fda42df78143b6515e5efd189bba4be426aa71c3a653b51b02e0f40ead12267d6fa54b0e495bc30775427de98a0d1375d52d6013fb6e8acc526043675 docfiles size=28 RELOC/doc/latex/dtk/README.md details="Readme" RELOC/doc/latex/dtk/doc/beispiel.bib @@ -94757,54 +98489,55 @@ docfiles size=28 RELOC/doc/latex/dtk/dtk.nolig RELOC/doc/latex/dtk/dtk.xdy RELOC/doc/latex/dtk/dtk0.tex -runfiles size=23 +runfiles size=19 RELOC/tex/latex/dtk/dtk-author.clo - RELOC/tex/latex/dtk/dtk-extern.sty RELOC/tex/latex/dtk/dtk-full.clo - RELOC/tex/latex/dtk/dtk-logos.sty RELOC/tex/latex/dtk/dtk-new-engines.clo RELOC/tex/latex/dtk/dtk-old-engines.clo RELOC/tex/latex/dtk/dtk-url.sty RELOC/tex/latex/dtk/dtk.bbx RELOC/tex/latex/dtk/dtk.cbx RELOC/tex/latex/dtk/dtk.cls + RELOC/tex/latex/dtk/dtk.dbx catalogue-contact-bugs https://github.com/rolfn/dtk/issues catalogue-contact-repository https://github.com/rolfn/dtk catalogue-ctan /usergrps/dante/dtk catalogue-license lppl1.3c catalogue-topics journalpub class -catalogue-version 2.08h +catalogue-version 2.08n name dtk-bibliography category Package -revision 58212 +revision 65444 shortdesc Bibliography of "Die TeXnische Komodie" relocated 1 longdesc This package contains the bibliography for "Die TeXnische longdesc Komodie", the journal of the German-speaking TeX User Group. It longdesc is updated on a quarterly basis. -containersize 516 -containerchecksum 24d9c6fbec620031e612be1820a971dfcf763bb457ec440757ea3b40e953cca21b2eb5ea550fb7dbfb773663e04b3b37f99fdd83e592e2405c00cebbf558dc11 -doccontainersize 412068 -doccontainerchecksum 8b4256fd9dfebf80f5ee1a957b546746ae34801b552db1459a05a1a80be24bf8e64e968cc47c52226b6f4e0c8ee02876de4aa5fd41fb413389130d23be3f2c0d -docfiles size=220 +containersize 52844 +containerchecksum 417e5bbe812750ba4832939af9c9ed8bc6595049985554c53e49bf48a9cd66aae575cdfa3c49b6593a2116bc6aff44c771a17c91a2d233ba8550ab862db1ec97 +doccontainersize 276036 +doccontainerchecksum b48549663c4478a20339ad9c54a2d458b1472f231ae90a13a9cd35c0ff6ac6596ea8246ee97838bd462828a346082675294f843aa16f44f31d48b1ce2df16f5d +docfiles size=71 RELOC/doc/bibtex/dtk-bibliography/README.md details="Readme" - RELOC/doc/bibtex/dtk-bibliography/dtk-authoryear.bbx - RELOC/doc/bibtex/dtk-bibliography/dtk-authoryear.dbx - RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.bib RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.pdf details="The document itself" RELOC/doc/bibtex/dtk-bibliography/dtk-bibliography.tex +runfiles size=137 + RELOC/bibtex/bib/dtk-bibliography/dtk-bibliography.bib + RELOC/tex/latex/dtk-bibliography/dtk-authoryear.bbx + RELOC/tex/latex/dtk-bibliography/dtk-authoryear.dbx + RELOC/tex/latex/dtk-bibliography/dtk-logos.sty catalogue-contact-bugs https://github.com/dante-ev/dtk-bibliography/issues catalogue-contact-repository https://github.com/dante-ev/dtk-bibliography catalogue-contact-support https://github.com/dante-ev/dtk-bibliography/issues catalogue-ctan /info/dtk-bibliography catalogue-license lppl1.3c catalogue-topics journ-digest review-document german-doc -catalogue-version 2021-01 +catalogue-version 2022-04 name dtl category TLCore -revision 52851 +revision 62387 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 @@ -94813,11 +98546,11 @@ longdesc files) and a disassembler dv2dt (which produces DTL files from longdesc DVI files). The DTL bundle was developed so as to avoid some longdesc infelicities of dvitype (among other pressing reasons). depend dtl.ARCH -containersize 580 -containerchecksum 866039bb0f76bc6b2f4dbb86133a48869d90ce7dae716df42e35f4d3ac2808fab52a79f77b047267d206ec416bba7dd6282468767b1b1f4fbb1146a1140eb78a -doccontainersize 52488 -doccontainerchecksum d624505c9bbcf7140fc264811631f55f8a26fb1e9c4d3b1fbb1be93460aca2d6dbd88192f057e1b17fe807af0b4ddbbef6e2a3ba919e6aed073a903045609d7f -docfiles size=21 +containersize 556 +containerchecksum c2b7f3ab778c01979b158c335e4bff7bbb677fe8c5bc3202a5f43c747119dbc4a7e348c5fbb0bf2a487a49430939fae6abc855392da92ba65441b87e08585189 +doccontainersize 53504 +doccontainerchecksum 476723cb714863405daaa5fdc35557ffe7cb1149735272cfec2f14473ee65b93da90648abf73b4cf09799b1595569513f3735a07173b50eb6db405d526d40660 +docfiles size=22 texmf-dist/doc/man/man1/dt2dv.1 texmf-dist/doc/man/man1/dt2dv.man1.pdf texmf-dist/doc/man/man1/dv2dt.1 @@ -94829,167 +98562,157 @@ catalogue-version 0.6.1 name dtl.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dtl -containersize 20492 -containerchecksum fd3967c0222dec064ea3927691d20854f5826ff57db28d7c02357c48623ffbb9b754af35f2aa21eb28ef2fdfda5fa5a11208ebddf6cd7c493c70139312359d09 +containersize 20520 +containerchecksum 1f4b1acd4fbf547972788bb9a06781c153ce99c97675bd1a2a694cddd04908962799a5dd55743af11e29fdced120666b855a2b1e8d1ba79914ff08bd595464d8 binfiles arch=aarch64-linux size=20 bin/aarch64-linux/dt2dv bin/aarch64-linux/dv2dt name dtl.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dtl -containersize 21676 -containerchecksum c2c8c5b1dfd4a94fed58cdf93838dfc6c4e64e7bcfde6c6518bad94b184743c0de2fdc05a0b01df3cf4a98226144770112885c51ad1ae7a36997ff71d1626200 +containersize 21928 +containerchecksum 31473c6d8015aec7711c100f362728785f65b53ac094948a0c52afb5aa712d9d620758033ca40682b5ba062cfbbd6d9f3032e270a6f7e92d3504e9ad84da566b binfiles arch=amd64-freebsd size=19 bin/amd64-freebsd/dt2dv bin/amd64-freebsd/dv2dt name dtl.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dtl -containersize 19228 -containerchecksum 4aa71c0fcbfddca69eff2617b4980d8b3c1bce99872fd58855ccc59bbda3626de02460c51c214cc1930ef65af1a5f0c15c1448235c1e162a988893f3f4ace40e +containersize 19268 +containerchecksum e4f07dc6abb73e7b67cba90ed1446adf3d94a16539577cd024657f8c0c30f83777ceceb4403a0b5fcd1a26bae10d222b63b8326dc18bdad2289dcd46511af933 binfiles arch=amd64-netbsd size=19 bin/amd64-netbsd/dt2dv bin/amd64-netbsd/dv2dt name dtl.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dtl -containersize 15992 -containerchecksum d79324eb8504ae9a8efe2c1cffea3ba7e71cf479c7b4a7dfba8c341d5a2845e56ded7c31ddb45fde4854ec510a1cfcfd6fe9e7953986cc6c5dc9b0ebf4003781 +containersize 15984 +containerchecksum 8122f347d0a4f854148b957065207dce2087d036f34ff58fb5f0938220c9b689b19feaeac5a86d84aae53a90416631791ade95600e45232c5d89c75f528d4e14 binfiles arch=armhf-linux size=14 bin/armhf-linux/dt2dv bin/armhf-linux/dv2dt -name dtl.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dtl -containersize 16888 -containerchecksum f1a93bc4f5ffd24a299cac999813bae90cca0bc3211bcc9667035c9d4ad030102cd2acb0e49e32fc9899bdf29ff32b7a2867d4c17683cf68fa648ccff0f5e54f -binfiles arch=i386-cygwin size=16 - bin/i386-cygwin/dt2dv.exe - bin/i386-cygwin/dv2dt.exe - name dtl.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dtl -containersize 19320 -containerchecksum 4472aa99a4cdf3dc660fabdaabfdabe9f6933dc9be8dc2f68e1946b420269692ee6dfa5673f9cae84109508ea03d3bfa2ba3d194d8adc591ed353f8c532e14a0 +containersize 20136 +containerchecksum 74a9d36f80826282572ca9d25d2165a5a32593c4bcc5355553f0c20b8ab22552b4f387f14679c63e25087cc2c771e951c31715783f0a3d20ae6c774118f01a90 binfiles arch=i386-freebsd size=16 bin/i386-freebsd/dt2dv bin/i386-freebsd/dv2dt name dtl.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dtl -containersize 21328 -containerchecksum 8cc3fd951bc6a77efdb4b206262a9f3cac2ceaae96f509408fcdaa5a122fe81fef956e7ee7f4c8b6293c39af740bd4a99981f230b7651a8527900d0a45826943 -binfiles arch=i386-linux size=18 +containersize 21856 +containerchecksum 7ba5f38245ebb38ebf261c9a8b50f5c9e32b5e931e82ea2b70bce84b63f81326682f2441b736c8b6f31b1e80c5747a18cb8d0af0f3d56684675562a0669338f3 +binfiles arch=i386-linux size=19 bin/i386-linux/dt2dv bin/i386-linux/dv2dt name dtl.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dtl -containersize 18088 -containerchecksum f3a250850b4f45497eaca73e5a676714674bb70ebae23430d3bd729dfb9fe304e0182d13f148c489d1487fd5037c267f3c550f3f7a32c14cb52150994a69a03d +containersize 18064 +containerchecksum 5ad744772d64a39dda031f08d2c98f081b8dc8cbbb76a2868b2621e7c4c623b5d767d3b8749b0b89a8bc609fa221bb1f97b8556374d702fd60aec4382ade1bd4 binfiles arch=i386-netbsd size=17 bin/i386-netbsd/dt2dv bin/i386-netbsd/dv2dt name dtl.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dtl -containersize 20508 -containerchecksum 752e4b1340abd97f977f8e6d478557f36779d5b5b0aa16924c12efb8de5f7ffb4f5e1812828dcc203199cb942b379c6fbd5ced2cddd3dc0a6dff2846c9fac3e3 +containersize 20480 +containerchecksum 86cac2c1e1f3082c19965213e7a8d1ba56f62c308d3c8025289f876ef0d70af2f9da1b71e18594796548ed8cd9eceeda5c2c8efa8714362140c5eb763c7ce249 binfiles arch=i386-solaris size=16 bin/i386-solaris/dt2dv bin/i386-solaris/dv2dt name dtl.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dtl -containersize 45740 -containerchecksum 94a84ee07b799fd2dd84be6df66433354f658786913096550f1dc8c18e9bd4e43f81259bc9770495e95f1e4c5580ce9c5fdc750c13a6412d8c09f688febd8d06 +containersize 45824 +containerchecksum d04f5455b6909fe220a8906ea89b0373158c547dfe0214f2d7b89bff22eba62181e98325ca2d4a7970005c3561d4d941e53783098f4d93e6da7d653c4b9e0bc7 binfiles arch=universal-darwin size=80 bin/universal-darwin/dt2dv bin/universal-darwin/dv2dt -name dtl.win32 +name dtl.windows category TLCore -revision 58783 -shortdesc win32 files of dtl -containersize 16116 -containerchecksum a94514efbd2df0b1ac04bacf1d552b73c9be71ff78e632033193d9fe56ee2501c28753edaa5b1d8a5fa7b4eb3df6deeba50f645933fe82ab4cd96f38995df547 -binfiles arch=win32 size=12 - bin/win32/dt2dv.exe - bin/win32/dv2dt.exe +revision 65891 +shortdesc windows files of dtl +containersize 17396 +containerchecksum 461f78e366327dfc9af6b6a0c35e7a2a791b93cc5c66342e4c7b0b2274194fb12122e90909a5ca52ae9d85b86c87b82332c081e101914bfc0dbea1337d9b3e5d +binfiles arch=windows size=14 + bin/windows/dt2dv.exe + bin/windows/dv2dt.exe name dtl.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dtl -containersize 17660 -containerchecksum 7dc5898378131c034fa41e75a85e8e6c7430a2f4bd50c8b55c79640e315674ea925515f4f6531f7aa020d8652e1dd47936fbc2dd7d72efa3a03d3f4f9152d987 +containersize 17872 +containerchecksum 9c8dc51ae07aee1990d5d485f8c30af5ae3d4aa1bd199a0023e892e3f225790bd7e65bf281070b4d333c447c11f437b55527b57983a9d809bdec4c0410a85fb2 binfiles arch=x86_64-cygwin size=15 bin/x86_64-cygwin/dt2dv.exe bin/x86_64-cygwin/dv2dt.exe name dtl.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dtl containersize 20424 -containerchecksum 47022d5df9e1cd3e845e473ffa8a539359974c366c57c2387b6debab548e632aa62aa7243a1c214c5e0a44356024e4d5d57b6184fae3901a25975bb1eed6253d +containerchecksum 2a67736e32de6006cb442a121aecfad4996d578d034ee18b63ecb6cd60bedfaaff3d4c13d6d5af5072d118e2db2e3d5bb59d33a08ab0416f6b7496db4707a6cb binfiles arch=x86_64-darwinlegacy size=19 bin/x86_64-darwinlegacy/dt2dv bin/x86_64-darwinlegacy/dv2dt name dtl.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dtl -containersize 20864 -containerchecksum 5231f9b4fbf91c5b0879172c646472b1a161759bfdffe0e62f2854ce6d0e3269c4bd1142f173fde973acfa4fc68c6944310acef211fb43a7d50e2f511d1b9d1c -binfiles arch=x86_64-linux size=17 +containersize 20904 +containerchecksum 4462c6f5bd8b45df554fdc58b95e0da8e966b00d54c20910d84ebf3a9a893cd01e33466f7fb9e9346d42172462d34bbf64e96ac376efd0627498d5d9af543912 +binfiles arch=x86_64-linux size=19 bin/x86_64-linux/dt2dv bin/x86_64-linux/dv2dt name dtl.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dtl -containersize 22244 -containerchecksum afbebe5dd947561ba83427d57c82cb553f6eca08ba383223e46dbe1a84015622bc7ce361845023dc18b18d3498e901af850f4356a5b96cea39a8545154cd9c19 -binfiles arch=x86_64-linuxmusl size=20 +containersize 21776 +containerchecksum b37e6515ff4d4ff120c1cced84d818d99089b3e79b953d3c301ae8e3f681ae2a67cc87a7c12f6d7fda31d0ebbb2f0bc4fc9ec32523fae8541ac04a693f9df6f8 +binfiles arch=x86_64-linuxmusl size=19 bin/x86_64-linuxmusl/dt2dv bin/x86_64-linuxmusl/dv2dt name dtl.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dtl -containersize 23076 -containerchecksum db0d71dc5b200378586d974252b1dc7f0feb48e6c725597c659abfe7cfbb45b0414656f7505b7228ef8292e83489b8fa8aace1027e0b23a9570e3f5b88bae1a7 +containersize 23060 +containerchecksum 197aed0a6ef8af8042a68bdbeee762e2ba7deba3277e1372d5f322ac637969e2ee3ac397ea2af7cd4cfc9118f501cea644dc9f2bdfb076bd2d48f97cf919f4bc binfiles arch=x86_64-solaris size=21 bin/x86_64-solaris/dt2dv bin/x86_64-solaris/dv2dt name dtxdescribe category Package -revision 51652 +revision 65445 shortdesc Describe additional object types in dtx source files relocated 1 longdesc The doc package includes tools for describing macros and @@ -95012,26 +98735,26 @@ longdesc provided for formatting the names of inline LaTeX objects such longdesc as packages and booleans, as well as program and file names, longdesc file types, internet objects, the names of certain programs, a longdesc number of logos, and inline dashes and slashes. -containersize 5472 -containerchecksum 4f226da178f26f2e3310a86e2d884aee681f87528c0d43f942f23c68b6e335eb21bef830233524d44d2945a1d287ff9542bd69744c15c722a54ba38a5af73d96 -doccontainersize 328456 -doccontainerchecksum 45592bc0c6836d83f1db18f7852394a0288c2557aa708ccbd1407656b7939cefba07556e924fe495da36078411b81bd00702f7998332a5fd801aac0327655f47 -docfiles size=83 +containersize 7860 +containerchecksum cfae5c15bef8b3d75d31f970c47ccc63cb261820d4d19e55c48de6e13e0133e50d60713e2e691856b0fd803834190bd76fd13e47094b0e8f7a74901f882093dc +doccontainersize 459068 +doccontainerchecksum 6390904b004eec6a9293b31b8467bebd4910702c26a270de573ff9bd404715d27d6bf12ce7f039a213ff545ca2667fe6a568df967b79f8d9142c58d87ed708d6 +docfiles size=116 RELOC/doc/latex/dtxdescribe/README.txt details="Readme" RELOC/doc/latex/dtxdescribe/dtxdescribe.pdf details="Package documentation" -srccontainersize 18844 -srccontainerchecksum 9ad27a4f1fc13deb348a3bb73dfecb634ed3f0b69565f4ab06763cafdd652b4899fa4914d64c9596534cb561ac9724c86ea713939d7d6e6c7820c869acb0289d -srcfiles size=23 +srccontainersize 24048 +srccontainerchecksum 88d81f7d55bf3e5bac2811b7f7f9c00f68de32f307e0fd7c6d2e4d6537caf46fc60f4d14b0c5fd46b94155d2884b48a8222ca4c86fa05dd316952c78e836ed93 +srcfiles size=31 RELOC/source/latex/dtxdescribe/dtxdescribe.dtx RELOC/source/latex/dtxdescribe/dtxdescribe.ins -runfiles size=5 +runfiles size=9 RELOC/tex/latex/dtxdescribe/dtxdescribe.sty catalogue-also doc catalogue-contact-home http://bdtechconcepts.com catalogue-ctan /macros/latex/contrib/dtxdescribe catalogue-license lppl1.3 catalogue-topics doc-supp -catalogue-version 1.02 +catalogue-version 1.07 name dtxgallery category Package @@ -95121,15 +98844,6 @@ containerchecksum f6cc5b4ab066adbaf225fecdbd798d32ed70721f494c1dd2e4a19e3849884f binfiles arch=armhf-linux size=1 bin/armhf-linux/dtxgen -name dtxgen.i386-cygwin -category Package -revision 29031 -shortdesc i386-cygwin files of dtxgen -containersize 336 -containerchecksum 675c37d3b33af94599222c252c50338956d41008aefe06eb6e69c44508b2e70df7ad77d4de62751a6c88e03d215619afabc579e97617de89b9ebd229a2ec1b29 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/dtxgen - name dtxgen.i386-freebsd category Package revision 29031 @@ -95248,7 +98962,7 @@ catalogue-version 2.1 name ducksay category Package -revision 56800 +revision 64655 shortdesc Draw ASCII art of animals saying a specified message relocated 1 longdesc The package draws ASCII art of animals saying a specified @@ -95256,16 +98970,16 @@ longdesc message. The following macros are available: \ducksay longdesc \duckthink \DefaultAnimal \AddAnimal \DucksayOptions Multi-line longdesc messages are now fully supported. The package comes with two longdesc versions, choosable with the version key. -containersize 9144 -containerchecksum e4538112c20c1afc2bbbea2d51d2f8a47721072e254c8578929e8acb0b0c6ca99c44eaae5ea3078ff33708ad7c573144e8d94055ac25d15032314db78c305627 -doccontainersize 485276 -doccontainerchecksum faa84c55147187055af777b7c770781441ce3a12d46386efb7e4a0348895f130f7b748977c5914914c8040831e11547abb1b648eeb0f4bbeef2e0f93248427b5 -docfiles size=120 +containersize 9388 +containerchecksum d89900ae1247eb6706719ce472964a2d3b82c2826e18b3965de12d0c0503d77968edd9faffdee9870089de19e10319f94b1c6374371d387a50ebab414934bb61 +doccontainersize 528272 +doccontainerchecksum 1231fbd9920d0f9cc6c848df09c175c8bf47771e909463331a593bc71a7656948541e66bff507250030a88a362265531c7997f90fd23b4dde40e555d02b75760 +docfiles size=134 RELOC/doc/latex/ducksay/README.md details="Readme" RELOC/doc/latex/ducksay/ducksay.pdf details="Package documentation" -srccontainersize 20352 -srccontainerchecksum f7fb26b1905a612044a2a05a1cc032855fc395d290b48524b042bc5d87ecd915484fdc463a1115cbb2f5ee2baecf096717bdcdd9e7da75768820dbe9d7ac959c -srcfiles size=23 +srccontainersize 20792 +srccontainerchecksum 594c31ff9f2ac3274a275ba0f9b40a20b113f7357aba2755ca684e88f77e00dff220204908709b0cfe678a83fa391fd6728455123dbd53160a5edb5be3c64de2 +srcfiles size=24 RELOC/source/latex/ducksay/ducksay.dtx runfiles size=13 RELOC/tex/latex/ducksay/ducksay.animals.tex @@ -95277,7 +98991,7 @@ catalogue-contact-repository https://github.com/Skillmon/ltx_ducksay catalogue-ctan /macros/latex/contrib/ducksay catalogue-license lppl1.3c catalogue-topics games amusements graphics -catalogue-version 2.5a +catalogue-version 2.6 name duckuments category Package @@ -95539,17 +99253,17 @@ catalogue-version 0.1 name dvi2tty category TLCore -revision 52851 +revision 66186 shortdesc Produce ASCII from DVI longdesc A DVI driver to produce an ASCII representation of the longdesc document. The original version was written in Pascal, and the longdesc present author translated the program to C. depend dvi2tty.ARCH -containersize 504 -containerchecksum 303289e5bef9fcc097c1e3ce3eff923c303f50f71c72f2c3929c55f006149171eeb4b69ff38f8a46b8a5d19ac79ebf6ca28ad1df5f9525a8f1dc6587bfa42d72 -doccontainersize 35876 -doccontainerchecksum fd8c456f223c78128b5a7c50bdd93068d00f92ffbb096ed2cecf23180b765eba0ba0dcea374f585754ecb28276e668788979e0be131465fbb56967b4ecdad900 -docfiles size=14 +containersize 480 +containerchecksum 1051c3448703fdd6395d78b0d8b7658197da6114fb7455b31502bad5c2eda24fd4eba2ceaba1f65d106f981bbc60caf9f3bd0db29403e898b293514d086bf91d +doccontainersize 37148 +doccontainerchecksum 3ee736f5fbf91472008a5c8613c0e629a9f76f61fee4c4491b67045ddaad7aa2f89a22937b172e058b072ae1a013478fdf5a9f68dd2e225e8a8e77c8e3b3a289 +docfiles size=15 texmf-dist/doc/man/man1/disdvi.1 texmf-dist/doc/man/man1/disdvi.man1.pdf texmf-dist/doc/man/man1/dvi2tty.1 @@ -95562,177 +99276,167 @@ catalogue-version 6.0.0 name dvi2tty.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dvi2tty -containersize 69228 -containerchecksum 96f000d08622bac1a27be91a2af2ff904aaf1cbbe185237147b1a30b444c494fa8e50c8fae06bd86e29700cef15282e29cea217cdad3b72df44f9b6ec932b90f -binfiles arch=aarch64-linux size=43 +containersize 78456 +containerchecksum 4457170b9fe8eeb73d991e11e364a75d994011181288273a62997df4ec4c3cd7d79855ab03da0b73b5268801141f6026c4629bbfc5f1ca080fb714bbb7ab78df +binfiles arch=aarch64-linux size=69 bin/aarch64-linux/disdvi bin/aarch64-linux/dvi2tty name dvi2tty.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dvi2tty -containersize 75184 -containerchecksum d3d0323ca9dcae29893b9068a608dcee6259a5da36d2a3e1a01f05eb350d450d6f7ff4213f4f345b0472d91e677782951f291257caa8b71dafc80b149b7cda30 -binfiles arch=amd64-freebsd size=47 +containersize 86224 +containerchecksum f4446e7aca97c4d367fcb3fa8a00c2e2a001a3830db19c20dc7a4b71fdb49434e7835b4c31a918ece59e7226dab0d465660ef586640080861fde9043a79ae946 +binfiles arch=amd64-freebsd size=74 bin/amd64-freebsd/disdvi bin/amd64-freebsd/dvi2tty name dvi2tty.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dvi2tty -containersize 63848 -containerchecksum 8abce0cf690c5e2b5ba78a9b7334332f3bc3fc6eb1e944a03e0f8c90d98de8a6b5f71891f7fc3a36fbe6619bfd4706c6b5a35c60605c4660080e03a83ad5e6ac -binfiles arch=amd64-netbsd size=47 +containersize 73100 +containerchecksum 62555daee83d1daaf81fa7b61ffde6c8870d1e88e47a4af867710aabb2466b0745cf5fb718476c63bb95caa08405a677a731a504c47d3a45e0ac7d4e439a23bd +binfiles arch=amd64-netbsd size=78 bin/amd64-netbsd/disdvi bin/amd64-netbsd/dvi2tty name dvi2tty.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dvi2tty -containersize 59420 -containerchecksum 29586151f83e25de3154ea0414dd37393fa6bb07556841fe6d110c0ef7a3aa4f6fc6fe5fc3473d3ea545ef5b5376233a4346a1881e36ba1255562c28c84bfb7d -binfiles arch=armhf-linux size=37 +containersize 64844 +containerchecksum cd3ad91225973628005dd04272cc9600156b7d1983a9a9133efb62ce202014fa01f96b32d043a147f97c0e233fbcf8049e78baa846f5c7e83e2cb77ee7474a60 +binfiles arch=armhf-linux size=58 bin/armhf-linux/disdvi bin/armhf-linux/dvi2tty -name dvi2tty.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvi2tty -containersize 23788 -containerchecksum 6d19c4abfe0cfb868103e275808eb018cd88c20d061dd6928384b7cf88fb6ac60ceda281065b47ba6180b00e63257d6cf42a617649834faee12828de16196941 -binfiles arch=i386-cygwin size=20 - bin/i386-cygwin/disdvi.exe - bin/i386-cygwin/dvi2tty.exe - name dvi2tty.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dvi2tty -containersize 68552 -containerchecksum ad604184fc216c70d6c8bc337e66b1c32d670b0d9ad0e8b9c6ab2b383ce9f29731a066ca9aa973bb3586f8470d5b0a572caea3bd6bdda6859de3123efb1c80f4 -binfiles arch=i386-freebsd size=42 +containersize 79596 +containerchecksum a5fd774b25f88e3f91832d56a63ea60a8b5506066f9dd2c6184cad54dc9f90503db94f2d6e38d23dcab4ac5012aaf41b101d6d1810fac152821d8c6f568cf11f +binfiles arch=i386-freebsd size=67 bin/i386-freebsd/disdvi bin/i386-freebsd/dvi2tty name dvi2tty.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dvi2tty -containersize 71680 -containerchecksum cb9546409a698dab711b036eb13faf049bc26a8343a6ad01cdc48a9e2e7b85a3f599772f843c96e35a7f576e507cc6c412efabfeb773b731ab70f925294d25c4 -binfiles arch=i386-linux size=44 +containersize 82780 +containerchecksum 7992f8759378d7a0cfa8a33bc97bafbe75b1697575f6d4d4dc4872565c5feb8d5ea5d8c1d21add53571e4427f906f352793ef551d0ac70b5f4d51cee4fd0a490 +binfiles arch=i386-linux size=75 bin/i386-linux/disdvi bin/i386-linux/dvi2tty name dvi2tty.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dvi2tty -containersize 59520 -containerchecksum 0f382dbb628da2b6c9fac0775adc5e735adb517e6147c070ff968514699ce37e690b540f087105e3738252535421f055d58270f9cfaf70d9f96233f576d1e62d -binfiles arch=i386-netbsd size=43 +containersize 68092 +containerchecksum bba056be363b34ae61de73d5f87544419d9e43ef4e5dec35950f73db725025cc74927535c3ba1948ee67d5351454caeef8aeaf03b68fc8a6738f6bdf4bf29f9a +binfiles arch=i386-netbsd size=71 bin/i386-netbsd/disdvi bin/i386-netbsd/dvi2tty name dvi2tty.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dvi2tty -containersize 68128 -containerchecksum 35fe1cb9a452924f60d3c06a6c0ab3f43ace4ccb924aa2463dbe4d32f687450880aa9c0e04cd74c5a5e4bcb1f94ac5f869d7a72125a8b75c58569329f81bec0a -binfiles arch=i386-solaris size=40 +containersize 78404 +containerchecksum 964f23fc1a5cb7c6826f40eee93627c2f0aa0bfb42ccbfedeedab86c97b4b3713a91462016e026d131265bb4b559f09428568d0ed9b901f5d60b28f200648284 +binfiles arch=i386-solaris size=64 bin/i386-solaris/disdvi bin/i386-solaris/dvi2tty name dvi2tty.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvi2tty -containersize 125356 -containerchecksum 4e29bcf65b0347cdf8251b44b501f54d80b5bdfb281a0cf390886fdb1831f4f314b4f8ad05a1a1a451448ca21b10241e298ab96c15647265006ebc8789b6481d -binfiles arch=universal-darwin size=121 +containersize 146188 +containerchecksum 5bef807c6d55fa57b00a9f417d67a12486013ec2ba14ddfa43ccb03478e094887ed0ea12d02ca619298b3652b2d7f018c6837bbea9b064beb590d2e70a39540a +binfiles arch=universal-darwin size=179 bin/universal-darwin/disdvi bin/universal-darwin/dvi2tty -name dvi2tty.win32 +name dvi2tty.windows category TLCore -revision 58783 -shortdesc win32 files of dvi2tty -containersize 88180 -containerchecksum 2a197d88c5613909a4e8c5cd6609289dd53324eb9e1be98a7f6989398b0dc93a3c74b751f76867ce0a8cd901918c183b7fff5153448e6a8fa3b00832813ac354 -binfiles arch=win32 size=53 - bin/win32/disdvi.exe - bin/win32/dvi2tty.exe +revision 65891 +shortdesc windows files of dvi2tty +containersize 38872 +containerchecksum d7ddd21e849fa5a64ec257d28fc427ff946545e4306622a3f3cfd8b8a54949787b971ca7bb92e1e9aa098d53848407ac5dae74e095af06c5c84adb5ceeaf968c +binfiles arch=windows size=21 + bin/windows/disdvi.exe + bin/windows/dvi2tty.exe name dvi2tty.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvi2tty -containersize 24952 -containerchecksum 4333dd71618a60a7d174503383a244427756eca84557e0e82f9c429a48ff414b10d9431a565d2da75e48af68a51269d719ec60522ffb71a8f9b6a20d24eff4a9 -binfiles arch=x86_64-cygwin size=20 +containersize 25836 +containerchecksum df8cae687c5f6f4e0b6b291ebd5af08dba26d667ac7e0b9e8f5979d6507f9fa94404788af0c2d26823da166c4639f83e7e86c29117b029b4c07ae4f21f6aa658 +binfiles arch=x86_64-cygwin size=21 bin/x86_64-cygwin/disdvi.exe bin/x86_64-cygwin/dvi2tty.exe name dvi2tty.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dvi2tty -containersize 68424 -containerchecksum 32818837f189b679e47f09b542e97661b9de306be47cbde6e5108b5e6e2e809c34a803538d6dec108db81f1c82303324cde9cb475afe952d6c503fbb16d6986b -binfiles arch=x86_64-darwinlegacy size=41 +containersize 77460 +containerchecksum 3e8f09955a5d57528e4abe031615ebb4729c24657b7cbc8451992569c0c6526045002e13bc966e37ffbc6b85d516b30d78b845af175586793ae6be257425fc83 +binfiles arch=x86_64-darwinlegacy size=65 bin/x86_64-darwinlegacy/disdvi bin/x86_64-darwinlegacy/dvi2tty name dvi2tty.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dvi2tty -containersize 69604 -containerchecksum a4fa8baac7983cd8b8fbe48a09a00256a809c793741235135a7f473c467f7b46152f786de276539cbde3dcdc26abdbb4357d44a1a1e3046542b8e39588b54a98 -binfiles arch=x86_64-linux size=43 +containersize 81336 +containerchecksum 03923ee2577599b2a2eb3d98d4a63b84857bec5af4aad912de41101aa527f88e6a4efb05b83e7d7e7b45e4f40242526a97a7940727be3b3751fdf0a038df377c +binfiles arch=x86_64-linux size=73 bin/x86_64-linux/disdvi bin/x86_64-linux/dvi2tty name dvi2tty.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dvi2tty -containersize 71884 -containerchecksum d21bb65b68775d438bce7a94fd0b261702d98122b6cb5457c82e9cd5c4f5ec8cc9703e88e5651fa8c53d70d3f388c51eaab69bacfcddbc278c649873b475e029 -binfiles arch=x86_64-linuxmusl size=43 +containersize 82124 +containerchecksum 6c7dd7e29d140c0e5583a09a7d503b21100db62824104595fe8cde65890db0d122ebd7f1cb2163ab303bef1462f2319714b5534c82dbbe5402d5dc628841c07f +binfiles arch=x86_64-linuxmusl size=69 bin/x86_64-linuxmusl/disdvi bin/x86_64-linuxmusl/dvi2tty name dvi2tty.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dvi2tty -containersize 73976 -containerchecksum f92c2524238c00d805e7ed102b5183c8d01087894733e504f123475f5503809b4e8a4cc7653dbdd2fdd766d6e751c162946adcb0a59618b46c5e7896c73daf68 -binfiles arch=x86_64-solaris size=47 +containersize 86352 +containerchecksum e846b35647cf05f65259666aa1e54c790342ee6fd47fbdc940f62988e3639fd0d0bbc8ceec0a62c1ca4291d01e2e4c1cb5a36617db57aa7f1b91b8c324c5d318 +binfiles arch=x86_64-solaris size=75 bin/x86_64-solaris/disdvi bin/x86_64-solaris/dvi2tty name dviasm category Package -revision 56373 +revision 64430 shortdesc A utility for editing DVI files longdesc A Python script to support changing or creating DVI files via longdesc disassembling into text, editing, and then reassembling into longdesc binary format. It supports advanced features such as adding a longdesc preprint number or watermarks. depend dviasm.ARCH -containersize 10136 -containerchecksum 9f726816ddf7a52b797cfde03ffb863fa8a1b98068bc75da1ea86f57774bab248b4d4225f936b4cf3388dbb776e775527e4125ff5d49d76088e4f5be7125f4e6 -doccontainersize 24352 -doccontainerchecksum b2eecfcb0e665059843872426611e4a5c8092a2dfe51a82593803cb84b18147cd28fc18fe2d9575d24fac1b04501f1e90a2f9f3c4094d452bc51b3a4db603f9d +containersize 10304 +containerchecksum bfdc888c7a69d103d9c4548ca0465223a4e16be51a5c36f4c7a9d1064a553f60e6fb5d197a6be72e2be076c5012d7d3c7f871e217777d0be0c0e4669c1602a6c +doccontainersize 24368 +doccontainerchecksum c1be5541992450e6519c1768ea21d342c5e41fb4da6547828c89c79bd8abf77634ae76c3e5c06b608172234d117f5d5839600031dc4fb0cbbaa493d0bb1154ac docfiles size=10 texmf-dist/doc/latex/dviasm/README details="Readme" texmf-dist/doc/man/man1/dviasm.1 @@ -95782,15 +99486,6 @@ containerchecksum b7e29a574ed550c45df2092338462f6d5be671bfd5dc9fb2e5a41693087070 binfiles arch=armhf-linux size=1 bin/armhf-linux/dviasm -name dviasm.i386-cygwin -category Package -revision 25941 -shortdesc i386-cygwin files of dviasm -containersize 340 -containerchecksum df249d3e4471b3c65b0fbca2003b1a19b83a82b2495e4d1b5927d010c5cf393fc4e53e3112cfea4f4523e431f5158337b2d0d02e9a706a8c1f640a21685feba0 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/dviasm - name dviasm.i386-freebsd category Package revision 16472 @@ -95836,14 +99531,14 @@ containerchecksum 37242da97b6d4845249a412a52f67e17b855b3746c343160126c57f57f7d20 binfiles arch=universal-darwin size=1 bin/universal-darwin/dviasm -name dviasm.win32 +name dviasm.windows category Package -revision 15404 -shortdesc win32 files of dviasm -containersize 684 -containerchecksum 5b1931d996b64fe0b82f6085114ae39a09b48a724cae619b65e561e820737ae42863573361afc78eba878260538d240bdced3d42643eeafcad2bec8aa3347abf -binfiles arch=win32 size=1 - bin/win32/dviasm.exe +revision 65891 +shortdesc windows files of dviasm +containersize 2304 +containerchecksum 966298ae46dc4eee0be0f3997a7ba28901890f95f29afc9d53dbd1edf5f05e4fd765dfaa3f3c80446fb70b05690eb8132e5c683879585f9037544160fe520d06 +binfiles arch=windows size=2 + bin/windows/dviasm.exe name dviasm.x86_64-cygwin category Package @@ -95892,7 +99587,7 @@ binfiles arch=x86_64-solaris size=1 name dvicopy category TLCore -revision 57972 +revision 66186 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 @@ -95900,14 +99595,14 @@ longdesc file that does not contain such references. It also serves as a longdesc basis for writing DVI drivers (much like DVItype). depend dvicopy.ARCH containersize 588 -containerchecksum f288fd83823c4cd7e01353dd1d7eb8d09cabfd3dce4c5db482e4063d187ea57ee1d2027cedd3f93ce373e03fa1d840075d6c05b27bd4ed084f0c354da22cc9cd -doccontainersize 18304 -doccontainerchecksum 0bafb5f769c7b59551028ebe29e30e3761a0f78ff0515a4414597b07b27b633ab537b9b0409437ec05e70889ff14692fc5fa53ea5aee9a0ab2ec7d0b34d2621b +containerchecksum 60f44492a3d1af9686de3118af37f1d054068527f50765e21773f76ec406b4ec0f419d6298dab6b5d33e2fb740bd740f2037f711e8993bf9d3ab8f611bebb2d0 +doccontainersize 18460 +doccontainerchecksum 40dd53fe878937846f003d3b72b7d474c13ad07156e78679501d01c020380a3fcc450aee7a72c0155a950429c258b8fab253a7ce3043d58d88300d0c1037da56 docfiles size=7 texmf-dist/doc/man/man1/dvicopy.1 texmf-dist/doc/man/man1/dvicopy.man1.pdf catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /obsolete/dviware/dvicopy catalogue-license gpl @@ -95916,160 +99611,151 @@ catalogue-version 1.5 name dvicopy.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dvicopy -containersize 54144 -containerchecksum 4d679ca6e9ae54f192f6e8e7a14ff3898dd6d08bde11689ec377a7ed3e21fe4958b2c351a9c18e7fd31eb9279d2b37f88b1b42e97ca4ca4ddb7ee6496fdf30d2 +containersize 54296 +containerchecksum 2181984a36ad6af44143dec249aa73bf5c6201c415ed3fc87ad9e249451ce1007205049649628c49773d196c235587e7550ea537e4e5cf4d847385555cc87255 binfiles arch=aarch64-linux size=35 bin/aarch64-linux/dvicopy name dvicopy.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dvicopy -containersize 60240 -containerchecksum 35cb757191685c33ab274784f4306f6c871d431027d637d9d0c93be3995506bb0df860ba77ea24dadb758a0aacb2bc662dfaa0cff4c73a9a08bf3b06aeaef58a +containersize 60416 +containerchecksum a7c836f8e391ce04772395f728efb643e4bafbe4284c043c573dae4f20bf16c6f337ecf6def793c146ee0a292b26c1ccb992180e77717bcfbebdcf64be5ac77c binfiles arch=amd64-freebsd size=35 bin/amd64-freebsd/dvicopy name dvicopy.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dvicopy -containersize 51156 -containerchecksum adf23bfc702e7d46147fb2f4c8aa19d2c39411d81aa65e865af085d2d1909c3e7bdec01a855af34d9715a553e80b1f70da499e5158af0319c0359275ea09df29 +containersize 51236 +containerchecksum b867a5215501ac672c54e1bef8d74bc4714536de84a56db41fd424439624cc0f0e00e42c04ac807cb1e358e8321c2540bbbcc9fbc855a34a5db1024c4db19ef9 binfiles arch=amd64-netbsd size=39 bin/amd64-netbsd/dvicopy name dvicopy.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dvicopy -containersize 43648 -containerchecksum ec5c3a681fffb59390256de171d2597c82ef4a6aea0215a03c40e3b1bc06ed3f7e40fb8aea3dfda9d90329bb50b84d5ffae83d59cb95df595320a9b804c5bca4 +containersize 43764 +containerchecksum 2130ed27daf21835384e847272b0aa5951dcf1c7eb58b5accee928fed95a0ab8b7d15ac9804af0267444489abcf13b539c6e52f0d1e098ceb15e9176f6d43cae binfiles arch=armhf-linux size=26 bin/armhf-linux/dvicopy -name dvicopy.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvicopy -containersize 21780 -containerchecksum bc314cec4a5ace2ef09eb5d7993c692fb2c402f0cd2b80011ac0ddd713306fdaa00d5c5836d16f23d859cca214185837d09b8d6f5c64ffc796f54dd9f1964c18 -binfiles arch=i386-cygwin size=14 - bin/i386-cygwin/dvicopy.exe - name dvicopy.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dvicopy -containersize 50468 -containerchecksum bf7f3ab0f36f783c59d1a759f26de6d5c060e9732bfce0db43f433df71dcd8f91f52eee2a6326ee1259642f086060e645e38323f30c96a15db49423b7a16be02 +containersize 51440 +containerchecksum 449a6ee1fd31b2cb19b4e5b271d566c3570fd10d91a66ea7e0af1817c27bfb309ac2b8b8fc1d4f63f3227401784376a4f836b991a15d6abda8ba7cf2f23a5984 binfiles arch=i386-freebsd size=31 bin/i386-freebsd/dvicopy name dvicopy.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dvicopy -containersize 53992 -containerchecksum 9aa1041f91272e8e2f7803442d462df31081239ddfde06bbc5f52444db5b2ddd313c06de17ba8bc76a301196a69d5522e5c3a0b2a9e8bc998d4a3fa698b2cb4c -binfiles arch=i386-linux size=34 +containersize 54884 +containerchecksum ecdce35e3e4a46654c7561c61045d3db8f72ebcaf12c43a4f3d24774688c08a2d3f0f23cf4a062f2e27218605c2e5a387eabd51bc0df08cb1a57e7c2a3d115b9 +binfiles arch=i386-linux size=35 bin/i386-linux/dvicopy name dvicopy.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dvicopy -containersize 43636 -containerchecksum db0ef71d81202fc0724a936432df6ffebb232baf44ef96331713d80995dc01926fc5841cb068d770acf493218d6006a86026389c714f777720a0a64bf7d2a6bf +containersize 43768 +containerchecksum e736d1caef9eda12d6931de8fdc9af37e48d1cbe1c950b57f1b90d744d703f8629cb99a8dbb32957c41910cecc0fdf85e7706d8cb65cc199b2063edc4b72b5e0 binfiles arch=i386-netbsd size=37 bin/i386-netbsd/dvicopy name dvicopy.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dvicopy -containersize 53412 -containerchecksum 0ac72a1caf51c7aac8c8a26e183b13fde0130ab8245417cf8dd79107195786112078446499cc955950465d9762ebb5d46f17fcd7747f052b9fc49d397462a6ff +containersize 53544 +containerchecksum 7e7d8fe75cb3965e7628e3c57f6a3b8b53b2006e57678307043333729c1f5f701a4ca1ec45dc4e61a8c04fbeaec4153859b99b2f2f29e2c938876f5d278445c2 binfiles arch=i386-solaris size=31 bin/i386-solaris/dvicopy name dvicopy.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvicopy -containersize 111180 -containerchecksum 0a9081d27472e9080f6e8ab7e52dfaa183696ce68044e50d3544d3f69667821127a9d1049fca874dfeb6b416e168de850f7c4f01af50bac017dc149951481585 -binfiles arch=universal-darwin size=88 +containersize 111796 +containerchecksum 5e7ccafa83957385544c888341697305293f2596ad55a5bb0ad0b8d75445df6bdf03de8ff88a42346b1dbe3a68f74e4c4bd2edb6d03fc6aa528e584600fa9ef3 +binfiles arch=universal-darwin size=92 bin/universal-darwin/dvicopy -name dvicopy.win32 +name dvicopy.windows category TLCore -revision 58783 -shortdesc win32 files of dvicopy -containersize 24368 -containerchecksum 90e0809bf1dae5d519fa0d1394df6d551ed6011a612e4a922ebbc84fe2f554c7c6df980e4c09cdabf63aa031ee0c46237fcba2d77d03d7d2a037ad4a7b832c5f -binfiles arch=win32 size=18 - bin/win32/dvicopy.exe +revision 65891 +shortdesc windows files of dvicopy +containersize 28252 +containerchecksum d69d71cd6c1957fdd3bb4d76c5f1045615b9668cdd3dc8b9dcc9877c0a37ebe57026d57b2e108040cfff2bb0358d1c6bcc641687aaf3ea961b99434431c12be0 +binfiles arch=windows size=15 + bin/windows/dvicopy.exe name dvicopy.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvicopy -containersize 26052 -containerchecksum fb69e6e8ee1a1b85032e7f5bba798c76c831b2f5eaab97b798f56852360f68bbdc19279bff013d11ecc1374c9041e5b7e6d2d8d0d9c1ebd9b363b6c94c3b9ba6 +containersize 26252 +containerchecksum f137b6071a0b3a6cebf36c337f57f9e6888250fb4db5caac8bfaef62939da69709c4136f84d7f104229b01a3814277bc1e0ecadee05e3913481a3e24d4f104ee binfiles arch=x86_64-cygwin size=14 bin/x86_64-cygwin/dvicopy.exe name dvicopy.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dvicopy -containersize 54932 -containerchecksum cb3c6aa4d9064bc0e8af68bf3f9e5b26058e90eb81b20e6c7e9cb3d662936f49dcfa4284041c6a8d87a29cd9342712e6958aba7b533653820b6eb61d57a2fef8 +containersize 54908 +containerchecksum e2b8c897b6dd6537cac93d1be287de74b89df89a73d3021fd83a3d8a07c51ae9e2653ab5767582f1c1889c0873124c961f610fc82a1530284ad319af165faae6 binfiles arch=x86_64-darwinlegacy size=31 bin/x86_64-darwinlegacy/dvicopy name dvicopy.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dvicopy -containersize 53652 -containerchecksum 5bbf1839d5a0bc60d95ed70917809d20dd399af9d199280a37109a54bdd01eade84808049561542ed2d8fa0c3a6f3702ce9426b102c1ff9e11e92d46214ad886 -binfiles arch=x86_64-linux size=30 +containersize 54296 +containerchecksum 855aaabffa05c7e2382db42823e1793e00a5ffeb26a2e86403541bb5f63ea778d2aa1fd6244ca82e8694d372a9afbd4c6d868369a00c8d74eed51aa960cb123c +binfiles arch=x86_64-linux size=31 bin/x86_64-linux/dvicopy name dvicopy.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dvicopy -containersize 59156 -containerchecksum 03e1e0ec2944c7bc4f0ee0ae4fe63ae053a6500a6225cab250ff222058aef69ddb514c5068671cb59179285d79dedadd48598d9bf6262f741d8f34183cd81241 -binfiles arch=x86_64-linuxmusl size=34 +containersize 59072 +containerchecksum c695f28649346ab9ed65f99d4912f9cef25a7af38ac7780255d53cfd264e80d48c6d27fab899f276c007d6df896383d4a5f1fb186a3779f8bb28ca86f4839edb +binfiles arch=x86_64-linuxmusl size=33 bin/x86_64-linuxmusl/dvicopy name dvicopy.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dvicopy -containersize 60104 -containerchecksum 2999b8ca957b3a52c4b077de1a8cf18292d6049697793503fe9823b7664d6b11fb3c7dc5f6f2e60f9cc64f2112435bda9ee757db5fd9138174db9a19076754fc +containersize 60208 +containerchecksum ad9212734767b468ffad1d0723a79dfbe20f527c370c21d8acb3f48659e0ba8d6f5f997ec902271d87dd6f854b2ca9530cb2143e46af1a04171212cea598b4ac binfiles arch=x86_64-solaris size=36 bin/x86_64-solaris/dvicopy name dvidvi category TLCore -revision 52851 +revision 65952 shortdesc Convert one DVI file into another longdesc The output DVI file's contents are specified by page selection longdesc commands; series of pages and page number ranges may be longdesc specified, as well as inclusions and exclusions. depend dvidvi.ARCH -containersize 468 -containerchecksum d4589c7c034308547b4970104f6396ef24a15be22e034ac2f4f04a1004915c8d477e64e2c4b61927f43313b90b063602a4bcd45afb1bc33ee395e0b7caef202b -doccontainersize 19324 -doccontainerchecksum 865f4e96bc8ff13005350800014ede4c95671db1c45f35e37b153637c23834d34054e3aac1b6033c6a219f9f123563b1d0cc3093c901f67dba7e33e65ba81646 +containersize 440 +containerchecksum 81c58f4e1352a8e5133de1ad86b6b37c47f9b0d29307354001693ebc4975c30808e349c73a477283a16df4219fd5702b733ecb5abe2043aff1d1b537b7fa6a3c +doccontainersize 19328 +doccontainerchecksum b571021445b822e9824782ab35a0743ca23f69b809354dea6676c58209a451be5bf595641fbcb461211e6dec15e765bbfaf8164c0ce1ed4204ea72a2073ecb92 docfiles size=7 texmf-dist/doc/man/man1/dvidvi.1 texmf-dist/doc/man/man1/dvidvi.man1.pdf @@ -96079,149 +99765,136 @@ catalogue-topics dvi-proc name dvidvi.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dvidvi -containersize 8588 -containerchecksum 20da026e2ef1016648a3cc389b7f3ba0ec63ae90e193c0f301266458513e827118a60b5961d1f761edc7aa25c4091146e16ec2f0f324d520be9b644318f29f9f +containersize 8592 +containerchecksum 677f44343cffeee48462bd22d5b8ce4a68c302bbc138ed915a96e49896b7ccf6595d219d550882c82fdbc09559ef78d5a8938eb6920f91b459d20fcacad1cba4 binfiles arch=aarch64-linux size=6 bin/aarch64-linux/dvidvi name dvidvi.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dvidvi -containersize 9928 -containerchecksum 403f371bb4ad31aa41ddfd69cf97b5404b58dcb8fd283b76f23967ad430dde84a9d59e6ec6cdc8460ff7ffa7f9f65e564686fb93e01764445871ce712dd6ba84 -binfiles arch=amd64-freebsd size=6 +containersize 10004 +containerchecksum 47aec8aa33c279334ef7dfc285fdf6e789305517b1726bc3471c0f144c93cdf4d2e22689fa4789c5a671141d423364cdbe2c969a36192f3dba70d4bcbcbbb7fe +binfiles arch=amd64-freebsd size=7 bin/amd64-freebsd/dvidvi name dvidvi.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dvidvi containersize 8688 -containerchecksum 5df32bdc21de52a8644f7c03aff081a7faf4426141d36509874ce371ec1e4fb4cf5192e0ed7cad38b4734f59df7968e243e4b14d3cb719bea8857f37a45598e7 +containerchecksum 0185a26149dbb4dd638f6fd90b77fd301112410d62ec39fe2303356caf7a636a5d78edef045e0ae3652d4df307570aa3fccc835b57837ef39d304821516dc0ce binfiles arch=amd64-netbsd size=6 bin/amd64-netbsd/dvidvi name dvidvi.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dvidvi -containersize 7588 -containerchecksum 14ad35b16a1636603ec86d13199d3fb8c29e5b3bea319ee3291f0bfa4a94ba941f9d48c84aa9485038f258876db9a19e7455e066952d5a7242c5adf2605ce1c8 +containersize 7596 +containerchecksum 43e7a59289445da33e8910d6979a9cd52b322c823db3777e9e22cd355a0e92241aeabc0f66d4a4b4bc01e059b385f25d092a81546039db4ec413e5fb00ae2c7d binfiles arch=armhf-linux size=5 bin/armhf-linux/dvidvi -name dvidvi.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvidvi -containersize 9020 -containerchecksum 3fe5eae9b977d5b61a9ee4cfc34607e6e78086a6e6057f09b08a88b54c99236713b1f2d9754f57d08378381fa0001161926db9500f7e33bc4249ff9197d1a848 -binfiles arch=i386-cygwin size=6 - bin/i386-cygwin/dvidvi.exe - name dvidvi.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dvidvi -containersize 8672 -containerchecksum 705da03074c8f289a4f2e192687bf7ec4335b9b629433c99f0a32c882fcc60fed34313ebf9b7e08e29497dd61469fcf202ba436d9c3b1433f51a2af3a1854fbe +containersize 8940 +containerchecksum 7c06360427101af4d70ce472d436f272e17bd8a06347a2410d97035bff7dfc0e03180ab2c3f68f0b4227d2c0f989b1e91ddcc13dbc534f15951544573ea29389 binfiles arch=i386-freebsd size=6 bin/i386-freebsd/dvidvi name dvidvi.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dvidvi -containersize 8036 -containerchecksum 1f34a0e2a6d3bf12d50717007443ac97523d9e2f420a1f799ca89fe5d96dadc47431fb640987cc7aad677c51261252938868a04614b6fb29e2a9017f199b5acc +containersize 8208 +containerchecksum 06bcc539a80de0c528f835c3113894493c957ed4de7271e132394ea960ad5431fbbf126a3eff489329377e46335758dd54756ddf02daf8c1ffe526d2c5a0d152 binfiles arch=i386-linux size=5 bin/i386-linux/dvidvi name dvidvi.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dvidvi -containersize 8032 -containerchecksum 15f0941949e7e8dbf5283167489e682e09d658a3e4e038a98a406c72a4fb73a7f3e5b9bc6e929a667e78a19869a80e72b292599596cba34e53cd9d93521b9a2b +containersize 8048 +containerchecksum 8ebe8cf6e93f0519a4bc4bfb46ba64db1c89f129a09f47213160b17bbfdca01057f81c3370d4c9acae3fcfff4a39dd03102f045885c578b3b50f0d24f8bf9386 binfiles arch=i386-netbsd size=5 bin/i386-netbsd/dvidvi name dvidvi.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dvidvi containersize 8900 -containerchecksum cb575684996932da90f053dbb012ea75ec818de7a5e6fea96de42508f209384ce96ddd329d3faa77f02c964a072674840246139a4fe98e4464eebc379a913d70 +containerchecksum 24767bcd3532c0da0391f8df761f00d0fde2e10b9f7dc83e39661a4bfa8f1951097fd2a7674f255a3c132a7b6376251301249eac5951fb5d6fdc453b3f35ad78 binfiles arch=i386-solaris size=5 bin/i386-solaris/dvidvi name dvidvi.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvidvi -containersize 22292 -containerchecksum f1dbfd643685fa64630e8fe764b4a61b250616752a886ed6c4dbdbcc6537141448b16a8cb4a110c2862c9185a9fac6190cd34105f4df2df2e2a8fd49f84d348b +containersize 22384 +containerchecksum 3f58f84b35211ec3e9b39eb0e82d5f2eb67aa37e5643a8b14f015c3c432096f91343c1079a46b0e6ce04ade54a4207457690a599424bc75a0ceaa9b72734ff63 binfiles arch=universal-darwin size=38 bin/universal-darwin/dvidvi -name dvidvi.win32 +name dvidvi.windows category TLCore -revision 58783 -shortdesc win32 files of dvidvi -containersize 10632 -containerchecksum 50f74051bb1c4186ee1c9f0995c108ee5524aac6a8ad97da4b742c86cd9f93c0260c2fb333631b2b9a1004dc2b69342ed252ab669e834aa778958161fd1fca1d -binfiles arch=win32 size=9 - bin/win32/a5bookle.bat - bin/win32/a5bookle.exe - bin/win32/doubside.bat - bin/win32/doubside.exe - bin/win32/dvidvi.exe +revision 66045 +shortdesc windows files of dvidvi +containersize 9792 +containerchecksum e86b35e429d33f4408a62d6997addfd6d59498d46896f1f5647c972503370e8764fb166e321921a4efb38d46f0fa8274ea8bfc430a04cf90bbf19aa1649113b6 +binfiles arch=windows size=6 + bin/windows/dvidvi.exe name dvidvi.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvidvi -containersize 9468 -containerchecksum 4bc9c5d078a7623446bd3db889dd9343c9ef255c9f1a23c2b6b27c52b981ad01152686e47a0a808b1a855e7a4552784edf4b8611083ea611b9011bb7f834069d +containersize 9440 +containerchecksum 370aa3157f72abed19882055f4fc9820a260a7a619c1d2bab859121b0a69103b3ff54c1c2f68be0f93b788042772a6f75fb52178f0c1744a2f5fc23d3e80b601 binfiles arch=x86_64-cygwin size=6 bin/x86_64-cygwin/dvidvi.exe name dvidvi.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dvidvi -containersize 7968 -containerchecksum 99344628dcc6fe76101bf5cb61e6f8d104cc5e0a74865edcf588a038689e24b1ba31521d7021eb4c6b210dab955971bd70df99201fa1c9f458b0822dcaf2c7fa +containersize 7972 +containerchecksum 7b4bb7e40faa4ee04fc730b777b776ad9f10f7ebadf17c4200cad1ed6ddc5fa4c72b1cc5a136d1231b56f089eee382a7d28cdc2c8a1a22032ca1bccf9e34340e binfiles arch=x86_64-darwinlegacy size=6 bin/x86_64-darwinlegacy/dvidvi name dvidvi.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dvidvi -containersize 8328 -containerchecksum 1e339938968d6834c7634ff58f58de7dc8fdcad422bbd55ce3e1f0f721854d96979201998a69cda9d5914992663d9f259698b6d9efc242043ba2350015d260b5 -binfiles arch=x86_64-linux size=5 +containersize 8324 +containerchecksum a12043a5babed6caeaab813df5395d134c70fb0241bd46939b01579d777d8cf95b14304b563b3d7fe5cdd61545c927fb0be3677843f4a89ff005837db59ec7e5 +binfiles arch=x86_64-linux size=6 bin/x86_64-linux/dvidvi name dvidvi.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dvidvi -containersize 8580 -containerchecksum 5ab746eeb82ad3670ab5cb49666d34b953d56f53306ab76314918b549fc5fdfebce3b444b50f53c49b56db2cbf7757b21033b424286db486c8d8a6da904031c3 -binfiles arch=x86_64-linuxmusl size=6 +containersize 8380 +containerchecksum 1836f87d1d0dec6b291038f38589c2c45114bec665fd4087c6aa5c943db01d2d77d261a0ebb7f71eca6abd03a520ca7d310fc460b92df04bbd49094b571c2d6a +binfiles arch=x86_64-linuxmusl size=5 bin/x86_64-linuxmusl/dvidvi name dvidvi.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dvidvi -containersize 9412 -containerchecksum 77f00f081cbc1525ca9ed41066b0f243cfd6523937c7f2b2cf48ddf7e00ed3e5cab31023e281cfd8dfaeba9fcefef0e065a39258c40a747cf4f05af8e7ff63e9 +containersize 9404 +containerchecksum a1b684a430584d277757e1093cef8815ea447642873934c45cdb0b6d03ef7514846f962aa903d52c5f89502e1ab189353be1dd7db34fe5af91abb43d8f06d1fa binfiles arch=x86_64-solaris size=6 bin/x86_64-solaris/dvidvi @@ -96259,15 +99932,15 @@ catalogue-version 1.00 name dviinfox category Package -revision 44515 +revision 59216 shortdesc Perl script to print DVI meta information longdesc The package provides a perl script which prints information longdesc about a DVI file. It also supports XeTeX XDV format. depend dviinfox.ARCH -containersize 3540 -containerchecksum 33b37192832362c170575d1770b0e8da105ab0f9197ee52ff86a9dedfdac718fd7f3ca87d6f3f2075803fcffbc2f3739b806b1088bd7e2a21beca53292d918f0 -doccontainersize 2168 -doccontainerchecksum f5f84a2df36ee93ccc0a8acb687fa4fdc6441ee6b0c76fe4330cb28ff2e5106014df5f367d5f2821c10864ff16988837099114ce331afe8a303e0f9102d92193 +containersize 3628 +containerchecksum d366c28a88f488418405944e299b8e8c681a2bfbe1fb8d37847d89920ab41d3103d52072c7455ecec2451702cbbea02971ac6f1e1d609bde9a2f5e8abd345ef5 +doccontainersize 2164 +doccontainerchecksum 4da7f09620beb3aa7e5a572f31c1d53466607ec0f6401b687ac1da624ea435f0efb3e0e2074252f49a720cb6d53412658a8a45dcba5553315fc9423233755dbe docfiles size=2 texmf-dist/doc/latex/dviinfox/LICENSE texmf-dist/doc/latex/dviinfox/README.md details="Readme" @@ -96277,7 +99950,7 @@ catalogue-contact-repository https://github.com/aminophen/tex-assort catalogue-ctan /dviware/dviinfox catalogue-license mit catalogue-topics metadata dvi-struc -catalogue-version 1.04 +catalogue-version 1.06 name dviinfox.aarch64-linux category Package @@ -96315,15 +99988,6 @@ containerchecksum 13182f96d2c7f45a1cb0d059f71764e948bf14a481cf31bfa1c3aac9704c3d binfiles arch=armhf-linux size=1 bin/armhf-linux/dviinfox -name dviinfox.i386-cygwin -category Package -revision 44515 -shortdesc i386-cygwin files of dviinfox -containersize 340 -containerchecksum 6e27de0136cd979c5b11b05a59c7383d709f86b808bd7ad343ffe300a3743d60ffdb6533ba39587335e26dd451f6db983102044fd0fade57e15fd817accd3528 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/dviinfox - name dviinfox.i386-freebsd category Package revision 44515 @@ -96369,14 +100033,14 @@ containerchecksum 367de99c4e70c216c040c6176ebc82180943d129639ce25c932cf176b00f47 binfiles arch=universal-darwin size=1 bin/universal-darwin/dviinfox -name dviinfox.win32 +name dviinfox.windows category Package -revision 44515 -shortdesc win32 files of dviinfox -containersize 684 -containerchecksum a68fdc8f84608d8850cc57b1dfa68ad2013f90aed1a6f1f397745acb216f291cca5fe0643faf94f8e3b2ed40520cc2fe462069fb5d11008f534d7601fc528616 -binfiles arch=win32 size=1 - bin/win32/dviinfox.exe +revision 65891 +shortdesc windows files of dviinfox +containersize 2304 +containerchecksum 94aacae85d09935484dbf3c81d69f804e9b1fe7ee967305ef07eb03fa688e8f82869f9e55b29aa5d29d8abdc9cde60ca5812525400749b8977de88a9d1c185c1 +binfiles arch=windows size=2 + bin/windows/dviinfox.exe name dviinfox.x86_64-cygwin category Package @@ -96425,7 +100089,7 @@ binfiles arch=x86_64-solaris size=1 name dviljk category TLCore -revision 52851 +revision 66186 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 @@ -96433,10 +100097,10 @@ longdesc simply with the sources in this distribution; it needs a full longdesc (current) kpathsea distribution environment, such as is longdesc available from the TeX Live source tree. depend dviljk.ARCH -containersize 532 -containerchecksum 7f0fff6f850f22788981370dfe9759f8d1ac803f75e6355c582eca83ca3940f64e3c32c32881234e25d8bda59e47a4f236751c9464dc41f93c67c16cc55082ef -doccontainersize 74976 -doccontainerchecksum 82d28f1adfc368582a5b1d05e2e73ba99bd05d51f9daa972f5ca753905341ee1d61b9e15d402b3017bfdd78bd64c7c222794bbf76073517f96ea1b9d7a58cea6 +containersize 508 +containerchecksum 0d34e837c0f67ac43dd8ef5bfb9a11d2821188ef8259f41b0cf9454bfa6641f956c21d63fe15fbd68dd59f89c1da820cab4ec5c4579fc0255a771c47010821cc +doccontainersize 74932 +doccontainerchecksum 4b5815d766a41eb74125269e297eb6f7d1626d68b3f2cf9d6c4f8734721e3c71b63e84e729c39fef41320e4f728888796e421bb5c7ea5ffe76cd549400d18d37 docfiles size=92 texmf-dist/doc/man/man1/dvihp.1 texmf-dist/doc/man/man1/dvihp.man1.pdf @@ -96456,10 +100120,10 @@ catalogue-topics dvi-print name dviljk.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dviljk -containersize 78328 -containerchecksum 6ff18be989eeff6821db27ae2a862d251382f55e670a9e5d340e7fd8343e6b3cab478511f5fe484963758b2e2fcda12ae04780ac9288de715f15efcd3c6ecf2d +containersize 78260 +containerchecksum 58eca806a4fbcd7c81e0cdf507fa6dcec68425dc3785272c0151a72015031b520b1f7d09f612e00ba0c363f5584c4997a7a8c8bdb2801e7b5f85cc52b0d63d5f binfiles arch=aarch64-linux size=131 bin/aarch64-linux/dvihp bin/aarch64-linux/dvilj @@ -96470,11 +100134,11 @@ binfiles arch=aarch64-linux size=131 name dviljk.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dviljk -containersize 92576 -containerchecksum 673c7f43f0b64db3f9fc6f1613b457929b6a16c0a4a7ba1abf493ddbef85cd6de6b24cdd59fa0cfe6a5f642459adc90689bf7ff257b104fcd087db8d9a1ea5e5 -binfiles arch=amd64-freebsd size=138 +containersize 88336 +containerchecksum 6788944f4ab52fa12dc2600d912f7845128690d216d5c0ba04e03b78524673617ee0d235e9f294a4e8a4db2237d85947a7d13312374bbe8c660e17a2759715eb +binfiles arch=amd64-freebsd size=137 bin/amd64-freebsd/dvihp bin/amd64-freebsd/dvilj bin/amd64-freebsd/dvilj2p @@ -96484,10 +100148,10 @@ binfiles arch=amd64-freebsd size=138 name dviljk.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dviljk -containersize 78212 -containerchecksum 8a3e45fdc1776d4f6f57485f625ed76692d909d9a1cccb62ca1cbb836bf438e1154ebf40c34de5833bf5902ee1f665477d99432defc158eb9a8b443d2c17e63e +containersize 78108 +containerchecksum 4435648eea6a7dde66007b898caefa35d085e3a0350e7b83469fcc6522e18048b611e03c1ed6e5c06aa0289321309034b5cb10d437ea4bbde4a33b87cec01b78 binfiles arch=amd64-netbsd size=151 bin/amd64-netbsd/dvihp bin/amd64-netbsd/dvilj @@ -96498,10 +100162,10 @@ binfiles arch=amd64-netbsd size=151 name dviljk.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dviljk -containersize 64052 -containerchecksum 9fafc159e856058f9bd91ff15310a3b93c31eff494bae0e62156d92ae8d38bfb4337aeeee2150aac2981a1f35dee86a415ffb9a44a2cafbf22213033f6a11a28 +containersize 64036 +containerchecksum 2b6f835424f8d341d8f6ab11282858c84c1ff06d2fa5d0fab9e2ad49f86189274aff7f4743f6a7bb3fa416fced0343ed318a41e04b58e57ba4e4b2c82566c3f2 binfiles arch=armhf-linux size=107 bin/armhf-linux/dvihp bin/armhf-linux/dvilj @@ -96510,27 +100174,13 @@ binfiles arch=armhf-linux size=107 bin/armhf-linux/dvilj4l bin/armhf-linux/dvilj6 -name dviljk.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dviljk -containersize 39236 -containerchecksum a49ed991df4a88f1e6a45c8e773642422a5a4b65645096e2efc6202f69cebb76e0a7c18d86456f03502fad5d5d4cb868a019e508d5e48ee4d575e35cbd477a60 -binfiles arch=i386-cygwin size=59 - bin/i386-cygwin/dvihp - bin/i386-cygwin/dvilj.exe - bin/i386-cygwin/dvilj2p.exe - bin/i386-cygwin/dvilj4.exe - bin/i386-cygwin/dvilj4l.exe - bin/i386-cygwin/dvilj6 - name dviljk.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dviljk -containersize 83616 -containerchecksum 624b578ce8d2778689733901cd1ed81766df1b1ec5629a35b5502e8c0ce82b12235fb4c262d98eebc7e00ef637977f417510669875dffc813cdc18d17ab6f2f5 -binfiles arch=i386-freebsd size=117 +containersize 78944 +containerchecksum 0c92cc2d88cc13a5e3b33445ef0b816238aab4dfe2d1b0292e31241e765eb205764cd7506c2da0a86dc68d342f0d32ed18acc5506f96637ef1db78f89f3d4543 +binfiles arch=i386-freebsd size=119 bin/i386-freebsd/dvihp bin/i386-freebsd/dvilj bin/i386-freebsd/dvilj2p @@ -96540,11 +100190,11 @@ binfiles arch=i386-freebsd size=117 name dviljk.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dviljk -containersize 90008 -containerchecksum b9dd95755ab103b495e14cf1ad2b30819f66e79bad842d46dcec8e3cb197706da57922317ad4c3e55f280254f604be7edb993ffd61728812c910a3dc00b1c909 -binfiles arch=i386-linux size=139 +containersize 88776 +containerchecksum 81e32389b95086cbed14013d166750514274d8ae68fd6371425d42e6fbef67af6d93ca48e48e991b7fbd0adcb9d6a471251afab428baf587144eef1a9cdbb01d +binfiles arch=i386-linux size=143 bin/i386-linux/dvihp bin/i386-linux/dvilj bin/i386-linux/dvilj2p @@ -96554,10 +100204,10 @@ binfiles arch=i386-linux size=139 name dviljk.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dviljk -containersize 69920 -containerchecksum b0646cd9518c341c2ddbf38af3af57daf0036c0197f45f2772716035af829cbbc1a3aa20e2f23a31b93a0954787b513916c06632499874853c42eecaf7846c6f +containersize 69912 +containerchecksum c296c5201f35ce5a5552466a73e5f7b7d2c1d372ec3096082b4e474ceea295d9c6e298759cd9f2f490c06fc36ce8921acd71602cdd96a10539c626d2fe4fce87 binfiles arch=i386-netbsd size=139 bin/i386-netbsd/dvihp bin/i386-netbsd/dvilj @@ -96568,10 +100218,10 @@ binfiles arch=i386-netbsd size=139 name dviljk.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dviljk -containersize 86800 -containerchecksum 6fe55ad6c378be99ecf6cbda04921c438da136dcd401c59ba03e0b0d433c71fb408d987053c86d8baec9ac8f02ec964a7530003f182e90d0dd7d70eb55b9ab53 +containersize 87132 +containerchecksum 48dafd974ae5b39e9911a809cdb398da3f8737df8ff05d9eaeb83e6be0fe49ac557c37d9c8f5d8f437671f81213fa34cd069ca387536dd610ddf682d14fbabbe binfiles arch=i386-solaris size=119 bin/i386-solaris/dvihp bin/i386-solaris/dvilj @@ -96582,11 +100232,11 @@ binfiles arch=i386-solaris size=119 name dviljk.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dviljk -containersize 174900 -containerchecksum 672d1e54629441cf99faa4c7b59213e60a4689e64e84a1f8718dbdb00185a1a7d40104277945070c3f00612f582c2e90adaa7ffcb6217a229075fb5c52965fe0 -binfiles arch=universal-darwin size=335 +containersize 175760 +containerchecksum fbeaa1268bf10544b43044f458a86c20b3056109c88471ef2da26f096b017d6abb9162a91c7acce00f125e51cb2462c8762eb8b36082212dd3bf5a0e8a93ba12 +binfiles arch=universal-darwin size=347 bin/universal-darwin/dvihp bin/universal-darwin/dvilj bin/universal-darwin/dvilj2p @@ -96594,26 +100244,26 @@ binfiles arch=universal-darwin size=335 bin/universal-darwin/dvilj4l bin/universal-darwin/dvilj6 -name dviljk.win32 +name dviljk.windows category TLCore -revision 58783 -shortdesc win32 files of dviljk -containersize 45424 -containerchecksum 8bcc3fbfa92e1322fe35dc76c6cbde1d59f1eaa6401bcccf5e05d040b2b7014bf643a32ab4edf42e710f8d528ea69829772e3b68f66ba07dbe80b33daf06a83f -binfiles arch=win32 size=54 - bin/win32/dvihp.exe - bin/win32/dvilj.exe - bin/win32/dvilj2p.exe - bin/win32/dvilj4.exe - bin/win32/dvilj4l.exe - bin/win32/dvilj6.exe +revision 65891 +shortdesc windows files of dviljk +containersize 48240 +containerchecksum abd437841b54b17d70276e62701e5f963b86ac1704a06b8388c29c23b030a8872f08443147e5e23a51b3313fe8900144e41f8925cf608bd17ed24b87c520cbe2 +binfiles arch=windows size=58 + bin/windows/dvihp.exe + bin/windows/dvilj.exe + bin/windows/dvilj2p.exe + bin/windows/dvilj4.exe + bin/windows/dvilj4l.exe + bin/windows/dvilj6.exe name dviljk.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dviljk -containersize 42876 -containerchecksum 239d6a38d9711da0375a40bf74d28e9d66b64d0555613f92258b8ca771e7ed9e26481c90abd1d11bb1d862126c50a6da174f15d7d75d652dbe7577112e6b87f6 +containersize 42896 +containerchecksum 787701c87bc4d21389072733025e57a7a6d6fa85eee612367cb94acae9689ffc98073a5f0266bfaaaddc095b054179d2f65d2752e961bdc018adcd8886597595 binfiles arch=x86_64-cygwin size=57 bin/x86_64-cygwin/dvihp bin/x86_64-cygwin/dvilj.exe @@ -96624,10 +100274,10 @@ binfiles arch=x86_64-cygwin size=57 name dviljk.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dviljk -containersize 83184 -containerchecksum 95484064a5f00ff511c344ebbe462fb4d2d9e098a0da7a0687585b1dfe4a22f8077c3880b9723d5fca7f35e4655680b702b50f3cf4cb94bace7e31227ec67722 +containersize 83212 +containerchecksum 393e9c122c78c978240e28371ec9ee980450882367410c4bfcbf087447c3dd29fdaaedf448c06aec3c2ac00d86bafb426fde751b31feec2aba3e01062430dada binfiles arch=x86_64-darwinlegacy size=123 bin/x86_64-darwinlegacy/dvihp bin/x86_64-darwinlegacy/dvilj @@ -96638,11 +100288,11 @@ binfiles arch=x86_64-darwinlegacy size=123 name dviljk.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dviljk -containersize 87856 -containerchecksum f5fa18876be88efda6d6576bec2ec7d08deaabd7e6528f68f79e5d691fa11f678cb657416eef4b37efae8c091b35ff41c3898b9db290f68f3c1e6739c41332f2 -binfiles arch=x86_64-linux size=127 +containersize 83700 +containerchecksum 38175b463e0db8ed6901df4fcaf1e254e04252d2dc970972a38d5f775e830047fb5ba2e454b445424bcdd578051538ed8097a9970fce118db8e02e1aac6912d7 +binfiles arch=x86_64-linux size=131 bin/x86_64-linux/dvihp bin/x86_64-linux/dvilj bin/x86_64-linux/dvilj2p @@ -96652,10 +100302,10 @@ binfiles arch=x86_64-linux size=127 name dviljk.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dviljk -containersize 85284 -containerchecksum c32235ab60fe38cab69d6d29989af063027ec074928c088c9fe063922e0f9f72d55961adbe2509d257730ebd3eade255e7100f18aad8fbf45bc8d3824b781471 +containersize 85496 +containerchecksum 23849a13ae83ffc9ead5e9060ba67729ec181595d94805daaf13bb859710067a190585078cfd3597560351055f2ec8b082fae3da950ac8df7693d2f4f39df063 binfiles arch=x86_64-linuxmusl size=131 bin/x86_64-linuxmusl/dvihp bin/x86_64-linuxmusl/dvilj @@ -96666,10 +100316,10 @@ binfiles arch=x86_64-linuxmusl size=131 name dviljk.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dviljk -containersize 93948 -containerchecksum 6d3615799ce45a8ac4f00015dede79320862660f14e2e677eefbddf27e812f5930ec2f33d38a982bddefdfc0d04a994c45004ffb093774ed1c04f4ee68d17f3d +containersize 94152 +containerchecksum a4db39a85035f2724b4d97bbb98a760488bb44b87841bc3e8275a73e40ed2042c0b10414f0120003a35930be3e7b4b5d910c0edec81dc5c0c1ec00554e579c0f binfiles arch=x86_64-solaris size=139 bin/x86_64-solaris/dvihp bin/x86_64-solaris/dvilj @@ -96680,12 +100330,12 @@ binfiles arch=x86_64-solaris size=139 name dviout-util category Package -revision 52851 +revision 66186 depend dviout-util.ARCH -containersize 248 -containerchecksum a9445602ac5a3663920f8c7d428e833b0451c3e80203be57cc6fbdda5db5f7c89da75cf58e74d56c4ab9cd817fc9f080a056ebd045828a0d5b034108cda61bc5 -doccontainersize 38880 -doccontainerchecksum 61f86a23314334d7faa4f1ae0760aea6c5e5f77754a6a9b1d5952f09e3e15d3dead73a9f72ccfe9b9d7a022654f8d2e1e6e3051dc12bff574b6f053cdbc9b598 +containersize 244 +containerchecksum 684f5efd93c0c12a07b753f169f44e764b01e4994faa86df8361ce38c15675a0601f61bdfc9702508f66273ac8c69250db65fa0d10d3c544fb78fcc824d4ff3f +doccontainersize 39140 +doccontainerchecksum d10e8c9343f9065499e2c06b5eecce4047730875ccee29d6a09d1608e2334f7310282cff765c88c7da8ed8a52816910c79f3fad58d118f047d04b4bb7ebf44ca docfiles size=14 texmf-dist/doc/man/man1/chkdvifont.1 texmf-dist/doc/man/man1/chkdvifont.man1.pdf @@ -96694,185 +100344,169 @@ docfiles size=14 name dviout-util.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of dviout-util -containersize 71092 -containerchecksum 61f65723a4811579fe43a9f97316e07231bc380a865a881b2318c71ae9b7b3daae8f92885daecb6994c4bd6e220140f59249f4860d0a05912855d96a22d85551 -binfiles arch=aarch64-linux size=43 +containersize 72296 +containerchecksum 7c1c774a5695871b3a3ef3a89e3cba14fa92b4fb85bffccfc92672f52a803b14efda08a76d5e78e3cc92cde2dce6dee8bf91b9d15786a419014775811076e122 +binfiles arch=aarch64-linux size=45 bin/aarch64-linux/chkdvifont bin/aarch64-linux/dvispc name dviout-util.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dviout-util -containersize 76980 -containerchecksum 8a95e786414c93accf8d527420f5dcfc1dad05b4f6aef3b62a0909b93c2e8eeb540d5debae8aa0f39fbcd9606e1b3ceb0000cc6e55b93bd64ff1ea365aacbf9a -binfiles arch=amd64-freebsd size=44 +containersize 79128 +containerchecksum 2fbc72dac362afa8c57be4d75e798eee172b2d88a0efcc9d9cf9625e586a16ae8c2eae9b80623a9d256924e1dd8c08a044db3b59d6cccd9d02de2edc957ac3bd +binfiles arch=amd64-freebsd size=45 bin/amd64-freebsd/chkdvifont bin/amd64-freebsd/dvispc name dviout-util.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dviout-util -containersize 66248 -containerchecksum c373b64327aca9675850f0cd5c076451dcd3afedab8f60488f01998cf66f0e0a6e562ffeed993021df88ade261e7cd128a478fe9012a02bf4c4139108b9c1f3e -binfiles arch=amd64-netbsd size=47 +containersize 67096 +containerchecksum 35199b82c73fc49fb81dfd1c38f895d8d1fddaea6594b7b61992d71035cd542bb03c4b9bc995bd2b1efd1ad3ceb8429b7094ecdb89e1a0f115c9c92350725556 +binfiles arch=amd64-netbsd size=48 bin/amd64-netbsd/chkdvifont bin/amd64-netbsd/dvispc name dviout-util.armhf-linux category Package -revision 57957 +revision 65877 shortdesc armhf-linux files of dviout-util -containersize 61108 -containerchecksum c8b6654b8a7769b8605ddd6c42a4c837f180251237722ecadff83bb7093ec520002f22407ef08dc7f77b2d682a3d931396b9cf9a3dc82aa9a50bb8299f1ff58b +containersize 61864 +containerchecksum c6c89150409f89a0b196dbe8613387750fd322cdbf2b31a770148c5d8f09af10aede71f5d2e6ce3c92da7e3f7a136fa55a4c16ffc7373f5f23c92aab588f8080 binfiles arch=armhf-linux size=35 bin/armhf-linux/chkdvifont bin/armhf-linux/dvispc -name dviout-util.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of dviout-util -containersize 25888 -containerchecksum b0a3cab595038be68de431c87fda395cae2451106c8a2d3cde69cb599bdc25e87ed0813f7f6700883a503ce0fac2232a4a17648ee30730007ef627d7a07d9170 -binfiles arch=i386-cygwin size=18 - bin/i386-cygwin/chkdvifont.exe - bin/i386-cygwin/dvispc.exe - name dviout-util.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of dviout-util -containersize 70980 -containerchecksum 845b9d11f2e00e75bb686a31e7d87b43577db84748f3f8f7aaae5b3cde04db786d114d0d34aa2e4070402507cd6f80f43bc36f06c6519a53df2726bf07297678 -binfiles arch=i386-freebsd size=39 +containersize 73516 +containerchecksum bb530f023790e03a46177edc66e1800a4ef1758f75706de262b601e043ca880c79760ab1289273f149905b29a07a1f12e36f1fefd84dae6e72de28fffe48b933 +binfiles arch=i386-freebsd size=40 bin/i386-freebsd/chkdvifont bin/i386-freebsd/dvispc name dviout-util.i386-linux category Package -revision 57878 +revision 65877 shortdesc i386-linux files of dviout-util -containersize 75780 -containerchecksum 56eedc459b7fc3c9d72fb031599723c98b52c4dde618cfe81c4b5599b5d857e2dba1c5f3c0ef389a9edeb4a85f863230737709a1383b250b6b0bd741161a7d5d -binfiles arch=i386-linux size=44 +containersize 78016 +containerchecksum 2989a69c51ccf78120a4a68d07701f2b3b2da1b286b078714357e90567bb4cc6082076c611ec8c3deb4c790367f68a5f8a300d7d810f21913597018c87b1c1b1 +binfiles arch=i386-linux size=46 bin/i386-linux/chkdvifont bin/i386-linux/dvispc name dviout-util.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of dviout-util -containersize 61480 -containerchecksum 2a656f2e91596915235ae532357375c9e55b8dcbe65a3ca5f4eef8a4c5f8a45fd5d33c6396a651decb06d4591181a4cdaafeaaf5294f1742e503aa7c84d0053b +containersize 62136 +containerchecksum 962b0e89dcc2d8e4bee20818a9af73d7594977ee0b8f2b32ae91d95fc77746459ec9b052fb324fd74c4d6205e52d9325f298ee25bf1de2d67798a2886d6d500a binfiles arch=i386-netbsd size=44 bin/i386-netbsd/chkdvifont bin/i386-netbsd/dvispc name dviout-util.i386-solaris category Package -revision 57938 +revision 65877 shortdesc i386-solaris files of dviout-util -containersize 73472 -containerchecksum f19ad7ddab8157fd9b9151d02f009b9434072a254e870b7e8b71f853963ba1f7f9ba88c7ec701f7645d1e748e0f34c9ae27085c2792612d8211d8531de14c3e0 -binfiles arch=i386-solaris size=40 +containersize 74904 +containerchecksum 9661e8d4de76f3f26be12d08d1eb184776ef4d88dfaa80c59383a166ceaf6169628672f5adc181131be9ff807ba2ccf6c93417933d50ed600a82211080914df0 +binfiles arch=i386-solaris size=41 bin/i386-solaris/chkdvifont bin/i386-solaris/dvispc name dviout-util.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of dviout-util -containersize 131672 -containerchecksum ff4aa1ca607bbd79b66b59a42e58fb7f7088261fcc13410710bde0438c3036f64754e81fe6cdfc0438eaf4e137cf53d87a52aca1b55a31d7a2b93f34f21555ea -binfiles arch=universal-darwin size=126 +containersize 135632 +containerchecksum 6309f14f25c40bdae789cd9604e8dbc4580b6ad515d2b7fbb60536f33053268beb70cb9c1d50034fa42ed76fc4417711bf1a862d5a222c8713a027b57a575070 +binfiles arch=universal-darwin size=134 bin/universal-darwin/chkdvifont bin/universal-darwin/dvispc -name dviout-util.win32 +name dviout-util.windows category Package -revision 58783 -shortdesc win32 files of dviout-util -containersize 90188 -containerchecksum 0e5981718389513fd41398632ffd6854bcd9b896f4adb00c533d79ae6431f4bf20fe177da87c7d6d57d2c46352a1712cdc184f975a69528bf3fd3efbec9b6ba6 -binfiles arch=win32 size=53 - bin/win32/chkdvifont.exe - bin/win32/dvispc.exe +revision 65891 +shortdesc windows files of dviout-util +containersize 41852 +containerchecksum 6b57728f379b1f390c60d4f2e159d339c239cc29f160f036f25286386e75648d6002e333ccedfea83b0a45b47cf0527b617e57d971a837f1ef53cee64e99e23f +binfiles arch=windows size=22 + bin/windows/chkdvifont.exe + bin/windows/dvispc.exe name dviout-util.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dviout-util -containersize 27284 -containerchecksum 0b2db02f5122c58e45dce83523c492b850e0cec01bc66580d58260e2db5efdefa71b702f724a2c66cc782a11b901f1dc34f0fe4d6642f9261645bb0047bc3669 +containersize 27676 +containerchecksum f68e65a248a281ed00a357304e1aff69fefc08c8c9817387401716cfe982bf7d88e8a380467a6b83c7b91f2192a7a3a6942b5d9b7ab60c15fe8b654caeb73cbf binfiles arch=x86_64-cygwin size=18 bin/x86_64-cygwin/chkdvifont.exe bin/x86_64-cygwin/dvispc.exe name dviout-util.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dviout-util -containersize 70968 -containerchecksum 5289cee8c4b7b95440fb11fae5882f5e950936de061ebd10881197aca6f937a9f5d395a28fcb6d6a7a53aa426997af6c8a796b0f57d99fcab9c658d6417c56dc +containersize 72284 +containerchecksum 55acea6994188c4879bb10fe912ecbbf3e7598aa07b92131dbd5343950b80fe3901438fc19b08da516d0eecec8e0d1ab009dd370ca0e596316ec06ca0b6fdbd1 binfiles arch=x86_64-darwinlegacy size=41 bin/x86_64-darwinlegacy/chkdvifont bin/x86_64-darwinlegacy/dvispc name dviout-util.x86_64-linux category Package -revision 57878 +revision 65877 shortdesc x86_64-linux files of dviout-util -containersize 73432 -containerchecksum 0ea8b337428fa49c120a3bf0c3c1e7c03d8e15d62ac63a9be5c327f029912cbb5379d61e6ea870edf77ce2e75145a07b78604cf8081826b024a91d1d2bd3b550 -binfiles arch=x86_64-linux size=40 +containersize 75440 +containerchecksum 09934d2ffc9cb529d0a4478d075ea2f1667d0873b23d74cb4fdb6a624873afd8366eff6d2e222b469f15b3416dd1c686dea9cba0ea6032b5da1106b258b9b111 +binfiles arch=x86_64-linux size=44 bin/x86_64-linux/chkdvifont bin/x86_64-linux/dvispc name dviout-util.x86_64-linuxmusl category Package -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dviout-util -containersize 75888 -containerchecksum 13a5460fb83ebe269a3f41268015ca8ca80ba9fcef94e0a02a57c438c0efdc32e668cf766896ba093dd128874b2905e06390d2e2723bdf30e50464a5aa6390a4 +containersize 77000 +containerchecksum 02c80b00aa280a02be1f287002bfb8fcb882a3f3c3881059b94d7dd7a3aa3ce883e49c337c44956c8e4adb453681c73c4ffd87c3a036baefade4a2fd87e056d0 binfiles arch=x86_64-linuxmusl size=43 bin/x86_64-linuxmusl/chkdvifont bin/x86_64-linuxmusl/dvispc name dviout-util.x86_64-solaris category Package -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dviout-util -containersize 77396 -containerchecksum d0fec4ee0c206ab25c35124eaf7e7b5a873f93b1cc25ffd2a783f469109bd814ed98e204ca5a1bee398ea87d7979ff5a46e560164030e2f846cb0cd1f10be72d -binfiles arch=x86_64-solaris size=44 +containersize 78996 +containerchecksum c55b6b8079dfb21dbb68fd7e16430bec203c2263ea85881f527651cf665e95aa91bb45f1d6c286bc94f470a352622ffe448c8c5e35480658a1dbc1c1e7294a41 +binfiles arch=x86_64-solaris size=45 bin/x86_64-solaris/chkdvifont bin/x86_64-solaris/dvispc -name dviout.win32 +name dviout.windows category TLCore -revision 52616 -catalogue dviout -shortdesc TeX previewer and printer driver for MS-Windows -longdesc The program supports a variety of printing mechanisms -longdesc (including PDF output via dvipdfmx), and can use most extant -longdesc font formats (including the long-outdated TeX PXL format). The -longdesc program will use output from Omega as well as from TeX, and -longdesc understands a wide variety of \special commands. +revision 66270 postaction fileassoc extension=.dvi filetype=TL.DVIOUT.view -postaction filetype name=TL.DVIOUT.view cmd='"TEXDIR/bin/win32/dviout.exe" "%1"' -postaction shortcut type=menu name="DVIOUT DVI viewer" cmd=TEXDIR/bin/win32/dviout.exe -containersize 2235312 -containerchecksum 0eab55d73cdd6b9ea7f06286ecd9d815958e97b2510fdac40a1efadae3b5bdb91f88340173e2a69fa0761e0048b349e05d3416dd6e1118548211e942e24b1983 -binfiles arch=win32 size=1201 - bin/win32/dviout.exe - tlpkg/dviout/00readme.txt - tlpkg/dviout/CFG/newcfg.txt +postaction filetype name=TL.DVIOUT.view cmd='"TEXDIR/bin/windows/dviout.exe" "%1"' +postaction shortcut type=menu name="DVIOUT DVI viewer" cmd=TEXDIR/bin/windows/dviout.exe +containersize 2735508 +containerchecksum 9cc225773f79a075c42fbc4cfe590008ae4effa740826fc5794b4e43c407853a86cd4e5fabf1680ce99d97b4a1175b65359344be51b75f338b21d1cd9a8a0437 +binfiles arch=windows size=1793 + bin/windows/dviout.exe + tlpkg/dviout/CFG/newcfg_ja.txt + tlpkg/dviout/CFG/optcfg.dvi tlpkg/dviout/CFG/prtcfg.zip tlpkg/dviout/CFG/prtsrc.zip + tlpkg/dviout/COPYRIGHT tlpkg/dviout/CreateBB.exe tlpkg/dviout/DOC/bpage.bmp tlpkg/dviout/DOC/cmode.html @@ -96901,6 +100535,7 @@ binfiles arch=win32 size=1201 tlpkg/dviout/DOC/search.bmp tlpkg/dviout/DOC/serd.bmp tlpkg/dviout/DOC/seru.bmp + tlpkg/dviout/DOC/spi.html tlpkg/dviout/DOC/testtex.bat tlpkg/dviout/DOC/tex_dvioutw.html tlpkg/dviout/DOC/tex_instchk.html @@ -96942,22 +100577,36 @@ binfiles arch=win32 size=1201 tlpkg/dviout/GRAPHIC/bmc/exbmc.xpi tlpkg/dviout/GRAPHIC/bmc/ifbmc.spi tlpkg/dviout/GRAPHIC/bmc/ifbmc.txt + tlpkg/dviout/HYPERTEX/hyper2.dvi tlpkg/dviout/HYPERTEX/hyper2.tex + tlpkg/dviout/HYPERTEX/hyperdvi.dvi tlpkg/dviout/HYPERTEX/hyperdvi.tex + tlpkg/dviout/HYPERTEX/input.dvi tlpkg/dviout/HYPERTEX/input.tex + tlpkg/dviout/HYPERTEX/input7.dvi tlpkg/dviout/HYPERTEX/input7.tex + tlpkg/dviout/HYPERTEX/input8.dvi tlpkg/dviout/HYPERTEX/input8.tex + tlpkg/dviout/HYPERTEX/input9.dvi tlpkg/dviout/HYPERTEX/input9.tex + tlpkg/dviout/HYPERTEX/inputxy.dvi tlpkg/dviout/HYPERTEX/inputxy.tex tlpkg/dviout/HYPERTEX/keyin.sty tlpkg/dviout/HYPERTEX/myhyper.sty - tlpkg/dviout/PTEX/naochan!.tex + tlpkg/dviout/PTEX/test_vertical.dvi + tlpkg/dviout/PTEX/test_vertical.tex + tlpkg/dviout/SAMPLE/sample.dvi tlpkg/dviout/SAMPLE/sample.tex tlpkg/dviout/SAMPLE/sample.txt + tlpkg/dviout/SAMPLE/slisamp2.dvi tlpkg/dviout/SAMPLE/slisamp2.tex + tlpkg/dviout/SAMPLE/slisamp3.dvi tlpkg/dviout/SAMPLE/slisamp3.tex + tlpkg/dviout/SAMPLE/slisamp4.dvi tlpkg/dviout/SAMPLE/slisamp4.tex + tlpkg/dviout/SAMPLE/slisampl.dvi tlpkg/dviout/SAMPLE/slisampl.tex + tlpkg/dviout/SPECIAL/demo.dvi tlpkg/dviout/SPECIAL/demo.tex tlpkg/dviout/SPECIAL/dviout.sty tlpkg/dviout/SPECIAL/ophook.sty @@ -96972,30 +100621,28 @@ binfiles arch=win32 size=1201 tlpkg/dviout/UTILITY/dviout1.vfn tlpkg/dviout/UTILITY/dvioute.vfn tlpkg/dviout/UTILITY/null.vfn - tlpkg/dviout/UTILITY/template - tlpkg/dviout/UTILITY/template.pk0 - tlpkg/dviout/UTILITY/template.pks + tlpkg/dviout/UTILITY/template.txt + tlpkg/dviout/UTILITY/template_pk0.txt + tlpkg/dviout/UTILITY/template_pks.txt tlpkg/dviout/UTILITY/test_a4.tex tlpkg/dviout/UTILITY/test_b5.tex tlpkg/dviout/UTILITY/test_b5e.tex tlpkg/dviout/UTILITY/test_org.tex tlpkg/dviout/bmc.exe tlpkg/dviout/chkfont.exe - tlpkg/dviout/chkfont.txt + tlpkg/dviout/chkfont_ja.txt tlpkg/dviout/convedit.exe tlpkg/dviout/dviadd.exe tlpkg/dviout/dviout.chm - tlpkg/dviout/dviout.cnt tlpkg/dviout/dviout.exe tlpkg/dviout/dvioute.chm - tlpkg/dviout/dvioute.cnt tlpkg/dviout/dvispc.exe tlpkg/dviout/dvispc.txt - tlpkg/dviout/dvispce.txt + tlpkg/dviout/dvispc_ja.txt tlpkg/dviout/etfdump.exe tlpkg/dviout/files.txt tlpkg/dviout/gen_pk - tlpkg/dviout/history.txt + tlpkg/dviout/history_ja.txt tlpkg/dviout/install.par tlpkg/dviout/install.txt tlpkg/dviout/map/gtfonts.map @@ -97057,20 +100704,23 @@ binfiles arch=win32 size=1201 tlpkg/dviout/par/texhelp.par tlpkg/dviout/par/wintex.par tlpkg/dviout/propw.exe - tlpkg/dviout/propw0.txt + tlpkg/dviout/propw0_ja.txt tlpkg/dviout/rawprt.exe tlpkg/dviout/rawprt.txt tlpkg/dviout/readme.txt + tlpkg/dviout/readme_ja.txt tlpkg/dviout/srctex.exe + tlpkg/dviout/test_a4.dvi + tlpkg/dviout/test_a4x.dvi + tlpkg/dviout/test_b5.dvi + tlpkg/dviout/test_b5e.dvi + tlpkg/dviout/test_b5x.dvi + tlpkg/dviout/test_org.dvi tlpkg/dviout/ttindex.exe -catalogue-ctan /dviware/dviout -catalogue-license other-free -catalogue-topics dvi-prev dvi-print omega -catalogue-version 3.18.4 name dvipdfmx category TLCore -revision 58645 +revision 66203 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 @@ -97082,15 +100732,16 @@ longdesc features as does pdfTeX. The current version of the package is longdesc no longer maintained on CTAN as a separate entity; development longdesc now takes place within the TeX Live framework, and it is no longdesc longer available as a separate package. For download, support, -longdesc and other information, please see TeX Live. +longdesc and other information, please see TeX Live. However, the +longdesc information on this page is maintained and should be current. depend dvipdfmx.ARCH depend glyphlist postaction script file=tlpkg/tlpostcode/dvipdfmx.pl -containersize 27124 -containerchecksum 4c5c0773389d13c77b007f9a82e75981ddb331b51c99836c73ff144e04a2289eefed77e7f5c5a7e60ed37aa93d8a0be055a76f1e1347550b5a1242be8cf24029 -doccontainersize 3127760 -doccontainerchecksum c0f571ebbd976d55fe752e9b4c61e8e44e6ccf4086592b16618958d936267777d8825dfc2c9271f6fddb3620f54bcaa045f895131a31112e066152f20748e549 -docfiles size=995 +containersize 26716 +containerchecksum dd9284fa286b423b63b0240634348f3355feeefb685216120753f2e5991cb662944cb7fc4d61434e9d4dc982dd1892ce4da2451743c02ee6f25aed408d687ca3 +doccontainersize 3125128 +doccontainerchecksum 33a7401c27496a49546683cd9cf9001badd1dbabd22a5ae9e3501a83273fe342980cddc9e2fa7784b1e0c77512098b1abdc0a409c9306fbc86c9f2fa414bc7bc +docfiles size=992 texmf-dist/doc/dvipdfm/Makefile texmf-dist/doc/dvipdfm/dvipdfm.pdf texmf-dist/doc/dvipdfm/dvipdfm.tex @@ -97137,7 +100788,7 @@ runfiles size=41 tlpkg/tlpostcode/dvipdfmx.pl catalogue-alias xdvipdfmx catalogue-contact-bugs https://lists.tug.org/dvipdfmx -catalogue-contact-home http://project.ktug.or.kr/dvipdfmx/ +catalogue-contact-home https://tug.org/dvipdfmx/ catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/dvipdfm-x/ catalogue-contact-support https://lists.tug.org/dvipdfmx catalogue-license gpl @@ -97145,11 +100796,11 @@ catalogue-topics dvi-pdf name dvipdfmx.aarch64-linux category TLCore -revision 58534 +revision 65927 shortdesc aarch64-linux files of dvipdfmx -containersize 405956 -containerchecksum fb01193cbebc7a41cd37cd37c61a446ee2cecc30526ba7f77a9c2ce6201e3fd92b026f70d9fdfa630fc83c33cfa07b6c7300a6dd719303e26d876036645eb71c -binfiles arch=aarch64-linux size=272 +containersize 407620 +containerchecksum 7220211e7fd17bcf77d86fe7e100046418de3157085df28feb98d189a611f0adc7fbc55404cf0afb384b79496074f2e55b33de02d4d9723c7afb967e8f03de00 +binfiles arch=aarch64-linux size=273 bin/aarch64-linux/dvipdfm bin/aarch64-linux/dvipdfmx bin/aarch64-linux/dvipdft @@ -97159,11 +100810,11 @@ binfiles arch=aarch64-linux size=272 name dvipdfmx.amd64-freebsd category TLCore -revision 58501 +revision 65877 shortdesc amd64-freebsd files of dvipdfmx -containersize 447620 -containerchecksum 5de65efe8096386894a2a868c06870a3b2c53486b3ad2304d72be7af0e87928e8597bb6f3512c424620ee53bfb7dd0c70a8e50d4b92aa30561ff5a3b927f3766 -binfiles arch=amd64-freebsd size=276 +containersize 454048 +containerchecksum 0415ba0fad276cd3f589a62208c7a4a0f0eda21b5629e7e7a100136e74fc7e54aad4fe8e6f2bc89148924784fbf2efcdcf77b69078386069e135313e7f8ec654 +binfiles arch=amd64-freebsd size=277 bin/amd64-freebsd/dvipdfm bin/amd64-freebsd/dvipdfmx bin/amd64-freebsd/dvipdft @@ -97173,11 +100824,11 @@ binfiles arch=amd64-freebsd size=276 name dvipdfmx.amd64-netbsd category TLCore -revision 58497 +revision 65923 shortdesc amd64-netbsd files of dvipdfmx -containersize 378928 -containerchecksum 4765a313a3adf0f566191d3dd84fd43d570ab871eaf9f3da6a746943e50d68e2421b398d54b6193683cc269d4cac8cd84c52f66f270bddefa456b01e2bda938a -binfiles arch=amd64-netbsd size=335 +containersize 390372 +containerchecksum a65d2f9e976e9c74821c13c498643a9f34a411d8e28a610a9a38563482982386ca490153d26a215553f7e87167cf7b07a3a36d584dcfbb31f9838e81847df013 +binfiles arch=amd64-netbsd size=340 bin/amd64-netbsd/dvipdfm bin/amd64-netbsd/dvipdfmx bin/amd64-netbsd/dvipdft @@ -97187,11 +100838,11 @@ binfiles arch=amd64-netbsd size=335 name dvipdfmx.armhf-linux category TLCore -revision 58556 +revision 65877 shortdesc armhf-linux files of dvipdfmx -containersize 346964 -containerchecksum 1d9545d0219ea8c6668fbdafde38304db6580093c9ff7c37540331014e20e30bcb8bc77288fc8db34e419f815926a8e60a782362e24f033c69301dd37b4ef8ef -binfiles arch=armhf-linux size=215 +containersize 344184 +containerchecksum 8a273a17f3164a4931395d6adefe88edfa4c56c5dfdc886304e2cd4050aae112f27527c177dd5caab040c3e96cb722f9bfeae48abc0d3b4c4987afa70c840b73 +binfiles arch=armhf-linux size=214 bin/armhf-linux/dvipdfm bin/armhf-linux/dvipdfmx bin/armhf-linux/dvipdft @@ -97199,26 +100850,12 @@ binfiles arch=armhf-linux size=215 bin/armhf-linux/extractbb bin/armhf-linux/xdvipdfmx -name dvipdfmx.i386-cygwin -category TLCore -revision 58498 -shortdesc i386-cygwin files of dvipdfmx -containersize 396160 -containerchecksum 6d711f58c49977779bd69829147048a13f32c7d2982a809d264c414dbdf1a4ea5c2e6987122f16ef5244119c8a176ef0239ddcf4dd061ae5607b2bd93260d94c -binfiles arch=i386-cygwin size=251 - bin/i386-cygwin/dvipdfm - bin/i386-cygwin/dvipdfmx - bin/i386-cygwin/dvipdft - bin/i386-cygwin/ebb - bin/i386-cygwin/extractbb - bin/i386-cygwin/xdvipdfmx.exe - name dvipdfmx.i386-freebsd category TLCore -revision 58501 +revision 65877 shortdesc i386-freebsd files of dvipdfmx -containersize 403380 -containerchecksum e6fa11e7dc909f00acacd7b761c9239574ef5e8d7d9c016887a91fecaac62aa0237485fbb0afe09c7830e7a8560985ce1bf412b38e43b3cc3b3204131220e9a4 +containersize 406340 +containerchecksum c70caa4499289cc6b89625251542af9aa4d327535c617b129429de22bb2c4c545a7add4e0170e6b6babe799d7a110221030e30a03b160047281aebbe1db4ec64 binfiles arch=i386-freebsd size=249 bin/i386-freebsd/dvipdfm bin/i386-freebsd/dvipdfmx @@ -97229,11 +100866,11 @@ binfiles arch=i386-freebsd size=249 name dvipdfmx.i386-linux category TLCore -revision 58535 +revision 65877 shortdesc i386-linux files of dvipdfmx -containersize 460764 -containerchecksum 313d3ae7ceec6efde15cae4719b0f1a3ef6153ed8574b8ad8210925b5b5afeeebf1531dc6363e4b8975afb19ca3815fb6f60680b04a665bc898fcc71b3eccaba -binfiles arch=i386-linux size=293 +containersize 464008 +containerchecksum 497bb15e79b45a2ea89f6e2ddeaf6f04f1e31b3c8e964b717ec7a3fe7f15b563f5588d8ae2a1879e181d3f11d97080fd163adc5c7180136796aaa18cc62b1ea9 +binfiles arch=i386-linux size=295 bin/i386-linux/dvipdfm bin/i386-linux/dvipdfmx bin/i386-linux/dvipdft @@ -97243,11 +100880,11 @@ binfiles arch=i386-linux size=293 name dvipdfmx.i386-netbsd category TLCore -revision 58497 +revision 65923 shortdesc i386-netbsd files of dvipdfmx -containersize 359920 -containerchecksum 76fb314cfc2e02e27d83e22a6e4cf68be2c23e7d54f89d970b5237699d0ec2d774c46865ac39d722dea2c3ee8919c2d306a0df59d7559f34dc0bfffc67d08f52 -binfiles arch=i386-netbsd size=312 +containersize 362396 +containerchecksum 98eb00440f3b1e63e9942e584843206c29354e5a8f3a0ecd3bd7ad7d0b68fe0289a4a12f1249c9933a13437230a976e984db5fcb0365b687172047b766bc18b8 +binfiles arch=i386-netbsd size=313 bin/i386-netbsd/dvipdfm bin/i386-netbsd/dvipdfmx bin/i386-netbsd/dvipdft @@ -97257,10 +100894,10 @@ binfiles arch=i386-netbsd size=312 name dvipdfmx.i386-solaris category TLCore -revision 58500 +revision 65877 shortdesc i386-solaris files of dvipdfmx -containersize 413492 -containerchecksum 947183823f6ebb273d3a1b054d8fab9e58d445419c9dbd5c86146e6e3d19983e968899fd57637e3934d4bd4fc2457631724cd5b12287ff1b30ba03d64de8013e +containersize 411028 +containerchecksum 972622aa085491f82c831023896e1cf6dc2f66d68f33a63a6b58808b4768b756cfa18ecfd6389aae2b35eae593c4ac018de55a73a2ace61def0d67713efa1344 binfiles arch=i386-solaris size=240 bin/i386-solaris/dvipdfm bin/i386-solaris/dvipdfmx @@ -97271,10 +100908,10 @@ binfiles arch=i386-solaris size=240 name dvipdfmx.universal-darwin category TLCore -revision 58528 +revision 65895 shortdesc universal-darwin files of dvipdfmx -containersize 791336 -containerchecksum f53064d484155f714169683b82301898aec20066d18e879b040f01700be4a817582a216e2f9a0c5896529ef0030c6f2ce2ab9c44b7aee7a90c320ed5f487b5e7 +containersize 799100 +containerchecksum 7d01ae316f40dff3f9ec62a54e2201588adbf1fb115d48cb877634ce1058b12f3dd2e8ea027a7754b587a85d64968ddbe17d5be87bc79137f7fb422e41b24bcf binfiles arch=universal-darwin size=527 bin/universal-darwin/dvipdfm bin/universal-darwin/dvipdfmx @@ -97283,27 +100920,27 @@ binfiles arch=universal-darwin size=527 bin/universal-darwin/extractbb bin/universal-darwin/xdvipdfmx -name dvipdfmx.win32 +name dvipdfmx.windows category TLCore -revision 59085 -shortdesc win32 files of dvipdfmx -containersize 332376 -containerchecksum 5c4c780cd2ad7593eeffd4c2b94466225220e75a76753e93963c4f2ec1ca27be82d4852a58ebe4cbe58f3dab1f11ee2ce398be57f212503c2d9cd15a69fdd462 -binfiles arch=win32 size=239 - bin/win32/dvipdfm.exe - bin/win32/dvipdfmx.dll - bin/win32/dvipdfmx.exe - bin/win32/ebb.exe - bin/win32/extractbb.exe - bin/win32/xdvipdfmx.exe +revision 65891 +shortdesc windows files of dvipdfmx +containersize 349000 +containerchecksum c5ca4d9570e615e452b3074837288c7311d97dd5d0cdb9fa7764eebf00ee9852877b056f9b13b7826d051d46dece4e62a29ff193e7df23630b95bcb98b1bc3c1 +binfiles arch=windows size=295 + bin/windows/dvipdfm.exe + bin/windows/dvipdfmx.dll + bin/windows/dvipdfmx.exe + bin/windows/ebb.exe + bin/windows/extractbb.exe + bin/windows/xdvipdfmx.exe name dvipdfmx.x86_64-cygwin category TLCore -revision 58498 +revision 66544 shortdesc x86_64-cygwin files of dvipdfmx -containersize 403400 -containerchecksum 4ac305d945bb213fc95a7064365f033f048bd5474d6b7f821b575ba1f71d10ba5882020f715e23a797e5546058aae9100cbc8e447d2e9fd2c19a4c298d905316 -binfiles arch=x86_64-cygwin size=243 +containersize 405336 +containerchecksum 72fe5b14aa417be4b7b46798388168247b014652722ec049db60363f11867de169515af77a75e7eeb4471a2ba4e2784b063303e631b3072ef590e77d1a1e5d64 +binfiles arch=x86_64-cygwin size=245 bin/x86_64-cygwin/dvipdfm bin/x86_64-cygwin/dvipdfmx bin/x86_64-cygwin/dvipdft @@ -97313,11 +100950,11 @@ binfiles arch=x86_64-cygwin size=243 name dvipdfmx.x86_64-darwinlegacy category TLCore -revision 58501 +revision 65877 shortdesc x86_64-darwinlegacy files of dvipdfmx -containersize 405060 -containerchecksum e16776e51cda758280960804c96382b3db08bb95336b565d976ff5225a4b0d12b777d5ec05a97154a3a0100efe115e8ddab22827a3fbda09e110900c88902f23 -binfiles arch=x86_64-darwinlegacy size=240 +containersize 406960 +containerchecksum 0452646e5bc17f36bfec509b7a0c784e1d282d9202d6c15721d778622cfbe503629f8b591f8b3c1c4124c7cc5c7cdbe95a3ee202835422a6b017d83ee1d5a11c +binfiles arch=x86_64-darwinlegacy size=241 bin/x86_64-darwinlegacy/dvipdfm bin/x86_64-darwinlegacy/dvipdfmx bin/x86_64-darwinlegacy/dvipdft @@ -97327,11 +100964,11 @@ binfiles arch=x86_64-darwinlegacy size=240 name dvipdfmx.x86_64-linux category TLCore -revision 58535 +revision 65877 shortdesc x86_64-linux files of dvipdfmx -containersize 426696 -containerchecksum 0aaae454e6d5e9b769735255fab74538b27d36f983b3ef0257e834c3cc7a531397f7aac85f9bc9315de7295451aceee9e9f9ab9fe6574f0f873709914fbcdbb0 -binfiles arch=x86_64-linux size=257 +containersize 432180 +containerchecksum 7209b576dfa31575b4d51c7dced1615b5d56886b2e57eff82dfda5cb67f84eb5a018364f916efa31324723a8920063e1927af97b9c9b3f8250f330d09e9496b1 +binfiles arch=x86_64-linux size=260 bin/x86_64-linux/dvipdfm bin/x86_64-linux/dvipdfmx bin/x86_64-linux/dvipdft @@ -97341,11 +100978,11 @@ binfiles arch=x86_64-linux size=257 name dvipdfmx.x86_64-linuxmusl category TLCore -revision 58535 +revision 65877 shortdesc x86_64-linuxmusl files of dvipdfmx -containersize 451244 -containerchecksum 44a51da5218b997e76d2c5913e0af8a17a323dacaa09f4b7c26b4d4bbcd74800c6a59f763b44f62331593b0a77bc211850de60f511a72ae9453cf95da2b1ffbc -binfiles arch=x86_64-linuxmusl size=283 +containersize 454084 +containerchecksum af9cef76404e008dc5cbff17423ff217aef8ec826d9510eba9c21ef93d01dff2fc8f7ddadb8173dd2f030ea0e772383ef064c23f9a046126d1e8ffb26d0f269b +binfiles arch=x86_64-linuxmusl size=282 bin/x86_64-linuxmusl/dvipdfm bin/x86_64-linuxmusl/dvipdfmx bin/x86_64-linuxmusl/dvipdft @@ -97355,11 +100992,11 @@ binfiles arch=x86_64-linuxmusl size=283 name dvipdfmx.x86_64-solaris category TLCore -revision 58500 +revision 65877 shortdesc x86_64-solaris files of dvipdfmx -containersize 445384 -containerchecksum cfaa7ddfcc5de243196a83604f5aacd4d6a7143ff6dbdeb03b3f54cbf93280a3b534936fb34aaea85b88f2b8c660563ede8ba23b3b01cfce7be32715f55cfa6a -binfiles arch=x86_64-solaris size=272 +containersize 446980 +containerchecksum ff995065fdf0d82ad433ef55ca4a37314863f7b873c4aaab49afc968ae38d5238739c6c62ac1d90478a87a484b951351bafc70b2b5548550449b78232a5d22c3 +binfiles arch=x86_64-solaris size=273 bin/x86_64-solaris/dvipdfm bin/x86_64-solaris/dvipdfmx bin/x86_64-solaris/dvipdft @@ -97369,7 +101006,7 @@ binfiles arch=x86_64-solaris size=272 name dvipng category TLCore -revision 57972 +revision 66203 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: @@ -97386,11 +101023,11 @@ longdesc input file through this interface. Support for PK, VF, longdesc PostScript Type1, and TrueType fonts, colour specials, and longdesc inclusion of PostScript, PNG, JPEG or GIF images. depend dvipng.ARCH -containersize 916 -containerchecksum a194b03e4ea1da129e54e2820979929e720fb526d184390885a2ac213aadda75f0fdf33b20a4ec20958798b3f622626e301ff308f9005d6c6ff400dc0bcd01e7 -doccontainersize 288772 -doccontainerchecksum 27c556eeb267521de9f523001268819b29791c9b34e7b0e734551e607eaabcd452789eb4b90a287b47024d90e01d28b1848d1c77be0e903172eb362c4f9e699e -docfiles size=119 +containersize 920 +containerchecksum a1693423389d56570a3fa1ac1eb45bffdef5fa9bf26d738adae1ac2361fc9aa7985d4ed0908b5f8aa49e2425da9821989a61a3ac925ac4432c9caa49f66a95dc +doccontainersize 287292 +doccontainerchecksum a4473f728047cdf06743520a5cd4c79d7aa41818c44291abf4781f04b87822b03fe5db9f42d489d7542ca259070f71a3f255507f3dc8fbe772e30da8cc88722e +docfiles size=121 texmf-dist/doc/dvipng/dvipng.html texmf-dist/doc/dvipng/dvipng.pdf details="Package documentation" texmf-dist/doc/info/dvipng.info @@ -97407,324 +101044,305 @@ catalogue-version 1.17 name dvipng.aarch64-linux category TLCore -revision 58534 +revision 65927 shortdesc aarch64-linux files of dvipng -containersize 454716 -containerchecksum 38f578dd8845e7d173222949f2d3c89996acc6031ccfb75529875b019a68cbad81d7c82c70e06947fe55e610dbfb1156e863c088711afb51c05a73815f8c15ad -binfiles arch=aarch64-linux size=267 +containersize 462524 +containerchecksum a604e747cce2dd4d6806a38585ce1de5b5b4d1d883333f60625237c5bb7354d5d328b159cea42acdc33d8fb366d06d2d968a92db48232b8ae8e23b524ec48ee3 +binfiles arch=aarch64-linux size=272 bin/aarch64-linux/dvigif bin/aarch64-linux/dvipng name dvipng.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dvipng -containersize 509824 -containerchecksum f1a3180a7db07823f380f679884371bf33411e4c2e51d830fdc4d16b51775c399b78549ac5adaa30a11d7312f2cef4e1c47d98171bd2316e1a84b8a1d921b951 -binfiles arch=amd64-freebsd size=290 +containersize 520528 +containerchecksum 706f906cf55240c676b31ef103021f37c82d9bd337b994a27d134ca4878619a8d2ef23c041dab7e570b72f57cee30d0a9936c01f144a2c526af8d61fe44b76ec +binfiles arch=amd64-freebsd size=297 bin/amd64-freebsd/dvigif bin/amd64-freebsd/dvipng name dvipng.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dvipng -containersize 422292 -containerchecksum b3b7253d6e594f93d8f1a538fa0ba76ee02b6f5dc03ab87c89dae483ca0c8c2cbc12bf7bc94c35a510305363c959c204475bbbdc66f4a1f96c70b669c530f7e2 -binfiles arch=amd64-netbsd size=365 +containersize 437028 +containerchecksum 991258f77ed36434daf7f10c7bb2cb5cef696ee06c2a13a7293a702d883d8244b3199b8e73f9b469a3b306b0ad13f07032f68c58e17afbda0665b6e28032d350 +binfiles arch=amd64-netbsd size=377 bin/amd64-netbsd/dvigif bin/amd64-netbsd/dvipng name dvipng.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dvipng -containersize 390480 -containerchecksum 6f72ec562dcb3ef56997ba84607acf667792f828d3066a8fbfc25ef70ac2c679095d25f89d97a5bcfbbac081c62da892f48c181483d64a97ba4d008c9d0a6d5f -binfiles arch=armhf-linux size=220 +containersize 392912 +containerchecksum ab6036df702258543d17357f1996ae524b60e84e5fe42824848bbaad9e670547bb13fa7ee0e20c7661c5149b55d555117e9c30b1d77a2ee2010a236c87b60480 +binfiles arch=armhf-linux size=223 bin/armhf-linux/dvigif bin/armhf-linux/dvipng -name dvipng.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvipng -containersize 441740 -containerchecksum f6c592657488324be2387988709c3c9325c73cc2721e76c2021368ecf144c285db7974ff94f92713ad4e21af4033c9b734ebd3bcb9439c85b0131c374b0de46d -binfiles arch=i386-cygwin size=252 - bin/i386-cygwin/dvigif - bin/i386-cygwin/dvipng.exe - name dvipng.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dvipng -containersize 459800 -containerchecksum 402e5529b029e58921152b2217ee0f14b9f7670850f086c157aacb423bfbe2c901bf929ce6f8d47d6ae5d645a2cb20e1881e737a0ab04b4ae6a05e69ddb5d2e0 -binfiles arch=i386-freebsd size=254 +containersize 467512 +containerchecksum eaa3ead8d9b04ab88241a31bd6fa7275e9d7541cb4afacf9d82158f9bec5a6b47fafa8655b5883fd80b71bf854755cc957f9ebd6d20dd04d20fe63a59e52db10 +binfiles arch=i386-freebsd size=259 bin/i386-freebsd/dvigif bin/i386-freebsd/dvipng name dvipng.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dvipng -containersize 500460 -containerchecksum 10aa96338b24da9615adfe74784575d2c4b4d923f5dffa6954b00864d6cbac13494f43955a37c289c029c4f0a80a82fb7306406b2c3371068ef5c088b0be5e79 -binfiles arch=i386-linux size=287 +containersize 509304 +containerchecksum e38023bb9c5824da4e67746b4825340fd87440c95231e093f86de430c49ce7ed698c32c5782436aca9776554568506c143f74c074f5b6a98c9d041e54cddb582 +binfiles arch=i386-linux size=294 bin/i386-linux/dvigif bin/i386-linux/dvipng name dvipng.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dvipng -containersize 387900 -containerchecksum 4a9ed06176a4498f744d6854d23b6288f340ed813c8f3c50e47435be93b6ea4b805bb5c31768fdbfd5cee1b67d285af11aa0c6fcc8a82282d60bf21862b0e17b -binfiles arch=i386-netbsd size=321 +containersize 391928 +containerchecksum 0eeada5ac554cb1d569e72c49308214d4bdae44993155be4d87df4b762f3e67445f8a3e2ac0f9dfa020aa940606da5474a0604d36cdbc9149fe3f459569817dd +binfiles arch=i386-netbsd size=327 bin/i386-netbsd/dvigif bin/i386-netbsd/dvipng name dvipng.i386-solaris category TLCore -revision 57938 +revision 66145 shortdesc i386-solaris files of dvipng -containersize 451896 -containerchecksum a7b2270b486eb02cdb20eba08c541d47ba480ef5d24090c236898c59b53ea947ef495998e971c80b86a0c599de79967fdefc149f0c412ff0dc44fe4480f3a341 -binfiles arch=i386-solaris size=235 +containersize 455412 +containerchecksum c4fbec479ea47be1eee126663be4f37aa259e9c625250b8ebb5c3bf11a8848fd00b918036a0f59acbded957bd277a1144c8197eabb20cb1870c58cc902f26cc8 +binfiles arch=i386-solaris size=239 bin/i386-solaris/dvigif bin/i386-solaris/dvipng name dvipng.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvipng -containersize 882028 -containerchecksum 0efa856da48bf54b9fd73d4a89cc22f80397e6a65c96ae7f5d4967d53208eb2f113a600a3d69bb50c9a0e53e61421fa410fe8c570583c2d2d3670ede82df8755 -binfiles arch=universal-darwin size=545 +containersize 906612 +containerchecksum 68c715049d35f7d06aa762cdbf7ebea46f3483ac218257734ab57f064f4d19da92fe0fac2990e83c0dc514dd69c3fb99170b0cc3b82a661d2a842dd6c8d64b09 +binfiles arch=universal-darwin size=561 bin/universal-darwin/dvigif bin/universal-darwin/dvipng -name dvipng.win32 +name dvipng.windows category TLCore -revision 58783 -shortdesc win32 files of dvipng -containersize 395916 -containerchecksum 0f87b7a7bb22e0c7fabdba83ec1cad52e4b3e815d3c8f9da5044f365c1e65c7a035b9cb282f190bab0de176c70f182767d389f188d93781dad8a4f3e0f8c7f5b -binfiles arch=win32 size=212 - bin/win32/dvigif.exe - bin/win32/dvipng.exe +revision 65891 +shortdesc windows files of dvipng +containersize 451244 +containerchecksum 59b4c26574bdd65a8eec53ebfdd5a28da490bbed05cc02037a7af700da38d66d3e3a3472bad949e5efcc9af4a2f5e10d7a541cd6a46955736a0259244e428520 +binfiles arch=windows size=267 + bin/windows/dvigif.exe + bin/windows/dvipng.exe name dvipng.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvipng -containersize 445440 -containerchecksum 9827bc960dbef77a08fbcee9357349417777eb7b62aea3324b50343c076e459302ab3a02041bc78b80994a2bb6415f36f1362c6d18857cb0136c7ec7d295cf68 -binfiles arch=x86_64-cygwin size=245 +containersize 452668 +containerchecksum cfa33ef4c414b7a85ffafd26216b00430c0f09f2d1723d9be450c3766ce296c42d262c6e61099f201b80385a733ea180ebd6089f5881ef996a72791a16af2506 +binfiles arch=x86_64-cygwin size=249 bin/x86_64-cygwin/dvigif bin/x86_64-cygwin/dvipng.exe name dvipng.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dvipng -containersize 447096 -containerchecksum ac098b4d071f1f038c96dc0c194b53f19986d86afcc4c0e08018f1f4556343467763fe8b3b69ead3230e084e7830934bb1f342b04d11f2ea6f64be6707667fcb -binfiles arch=x86_64-darwinlegacy size=246 +containersize 454416 +containerchecksum 70897fa2cab08cc645ab9d60f8da7415644e2b289a603d073bba3a786156966ebea64a60a0757504fe59f9da2394f64bc581f7fb45a88898a64cbe3eea4de97d +binfiles arch=x86_64-darwinlegacy size=250 bin/x86_64-darwinlegacy/dvigif bin/x86_64-darwinlegacy/dvipng name dvipng.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dvipng -containersize 483392 -containerchecksum ce82eaa410c8b779753d3ccacc75a8fd496569981290d7f7be0ac8de1f73da264f4137e9a4d4caaa7618768758b69b738d8f9f6674f71c93136ff60328c93889 -binfiles arch=x86_64-linux size=269 +containersize 491928 +containerchecksum 9c25d48a6d33d137700acd2b87ee5553cd332a9463f4806237129fb7dd961a042191942e65a2171a886e8f62f47c683d7e27698fd562315358693016718cf36c +binfiles arch=x86_64-linux size=273 bin/x86_64-linux/dvigif bin/x86_64-linux/dvipng name dvipng.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dvipng -containersize 497484 -containerchecksum 1c054b8e36c108c0f09cc2c0c1b9e9f5985b21ab865ec25e3bf8332ac3bd1168ad807a9598fb4b5379c1251964748e068ffd203cbd542c9585cacc35dce0f97a -binfiles arch=x86_64-linuxmusl size=285 +containersize 507704 +containerchecksum f6d972a8b0c833f061d1a97f05cc2987f5d4fd48f1691520b3ab1b1c74174c0db885d7b18fa06b47846c5d4e5995a435b280c8dc14e7c4cdcdd5d3ba1589a499 +binfiles arch=x86_64-linuxmusl size=289 bin/x86_64-linuxmusl/dvigif bin/x86_64-linuxmusl/dvipng name dvipng.x86_64-solaris category TLCore -revision 57938 +revision 66145 shortdesc x86_64-solaris files of dvipng -containersize 492276 -containerchecksum bb3e45e50c212b939bb2ad1e26400f06c1c34bd3be59db5faf0ef0c23802010d2fbccb0cabbd2ff45bfc4fd95ec6c50a6cdca821e187129f221a3afcd5df28b0 -binfiles arch=x86_64-solaris size=273 +containersize 501692 +containerchecksum f9871915e035908d16374b750640f265dcc5cc45ec81acba22eed7bbf9fe6c5adc4a1b0e7ceec92a8b9d0e640bdb017ac71e348da5bc44e4a10f8c652eb5d860 +binfiles arch=x86_64-solaris size=279 bin/x86_64-solaris/dvigif bin/x86_64-solaris/dvipng name dvipos category TLCore -revision 52851 +revision 66186 shortdesc support DVI pos: specials used by ConTeXt DVI output depend dvipos.ARCH containersize 296 -containerchecksum 152cc45942bb1d241008ea0924f1e96e2329d6fd4228be42dc6dcb9eb28081bcb3d80e407e9fdf0560e93d095fd07351cf073f14d4a4c25eb984613fd9189826 -doccontainersize 28512 -doccontainerchecksum 2bf3fd5bbd7b6e1fb8a263dd0e3deef358bead727df5de280342376225fd7366ff470b9c2fca8f763890d1047fe2c7a5b138ade1b5fcab383c8113e10f245199 +containerchecksum 9e949fb402facda9c30fa2f388b80f2cfc530670b33cbd78559e4449fa6004c5d4082e4fb895ea397a334a333e5d5ae1a4f66fde3885f0a9eb28c9d9ebbecd0a +doccontainersize 28764 +doccontainerchecksum 254a1db41636608a133e7807a8d4ea8ddd99ac646f35b66a43205ac7fdaf4a15c21eafbb85e23a182506e509895776d1fcbe63b3b8a7f197d577c6405ece5c44 docfiles size=9 texmf-dist/doc/man/man1/dvipos.1 texmf-dist/doc/man/man1/dvipos.man1.pdf name dvipos.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dvipos -containersize 43716 -containerchecksum f3152db2f620584617efb202ea865795b2ca230764aa0c5264eb008d7f26521e86cd454bed22529851ee16755ee0aa61e79201ed8598c6579f299ad7ccc06279 +containersize 43740 +containerchecksum fc2bb304757fab42f4886c0d1aa62770bb31ce7c0a4c20fcfb8628f14377b43406398d1963797d3ac9574f22718efbe72865926542627b94530ee0a5f3a313c9 binfiles arch=aarch64-linux size=29 bin/aarch64-linux/dvipos name dvipos.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of dvipos -containersize 48900 -containerchecksum 52d4b0b96d7284cb629c4dd812410403186ecbc9bbd098ec1a1ca3907bdad260375e58e6a612aed554c3a451f910578fe5373f7a8b6344869123675f140979de +containersize 49248 +containerchecksum b2a2384eff5f696ae32e3548818c3340306b5202e69f01b69d003a08befedd64cbef88fcd416bf6b71789454a1508a8a0cfa4761ddc5e25e6056661e0357d845 binfiles arch=amd64-freebsd size=30 bin/amd64-freebsd/dvipos name dvipos.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of dvipos -containersize 44668 -containerchecksum 9e58ab33dfb099fdc03351c345fd512c6d71629b924fede8f70235ee5ec0212e45b5d2b156fbf12894323d5ded916469020cf0590d339eae8761834b21a8a4a8 +containersize 44660 +containerchecksum ff0e30378606f41ee0cbd7fdd108443770e467a697dd6a592233fbc763fd641dcf1c0a62598eed4017f989ef8bca384d40a02ab2ed1b46b0d144d914d98624a0 binfiles arch=amd64-netbsd size=37 bin/amd64-netbsd/dvipos name dvipos.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of dvipos -containersize 37156 -containerchecksum 0edeb8e16128cc7bfe2014638c08b8d4ec03f6397708f98330dcd0820693c0bcd7a961e16f712731eac50bdc73ed90b97a3753c50ca1e822e534efaf78201c21 +containersize 37148 +containerchecksum 6e102cf44333e5e8800f376a9f9b6d1ec1a276194a441c6d14c8d966de0f381d202abe964b962f237ea41741394ba94fb3be4dd7ed3b45573d89d7ba6d0d2403 binfiles arch=armhf-linux size=23 bin/armhf-linux/dvipos -name dvipos.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvipos -containersize 16376 -containerchecksum ad5869ec7a4913cc0d30d5bc88067f1ede72e38ce34536aaa4978f3e990a9073f5045cc31f2bcf88b72bf101debdb918826f1ed1e99ba0d467bffe0134e40dc2 -binfiles arch=i386-cygwin size=12 - bin/i386-cygwin/dvipos.exe - name dvipos.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of dvipos -containersize 42472 -containerchecksum 2f174581ad71951ca529a1eaebe2effb2bd851ac097da30c937d719f5f8c6c5bfea01137ceefea1846c01f43fcace94617c0ba80287e21665ccbbd5a41f0b52a +containersize 43628 +containerchecksum a1eae704490d8fd3ef362fe35fe80a27a5f5d5c6b3517305eb2f2fd315275cf188b3c8bc922ffe986139aecd4f7950dbf4f3307ba022d6e742805d82fa09469c binfiles arch=i386-freebsd size=26 bin/i386-freebsd/dvipos name dvipos.i386-linux category TLCore -revision 57878 +revision 62210 shortdesc i386-linux files of dvipos -containersize 48852 -containerchecksum 8f0ad03e0a0b3a83368f4506ffcfa8d0f8a0615a06bffb9a925b9e752bec7e5035ae65bee2d9f04c8bb5588ca86d231bde66ec266b8e4aa8e8eba580740d120b -binfiles arch=i386-linux size=31 +containersize 49336 +containerchecksum b47c2631eb0022851227320165973e162235add85d3d7fd52a0c60cca40284857939245cae871f10442342c8e0179c4d6306e4fe449207237c504663ee4ccee6 +binfiles arch=i386-linux size=32 bin/i386-linux/dvipos name dvipos.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of dvipos -containersize 40060 -containerchecksum 17d3176a4a0cfeceee6cb968508f97093b08ac7be6a0f849ccffc70c4b6d840ce253e025cb0dc0e6da6f9fc6fa97223008afb87b9d12225c010568195684e143 +containersize 40036 +containerchecksum 57e93a8f311315dffc938d45b7f895144d77de9def91521c691974f7b730ff421d2cf22f3d66312efc156a209ce41b6b755aa0046ad2adf2f20060376c5d14e2 binfiles arch=i386-netbsd size=33 bin/i386-netbsd/dvipos name dvipos.i386-solaris category TLCore -revision 57938 +revision 62206 shortdesc i386-solaris files of dvipos containersize 45468 -containerchecksum 09dfea18b228a436fc6ff482cae3757a170d6df88d6e6c80fd733e1f2956353caf7bffa660ca40f552a1582a46fbe3c7cfd456606603f96d0288bdea71d571f6 +containerchecksum 3242a2396ac15771963d5739553085151460642d217134aee8d226f7207414b142847783005b6c1f48588b9a58cd1a1612b5d131288349c70b9de588d8343344 binfiles arch=i386-solaris size=26 bin/i386-solaris/dvipos name dvipos.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvipos -containersize 89848 -containerchecksum f9342a2b0ece9b7561fd7ca5d9e6af393ec5801b798cd1f01efa08b619b9f48729d48262f8804d9ccf949b213c7be24217c49c9726060e6c948d262d45f789fb -binfiles arch=universal-darwin size=75 +containersize 90264 +containerchecksum 353d412cea2341f73972d5c51eb455a7d8ab93f62136840b1a1e13a44e008ff2d5f626bb20a92e243a11babf20744c6ad1d59ecca77a9438446c10e2771cecb3 +binfiles arch=universal-darwin size=79 bin/universal-darwin/dvipos -name dvipos.win32 +name dvipos.windows category TLCore -revision 58783 -shortdesc win32 files of dvipos -containersize 16884 -containerchecksum e4851dadf52ca7d04efa60ac40c0974709bf6dcfe89e4cea906c00bbf5df4028d2ec053b842e7732cbc144779b8ec19d809a598558506e592549226db119c43d -binfiles arch=win32 size=9 - bin/win32/dvipos.exe +revision 65891 +shortdesc windows files of dvipos +containersize 18212 +containerchecksum 3fcf020bd971b948d2debe846c3d0e157ffca2d5b70d48743b3d82f87367e0ccad2e9db0c1bd46beefcee87180797f5bccd6e2659c4a0dbe676f4e547fc36779 +binfiles arch=windows size=11 + bin/windows/dvipos.exe name dvipos.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvipos containersize 18408 -containerchecksum d69280b4e1382d88f78a1d9392872aa7fe864118a6047172247f80c6bfb82b4c17f95c6a725ee5df9316d619e8b0d4596e121f999d58156739f35168f5bf0efd +containerchecksum d37d05f778e734c756c5967b21c4c1c68e9fd5af8a30a1056f049c03d1dac15808ef63720f069dd52a4829a5a7213b31afb40ca83234a787e41a87b2f1a1ed13 binfiles arch=x86_64-cygwin size=12 bin/x86_64-cygwin/dvipos.exe name dvipos.x86_64-darwinlegacy category TLCore -revision 58231 +revision 62206 shortdesc x86_64-darwinlegacy files of dvipos -containersize 46064 -containerchecksum 66895d3f45be9b875bebd147971ede5ff73aa2d5c53a0741f93990fc6a0420c36d1a0b2d10b8340d4569fa326543f51b3a4edbf464baf0b0cd1b86d9bf581957 +containersize 46024 +containerchecksum 7d2c15b4d19aea6c8f917c885580c5b312a6c707884b20436957098913ab1aedd2082742c87eb44b0246a76d38313cdf0d1fbe12377f6a19ebd400b29e3f3be6 binfiles arch=x86_64-darwinlegacy size=28 bin/x86_64-darwinlegacy/dvipos name dvipos.x86_64-linux category TLCore -revision 57878 +revision 62187 shortdesc x86_64-linux files of dvipos -containersize 46888 -containerchecksum 4c9790d25b5ed5b1c95a1ca79dd330eeede9783d451500c80eb4d84c6909a6ec7b9e77e16861561539e09a03523e3a05a05e07bb9b7f119ab74af8f8d792a778 -binfiles arch=x86_64-linux size=28 +containersize 47140 +containerchecksum 70cb48792897b5efc90a0679c9d2121aa948550fb144fc496fd409bd4c5c5e6750f38ead9314e8335dc24f49b86b9bb824efd776730e0281debb1786cf6cc580 +binfiles arch=x86_64-linux size=29 bin/x86_64-linux/dvipos name dvipos.x86_64-linuxmusl category TLCore -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of dvipos -containersize 50636 -containerchecksum eb0da6e737d9818e542a1dd2bebc636fd96e36902e361f01dc532f535ec0055fe30bfcc1bb24e8df505f8573c5acc7d7a6f028d3183a1f69f4b26b07b44345cf +containersize 50120 +containerchecksum f488016ecb5057a7ede21405945ea7e8bd4691b5642986bab99c907adb5416f78c87e8000a31af3e90d8c36b4f83fb2153bf8e76541ec2c8bfd08e3499031c75 binfiles arch=x86_64-linuxmusl size=30 bin/x86_64-linuxmusl/dvipos name dvipos.x86_64-solaris category TLCore -revision 57938 +revision 62206 shortdesc x86_64-solaris files of dvipos -containersize 50988 -containerchecksum 3e5e50fc6741be662574387e1222f9e25a6cd8add61bd41da59ab87d79e561a5c75aeb78db905fe6b1c203370885ee7363e64e471dd0588c6d8bf4abd246a3a3 +containersize 50996 +containerchecksum 88632c216f5f12b0930042dbe0ccce49faa97a2bf13a8aa88fda405b0791f0d1989f83be8547d9f0d85e9008c906c1bf3640806dde8bf5e75a16725b15fc1f0a binfiles arch=x86_64-solaris size=31 bin/x86_64-solaris/dvipos name dvips category TLCore -revision 57972 +revision 66203 shortdesc A DVI to PostScript driver longdesc This package has been withdrawn from CTAN, and bundled into the longdesc distributions' package sets. Development now takes place within @@ -97732,11 +101350,11 @@ longdesc the TeX Live framework, and it is no longer available as a longdesc separate package. For download, support, and other information, longdesc please see TeX Live. depend dvips.ARCH -containersize 58080 -containerchecksum 31069dd768bfad8c3430abb001e5d73d1b5481c6a0216801c3e04c5571e9e841a77ef6176b6d42ca3ffd5b8860790f37ac6dded1a453120aea96ac7a2c207563 -doccontainersize 522148 -doccontainerchecksum a66136f6f457a6e4953f25e7489c98668d950da10c37668d8332ccf5b20eeec5f493b84ca014c944dd8b241cfe3b0621f6096ce4b3a6f732e3816026a7835245 -docfiles size=289 +containersize 58076 +containerchecksum fbaf1dd979ceed4f7146d8aebc31ba7d770a8389b4ac214086db5951c485a2a3e3a62b2772394c8053444dfb8de0d22b3501c2ee3ee1e4e7493a1df5a34cc275 +doccontainersize 531004 +doccontainerchecksum ac2518c20c26dcda42df79be79ed24e2c021af2084ede43f51a5589b1023c9c94a307bd0a4742880e2c89d7620b2889f3a675e30a449d699d15db98922b0da71 +docfiles size=308 texmf-dist/doc/dvips/NEWS texmf-dist/doc/dvips/README details="Readme" texmf-dist/doc/dvips/dvips.html @@ -97825,168 +101443,158 @@ runfiles size=138 texmf-dist/tex/generic/dvips/rotate.sty texmf-dist/tex/generic/dvips/rotate.tex catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-home http://tug.org/dvips -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/dvipsk/ +catalogue-contact-home https://tug.org/dvips +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/dvipsk/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-license other-free catalogue-topics dvi-print name dvips.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of dvips -containersize 143648 -containerchecksum d44112d463a1a3191e812c141aed4935ff4cf0157d7dff4fce38899670292cafee0f6ad2bf9ec211cb8c2ea92bce961695c656b0a26dccee0d712a4386eed3d7 -binfiles arch=aarch64-linux size=105 +containersize 144176 +containerchecksum 6f69ea832717165b87128aa742f58d164a6207c9dcf002733531094f07f1e19790072eed58d56a17ebba396c182ad7c078c1bcd5ab152d6104b00bd878643902 +binfiles arch=aarch64-linux size=106 bin/aarch64-linux/afm2tfm bin/aarch64-linux/dvips name dvips.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of dvips -containersize 159652 -containerchecksum ac17e2ebb032bb4adb7a38c1073b919bb69825432bae6bfcf69077e452f2913aeb8bf1e93938ae7d753b74fb1b2cb1e145a0d109f9343c59c8e6d976d9b72cf3 +containersize 159964 +containerchecksum 342eb13a100f8673601f29d4ac657b2752a9127149fa09cad5599fbbca629a3c15eef860c30e6263119e5f1e88359a92e54fc8ad8ca73eb642812b9c404c593a binfiles arch=amd64-freebsd size=107 bin/amd64-freebsd/afm2tfm bin/amd64-freebsd/dvips name dvips.amd64-netbsd category TLCore -revision 58866 +revision 65923 shortdesc amd64-netbsd files of dvips -containersize 134516 -containerchecksum 8baea2a7d0c7f2d0be25c4e2b15a77a2746009a49d45773c9599cfb58d4deae000c5b5f03893b7b89da494a01d628e3cb2b2ce63cbad7e89ae617723a3aae506 +containersize 134804 +containerchecksum dab3ed3ad60ba43682763366c0f8c07d5478227d6fb52a8d8830382f89e5514bcc3be72221a96222656c5aa2dd6d6b60ce3951044f60a5b3c8f18cbd7f33a425 binfiles arch=amd64-netbsd size=113 bin/amd64-netbsd/afm2tfm bin/amd64-netbsd/dvips name dvips.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of dvips -containersize 119880 -containerchecksum dd94cf964cc611bedf6d5d3cccb995be04075c6a033916c2339940cb034125f7b88f7b912427245a667c311e2a7ad8f05171e6f95a9844bcf2b58c357ee55028 +containersize 120108 +containerchecksum 9962954d65b956abbfd97a91fd825dc2ece5184589fa013e8f784e05358b49e2f83dfd76e63c585d91d27d1cb04d6fc86b3eb0fb46530d8b5bb89812a6822ce2 binfiles arch=armhf-linux size=81 bin/armhf-linux/afm2tfm bin/armhf-linux/dvips -name dvips.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvips -containersize 104048 -containerchecksum 91003f7ca938c66077c5cc704d1c8d1440d4ff95be61e243ed0ef708ff0d4b34835d6ad8f2dc49129bbac8a78fbb7d5dd658665db5b90ee77c4886cd785c0faa -binfiles arch=i386-cygwin size=63 - bin/i386-cygwin/afm2tfm.exe - bin/i386-cygwin/dvips.exe - name dvips.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of dvips -containersize 138328 -containerchecksum 9731cc4a737d7e623f1b5200cbb461d284e389894c0d87776d3050148e10c357437f76afbd064709fa3ad5610b05cb31a28258609019163b03866225b9323df2 +containersize 140172 +containerchecksum 494c48c6614b1c260875b361fe1d0f52d75d565797e80aa704e53793af80b3406434c9c6e8719d8617af3dbe54dec68c32470423cc7c8acebbb6bfa8ca5692f2 binfiles arch=i386-freebsd size=93 bin/i386-freebsd/afm2tfm bin/i386-freebsd/dvips name dvips.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of dvips -containersize 147384 -containerchecksum 3b3fc8c75f7c2ba6ce312fb570cf38e7f0cea21b885e723c81de4a51ed1108831991d3ba8cb6aeca9e1172a9fb13b4d0bfd3ab7cf0dd97bbcc3421806b4dd3b6 -binfiles arch=i386-linux size=101 +containersize 150260 +containerchecksum 3e316c450dcd1432a512d917a03dc9e568aae50955b3d2fe242f3e302a9948e0577456792c689c4a825e245f891531b45a93a4620f49094223fabf0e358d041a +binfiles arch=i386-linux size=104 bin/i386-linux/afm2tfm bin/i386-linux/dvips name dvips.i386-netbsd category TLCore -revision 58866 +revision 65923 shortdesc i386-netbsd files of dvips -containersize 119000 -containerchecksum fd8a37cd48438682b10f4bcbc16b91b1b48de32080a67281cd5ae0c60b1e481da49754e43285c20b5528a234c733debca1d12e34e2618b2bd13144bf7efe760a -binfiles arch=i386-netbsd size=103 +containersize 119244 +containerchecksum 188439d009635f996753533a5159cd78da48849eacc4a74c726cd273eb082bf9de55004d311621b6c345ec8909377b3f924f070d62a603a2069d0381d5394c50 +binfiles arch=i386-netbsd size=104 bin/i386-netbsd/afm2tfm bin/i386-netbsd/dvips name dvips.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of dvips -containersize 140624 -containerchecksum 882f6e9ef99d113267ee4a21ad4edf7c002e1c2621c33216f98475e4e0c3fe1e6d2f061db71de9bca0c3a86dd8db93b58fa33dc1bf5334e0e1cfa995dca2b431 +containersize 141024 +containerchecksum 9ee8083cc78b9ca3318f3e9d5553012e56866e1de7b9e7d291bad0e4c303558649f015b4c7b6324c6177595ecc4563009df1fa12ce666b69d3237a347d46c8c3 binfiles arch=i386-solaris size=89 bin/i386-solaris/afm2tfm bin/i386-solaris/dvips name dvips.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of dvips -containersize 293556 -containerchecksum 4fe9c13bc81c154a731bfe3a09079bf8a415e66d45003e6aafabceb4a11c20e22d1fbf712cf6d1a248879936ebbc97808889bced1d6e3bf2136ba55b8885fdac -binfiles arch=universal-darwin size=240 +containersize 296520 +containerchecksum 0be671b3d39f8a805428cd28f72a1eab64df00dc9bdfb6dbc9e845896f000289335dbb258fa06d072009e84690f5e6e2293940d26d17af6d1a2d274266346e3f +binfiles arch=universal-darwin size=244 bin/universal-darwin/afm2tfm bin/universal-darwin/dvips -name dvips.win32 +name dvips.windows category TLCore -revision 58843 -shortdesc win32 files of dvips -containersize 94144 -containerchecksum 5241414adc60f9fa5b8cdf5dd39e3664fe0b4f05fc65c84d1059ff6d3bdb6a3a205750151fa80edf1022b2c00f481b76870fe523a13bc0a948652782667b643b -binfiles arch=win32 size=53 - bin/win32/afm2tfm.exe - bin/win32/dvips.exe +revision 65891 +shortdesc windows files of dvips +containersize 109652 +containerchecksum c92282cf65d8328b70b8ae12a67b1557c1082b23056be6ec7d9a1db1b11eb04fc4f3a65af478676ff2b0371ce99d7a90473dc9461317a1f07337c6b787008cfb +binfiles arch=windows size=60 + bin/windows/afm2tfm.exe + bin/windows/dvips.exe name dvips.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvips -containersize 117036 -containerchecksum 0d306962c1b99c62b848ecb6285082790ed6d26ce7a7d11cbd33b1713f94002eff31ab1767b1593a43d380707c23ff571c0e9fe05e4148790791f94dfe300dfb +containersize 117860 +containerchecksum 8ad05ac6a5fd0f259c71d0ea30e64dd4e4f42ddfa0c02ddead671fae6b40f8e58aebb210e7aa2a9025f4045c8d5d2d5b62bfbb46ca8c0e0f311354a925cd1924 binfiles arch=x86_64-cygwin size=65 bin/x86_64-cygwin/afm2tfm.exe bin/x86_64-cygwin/dvips.exe name dvips.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of dvips -containersize 142652 -containerchecksum f786bb4eb6ee55b03894c4abbcc63da0a506f4c2b0828dca8b0780607dd26c69ec86e85f48a08d0d12f03a7973ede08fb172c541dfe505f7073ff8d3b8e3e048 +containersize 143024 +containerchecksum 54095b16ea99d8675a03f1a465397a9c5eb9f9192e97b3aae5020e87cbe93397d8f7305c3a09c68f591bce7c587880e3dac1cd8fcbd11a3b077a81bf2cbb9f2a binfiles arch=x86_64-darwinlegacy size=90 bin/x86_64-darwinlegacy/afm2tfm bin/x86_64-darwinlegacy/dvips name dvips.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of dvips -containersize 148320 -containerchecksum 4374137bd921444145a5e386963618035e9151f07344ab0d5a6ebe020be2034e9a933c0127edd3ef2f861f5a0fb0e77dfa338339344eb22e4965e675baabc23e -binfiles arch=x86_64-linux size=94 +containersize 150708 +containerchecksum 0d14f44a1c7678c5116c4785b9a2874860484c568bc3da3a85427ca0a42fe1df6cd5ff224b90ac77e15ad98d829130c528e5e2e1d19e2ffbbe59c6a2c1a0f6ba +binfiles arch=x86_64-linux size=98 bin/x86_64-linux/afm2tfm bin/x86_64-linux/dvips name dvips.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of dvips -containersize 155124 -containerchecksum 161e99be39c3ccd6ed201a179c5501ec1353ddc3cd6ead4dc6a6b2ed002e505996af9413b6da677f94125b706056af28c1273eb2ee9f1c99db258da095b452de -binfiles arch=x86_64-linuxmusl size=102 +containersize 156172 +containerchecksum f400aae50fa1cd1ebeee2276394cde324cff1b7838da7063ff3fce45964d32fca19765d1e81cf20f17c4448b26fb22bb7c60af11c99f896a63db2771b2dadfe2 +binfiles arch=x86_64-linuxmusl size=101 bin/x86_64-linuxmusl/afm2tfm bin/x86_64-linuxmusl/dvips name dvips.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of dvips -containersize 157384 -containerchecksum f97d7c9e31c8a7795af859890014989e61362c9db4581497b5f6c3b77c229a7dae96297c34f93a4b888bd7d53b730127b69ac0995a86e647c2a8f79e1688ba8c +containersize 157836 +containerchecksum 1f5451ca04598c4c96f0c6395e8cab8c6a369c21d21eca33e0838a881757228c2fa28b13ae3f9fd5be685439cb36c9eb934871115be52dddbe1ef2b11f22e15a binfiles arch=x86_64-solaris size=103 bin/x86_64-solaris/afm2tfm bin/x86_64-solaris/dvips @@ -98047,7 +101655,7 @@ catalogue-version 1.6 name dvisvgm category TLCore -revision 57972 +revision 66532 shortdesc Convert DVI, EPS, and PDF files to Scalable Vector Graphics format (SVG) longdesc Dvisvgm is a command line utility that converts TeX DVI as well longdesc as EPS and PDF files to the XML-based Scalable Vector Graphics @@ -98064,10 +101672,10 @@ longdesc the kpathsea library. For more detailed information, see the longdesc project page. depend dvisvgm.ARCH containersize 880 -containerchecksum bc91b0f9ec49020d3b7d9c0caa0456a844b7d9783dde5ce21b75407725139da86bc30bf0310fa5a99d12d5f5e812d674a872f0a10dc62576bc51bd3a6cdd2355 -doccontainersize 103700 -doccontainerchecksum 668040316023becd76605d16d9b7f4e16eb2246e51d2cdc05910ee9a78f85edd227ede70ca57d280f3473e2a7eea60b41f0ad76e26789963eafcf400e49a12ed -docfiles size=41 +containerchecksum fd8df318271d357d2c874a0dbd66ff7a1e171f67a9ad51e9558b97fa6e1641e000b002d8b3894659302a9f3f0307201c5fec5f0abc9cc9ad8daa4e4d19e13364 +doccontainersize 109776 +doccontainerchecksum cebe9fc18ba72542133e10c98277762dc221747cec852ea500a56058be75f25f46a96887d04144a2786a058e085451568138b697f0af7f57ec692516daf639d2 +docfiles size=43 texmf-dist/doc/man/man1/dvisvgm.1 texmf-dist/doc/man/man1/dvisvgm.man1.pdf catalogue-contact-announce https://dvisvgm.de/News @@ -98077,150 +101685,141 @@ catalogue-contact-repository https://github.com/mgieseki/dvisvgm catalogue-ctan /dviware/dvisvgm catalogue-license gpl3+ catalogue-topics dvi-proc -catalogue-version 2.11 +catalogue-version 3.0.4 name dvisvgm.aarch64-linux category TLCore -revision 57930 +revision 66547 shortdesc aarch64-linux files of dvisvgm -containersize 1699936 -containerchecksum e846f66be5bad746e2fd1a5afee9ebb6ccde1b91b6c2e5242af6f606d665e895ac8e3759910f56310897695fee9a658574533bae90fdcc96eebdbb86be420409 -binfiles arch=aarch64-linux size=1552 +containersize 1702680 +containerchecksum b582c8d2ee5860faf97ba646cda3c096aa3191d3ab8859b13f096ad8b5787b907c51dd9d0d808df131b9de7064837fccec2d81da46035bbe37298aed3f737065 +binfiles arch=aarch64-linux size=1130 bin/aarch64-linux/dvisvgm name dvisvgm.amd64-freebsd category TLCore -revision 57941 +revision 66547 shortdesc amd64-freebsd files of dvisvgm -containersize 1600524 -containerchecksum 718ccf65d0e72b76303c56bff7c6220fd3062a2dffe670d0ccd2dc1d054ec63af341c3676efac15e646d42bfcb252111ca467d8420f2a1609eb3a522c887347f -binfiles arch=amd64-freebsd size=1288 +containersize 1549368 +containerchecksum 968dfab05f46298216749d6d39222d80f89ae22cfb4d35ec011db234ac81ffea3fb9f764f89d33e3052f3fb37ca0d0c4cb9c58a96c62724d97aea8b44d4f1774 +binfiles arch=amd64-freebsd size=930 bin/amd64-freebsd/dvisvgm name dvisvgm.amd64-netbsd category TLCore -revision 57877 +revision 66541 shortdesc amd64-netbsd files of dvisvgm -containersize 1799892 -containerchecksum 264e6b3e27f7d7dc1deb34f130c2519a29e8ce006165a89883c20bed6ca13526ca59478722f2fc72415f833b698ccf0021e4e96679699cc8fe6e16565369945d -binfiles arch=amd64-netbsd size=2658 +containersize 1869496 +containerchecksum ee28fb53090b219eaa300bc71bd61043e4f23dafacc7af1e4949a557208d89258b74650419d45d72eb1a0c713ea6e35fc5c468ee22d34ec3ba7dfa927e2ec73c +binfiles arch=amd64-netbsd size=2316 bin/amd64-netbsd/dvisvgm name dvisvgm.armhf-linux category TLCore -revision 57957 +revision 66547 shortdesc armhf-linux files of dvisvgm -containersize 1503980 -containerchecksum a22292961924b6c180e47b5d166188c543b353107a4b08c00a503b1a1a3752837df23ca8389bc8cacb14fa211efe1f3f205080a305d42a4effa4ecde9d25545e -binfiles arch=armhf-linux size=1253 +containersize 1543056 +containerchecksum 95a315e69a9de0a1aa057cca856a6419ba7e2e8ee3f028280c4baf24cccf189b74a5954b32eef705bda7cbfbb9898b0527806e00d4cbceab8fb968a234dd15bc +binfiles arch=armhf-linux size=964 bin/armhf-linux/dvisvgm -name dvisvgm.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of dvisvgm -containersize 1702140 -containerchecksum deae6badba080acbf20bb33d6cb6a210f1f627ce7d52db10aee2a4d71ef5d551fc656af3108f63371c6551386b6c869bb16a5f936a2ce13d3dc70b6e7ea30acc -binfiles arch=i386-cygwin size=1439 - bin/i386-cygwin/dvisvgm.exe - name dvisvgm.i386-freebsd category TLCore -revision 57961 +revision 66547 shortdesc i386-freebsd files of dvisvgm -containersize 1564844 -containerchecksum 18fb00ce55a3cc760e9d0afebeb9cd68693f2461b79486a6cabf56656a45e9b3d18ed28fac0c8459310065b9504c6ac9b1a7ba7ad9d1ab0ffd7eaa294d9bab76 -binfiles arch=i386-freebsd size=1202 +containersize 1523772 +containerchecksum 2c2d8a90ef620dafde823670e0c04608b95039e4968efaf35f132e3d03dbddd89dea95402e6a375dc220db7f7c5ed8ab5c2c7c9dcecd5bdb0afe24349693af0a +binfiles arch=i386-freebsd size=893 bin/i386-freebsd/dvisvgm name dvisvgm.i386-linux category TLCore -revision 57878 +revision 66547 shortdesc i386-linux files of dvisvgm -containersize 1759244 -containerchecksum 4103e8ddae6be136a09654b43eeea073e38d5bb964b014c94a072e7e7d9cd9f98267ab9e209b19ed28cafa16a71963896b3e2af2c4f1b93673b25718298cfbc2 -binfiles arch=i386-linux size=1399 +containersize 1857212 +containerchecksum d0e0920667876e15e1a18476bf88eaaaac5e40963fa02e5e2670258da632e81ded8b48ebfa76ff8e108994702a5751760c4ad551e23e7d5947f23e645ba7d074 +binfiles arch=i386-linux size=1176 bin/i386-linux/dvisvgm name dvisvgm.i386-netbsd category TLCore -revision 57877 +revision 66541 shortdesc i386-netbsd files of dvisvgm -containersize 1764220 -containerchecksum 9c9141ab9a0f134216da1246e1ff62fdaeb18c502c75e6332f9d4c5a8978e6240de8f80c1eb3c926f79666934a7aa1b57a0ecc91d68c657545f0fb46a3435287 -binfiles arch=i386-netbsd size=2492 +containersize 1841364 +containerchecksum a09400b31128725cc190d73d6e17c18ef9a1dee3f585bf4d501e16fcee210ab1480f38b60ef70eea25d62f7944964dab5deb0adc4997a555971f1b99faf42e2c +binfiles arch=i386-netbsd size=2200 bin/i386-netbsd/dvisvgm name dvisvgm.i386-solaris category TLCore -revision 57938 +revision 66547 shortdesc i386-solaris files of dvisvgm -containersize 1930708 -containerchecksum 7d38e12705d0c2529265b17dab01434c5ade99722b71a4f7855f77884b5fc1e75fe850cd24e5766348544001cf5a4cd46d7ad8558ef3d850ac6c0675cb5d3deb -binfiles arch=i386-solaris size=1637 +containersize 1629000 +containerchecksum 106406a60e24cc0eef64882013ada67d98fa888ef45ac164b589a8cc983230b803e79200bb110e53c3c2dac6563ad6a8ac32b91f5e89335ef2f9d1f388278084 +binfiles arch=i386-solaris size=1007 bin/i386-solaris/dvisvgm name dvisvgm.universal-darwin category TLCore -revision 57908 +revision 66560 shortdesc universal-darwin files of dvisvgm -containersize 2614756 -containerchecksum 41b0aa1efdd88946faea14aeeb80ebd6d0051a369eb949258d7939241c65118adb8b27d4bb3e2209c0bdea567e067910548077536fbeb577cfc6b47400530c75 -binfiles arch=universal-darwin size=2527 +containersize 2374020 +containerchecksum 921bfc9843d18fb9938735ba05ed183bec8e653f65adf36f317a40486d6f533bba3cd7a214732c81789203510f5b3db67e857799fa033d3e5313ab9e91f05b49 +binfiles arch=universal-darwin size=1832 bin/universal-darwin/dvisvgm -name dvisvgm.win32 +name dvisvgm.windows category TLCore -revision 58783 -shortdesc win32 files of dvisvgm -containersize 1470972 -containerchecksum 7fd208110d786b748ba5d73958bf74683d0d456b7760c09d9dccf36b5b03ee52b8a15dba4ba9c758c58c78c04111b4485d7dbe6065ae9a9b367bb73173b47ce3 -binfiles arch=win32 size=1735 - bin/win32/dvisvgm.exe +revision 66566 +shortdesc windows files of dvisvgm +containersize 1612556 +containerchecksum d623952c87a761738ce3277ad7e41663961da67d3252473fb8d61c4d199f6f083acecba0344b3b34e4d89ec6faf611aabda09a6a257a87b4d73fef252f16a297 +binfiles arch=windows size=1532 + bin/windows/dvisvgm.exe name dvisvgm.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of dvisvgm -containersize 1718340 -containerchecksum 50413c234c5472b2712e1888eb3095ad3bd55f0648264fa1ec19eddd45fe92e91cb0adb619eede31ce43c43a43520fa0a517ab345b98aaacc861e21509e705c9 -binfiles arch=x86_64-cygwin size=1424 +containersize 1719404 +containerchecksum 120e8ad0d6ceaec7c5f55da44abcff64b39febeaef40cd204503dd92f954ee42b325f8b6795f1d6897295f636a8c9d4f32954c51b88484bda1a181b9ad74ab7c +binfiles arch=x86_64-cygwin size=1090 bin/x86_64-cygwin/dvisvgm.exe name dvisvgm.x86_64-darwinlegacy category TLCore -revision 58231 +revision 66547 shortdesc x86_64-darwinlegacy files of dvisvgm -containersize 1488204 -containerchecksum 7acc71abd03c512ad95d22f6f117fe6a88f1c4dfc2e52f45a16b8d721bc0c990836fc9657831eeff7b5c041661520ae9ba61ff6758221ef786a5d0f797565372 -binfiles arch=x86_64-darwinlegacy size=1201 +containersize 1467104 +containerchecksum 471d5d6fe26bd502f583e7c2ceaa5175cc52b3b8288dce69faaa9e9e242452e8ff237e8b263634cd42d5feaaf6616006f70a85e48a0fe04b038dbd3cabbbba9c +binfiles arch=x86_64-darwinlegacy size=869 bin/x86_64-darwinlegacy/dvisvgm name dvisvgm.x86_64-linux category TLCore -revision 57878 +revision 66547 shortdesc x86_64-linux files of dvisvgm -containersize 1728572 -containerchecksum 53ba09f6b53fc396033c039aa8752cc7e8356c9a09f60a10f6327f27b612130a58833e78f274479e8d8be10c55947cb1e24dca782507baa04875bdafcf5a8ce7 -binfiles arch=x86_64-linux size=1398 +containersize 1790804 +containerchecksum 27d7fd2d32c35f95a1f7dcdeca914d27bfd86ad3283aee67f00b7a638f93ce28bcaafae3274c4f140d635a19cacc5b0f60df0dffdaddd273b9b411a607a697d8 +binfiles arch=x86_64-linux size=1166 bin/x86_64-linux/dvisvgm name dvisvgm.x86_64-linuxmusl category TLCore -revision 57878 +revision 66547 shortdesc x86_64-linuxmusl files of dvisvgm -containersize 1787968 -containerchecksum 2017b7c89d5d79e913f34826f86d3929c23b20a87c84062a425fd0e24b27abf5737f7d114fedeaf688ee7e99aaaac9408a5f8f672004d3ec3c07c7516e51a282 -binfiles arch=x86_64-linuxmusl size=1519 +containersize 1774284 +containerchecksum 490e66c4d3d354badd4e4c0dd1087ac6627f62ef87c3bb5a541bcb362dbb1791d143a9b78e905f32f31f01f9fe143fa22d5962e381cb890e15ec5cb2d9436bdb +binfiles arch=x86_64-linuxmusl size=1143 bin/x86_64-linuxmusl/dvisvgm name dvisvgm.x86_64-solaris category TLCore -revision 57938 +revision 66547 shortdesc x86_64-solaris files of dvisvgm -containersize 1955020 -containerchecksum ff5a710c2fdc38b4ea7fdc2401de7ffeb34650cde80b2804b5c9edf10d368bc572c4327492eda0be87d368395819a49d2a0e5a61addb70f686e8ef4f6061d975 -binfiles arch=x86_64-solaris size=1752 +containersize 1642620 +containerchecksum 27d93bb2995ff233083902e98364c396b411554ef979a3f73346ddf30cb3153805736c83585c794ee1caf2383fea0bbc559baf5854ee4533e8ef96b631c59502 +binfiles arch=x86_64-solaris size=1060 bin/x86_64-solaris/dvisvgm name dynamicnumber @@ -98523,6 +102122,34 @@ catalogue-ctan /macros/latex/contrib/ean13isbn catalogue-license lppl1.3 catalogue-topics barcode std-conform +name easing +category Package +revision 59975 +shortdesc easing functions for pgfmath +relocated 1 +longdesc This library implements a collection of easing functions and +longdesc adds them to the PGF mathematical engine. +containersize 2220 +containerchecksum 3ed041546ecf6e921ce60f48365a1ba81ebaa8420f8f6d8e1c9ba1b38b20ea2a8c13392295d31a784bcc2fbf135ae37e5b89af794603b98492a4fac9c6dc6861 +doccontainersize 313228 +doccontainerchecksum bbd559d63635d83e00924a9d40258f3edc32519524dcdc4bd3d7bce0487eec01900eeb26070cd4abe372150f013ab3206b075aaf530de6d395a938465de072bf +docfiles size=78 + RELOC/doc/latex/easing/README details="Readme" + RELOC/doc/latex/easing/easing.pdf details="Package documentation" +srccontainersize 7876 +srccontainerchecksum dcbac9aef840277651060def21b4bac6f26572d7a0dbc7524788af224934c6344ac47af13e85a4c4d8f0857227b5ba8b5401081d34b7d5929747f510288dad37 +srcfiles size=9 + RELOC/source/latex/easing/easing.dtx + RELOC/source/latex/easing/easing.ins +runfiles size=3 + RELOC/tex/latex/easing/pgflibraryeasing.code.tex +catalogue-contact-bugs https://github.com/lohkatsun/pgf-easing/issues +catalogue-contact-repository https://github.com/lohkatsun/pgf-easing +catalogue-ctan /graphics/pgf/contrib/easing +catalogue-license lppl1.3 +catalogue-topics graphics graphics-supp pgf-tikz calculation +catalogue-version 0.1 + name easy category Package revision 19440 @@ -98584,35 +102211,44 @@ catalogue-topics notes editorial name easybook category Package -revision 59076 -shortdesc Typeset Chinese books or notes +revision 64976 +shortdesc Easily typesetting Chinese theses or books relocated 1 -longdesc Easybook is a minimalist style template based on the ctexbook -longdesc book document class. -containersize 12744 -containerchecksum 647118c8be359aea6456753aaef286482291b246a7fc0585c25e172f8da17a6257aec5e346e933348ac1b598bdf02725d1eaaf73cc92b65d65d957522a515634 -doccontainersize 478208 -doccontainerchecksum 61a972ce2d217bbb47879e466561c33691544ff3ca5db337a45491d1e61610e3975b0643c1a8532d0eaa1270025b51c823053b976be614bcadc620eda0dd9017 -docfiles size=118 +longdesc easybook is a pure academic template created based on the +longdesc ctexbook book document class. It also has the functions of book +longdesc and article document class. Combined with the general framework +longdesc design of the dissertation of many universities in China, +longdesc providing multiple commands and interfaces allows users to +longdesc easily customize the thesis template. Its basic macro package +longdesc easybase can also be used with CTeX and standard document +longdesc classes. +containersize 16572 +containerchecksum 3dc7b87455bd9258ae67ef30d2abd098a3f86c931c7e572d0660c43a1b5832d4d3580066cb315afaed026a25c6edd49344598427d4540087d91d43e3e202e1e6 +doccontainersize 611612 +doccontainerchecksum 008b2c7b9dc5b4b9733d93e7880591da70ba7a3b146fc954b3ad07b2586a1594e901829e33ad33557794670adf9a5a1ed3035a158ea41a7d217f613cd57a6856 +docfiles size=166 RELOC/doc/latex/easybook/README.md details="Readme" RELOC/doc/latex/easybook/easybook.pdf details="Package documentation" language="zh" -srccontainersize 27668 -srccontainerchecksum 9e358bfb1b00a4fd94f210ad30771b6af8d260e46cdae082816c834f41c16b878d88002ae1b35d88bb8cb354fa478314d3e9a3bd5dc0cc7047c6eabfac1e1a07 -srcfiles size=29 + RELOC/doc/latex/easybook/easybook.tex +srccontainersize 16480 +srccontainerchecksum 43fdaa65f4371b73b2171d3c6ed8f583a39f224fbe456a2d9c492454e7f6b3c8adb9ff98588d8b859d981fc14fb5eef02ec8827d57225b393b977647d2070a49 +srcfiles size=20 RELOC/source/latex/easybook/easybook.dtx RELOC/source/latex/easybook/easybook.ins -runfiles size=15 +runfiles size=20 + RELOC/tex/latex/easybook/easybase.sty RELOC/tex/latex/easybook/easybook.cls + RELOC/tex/latex/easybook/eb-tcolorbox.cfg catalogue-also ctex -catalogue-contact-repository https://gitee.com/texl3/easybook +catalogue-contact-repository https://gitee.com/texno3/easybook catalogue-ctan /macros/latex/contrib/easybook -catalogue-license cc-by-4 -catalogue-topics book-pub class chinese expl3 -catalogue-version 1.25a +catalogue-license lppl1.3c +catalogue-topics book-pub dissertation class doc-templ chinese expl3 +catalogue-version 1.71D name easyfig category Package -revision 56291 +revision 64967 shortdesc Simplifying the use of common figures relocated 1 longdesc The package provides the command \Figure[...]{=1.30, in PDF mode, is supported. -containersize 5124 -containerchecksum f42311a4f5488c00f33cd43af03da9fe6b1912c27b7ce9f40e488f5a4931a5c57fe637d475cfca750e191c1b605f532a32ac83476207a49543fd090e932cecd1 -doccontainersize 392868 -doccontainerchecksum 19925356dfac7c2fcd06d2886c8ffc7fda202f6639e98e993b8ddba3570223db0f4ad98f8ab51b096790e73e4c23946846ffaeaa2a847085d4d95abdaac06833 -docfiles size=100 +containersize 5144 +containerchecksum 5fe36b7666c58f676b48fde16ca5f07296dfd2f6d28cb8861ae3d341020552a509dd79695afa73fe20c6a5e6e87d3557f89f66902e8f02f39665efd9fac8120f +doccontainersize 407664 +doccontainerchecksum bb2e63963298b2c3a35c71b83eecd6464c7e4841e1098177ee78e56d15e072a88e6c58964e9292d70d495cce513b46d7b542d30574a41f4d0643df1f3b6842fd +docfiles size=106 RELOC/doc/latex/embedfile/README.md details="Readme" RELOC/doc/latex/embedfile/embedfile-example-collection.tex RELOC/doc/latex/embedfile/embedfile-example-plain.tex RELOC/doc/latex/embedfile/embedfile.pdf details="Package documentation" -srccontainersize 13236 -srccontainerchecksum e660fe1caebb232b3c7ab761ccbae1fb58535002e6f4825c00c33f3d19a2b9b2a7a8e5e4b5a63a929b2a03bbae161ffbb25113a7f6fa3c46477b0c0773c97b5b +srccontainersize 13424 +srccontainerchecksum 6a8c7c8ccdaa01f7e36ba6fad9e1d1f3873e77523d4c8b6b1de222292515016ee9aba5df53846d1367e2d5be90f7c912eb4828c4145575e38cb940db65e62e9e srcfiles size=15 RELOC/source/latex/embedfile/embedfile.dtx runfiles size=7 @@ -104588,7 +108067,7 @@ catalogue-contact-repository https://github.com/ho-tex/embedfile catalogue-ctan /macros/latex/contrib/embedfile catalogue-license lppl1.3c catalogue-topics pdf-feat -catalogue-version 2.11 +catalogue-version 2.12 name embrac category Package @@ -104646,7 +108125,7 @@ catalogue-version 1 name emisa category Package -revision 57013 +revision 60068 shortdesc A LaTeX package for preparing manuscripts for the journal EMISA relocated 1 longdesc The EMISA LaTeX package is provided for preparing manuscripts @@ -104655,19 +108134,18 @@ longdesc Systems Architectures), and for preparing accepted submissions longdesc for publication as well as for typesetting the final document longdesc by the editorial office. Articles in EMISA are published online longdesc at EMISA in the Portable Document Format (PDF). -containersize 15372 -containerchecksum dac517c5f1f5e475948d519ef46e3639a49ab3303a5d93821707b43b224ccddcdf6edfb8576fd89888cd00705b11abf17054c46008bb288450a0c679cc0ded2f -doccontainersize 513396 -doccontainerchecksum 7fb9b28f4675a5e14687b569e1e5394f06f25f536eaa6c36ed390d24c634d2a30fc43c558d3e1ca004bdf41436705cd7ce9b59beeb31a6dd757a5fa7421f84d7 -docfiles size=131 +containersize 15376 +containerchecksum dbe700eed5cb82ed687a5650fb58f07cd588d7a759ef67f0b015a795a732ec1b2d3019f637ecfe39fa240c93816c41084c5448d107371d209d40ce122fbda821 +doccontainersize 513260 +doccontainerchecksum 48529f12758cc7874b45ff5fd418641b322ac33541aee2665ee309a6b0bee8362c97fc2e31870fb34430d60343cae433f5a2793dc785c5a88d4f2e5518317433 +docfiles size=130 RELOC/doc/latex/emisa/CHANGELOG.md - RELOC/doc/latex/emisa/README.TEXLIVE RELOC/doc/latex/emisa/README.md details="Readme" RELOC/doc/latex/emisa/emisa-author-template.tex RELOC/doc/latex/emisa/emisa.pdf details="Package documentation" RELOC/doc/latex/emisa/manifest.txt -srccontainersize 48368 -srccontainerchecksum 3cb1e47c50d4cccbfd1b428ec1193ffd0f489d0284dd095f2f969c8db76f735b854e4102f474ab5e72876bb7b6e6210dd617958e42a851cbc03f5844626030fd +srccontainersize 48384 +srccontainerchecksum 98437def2e985e2186bdee4f1ba1200807c1c1dc9882b41e60acf620907933417c774dc217c67e86a667fa84ca66ddb07f9132c7e3e8a105638097bc66b7d940 srcfiles size=54 RELOC/source/latex/emisa/emisa.dtx RELOC/source/latex/emisa/emisa.ins @@ -104683,28 +108161,29 @@ catalogue-version 2.3.0 name emoji category Package -revision 55678 +revision 59961 shortdesc Emoji support in (Lua)LaTeX relocated 1 -longdesc This package allows user to typeset emoji in a LaTeX document. -longdesc It requires LuaHBTeX, or LuaLaTeX-dev at present. -containersize 40740 -containerchecksum c26f69740efb5f18f196742ca927bda5fceb15a9acbc65e6671d569da40dda75cfec188fe198bce4e4d476bb41e6ca383fe0a19b84b15691f791cc4ff6001e98 -doccontainersize 1051376 -doccontainerchecksum caf60c65f653a2a57f3d33641526fc8f80903c718b62113c7425094e4ae35799f0c1ccacd19ceb3a0b39b571ea2d7b099effbc69aaa3f3704062e8e6f22d4e83 -docfiles size=270 +longdesc This package allows users to typeset emojis in LaTeX documents. +longdesc It requires the LuaHBTeX engine, which can be called by +longdesc lualatex since TeX Live 2020, or lualatex-dev in TeX Live 2019. +containersize 43104 +containerchecksum 5c87970b1d47489027ef1a13bd35958b54c7c8b7bb59f7a97a5293d2156e3acfbef13c3a83b5eac3ce8297aa01b25423add40d3d0e654b5e0007f34556449e5a +doccontainersize 1131608 +doccontainerchecksum 170a8e35c4f4c86751db4d357df39dbc215126465e784829cbd15e9226d04b92aca0d7836312c114d1c699daa5054883f364377d1f355f97024b63741aeede0a +docfiles size=290 RELOC/doc/latex/emoji/README.md details="Readme" RELOC/doc/latex/emoji/emoji-doc.pdf details="Package documentation" RELOC/doc/latex/emoji/emoji-doc.tex -runfiles size=94 +runfiles size=106 RELOC/tex/latex/emoji/emoji-table.def RELOC/tex/latex/emoji/emoji.sty catalogue-contact-bugs https://github.com/stone-zeng/latex-emoji/issues catalogue-contact-repository https://github.com/stone-zeng/latex-emoji catalogue-ctan /macros/luatex/latex/emoji catalogue-license lppl1.3c -catalogue-topics graphics graphics-use luatex -catalogue-version 0.2.1 +catalogue-topics graphics graphics-use luatex expl3 +catalogue-version 0.2.2 name emojicite category Package @@ -105243,18 +108722,18 @@ catalogue-version 0.1 name enotez category Package -revision 57130 +revision 61490 shortdesc Support for end-notes relocated 1 longdesc The package allows nested endnotes, supports hyperref and longdesc provides means for easy customization of the list of notes. The longdesc package requires the expl3 bundle and packages from the LaTeX 3 longdesc 'package set'. -containersize 7356 -containerchecksum 1bd49ee7ece262d28d0b80f418e7aaf130044447ad341ae799c4f84c4c4e69300662951dab2733d996abf896280470857e8c35832759008881cd23f35fd52e30 -doccontainersize 458308 -doccontainerchecksum a04cad229111ae30cb51aad4c843488661a3e59287280c9335bd82d5a5172429ebcbd31e1d7f6e2c7ec5d9a3f068bf00c88e7dc67f3e39a794f32107bc705f3a -docfiles size=119 +containersize 7368 +containerchecksum 0f292fbfa3ad395857bf04c50817376152765c1511bc1b922fb6612033a0924a416b83b38e15a36ee792ec5ba351614e93cf6b70c6b2eb8cf78ca74cce6438ec +doccontainersize 469756 +doccontainerchecksum 6a52564111cc5af280ecb578c916a340ae0f0a8e1848f6d19d97d4c8dae863af7c8c0ecd057f5eb54ee701fb1f3f0b101bb4b6fde2500af71867b5d38a29cc8a +docfiles size=122 RELOC/doc/latex/enotez/README details="Readme" RELOC/doc/latex/enotez/enotez_en.pdf details="Package documentation" RELOC/doc/latex/enotez/enotez_en.tex @@ -105267,7 +108746,7 @@ catalogue-contact-repository https://github.com/cgnieder/enotez/ catalogue-ctan /macros/latex/contrib/enotez catalogue-license lppl1.3c catalogue-topics endnote expl3 -catalogue-version 0.10c +catalogue-version 0.10d name enumitem category Package @@ -105386,24 +108865,24 @@ catalogue-version 0.3 name envlab category Package -revision 15878 +revision 61937 shortdesc Addresses on envelopes or mailing labels relocated 1 longdesc A LaTeX package for producing mailing envelopes and labels, longdesc including barcodes and address formatting according to the US longdesc Postal Service rules. Redefines the standard \makelabels longdesc command of the LaTeX letter documentclass. -containersize 5524 -containerchecksum ba20028efa3c286132133d8c292fbc02d77881e64923ca98cece98fbe1e60acf4033b8308a3f9f31f144de071938698a75add803436e1205f7baa820a308a4f1 +containersize 5492 +containerchecksum d4272cd079bc0b48835d675f1b36d0155d7da4cf920785dc7fdf608c311f43afb88e6861087c79774af6a434aacce05dda59f9e53aa7b2f3f37e06415eafa01e doccontainersize 341332 -doccontainerchecksum 4dedc851e00f82ff3bb912e99bf112f4e464b129b89ed75ac41cab9e9ec8c54a32ace3901a3bdc11c90597cfc0481fc7cfc89b4b95bc9aa0c8850a1e8ec88cc9 +doccontainerchecksum dfc28fe6df6822fd8f45b3bd31a66e635cf621daadd5465408dfdca47a176e0f23e66501b5b89a8f803265c68a02db6a7ba1e05e0f9ba0f35287bc582d1f48a0 docfiles size=109 RELOC/doc/latex/envlab/elguide.pdf details="User guide" RELOC/doc/latex/envlab/elguide.tex RELOC/doc/latex/envlab/envlab.pdf details="Documentation source" RELOC/doc/latex/envlab/readme.v12 srccontainersize 14628 -srccontainerchecksum 9181b7083e3b57329effd0c9ef462a626f8de6db5eb6dbf6800237348a010b74eaeaf11ffa2b491ddf324f0d9bb2c792b9fdda238b887df057b82dfa4fbf04cf +srccontainerchecksum 39ba3371b9aeab277968d8847ba5fe519ea3035306fdcb2a6376b6fec881a3d443ae7f4912039216058fcf7918ddeace617ca08e85c6f21c70820e8d379805bf srcfiles size=19 RELOC/source/latex/envlab/elold.ins RELOC/source/latex/envlab/envlab.drv @@ -105413,12 +108892,50 @@ runfiles size=7 RELOC/tex/latex/envlab/envlab.cfg RELOC/tex/latex/envlab/envlab.sty catalogue-also akletter dinbrief formlett -catalogue-contact-home http://users.lk.net/~borisv/latex.html +catalogue-contact-home http://borisv.lk.net catalogue-ctan /macros/latex/contrib/envlab catalogue-license lppl catalogue-topics letter barcode class catalogue-version 1.2 +name eolang +category Package +revision 66274 +shortdesc Formulas and graphs for the EO programming language +relocated 1 +longdesc This LaTeX package helps you write [?] -calculus formulas and +longdesc SODG graphs for the EO programming language. +depend amsfonts +depend amsmath +depend fancyvrb +depend iexec +depend pgf +depend pgfopts +depend stmaryrd +containersize 7112 +containerchecksum 25f30865e3464fe4fd609f6b21bf309dfa969577702813c28581bee61092412942265a66d7cb4e72bfc0a29b84ad4f6cb87a7e4bc3b389ed442503ea2e3a7b82 +doccontainersize 1616212 +doccontainerchecksum 8a8ead918b79980e1fb97911a45b2a1c4f8e7548bc770df50c89c9785827a8f07444a0fb7e2d826fc076746fbf5b4deec7b52f54cc3c1a96e265e322e8507cdc +docfiles size=520 + RELOC/doc/latex/eolang/DEPENDS.txt + RELOC/doc/latex/eolang/LICENSE.txt + RELOC/doc/latex/eolang/README.md details="Readme" + RELOC/doc/latex/eolang/cactus.pdf + RELOC/doc/latex/eolang/eolang.bib + RELOC/doc/latex/eolang/eolang.pdf details="Package documentation" +srccontainersize 15732 +srccontainerchecksum 232007b58b295d186a2d6ea10caac649eb3ae219cf074dcb7efd647371b45656ca767c4213562e9e582033aaf1eccf854a174b231242b05b917c04d42a0cbf3e +srcfiles size=15 + RELOC/source/latex/eolang/eolang.dtx + RELOC/source/latex/eolang/eolang.ins +runfiles size=6 + RELOC/tex/latex/eolang/eolang.sty +catalogue-contact-repository https://github.com/objectionary/eolang.sty +catalogue-ctan /macros/latex/contrib/eolang +catalogue-license mit +catalogue-topics diagram program-doc +catalogue-version 0.12.1 + name epigrafica category Package revision 17210 @@ -105550,7 +109067,7 @@ catalogue-version 1.5e name epigraph-keys category Package -revision 54851 +revision 61719 shortdesc Epigraphs using key values relocated 1 longdesc This package lays out epigraphs: quotations across a page, @@ -105558,10 +109075,10 @@ longdesc usually to open or close a chapter. It is intended as a simple longdesc replacement for the more sophisticated epigraph package. The longdesc package depends on pgfkeys, conditionals (which is distributed longdesc as part of the songbook package), enumitem, and microtype. -containersize 1836 -containerchecksum 27b5cc031d2a90c9240f199f745b28c0eac189750062632708356b898701651eef34353b4e54e7065c85b41efe6371e42875607aa5b16c3cf2bb7edfcff473e5 +containersize 1808 +containerchecksum 5e92bae46fec0037bb0a2b92c2b44de0c73ef4b434584a0bf13aa4e6f09e89e5e4b7fcc3e4809cd0f5e574d627285b8eb97f3971c65745e48591bd8e4a60f7fe doccontainersize 311424 -doccontainerchecksum 34c9b77529870df1f4e4476a454ca8f08ff68e0d0c523d081d47224a43f07fa0c6db6d665524e5bbb1b68c975b833927321295fdaed38b2ea43445fac9752400 +doccontainerchecksum 21c4e1f6b5c3a5b4402e3d3189b6b2424aa952e777994d330e4905393563030f9cd2dad9cc20c2157accc0e78fe98e7828781d5d63a7fb1c6f1ecd504c67f037 docfiles size=79 RELOC/doc/latex/epigraph-keys/README details="Readme" RELOC/doc/latex/epigraph-keys/epigraph-keys.pdf details="Package documentation" @@ -105569,7 +109086,6 @@ docfiles size=79 runfiles size=1 RELOC/tex/latex/epigraph-keys/epigraph-keys.sty catalogue-also epigraph -catalogue-contact-home http://euclid.ucc.ie/Mckay/ catalogue-ctan /macros/latex/contrib/epigraph-keys catalogue-license lppl1.3c catalogue-topics epigram @@ -105606,7 +109122,7 @@ catalogue-topics font font-type1 font-archaic name eplain category Package -revision 57186 +revision 64721 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 @@ -105637,11 +109153,11 @@ depend plain depend tex-ini-files depend unicode-data execute AddFormat name=eplain engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *eplain.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,knuth-lib,plain -containersize 42280 -containerchecksum a5b93a081e9b2201a65bf7e7fb01381480f5c1f31aafaa78c5785981d895a384f1f8db1d474db845c06cd0850cf70ec4bec0e3935b67fe506b8b07512ee97479 -doccontainersize 982712 -doccontainerchecksum 44d804287cdd427043f766ea9f5f352d93d65f941b3e18727dfc9276fc381f51fccb3a025707f24dca5efd59cccd1a340e5de0d452d928ec0296b4faa46abf67 -docfiles size=528 +containersize 43160 +containerchecksum fda8158ae2bdc96187b6e6ace2a94be3e0f68201adbc02553b48a3848481352ac10ddd72babcbc2835e089ce751ade7dfa6cfd1c642c94155c2861db865f5c29 +doccontainersize 1048452 +doccontainerchecksum 60902b2422d2f5d7570a19daf7f586df7882505d7c156539699a0aa47a0f3bde5688dcbdc92c8a6a9878f11392bc9b9f147626aad230eecd2740d56f104928ed +docfiles size=537 texmf-dist/doc/eplain/AUTHORS texmf-dist/doc/eplain/COPYING texmf-dist/doc/eplain/ChangeLog @@ -105660,24 +109176,24 @@ docfiles size=528 texmf-dist/doc/info/eplain.info texmf-dist/doc/man/man1/eplain.1 texmf-dist/doc/man/man1/eplain.man1.pdf -srccontainersize 396580 -srccontainerchecksum 8edb47575e32de1d7947bc2b7e1e354eeafe287cce6b4c7bafa1266d9d7c1bd4c8df363ecb4c17da9eb35cfc1e3393e2297ae6d90f9f4aa8147b4467e2ae1c89 -srcfiles size=136 - texmf-dist/source/eplain/eplain-source-3.11.zip +srccontainersize 287948 +srccontainerchecksum 015de2eeeaec99bd15882a190f9ef3f2112520f8c591c7e6d2351c52d8690b024750adea426bcf95f438aaa20c97dd321881ac7212ff181e148337b57f6d386c +srcfiles size=110 + texmf-dist/source/eplain/eplain-source-3.13.zip texmf-dist/source/eplain/xeplain.tex -runfiles size=50 +runfiles size=51 texmf-dist/tex/eplain/arrow.tex texmf-dist/tex/eplain/btxmac.tex texmf-dist/tex/eplain/eplain.aux texmf-dist/tex/eplain/eplain.ini texmf-dist/tex/eplain/eplain.tex -catalogue-contact-home http://tug.org/eplain/ +catalogue-contact-home https://tug.org/eplain/ catalogue-contact-repository https://tug.org/svn/eplain/ catalogue-contact-support https://lists.tug.org/tex-eplain catalogue-ctan /macros/eplain catalogue-license gpl2+ catalogue-topics plain-ext format -catalogue-version 3.11 +catalogue-version 3.13 name eplain.aarch64-linux category Package @@ -105715,15 +109231,6 @@ containerchecksum d659af83aac6d67aa446cb193ebac043fec1bf2a9942b9fb6f4f76e3181ab8 binfiles arch=armhf-linux size=1 bin/armhf-linux/eplain -name eplain.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of eplain -containersize 324 -containerchecksum 4b36cf765f211a9a68cb9f0b312575fa284638f3b618060dc6752cb2e1a90579731c9dbd88877e8c13fadfc344a14dbb9eee499b9ad07ae1120fa72c4c67d871 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/eplain - name eplain.i386-freebsd category Package revision 16472 @@ -105769,14 +109276,14 @@ containerchecksum 6bd819ce40be30a9bdc94b66b3ffcc2c7b653c1aa723910ccc1e1754704426 binfiles arch=universal-darwin size=1 bin/universal-darwin/eplain -name eplain.win32 +name eplain.windows category Package -revision 57883 -shortdesc win32 files of eplain -containersize 864 -containerchecksum 538d0f9135f74149a831d98433b565d072bff876214014ae0d2cad8a0bba9ab6cac81b95dcb062a0f8e191c58ee2dda26b272a7b120332aeca3f30f194d9f6dd -binfiles arch=win32 size=1 - bin/win32/eplain.exe +revision 65891 +shortdesc windows files of eplain +containersize 2332 +containerchecksum f57043e5a384012cb96d69e4953189f0b18a50dd6ffd0ce175319c6ebf3e268ce88495845e29a443b8b5cc086e8a047f696b07cc44b3adc6ccb433cfc289de0c +binfiles arch=windows size=2 + bin/windows/eplain.exe name eplain.x86_64-cygwin category Package @@ -106032,7 +109539,7 @@ catalogue-topics graphics french-doc translation name epspdf category Package -revision 53472 +revision 66115 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 @@ -106040,11 +109547,11 @@ longdesc grayscaling, cropping margins and single-page selection. Some longdesc conversion options are made possible by converting in multiple longdesc steps. depend epspdf.ARCH -containersize 31912 -containerchecksum 8464aef2f11712c124b2fb29eb448706007f8b4825ba09a7579b4b8a6cf31fc3ea4b98359ecb588e6886fbed9b59d1da155a3d69946bcb99f90f39043aeb4eea -doccontainersize 241448 -doccontainerchecksum 6de1e86931bedc481f2cce725c58e83a9bcb8af10938ba8d5701f325ebc0e98824cc472b32e95c9f319dbac7c49ca849e368d431dd79c5d1d0fceca81da3cd35 -docfiles size=98 +containersize 31980 +containerchecksum 3dc467713b1d90b96a8fd3903effe209fe15be82463a1ef4693e29e7d145220936bed0e75dd3824a1e520f778ab9b96fe29389037e14690352db136e642f6a2c +doccontainersize 242144 +doccontainerchecksum ee5687a3add6773e127a1e83c91683b5c6ea5e37dd98ec5f5558a32015d292c31f1a456c985ee5d2e4201c0a47324dbac4a7129529236438676f587985bca64a +docfiles size=99 texmf-dist/doc/info/epspdf.info texmf-dist/doc/support/epspdf/COPYING texmf-dist/doc/support/epspdf/Changelog @@ -106058,7 +109565,7 @@ docfiles size=98 texmf-dist/doc/support/epspdf/images/logo.svg texmf-dist/doc/support/epspdf/images/main_wx.png texmf-dist/doc/support/epspdf/pstexi.tex -runfiles size=33 +runfiles size=32 texmf-dist/scripts/epspdf/epspdf.help texmf-dist/scripts/epspdf/epspdf.tlu texmf-dist/scripts/epspdf/epspdf4tk.cmd @@ -106067,7 +109574,7 @@ catalogue-also epstopdf catalogue-ctan /support/epspdf catalogue-license gpl2 catalogue-topics graphics-epspdf -catalogue-version 0.6.5 +catalogue-version 0.6.5.1 name epspdf.aarch64-linux category Package @@ -106109,16 +109616,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/epspdf bin/armhf-linux/epspdftk -name epspdf.i386-cygwin -category Package -revision 29050 -shortdesc i386-cygwin files of epspdf -containersize 364 -containerchecksum bd512ef15508cbd318ab9d96ac1cad477a4868b59d770a7e25abce489bc2e52c34623cb990a8acbd111071dba7ccc28d0139364efbb00c6446cc2acafb1d8a24 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/epspdf - bin/i386-cygwin/epspdftk - name epspdf.i386-freebsd category Package revision 29050 @@ -106169,15 +109666,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/epspdf bin/universal-darwin/epspdftk -name epspdf.win32 +name epspdf.windows category Package -revision 53854 -shortdesc win32 files of epspdf -containersize 8348 -containerchecksum b940f8a6243a166380c43adf1b47988e811168e2c94bed42588fdaaa04edb7bacaf19fa7c7ba7c1a7cb38cb5718cb035984795c8ed246482f54df383a465e361 -binfiles arch=win32 size=5 - bin/win32/epspdf.exe - bin/win32/epspdftk.exe +revision 66270 +shortdesc windows files of epspdf +containersize 17776 +containerchecksum 4b046ba90af21e5452c9ce5c2159dec4397566c9b9fd39e132f96e5d5bdfa94f7ddb32f1681269080c6fab41e72ec811dbdfc270920231c8ab9da462b2f8a40d +binfiles arch=windows size=8 + bin/windows/epspdf.exe + bin/windows/epspdftk.exe name epspdf.x86_64-cygwin category Package @@ -106258,7 +109755,7 @@ catalogue-version 0.61 name epstopdf category Package -revision 48684 +revision 66461 shortdesc Convert EPS to PDF using Ghostscript longdesc Epstopdf is a Perl script that converts an EPS file to an longdesc 'encapsulated' PDF file (a single page file whose media box is @@ -106273,10 +109770,10 @@ longdesc epstopdf package, which will run the epstopdf script "on the longdesc fly", thus giving the illusion that pdfLaTeX is accepting EPS longdesc graphic files. depend epstopdf.ARCH -containersize 12460 -containerchecksum 6412bb97554b271cf5412dbccd316f3d69d7bcf2f524a5d6d1a75f69cfa11a981fc4ab063b6ea8302c2a0236ff93c59f1ee2f8f2b7f33dc466324080fc5016f4 -doccontainersize 30444 -doccontainerchecksum 7fef59ad3bc72b2e3fc10021216b88b8d5465f42503d9938031c3d40d93fbaf637094fdfc87b19ccc1da4d9a28c9890beccee7c30b915a513a909edbac6e0a25 +containersize 12836 +containerchecksum de91f8df2838eb7b8f0406b63895e7c61d0154017140f0b8cc1306b3369237e72015187327387e55fd996321625abf9fde5ad3575f84a0168cc21070427445e1 +doccontainersize 30880 +doccontainerchecksum b0e134d9907efeb41d4b83ebabc3e83f7ae04c354584f157726f3f827cee28824562f6864f8e39864410aa97e05b80e97c91248d27923ba910556c35d661db65 docfiles size=20 texmf-dist/doc/man/man1/epstopdf.1 texmf-dist/doc/man/man1/epstopdf.man1.pdf details="Manual page" @@ -106286,11 +109783,11 @@ docfiles size=20 runfiles size=9 texmf-dist/scripts/epstopdf/epstopdf.pl catalogue-also epstopdf-pkg -catalogue-contact-home http://tug.org/epstopdf/ +catalogue-contact-home https://tug.org/epstopdf/ catalogue-ctan /support/epstopdf catalogue-license other-free catalogue-topics graphics-epspdf -catalogue-version 2.28 +catalogue-version 2.31 name epstopdf-pkg category Package @@ -106366,16 +109863,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/epstopdf bin/armhf-linux/repstopdf -name epstopdf.i386-cygwin -category Package -revision 18363 -shortdesc i386-cygwin files of epstopdf -containersize 360 -containerchecksum fa16a19230ce7b34f5daeb58b1a45e1055daa5d65be237370a9d5284c43c68f57d46efeb72ee3dea4d28a318a45ea2b7e976b6dbb2c8ed98d45939466c4998f7 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/epstopdf - bin/i386-cygwin/repstopdf - name epstopdf.i386-freebsd category Package revision 18388 @@ -106426,15 +109913,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/epstopdf bin/universal-darwin/repstopdf -name epstopdf.win32 +name epstopdf.windows category Package -revision 18971 -shortdesc win32 files of epstopdf -containersize 708 -containerchecksum 8c3cdd1a109a4c91897720dfab026e2965f909c189e2282e0915f26cd0c95e9a0a9b9b8e3d2dd7e33b036b8ada84df268b62af9b6162a8fa0020bf27d3e918dc -binfiles arch=win32 size=2 - bin/win32/epstopdf.exe - bin/win32/repstopdf.exe +revision 65891 +shortdesc windows files of epstopdf +containersize 2356 +containerchecksum bb21ec7803b89f878e4d334b8dc66d437064d381025a095818a3727f16ef9269147777695eeec12f1f7edd9b57aeea7dc6217636f2d077a5b5d38d900b8cbfb6 +binfiles arch=windows size=4 + bin/windows/epstopdf.exe + bin/windows/repstopdf.exe name epstopdf.x86_64-cygwin category Package @@ -106488,7 +109975,7 @@ binfiles arch=x86_64-solaris size=2 name eq-pin2corr category Package -revision 57815 +revision 59477 shortdesc Add PIN security to the "Correct" button of a quiz created by exerquiz relocated 1 longdesc This package is an add-on to the quiz environment of the @@ -106499,11 +109986,11 @@ longdesc of the quiz and successfully enter the correct PIN number. The longdesc PIN security is designed for the instructor to mark and record longdesc the student's effort on that quiz. The package works for the longdesc usual workflows. -containersize 2144 -containerchecksum 878bbe22ea7a71b486a38942d11ab15a19c8fef10ac90e06b235a87a15f0e4478d00d7671751547cc0c8c440924c92cc7e07dbce4c816fdfd114468104fec040 -doccontainersize 639596 -doccontainerchecksum cc1dffd4989bdc5efc76e1ae44a8ee5f7cdea0c9617f98eda3ab0f079d242b408f91d80595a699212c5cf5910cf182c64d98517d6582af14fb1bec074f344eb9 -docfiles size=256 +containersize 3368 +containerchecksum 631f8dc9f50f7a45a0d03f0c4210af427cf8492d56886cedeff6cb0e9587453976beb1ac960afb53b7a31538a176bb63f55afd330ca2463847f86e57c3d545c3 +doccontainersize 558764 +doccontainerchecksum 4e704295ff398a2e167293178d69edc4882e9b9f37dae4f9debda7edd921a7c2d19c036b4d1424405ac1b9853e57615d9183fbf56a763088dc58919842da2720 +docfiles size=258 RELOC/doc/latex/eq-pin2corr/README.md details="Readme" RELOC/doc/latex/eq-pin2corr/doc/eq-pin2corr.pdf details="Package documentation" RELOC/doc/latex/eq-pin2corr/doc/eqpin2corrman.pdf details="User manual" @@ -106512,20 +109999,19 @@ docfiles size=256 RELOC/doc/latex/eq-pin2corr/doc/install_jsfiles.tex RELOC/doc/latex/eq-pin2corr/examples/get-hash-string.pdf RELOC/doc/latex/eq-pin2corr/examples/get-hash-string.tex - RELOC/doc/latex/eq-pin2corr/examples/qz-pin-to-correct.pdf - RELOC/doc/latex/eq-pin2corr/examples/qz-pin-to-correct.tex -srccontainersize 5152 -srccontainerchecksum eb0d10e680a935f9919b9dfcae1b137549dfaece3047b62e2ea06280cb3075d3882546df470f05cdae9716eb128f27faa981d86408acb50b85eced63bf104769 -srcfiles size=4 + RELOC/doc/latex/eq-pin2corr/examples/qz-p2c.pdf + RELOC/doc/latex/eq-pin2corr/examples/qz-p2c.tex +srccontainersize 7684 +srccontainerchecksum eb40f073d1763c59f9a0ed0444930f6698fbde754e213a73bff251df7f83b2c5a730345104d3b947ee8400363d324f968e3ebb7b74ed6f484d0c3589d5134b37 +srcfiles size=7 RELOC/source/latex/eq-pin2corr/eq-pin2corr.dtx RELOC/source/latex/eq-pin2corr/eq-pin2corr.ins -runfiles size=1 +runfiles size=2 RELOC/tex/latex/eq-pin2corr/eq-pin2corr.sty catalogue-also exerquiz catalogue-ctan /macros/latex/contrib/eq-pin2corr catalogue-license lppl1.2 catalogue-topics exercise exam security pdf-feat pdf-forms acrobat -catalogue-version 1.0 name eqell category Package @@ -106550,17 +110036,17 @@ catalogue-topics typesetting name eqexpl category Package -revision 54080 +revision 63629 shortdesc Align explanations for formulas relocated 1 longdesc This package was developed in response to a question on longdesc https://tex.stackexchange.com. Its purpose is to enable a longdesc perfectly formatted explanation of components of a formula. The longdesc package depends on calc, etoolbox, and xparse. -containersize 1268 -containerchecksum 962b3f4405feea8cae70618af5a61f4dca04ec5971c888d36fa4aa8cb6dd8b12c9922cc202c3ef6204cc1265df36bed66ab0579395f4d9d134c7382778572a21 -doccontainersize 88016 -doccontainerchecksum e7ba14eebd9ee77561fea3e5a7360f12ad10dd5975c99c203ca2e962d95a79805b9c9d4b2452965eb1180d7741788039f32c216352b7d63ec0edd167f98996d8 +containersize 1272 +containerchecksum 75f328b6b1e729b76b9be92ec7ad9844e5a41d8b6776700175af98ec217ef93df6dc56b92b49892090523e9308afa069ba3e6beaef8ca6712aa2fc3995417103 +doccontainersize 87944 +doccontainerchecksum 2ad0eb828e3ea2484220335d61102e0ccdf9787b0165d6f8ebab2073ad2407757c04165d5f872a4b3c674d2c27b952ce9ce1bdc09a626b8e4fe804a5ddc5b1ba docfiles size=30 RELOC/doc/latex/eqexpl/README.md details="Readme" RELOC/doc/latex/eqexpl/README.ru.md details="Readme (Russian)" language="ru" @@ -106574,7 +110060,7 @@ catalogue-contact-repository https://github.com/konstantin-morenko/latex-equatio catalogue-ctan /macros/latex/contrib/eqexpl catalogue-license cc-by-sa-4 catalogue-topics alignment maths -catalogue-version 1.1 +catalogue-version 1.1.1 name eqlist category Package @@ -106779,7 +110265,7 @@ catalogue-version 1.1 name erewhon category Package -revision 58722 +revision 63312 shortdesc Font package derived from Heuristica and Utopia relocated 1 longdesc Erewhon is based on the Heuristica package, which is based in @@ -106789,18 +110275,18 @@ longdesc styles (proportional, inferior, numerator, denominator) and longdesc superior letters. The size is 6% smaller than Heuristica, longdesc matching that of UtopiaStd. execute addMap erewhon.map -containersize 2520664 -containerchecksum ba9a24a32010d2f69a3bdfd1f146194d0962f3a2108c1a17416faa4ed331fba5315ce2a30710c1778f75fa6d3a709e52c6b6781f4fc2a4634a91706945fcc45f -doccontainersize 368752 -doccontainerchecksum 3f95f89b51be6b373448bd2fe728bb55d2a1249862147aff0434ac92d8b2628ac25ae2c9906aaca8d932a2cafb6e6d57b7ea674857934a98063cb717d619375e -docfiles size=254 +containersize 2596492 +containerchecksum 760818dc93dc0564680d76c152f6db9f69870008f50c43227b329df3403e7b6b50f241b96822fa63aee6b6c64ae42ecc69369e8e94f43836d6cbb9125f197e94 +doccontainersize 378364 +doccontainerchecksum bf9219328f592300b90c3aa0ad425a4adf6e6cf2e190dc21cccb4b15ebe9db8f3dcb88c3e72b6f89f7b9085ecaf28f8ef628fa3175e7fb7d59545c61e2d76f42 +docfiles size=256 RELOC/doc/fonts/erewhon/FontLog.txt RELOC/doc/fonts/erewhon/OFL-FAQ.txt RELOC/doc/fonts/erewhon/OFL.txt RELOC/doc/fonts/erewhon/README details="Readme" RELOC/doc/fonts/erewhon/erewhon-doc.pdf details="Package documentation" RELOC/doc/fonts/erewhon/erewhon-doc.tex -runfiles size=2816 +runfiles size=3049 RELOC/fonts/afm/public/erewhon/Erewhon-Bold.afm RELOC/fonts/afm/public/erewhon/Erewhon-BoldItalic.afm RELOC/fonts/afm/public/erewhon/Erewhon-BoldSlanted.afm @@ -106812,9 +110298,9 @@ runfiles size=2816 RELOC/fonts/afm/public/erewhon/erewMI.afm RELOC/fonts/afm/public/erewhon/erewMR.afm RELOC/fonts/enc/dvips/erewhon/erewhontlf-ot2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_24phrd.enc RELOC/fonts/enc/dvips/erewhon/zut1_25oktk.enc - RELOC/fonts/enc/dvips/erewhon/zut1_2jsbza.enc - RELOC/fonts/enc/dvips/erewhon/zut1_2lssnc.enc + RELOC/fonts/enc/dvips/erewhon/zut1_2j6fzl.enc RELOC/fonts/enc/dvips/erewhon/zut1_2objs7.enc RELOC/fonts/enc/dvips/erewhon/zut1_2qulls.enc RELOC/fonts/enc/dvips/erewhon/zut1_2sunpf.enc @@ -106822,172 +110308,186 @@ runfiles size=2816 RELOC/fonts/enc/dvips/erewhon/zut1_3cc3dt.enc RELOC/fonts/enc/dvips/erewhon/zut1_3ss64c.enc RELOC/fonts/enc/dvips/erewhon/zut1_3xl2sl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4ap5la.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4b4gx6.enc RELOC/fonts/enc/dvips/erewhon/zut1_4chmhh.enc + RELOC/fonts/enc/dvips/erewhon/zut1_4csakl.enc RELOC/fonts/enc/dvips/erewhon/zut1_4j4ux5.enc RELOC/fonts/enc/dvips/erewhon/zut1_4qs3ad.enc RELOC/fonts/enc/dvips/erewhon/zut1_53w3xs.enc RELOC/fonts/enc/dvips/erewhon/zut1_546xgo.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5drzr5.enc - RELOC/fonts/enc/dvips/erewhon/zut1_5eo37n.enc RELOC/fonts/enc/dvips/erewhon/zut1_5iiyxb.enc RELOC/fonts/enc/dvips/erewhon/zut1_5kulil.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5swz3g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5ttobv.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5uxmf6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_5yzs2d.enc + RELOC/fonts/enc/dvips/erewhon/zut1_62fpar.enc RELOC/fonts/enc/dvips/erewhon/zut1_6etwti.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6kzn42.enc - RELOC/fonts/enc/dvips/erewhon/zut1_6n4vaj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6qa5mv.enc + RELOC/fonts/enc/dvips/erewhon/zut1_6vm3oy.enc RELOC/fonts/enc/dvips/erewhon/zut1_74cce3.enc - RELOC/fonts/enc/dvips/erewhon/zut1_74ksak.enc + RELOC/fonts/enc/dvips/erewhon/zut1_75itn5.enc RELOC/fonts/enc/dvips/erewhon/zut1_7ajsnx.enc + RELOC/fonts/enc/dvips/erewhon/zut1_7fkyik.enc RELOC/fonts/enc/dvips/erewhon/zut1_7lebnu.enc - RELOC/fonts/enc/dvips/erewhon/zut1_7xxsa3.enc RELOC/fonts/enc/dvips/erewhon/zut1_7zfl2i.enc RELOC/fonts/enc/dvips/erewhon/zut1_7zlfno.enc RELOC/fonts/enc/dvips/erewhon/zut1_a27mgr.enc + RELOC/fonts/enc/dvips/erewhon/zut1_a4zpim.enc RELOC/fonts/enc/dvips/erewhon/zut1_a7a6j7.enc RELOC/fonts/enc/dvips/erewhon/zut1_acvwor.enc RELOC/fonts/enc/dvips/erewhon/zut1_adckrx.enc RELOC/fonts/enc/dvips/erewhon/zut1_ahzhtu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_aj5cq6.enc RELOC/fonts/enc/dvips/erewhon/zut1_aluvmp.enc RELOC/fonts/enc/dvips/erewhon/zut1_amccbu.enc RELOC/fonts/enc/dvips/erewhon/zut1_amjics.enc - RELOC/fonts/enc/dvips/erewhon/zut1_awhpzb.enc RELOC/fonts/enc/dvips/erewhon/zut1_ax3b7f.enc RELOC/fonts/enc/dvips/erewhon/zut1_azbcfh.enc - RELOC/fonts/enc/dvips/erewhon/zut1_azqpxw.enc - RELOC/fonts/enc/dvips/erewhon/zut1_c73i2u.enc - RELOC/fonts/enc/dvips/erewhon/zut1_cj3gqs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_cmujr7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_bzygne.enc + RELOC/fonts/enc/dvips/erewhon/zut1_chb3ca.enc RELOC/fonts/enc/dvips/erewhon/zut1_cqdyjt.enc RELOC/fonts/enc/dvips/erewhon/zut1_cxj5nb.enc RELOC/fonts/enc/dvips/erewhon/zut1_cyj7pa.enc RELOC/fonts/enc/dvips/erewhon/zut1_d6afaq.enc - RELOC/fonts/enc/dvips/erewhon/zut1_dkbnkq.enc RELOC/fonts/enc/dvips/erewhon/zut1_dnhvn3.enc RELOC/fonts/enc/dvips/erewhon/zut1_dpee64.enc - RELOC/fonts/enc/dvips/erewhon/zut1_dq4c7f.enc RELOC/fonts/enc/dvips/erewhon/zut1_dru2ao.enc RELOC/fonts/enc/dvips/erewhon/zut1_dsvoru.enc RELOC/fonts/enc/dvips/erewhon/zut1_dwvmxx.enc RELOC/fonts/enc/dvips/erewhon/zut1_e4qrg7.enc - RELOC/fonts/enc/dvips/erewhon/zut1_eajfvl.enc - RELOC/fonts/enc/dvips/erewhon/zut1_eazsup.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ecrwth.enc + RELOC/fonts/enc/dvips/erewhon/zut1_egk5ui.enc + RELOC/fonts/enc/dvips/erewhon/zut1_el2ois.enc RELOC/fonts/enc/dvips/erewhon/zut1_elnhz2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_erihhu.enc + RELOC/fonts/enc/dvips/erewhon/zut1_emma2w.enc RELOC/fonts/enc/dvips/erewhon/zut1_etc5hm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fdnkjr.enc RELOC/fonts/enc/dvips/erewhon/zut1_fec52x.enc + RELOC/fonts/enc/dvips/erewhon/zut1_fo623s.enc RELOC/fonts/enc/dvips/erewhon/zut1_fojqdn.enc RELOC/fonts/enc/dvips/erewhon/zut1_fomwqp.enc RELOC/fonts/enc/dvips/erewhon/zut1_fp3vw2.enc RELOC/fonts/enc/dvips/erewhon/zut1_fqlf3s.enc RELOC/fonts/enc/dvips/erewhon/zut1_frcrrk.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gagfjo.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gbmzbk.enc RELOC/fonts/enc/dvips/erewhon/zut1_gm2ao2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gqji7z.enc RELOC/fonts/enc/dvips/erewhon/zut1_gxqdb2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_gzlvot.enc - RELOC/fonts/enc/dvips/erewhon/zut1_hhrib2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_hl634h.enc + RELOC/fonts/enc/dvips/erewhon/zut1_hap62j.enc + RELOC/fonts/enc/dvips/erewhon/zut1_haucyg.enc RELOC/fonts/enc/dvips/erewhon/zut1_i3xnrn.enc RELOC/fonts/enc/dvips/erewhon/zut1_i6k2d2.enc - RELOC/fonts/enc/dvips/erewhon/zut1_igmc4g.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ijhs6t.enc - RELOC/fonts/enc/dvips/erewhon/zut1_io5o4g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_iibx3x.enc RELOC/fonts/enc/dvips/erewhon/zut1_irfza6.enc RELOC/fonts/enc/dvips/erewhon/zut1_isszvh.enc RELOC/fonts/enc/dvips/erewhon/zut1_iszlz3.enc RELOC/fonts/enc/dvips/erewhon/zut1_iuc2sz.enc RELOC/fonts/enc/dvips/erewhon/zut1_ivciyi.enc - RELOC/fonts/enc/dvips/erewhon/zut1_izu75o.enc RELOC/fonts/enc/dvips/erewhon/zut1_j6ua73.enc + RELOC/fonts/enc/dvips/erewhon/zut1_jajasu.enc RELOC/fonts/enc/dvips/erewhon/zut1_jbzr5t.enc RELOC/fonts/enc/dvips/erewhon/zut1_jdnyy6.enc RELOC/fonts/enc/dvips/erewhon/zut1_jmwubr.enc RELOC/fonts/enc/dvips/erewhon/zut1_jofyrj.enc RELOC/fonts/enc/dvips/erewhon/zut1_jsdebf.enc - RELOC/fonts/enc/dvips/erewhon/zut1_jyfbou.enc - RELOC/fonts/enc/dvips/erewhon/zut1_k3uyvf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_k4xd4x.enc RELOC/fonts/enc/dvips/erewhon/zut1_kdakg5.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kezgz7.enc + RELOC/fonts/enc/dvips/erewhon/zut1_kjdw2u.enc RELOC/fonts/enc/dvips/erewhon/zut1_knq7bi.enc RELOC/fonts/enc/dvips/erewhon/zut1_kpjvx5.enc RELOC/fonts/enc/dvips/erewhon/zut1_kwgi2r.enc RELOC/fonts/enc/dvips/erewhon/zut1_lefook.enc RELOC/fonts/enc/dvips/erewhon/zut1_ljsdwq.enc - RELOC/fonts/enc/dvips/erewhon/zut1_lkesvg.enc RELOC/fonts/enc/dvips/erewhon/zut1_lql6bl.enc RELOC/fonts/enc/dvips/erewhon/zut1_lxr6iw.enc + RELOC/fonts/enc/dvips/erewhon/zut1_lzkx6u.enc RELOC/fonts/enc/dvips/erewhon/zut1_m62wbz.enc - RELOC/fonts/enc/dvips/erewhon/zut1_mcdrws.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mb7plm.enc RELOC/fonts/enc/dvips/erewhon/zut1_mieo7u.enc RELOC/fonts/enc/dvips/erewhon/zut1_mkqhoa.enc RELOC/fonts/enc/dvips/erewhon/zut1_mmwqox.enc RELOC/fonts/enc/dvips/erewhon/zut1_mno2dl.enc RELOC/fonts/enc/dvips/erewhon/zut1_mqoft7.enc RELOC/fonts/enc/dvips/erewhon/zut1_mqrime.enc - RELOC/fonts/enc/dvips/erewhon/zut1_mxehrm.enc + RELOC/fonts/enc/dvips/erewhon/zut1_msodj2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_mzhi5i.enc RELOC/fonts/enc/dvips/erewhon/zut1_ncwigg.enc RELOC/fonts/enc/dvips/erewhon/zut1_ncyh3k.enc RELOC/fonts/enc/dvips/erewhon/zut1_ndxvka.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nhgbwl.enc RELOC/fonts/enc/dvips/erewhon/zut1_nhu5qm.enc RELOC/fonts/enc/dvips/erewhon/zut1_nlk3tk.enc RELOC/fonts/enc/dvips/erewhon/zut1_nmevy6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_nqkiey.enc RELOC/fonts/enc/dvips/erewhon/zut1_nrup2h.enc RELOC/fonts/enc/dvips/erewhon/zut1_ntuunb.enc RELOC/fonts/enc/dvips/erewhon/zut1_nwll5a.enc - RELOC/fonts/enc/dvips/erewhon/zut1_o4jtlp.enc + RELOC/fonts/enc/dvips/erewhon/zut1_oapbtr.enc RELOC/fonts/enc/dvips/erewhon/zut1_odgoid.enc - RELOC/fonts/enc/dvips/erewhon/zut1_okacrk.enc - RELOC/fonts/enc/dvips/erewhon/zut1_orscbj.enc - RELOC/fonts/enc/dvips/erewhon/zut1_otavqs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_papffl.enc + RELOC/fonts/enc/dvips/erewhon/zut1_oed5ww.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ojbxlk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_p7xglw.enc RELOC/fonts/enc/dvips/erewhon/zut1_peef5q.enc RELOC/fonts/enc/dvips/erewhon/zut1_pj2kv6.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ps4rne.enc + RELOC/fonts/enc/dvips/erewhon/zut1_pkbtg2.enc RELOC/fonts/enc/dvips/erewhon/zut1_psbgvs.enc - RELOC/fonts/enc/dvips/erewhon/zut1_psdthf.enc RELOC/fonts/enc/dvips/erewhon/zut1_pux3en.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qgiqhj.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qhk7j3.enc RELOC/fonts/enc/dvips/erewhon/zut1_qltwwe.enc - RELOC/fonts/enc/dvips/erewhon/zut1_qptrxz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qprerv.enc + RELOC/fonts/enc/dvips/erewhon/zut1_qqbsse.enc RELOC/fonts/enc/dvips/erewhon/zut1_qvbgtd.enc RELOC/fonts/enc/dvips/erewhon/zut1_r3uc5w.enc RELOC/fonts/enc/dvips/erewhon/zut1_r74hdq.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ra7von.enc + RELOC/fonts/enc/dvips/erewhon/zut1_rajiiv.enc RELOC/fonts/enc/dvips/erewhon/zut1_rp5jpf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_rsg4nr.enc RELOC/fonts/enc/dvips/erewhon/zut1_s5ndkw.enc RELOC/fonts/enc/dvips/erewhon/zut1_sim7pz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_slg2ik.enc + RELOC/fonts/enc/dvips/erewhon/zut1_snzspn.enc + RELOC/fonts/enc/dvips/erewhon/zut1_sodton.enc RELOC/fonts/enc/dvips/erewhon/zut1_t32gte.enc - RELOC/fonts/enc/dvips/erewhon/zut1_t5iu6g.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ta3xl2.enc + RELOC/fonts/enc/dvips/erewhon/zut1_thrva6.enc RELOC/fonts/enc/dvips/erewhon/zut1_tmatie.enc - RELOC/fonts/enc/dvips/erewhon/zut1_totpyl.enc - RELOC/fonts/enc/dvips/erewhon/zut1_tzgz6e.enc + RELOC/fonts/enc/dvips/erewhon/zut1_tra2uf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_uemunl.enc RELOC/fonts/enc/dvips/erewhon/zut1_ufk2cy.enc RELOC/fonts/enc/dvips/erewhon/zut1_uft3lp.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ugr2dt.enc + RELOC/fonts/enc/dvips/erewhon/zut1_ugisnr.enc RELOC/fonts/enc/dvips/erewhon/zut1_uhamxn.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ui2iqu.enc RELOC/fonts/enc/dvips/erewhon/zut1_uk5nxi.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ul5nhk.enc RELOC/fonts/enc/dvips/erewhon/zut1_umzzxg.enc RELOC/fonts/enc/dvips/erewhon/zut1_uuvzxd.enc RELOC/fonts/enc/dvips/erewhon/zut1_v2pu2l.enc - RELOC/fonts/enc/dvips/erewhon/zut1_vcw2hi.enc + RELOC/fonts/enc/dvips/erewhon/zut1_v3vc6e.enc RELOC/fonts/enc/dvips/erewhon/zut1_vj42om.enc - RELOC/fonts/enc/dvips/erewhon/zut1_vlikpx.enc RELOC/fonts/enc/dvips/erewhon/zut1_vtfujz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_vz5ynf.enc + RELOC/fonts/enc/dvips/erewhon/zut1_w3f43e.enc RELOC/fonts/enc/dvips/erewhon/zut1_wg4pgf.enc RELOC/fonts/enc/dvips/erewhon/zut1_wrgbks.enc RELOC/fonts/enc/dvips/erewhon/zut1_x3bhkk.enc RELOC/fonts/enc/dvips/erewhon/zut1_x3yqgk.enc + RELOC/fonts/enc/dvips/erewhon/zut1_x6t4jr.enc RELOC/fonts/enc/dvips/erewhon/zut1_xd5tcn.enc RELOC/fonts/enc/dvips/erewhon/zut1_xhc3k4.enc - RELOC/fonts/enc/dvips/erewhon/zut1_xkkeec.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xiqjov.enc RELOC/fonts/enc/dvips/erewhon/zut1_xlud6l.enc + RELOC/fonts/enc/dvips/erewhon/zut1_xmqdd4.enc RELOC/fonts/enc/dvips/erewhon/zut1_xsflzz.enc + RELOC/fonts/enc/dvips/erewhon/zut1_y5vzao.enc RELOC/fonts/enc/dvips/erewhon/zut1_yjdtdu.enc - RELOC/fonts/enc/dvips/erewhon/zut1_ytd5fv.enc RELOC/fonts/enc/dvips/erewhon/zut1_yx3dqr.enc RELOC/fonts/enc/dvips/erewhon/zut1_zc3ibv.enc - RELOC/fonts/enc/dvips/erewhon/zut1_zdrb2k.enc RELOC/fonts/enc/dvips/erewhon/zut1_zhgadb.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zkbe5o.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zlg4j6.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zoqj2o.enc + RELOC/fonts/enc/dvips/erewhon/zut1_zt54pz.enc RELOC/fonts/enc/dvips/erewhon/zut1_zx32l7.enc RELOC/fonts/map/dvips/erewhon/erewhon.map RELOC/fonts/opentype/public/erewhon/Erewhon-Bold.otf @@ -106997,20 +110497,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2a--base.tfm @@ -107027,14 +110532,18 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2a--base.tfm @@ -107051,15 +110560,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2a--base.tfm @@ -107076,8 +110589,11 @@ runfiles size=2816 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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2a--base.tfm @@ -107094,20 +110610,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-sc-t2a--base.tfm @@ -107124,14 +110645,18 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-sc-t2a--base.tfm @@ -107148,15 +110673,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2a--base.tfm @@ -107173,8 +110702,11 @@ runfiles size=2816 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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2a--base.tfm @@ -107191,20 +110723,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2a--base.tfm @@ -107221,14 +110758,18 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2a--base.tfm @@ -107245,15 +110786,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2a--base.tfm @@ -107270,8 +110815,11 @@ runfiles size=2816 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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2a--base.tfm @@ -107288,20 +110836,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-sc-t2a--base.tfm @@ -107318,14 +110871,18 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-sc-t2a--base.tfm @@ -107342,15 +110899,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-sc-t2a--base.tfm @@ -107367,8 +110928,11 @@ runfiles size=2816 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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-sc-t2a--base.tfm @@ -107385,20 +110949,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2a--base.tfm @@ -107415,14 +110984,18 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2a--base.tfm @@ -107439,15 +111012,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2a--base.tfm @@ -107464,8 +111041,11 @@ runfiles size=2816 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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2a--base.tfm @@ -107482,20 +111062,25 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a--base.tfm @@ -107512,14 +111097,18 @@ runfiles size=2816 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-ot1.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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a--base.tfm @@ -107536,15 +111125,19 @@ runfiles size=2816 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-ot1.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-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ot2.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a--base.tfm @@ -107561,8 +111154,11 @@ runfiles size=2816 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-ot1.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-ot1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.tfm RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a--base.tfm @@ -107595,66 +111191,115 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-inf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-numr-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-osf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-sup-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2c.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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2a.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2b.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2c.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-dnom-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-inf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-sc-t2b.vf @@ -107663,6 +111308,7 @@ runfiles size=2816 RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-numr-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-sc-t2b.vf @@ -107671,6 +111317,7 @@ runfiles size=2816 RELOC/fonts/vf/public/erewhon/Erewhon-Italic-osf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-sup-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-sc-t2b.vf @@ -107678,6 +111325,7 @@ runfiles size=2816 RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-ts1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-sc-t2b.vf @@ -107687,6 +111335,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t2b.vf @@ -107695,6 +111344,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t2b.vf @@ -107703,6 +111353,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t2b.vf @@ -107710,6 +111361,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t2b.vf @@ -107719,6 +111371,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2b.vf @@ -107727,6 +111380,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2b.vf @@ -107735,6 +111389,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2b.vf @@ -107742,6 +111397,7 @@ runfiles size=2816 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-ot1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a.vf RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2b.vf @@ -107756,6 +111412,14 @@ runfiles size=2816 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/OT1erewhon-Dnom.fd + RELOC/tex/latex/erewhon/OT1erewhon-Inf.fd + RELOC/tex/latex/erewhon/OT1erewhon-LF.fd + RELOC/tex/latex/erewhon/OT1erewhon-Numr.fd + RELOC/tex/latex/erewhon/OT1erewhon-OsF.fd + RELOC/tex/latex/erewhon/OT1erewhon-Sup.fd + RELOC/tex/latex/erewhon/OT1erewhon-TLF.fd + RELOC/tex/latex/erewhon/OT1erewhon-TOsF.fd RELOC/tex/latex/erewhon/OT2erewhon-TLF.fd RELOC/tex/latex/erewhon/T1erewhon-Dnom.fd RELOC/tex/latex/erewhon/T1erewhon-Inf.fd @@ -107798,34 +111462,33 @@ runfiles size=2816 catalogue-ctan /fonts/erewhon catalogue-license ofl lppl1.3 catalogue-topics font font-body font-multilingual font-cyrillic font-proportional font-serif font-otf font-type1 font-supp font-t1enc -catalogue-version 1.115 +catalogue-version 1.12 name erewhon-math category Package -revision 58903 +revision 65684 shortdesc Utopia based OpenType Math font relocated 1 -longdesc Erewhon Math is an OpenType math font meant to be used together -longdesc with Erewhon text fonts in LuaLaTeX or XeLaTeX documents. Like -longdesc Fourier-GUTenberg, it is Utopia based and has been designed as -longdesc a replacement of Fourier-GUTenberg for Unicode engines. -containersize 224324 -containerchecksum 3ba23274d2036657d24fff1bdb1de3f76269360ca58ac7e4439b574a43d7bbf5ca5bacb346d63024ad9cc8fb5eeaae96374147c99acb8983abe6b42708f977a6 -doccontainersize 1472044 -doccontainerchecksum 2191adc4137255c3105b3e0191eb8562bb8beb968b81d91cff50a400efdcf7787b3e41a139b8c3372568a2267b81789d60e4101474b2223579c18d24067ac15d -docfiles size=380 +longdesc OpenType version of the fourier Type1 fonts designed by Michel +longdesc Bovani. +containersize 267832 +containerchecksum b836d20c767218c485853f4f83516bfebe97d54adf37f031fd5ca04813b5cbdf40ca7586bb0725d7c893475fbf849d8183fd5f22ef9bfbd5a4f22642e27e2f88 +doccontainersize 1988520 +doccontainerchecksum 8247747d74e7ead936ab648358f6c52a539777828fb9fb157bfe22cca3191f467709a4a6264a3d3c55a0731292ec010bcf71acdb542e95998fe8f521d4364bbb +docfiles size=520 RELOC/doc/fonts/erewhon-math/Erewhon-Math.ltx RELOC/doc/fonts/erewhon-math/Erewhon-Math.pdf details="Package documentation" RELOC/doc/fonts/erewhon-math/README.md details="Readme" RELOC/doc/fonts/erewhon-math/unimath-erewhon.ltx RELOC/doc/fonts/erewhon-math/unimath-erewhon.pdf details="List of glyphs" -runfiles size=92 +runfiles size=125 + RELOC/fonts/opentype/public/erewhon-math/Erewhon-Math-Bold.otf RELOC/fonts/opentype/public/erewhon-math/Erewhon-Math.otf RELOC/tex/latex/erewhon-math/fourier-otf.sty catalogue-ctan /fonts/erewhon-math catalogue-license ofl lppl1.3 catalogue-topics font font-proportional font-otf font-supp font-maths -catalogue-version 0.46 +catalogue-version 0.56 name errata category Package @@ -107859,26 +111522,23 @@ catalogue-version 0.3 name erw-l3 category Package -revision 55414 -shortdesc Utilities built around expl3 -relocated 1 -longdesc Features: compose: compose control sequences, whether -longdesc predefined or inline csutil: narrow purpose control sequences -longdesc (backend to other packages) numbrdcs: numbered control -longdesc sequences built from other control sequences or inline -containersize 3428 -containerchecksum 5f006723665945d55f7365f3cd5076fa7ca924c0ce08c797ec684230edefd71483f37b456f5627b7d6b3d8f10fbf97101caefa67365eb155fe3f93d115e1bcf4 -doccontainersize 674200 -doccontainerchecksum fcf42f6392ae01414868f2d36883d9204bcefc06d772e6ced603ffe01b2b4d0cc15b7dd161b1dd57f5e58816d6da4290b738a9727207de28b1738d233c82fb3e -docfiles size=168 - RELOC/doc/latex/erw-l3/1343c9c903.tex +revision 61799 +shortdesc Utilities based on LaTeX3 +relocated 1 +longdesc Utilities based on LaTeX3. Highlight: \erw_merge_sort. +containersize 3944 +containerchecksum 551a7c38657547038a8bcf5973ecaec81cccb4b803961145d4aedf7416834e3cfefe736a59e20c80cc1621d415216371d58f3d0c7d2b0fc3dc0a182e1ba91acd +doccontainersize 483368 +doccontainerchecksum 8a0a823482fd19c80471e9c1a38312b5db7f04f618c8fd8381324c38bb9b9ebe8eb8fc9ce90137d4a4f1de7b6b65aa1c1820cfe0f009f4ad743613f53b549323 +docfiles size=123 RELOC/doc/latex/erw-l3/README.md details="Readme" RELOC/doc/latex/erw-l3/erw-l3.pdf details="Package documentation" -srccontainersize 10792 -srccontainerchecksum 27f357e13027f67764d4818a1cbb786678260272264ba7af13e6867923fc395c49636a09a5f2e4a444ea37f9985d0c7edc5a52ebffa172843bff24764112cd47 -srcfiles size=14 +srccontainersize 6156 +srccontainerchecksum babe7d5b286f4c20f469112efd76e4a37980bdb709ca9cd058263bf74a5d20b4b7c0aa3a4aba7fba512b5c63b538b6da1ae90f1903bd58ddeb36e2dfa4339e32 +srcfiles size=7 RELOC/source/latex/erw-l3/erw-l3.dtx -runfiles size=4 + RELOC/source/latex/erw-l3/erw-l3.ins +runfiles size=5 RELOC/tex/latex/erw-l3/erw-l3.sty catalogue-contact-home https://github.com/er-cpp/edu-latex3 catalogue-contact-repository https://github.com/rogard/erw-l3 @@ -107886,7 +111546,7 @@ catalogue-contact-support https://github.com/er-cpp/edu-latex3/issues catalogue-ctan /macros/latex/contrib/erw-l3 catalogue-license lppl1.3c catalogue-topics latex3 expl3 -catalogue-version 3.1 +catalogue-version 4.2 name es-tex-faq category Package @@ -107913,7 +111573,7 @@ catalogue-version 1.97 name esami category Package -revision 47639 +revision 61596 shortdesc Typeset exams with scrambled questions and answers relocated 1 longdesc The package enables the user to typeset exams with multiple @@ -107924,11 +111584,11 @@ longdesc may contain a wide number of random parameters and it is longdesc possible to do arithmetical operations on them. The package is longdesc localised in Italian, English, French, German, Greek, Serbian, longdesc and Spanish. -containersize 20980 -containerchecksum bbf24974b4feaba88b92b3179af6bdb45b86053ae8037fa41c99d0823cf3c79807283c01370365ea0264ba1eee3c4c289fadc5c2619900e85657366c14920a7d -doccontainersize 1432948 -doccontainerchecksum d9f57db15517f47d648e4ef91111a843fdd7f0d0706d1a863f5b4f7c65008c00507c552975c01b60c00cc724e63aea24f7a6b40930148bc981e200866cc30ac7 -docfiles size=441 +containersize 21180 +containerchecksum 2e0c1bd441ccb4376d1dda69f32cff55bf4d043315dd2c004bf6bebacdc510ddc9a1347bcadbfb96dea7be94b6d59ee050746afb04f50196dd7c99937b7e8505 +doccontainersize 1515176 +doccontainerchecksum 6bc50f4083cc401278a526c44a76e5a9569d0cbb7280d38270e95676fa359c08a25779709576c1532ec9296457d970d2abd82eeb78b2ac4923caad9559da77ed +docfiles size=498 RELOC/doc/latex/esami/README details="Readme" RELOC/doc/latex/esami/VERSION RELOC/doc/latex/esami/doc/esami-doc-en.pdf details="Package documentation (English)" language="en" @@ -107954,11 +111614,16 @@ docfiles size=441 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-sol.tex RELOC/doc/latex/esami/doc/examples/testA-luatex.pdf + RELOC/doc/latex/esami/doc/examples/testA-luatex.tex 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-sol.sol.tex + RELOC/doc/latex/esami/doc/examples/testA-xetex-sol.tex RELOC/doc/latex/esami/doc/examples/testA-xetex.pdf + RELOC/doc/latex/esami/doc/examples/testA-xetex.tex 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 @@ -107976,7 +111641,7 @@ runfiles size=28 catalogue-ctan /macros/latex/contrib/esami catalogue-license lppl catalogue-topics exam -catalogue-version 2.5 +catalogue-version 2.7 name esdiff category Package @@ -108007,6 +111672,33 @@ catalogue-license lppl1 catalogue-topics maths catalogue-version 1.2 +name esieecv +category Package +revision 59638 +shortdesc Curriculum vitae for French use +relocated 1 +longdesc The package allows the user to set up a curriculum vitae as a +longdesc French employer will expect. +containersize 1576 +containerchecksum c39e028de2f9cfb981baa2d36335863d6e3252a3bc3e1ef283905fed24daff609a85748dfbd34db0cbdcf7131f4db3aa6d66d0e714f0359b287cb14efb95f568 +doccontainersize 131168 +doccontainerchecksum 8bac60946fe2a4bd5c1ddd55dd314c59dc7fe45ce33a214021de68bbe03b610b8bf1d6ad426e855e10340953176285132017563c41f0326c273f2ca790be4acb +docfiles size=42 + RELOC/doc/latex/esieecv/ESIEEcv.pdf details="Package documentation" + RELOC/doc/latex/esieecv/cvtest.pdf details="Test/sample document" + RELOC/doc/latex/esieecv/cvtest.tex +srccontainersize 6876 +srccontainerchecksum 73f00171770070e8d71396540fb8adeb79804b341c7906ac7ebaf67d8d9696a178b5458d6b4d7bbf2949c9d7e3a6d142bf682931763714c5d0ce0a77416bd28a +srcfiles size=6 + RELOC/source/latex/esieecv/ESIEEcv.dtx + RELOC/source/latex/esieecv/ESIEEcv.ins +runfiles size=1 + RELOC/tex/latex/esieecv/ESIEEcv.sty +catalogue-also curve currvita cv europecv vita +catalogue-ctan /macros/latex/contrib/ESIEEcv +catalogue-license lppl +catalogue-topics cv french + name esindex category Package revision 52342 @@ -108596,7 +112288,7 @@ catalogue-version 1.2 name etbb category Package -revision 56390 +revision 61872 shortdesc An expansion of Edward Tufte's ET-Bembo family relocated 1 longdesc Based on Daniel Benjamin Miller's XETBook, which expanded @@ -108607,155 +112299,146 @@ longdesc superior letters and figures, inferior figures, a new capital longdesc Sharp S with small caps version, along with macros to activate longdesc these features in LaTeX. Both otf and pfb are provided. execute addMap ETbb.map -containersize 977996 -containerchecksum f21ea49a1404b8a495477d5b4ef440b6f2a363af50e6e93ff1f7ed4c36c88a133aa586ddb409b38a74a1ad7c181d785ce4491d259f5249000fd2cec2e5e73866 -doccontainersize 223292 -doccontainerchecksum 8527190d3f646d76833dd91b9610ca3051f499552f23b06ec88b4601c0b86ba5d9611520bfea49283451911a379b3b415ac5bfc6ac7703a4fa51b86356719f00 -docfiles size=62 +containersize 1054288 +containerchecksum 986a063266a6081571e9a9db60674f1cc795f15b32eaa954214b4620b29cb43043b6ba6cdc9cb02f20f809a65939dcfb157590bfcf867d999299ae34520f9f8b +doccontainersize 357012 +doccontainerchecksum 1278c7281a247416f4439b9f034d2acab7bd03e47c63038d8a4ac12793968e2508cf562940d0a0b510abc9ceec3517dcfb277cc365c9d3998797237610936613 +docfiles size=96 RELOC/doc/fonts/etbb/ETbb-doc.pdf details="Font samples" RELOC/doc/fonts/etbb/ETbb-doc.tex RELOC/doc/fonts/etbb/LICENSE RELOC/doc/fonts/etbb/README details="Readme" -runfiles size=2416 +runfiles size=2462 RELOC/fonts/afm/public/etbb/ETbb-Bold.afm RELOC/fonts/afm/public/etbb/ETbb-BoldItalic.afm RELOC/fonts/afm/public/etbb/ETbb-Italic.afm RELOC/fonts/afm/public/etbb/ETbb-Regular.afm - RELOC/fonts/enc/dvips/etbb/etbb1_2wngtz.enc RELOC/fonts/enc/dvips/etbb/etbb1_3ccbvp.enc - RELOC/fonts/enc/dvips/etbb/etbb1_5325we.enc - RELOC/fonts/enc/dvips/etbb/etbb1_77pqsh.enc + RELOC/fonts/enc/dvips/etbb/etbb1_3ggaku.enc + RELOC/fonts/enc/dvips/etbb/etbb1_6bhqsy.enc + RELOC/fonts/enc/dvips/etbb/etbb1_6dkfmm.enc + RELOC/fonts/enc/dvips/etbb/etbb1_d63baf.enc + RELOC/fonts/enc/dvips/etbb/etbb1_dpvwoq.enc RELOC/fonts/enc/dvips/etbb/etbb1_eqc2ac.enc + RELOC/fonts/enc/dvips/etbb/etbb1_frcze6.enc RELOC/fonts/enc/dvips/etbb/etbb1_hah5or.enc - RELOC/fonts/enc/dvips/etbb/etbb1_hibu6u.enc + RELOC/fonts/enc/dvips/etbb/etbb1_mfrons.enc RELOC/fonts/enc/dvips/etbb/etbb1_mgm6re.enc RELOC/fonts/enc/dvips/etbb/etbb1_pvrda3.enc - RELOC/fonts/enc/dvips/etbb/etbb1_rwec2l.enc - RELOC/fonts/enc/dvips/etbb/etbb1_sp7p3o.enc + RELOC/fonts/enc/dvips/etbb/etbb1_sb7odk.enc RELOC/fonts/enc/dvips/etbb/etbb1_vtabip.enc - RELOC/fonts/enc/dvips/etbb/etbb1_w52zjg.enc - RELOC/fonts/enc/dvips/etbb/etbb1_x5rskw.enc RELOC/fonts/enc/dvips/etbb/etbb1_xaqh3v.enc RELOC/fonts/enc/dvips/etbb/etbb1_yziesh.enc - RELOC/fonts/enc/dvips/etbb/etbb1_zxy3n5.enc - RELOC/fonts/enc/dvips/etbb/etbb_22apno.enc RELOC/fonts/enc/dvips/etbb/etbb_242knm.enc - RELOC/fonts/enc/dvips/etbb/etbb_2wngtz.enc + RELOC/fonts/enc/dvips/etbb/etbb_2jmcdk.enc + RELOC/fonts/enc/dvips/etbb/etbb_2ynk4h.enc RELOC/fonts/enc/dvips/etbb/etbb_33mftd.enc RELOC/fonts/enc/dvips/etbb/etbb_3ccbvp.enc - RELOC/fonts/enc/dvips/etbb/etbb_3jmjat.enc - RELOC/fonts/enc/dvips/etbb/etbb_3li7dq.enc - RELOC/fonts/enc/dvips/etbb/etbb_3pfdgz.enc + RELOC/fonts/enc/dvips/etbb/etbb_3ggaku.enc + RELOC/fonts/enc/dvips/etbb/etbb_3obh62.enc + RELOC/fonts/enc/dvips/etbb/etbb_3pymqv.enc + RELOC/fonts/enc/dvips/etbb/etbb_3ygfa2.enc + RELOC/fonts/enc/dvips/etbb/etbb_42bwpg.enc RELOC/fonts/enc/dvips/etbb/etbb_4hpi45.enc - RELOC/fonts/enc/dvips/etbb/etbb_4qfaj2.enc + RELOC/fonts/enc/dvips/etbb/etbb_4o3pf4.enc RELOC/fonts/enc/dvips/etbb/etbb_4sxvu4.enc - RELOC/fonts/enc/dvips/etbb/etbb_4x2qhb.enc - RELOC/fonts/enc/dvips/etbb/etbb_5325we.enc - RELOC/fonts/enc/dvips/etbb/etbb_5cjnk5.enc + RELOC/fonts/enc/dvips/etbb/etbb_4xv7ax.enc + RELOC/fonts/enc/dvips/etbb/etbb_5drz2o.enc RELOC/fonts/enc/dvips/etbb/etbb_5iollt.enc - RELOC/fonts/enc/dvips/etbb/etbb_6tax72.enc - RELOC/fonts/enc/dvips/etbb/etbb_77pqsh.enc + RELOC/fonts/enc/dvips/etbb/etbb_5um4so.enc + RELOC/fonts/enc/dvips/etbb/etbb_65swoa.enc + RELOC/fonts/enc/dvips/etbb/etbb_6bhqsy.enc + RELOC/fonts/enc/dvips/etbb/etbb_6dkfmm.enc + RELOC/fonts/enc/dvips/etbb/etbb_6z6nrw.enc + RELOC/fonts/enc/dvips/etbb/etbb_7dlbn4.enc + RELOC/fonts/enc/dvips/etbb/etbb_7ipmvr.enc RELOC/fonts/enc/dvips/etbb/etbb_7pzsmk.enc RELOC/fonts/enc/dvips/etbb/etbb_7t4ywj.enc + RELOC/fonts/enc/dvips/etbb/etbb_7tqudy.enc + RELOC/fonts/enc/dvips/etbb/etbb_7uz5xh.enc RELOC/fonts/enc/dvips/etbb/etbb_atf2m5.enc - RELOC/fonts/enc/dvips/etbb/etbb_ay4ati.enc - RELOC/fonts/enc/dvips/etbb/etbb_behrx3.enc - RELOC/fonts/enc/dvips/etbb/etbb_bowihu.enc - RELOC/fonts/enc/dvips/etbb/etbb_c6gjhm.enc - RELOC/fonts/enc/dvips/etbb/etbb_chsevo.enc - RELOC/fonts/enc/dvips/etbb/etbb_cluc7m.enc - RELOC/fonts/enc/dvips/etbb/etbb_cpb6sd.enc - RELOC/fonts/enc/dvips/etbb/etbb_cpdyi3.enc - RELOC/fonts/enc/dvips/etbb/etbb_cpixk3.enc + RELOC/fonts/enc/dvips/etbb/etbb_b3flk2.enc + RELOC/fonts/enc/dvips/etbb/etbb_bb5xlm.enc + RELOC/fonts/enc/dvips/etbb/etbb_boj3jd.enc RELOC/fonts/enc/dvips/etbb/etbb_cq6xx2.enc - RELOC/fonts/enc/dvips/etbb/etbb_cuqhrj.enc RELOC/fonts/enc/dvips/etbb/etbb_cxbogn.enc + RELOC/fonts/enc/dvips/etbb/etbb_cyp5f5.enc RELOC/fonts/enc/dvips/etbb/etbb_cyyszv.enc - RELOC/fonts/enc/dvips/etbb/etbb_dcps7k.enc - RELOC/fonts/enc/dvips/etbb/etbb_dep6cd.enc - RELOC/fonts/enc/dvips/etbb/etbb_dz2qg3.enc - RELOC/fonts/enc/dvips/etbb/etbb_e3m4fz.enc - RELOC/fonts/enc/dvips/etbb/etbb_ea2dgh.enc + RELOC/fonts/enc/dvips/etbb/etbb_d63baf.enc + RELOC/fonts/enc/dvips/etbb/etbb_dkuysn.enc + RELOC/fonts/enc/dvips/etbb/etbb_dpvwoq.enc + RELOC/fonts/enc/dvips/etbb/etbb_e7zo2o.enc + RELOC/fonts/enc/dvips/etbb/etbb_ehl4wc.enc RELOC/fonts/enc/dvips/etbb/etbb_elsw3h.enc RELOC/fonts/enc/dvips/etbb/etbb_eqc2ac.enc + RELOC/fonts/enc/dvips/etbb/etbb_eqlboo.enc RELOC/fonts/enc/dvips/etbb/etbb_f55msl.enc - RELOC/fonts/enc/dvips/etbb/etbb_f7n52p.enc - RELOC/fonts/enc/dvips/etbb/etbb_f7rui7.enc RELOC/fonts/enc/dvips/etbb/etbb_fpvlkw.enc - RELOC/fonts/enc/dvips/etbb/etbb_ftphfy.enc - RELOC/fonts/enc/dvips/etbb/etbb_fue2l2.enc + RELOC/fonts/enc/dvips/etbb/etbb_frcze6.enc + RELOC/fonts/enc/dvips/etbb/etbb_fveuju.enc RELOC/fonts/enc/dvips/etbb/etbb_fwcdph.enc - RELOC/fonts/enc/dvips/etbb/etbb_gkmjhd.enc - RELOC/fonts/enc/dvips/etbb/etbb_gtayjy.enc + RELOC/fonts/enc/dvips/etbb/etbb_fyek6u.enc + RELOC/fonts/enc/dvips/etbb/etbb_g2yynh.enc + RELOC/fonts/enc/dvips/etbb/etbb_gteq3q.enc RELOC/fonts/enc/dvips/etbb/etbb_gtqfg2.enc - RELOC/fonts/enc/dvips/etbb/etbb_h4dyum.enc RELOC/fonts/enc/dvips/etbb/etbb_hah5or.enc - RELOC/fonts/enc/dvips/etbb/etbb_hcre2c.enc - RELOC/fonts/enc/dvips/etbb/etbb_hibu6u.enc + RELOC/fonts/enc/dvips/etbb/etbb_hdnox5.enc + RELOC/fonts/enc/dvips/etbb/etbb_hn62ay.enc + RELOC/fonts/enc/dvips/etbb/etbb_i2z4ax.enc RELOC/fonts/enc/dvips/etbb/etbb_i5ezvi.enc - RELOC/fonts/enc/dvips/etbb/etbb_ihmnlr.enc - RELOC/fonts/enc/dvips/etbb/etbb_imedjx.enc + RELOC/fonts/enc/dvips/etbb/etbb_izxro2.enc + RELOC/fonts/enc/dvips/etbb/etbb_j43iwo.enc + RELOC/fonts/enc/dvips/etbb/etbb_j4gzyc.enc RELOC/fonts/enc/dvips/etbb/etbb_j7myeh.enc - RELOC/fonts/enc/dvips/etbb/etbb_kkjcws.enc - RELOC/fonts/enc/dvips/etbb/etbb_ko4aue.enc - RELOC/fonts/enc/dvips/etbb/etbb_kuig7z.enc + RELOC/fonts/enc/dvips/etbb/etbb_jjhcst.enc RELOC/fonts/enc/dvips/etbb/etbb_kvzzr3.enc - RELOC/fonts/enc/dvips/etbb/etbb_lchj55.enc - RELOC/fonts/enc/dvips/etbb/etbb_lfrz6w.enc - RELOC/fonts/enc/dvips/etbb/etbb_lolxkk.enc + RELOC/fonts/enc/dvips/etbb/etbb_ladhhj.enc RELOC/fonts/enc/dvips/etbb/etbb_m5kdwt.enc + RELOC/fonts/enc/dvips/etbb/etbb_mfrons.enc RELOC/fonts/enc/dvips/etbb/etbb_mgm6re.enc RELOC/fonts/enc/dvips/etbb/etbb_mpvq56.enc - RELOC/fonts/enc/dvips/etbb/etbb_na6tk5.enc - RELOC/fonts/enc/dvips/etbb/etbb_nfh2ow.enc - RELOC/fonts/enc/dvips/etbb/etbb_nnawaw.enc + RELOC/fonts/enc/dvips/etbb/etbb_n73bzf.enc + RELOC/fonts/enc/dvips/etbb/etbb_num7wi.enc + RELOC/fonts/enc/dvips/etbb/etbb_nvfc5y.enc + RELOC/fonts/enc/dvips/etbb/etbb_oe3mzn.enc RELOC/fonts/enc/dvips/etbb/etbb_ohc25e.enc - RELOC/fonts/enc/dvips/etbb/etbb_ohvjcv.enc + RELOC/fonts/enc/dvips/etbb/etbb_olodrh.enc + RELOC/fonts/enc/dvips/etbb/etbb_onypnl.enc + RELOC/fonts/enc/dvips/etbb/etbb_ooqfsa.enc + RELOC/fonts/enc/dvips/etbb/etbb_ow4ien.enc RELOC/fonts/enc/dvips/etbb/etbb_oynaqb.enc - RELOC/fonts/enc/dvips/etbb/etbb_p4wmli.enc - RELOC/fonts/enc/dvips/etbb/etbb_pijcl4.enc + RELOC/fonts/enc/dvips/etbb/etbb_p6ehom.enc + RELOC/fonts/enc/dvips/etbb/etbb_pqh27d.enc RELOC/fonts/enc/dvips/etbb/etbb_pvrda3.enc - RELOC/fonts/enc/dvips/etbb/etbb_qmwyqz.enc - RELOC/fonts/enc/dvips/etbb/etbb_qqjyre.enc - RELOC/fonts/enc/dvips/etbb/etbb_r34xpu.enc + RELOC/fonts/enc/dvips/etbb/etbb_q62n24.enc + RELOC/fonts/enc/dvips/etbb/etbb_rgl4wj.enc RELOC/fonts/enc/dvips/etbb/etbb_riohwx.enc - RELOC/fonts/enc/dvips/etbb/etbb_rt4kro.enc - RELOC/fonts/enc/dvips/etbb/etbb_rwec2l.enc RELOC/fonts/enc/dvips/etbb/etbb_rzlqzq.enc - RELOC/fonts/enc/dvips/etbb/etbb_s2dnn6.enc - RELOC/fonts/enc/dvips/etbb/etbb_sk3nrp.enc + RELOC/fonts/enc/dvips/etbb/etbb_sb7odk.enc + RELOC/fonts/enc/dvips/etbb/etbb_sjtq2a.enc RELOC/fonts/enc/dvips/etbb/etbb_skushq.enc - RELOC/fonts/enc/dvips/etbb/etbb_sp7p3o.enc - RELOC/fonts/enc/dvips/etbb/etbb_sz3fgd.enc + RELOC/fonts/enc/dvips/etbb/etbb_t4d6nl.enc RELOC/fonts/enc/dvips/etbb/etbb_tbmtgo.enc - RELOC/fonts/enc/dvips/etbb/etbb_tif2yn.enc - RELOC/fonts/enc/dvips/etbb/etbb_ujmsnd.enc - RELOC/fonts/enc/dvips/etbb/etbb_un2f5f.enc - RELOC/fonts/enc/dvips/etbb/etbb_uoncjt.enc - RELOC/fonts/enc/dvips/etbb/etbb_v2eodf.enc + RELOC/fonts/enc/dvips/etbb/etbb_tunzhv.enc + RELOC/fonts/enc/dvips/etbb/etbb_ujzbb6.enc RELOC/fonts/enc/dvips/etbb/etbb_v6nho7.enc - RELOC/fonts/enc/dvips/etbb/etbb_vmkycp.enc + RELOC/fonts/enc/dvips/etbb/etbb_vazzz3.enc + RELOC/fonts/enc/dvips/etbb/etbb_veuqiz.enc + RELOC/fonts/enc/dvips/etbb/etbb_vmilsn.enc + RELOC/fonts/enc/dvips/etbb/etbb_vqghpl.enc RELOC/fonts/enc/dvips/etbb/etbb_vtabip.enc - RELOC/fonts/enc/dvips/etbb/etbb_w52zjg.enc - RELOC/fonts/enc/dvips/etbb/etbb_whnzkz.enc - RELOC/fonts/enc/dvips/etbb/etbb_wplash.enc - RELOC/fonts/enc/dvips/etbb/etbb_x5rskw.enc RELOC/fonts/enc/dvips/etbb/etbb_xaqh3v.enc - RELOC/fonts/enc/dvips/etbb/etbb_xdptht.enc RELOC/fonts/enc/dvips/etbb/etbb_xe5wuh.enc RELOC/fonts/enc/dvips/etbb/etbb_xmn5et.enc + RELOC/fonts/enc/dvips/etbb/etbb_xwgzeq.enc + RELOC/fonts/enc/dvips/etbb/etbb_y6dqd4.enc + RELOC/fonts/enc/dvips/etbb/etbb_yadlkl.enc RELOC/fonts/enc/dvips/etbb/etbb_ybjyd4.enc - RELOC/fonts/enc/dvips/etbb/etbb_ydcfbc.enc - RELOC/fonts/enc/dvips/etbb/etbb_yhvmm4.enc RELOC/fonts/enc/dvips/etbb/etbb_yiqwpu.enc - RELOC/fonts/enc/dvips/etbb/etbb_yjlloh.enc RELOC/fonts/enc/dvips/etbb/etbb_ytzykv.enc RELOC/fonts/enc/dvips/etbb/etbb_yziesh.enc RELOC/fonts/enc/dvips/etbb/etbb_yzoycr.enc - RELOC/fonts/enc/dvips/etbb/etbb_yzujze.enc - RELOC/fonts/enc/dvips/etbb/etbb_z6brcn.enc RELOC/fonts/enc/dvips/etbb/etbb_zpkt7y.enc - RELOC/fonts/enc/dvips/etbb/etbb_zxy3n5.enc RELOC/fonts/map/dvips/etbb/ETbb.map RELOC/fonts/opentype/public/etbb/ETbb-Bold.otf RELOC/fonts/opentype/public/etbb/ETbb-BoldItalic.otf @@ -108763,16 +112446,19 @@ runfiles size=2416 RELOC/fonts/opentype/public/etbb/ETbb-Regular.otf RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-inf-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-ly1.tfm @@ -108782,6 +112468,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-swash-t1.tfm @@ -108791,6 +112478,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-lf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-ly1.tfm @@ -108800,6 +112488,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-swash-t1.tfm @@ -108809,11 +112498,13 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-osf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-sup-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-ly1.tfm @@ -108823,6 +112514,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-swash-t1.tfm @@ -108832,6 +112524,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-tlf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-ly1.tfm @@ -108841,6 +112534,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-swash-t1.tfm @@ -108850,16 +112544,19 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Bold-tosf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-inf-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-ly1.tfm @@ -108869,6 +112566,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-swash-t1.tfm @@ -108878,6 +112576,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-lf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-ly1.tfm @@ -108887,6 +112586,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-swash-t1.tfm @@ -108896,11 +112596,13 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-osf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-sup-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-ly1.tfm @@ -108910,6 +112612,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-swash-t1.tfm @@ -108919,6 +112622,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tlf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-ly1.tfm @@ -108928,6 +112632,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-swash-t1.tfm @@ -108937,16 +112642,19 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-BoldItalic-tosf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-inf-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-ly1.tfm @@ -108956,6 +112664,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-swash-t1.tfm @@ -108965,6 +112674,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-lf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-ly1.tfm @@ -108974,6 +112684,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-swash-t1.tfm @@ -108983,11 +112694,13 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-osf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-sup-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-ly1.tfm @@ -108997,6 +112710,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-swash-t1.tfm @@ -109006,6 +112720,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-tlf-ts1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-ly1.tfm @@ -109015,6 +112730,7 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ly1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ot1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-ot1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-t1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Italic-tosf-swash-t1.tfm @@ -109109,8 +112825,6 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-t1.tfm RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ts1--base.tfm RELOC/fonts/tfm/public/etbb/ETbb-Regular-tosf-ts1.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Bold-dnom-t1--base.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Bold-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Bold-lf-swash-t1--base.tfm @@ -109135,8 +112849,6 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-swash-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Bold-tosf-t1.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-dnom-t1--base.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-lf-swash-t1--base.tfm @@ -109161,8 +112873,6 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-swash-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-BoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Italic-dnom-t1--base.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Italic-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Italic-lf-swash-t1--base.tfm @@ -109187,8 +112897,6 @@ runfiles size=2416 RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-swash-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Italic-tosf-t1.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Regular-dnom-t1--base.tfm - RELOC/fonts/tfm/public/etbb/Etbb1-Regular-dnom-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-sc-t1.tfm RELOC/fonts/tfm/public/etbb/Etbb1-Regular-lf-swash-t1--base.tfm @@ -109218,116 +112926,149 @@ runfiles size=2416 RELOC/fonts/type1/public/etbb/ETbb-Italic.pfb RELOC/fonts/type1/public/etbb/ETbb-Regular.pfb RELOC/fonts/vf/public/etbb/ETbb-Bold-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-dnom-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-dnom-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-inf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-inf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-lf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-osf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-sup-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-sup-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tlf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Bold-tosf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-dnom-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-inf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-inf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-lf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-osf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-sup-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-sup-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-dnom-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-dnom-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-dnom-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-inf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-inf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-inf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-lf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-osf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-sup-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-sup-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-sup-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tlf-ts1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-swash-ly1.vf + RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-swash-ot1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Italic-tosf-ts1.vf @@ -109369,7 +113110,6 @@ runfiles size=2416 RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-t1.vf RELOC/fonts/vf/public/etbb/ETbb-Regular-tosf-ts1.vf - RELOC/fonts/vf/public/etbb/Etbb1-Bold-dnom-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Bold-lf-t1.vf @@ -109382,7 +113122,6 @@ runfiles size=2416 RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Bold-tosf-t1.vf - RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-lf-t1.vf @@ -109395,7 +113134,6 @@ runfiles size=2416 RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-BoldItalic-tosf-t1.vf - RELOC/fonts/vf/public/etbb/Etbb1-Italic-dnom-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Italic-lf-t1.vf @@ -109408,7 +113146,6 @@ runfiles size=2416 RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Italic-tosf-t1.vf - RELOC/fonts/vf/public/etbb/Etbb1-Regular-dnom-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-sc-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-swash-t1.vf RELOC/fonts/vf/public/etbb/Etbb1-Regular-lf-t1.vf @@ -109451,7 +113188,7 @@ runfiles size=2416 catalogue-ctan /fonts/etbb catalogue-license mit lppl1.3 catalogue-topics font font-body font-proportional font-type1 font-otf font-serif font-supp font-t1enc -catalogue-version 1.051 +catalogue-version 1.056 name etdipa category Package @@ -109498,7 +113235,7 @@ catalogue-version 2.6 name etex category Package -revision 56291 +revision 66203 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 @@ -109508,11 +113245,12 @@ longdesc immediate future; as a result, LaTeX programmers may (in all longdesc current TeX distributions) assume e-TeX functionality. The longdesc pdftex engine directly incorporates the e-TeX extensions. The longdesc development source for e-TeX is the TeX Live source repository. -containersize 11504 -containerchecksum 662338c145e84577ee49bd7d1941ade688d07ab8382faec25d6f45891953554e85ab4d531164e58db97071a7950c31b36f9eec8700ad4b43dffef30217f0fd89 -doccontainersize 189808 -doccontainerchecksum d7c7cb6c0a8c2056be906761c7f0173c7ec28aa4e910d9546aa75aea79f8a2aedef06d708710135d3f557586990fefd73086b4f11b8b7642a1cbaedde91b1b8b -docfiles size=129 +containersize 11508 +containerchecksum 419c85187d6832c9624c70936b3ad879987f665e54bf1fb9a7ddeb1096d09677693987b187e8d60691235d721a1b995fbda36351ce754b9c6a2a44bd015c0ac3 +doccontainersize 194596 +doccontainerchecksum ae5b1f4d0b7746e294697567da95a400ada069223e497d4ff906d13e4515e879d85532675886ef0d14564604163659c3d6715ff00ff29fa06fd876eed9cf60b6 +docfiles size=134 + RELOC/doc/etex/base/ChangeLog RELOC/doc/etex/base/NTS-FAQ RELOC/doc/etex/base/etex_gen.tex RELOC/doc/etex/base/etex_man.pdf details="System documentation (v2.0)" @@ -109901,74 +113639,102 @@ catalogue-ctan /fonts/ps-type1/ethiop catalogue-license gpl catalogue-topics font font-nonroman font-type1 amharic +name etl +category Package +revision 60998 +shortdesc Expandable token list operations +relocated 1 +longdesc This package provides expandable token list operations for +longdesc which expl3's l3tl only has unexpandable variants. These +longdesc expandable versions are typically slower than the unexpandable +longdesc code. Unlike the l3tl versions, the functions in this module +longdesc may contain braces and macro parameter tokens in their +longdesc arguments, but as a drawback they cannot distinguish some +longdesc tokens and do not consider the character code of group-begin +longdesc and group-end tokens. Additionally a general map to token lists +longdesc is provided, modelled after the expl3 internal __tl_act:NNNn +longdesc but with additional features. The package has no immediate use +longdesc for document authors; it only contains expl3 functions intended +longdesc for programmers. +containersize 4424 +containerchecksum 14c5db74da0c3878609323b450c99dbc186c97997079d09acf55bc8fe78a2cf9f7fccf7c89c1fe02ef8fe9d532fc3d33e85d77e374d4f0c601c6251a04472dca +doccontainersize 358088 +doccontainerchecksum 2a1dca3962826cf749d67799c6d871b7822b16f81c7ff3473628926db217812ed5d85ee2da351245f6ff7a973bb1b90b61951101978693fb92f07bc86425bb2b +docfiles size=91 + RELOC/doc/latex/etl/README.md details="Readme" + RELOC/doc/latex/etl/etl.pdf details="Package documentation" +srccontainersize 15532 +srccontainerchecksum 1be3c92c55576ea6906f08461f08269fc4840815124c3f1f09ed145a680de3763e3bcd88aae61c46d872e05ea34c302625e439ffdbcbc15d7565eeb250b177e3 +srcfiles size=19 + RELOC/source/latex/etl/etl.dtx +runfiles size=7 + RELOC/tex/latex/etl/etl.sty +catalogue-contact-repository https://github.com/Skillmon/ltx_etl +catalogue-ctan /macros/latex/contrib/etl +catalogue-license lppl1.3c +catalogue-topics expl3 latex3 macro-supp +catalogue-version 0.3 + name etoc category Package -revision 55156 +revision 66299 shortdesc Completely customisable TOCs relocated 1 -longdesc The package gives the user complete control of how the entries -longdesc of the table of contents should be constituted from the name, -longdesc number, and page number of each sectioning unit. The layout is -longdesc controlled by the definition of 'line styles' for each -longdesc sectioning level used in the document. The package provides its -longdesc own custom line styles (which may be used as examples), and -longdesc continues to support the standard formatting inherited from the -longdesc LaTeX document classes, but the package can also allow the user -longdesc to delegate the details to packages dealing with list making -longdesc environments (such as enumitem). The package's default global -longdesc style typesets tables of contents in a multi-column format, -longdesc with either a standard heading, or a ruled title (optionally -longdesc with a frame around the table). The \tableofcontents command -longdesc may be used arbitrarily many times in the same document, while -longdesc \localtableofcontents provides a 'local' table of contents. -containersize 10548 -containerchecksum 4000c9627c76648046d647843dbcf93f56111433d0294f8fe448549191886dd4cbea8815910b305f9e27a18b42a85ac8fe8a5999584da60d66a67f4a376d227b -doccontainersize 1119500 -doccontainerchecksum 377963e8ec9af3fd7fe1f164bc2dad566f18d7ff8bb62689d0119641f5aa61fa0ca091f1feed7d968f86db3bfe1035f915de120724a2d2cf912f1787f3eb3be3 -docfiles size=324 +longdesc With etoc loaded, \tableofcontents can be used multiple times, +longdesc and an added command \localtableofcontents allows to typeset +longdesc "local" tables of contents, i.e. TOCs having their scope +longdesc limited to the last sectioning command encountered. Since +longdesc release 1.2, also \locallistoffigures and \locallistoftables +longdesc are available. Loading etoc per itself does not modify the +longdesc "contents lines" inherited from the class default or changed +longdesc via other packages. But full usage of the package allows +longdesc spectacular effects such as displaying TOCs as trees or mind +longdesc maps. +containersize 12776 +containerchecksum 10ce4c085726c47e38893c50f2d5868ac0332eb1dceaf929645175ca981da1c9595b5b7a2e1442b5a1a8d2a84f4e84f6651445d987c44df0010a943ce4d1f7a4 +doccontainersize 903800 +doccontainerchecksum 43e9e5aed1c98660cc97e1aa617cb96aabcf40ad1583a1a6f0e4644ce48eeef4e6ae7186920b952ef4e247545829f2cccaa52fa88da6d942b68dbd365a8eaeba +docfiles size=260 RELOC/doc/latex/etoc/README.md details="Readme" - RELOC/doc/latex/etoc/etoc-DE.pdf details="Package documentation" language="de" - RELOC/doc/latex/etoc/etoc-DE.tex RELOC/doc/latex/etoc/etoc.pdf details="Package documentation" RELOC/doc/latex/etoc/etoc.tex + RELOC/doc/latex/etoc/etocsnippet-01.tex + RELOC/doc/latex/etoc/etocsnippet-02.tex + RELOC/doc/latex/etoc/etocsnippet-03.tex + RELOC/doc/latex/etoc/etocsnippet-04.tex + RELOC/doc/latex/etoc/etocsnippet-05.tex + RELOC/doc/latex/etoc/etocsnippet-06.tex + RELOC/doc/latex/etoc/etocsnippet-07.tex + RELOC/doc/latex/etoc/etocsnippet-08.tex + RELOC/doc/latex/etoc/etocsnippet-09.tex RELOC/doc/latex/etoc/etocsnippet-10.tex - RELOC/doc/latex/etoc/etocsnippet-20-A.tex - RELOC/doc/latex/etoc/etocsnippet-20-B.tex - RELOC/doc/latex/etoc/etocsnippet-21-A.tex - RELOC/doc/latex/etoc/etocsnippet-21-B.tex - RELOC/doc/latex/etoc/etocsnippet-22-A.tex + RELOC/doc/latex/etoc/etocsnippet-11.tex + RELOC/doc/latex/etoc/etocsnippet-12.tex + RELOC/doc/latex/etoc/etocsnippet-13.tex + RELOC/doc/latex/etoc/etocsnippet-14.tex + RELOC/doc/latex/etoc/etocsnippet-15.tex + RELOC/doc/latex/etoc/etocsnippet-16.tex + RELOC/doc/latex/etoc/etocsnippet-17.tex + RELOC/doc/latex/etoc/etocsnippet-18.tex + RELOC/doc/latex/etoc/etocsnippet-19.tex + RELOC/doc/latex/etoc/etocsnippet-20.tex + RELOC/doc/latex/etoc/etocsnippet-21.tex + RELOC/doc/latex/etoc/etocsnippet-22.tex RELOC/doc/latex/etoc/etocsnippet-23.tex RELOC/doc/latex/etoc/etocsnippet-24.tex RELOC/doc/latex/etoc/etocsnippet-25.tex RELOC/doc/latex/etoc/etocsnippet-26.tex - RELOC/doc/latex/etoc/etocsnippet-27.tex - RELOC/doc/latex/etoc/etocsnippet-28.tex - RELOC/doc/latex/etoc/etocsnippet-29.tex - RELOC/doc/latex/etoc/etocsnippet-30-A.tex - RELOC/doc/latex/etoc/etocsnippet-30-B.tex - RELOC/doc/latex/etoc/etocsnippet-31.tex - RELOC/doc/latex/etoc/etocsnippet-32.tex - RELOC/doc/latex/etoc/etocsnippet-40.tex - RELOC/doc/latex/etoc/etocsnippet-46.tex - RELOC/doc/latex/etoc/etocsnippet-48.tex - RELOC/doc/latex/etoc/etocsnippet-5.tex - RELOC/doc/latex/etoc/etocsnippet-52-A.tex - RELOC/doc/latex/etoc/etocsnippet-52-B.tex - RELOC/doc/latex/etoc/etocsnippet-53.tex - RELOC/doc/latex/etoc/etocsnippet-54.tex - RELOC/doc/latex/etoc/etocsnippet-6.tex - RELOC/doc/latex/etoc/etocsnippet-7.tex -srccontainersize 121032 -srccontainerchecksum d870677e592cdc503c8fdd3b03e568017c7d8f4cbfb9ebafe3510bcadc75f85f613991999dc67ae601db8ead068d06af76c1e0e1636c930313f6f04e080cbd6d -srcfiles size=138 +srccontainersize 113880 +srccontainerchecksum 2f09eddfde31e5d2e7f38e640d4ad39d411989275c5dba36b2f17b5a6a278ea68d195567fdfceec84da5f4cdc4db89f83813d2fb6a4e1a43c55a731d3d356eb0 +srcfiles size=115 RELOC/source/latex/etoc/etoc.dtx -runfiles size=14 +runfiles size=18 RELOC/tex/latex/etoc/etoc.sty catalogue-also titletoc tocbasic catalogue-ctan /macros/latex/contrib/etoc catalogue-license lppl1.3c catalogue-topics toc-etc etex -catalogue-version 1.09c +catalogue-version 1.2 name etoolbox category Package @@ -110052,7 +113818,7 @@ catalogue-version 1.0 name euclideangeometry category Package -revision 54897 +revision 60697 shortdesc Draw geometrical constructions relocated 1 longdesc This package provides tools to draw most of the geometrical @@ -110061,25 +113827,25 @@ longdesc professor might need to teach geometry. The connection to longdesc Euclide depends on the fact that in his times calculations were longdesc made with ruler, compass and also with ellipsograph. This longdesc package extends the functionalities of the curve2e package. -containersize 5316 -containerchecksum 62900fe71550594672cbcb6cc22d067aae1e6315e54c76888fbe3db2b79558c25182e05c028e2e0504fa1f19168276d95684d0dcf76c2aceb600720cf090ae1c -doccontainersize 1020216 -doccontainerchecksum c12dfd05e72c4a081068af962fc223f6391793436ece1e706bacaf205c69ba01ae9a7263e1069b5e10ff4dc8a7ad151558ba188ee6c539d8e297d57dd6e1c45e -docfiles size=276 +containersize 5204 +containerchecksum cbb755602a75397494bf745c62ef1a1f9bb0e0a1635a20e9afb839a0e02c7b2041aa1b8364c8f8c17ca5be1d296831a8444f67d74ab8ce415583d7ddf81f9de4 +doccontainersize 1089072 +doccontainerchecksum 2507ea02223d4da14b79e3343f765f65259efe3b6a2558348cf1d2514d0ced1e1e631b84d9dd0b178b3faba455f5bb292b6d16fc9fa9f21e0599d272eaca7f1d +docfiles size=302 RELOC/doc/latex/euclideangeometry/README.txt details="Readme" RELOC/doc/latex/euclideangeometry/euclideangeometry-man.pdf details="User manual" RELOC/doc/latex/euclideangeometry/euclideangeometry-man.tex RELOC/doc/latex/euclideangeometry/euclideangeometry.pdf details="Documented code" -srccontainersize 21020 -srccontainerchecksum 35805bde4c06f9589467808497de577b58e8eef5f788671c0a9ccf2603d21873d71d980b07f1acc411d7eaeb9bb7868a6bfe562055be030d802fa88fbc16c183 -srcfiles size=18 +srccontainersize 20580 +srccontainerchecksum db799a444094b0e0f708cfa7c4d5ec0cc52a1652254bd28be4e8b8e8325d6aad3ff6bde84d0378ad43abe9d008515205def78657ea7b196aa23010cec46d8f23 +srcfiles size=17 RELOC/source/latex/euclideangeometry/euclideangeometry.dtx runfiles size=4 RELOC/tex/latex/euclideangeometry/euclideangeometry.sty catalogue-ctan /macros/latex/contrib/euclideangeometry catalogue-license lppl1.3c catalogue-topics graphics maths -catalogue-version 0.1.8 +catalogue-version 0.2.1 name euenc category Package @@ -110222,33 +113988,62 @@ catalogue-license lppl catalogue-topics font-supp-maths catalogue-version 2.5 +name euler-math +category Package +revision 65685 +shortdesc OpenType version of Hermann Zapf's Euler maths font +relocated 1 +longdesc Euler-Math.otf (formerly named 'Neo-Euler.otf') is an OpenType +longdesc version of Hermann Zapf's Euler maths font. It is the +longdesc continuation of the Euler project initiated by Khaled Hosny in +longdesc 2009 and abandoned in 2016. A style file euler-math.sty is +longdesc provided as a replacement of the eulervm package for LuaLaTeX +longdesc and XeLaTeX users. +containersize 224712 +containerchecksum 912d06b33ec56da0103fe7a13ba2f3e95b602842d83caf6d4fee6a55fd47f7134f70b7bf7b07736f531836378a9dd60eedd7a0297de19388b0f6ea997a140464 +doccontainersize 1544780 +doccontainerchecksum c197e59cbd9035e915649f99605f9165c7eac55143a96b942e43a718d7237aae14db3db3afcff0b05d39651a3d81a544259d2d435ccc8895be9e831e29e18c36 +docfiles size=405 + RELOC/doc/fonts/euler-math/Euler-Math.ltx + RELOC/doc/fonts/euler-math/Euler-Math.pdf details="Package documentation" + RELOC/doc/fonts/euler-math/README.md details="Readme" + RELOC/doc/fonts/euler-math/unimath-euler.ltx + RELOC/doc/fonts/euler-math/unimath-euler.pdf details="List of glyphs" +runfiles size=111 + RELOC/fonts/opentype/public/euler-math/Euler-Math.otf + RELOC/tex/latex/euler-math/euler-math.sty + RELOC/tex/latex/euler-math/neo-euler.sty +catalogue-alias neo-euler +catalogue-ctan /fonts/euler-math +catalogue-license ofl lppl1.3 +catalogue-topics font font-otf font-maths +catalogue-version 0.31 + name eulerpx category Package -revision 43735 +revision 63967 shortdesc A modern interface for the Euler math fonts relocated 1 longdesc This package provides the "eulerpx" font, which started as a longdesc hybrid of multiple other font packages, notably eulervm and -longdesc newpxmath. Its purpose is twofold: To use the eulervm symbols -longdesc for greek and latin, but the newpxmath font for braces and -longdesc brackets, and the text font for digits and operators; and to -longdesc make it easy to change between a sans and a serif font for the -longdesc digits and operators so that the font can be used seamlessly in -longdesc documents using both. This package was put together with the -longdesc intent to use it with the Palatino and Optima fonts, but it may -longdesc work with other combinations, too. -containersize 2220 -containerchecksum 1dd4c01260b9f2cf7053d7867530b1383a1b1218719a5a58895bb56e61416f9a93199218670e88cb59f0d87e65efdd7f10a218b45a165894c13b99330797296b -doccontainersize 1960 -doccontainerchecksum d755e9694d0631e80ccf81f78a2832ae22269ded788fd30f0acd83a4044ddb4ee4308c26ae5f79c0510a2986f146d28847eabe200015bb197805d57d149ba20e -docfiles size=1 +longdesc newpxmath. This package was put together with the intent to use +longdesc it with the Palatino and Optima fonts, but it may work with +longdesc other combinations, too. +containersize 2720 +containerchecksum 86f23cf10d19427876caa9e21bdce3adcfa7ca06578e7ae05f20529333e36b7135695c1c3990c6700e0ad365fed41634de5d152813ccde20cf642d7e2b282455 +doccontainersize 337868 +doccontainerchecksum 997bfc34f084027c6275d41d4fd8e1eafc55a6aa1aae66895c6bf8a3ddc8a7b411052a126cb87b9900829b933175c6be942e1dff4713633b5fc12f6688799753 +docfiles size=94 RELOC/doc/fonts/eulerpx/README details="Readme" -runfiles size=2 + RELOC/doc/fonts/eulerpx/eulerpxdoc.pdf + RELOC/doc/fonts/eulerpx/eulerpxdoc.tex + RELOC/doc/fonts/eulerpx/sample.tex +runfiles size=3 RELOC/tex/latex/eulerpx/eulerpx.sty catalogue-ctan /fonts/eulerpx catalogue-license lppl1.3 catalogue-topics font-supp -catalogue-version 0.2.1 +catalogue-version 1.0 name eulervm category Package @@ -110479,7 +114274,7 @@ catalogue-topics cv class name europecv category Package -revision 57641 +revision 64037 shortdesc Unofficial class for European curricula vitae relocated 1 longdesc The europecv class is an unofficial LaTeX implementation of the @@ -110490,11 +114285,11 @@ longdesc enough to be used for any kind of curriculum vitae. The class longdesc has localisations for all the official languages of the EU longdesc (plus Catalan), as well as options permitting input in UTF-8 longdesc and koi8-r. -containersize 38444 -containerchecksum 9010e3d116f2a9fbc00f9da15b98ef6b5dd894ae94e3ddd82842f088f4d867c9b4fc186597e3885f7acc59d0ae51d9dd75b0a7c8955c2c22bd0295e2298cca89 -doccontainersize 985760 -doccontainerchecksum ed502dcf747360c2fc2688e2d1d3e90f145f05488925a5cc2afc5354389b41a8916713a31de7fa8f69fd42f6ce104d7404e3bc55b786ea045a430a6119880768 -docfiles size=332 +containersize 58532 +containerchecksum 3ea97daf92d91ca88cec92af2a1d3bd1a1cbfcdf187bb8296559ef9132510a34f9e2ad068b78c655aad466392a1fbaced45143186e89aef8f3d5cf5123c34510 +doccontainersize 995452 +doccontainerchecksum 1c494d5e568514e84a5b9ffcc70ce02c3263f0837a2f97676be92cefadc8b8fdcafcd9b1d225ab753a66bc0878d63d2fc0f4b3a345f76c08da258e577b8f4224 +docfiles size=334 RELOC/doc/latex/europecv/CHANGELOG.rst RELOC/doc/latex/europecv/CONTRIBUTING.md RELOC/doc/latex/europecv/LICENSE @@ -110521,6 +114316,12 @@ docfiles size=332 RELOC/doc/latex/europecv/templates/cv_template_academic_en.tex RELOC/doc/latex/europecv/templates/cv_template_en.pdf details="Simple example of use" RELOC/doc/latex/europecv/templates/cv_template_en.tex + RELOC/doc/latex/europecv/templates/cv_template_en_bieber.tex + RELOC/doc/latex/europecv/templates/europecv_biber.conf + RELOC/doc/latex/europecv/templates/europecv_biber.tex + RELOC/doc/latex/europecv/templates/europecv_photo.jpg + RELOC/doc/latex/europecv/templates/europecv_pub.bib + RELOC/doc/latex/europecv/templates/europecv_thesis.bib runfiles size=64 RELOC/tex/latex/europecv/EuropeFlagBW.eps RELOC/tex/latex/europecv/EuropeFlagBW.pdf @@ -110557,6 +114358,7 @@ runfiles size=64 RELOC/tex/latex/europecv/ecvsl.def RELOC/tex/latex/europecv/ecvsr.def RELOC/tex/latex/europecv/ecvsv.def + RELOC/tex/latex/europecv/europasslogo-eps-converted-to.pdf RELOC/tex/latex/europecv/europasslogo.eps RELOC/tex/latex/europecv/europasslogo.pdf RELOC/tex/latex/europecv/europecv.cls @@ -110564,7 +114366,7 @@ catalogue-also europasscv curve currvita cv esieecv vita catalogue-contact-repository https://github.com/gsilano/EuropeCV catalogue-ctan /macros/latex/contrib/europecv catalogue-license lppl -catalogue-topics cv class +catalogue-topics cv class doc-templ name eurosym category Package @@ -110650,6 +114452,36 @@ runfiles size=40 RELOC/fonts/tfm/public/euxm/euxm5.tfm RELOC/fonts/tfm/public/euxm/euxm7.tfm +name evangelion-jfm +category Package +revision 65824 +shortdesc A Japanese font metric supporting many advanced features +relocated 1 +longdesc This package provides a Japanese Font Metric supporting +longdesc vertical and horizontal typesetting, 'linegap punctuations', +longdesc 'extended fonts', and more interesting and helpful features +longdesc using traditional and simplified Chinese or Japanese fonts +longdesc under LuaTeX-ja. It also makes full use of the 'priority' +longdesc feature, meeting the standards, and allows easy customisation. +containersize 2772 +containerchecksum 8f65c7a0bb9731cfa5294015fef8936a83e5cec017162997aac76cbaba1ca215189402f3c8387fc55b569395f6c7b8289a6bdbd7cde235d89484722ea257a2dc +doccontainersize 295376 +doccontainerchecksum 2d2d92b7189c69ce30b5ca00900a135fdacff50fb9bc5ef61adb879bf744ea52b3985f948b8c8582169acf577034790436ab606f947c943b2fd5ddadc495bf13 +docfiles size=78 + RELOC/doc/luatex/evangelion-jfm/Evangelion-doc.pdf details="Package documentation" + RELOC/doc/luatex/evangelion-jfm/Evangelion-doc.tex + RELOC/doc/luatex/evangelion-jfm/LICENSE + RELOC/doc/luatex/evangelion-jfm/README.md details="Readme" +runfiles size=5 + RELOC/tex/luatex/evangelion-jfm/jfm-eva.lua +catalogue-contact-bugs https://github.com/RadioNoiseE/Evangelion-JFM/issues +catalogue-contact-development https://github.com/RadioNoiseE/Evangelion-JFM/pulls +catalogue-contact-repository https://github.com/RadioNoiseE/Evangelion-JFM +catalogue-ctan /macros/luatex/generic/evangelion-jfm +catalogue-license mit +catalogue-topics chinese japanese font-supp luatex +catalogue-version 1.0.0 (b) + name everyhook category Package revision 35675 @@ -110782,7 +114614,7 @@ catalogue-version 4.00 name exam category Package -revision 58023 +revision 64134 shortdesc Package for typesetting exam scripts relocated 1 longdesc Provides a class exam.cls, which eases production of exams, @@ -110807,11 +114639,11 @@ longdesc to headers and/or footers to allow for this. Note that the longdesc bundle exams also provides a file exam.cls; the two bundles longdesc therefore clash, and should not be installed on the same longdesc system. -containersize 49904 -containerchecksum 0a18063d56042bbd93d43e7e0dd7da59e352c6ee31eb9d925124f5057e6ec62a87277271bdb7f1bfd81e22537af6b648efafaef22e25956ef2e48868b381e9ea -doccontainersize 515428 -doccontainerchecksum 8d0c427c56764b605e5e79a4b71df5afc6619569f34115084ce30adc5da8905743b8859ad984284a38e74ee56d057383ece36fbe73489cadeb87704e0614bee5 -docfiles size=194 +containersize 49900 +containerchecksum cb32b9df4d85c1073d5fb7304bcbb2266f8f63006417bfcce81c8ecc6d401a31a5fd3c9fa3031014576f80cc4f82b99b398418c20353db6bf6f74de025eca4e9 +doccontainersize 524800 +doccontainerchecksum a916fc60c847df4f2e275a36f1d298da8da8fc3f248b2f1b9c06f184611d2e52ce5b417c7d9e8dec319c382ce9cda76000c7482d6ea68b204e214899133a7793 +docfiles size=198 RELOC/doc/latex/exam/README details="Package Readme" RELOC/doc/latex/exam/exam.md5 RELOC/doc/latex/exam/examdoc.pdf details="Package documentation" @@ -110824,9 +114656,38 @@ catalogue-license lppl1.3 catalogue-topics exam class catalogue-version 2.7 +name exam-lite +category Package +revision 65754 +shortdesc Quicker preparation of exams in LaTeX +relocated 1 +longdesc This template is devoted to the quicker preparation of exams in +longdesc LaTeX. Its main features are: Minimalistic design. Include the +longdesc custom logo of the affiliation. Predefined commands for a +longdesc subject, study year, study program, exam type, place of exam, +longdesc date. Many macros contained in this package speed up the +longdesc process of preparing the necessary ingredients for the exam. +longdesc Automatic calculation of total points. +containersize 3232 +containerchecksum f1f16566eb49d5514bff3076f1c1837cc933278f3b0e8b1d6541f158ce4922daa43585057666e66ef80366d36b4b28793b930421ed8901d456405e52469e0e43 +doccontainersize 148632 +doccontainerchecksum a1a2ea02e4ed3d846e428f5ae43f25150a982f2d490d9753071345d53e640f3ef05b43e812ff84155a44f369ab49e294050bbc53823da4e899c7e1b6c2d1f36c +docfiles size=56 + RELOC/doc/latex/exam-lite/LICENSE + RELOC/doc/latex/exam-lite/README.md details="Readme" + RELOC/doc/latex/exam-lite/exam-lite.tex + RELOC/doc/latex/exam-lite/exam_lite.pdf details="Example of use" + RELOC/doc/latex/exam-lite/imgs/exam-lite-affl-logo.png +runfiles size=3 + RELOC/tex/latex/exam-lite/exam-lite.cls +catalogue-contact-repository https://github.com/firefly-cpp/exam-lite-latex +catalogue-ctan /macros/latex/contrib/exam-lite +catalogue-license cc-by-sa-4 +catalogue-topics exam class doc-templ + name exam-n category Package -revision 42755 +revision 64674 shortdesc Exam class, focused on collaborative authoring relocated 1 longdesc The class design offers: Direct support for collaborative @@ -110837,21 +114698,21 @@ longdesc process is in regular use within a physics and astronomy longdesc department). All of the 'traditional' exam paper features such longdesc as sectioning, per-part running marks, 'Question n continued' longdesc catchwords, and so on. Readily configured local adaptation. -containersize 11804 -containerchecksum 6cb28928125f1164fcf2a78980345373a094fc1a2f2f22756c8f9b27da05b88b6011f000508354b4d73aafa09a2a877bd0e6913a274518b471380074762be392 -doccontainersize 820032 -doccontainerchecksum 502d6fd1073f4ce68477e6be652dd131bb0a74818df2b1fc6b0a97aafeb946de1d0fe3fe90ed5843bd63305c528031acde37697cfd756c9839b083f9926a363c -docfiles size=271 - RELOC/doc/latex/exam-n/A1.clo - RELOC/doc/latex/exam-n/README details="Readme" - RELOC/doc/latex/exam-n/README.ctan +containersize 14112 +containerchecksum bdd3f8a1e7836ce86fe022e27c554c125403247a9ca4e4cec7a0f32937eb517351d815248ce67815610bd063a9d0e5111868c301847aa5b6e5d666dd1cfc2f8e +doccontainersize 429124 +doccontainerchecksum 3cd31c7cb86e66901eca162e7bd0ced047fdf22f2d8306d9f8cc8dffb299d027305e950ff1f188d366226614aaa2db2ece78008bf1a34d4076eaf3db7edab319 +docfiles size=190 + RELOC/doc/latex/exam-n/README.md details="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 details="Package documentation" + RELOC/doc/latex/exam-n/examndefs.sty RELOC/doc/latex/exam-n/lppl.txt + RELOC/doc/latex/exam-n/myclass.clo RELOC/doc/latex/exam-n/notes-for-authors.pdf RELOC/doc/latex/exam-n/notes-for-authors.tex - RELOC/doc/latex/exam-n/release-notes.html + RELOC/doc/latex/exam-n/release-notes-dist.html RELOC/doc/latex/exam-n/sample/Makefile RELOC/doc/latex/exam-n/sample/cosmo1.tex RELOC/doc/latex/exam-n/sample/cosmo2.tex @@ -110867,28 +114728,30 @@ docfiles size=271 RELOC/doc/latex/exam-n/sample/numerical2.tex RELOC/doc/latex/exam-n/sample/numerical3.tex RELOC/doc/latex/exam-n/sample/sample_exam.tex - RELOC/doc/latex/exam-n/sample/sample_exam_solution.tex - RELOC/doc/latex/exam-n/sample/sample_mcq.tex - RELOC/doc/latex/exam-n/sample_exam.pdf details="Sample exam" - RELOC/doc/latex/exam-n/sample_exam_solution.pdf - RELOC/doc/latex/exam-n/style.css -srccontainersize 34424 -srccontainerchecksum 7241ce6d5e83e75142d8f3df652af4eaed554a7a2c93ee3b2868bb8c5918cfd950c7fa1413464604607b120eefed14fece4f801b08a6f0fbbded59f29e8ba620 -srcfiles size=32 + RELOC/doc/latex/exam-n/sample/sample_exam_mcq.tex + RELOC/doc/latex/exam-n/template-master.pdf + RELOC/doc/latex/exam-n/template-master.tex + RELOC/doc/latex/exam-n/template-question.pdf + RELOC/doc/latex/exam-n/template-question.tex +srccontainersize 44332 +srccontainerchecksum 4234bf167451fadba8b098e686490b517c44063c76bb4a780aa0d585db0df75fb30050efbe539cf6ce2658414db6a69c5f0c6e63de6e024a825ea45070ee894d +srcfiles size=42 RELOC/source/latex/exam-n/exam-n.drv RELOC/source/latex/exam-n/exam-n.dtx RELOC/source/latex/exam-n/exam-n.ins -runfiles size=11 + RELOC/source/latex/exam-n/release-notes.dtx +runfiles size=13 RELOC/tex/latex/exam-n/exam-n.cls -catalogue-contact-home http://purl.org/nxg/dist/exam-n +catalogue-contact-home https://purl.org/nxg/dist/exam-n +catalogue-contact-repository https://heptapod.host/nxg/exam-n/ catalogue-ctan /macros/latex/contrib/exam-n -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics exam -catalogue-version 1.1.4 +catalogue-version 1.4.0 name exam-randomizechoices category Package -revision 49662 +revision 61719 shortdesc Randomize mc choices using the exam class relocated 1 longdesc This package is an extension to the exam document class. It @@ -110900,25 +114763,87 @@ longdesc questions. The questions themselves cannot be randomized with longdesc this package. Furthermore, the package provides a simple answer longdesc key table typesetter and has a command for writing the answer longdesc keys to an external file. -containersize 5352 -containerchecksum 0cb93637dda7a7813f8f89dba62db03cb1c1c6da5ce5dae596a14321fab8c46a5c6d67432c31855b66b37b0eb9086d23b5bf2881bf8fa41e410ed7a4724d84bc -doccontainersize 278136 -doccontainerchecksum 74daa43aa020898bf2a969e5f6fa09aea190209dd71eab222dde2b30cf2f6e12936b454a62b328aee59f6c3ae13bf5f7005ec3aba66766ade77672f74bb3ee8b -docfiles size=82 +containersize 5624 +containerchecksum bc29ee238d430b0d1b536084568ec8e68381c827c7ea7a4742eb497c7092ac8eb0bb990c3356eaf5939420e37979412c61ecd2e83a98a0e36739f1d6c73be3e1 +doccontainersize 313712 +doccontainerchecksum 0cc99d67ba7b1d8d27048b33a1f1b9864e35c542ba8683c590598d5da3d4be5d3f93c9a01f339dde6fb0945982e20de19847805d185b4b28aee2c7d86bfc631f +docfiles size=95 RELOC/doc/latex/exam-randomizechoices/README.md details="Package Readme" RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.pdf details="Package documentation" RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices-doc.tex - RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.pdf + RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.pdf details="Example of use" RELOC/doc/latex/exam-randomizechoices/exam-randomizechoices.tex runfiles size=6 RELOC/tex/latex/exam-randomizechoices/exam-randomizechoices.sty catalogue-also exam -catalogue-contact-repository https://bitbucket.org/jesseopdenbrouw/exam-randomizechoices +catalogue-contact-repository https://github.com/jesseopdenbrouw/exam-randomizechoices catalogue-contact-support mailto:J.E.J.opdenBrouw@hhs.nl catalogue-ctan /macros/latex/contrib/exam-randomizechoices catalogue-license lppl1.3 -catalogue-topics exam -catalogue-version 0.1 +catalogue-topics exam random +catalogue-version 0.2 + +name exam-zh +category Package +revision 64434 +shortdesc LaTeX template for Chinese exams +relocated 1 +longdesc Although there are already several excellent exam packages or +longdesc classes like exam and bhcexam, these do not fit the Chinese +longdesc style very well, or they cannot be customized easily for +longdesc Chinese exams of all types, like exams in primary school, +longdesc junior high school, senior high school and even college. This +longdesc is the main reason why this package was created. This package +longdesc provides a class exam-zh.cls and several module packages like +longdesc exam-zh-question.sty and exam-zh-choices.sty, where these +longdesc module packages can be used individually. Using exam-zh you can +longdesc separate the format and the content very well; use the choices +longdesc environment to typeset choice items easily and automatically; +longdesc design the seal line easily; and more (see manual). +containersize 37616 +containerchecksum 72932cbe9de89515f1c50a37c7b027ad3bb99c7495712b145f4e642e99ee732ce5663604175db2966baaa04104e7112881640dde766102ae8b05809ca7d47397 +doccontainersize 1789216 +doccontainerchecksum 26c307026e5bc483d3e978a1e0e75ad5954bdab7f85ee4932df2b201f7d207dfe43658e544ed8d8d89aa0a76df8f6ec6e8d9ede0ec39b956f33ebae9fb66e9c5 +docfiles size=572 + RELOC/doc/xelatex/exam-zh/CHANGELOG.md + RELOC/doc/xelatex/exam-zh/LICENSE + RELOC/doc/xelatex/exam-zh/README.md details="Readme" + RELOC/doc/xelatex/exam-zh/doc/back/about-author.tex + RELOC/doc/xelatex/exam-zh/doc/back/development.tex + RELOC/doc/xelatex/exam-zh/doc/back/main-changelog.tex + RELOC/doc/xelatex/exam-zh/doc/back/package.tex + RELOC/doc/xelatex/exam-zh/doc/body/cover.tex + RELOC/doc/xelatex/exam-zh/doc/body/installation.tex + RELOC/doc/xelatex/exam-zh/doc/body/introduction.tex + RELOC/doc/xelatex/exam-zh/doc/body/usage.tex + RELOC/doc/xelatex/exam-zh/doc/exam-zh-doc-setup.tex + RELOC/doc/xelatex/exam-zh/doc/exam-zh-doc.pdf details="Package documentation" + RELOC/doc/xelatex/exam-zh/doc/exam-zh-doc.tex + RELOC/doc/xelatex/exam-zh/doc/figures/firstpage.pdf + RELOC/doc/xelatex/exam-zh/doc/figures/gitee-main.png + RELOC/doc/xelatex/exam-zh/doc/figures/gitee-release.png + RELOC/doc/xelatex/exam-zh/doc/xdyydoc.cls + RELOC/doc/xelatex/exam-zh/examples/example-multiple.pdf details="Example of use (2)" + RELOC/doc/xelatex/exam-zh/examples/example-multiple.tex + RELOC/doc/xelatex/exam-zh/examples/example-single.pdf details="Example of use (1)" + RELOC/doc/xelatex/exam-zh/examples/example-single.tex +runfiles size=71 + RELOC/tex/latex/exam-zh/exam-zh-chinese-english.sty + RELOC/tex/latex/exam-zh/exam-zh-choices.sty + RELOC/tex/latex/exam-zh/exam-zh-font.sty + RELOC/tex/latex/exam-zh/exam-zh-question.sty + RELOC/tex/latex/exam-zh/exam-zh-symbols.sty + RELOC/tex/latex/exam-zh/exam-zh-textfigure.sty + RELOC/tex/latex/exam-zh/exam-zh.cls +catalogue-contact-bugs https://gitee.com/zepinglee/exam-zh/issues +catalogue-contact-development https://gitee.com/zepinglee/exam-zh/pulls +catalogue-contact-home https://gitee.com/zepinglee/exam-zh +catalogue-contact-repository https://gitee.com/zepinglee/exam-zh/releases +catalogue-contact-support https://gitee.com/zepinglee/exam-zh/issues +catalogue-ctan /macros/xetex/latex/exam-zh +catalogue-license lppl1.3c +catalogue-topics exam chinese expl3 xetex +catalogue-version 0.1.20 name examdesign category Package @@ -111099,15 +115024,6 @@ containerchecksum c93837661d91c71dcf03f1535168feef2ebba47e3ee7f4401d42bf1694006c binfiles arch=armhf-linux size=1 bin/armhf-linux/exceltex -name exceltex.i386-cygwin -category Package -revision 25860 -shortdesc i386-cygwin files of exceltex -containersize 336 -containerchecksum 9c64c4eed8fd3dfe41933929ccf15ec33eea1791f7bf83711a6fc66d7cbeb07d1462e70207b2133c1abbb774d2411ead8cce89e9539d8e306be3c1e19344f7c3 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/exceltex - name exceltex.i386-freebsd category Package revision 25860 @@ -111153,14 +115069,14 @@ containerchecksum 973e0bb743e626ffac75869f19aa3b3fbbe3f3b49e30bed3385b854d675245 binfiles arch=universal-darwin size=1 bin/universal-darwin/exceltex -name exceltex.win32 +name exceltex.windows category Package -revision 25860 -shortdesc win32 files of exceltex -containersize 684 -containerchecksum 46296faec291c923aa61bb93fd1328c221325eb1fb1568b217347418a48995e3c23729a7466d0972a2a294b9b17e8a927fa77ac8b77403989cdff13fadebd4c9 -binfiles arch=win32 size=1 - bin/win32/exceltex.exe +revision 65891 +shortdesc windows files of exceltex +containersize 2308 +containerchecksum ad3f17fff29e7573a85713ccd27f1b4cfb174928931e961fc8ec53eeacf51d672b6a6d04db8982ba1b441af6c3c4da7939ad4d36f06a902c98dac1cbe1e8c530 +binfiles arch=windows size=2 + bin/windows/exceltex.exe name exceltex.x86_64-cygwin category Package @@ -111353,7 +115269,7 @@ catalogue-version 1.1 name exesheet category Package -revision 55916 +revision 65577 shortdesc Typesetting exercise or exam sheets relocated 1 longdesc This package is used for typesetting exercise or exam sheets. @@ -111361,27 +115277,27 @@ longdesc In addition, the exesheet class loads the schooldocs package. longdesc The package provides: macros to mark out exercises and longdesc subparts, specific settings for enumeration lists, environments longdesc for questions and answers, with conditional display, macros for -longdesc marking scheme with detailed comments. -containersize 3636 -containerchecksum 004142161c03b7ab411fb86661d955ed0d401f19e718e353c2df45671042340024695910afd489850617aa28ee63593ddd2e0b5a708d68ee5285a3a4f30516c2 -doccontainersize 178760 -doccontainerchecksum 54e8d5f23dd2cf26440e3b3078b0ecac1f1dbb18d19cc1a0e0b46344aa4dc6e48b7f07f62374a4f58563e3ad924fbd7189295a7747bf54bdaaf2d74a59f7301b -docfiles size=59 +longdesc marking schemes with detailed comments. +containersize 5944 +containerchecksum 955667020291c3ca7417689606734e0d7cf0b8720e704271e46a2e466d8d48c37dee7a675a3dcf2b52b90b87901a5f65294664499b11fee94f0ed2689402bc25 +doccontainersize 215992 +doccontainerchecksum e792d34696ad92f186977672ae7bfdf80fab06c53c30e572359ec6402e1f0190484af52af4525f3414bed81d8ab57bccb3cf28066ff5c57a27ff3404ae0d098c +docfiles size=70 RELOC/doc/latex/exesheet/README.md details="Readme" RELOC/doc/latex/exesheet/exesheet.pdf details="Package documentation" -srccontainersize 16224 -srccontainerchecksum 04a35ecae44e9cd022fb23f7c7950288975fe91ca0b5bfceb640e198bef17e6d8cbb70df493b40cfe97ea3ce9bd6b0bab1f1c5c997217426f6bd6de8c25a8633 -srcfiles size=16 +srccontainersize 22476 +srccontainerchecksum de1b8dc1f333dc693b240139d3379fc57f5fead1cc90b3a3bb96bec1a5e19a7519df5bd30b15ff9f1458e651dd36193e100e327e19eca8848af4dc8a0f1191cf +srcfiles size=24 RELOC/source/latex/exesheet/exesheet.dtx RELOC/source/latex/exesheet/exesheet.ins -runfiles size=5 +runfiles size=9 RELOC/tex/latex/exesheet/exesheet.cls RELOC/tex/latex/exesheet/exesheet.sty catalogue-also schooldocs catalogue-ctan /macros/latex/contrib/exesheet catalogue-license lppl1.3 -catalogue-topics exam exercise -catalogue-version 1.0 +catalogue-topics exam exercise teaching class +catalogue-version 2.0 name exframe category Package @@ -111517,149 +115433,109 @@ catalogue-license lppl catalogue-topics linguistic catalogue-version 5.1b -name expkv -category Package -revision 58853 -shortdesc An expandable key=val implementation -relocated 1 -longdesc expkv is a minimalistic but fast and expandable = -longdesc implementation. It provides two parsing macros: -longdesc \ekvset{}{} which is comparable to keyval's -longdesc \setkeys. \ekvparse{} which can be used -longdesc inside \expanded and expands to {key} and {key}{val} -longdesc for the entries in the . expkv has predictable -longdesc brace-stripping behaviour and handles commas and equal signs -longdesc with category codes 12 and 13 correctly. A key-defining -longdesc interface that is not as rudimentary as the macros provided in -longdesc this package is contained in expkv-def. -containersize 4328 -containerchecksum a5016cf99d20d912378e607b595bbf6f395ce6719212a61c97be5f33abe42ffa6de8469f5d2558303e11c8314dc6b2ca76bdb1eadecf674880947ecceb962f1b -doccontainersize 436532 -doccontainerchecksum 66996742be11a60607b34a33f134b18bc640474c039e713adb0d884970d83bad13424bad587a1f67d86c77ea3eabd15adeff3e2df82150df0811a6d87c29bd24 -docfiles size=110 - RELOC/doc/latex/expkv/README.md details="Readme" - RELOC/doc/latex/expkv/expkv.pdf details="Package documentation" -srccontainersize 23780 -srccontainerchecksum 34bdf0efbadd4ec92eaa185ad6528d76f57c6a2a5038acf5fe6cd791cf6aae4a60cdc3a80e52eabe155594362685461495c8cf05033f6e9b57ed69b44da3ccb5 -srcfiles size=24 - RELOC/source/latex/expkv/expkv.dtx +name expex-acro +category Package +revision 63319 +shortdesc Wrapper for the expex package +relocated 1 +longdesc This is a small wrapper for the expex package, adding ways to +longdesc define, use, and summarize glossing abbreviations. It also +longdesc provides commands to refer to examples, as well as some inline +longdesc formatting commands commonly used in linguistics. +containersize 4540 +containerchecksum e009e9b354c3882416ec28c65d0a4ed48e269ba72ab30c56882eec49fa3a56d3423b0622b6e0af67695dc6069a5e292af4caade54f176e0d84c60b1e9b669e59 +doccontainersize 84368 +doccontainerchecksum c77aae7ef02df11f7a2958bdc7b2b437709d0072005549bdd09c25e11c6cf6eb9761dba6566daa479c1d395c1f8255ed5120fc11fdbef9fe948632391bfdd1dc +docfiles size=23 + RELOC/doc/generic/expex-acro/README.md details="Readme" + RELOC/doc/generic/expex-acro/expex-acro.pdf details="Package documentation" +srccontainersize 7176 +srccontainerchecksum 329e569dc128341b896fe43b3ff7354fe86c97157318841fb1e30b39962d70caf27451f68e1b956a6a8851310843c0071d70fecb423adac7071a7d124843707f +srcfiles size=10 + RELOC/source/generic/expex-acro/expex-acro.dtx + RELOC/source/generic/expex-acro/expex-acro.ins runfiles size=7 - RELOC/tex/generic/expkv/expkv.tex - RELOC/tex/latex/expkv/expkv.sty -catalogue-also expkv-def -catalogue-contact-repository https://github.com/Skillmon/tex_expkv -catalogue-ctan /macros/generic/expkv -catalogue-license lppl1.3c -catalogue-topics keyval -catalogue-version 1.7a + RELOC/tex/generic/expex-acro/expex-acro.sty +catalogue-contact-bugs https://github.com/fmatter/expex-acro/issues +catalogue-contact-repository https://github.com/fmatter/expex-acro/ +catalogue-contact-support https://github.com/fmatter/expex-acro/issues +catalogue-ctan /macros/generic/expex-acro +catalogue-license lppl1.3 +catalogue-topics glossary linguistic +catalogue-version 0.0.2 -name expkv-cs -category Package -revision 58852 -shortdesc Define expandable key=val macros using expkv -relocated 1 -longdesc This package is a frontend to define expandable macros with -longdesc key=val arguments. It provides four syntaxes, each of which -longdesc will define to take a single key=val argument: -longdesc ekvcSplit{=, ...}{} -longdesc ekvcSplitAndForward{=, ...} -longdesc ekvcHash{=, ...}{} -longdesc ekvcHashAndForward{=, ...} Additional -longdesc keys for each might be defined using -longdesc ekvcSecondaryKeys{ =, ...} -longdesc expkv-cs is generic code and only requires expkv for its -longdesc parsing. A LaTeX package expkv-cs.sty is included to play -longdesc nicely on LaTeX's package loading system, but that package is -longdesc not needed and does not provide more functionality than the -longdesc generic code in expkv-cs.tex. Note: In this context, "cs" -longdesc stands for "control sequence" (i.e.: macro). -containersize 4496 -containerchecksum 1977dc2059d91d2448ef7c1fa9030b09509e7646d8c41a3ebac57fd01f76a3bcdf7d92f7abae56449367c568c6b56cc83c954308aff7d033442c8e0d52fa8c44 -doccontainersize 339600 -doccontainerchecksum 0341215d3600f6a6bde223fb3de26020a561036048f87b3a59b4bcb62eb3c57152edd926a60d3faeba91c3be8a4b9c34fd42a5e57db613d8b8f60d857c7c1abb -docfiles size=86 - RELOC/doc/latex/expkv-cs/README.md details="Readme" - RELOC/doc/latex/expkv-cs/expkv-cs.pdf details="Package documentation" -srccontainersize 17988 -srccontainerchecksum 05ae588d280da39c5fa093dd8c8565b66a23f3f7035a9288d79b14eba76cb8b04898cc5866751f1534a9300c0567de0dea28cc57092e1451f1c8e3942877584d -srcfiles size=20 - RELOC/source/latex/expkv-cs/expkv-cs.dtx -runfiles size=8 - RELOC/tex/generic/expkv-cs/expkv-cs.tex - RELOC/tex/latex/expkv-cs/expkv-cs.sty -catalogue-also expkv expkv-def -catalogue-contact-repository https://github.com/Skillmon/tex_expkv-cs -catalogue-ctan /macros/generic/expkv-cs +name expkv-bundle +category Package +revision 65623 +shortdesc An expandable key=val implementation and friends +relocated 1 +longdesc This is a collection of different packages that provide +longdesc key=value functionality in plainTeX, LaTeX, and ConTeXt. At the +longdesc core, the expkv package implements two expandable key=value +longdesc parsers that are somewhat fast and robust against common bugs +longdesc in many key=value implementations (no accidental brace +longdesc stripping, no fragility for active commas or equals signs). +longdesc expkv-cs enables users to define expandable key=value macros in +longdesc a comfortable and straightforward way. expkv-def provides an +longdesc interface to define common key types for expkv similar to the +longdesc key defining interfaces of widespread key=value +longdesc implementations. expkv-opt allows to parse package or class +longdesc options in LaTeX via expkv. expkv-pop is a utility package to +longdesc define prefix oriented parsers that allow a somewhat natural +longdesc formulation (it provides the core functionality for the +longdesc key-defining front ends of both expkv-cs and expkv-def). +containersize 19352 +containerchecksum 969711569e1a27e2b08fb7aa9049413ab55c6799d6e1b6cd1c92a79f82214e36d26608fa0613bc3299385a94919f8f2d0029bd28ff2a649873ba6f5da74d48fc +doccontainersize 752836 +doccontainerchecksum 091fa4f7e8a3b321f02c874160eb92aaca0bbb9b0abb895c74f398c879cf52945ff3468f5f9f4f9d5ada750c47c817be3f9280328e6958ad7de470a11ca340b4 +docfiles size=234 + RELOC/doc/latex/expkv-bundle/README.md details="Readme" + RELOC/doc/latex/expkv-bundle/comparison.tex + RELOC/doc/latex/expkv-bundle/expkv-bundle.pdf details="Package documentation" + RELOC/doc/latex/expkv-bundle/expkv-bundle.tex + RELOC/doc/latex/expkv-bundle/impatient.tex + RELOC/doc/latex/expkv-bundle/introduction.tex + RELOC/doc/latex/expkv-bundle/pkg-cs.tex + RELOC/doc/latex/expkv-bundle/pkg-def.tex + RELOC/doc/latex/expkv-bundle/pkg-main.tex + RELOC/doc/latex/expkv-bundle/pkg-opt.tex + RELOC/doc/latex/expkv-bundle/pkg-pop.tex + RELOC/doc/latex/expkv-bundle/preamble-enverb.tex + RELOC/doc/latex/expkv-bundle/preamble-examples.tex + RELOC/doc/latex/expkv-bundle/preamble-l3doctweaks.tex + RELOC/doc/latex/expkv-bundle/preamble-logos.tex + RELOC/doc/latex/expkv-bundle/preamble-lst.tex + RELOC/doc/latex/expkv-bundle/preamble-noidx.tex + RELOC/doc/latex/expkv-bundle/preamble-prefixes.tex +srccontainersize 48876 +srccontainerchecksum aa9721025f7ccf9091933d95ff411a7fdc763f9d34bc191eb693dd2fdf4e8056e6db929977c89956cd4bbf0804a2c6f1e902b06e26047f55e11e6e2c15fb17ad +srcfiles size=72 + RELOC/source/latex/expkv-bundle/expkv-bundle.ins + RELOC/source/latex/expkv-bundle/expkv-cs.dtx + RELOC/source/latex/expkv-bundle/expkv-def.dtx + RELOC/source/latex/expkv-bundle/expkv-opt-2020-10-10.dtx + RELOC/source/latex/expkv-bundle/expkv-opt.dtx + RELOC/source/latex/expkv-bundle/expkv-pop.dtx + RELOC/source/latex/expkv-bundle/expkv.dtx +runfiles size=45 + RELOC/tex/context/third/expkv-bundle/t-expkv-cs.tex + RELOC/tex/context/third/expkv-bundle/t-expkv-def.tex + RELOC/tex/context/third/expkv-bundle/t-expkv-pop.tex + RELOC/tex/context/third/expkv-bundle/t-expkv.tex + RELOC/tex/generic/expkv-bundle/expkv-cs.tex + RELOC/tex/generic/expkv-bundle/expkv-def.tex + RELOC/tex/generic/expkv-bundle/expkv-pop.tex + RELOC/tex/generic/expkv-bundle/expkv.tex + RELOC/tex/latex/expkv-bundle/expkv-cs.sty + RELOC/tex/latex/expkv-bundle/expkv-def.sty + RELOC/tex/latex/expkv-bundle/expkv-opt-2020-10-10.sty + RELOC/tex/latex/expkv-bundle/expkv-opt.sty + RELOC/tex/latex/expkv-bundle/expkv-pop.sty + RELOC/tex/latex/expkv-bundle/expkv.sty +catalogue-contact-repository https://gitlab.com/islandoftex/texmf/expkv-bundle +catalogue-ctan /macros/generic/expkv-bundle catalogue-license lppl1.3c catalogue-topics keyval macro-supp macro-gen -catalogue-version 0.8 - -name expkv-def -category Package -revision 58814 -shortdesc A key-defining frontend for expkv -relocated 1 -longdesc This package provides a key=val interface to define keys for -longdesc expkv. This is done to provide a simple frontend to define -longdesc different common key types, similar to how keys are defined in -longdesc other well established key=value packages like pgfkeys or -longdesc l3keys. expkv-def is generic code and only requires expkv for -longdesc its parsing. There is a LaTeX package expkv-def.sty included to -longdesc play nicely on LaTeX's package loading system, but that package -longdesc is not needed and does not provide more functionality than the -longdesc generic code in expkv-def.tex. -containersize 5044 -containerchecksum 216cd38b12e51ef0376bbad0de7fb932933b5f67be778dce04e87210f5c591f9c2174d11966de123f0e8a6c4f128ad42cfb8a87947b08e45616109384a4a1025 -doccontainersize 382556 -doccontainerchecksum e3fdc674d1080efd2ffbe8edf59e12a2948b88d4ce240f7f915497b99792d040b5229e531702dfb224fca66e2957a4bb74cda74c3cf4cbcf55289c4c7d842400 -docfiles size=97 - RELOC/doc/latex/expkv-def/README.md details="Readme" - RELOC/doc/latex/expkv-def/expkv-def.pdf details="Package documentation" -srccontainersize 16680 -srccontainerchecksum 7da0f6a1c09019b0bce2d40144e2046f6a2dd1c9496efdf00c3fa14876a10f63cb38702ccc0c0317530ada9b4bbbf3d855d7541acea9b74059ad78b52d319c80 -srcfiles size=19 - RELOC/source/latex/expkv-def/expkv-def.dtx -runfiles size=8 - RELOC/tex/generic/expkv-def/expkv-def.tex - RELOC/tex/latex/expkv-def/expkv-def.sty -catalogue-also expkv -catalogue-contact-repository https://github.com/Skillmon/tex_expkv-def -catalogue-ctan /macros/generic/expkv-def -catalogue-license lppl1.3c -catalogue-topics keyval -catalogue-version 0.8 - -name expkv-opt -category Package -revision 58772 -shortdesc Parse class and package options with expkv -relocated 1 -longdesc This package provides option parsing for classes and packages -longdesc in LaTeX2e based on expkv. Global and local options are parsed -longdesc individually by different commands. The package supports -longdesc key=value options and keys without a value. expkv is the only -longdesc required package. -containersize 2908 -containerchecksum 8b6203aaeb7a2c86c355a67ad02857d5ddacf5e85f04143b0f0225c2fb4a00c1f6e88b6b1c5a872c1c092680ffbfb19148c8a97e8537babe97b969355b63fce0 -doccontainersize 264172 -doccontainerchecksum 12312e21d7d15e9ba60800243cebe4b7ab2ea52a31c37f25446b6fe0ef413e9d33d4066d139b3fca1375dc9cfe357a65ec58e7ef1d3b28472da368dedac3213c -docfiles size=67 - RELOC/doc/generic/expkv-opt/README.md details="Readme" - RELOC/doc/generic/expkv-opt/expkv-opt.pdf details="Package documentation" -srccontainersize 9288 -srccontainerchecksum 4fe886ef42bd181f521015225b92ae15a16d9b2d34001119f49bc417cddead7fccd437b0f4263c1f24525060a7f94f423db38fc8f677212fb330f690eaf9a676 -srcfiles size=17 - RELOC/source/generic/expkv-opt/expkv-opt-2020-10-10.dtx - RELOC/source/generic/expkv-opt/expkv-opt.dtx -runfiles size=6 - RELOC/tex/generic/expkv-opt/expkv-opt-2020-10-10.sty - RELOC/tex/generic/expkv-opt/expkv-opt.sty -catalogue-also expkv -catalogue-contact-repository https://github.com/Skillmon/tex_expkv-opt -catalogue-ctan /macros/generic/expkv-opt -catalogue-license lppl1.3c -catalogue-topics keyval -catalogue-version 0.2 name export category Package @@ -112056,7 +115932,7 @@ catalogue-version 1.0 name factura category Package -revision 56948 +revision 61697 shortdesc Typeset and calculate invoices according to Venezuelan law relocated 1 longdesc 'factura' is the Spanish word for 'invoice', so this is a LaTeX @@ -112066,11 +115942,11 @@ longdesc entity on the Bolivarian Republic of Venezuela). However, its longdesc use is not restricted to Venezuela because all variables and longdesc the displayed text can be redefined by invoking commands or longdesc editing. -containersize 27112 -containerchecksum a4c20cd7b7b2dbc58cd7d1e2c7cdde59710c9363a7e4878825d5aaeffa992bbf471169bdfa01c83aaf3e82aa96ab5fc634676656e2e4e6bff55cf5c4e5407f53 -doccontainersize 784052 -doccontainerchecksum 7822a8f8cef63485f2c707e180c14b67148cbde8f8f1b6d1ec6bd0d9f6e124cf4b63bafc7d01c6ec72c8b5f1edc36f68f9f48b9bac523ceaa093a861a5790f2c -docfiles size=300 +containersize 27540 +containerchecksum 6a90efed09588600991644ba847b16641aef40dd0b989b1944f7b48581d6bae642645fc97023e6cb0f1dde76593086c3007580df25e5997b92593020140dc212 +doccontainersize 999656 +doccontainerchecksum f449e749dc4b61a8a15062fc9e5556414868cf904bb279c5e997402fbd6d7f21f3e8f19c19af5ab4049a1512070d8e74064d4823d56ee7a20ed03f2a2eaa1b91 +docfiles size=372 RELOC/doc/latex/factura/README details="Readme" RELOC/doc/latex/factura/factura-beispiel-rechnung.tex RELOC/doc/latex/factura/factura-ejemplo-aux.tex @@ -112095,10 +115971,11 @@ docfiles size=300 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-ejemplo-reporte4.tex RELOC/doc/latex/factura/factura.pdf details="Package documentation" language="es-ve" -srccontainersize 73520 -srccontainerchecksum 14b3c407a61583fb5cf3813d7ef379fe34415f10b985d7e71dba622dda7b118dbb197e7c8b1cb2cbb45378e38eb333f539c4e95daeb57253983699e3015e4395 -srcfiles size=84 +srccontainersize 76100 +srccontainerchecksum d26418ce7f0c6d95a1019f16406f39e791ba79733632cf5072b041a3ea3b70530d08356590aa5305b9d52fda0d882669d52b1bada9a3d0c458c2888cebe35b9f +srcfiles size=88 RELOC/source/latex/factura/factura.dtx runfiles size=34 RELOC/tex/latex/factura/factura.cls @@ -112106,7 +115983,7 @@ runfiles size=34 catalogue-ctan /macros/latex/contrib/factura catalogue-license lppl1.3c catalogue-topics invoice spanish class -catalogue-version 4.00 +catalogue-version 4.32 name facture category Package @@ -112225,6 +116102,118 @@ catalogue-license lppl catalogue-topics maths catalogue-version 0.1b +name familytree +category Package +revision 63739 +shortdesc Draw family trees +relocated 1 +longdesc Boxes describe individuals; lines connecting boxes represent +longdesc sibling or parent-child relationships, or marriages. Excluding +longdesc the marriage box, you can get a maleline/patrilineal tree, or a +longdesc femaleline/matrilineal tree. For Japanese, the jlreq.cls +longdesc vertical option (tate) is supported. +containersize 6324 +containerchecksum 2f3cbff39c42d0d6414b372c165bbbf3a4dbafa28bf16ca47a89445066480317caedc9b371f9deb348ba986de2c14b71b1820aa731e74d72a4b0b39a413bf9a5 +doccontainersize 932844 +doccontainerchecksum 55f035425d11f070870cdd8ccd555447861823754a91b0a31f54403013a6427197b3ea893fa7e75e63577635a5896288f29ef052c9431aff3f1a9c2038ccdb1a +docfiles size=349 + RELOC/doc/latex/familytree/DEPENDS.txt + RELOC/doc/latex/familytree/LICENSE + RELOC/doc/latex/familytree/README.md details="Readme" + RELOC/doc/latex/familytree/doc-ja/Makefile + RELOC/doc/latex/familytree/doc-ja/familytree-ja.tex + RELOC/doc/latex/familytree/doc-ja/figs/Makefile + RELOC/doc/latex/familytree/doc-ja/figs/fig-ja.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig1Hidetada.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig1Ieyasu.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig1base.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig2Hidetada.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig2base-ja.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig2cfg.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig2ival-ja.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig3Hidetada.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig3Iemitsu.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig3Ietsuna.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig4Hidetada.tex + RELOC/doc/latex/familytree/doc-ja/figs/fig4Ogou.tex + RELOC/doc/latex/familytree/doc-ja/figs/figTY-ja.tex + RELOC/doc/latex/familytree/doc-ja/ft-gens-ja.tex + RELOC/doc/latex/familytree/doc-ja/ft-individual-ja.tex + RELOC/doc/latex/familytree/doc-ja/ft-lib-ja.tex + RELOC/doc/latex/familytree/doc-ja/ft-marriage-ja.tex + RELOC/doc/latex/familytree/doc-ja/ft-sibling-ja.tex + RELOC/doc/latex/familytree/familytree-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/familytree/familytree.pdf details="Package documentation (English)" + RELOC/doc/latex/familytree/figs/Makefile + RELOC/doc/latex/familytree/figs/fig.tex + RELOC/doc/latex/familytree/figs/fig1Robert1.tex + RELOC/doc/latex/familytree/figs/fig1Robert2.tex + RELOC/doc/latex/familytree/figs/fig2base.tex + RELOC/doc/latex/familytree/figs/fig2ival.tex + RELOC/doc/latex/familytree/figs/fig2sis.tex + RELOC/doc/latex/familytree/figs/fig3Lily1.tex + RELOC/doc/latex/familytree/figs/fig3Lily2.tex + RELOC/doc/latex/familytree/figs/fig3Lily3.tex + RELOC/doc/latex/familytree/figs/fig3Lily4.tex + RELOC/doc/latex/familytree/figs/fig3Robert1.tex + RELOC/doc/latex/familytree/figs/fig3Robert2.tex + RELOC/doc/latex/familytree/figs/fig3sis.tex + RELOC/doc/latex/familytree/figs/fig4HenryVIII.tex + RELOC/doc/latex/familytree/figs/fig4Lily1.tex + RELOC/doc/latex/familytree/figs/fig4Lily2.tex + RELOC/doc/latex/familytree/figs/fig4Lily3.tex + RELOC/doc/latex/familytree/figs/fig4Lily4.tex + RELOC/doc/latex/familytree/figs/fig4Robert.tex + RELOC/doc/latex/familytree/fonts.tex + RELOC/doc/latex/familytree/samples/Asai.pdf details="Example of use (1)" language="ja" + RELOC/doc/latex/familytree/samples/Asai/0Ichi.tex + RELOC/doc/latex/familytree/samples/Asai/0sis.tex + RELOC/doc/latex/familytree/samples/Asai/1Chacha.tex + RELOC/doc/latex/familytree/samples/Asai/2Hatsu.tex + RELOC/doc/latex/familytree/samples/Asai/3Gou.tex + RELOC/doc/latex/familytree/samples/Asai/Asai.tex + RELOC/doc/latex/familytree/samples/Asai/Makefile + RELOC/doc/latex/familytree/samples/Crawley.pdf details="Example of use (3)" + RELOC/doc/latex/familytree/samples/Crawley.tex + RELOC/doc/latex/familytree/samples/Makefile + RELOC/doc/latex/familytree/samples/Tokugawa.pdf details="Example of use (2)" language="ja" + RELOC/doc/latex/familytree/samples/Tokugawa/Makefile + RELOC/doc/latex/familytree/samples/Tokugawa/Tokugawa.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-10th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-11th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-12th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-13th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-14th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-15th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-1st.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-2nd.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-3rd.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-4th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-5th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-6th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-7th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-8th.tex + RELOC/doc/latex/familytree/samples/Tokugawa/tg-9th.tex +srccontainersize 15544 +srccontainerchecksum b6f8e0cfa54b13a95b4ab39e8a249d50f5d09fd325ed8acde8b7fca736d6aa05432fe3a40554f3c289a678c1349db542c6f321e8a35f5bd486ce6b0675450911 +srcfiles size=21 + RELOC/source/latex/familytree/Makefile + RELOC/source/latex/familytree/cmd.mk + RELOC/source/latex/familytree/familytree.dtx + RELOC/source/latex/familytree/familytree.ins + RELOC/source/latex/familytree/ft-gens.dtx + RELOC/source/latex/familytree/ft-individual.dtx + RELOC/source/latex/familytree/ft-lib.dtx + RELOC/source/latex/familytree/ft-marriage.dtx + RELOC/source/latex/familytree/ft-sibling.dtx +runfiles size=8 + RELOC/tex/latex/familytree/familytree.sty +catalogue-contact-repository https://github.com/jiro1010/familytree +catalogue-ctan /macros/latex/contrib/familytree +catalogue-license gpl2+ +catalogue-topics genealogy tree diagram +catalogue-version 3.1 + name fancybox category Package revision 18304 @@ -112285,23 +116274,23 @@ catalogue-topics class presentation name fancyhdr category Package -revision 57672 +revision 64977 shortdesc Extensive control of page headers and footers in LaTeX2e relocated 1 longdesc The package provides extensive facilities, both for longdesc constructing headers and footers, and for controlling their use longdesc (for example, at times when LaTeX would automatically change longdesc the heading style in use). -containersize 5112 -containerchecksum 57a60833cb1e75b2c6f3c95484dd36da6a21704732f0309d2d1252824b458dbdf34092411299ccd27a4cd5202b4bdb710b920d96b970c9b58bfdca4889aba820 -doccontainersize 784500 -doccontainerchecksum 6b054701df4a35a4422f0248f6fed134f3321e8fc194b7095f5b0824f6a1d325db23cbe34e973dee061c5a571b76b61618d482f3fa2219911c34c981ac51a1ea -docfiles size=194 +containersize 5388 +containerchecksum 51254df035199653a78cc06c6b62f3d9edf3fa8c78911c0c667d5043376c9d449ce5a412ffb4e9df2bbd7b7459be8bf43f5ff296015ab2b2e146673290211a3f +doccontainersize 844696 +doccontainerchecksum 3c3a1f01fd799b8530634ea917523f6a789f7f1b4dddf16e269ebb78ddaf749fff6ca07984044128147fbf5e568837688906c36c409688150f61490565b1a06e +docfiles size=214 RELOC/doc/latex/fancyhdr/README details="Readme" RELOC/doc/latex/fancyhdr/fancyhdr.pdf details="Users' manual (English)" -srccontainersize 46044 -srccontainerchecksum fa39b94e25a2730164f5218ddf77dabcf1edffa5448533b39a22f50ce45481405bde47f61e1967c8634636f1ad111069b9d68450127f5ff7b1bad66470248efb -srcfiles size=48 +srccontainersize 48120 +srccontainerchecksum 57db137f52c1f93ac8cb70e234985f6290d326f073a30a2eff4806da756126238f36ee87d123dccc71d4f73968e1342006fae63a96604e2b1b858d798f42c287 +srcfiles size=51 RELOC/source/latex/fancyhdr/fancyhdr.dtx RELOC/source/latex/fancyhdr/fancyhdr.ins runfiles size=7 @@ -112314,7 +116303,7 @@ catalogue-contact-repository https://github.com/pietvo/fancyhdr catalogue-ctan /macros/latex/contrib/fancyhdr catalogue-license lppl1.3 catalogue-topics page-hf -catalogue-version 4.0.1 +catalogue-version 4.1 name fancyhdr-it category Package @@ -112427,6 +116416,41 @@ catalogue-license lppl1.3 catalogue-topics decoration catalogue-version 1.3 +name fancyqr +category Package +revision 64182 +shortdesc Fancy QR-Codes with TikZ +relocated 1 +longdesc A simple package to create fancy QR-codes with the help of the +longdesc qrcode package. +containersize 4700 +containerchecksum fe2a8078e8491384ca4cc25fd058433dde3d4d4fdbd5784ad67150169f1ff5eec85c6f2c2ae7efb6aff6e6fc731c18cc4a156d968872b69d58a36bc042825c2c +doccontainersize 248244 +doccontainerchecksum afd49422e17012b84a9ddf9ead15af3eb4f5b0e8291f76b9a672d4a3097d9f390753e0090cb67df94cbd5cc88c45ec2bd67b55594bae9ed4b945ad293e4f07df +docfiles size=65 + RELOC/doc/latex/fancyqr/README.md details="Readme" + RELOC/doc/latex/fancyqr/fancyqr-doc.pdf details="Package documentation" + RELOC/doc/latex/fancyqr/fancyqr-doc.tex + RELOC/doc/latex/fancyqr/qr-example.tex +runfiles size=9 + RELOC/tex/latex/fancyqr/fancyqr-style-blobs.code + RELOC/tex/latex/fancyqr/fancyqr-style-dots.code + RELOC/tex/latex/fancyqr/fancyqr-style-flat.code + RELOC/tex/latex/fancyqr/fancyqr-style-frame.code + RELOC/tex/latex/fancyqr/fancyqr-style-glitch.code + RELOC/tex/latex/fancyqr/fancyqr-style-swift.code + RELOC/tex/latex/fancyqr/fancyqr.sty +catalogue-also qrcode +catalogue-contact-announce https://github.com/EagleoutIce/fancyqr/releases +catalogue-contact-bugs https://github.com/EagleoutIce/fancyqr/issues +catalogue-contact-development https://github.com/EagleoutIce +catalogue-contact-home https://github.com/EagleoutIce/fancyqr +catalogue-contact-repository https://github.com/EagleoutIce/fancyqr +catalogue-ctan /graphics/pgf/contrib/fancyqr +catalogue-license gpl3 +catalogue-topics qrcode pgf-tikz +catalogue-version 1.1 + name fancyref category Package revision 15878 @@ -112578,7 +116602,7 @@ catalogue-version 1.8 name fancyvrb category Package -revision 57488 +revision 65585 shortdesc Sophisticated verbatim text relocated 1 longdesc Flexible handling of verbatim text including: verbatim commands @@ -112587,11 +116611,11 @@ longdesc parameters; ability to define new customized verbatim longdesc environments; save and restore verbatim text and environments; longdesc write and read files in verbatim mode; build "example" longdesc environments (showing both result and verbatim source). -containersize 11720 -containerchecksum cbbdd7c868e6d238b4e82e59f7e8b1917d64ceef2b75d7da7f95b823544b1fa0d05141a248ff449df52f784100d79ac8f609cf4025b9d3db5b24920dec3f0863 -doccontainersize 132784 -doccontainerchecksum 1de32c07f17b316e0ad8704f3c800d75ecab9a6e3cf80ce8c725c126e77353ed9685a1d8e9dcd61295f80b975814ea8c67c11b62fe5bfae71cc2ebeffb440d3e -docfiles size=43 +containersize 11884 +containerchecksum d0233f179706c41c418134d3ccb42efe6234662373834a18e3ab0d80acb5c77327fa95d52cab0172c92217f3c9ae6b974087fae87bf5be3eb82a624a8ec60146 +doccontainersize 179672 +doccontainerchecksum 0b9f84e92c1dd9939b2bf7654afe4d379647ce933f33cddcd512601de9599cef5d58aec5c5bb3ec24f0eb7b3218bbe41c8c8433bd21d6c612191b1cfe4e32c58 +docfiles size=55 RELOC/doc/latex/fancyvrb/Changes RELOC/doc/latex/fancyvrb/README details="Readme" RELOC/doc/latex/fancyvrb/fancyvrb-doc.pdf details="Package documentation" @@ -112604,7 +116628,7 @@ runfiles size=17 catalogue-ctan /macros/latex/contrib/fancyvrb catalogue-license lppl1.3 catalogue-topics verbatim macro-demo -catalogue-version 3.7 +catalogue-version 4.5a name fandol category Package @@ -113651,7 +117675,7 @@ catalogue-version 1.2m name fbox category Package -revision 55627 +revision 62126 shortdesc Extended \fbox macro from standard LaTeX relocated 1 longdesc This package redefines \fbox to allow an optional argument for @@ -113659,11 +117683,11 @@ longdesc different frames. It can be any combination of l)eft, r)ight, longdesc t)op, and b)ottom, for example: \fbox[lt]{foo}. Using uppercase longdesc letters or a combination of lowercase and uppercase is also longdesc possible. -containersize 1776 -containerchecksum 6274daeacfe6901b63e1ea839990a00334ce218cd76d145ddd37e4a414e1fd395d8937bd019455e45bb52b557dd6b2b49cf90d84ca12cff797cdb8162414ea50 -doccontainersize 46048 -doccontainerchecksum 13f85034f1814c814d7c6885650a35d97c483d47fe4e7279ae3872cf155d240084132732f71b38f6a0440d38fc1a2ed33cfa4ecc6d7a4c11b89f4c7d6b482204 -docfiles size=15 +containersize 1856 +containerchecksum 8f4786fd15b1f6f2bf64a00e9367cd346716edef54298bc3334046166a067815112eb85a6277d7165ad5e4e830b1cd1ae149c907842df46196f6d33c2ba6534a +doccontainersize 47640 +doccontainerchecksum e52d356422df18f8e29243b5323cf888c5d0b6f89c3c822613b577509d8dff44bd4d4e1ebd5f7b6c72abbbc782f362ed9162803b572a2d995482db86153678bf +docfiles size=16 RELOC/doc/latex/fbox/CHANGELOG RELOC/doc/latex/fbox/README.md details="Readme" RELOC/doc/latex/fbox/fbox.pdf details="Package documentation" @@ -113673,7 +117697,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/fbox catalogue-license lppl1.3c catalogue-topics boxing -catalogue-version 0.05 +catalogue-version 0.06 name fbs category Package @@ -114264,7 +118288,7 @@ catalogue-version 1.0 name fcolumn category Package -revision 57428 +revision 61855 shortdesc Typesetting financial tables relocated 1 longdesc In financial reports, text and currency amounts are regularly @@ -114272,45 +118296,45 @@ longdesc put in one table, e.g., a year balance or a profit-and-loss longdesc overview. This package provides the settings for automatically longdesc typesetting such columns, including the sum line (preceded by a longdesc rule of the correct width) using the specifier "f". -containersize 4376 -containerchecksum 9bd1bff80e03a080f2d3778c89c19478691cc119361229cd66b776e24260ddadc30ba37fadd5a82c631c14b369a2045960123f5b1f169ec699d9ad627ded3256 -doccontainersize 319588 -doccontainerchecksum fac7e6eae8c6c3d1c6b05eefcca881f08334ef32a10946227f0244c74460f3a66926e6735342dfbf4da80228a0271b10aed8b42fcf66eb72ae41ff74c9f72af4 +containersize 4300 +containerchecksum 17820804588458b805a65eee92f4fff31a73b7285f85546e0006ca6ee374706bc4df9f78eb044d8b79ea26b27b16f3ae38f035d8843906efc0043e1754f6ed3d +doccontainersize 320148 +doccontainerchecksum d7822b79097ec0d58468dbf46e0b2651f97e763c3212102def2c247ff3088dab4088afe2c4aa5d97bd6360b24e38da6e872fd25f9928724f151c03769ce2c219 docfiles size=80 RELOC/doc/latex/fcolumn/README details="Readme" RELOC/doc/latex/fcolumn/fcolumn.pdf details="Package documentation" RELOC/doc/latex/fcolumn/makefile -srccontainersize 21252 -srccontainerchecksum a343431efc38bb19ec033e0791c7b5712324c2dc92837b9d620b6a35d8a6fcec24faf04cb71edfaaf34d8355ad2f40c7ab51b21f4b3ebe1e4e84cef0c2af6487 +srccontainersize 21760 +srccontainerchecksum f3d27931c2586d48fd34fe59b5277c67a3e1a6e25f486a1c3226385b3ada23c655cfbd25b26470ca84b80cd7d9c1d9b72172a0b11e1e0f35899cd3a3608f42ac srcfiles size=18 RELOC/source/latex/fcolumn/fcolumn.dtx RELOC/source/latex/fcolumn/fcolumn.ins -runfiles size=4 +runfiles size=3 RELOC/tex/latex/fcolumn/fcolumn.sty catalogue-ctan /macros/latex/contrib/fcolumn catalogue-license lppl1.3 catalogue-topics table -catalogue-version 1.3 +catalogue-version 1.4.1 name fdsymbol category Package -revision 26722 +revision 61719 shortdesc A maths symbol font relocated 1 longdesc FdSymbol is a maths symbol font, designed as a companion to the longdesc Fedra family by Typotheque, but it might also fit other longdesc contemporary typefaces. execute addMap fdsymbol.map -containersize 920220 -containerchecksum 37f716e9d540d7742f53cd38155141d763d3f8509d1aa1f3cff53ff33c45537c44dc68c9608558021868de3072302d7ac84909db05e8b25813c23ea01c87edcb -doccontainersize 461572 -doccontainerchecksum 7d1f3fd153bc17e65a99ce6a38c8992b2172c1d0b85254fcc7e926b9539928ad403809b8af4355abb1e93196b4e4d5461b587c8ad94d04cca7785c8a334b4ac1 +containersize 920200 +containerchecksum e8b2d08c3e64def77a688dc9d96c0b9da9eaa4c942e571578fa0a7e6dff9eb3910ecc66a7be9334ecd41fdc0023f89d8c98facc2d42cd0095c75d6e1b4da69ac +doccontainersize 461568 +doccontainerchecksum 88efcb300a84b6c214fec37603ea23cb51043af78e1af8aa6e3ce157bab1c8e395e71991c7ea7854051f4706c6b702fe0d48edd76e919a4592e57320b1f77b98 docfiles size=116 RELOC/doc/fonts/fdsymbol/FONTLOG.txt RELOC/doc/fonts/fdsymbol/OFL.txt RELOC/doc/latex/fdsymbol/fdsymbol.pdf details="Package documentation" srccontainersize 17720 -srccontainerchecksum d30403e01b2a33372ce49477ed81fcfcc505b50b1c0eb511dc360d86ec3793ff2ac0c8964448bf2525bec1bc5bb3792ea9729679e2ddd8215948c65bfd44afd7 +srccontainerchecksum 7be26193e05d57fba2a91d57b49cbadaf5594d9ea843b9d9f1ae15608cf7d45e40112aa286bee73ee16da976c7ca7bb7aef5627cf8f0023cded506a493426b31 srcfiles size=38 RELOC/source/latex/fdsymbol/fdsymbol.dtx RELOC/source/latex/fdsymbol/fdsymbol.ins @@ -114413,7 +118437,7 @@ runfiles size=471 RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Medium.pfb RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Regular.pfb RELOC/tex/latex/fdsymbol/fdsymbol.sty -catalogue-contact-repository http://github.com/ummels/fdsymbol +catalogue-contact-repository https://github.com/ummels/fdsymbol catalogue-ctan /fonts/fdsymbol catalogue-license ofl catalogue-topics font font-symbol font-symbol-maths font-type1 font-otf font-mf @@ -114421,33 +118445,33 @@ catalogue-version 0.8 name fduthesis category Package -revision 56216 +revision 66188 shortdesc LaTeX thesis template for Fudan University relocated 1 longdesc This package is a LaTeX thesis template package for Fudan longdesc University. It can make it easy to write theses both in Chinese longdesc and English. -containersize 108324 -containerchecksum c91ca063c73e97947fc36c5d5c33cee2e9e963f9a4c993d209d3c2b0c950ba9a34f928a9e6fb5e3922b2757938651ea8f5eb6014f3878b0ae3f7f9cf4bab91c1 -doccontainersize 1361508 -doccontainerchecksum 1be56ed247773a6a28a17aa0a29446f1e2f63333efbfaa4533fc288a3ef7b2d635c10f36e51d8e1a414cf067155ad9dc109fdd93f5ed83900bc2a5eb5d94e4b4 -docfiles size=381 +containersize 108076 +containerchecksum 0c0d553e25ccdd8cbc956d75828bdc9ac8acb1c20e441da017909f40028cf65f012b1d25fd096751be5034af37e27456a38d59b308a7b0996776485c8b40801b +doccontainersize 1461628 +doccontainerchecksum cb42896bc7738caa2cc2acb37fb7cc0b1b35b2dad5b036a3119fb24eeb68db6343e57be26795f451b1efc42bab3613111b0ee2e4a026aa2149c5c52d290e9847 +docfiles size=399 RELOC/doc/latex/fduthesis/README.md details="Readme" RELOC/doc/latex/fduthesis/fdulogo-example.tex RELOC/doc/latex/fduthesis/fduthesis-code.pdf details="Code Implementation (Chinese)" language="zh" RELOC/doc/latex/fduthesis/fduthesis-cover.tex RELOC/doc/latex/fduthesis/fduthesis-en.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/fduthesis/fduthesis-en.tex - RELOC/doc/latex/fduthesis/fduthesis-template.tex RELOC/doc/latex/fduthesis/fduthesis.pdf details="Package documentation (Chinese)" language="zh" -srccontainersize 116284 -srccontainerchecksum 73b13aa52c6cc5884b6785a995767e7de161071cb98fa6f695947efce7faafc6a61f1cca5c8cd73edca0216555b96c5f7a72b901bda9aac35df34f5d0b4fbe7a -srcfiles size=136 +srccontainersize 116436 +srccontainerchecksum dcab0f55371671e63bbccefb24ee7c12f7efd2b96402dadc2bbf687fb825d9de4ad327d30a983ddd94b1f5c1415d6daf09f66fa6c26e032a0a01da64fa02e8d8 +srcfiles size=192 + RELOC/source/latex/fduthesis/fduthesis-code.dtx RELOC/source/latex/fduthesis/fduthesis-doc.dtx RELOC/source/latex/fduthesis/fduthesis-logo.dtx RELOC/source/latex/fduthesis/fduthesis.dtx RELOC/source/latex/fduthesis/fduthesis.ins -runfiles size=114 +runfiles size=112 RELOC/tex/latex/fduthesis/fdudoc.cls RELOC/tex/latex/fduthesis/fdulogo.sty RELOC/tex/latex/fduthesis/fduthesis-en.cls @@ -114461,8 +118485,8 @@ catalogue-contact-bugs https://github.com/stone-zeng/fduthesis/issues catalogue-contact-repository https://github.com/stone-zeng/fduthesis catalogue-ctan /macros/latex/contrib/fduthesis catalogue-license lppl1.3c -catalogue-topics dissertation class chinese latex3 -catalogue-version 0.7e +catalogue-topics dissertation class doc-templ chinese latex3 +catalogue-version 0.9 name featpost category Package @@ -115357,7 +119381,7 @@ catalogue-version 0.8.8 name fei category Package -revision 55960 +revision 65352 shortdesc Class for academic works at FEI University Center -- Brazil relocated 1 longdesc fei is a class created by graduate students and LaTeX @@ -115373,10 +119397,10 @@ longdesc based in the Brazilian National Standards Organization longdesc (Associacao Brasileira de Normas Tecnicas, ABNT) standards for longdesc the creation of academic works, such as ABNT NBR 10520:2002 longdesc (Citations) and ABNT NBR 6023:2002 (Bibliographic References). -containersize 6580 -containerchecksum 6f99d70485a3ecae3cef9af7e545cc15f5a45ae0f84266fe6d2d84f7ae58bc3b7e3138e28f42a577362176a996df05a2c12375aa4f58f14297619ab2f32a3cf7 -doccontainersize 289892 -doccontainerchecksum 822502abad87da654f0cad81ec87bd6e1be92abeba74066a7f96da0455a80697855b783a75e30e3c1b0d740db9fd2880d25ae1668da9802843677c84dd3da424 +containersize 8108 +containerchecksum 2be4e4d83c5a02bfd43eed59741e07868e0e22489bb087f91de0681dbb04e999cff2bb9441b87937c3e2cfa60b7d4a1641dce4529a5aabc15df12d70e22e521a +doccontainersize 441996 +doccontainerchecksum adb30683e075801f74cd87bad431c880ffe410fdba738b197932af4f0efdb1c6530ddd66c6c860c1097b4f9e37601a1a9c744a1b573396c29898f130988174ea docfiles size=125 RELOC/doc/latex/fei/README details="Readme" RELOC/doc/latex/fei/README.txt @@ -115384,20 +119408,20 @@ docfiles size=125 RELOC/doc/latex/fei/fei-template.tex RELOC/doc/latex/fei/fei.pdf details="Package documentation" language="pt-br" RELOC/doc/latex/fei/referencias.bib -srccontainersize 29796 -srccontainerchecksum d72b86ba677a71bf5dca8c2b39ae8bd202544a3320e93f776477e6977aeb3fe3d47f8362467b95ee6667fd46dff3801164380808693b16fa9065a31d694df7ac -srcfiles size=28 +srccontainersize 31128 +srccontainerchecksum 4241c9b50e339c450ca124285205d6fd7d2d2f73cab829c0248204012420f5ccd0615a1d1986cdec8efa15b2c8b8ed54ffd1d815f22ad0f9aa8e05b9ad485c07 +srcfiles size=30 RELOC/source/latex/fei/fei.dtx -runfiles size=6 +runfiles size=7 RELOC/tex/latex/fei/fei.cls -catalogue-contact-bugs http://github.com/douglasrizzo/Classe-Latex-FEI/issues -catalogue-contact-home http://douglasrizzo.com.br/Classe-Latex-FEI/ -catalogue-contact-repository http://github.com/douglasrizzo/Classe-Latex-FEI/ +catalogue-contact-bugs https://github.com/douglasrizzo/Classe-Latex-FEI/issues +catalogue-contact-home https://douglasrizzo.com.br/Classe-Latex-FEI/ +catalogue-contact-repository https://github.com/douglasrizzo/Classe-Latex-FEI/ catalogue-contact-support https://groups.google.com/forum/#!forum/grupo-latex-fei catalogue-ctan /macros/latex/contrib/fei catalogue-license lppl1.3c -catalogue-topics dissertation class portuguese-br -catalogue-version 4.10.1 +catalogue-topics dissertation class doc-templ std-conform portuguese-br +catalogue-version 4.10.4 name fenixpar category Package @@ -115761,7 +119785,7 @@ catalogue-version 1.0b name feyn category Package -revision 55777 +revision 63945 shortdesc A font for in-text Feynman diagrams relocated 1 longdesc Feyn may be used to produce relatively simple Feynman diagrams @@ -115770,11 +119794,11 @@ longdesc is good at drawing large diagrams for figures, the present longdesc package and its fonts allow diagrams within equations or text, longdesc at a matching size. The fonts are distributed as Metafont longdesc source, and macros for their use are also provided. -containersize 13492 -containerchecksum 445d071bf76adb0c8ed89d294eff3129a1903624a1ca4dbfd5d83016edaccd5e2f8758273d8ef382696e8d3c9270526eb77ad2021b51f6df7e91c5c7a138d2c9 -doccontainersize 516512 -doccontainerchecksum e3202a822e034c179f399856ee57836950fb0e0cc0f664cf7155b6d5110762fbe26da596ea0e9fafe4bacce330ee57bfea1bec1ba2d16d4aad01dc868b00c2c9 -docfiles size=150 +containersize 13508 +containerchecksum 30e3ca5e633d040fe2eaa88463a8c9fa6004b86c4ae264af9b8a9a3bf55f71f7e1eb21e656f2fa194ebc751648f411a094fe40fc6a2cade1fc31aa586da1317c +doccontainersize 534244 +doccontainerchecksum b420c19b69caf39cfa0e54bcfc90f291d9ddbed21d771669bf82a0fb04b4099fd494d2287144655366af7d0ea9594a74d64867a31754278ab1b97ffa507dfc5c +docfiles size=155 RELOC/doc/fonts/feyn/LICENCE RELOC/doc/fonts/feyn/README details="Package Readme" RELOC/doc/fonts/feyn/VERSION @@ -115791,9 +119815,9 @@ docfiles size=150 RELOC/doc/fonts/feyn/sample-two-loop.png RELOC/doc/fonts/feyn/sample-vertex.png RELOC/doc/fonts/feyn/style.css -srccontainersize 16212 -srccontainerchecksum 64fbe2a9ce848bc5d862d5c74a59d007300c3e83b97b26f8ce8bbbda53931e563f6a1f8d406a43b6473564e5ebf4afcbf2c753fb763dd1be59ddafb8329e6e75 -srcfiles size=16 +srccontainersize 16364 +srccontainerchecksum 578f093c588cd577ff696dd052ba969769f418dffa3b2450b71efeefd885105efcdc7be4ef9693bedc911940d2707eb084857f5db9197e74040211a9952d2209 +srcfiles size=17 RELOC/source/fonts/feyn/feyn.drv RELOC/source/fonts/feyn/feyn.dtx RELOC/source/fonts/feyn/feyn.ins @@ -115831,11 +119855,12 @@ runfiles size=42 RELOC/fonts/tfm/public/feyn/feynx18.tfm RELOC/fonts/tfm/public/feyn/feynx24.tfm RELOC/tex/latex/feyn/feyn.sty -catalogue-contact-home http://purl.org/nxg/dist/feyn +catalogue-contact-home https://purl.org/nxg/dist/feyn +catalogue-contact-repository https://heptapod.host/nxg/feyn catalogue-ctan /fonts/feyn -catalogue-license bsd +catalogue-license bsd2 catalogue-topics graphics-use physics font font-mf -catalogue-version 0.4.1 +catalogue-version 0.4.3 name feynmf category Package @@ -115916,6 +119941,43 @@ catalogue-license lppl1.3 catalogue-topics graphics-inline catalogue-version 1.1 +name ffcode +category Package +revision 65170 +shortdesc Fixed-font code blocks formatted nicely +relocated 1 +longdesc This LaTeX package helps you write source code in your academic +longdesc papers and make it looks neat. It uses minted and tcolorbox, +longdesc configuring them the right way, to ensure that code fragments +longdesc and code blocks look nicer. +depend environ +depend microtype +depend minted +depend pgf +depend tcolorbox +depend xkeyval +containersize 2180 +containerchecksum e76c0605b8a074d1827a73a3ba4e9fae40ade590b01e90ee10593c4484e0a534cebb556bf49389fa03355424910cc349b73fbae2827153fc717be69d38d007e0 +doccontainersize 545808 +doccontainerchecksum c5302e1113f5d1a05517c4877efd710bc6931bac62157001ea540f0b40388c95202dd457fb1362f8b30dc313a48d9742fcd5c6c6a7e5f3404755a3eafa01041a +docfiles size=144 + RELOC/doc/latex/ffcode/DEPENDS.txt + RELOC/doc/latex/ffcode/LICENSE.txt + RELOC/doc/latex/ffcode/README.md details="Readme" + RELOC/doc/latex/ffcode/ffcode.pdf details="Package documentation" +srccontainersize 5016 +srccontainerchecksum 2863c642dddba771bc4507ed2f0e4a3c4ff12ab4291fb397a2e0f8859776bbba7442a85fefe87d655d0c6236b5e40878ba29cfa19f71870f6932f38247657f5f +srcfiles size=5 + RELOC/source/latex/ffcode/ffcode.dtx + RELOC/source/latex/ffcode/ffcode.ins +runfiles size=1 + RELOC/tex/latex/ffcode/ffcode.sty +catalogue-contact-repository https://github.com/yegor256/ffcode +catalogue-ctan /macros/latex/contrib/ffcode +catalogue-license mit +catalogue-topics listing verbatim line-nos +catalogue-version 0.8.0 + name ffslides category Package revision 38895 @@ -115995,147 +120057,34 @@ catalogue-version 1.25 name fgruler category Package -revision 56854 +revision 63721 shortdesc Draw rulers on the foreground or in the text relocated 1 -longdesc The fgruler is an abbreviation for the foreground ruler. This -longdesc package draws a horizontal and a vertical ruler on the -longdesc foreground of every (or a given) page at absolute position. In -longdesc this way, you can check the page layout dimensions. Besides, -longdesc you can draw various rulers in the text, too. The fgruler -longdesc package requires the services of the following packages: -longdesc kvoptions, etoolbox, xcolor, graphicx, eso-pic. -containersize 5256 -containerchecksum 7567024373e5043986da5e5ab1953e207ab801284f7cbac38bdd200ed607da239a37480132d3b54ae52ff4cb409414b8dfb3e998a5a70bd49161ac99f6cc99e9 -doccontainersize 418096 -doccontainerchecksum dae1aa1a479d95ae31efcadfd3c48b28b57b10e844968550b4772ba863b6889f8d4e7c4cfe928ffdb903db611f1ecd0b4319b0be6429895f671a695fe9362fb0 -docfiles size=104 +longdesc This package draws horizontal and vertical rulers on the +longdesc foreground of every (or the current) page at absolute +longdesc positions. In this way, you can check the page layout +longdesc dimensions. You can also draw various rulers in the text. The +longdesc fgruler package requires the services of the following +longdesc packages: kvoptions, etoolbox, xcolor, graphicx, eso-pic. +containersize 5980 +containerchecksum d30678e5f84074c9844845bcb527333a7040b9f9e787f8aad92103eaf880e89bb1747946cd91fb9b8229c9a8fcc8e2ff81c3dc69804d37de3be1b1f6a4cc5a00 +doccontainersize 471864 +doccontainerchecksum 74747c385452b4d996f70413a88920d59b4ac8f4f61c92516e4e60f36cce68c8ce9bd72f621aa52698679aa10542bb2118088058c489230e7c2081b17d8f987f +docfiles size=120 RELOC/doc/latex/fgruler/README details="Readme" RELOC/doc/latex/fgruler/fgruler.pdf details="Package documentation" -srccontainersize 10652 -srccontainerchecksum bdca41dc44cd030d9548091521d7d92986e693280977edf7a2a6f804857602e6904c85f4639e9a18eb993c89a95b1217ee35cde50e6d30b238de3f46d332c6ae -srcfiles size=22 +srccontainersize 12024 +srccontainerchecksum 3d7017aac6c2d07cd73166b1aab65452b11a97a7e34516c75c1a8e5123a3587eb90b0455846b82084a6e997340624c1a1053fa079bfb202a558ff4dc08398cf4 +srcfiles size=26 RELOC/source/latex/fgruler/fgruler.dtx RELOC/source/latex/fgruler/fgruler.ins -runfiles size=13 +runfiles size=15 RELOC/tex/latex/fgruler/fgruler.sty catalogue-also ruler catalogue-ctan /macros/latex/contrib/fgruler catalogue-license lppl1.3 catalogue-topics misc-support -catalogue-version 1.3 - -name fibeamer -category Package -revision 53146 -shortdesc Beamer theme for thesis defense presentations at Masaryk University (Brno, Czech Republic) -relocated 1 -longdesc A beamer theme for the typesetting of thesis defense -longdesc presentations at the Masaryk University (Brno, Czech Republic). -longdesc The theme has been designed for easy extensibility by color -longdesc themes of other academic institutions. -containersize 411844 -containerchecksum 7f10c002cd04dc2624f84bd2da11a9331639a33a5a9642a7ebac96f28a4af3fa177c2088557bd966c4250d561a8b8813b042e7fe9c456e5b41629094dffd5c64 -doccontainersize 2361592 -doccontainerchecksum 1121bc8f0f7c226bee621cd0bb5f75a12cdb8dfb64540debc6b25a24a34b939d4dbac04cea3cdd97372be5b355fe028a0354bdf2393160b577f10fc31c2ae9fa -docfiles size=1074 - RELOC/doc/latex/fibeamer/fibeamer.pdf details="Package documentation" - RELOC/doc/latex/fibeamer/guide/mu/econ.pdf - RELOC/doc/latex/fibeamer/guide/mu/fi.pdf - RELOC/doc/latex/fibeamer/guide/mu/fsps.pdf - RELOC/doc/latex/fibeamer/guide/mu/fss.pdf - RELOC/doc/latex/fibeamer/guide/mu/law.pdf - RELOC/doc/latex/fibeamer/guide/mu/med.pdf - RELOC/doc/latex/fibeamer/guide/mu/ped.pdf - RELOC/doc/latex/fibeamer/guide/mu/phil.pdf - RELOC/doc/latex/fibeamer/guide/mu/sci.pdf -srccontainersize 12796 -srccontainerchecksum 50993fb045581fc04281266856a7bba7c2b0c9f4052a01543139a2ee4a0b376490aa5ecf0f4a3ad7a66b48e0bb4817e297dfa6002a27b57d6b5d2f819cc8b093 -srcfiles size=40 - RELOC/source/latex/fibeamer/LICENSE.tex - RELOC/source/latex/fibeamer/fibeamer.dtx - RELOC/source/latex/fibeamer/fibeamer.ins - RELOC/source/latex/fibeamer/theme/mu/base.dtx - RELOC/source/latex/fibeamer/theme/mu/base.ins - RELOC/source/latex/fibeamer/theme/mu/econ.dtx - RELOC/source/latex/fibeamer/theme/mu/econ.ins - RELOC/source/latex/fibeamer/theme/mu/fi.dtx - RELOC/source/latex/fibeamer/theme/mu/fi.ins - RELOC/source/latex/fibeamer/theme/mu/fsps.dtx - RELOC/source/latex/fibeamer/theme/mu/fsps.ins - RELOC/source/latex/fibeamer/theme/mu/fss.dtx - RELOC/source/latex/fibeamer/theme/mu/fss.ins - RELOC/source/latex/fibeamer/theme/mu/law.dtx - RELOC/source/latex/fibeamer/theme/mu/law.ins - RELOC/source/latex/fibeamer/theme/mu/med.dtx - RELOC/source/latex/fibeamer/theme/mu/med.ins - RELOC/source/latex/fibeamer/theme/mu/ped.dtx - RELOC/source/latex/fibeamer/theme/mu/ped.ins - RELOC/source/latex/fibeamer/theme/mu/phil.dtx - RELOC/source/latex/fibeamer/theme/mu/phil.ins - RELOC/source/latex/fibeamer/theme/mu/sci.dtx - RELOC/source/latex/fibeamer/theme/mu/sci.ins -runfiles size=338 - RELOC/tex/latex/fibeamer/beamerthemefibeamer.sty - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-econ-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fi-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fsps-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-fss-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-law-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-med-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-ped-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-phil-english.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-czech.pdf - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.eps - RELOC/tex/latex/fibeamer/logo/mu/fibeamer-mu-sci-english.pdf - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-econ.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fi.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fsps.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-fss.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-law.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-med.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-ped.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-phil.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu-sci.sty - RELOC/tex/latex/fibeamer/theme/mu/beamercolorthemefibeamer-mu.sty - RELOC/tex/latex/fibeamer/theme/mu/beamerfontthemefibeamer-mu.sty - RELOC/tex/latex/fibeamer/theme/mu/beamerinnerthemefibeamer-mu.sty - RELOC/tex/latex/fibeamer/theme/mu/beamerouterthemefibeamer-mu.sty -catalogue-contact-announce https://github.com/Witiko/fibeamer/releases -catalogue-contact-bugs https://github.com/Witiko/fibeamer/issues -catalogue-contact-development https://github.com/Witiko/fibeamer/pulls -catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fibeamer -catalogue-contact-repository https://github.com/Witiko/fibeamer -catalogue-contact-support https://github.com/Witiko/fibeamer/issues -catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/fibeamer -catalogue-license lppl1.3 -catalogue-topics dissertation presentation -catalogue-version 1.1.8 +catalogue-version 1.5 name fifinddo-info category Package @@ -116285,15 +120234,6 @@ containerchecksum dd7d625dfde454734a94014fa06edb7deb876dd1861bfa077828ac24c62a1a binfiles arch=armhf-linux size=1 bin/armhf-linux/fig4latex -name fig4latex.i386-cygwin -category Package -revision 14752 -shortdesc i386-cygwin files of fig4latex -containersize 340 -containerchecksum d48c579b21b3ab54b1f37655881ea5c3b260f3c30afb2fceab0a9fecd4ceeebe0c5e872e29b4e0f6ff9468f0be20ae76a3494922a7b2411a3ecb9d4a54178ab7 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/fig4latex - name fig4latex.i386-freebsd category Package revision 16472 @@ -116339,14 +120279,14 @@ containerchecksum 1bda9f9fda7df2412b72f2fee04cef705e7a95d56912b6be5f681cbc84548b binfiles arch=universal-darwin size=1 bin/universal-darwin/fig4latex -name fig4latex.win32 +name fig4latex.windows category Package -revision 15469 -shortdesc win32 files of fig4latex -containersize 684 -containerchecksum e315ab83991ef5b086c32e1593ad0cd190bbb78eb12ef228da13e6d2f0af49859c3b2892ef33fbcf3b58fc57beadb30e231667d07898db867fd3525c2bcfb9ca -binfiles arch=win32 size=1 - bin/win32/fig4latex.exe +revision 65891 +shortdesc windows files of fig4latex +containersize 2304 +containerchecksum 3c4e85cbc6c4097f638aea889d7952b1c8e9f858c199f1f8f62e5016c345d6fb46cf4b60baf993bf28fc2f0ef2a9c3dc4698a9fbc7dc6f611a8204d96b1c1f5e +binfiles arch=windows size=2 + bin/windows/fig4latex.exe name fig4latex.x86_64-cygwin category Package @@ -116463,7 +120403,7 @@ catalogue-topics bibtex-util name figchild category Package -revision 58964 +revision 62945 shortdesc Pictures for creating children's activities relocated 1 longdesc This package was created with the aim of facilitating the work @@ -116473,23 +120413,24 @@ longdesc the Computational Mathematics discipline offered at the Federal longdesc University of Vicosa -- Campus UFV -- Florestal by professor longdesc Fernando de Souza Bastos. It makes use of the TikZ and xcolor longdesc packages. -containersize 49072 -containerchecksum 53fc2af05bc5f68d1fd14ac999c0ce957feb7e545596089ee06acc64ffc43102bf374957a805664a5443ffee420a9afaee2f912fdf5f6b52442b36ebc1f70879 -doccontainersize 625944 -doccontainerchecksum 87c6e78b3989d5bd9d0b527c79f9c69783319b4dc02754ede8e027e187f8a3c59d3194b23d6a5d8510fe6c3e129c0df1bad272b6d667d292b7510f3c1baa904e -docfiles size=168 +containersize 295868 +containerchecksum 74775cfe7d7ef14acdb22bc6c60aa4db512183441828025c8e68f30e9e95c4e5a1492c99a31f459035956a0c50de054bbdb664f9cc68b73879d96a4ead5f2dd9 +doccontainersize 1000520 +doccontainerchecksum 68cc451292f68cb433ff567252837c438938a8d16c4e48987abdd76bcafc9dca9482ad29c540ec24cfdd66f55da801b9c3e052615e805de055c944df82f3971c +docfiles size=279 RELOC/doc/latex/figchild/README.md details="Readme" RELOC/doc/latex/figchild/capa.tex RELOC/doc/latex/figchild/figchild.pdf details="Package documentation" - RELOC/doc/latex/figchild/figchild.tex RELOC/doc/latex/figchild/latexmkrc -runfiles size=90 + RELOC/doc/latex/figchild/main.tex +runfiles size=508 RELOC/tex/latex/figchild/figchild.sty +catalogue-contact-home https://github.com/fsbmat-ufv/figchild catalogue-contact-repository https://github.com/fsbmat-ufv/figchild catalogue-ctan /graphics/pgf/contrib/figchild catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz teaching amusements -catalogue-version 1.1.1 +catalogue-version 2.1.1 name figflow category Package @@ -116515,6 +120456,51 @@ catalogue-ctan /macros/plain/contrib/figflow catalogue-license other-free catalogue-topics text-flow +name figput +category Package +revision 63957 +shortdesc Create interactive figures in LaTeX +relocated 1 +longdesc FigPut allows figures to be specified using JavaScript. The +longdesc resulting document can be viewed as a static PDF, as usual, or +longdesc the document can be viewed in a web-browser, in which case the +longdesc figures are interactive. A variety of interactive widgets are +longdesc included. +containersize 8268 +containerchecksum 4ea2768b272f9be270f1ce3edf02cd73b8d8c792d8b92c20a8d38b05649e43e8441d6e439f0e1be8ca906c5b9a47db1d6a48ff7ee136f53dc4ae09cc6172d46a +doccontainersize 861544 +doccontainerchecksum 54c8428c9b0bd267389a9bf25b005b31365fc9451d0e3ca4632e52a07af9c02a24aa1c7c9b5f19eac196f4dbfad9db91647cfef82c301496ec4be58d9e2360cd +docfiles size=571 + RELOC/doc/latex/figput/LICENSE.txt + RELOC/doc/latex/figput/README.md details="Readme" + RELOC/doc/latex/figput/example/example.pdf + RELOC/doc/latex/figput/example/example.tex + RELOC/doc/latex/figput/example/externalcode.js + RELOC/doc/latex/figput/figput-manual/figput-manual.pdf details="Package documentation" + RELOC/doc/latex/figput/figput-manual/figput-manual.tex + RELOC/doc/latex/figput/javascript/development/layout.ts + RELOC/doc/latex/figput/javascript/development/main.ts + RELOC/doc/latex/figput/javascript/development/tikz.ts + RELOC/doc/latex/figput/javascript/development/widgets.ts + RELOC/doc/latex/figput/javascript/figput.html + RELOC/doc/latex/figput/javascript/layout.js + RELOC/doc/latex/figput/javascript/main.js + RELOC/doc/latex/figput/javascript/pdf.js + RELOC/doc/latex/figput/javascript/pdf.worker.min.js + RELOC/doc/latex/figput/javascript/pdfjs_license.txt + RELOC/doc/latex/figput/javascript/release/figput.html + RELOC/doc/latex/figput/javascript/release/figput.js + RELOC/doc/latex/figput/javascript/server.py + RELOC/doc/latex/figput/javascript/tikz.js + RELOC/doc/latex/figput/javascript/widgets.js +runfiles size=7 + RELOC/tex/latex/figput/figput.sty +catalogue-contact-repository https://github.com/rsfairman/figput +catalogue-ctan /graphics/figput +catalogue-license cc-by-sa-4 +catalogue-topics graphics callback cgi-latex expl3 pgf-tikz +catalogue-version 0.90 + name figsize category Package revision 18784 @@ -116662,7 +120648,7 @@ catalogue-topics file-mgmt date-time name filehook category Package -revision 56479 +revision 64822 shortdesc Hooks for input files relocated 1 longdesc The package provides several file hooks (AtBegin, AtEnd, ...) @@ -116671,15 +120657,16 @@ longdesc General hooks for all such files (e.g. all \included ones) and longdesc file specific hooks only used for named files are provided; two longdesc hooks are provided for the end of \included files -- one longdesc before, and one after the final \clearpage. -containersize 4964 -containerchecksum 4591384d78ddb17648bc3bbbbad2b0e7f693a250e36b8cfb110233d909151352c337ff15ac0f53803a01ca2b59b85c7fcf4405cb67e04df1a0bd3bbcf18a6f07 -doccontainersize 298772 -doccontainerchecksum 98e77091e4b46fe53276621f17dd015d88254e94340a33d7591c97ed031865fd85cab22cbd1e2ad6cf388362899b88cd529f8b8cfba13dcafd5a1790e815340e -docfiles size=76 - RELOC/doc/latex/filehook/README details="Readme" +containersize 4944 +containerchecksum caa1f239fc8300f2925e94e860df3ac76637e337d57f599446c6b5f059fbba026fa9e440f4272b7e37ca9921731cddcbdd403c16e42b9c49e302452dc940fa27 +doccontainersize 308660 +doccontainerchecksum 7c86e322cbdade28c03b65580c992adff2fa112ae65b28c1485419c457a7f930614337eee70bb6cc2e9c386dab866e4e657c0b8d394c975c6af3a8b2fe651cec +docfiles size=80 + RELOC/doc/latex/filehook/DEPENDS.txt + RELOC/doc/latex/filehook/README.txt details="Readme" RELOC/doc/latex/filehook/filehook.pdf details="Package documentation" -srccontainersize 14300 -srccontainerchecksum ffb2ecd14c42307450179b1cf83244754f42b805afd37ac4003fb758bb5c975b0166b81540ec1fa3a34df42795af152b7325cd29208e8db3dc287fde1b70774f +srccontainersize 14340 +srccontainerchecksum c9683da993eb365559e7d47e6c81235065e9ac74c9c334e9e1d9c040c9cde0ae135301b83e49c27307a6f3bc529c24d8f597dbdf377256d03c8d149e69c03bfd srcfiles size=22 RELOC/source/latex/filehook/filehook.dtx RELOC/source/latex/filehook/filehook.ins @@ -116692,13 +120679,13 @@ runfiles size=14 RELOC/tex/latex/filehook/filehook-scrlfile.sty RELOC/tex/latex/filehook/filehook.sty RELOC/tex/latex/filehook/pgf-filehook.sty -catalogue-contact-bugs https://sourceforge.net/p/filehook/tickets/ -catalogue-contact-home https://sourceforge.net/p/filehook/ -catalogue-contact-repository https://sourceforge.net/p/filehook/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/filehook/issues +catalogue-contact-home https://github.com/MartinScharrer/filehook +catalogue-contact-repository https://github.com/MartinScharrer/filehook.git catalogue-ctan /macros/latex/contrib/filehook -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics macro-supp -catalogue-version 0.8a +catalogue-version 0.8b name fileinfo category Package @@ -116740,7 +120727,7 @@ catalogue-version 0.81a name filemod category Package -revision 56291 +revision 64967 shortdesc Provide file modification times, and compare them relocated 1 longdesc The package provides macros to read and compare the @@ -116752,10 +120739,10 @@ longdesc and returns the value to the user. The package will also work longdesc for DVI output with recent versions of the LaTeX compiler which longdesc uses pdfLaTeX in DVI mode. The functionality is provided by longdesc purely expandable macros or by faster but non-expandable ones. -containersize 3572 -containerchecksum c927f700796e4cdb9d7d274fcb390b4e1c0c04ac95df8a8586eea3c8c6aee3daddeb9f6a53b3df103887a7635288f7ae316d09dc34603fe3a37f74bf45f85ef8 +containersize 3564 +containerchecksum e346e795df32a3b0cec0232da9c2b190bede65d905035a758b949c9cf01219e0880ec2ce2e83201f8dd9dcc77a98b29df2b463edf8c44cb1c220a7efe7c9f24a doccontainersize 277228 -doccontainerchecksum 96587219fdb00fcaea6d838b58b5a04169b17cdec1c937378255f7dfb48e687a205f08a20dc6654ab5565a68649ef67b796653479f95a4c022596626ddc5b16d +doccontainerchecksum 3e8c5a26b5c2fc8a6f713f006d091c0be719bde7bbe237e49d2496032289d67624fbad1319db421a0471a60aa8c11c97bbc60127053904725e53e75a2ae6fd7a docfiles size=70 RELOC/doc/latex/filemod/README details="Readme" RELOC/doc/latex/filemod/filemod.pdf details="Package documentation" @@ -116765,9 +120752,9 @@ runfiles size=8 RELOC/tex/latex/filemod/filemod-expmin.sty RELOC/tex/latex/filemod/filemod.sty catalogue-also stampinclude -catalogue-contact-bugs https://sourceforge.net/p/filemod/tickets/ -catalogue-contact-home https://sourceforge.net/p/filemod/ -catalogue-contact-repository https://sourceforge.net/p/filemod/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/filemod/issues +catalogue-contact-home https://github.com/MartinScharrer/filemod +catalogue-contact-repository https://github.com/MartinScharrer/filemod.git catalogue-ctan /macros/latex/contrib/filemod catalogue-license lppl1.3 catalogue-topics doc-tool @@ -116850,15 +120837,6 @@ containerchecksum a396ef376bf92f19fce3c762412d996e1e700db96efafb7bd08f1024fce050 binfiles arch=armhf-linux size=1 bin/armhf-linux/findhyph -name findhyph.i386-cygwin -category Package -revision 14758 -shortdesc i386-cygwin files of findhyph -containersize 336 -containerchecksum 84580e2190b70519e13296832ee77107d21fc0590c5b1de05bb0269c72383de942e495204e9165ac7d08edea94ff7fe9f2a33db9817ec7ab08fda441c721810d -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/findhyph - name findhyph.i386-freebsd category Package revision 16472 @@ -116904,14 +120882,14 @@ containerchecksum 3862c1d6a3563211ba6194baa9d9f646c65a147bca1fe26d78deffa8661864 binfiles arch=universal-darwin size=1 bin/universal-darwin/findhyph -name findhyph.win32 +name findhyph.windows category Package -revision 15469 -shortdesc win32 files of findhyph -containersize 680 -containerchecksum b0af01afa3cb5fb84b3a7577bd8b83b6c26c6c702cd343087db8c25c3a8a63ec57782d4073131b8da6b37562e43a1ae4459db0173dd31acdc634a4c8953cca78 -binfiles arch=win32 size=1 - bin/win32/findhyph.exe +revision 65891 +shortdesc windows files of findhyph +containersize 2304 +containerchecksum 54d1c17c112f1869b8ed70ce5067b8c93dc61c1f60ae4bad21c876b7a05858905a5b744d1d2854f3d67d02ef6b137689769dbb7944a625c24283fc29c19aba61 +binfiles arch=windows size=2 + bin/windows/findhyph.exe name findhyph.x86_64-cygwin category Package @@ -117030,20 +121008,20 @@ catalogue-version 0.5 name fira category Package -revision 55437 +revision 64422 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, ... +longdesc support for the Fira Sans and Fira Mono families of fonts +longdesc designed by Erik Spiekermann and Ralph du Carrois of Carrois +longdesc Type Design. Fira Sans is available in eleven weights with +longdesc corresponding italics: light, regular, medium, bold, ... execute addMap fira.map -containersize 15529816 -containerchecksum 4e5ea926b9431b460b82130eb73a59c2cfb97146b30544f656f07f2cfcec0c5178dd4905829baac35ae05f49830d73074ae49d8f594bca03360f0ee6079a6876 -doccontainersize 1303884 -doccontainerchecksum 933810948368f3847cb7a3ad9f72724a82a995418caca97ebaf49569351d192a37357b502adf0aa0c7ff624994505c677ff8b5ed3b8739fd6bd2949dbafc85d5 -docfiles size=331 +containersize 15529824 +containerchecksum 5faf4cdf1690f9d6c690cddbef813c8973517309144495016ef5d61ff5e5df9ce73f70b262d1c36ba72fa92f93c7a1d550b96acc4965d7ab88efce21ee20d682 +doccontainersize 2147384 +doccontainerchecksum b97fa7ebaefc3a057eae0a3fd14f43fad1a9789af0b2c43ca8a0c6969610b1786e24508b1367002527841a8095486d6eea180c59d95b1df904df846c943b88f2 +docfiles size=538 RELOC/doc/fonts/fira/Fira_4_3_Change_Log.pdf RELOC/doc/fonts/fira/LICENSE RELOC/doc/fonts/fira/README details="Readme" @@ -119260,16 +123238,16 @@ catalogue-version 0.3.4 name firamath-otf category Package -revision 50732 +revision 65561 shortdesc Use OpenType math font Fira Math relocated 1 longdesc The package offers XeTeX/LuaTeX support for the Sans Serif longdesc OpenType Fira Math Font. -containersize 1336 -containerchecksum dbbb13d184e2a407bcbc2681bc9c5ff0e83017141792e956013254dcc50815f5b913bb2e40d6c09421883db774e9ce5e5ed17f6602ee902f485069fbd570936e -doccontainersize 124236 -doccontainerchecksum 699e10d44b1e36505e872070c2799e1191e995ca6ae26058e7d069c96500a9c0914614750f6af076abd3a30b281409613a846c314a64bef047b3e313b0a4cc97 -docfiles size=42 +containersize 1352 +containerchecksum 32e5eb8a0343b189afea8763a24b74b41adee9b1d5d21aa7e184eef2b402e88023145eb29aac3c7fccd56d6fd0fcffc06c77f937fc28ef69852ee87b1fa1650a +doccontainersize 117276 +doccontainerchecksum fc3b91faa9acffc0f104faa90925f6907107dca2b6c1a5800285b00bf734e85f2463fe262d2ad4f123608017abea64052463eaed6ddee11230b1462261377072 +docfiles size=38 RELOC/doc/fonts/firamath-otf/Changes RELOC/doc/fonts/firamath-otf/README.md details="Readme" RELOC/doc/fonts/firamath-otf/firamath-otf-doc.pdf details="Package documentation" @@ -119280,7 +123258,7 @@ catalogue-also firamath catalogue-ctan /fonts/firamath-otf catalogue-license lppl1.3 catalogue-topics font-use font-otf font-sans font-maths -catalogue-version 0.02a +catalogue-version 0.03a name first-latex-doc category Package @@ -119315,7 +123293,7 @@ catalogue-topics tut-latex name firstaid category Package -revision 58440 +revision 64892 catalogue latex-firstaid shortdesc First aid for external LaTeX files and packages that need updating relocated 1 @@ -119325,27 +123303,68 @@ longdesc LaTeX kernel that are not yet reflected in the package's or longdesc class's code. The file latex2e-first-aid-for-external-files.ltx longdesc provided by this package is meant to be loaded during format longdesc generation and not by the user. -containersize 2160 -containerchecksum 31e74a644d0b2a9b0f659207195cc39b7b0cdfd44c878caf541869a114ca90990637c04b3da74f9f49e2dbcb30863030fe901a67b200d1aa4a9892ff41defe15 -doccontainersize 205324 -doccontainerchecksum 368484714a5b45d47fe6b86c8025175d034842cc6e64665f574040bdd89cb42b02a739edca6806d3585a484cf55ff083616c0a210a9ca65916477ddbd4678b5f -docfiles size=53 +containersize 3424 +containerchecksum 52a53933022700a5713b750c3ca34afda096592da577febc7442807290a8e04da79affe217a0e10cf8ee483779e771b6f610a88b45df52822ea54acd3a45b4c7 +doccontainersize 262428 +doccontainerchecksum da564e169ae9169b828c76f1c7299dcc44fd2588d776f8fde039429c4f9a5e18ac133c6aab61076b2a58705d31f07f63f0734e66edf5c229c6d2bfeb64eda76b +docfiles size=69 RELOC/doc/latex/firstaid/README.md details="Readme" RELOC/doc/latex/firstaid/changes.txt RELOC/doc/latex/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" -srccontainersize 5884 -srccontainerchecksum 9c1c4ad607d2c9896504637c8efd0f7dcbb1916e7f671ead11552fbb6bcf0f8af216dc40a0ac771d3e804a02f65e12067082d001f96506d8d5435d93ff513ba9 -srcfiles size=5 +srccontainersize 7960 +srccontainerchecksum eb776d9961f9969a780dec2c1a1eee6f9900fd66458acf4c60f84eed94d0dc0bdf5441a2c343d0052cab9fbe8d4f643d010970c908aaa0c8041fd285cf1f87f3 +srcfiles size=7 RELOC/source/latex/firstaid/firstaid.ins RELOC/source/latex/firstaid/latex2e-first-aid-for-external-files.dtx -runfiles size=2 +runfiles size=4 + RELOC/tex/latex/firstaid/everysel-ltx.sty RELOC/tex/latex/firstaid/filehook-ltx.sty RELOC/tex/latex/firstaid/latex2e-first-aid-for-external-files.ltx catalogue-contact-home https://www.latex-project.org catalogue-ctan /macros/latex/required/firstaid catalogue-license lppl1.3c catalogue-topics format bugfix -catalogue-version 1.0j +catalogue-version 1.0u + +name fistrum +category Package +revision 66461 +shortdesc Access to 150 paragraphs of Lorem Fistrum very dummy text +relocated 1 +longdesc Fistrum is a LaTeX package forked from lipsum that produces +longdesc dummy text for use in documents and examples. The paragraphs +longdesc were taken with permission from https://www.chiquitoipsum.com/. +longdesc Fistrum es un paquete de LaTeX derivado de lipsum que produce +longdesc texto de ejemplo para usarlo en documentos y ejemplos. Los +longdesc parrafos se han tomado con permiso de +longdesc https://www.chiquitoipsum.com/. +containersize 3984 +containerchecksum 7e0a92affb0fbe23b9d08e525f6e2878e3bfc10133fc95b41bbdeebca5c02c988b2c4033e50969212b5889dda4f9e2f043dd65688ea33d81b5bd138d49af5777 +doccontainersize 655340 +doccontainerchecksum 15b50530a68fbb2b330aa972640fd85207dedc0b0e640f830940cd712a16fb001e60b59c22ff81890ed810a7aba9f1e150deb3f91ad1fc4bf52680d9d1735342 +docfiles size=272 + RELOC/doc/latex/fistrum/CHANGELOG.md + RELOC/doc/latex/fistrum/DEPENDS.txt + RELOC/doc/latex/fistrum/README.md details="Readme" + RELOC/doc/latex/fistrum/fistrum-es.ftd.tex + RELOC/doc/latex/fistrum/fistrum-es.txt + RELOC/doc/latex/fistrum/fistrum-la.ftd.tex + RELOC/doc/latex/fistrum/fistrum-la.txt + RELOC/doc/latex/fistrum/fistrum.pdf details="Package documentation" +srccontainersize 15556 +srccontainerchecksum 88fcdc104594951933fee790a45efde2cfe3665673b2589bd4f2972f15e8dc1f91b85c5e04dde3866688fc2b76d2692caa2f4dfd3353ca9416002126be408cda +srcfiles size=15 + RELOC/source/latex/fistrum/fistrum.dtx + RELOC/source/latex/fistrum/fistrum.ins +runfiles size=4 + RELOC/tex/latex/fistrum/fistrum.sty +catalogue-contact-announce https://github.com/daviddavo/fistrum/releases +catalogue-contact-bugs https://github.com/daviddavo/fistrum/issues +catalogue-contact-repository https://github.com/daviddavo/fistrum +catalogue-ctan /macros/latex/contrib/fistrum +catalogue-license lppl1.3 +catalogue-topics dummy-gen macro-supp expl3 spanish +catalogue-version 0.1 name fitbox category Package @@ -119388,32 +123407,23 @@ catalogue-version 1.02 name fithesis category Package -revision 54483 +revision 64135 shortdesc Thesis class and template for Masaryk University (Brno, Czech Republic) relocated 1 longdesc A document class for the typesetting of theses at the Masaryk longdesc University (Brno, Czech Republic). The class has been designed longdesc for easy extensibility by style and locale files of other longdesc academic institutions. -containersize 617716 -containerchecksum fda3b077f21307d883b6808fe69b7dafc7d9f44c60ce48bcf10ef14e22c03b4c91b73b9fb626a2c1a8171aa3b66defcc926705c70ab5a264c8c64b847c66ab06 -doccontainersize 2530820 -doccontainerchecksum 7445bd2d5065db20e62a4454fa4f7bd39bbf7df0681ca5e73af06e21b9121b72c32ce8903f453f5c24e7c82f987726f8c9d3a54f40b44f9e6c5c6e419be9cdbc -docfiles size=1306 +containersize 792156 +containerchecksum faa49ccde90ef577cc5cb7bbc36c79670d8d9184b9857f40b17bd64101b24babcef7b62541a42f8483578be29a16d23e1436238242a3162d42aa8f491d426ebd +doccontainersize 730120 +doccontainerchecksum efda2236343ecfd0e655bb31d6a73109fe5b91bd17b158bdc4709175dbabc7798d712cede1b4ef62082cb8dfbf5634eaefdcb230bb92643bf5c3eeb15de91c85 +docfiles size=189 RELOC/doc/latex/fithesis/README.md details="Readme" RELOC/doc/latex/fithesis/fithesis.pdf details="Package documentation" - RELOC/doc/latex/fithesis/guide/mu/econ.pdf - RELOC/doc/latex/fithesis/guide/mu/fi.pdf - RELOC/doc/latex/fithesis/guide/mu/fsps.pdf - RELOC/doc/latex/fithesis/guide/mu/fss.pdf - RELOC/doc/latex/fithesis/guide/mu/law.pdf - RELOC/doc/latex/fithesis/guide/mu/med.pdf - RELOC/doc/latex/fithesis/guide/mu/ped.pdf - RELOC/doc/latex/fithesis/guide/mu/phil.pdf - RELOC/doc/latex/fithesis/guide/mu/sci.pdf -srccontainersize 44104 -srccontainerchecksum 087fd64585722b8fac089f7e7a07bd500f712a6fd8044164f1b26293cf18ee58c4f32f48072d08fab3c93af7d85aa5ac40ef7c86ab5c5081a862247675f7a02b -srcfiles size=89 +srccontainersize 45332 +srccontainerchecksum 9a9c6b61571761a4837e2ebbf5b584d5de268e1ac26fbb2950c4b13b5afecc59f2613d3e90ac9532b7c4ae0a5d5bacd198bbb813c7bc2302f850e9f9462c5de6 +srcfiles size=93 RELOC/source/latex/fithesis/LICENSE.tex RELOC/source/latex/fithesis/VERSION.tex RELOC/source/latex/fithesis/fithesis.dtx @@ -119442,14 +123452,17 @@ srcfiles size=89 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/pharm.dtx + RELOC/source/latex/fithesis/style/mu/pharm.ins RELOC/source/latex/fithesis/style/mu/phil.dtx RELOC/source/latex/fithesis/style/mu/phil.ins RELOC/source/latex/fithesis/style/mu/sci.dtx RELOC/source/latex/fithesis/style/mu/sci.ins -runfiles size=597 +runfiles size=880 RELOC/tex/latex/fithesis/fithesis.cls RELOC/tex/latex/fithesis/fithesis2.cls RELOC/tex/latex/fithesis/fithesis3.cls + RELOC/tex/latex/fithesis/fithesis4.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 @@ -119477,6 +123490,9 @@ runfiles size=597 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/pharm/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/pharm/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/pharm/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 @@ -119485,69 +123501,202 @@ runfiles size=597 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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-slovak.pdf RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.pdf RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.pdf - RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color_.eps - RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color__.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-slovak.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-pharm-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm-slovak.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-pharm.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-slovak.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-czech-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-czech-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-czech.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-czech.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-english-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-english-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-english.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-english.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-slovak-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-slovak-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-slovak.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-slovak.pdf RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.eps RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.pdf RELOC/tex/latex/fithesis/style/fithesis-base.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-10.clo - RELOC/tex/latex/fithesis/style/mu/fithesis-11.clo - RELOC/tex/latex/fithesis/style/mu/fithesis-12.clo - RELOC/tex/latex/fithesis/style/mu/fithesis-base.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-econ.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-fi.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-fsps.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-fss.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-law.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-med.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-ped.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-phil.sty - RELOC/tex/latex/fithesis/style/mu/fithesis-sci.sty -catalogue-contact-announce https://github.com/Witiko/fithesis3/releases -catalogue-contact-bugs https://github.com/Witiko/fithesis3/issues -catalogue-contact-development https://github.com/Witiko/fithesis3/pulls -catalogue-contact-home https://www.fi.muni.cz/lemma/projekty/fithesis3/#fithesis -catalogue-contact-repository https://github.com/Witiko/fithesis3 + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-10.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-11.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-12.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-base.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-econ.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-fi.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-fsps.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-fss.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-law.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-med.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-ped.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-pharm.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-phil.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-mu-sci.sty +catalogue-contact-bugs https://gitlab.fi.muni.cz/external_relations/document_templates/fithesis/-/issues +catalogue-contact-home https://external_relations.pages.fi.muni.cz/document_templates/fithesis/ +catalogue-contact-repository https://gitlab.fi.muni.cz/external_relations/document_templates/fithesis catalogue-ctan /macros/latex/contrib/fithesis catalogue-license lppl1.3 catalogue-topics dissertation class -catalogue-version 0.3.51 +catalogue-version 1.1.0 name fix2col category Package @@ -119613,6 +123762,39 @@ catalogue-license lppl1.3c catalogue-topics font-supp-maths catalogue-version 1.1 +name fixdif +category Package +revision 66015 +shortdesc Macros for typesetting differential operators +relocated 1 +longdesc This package redefines the \d command in LaTeX and provides an +longdesc interface to define new commands for differential operators. It +longdesc is compatible with pdfTeX, XeTeX and LuaTeX, and can also be +longdesc used with the unicode-math package. +containersize 1984 +containerchecksum 022490c8c757612273d60e6e6830178a2b1c1f5c73babfaea612d8be012b95ca2d52a0e2520b4aac46a76c358e8ab65592193b45e5e936e0b118c717a182e71d +doccontainersize 249688 +doccontainerchecksum 2d8e66e54d16632834d02b5f3832776317221c08c5357b796e783d8213e845178d332a413f294265414027d1de77955ee964e9c0ca33f61ad67e3f1b5ba6e766 +docfiles size=66 + RELOC/doc/latex/fixdif/README.md details="Readme" + RELOC/doc/latex/fixdif/fixdif-zh-cn.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/latex/fixdif/fixdif-zh-cn.tex + RELOC/doc/latex/fixdif/fixdif.pdf details="Package documentation (English)" +srccontainersize 6872 +srccontainerchecksum 1f7a51455619012f1d6e5d168b9d89c5d7b2e6e7d4672053d6a2fc0f6217f8453ff1dafcac33480f8da4f2862d613a8880976220783e112e0c34bb4f39cf1625 +srcfiles size=7 + RELOC/source/latex/fixdif/fixdif.dtx + RELOC/source/latex/fixdif/fixdif.ins +runfiles size=2 + RELOC/tex/latex/fixdif/fixdif.sty +catalogue-contact-bugs https://github.com/AlphaZTX/fixdif/issues +catalogue-contact-development https://www.ctan.org/author/zhang-tx +catalogue-contact-repository https://github.com/AlphaZTX/fixdif +catalogue-ctan /macros/latex/contrib/fixdif +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 2.0b + name fixfoot category Package revision 17131 @@ -119643,15 +123825,15 @@ catalogue-version 0.3a name fixjfm category Package -revision 47113 +revision 63967 shortdesc Fix JFM (for *pTeX) relocated 1 longdesc This package fixes several bugs in the JFM format. Both LaTeX longdesc and plain TeX are supported. -containersize 2400 -containerchecksum 5ed8db53c1757c4ab6f14e763f9e58a76e5f8c594c30c1d1fd4d7c9a49d65da90d72650c88375806997d0f268b1a75215bf6969f45e45ef3a2127c422415bf16 +containersize 2384 +containerchecksum afa050087607d8eb5f36923d6ec72daff7f1bab0154edd08900486fee152068ebbfe97d87ae29cca7d8f4048e0c6091933d0b71d4a0266950828881b55aa6b59 doccontainersize 286260 -doccontainerchecksum 5de4126f1f5215fc8132e0449048bd66dc73d8a5cff460d7873205f3cb55c2f8069870d9ffc794d5c173a52acccb5bdbe45b34189fbdd40509bfcdeed804153c +doccontainerchecksum d1c39e4d0dcc1a8eb5510e3306d68f0bae6067d358bfb458127ff8f5d5223576f270cf628bf8ca2c3e8322d6cf1b52b936db0c2a431e4258591057a7f50513d9 docfiles size=74 RELOC/doc/generic/fixjfm/README details="Readme" RELOC/doc/generic/fixjfm/fixjfm-doc.pdf details="Package documentation" @@ -119660,7 +123842,7 @@ runfiles size=3 RELOC/tex/generic/fixjfm/fixjfm.sty catalogue-also bxjaprnind catalogue-contact-repository https://github.com/Man-Ting-Fang/fixjfm -catalogue-ctan /macros/generic/fixjfm +catalogue-ctan /macros/jptex/generic/fixjfm catalogue-license knuth catalogue-topics macro-supp chinese japanese catalogue-version 0.8 @@ -119723,9 +123905,48 @@ catalogue-license lppl1.3 catalogue-topics catalan french italian catalogue-version 0.4 +name fixmath +category Package +revision 64648 +shortdesc Make maths comply with ISO 31-0:1992 to ISO 31-13:1992 +relocated 1 +longdesc LaTeX's default style of typesetting mathematics does not +longdesc comply with the International Standards ISO 31-0:1992 to ISO +longdesc 31-13:1992 which require that uppercase Greek letters always be +longdesc typset upright, as opposed to italic (even though they usually +longdesc represent variables) and allow for typsetting of variables in a +longdesc boldface italic style (even though the required fonts are +longdesc available). This package ensures that uppercase Greek be +longdesc typeset in italic style, that upright $\Delta$ and $\Omega$ +longdesc symbols are available through the commands \upDelta and +longdesc \upOmega; and provides a new math alphabet \mathbold for +longdesc boldface italic letters, including Greek. This package used to +longdesc be part of the was bundle, but has now become a package in its +longdesc own right. +containersize 1496 +containerchecksum e3aaa53832094173eccbb1cb3aa2f2876227bf9b1c023d2b6f18e7df49d97bddefd450a53ba717fe54ad7cd8e8f36452ff54dc7cb67bf518037fadc6eccf40c8 +doccontainersize 188924 +doccontainerchecksum 5fa1aa4433ded289ce899004eaa165117a77ad6b4846624bc8c4ff5e203af701f1065683466998a5502ea13983bc9092ca3958059c047957e41555c753c1b11f +docfiles size=52 + RELOC/doc/latex/fixmath/LICENSE + RELOC/doc/latex/fixmath/README details="Bundle readme" + RELOC/doc/latex/fixmath/fixmath.pdf details="Package documentation" +srccontainersize 2604 +srccontainerchecksum 7f2e12e15c0d23b9803f6cf97c52327e6f111e8e14d39b78d7519c81df5946c1db18c2fa93c84fc3734bd2f9fe722ae716781d5ebb502c56546f9007decfe5b7 +srcfiles size=3 + RELOC/source/latex/fixmath/fixmath.dtx + RELOC/source/latex/fixmath/fixmath.ins +runfiles size=1 + RELOC/tex/latex/fixmath/fixmath.sty +catalogue-contact-repository https://gitlab.com/kjhtex/fixmath +catalogue-ctan /macros/latex/contrib/fixmath +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.9.1 + name fixme category Package -revision 49591 +revision 63708 shortdesc Collaborative annotation tool for LaTeX relocated 1 longdesc FiXme is a collaborative annotation tool for LaTeX documents. @@ -119743,10 +123964,10 @@ longdesc possibility to register multiple authors, to reference longdesc annotations by listing and indexing etc. FiXme is extensible, longdesc giving you the possibility to create new layouts or even longdesc complete "themes", and also comes with support for AUCTeX. -containersize 8676 -containerchecksum fbfc3a79dbaed48f79dfd59efba58eb3d6c4e3c3f6716b0910cc0ee7e6b0913f345f4a05bcbc5d9943437d072cf3008615ab573725c4e7b4d7d716bd90dd8d07 -doccontainersize 351972 -doccontainerchecksum 78f64f31246acc6c153c0f0ec618a3a1c473ea3a5cce47af57ee65603d2064b64a3a506cd18332f1686b41768dcfdb10a9f9cc000dbe5cb476c8c4c61283dae9 +containersize 8656 +containerchecksum a5fc18a3560f5908521fdaec0f3e20f25f124e7ded9de72b36d81ad573726af7399d223c70dd11a8ea50e47e05e3549b785ee5c64215fcc1bf6a5a9ab2e5769e +doccontainersize 351976 +doccontainerchecksum 89036e19b4c7ce8d9266ce6dcc5bb449c5de11ec74ce13b5208eaeb81054330ba53a0b01370b7e21d1d3d7486ddb7343f4cab946e1c3cb1387965b5e434e5b08 docfiles size=108 RELOC/doc/latex/fixme/NEWS RELOC/doc/latex/fixme/README.md details="Package Readme" @@ -119755,7 +123976,7 @@ docfiles size=108 RELOC/doc/latex/fixme/fixme.pdf details="Package documentation" RELOC/doc/latex/fixme/header.inc srccontainersize 35036 -srccontainerchecksum f5c1f64772f76f43fc64e1395804f155587d677356bdebb6bc2e3bf6961b38004463e8e83b2c3b5406e32f329c2fc84083e0f0db90875fa55319f85cfe4223c5 +srccontainerchecksum 061d7bc9a8813accf165c98f9d386b3ead721a7a893ae55ee0bc895f6623e4fbc52988c5933ca71223094fdbfc6f7ab71ab18a2df00715299158d58668117e22 srcfiles size=44 RELOC/source/latex/fixme/fixme.dtx RELOC/source/latex/fixme/fixme.ins @@ -119782,7 +124003,7 @@ catalogue-contact-home https://www.lrde.epita.fr/~didier/software/latex.php#fixm catalogue-contact-repository https://github.com/didierverna/fixme catalogue-ctan /macros/latex/contrib/fixme catalogue-license lppl1.3 -catalogue-topics editorial +catalogue-topics editorial notes catalogue-version 4.5 name fixmetodonotes @@ -119833,7 +124054,7 @@ catalogue-topics geometry name fiziko category Package -revision 54512 +revision 61944 shortdesc A MetaPost library for physics textbook illustrations relocated 1 longdesc This MetaPost library was initially written to automate some @@ -119843,22 +124064,22 @@ longdesc variable width, shaded spheres, and tubes of different kinds, longdesc which can be used to produce images of a variety of objects. longdesc The library also contains functions to draw some objects longdesc constructed from these primitives. -containersize 20888 -containerchecksum d76d828bbb7d54596c7e3127d2d2c92f9da7572892d5b0a5b139536e9d765875555bb831aeafc67e56e4f2234462aed14aaabfff2685b30bb53bce89cadf0e90 -doccontainersize 4136056 -doccontainerchecksum c04516bcdaa607d01a558f1f30729792365c9aeb4bbd116f4523f398c261a6fbc01eaeb64b5fa6ba008c38a8f1f2e4c9fae8de40bb4255e35bc80059cd50d23a -docfiles size=1123 +containersize 22700 +containerchecksum 4ad67bab5850464deee4a3a29fd7c02d011eca50dbba03dafc5059ee54aa434bfae5c173e6022fef4cb761f2c760b6dd5aff403b33b7ddc8e632961ce4f8dccf +doccontainersize 4800008 +doccontainerchecksum e719652f76de617201a2562ac5b3a04df1577ace8fbcbf10b874326a85cc0ebe3549b0b427f39cfbeda0f34f7f3fe4ab6458ad1df2613572260fa77cb8601dcc +docfiles size=1314 RELOC/doc/metapost/fiziko/README details="Readme" RELOC/doc/metapost/fiziko/fiziko.pdf details="Package documentation" RELOC/doc/metapost/fiziko/fiziko.tex -runfiles size=23 +runfiles size=26 RELOC/metapost/fiziko/fiziko.mp catalogue-contact-bugs https://github.com/jemmybutton/fiziko/issues catalogue-contact-repository https://github.com/jemmybutton/fiziko catalogue-ctan /graphics/metapost/contrib/macros/fiziko catalogue-license gpl3+ cc-by-sa-4 catalogue-topics physics graphics graphics-mpost -catalogue-version 0.1.3 +catalogue-version 0.2.0 name fjodor category Package @@ -119975,7 +124196,7 @@ catalogue-version 0.10 name flashcards category Package -revision 19667 +revision 62104 shortdesc A class for typesetting flashcards relocated 1 longdesc The FlashCards class provides for the typesetting of flash @@ -119983,17 +124204,17 @@ longdesc cards. By flash card, we mean a two sided card which has a longdesc prompt or a question on one side and the response or the answer longdesc on the flip (back) side. Flash cards come in many sizes longdesc depending on the nature of the information they contain. -containersize 3512 -containerchecksum ea1d530296c2b3e11645bbf09b4776394cf1725db5f30f23297818fa68b5a8d1d860d5873755d1be010c8d7a3d01567d878f3a12490fced35f6f825034f1c9f6 -doccontainersize 132668 -doccontainerchecksum f42cef1b5a093861818d03f2df9cc5029546a1bb9b01a4349b815fa26d7320bbb9d596adceadd0583dfee7bf7bf8a011c8296ec06058717a61ddce10baf19e53 -docfiles size=43 +containersize 3488 +containerchecksum 0c336f9609fbb81bc373fad344a44b8159c7d142d2a62de795dc7f1b7a8aadba563ab7a4788164058c19ab6f6c9835af1f1a0dc275377f51aca9520b3a8a2327 +doccontainersize 255288 +doccontainerchecksum 6ef79cf1f91bb8dc7b9b3785da64af582891d1536962ea9ac9232bfb8fcb156e7c33319970793fc6776db2224ac991796a93a287aa3eed2e0cd0ea741c6ef9cc +docfiles size=68 RELOC/doc/latex/flashcards/COPYING RELOC/doc/latex/flashcards/README details="Package Readme" RELOC/doc/latex/flashcards/flashcards.pdf details="Package documentation" RELOC/doc/latex/flashcards/samplecards.tex -srccontainersize 7560 -srccontainerchecksum c9d90cbb0c0fa854a6d187ffafb20cefad24549083c166a5088dfa05c3240869996bd16097ddf74adcdd658ab953d39021c896eda94dd7ad426e5bd972d78c73 +srccontainersize 7580 +srccontainerchecksum 9d428930e3993de9d2fd407a78b19d2b851d9e7faa88a5d5c0bb44ec014432518fcd4ebb6cf68e5b3a0693cb4ab7bbee0068f431e0ca169423ecb5959ec233e9 srcfiles size=8 RELOC/source/latex/flashcards/flashcards.dtx RELOC/source/latex/flashcards/flashcards.ins @@ -120003,9 +124224,9 @@ runfiles size=6 RELOC/tex/latex/flashcards/flashcards.cls catalogue-also flashcard ecards catalogue-ctan /macros/latex/contrib/flashcards -catalogue-license gpl +catalogue-license gpl2+ catalogue-topics card-flash -catalogue-version 1.0.1 +catalogue-version 1.0.2 name flashmovie category Package @@ -120043,6 +124264,41 @@ catalogue-license lppl1.3 catalogue-topics graphics-motion catalogue-version 0.4 +name flexipage +category Package +revision 64572 +shortdesc Flexible page geometry with marginalia +relocated 1 +longdesc The package flexipage allows easy page layout if marginalia is +longdesc required. Mid document changes are possible such as: new +longdesc marginal width, full width text, and landscape text without +longdesc marginal. Partners well with the package sidenotesplus. The +longdesc package also aids the layout for book printing, allowing for +longdesc binding corrections and adding page bleed, if required. +containersize 3912 +containerchecksum 729d90296c3a84fa003f5c237dde47e3ba3417254bb408c279f135a37b701b70dc02ca4bbc0ba39165415c5cd759f273a639a796b683b1d21f0ab3127f45c1f6 +doccontainersize 292592 +doccontainerchecksum 537ac79dddd97d4212083016b44f1db9461c4e4d337e226015ccd57101b5cf0f6519315f108715019fa09d06d24ec0700b542b57be08063719b31ebf2173667e +docfiles size=83 + RELOC/doc/latex/flexipage/README.txt details="Readme" + RELOC/doc/latex/flexipage/Test-flexipage.pdf + RELOC/doc/latex/flexipage/Test-flexipage.tex + RELOC/doc/latex/flexipage/flexipage.pdf details="Package documentation" +srccontainersize 8172 +srccontainerchecksum 89a47b7afce5f17e8e9a5277b49f28d113e92995d5a35f6a000ec7718fccb2bb5351a71e55cb3cf96cb639b22cbbd99e6383b6a65d6291736529d8f5c2b7b65d +srcfiles size=8 + RELOC/source/latex/flexipage/flexipage.dtx + RELOC/source/latex/flexipage/flexipage.ins +runfiles size=4 + RELOC/tex/latex/flexipage/flexipage.sty +catalogue-contact-bugs https://github.com/anton-vrba/flexipage +catalogue-contact-home https://github.com/anton-vrba/flexipage +catalogue-contact-repository https://github.com/anton-vrba/flexipage +catalogue-ctan /macros/latex/contrib/flexipage +catalogue-license lppl1.3c +catalogue-topics marginal +catalogue-version 1.01 + name flipbook category Package revision 25584 @@ -120712,30 +124968,31 @@ catalogue-topics footnote name fnpct category Package -revision 57508 +revision 62248 shortdesc Manage footnote marks' interaction with punctuation relocated 1 longdesc The package moves footnote marks after following punctuation longdesc (comma or full stop), and adjusts kerning as appropriate. As a longdesc side effect, a change to the handling of multiple footnotes is longdesc provided. -containersize 9400 -containerchecksum cb423c17f6d4a58f400c0d59920aabeb33abffd70338d158e63fd4cff90e1e6ba43c1480320470851cccebeb66ae523cdd2c7362b33a0570aa20759605ef0be8 -doccontainersize 481820 -doccontainerchecksum 99c51fd746c61028079a6fe9fa8a29cc2cc141a9d3b81f9e2fd33e35af02cdfcf7f7833e8125d0e03a2d39ea6518ba5c0eb589548f5ed35a9fee7ee4b4e3e5a9 -docfiles size=127 +containersize 14748 +containerchecksum 35b1fc24b9cc8ae46104ed20023bc3e1a5a83cfb857cdedc3e6631b8ac4315a79dec012793174fe239898460ef0247f2726b3a7c0f07561a58178ff754b513e7 +doccontainersize 501716 +doccontainerchecksum 2f986edf21052a8e008a64493787139ff9fa5f65038eede1c87e59add2c496f23fb20e7b33d632dc598318dfafbbcbdb7a938a7f04bee6c72884565c104df7a0 +docfiles size=132 RELOC/doc/latex/fnpct/README details="Readme" RELOC/doc/latex/fnpct/fnpct-manual.cls RELOC/doc/latex/fnpct/fnpct-manual.pdf details="Package documentation" RELOC/doc/latex/fnpct/fnpct-manual.tex -runfiles size=12 +runfiles size=22 + RELOC/tex/latex/fnpct/fnpct-2019-10-05.sty RELOC/tex/latex/fnpct/fnpct.sty catalogue-contact-bugs https://github.com/cgnieder/fnpct/issues catalogue-contact-repository https://github.com/cgnieder/fnpct/ catalogue-ctan /macros/latex/contrib/fnpct catalogue-license lppl1.3c catalogue-topics footnote expl3 -catalogue-version 1.0 +catalogue-version 1.1a name fnspe category Package @@ -120855,24 +125112,24 @@ catalogue-topics font font-novelty font-type1 name foilhtml category Package -revision 21855 +revision 61937 shortdesc Interface between foiltex and LaTeX2HTML relocated 1 longdesc Provides integration between FoilTeX and LaTeX2HTML, adding longdesc sectioning commands and elements of logical formatting to longdesc FoilTeX and providing support for FoilTeX commands in longdesc LaTeX2HTML. -containersize 3628 -containerchecksum 80b177c1eb224dbbd086d3b8a0b10b3f0b3434e977c8d71b34a58f76a5a73757148b4e7438a275f1be186df51e36342de132940ebdde9608e7c741664ea200d7 -doccontainersize 5048 -doccontainerchecksum a24c9f048f7e1cf187d40f6eb3370cf68f6de80e24f2f72b077d782be5dcd369cf3a7ce9bc7d0a269c285d04cbb543481cf439710037a26a7597164492b277fb +containersize 3600 +containerchecksum 88bd7239cc37cc4429be37de0e68ffd6291844bb81f34a3e9e8c0dab14641d66b6d3990e44d58e5322d2cbac8da27901fe7dbb3b64a59be577ec0f94a036bafa +doccontainersize 5044 +doccontainerchecksum c444f13c4c60cd7a723d9bca8d687a3f995438767d077c812797b91e0111372fed6c76fb51f264c0332cffb1a598e5f2a17a63882dc18b4e682f08a3ffee0900 docfiles size=7 RELOC/doc/latex/foilhtml/foilhtml-96.perl RELOC/doc/latex/foilhtml/foils-97.perl RELOC/doc/latex/foilhtml/foils.perl RELOC/doc/latex/foilhtml/readme.v12 srccontainersize 15700 -srccontainerchecksum a6fc97ea007ddddaef17cfb4bf86d75ee34a5525ee48b58b111188cf6a2e6269052c4f90d87ff3aa6157d1523fcca3f8f99471fef108cc8c1e69dffa7c6656ca +srccontainerchecksum 9904924a8b8b1723e7496960fb9856e91efce76313cb49e756d99be5f6f97022e1cf8f27edec0ee738281137e3fe4d251448caae54335d30b0772a1be44cb8e6 srcfiles size=18 RELOC/source/latex/foilhtml/foilhtml.drv RELOC/source/latex/foilhtml/foilhtml.dtx @@ -120880,7 +125137,7 @@ srcfiles size=18 runfiles size=4 RELOC/tex/latex/foilhtml/foilhtml.cfg RELOC/tex/latex/foilhtml/foilhtml.sty -catalogue-contact-home http://users.lk.net/~borisv/latex.html +catalogue-contact-home http://borisv.lk.net catalogue-ctan /macros/latex/contrib/foilhtml catalogue-license lppl catalogue-topics presentation @@ -121112,7 +125369,7 @@ catalogue-version 4.6.3.2 name fontawesome5 category Package -revision 54517 +revision 63207 shortdesc Font Awesome 5 with LaTeX support relocated 1 longdesc This package provides LaTeX support for the included "Font @@ -121121,16 +125378,16 @@ longdesc Awesome and released under the SIL OFL 1.1 license. The longdesc commercial "Pro" version is also supported, if it is installed longdesc and XeLaTeX or LuaLaTeX is used. execute addMap fontawesome5.map -containersize 848692 -containerchecksum 2d33d6faae95c3d275fad5e0a962e7e8943ece8e311555915adf6f9cec9864e00a4309d42e7e171220f16c7ce8f7253499513f0d118685f0a7373de98c9fc886 -doccontainersize 719272 -doccontainerchecksum 24c198c2abfc82930b43d04b1b855715c48b7b1d2517d955745b6eaea8b4d81496af627907a3e7d9bb232df442c965a1ea84c427bc1a8c964cc83dc123392051 -docfiles size=180 +containersize 866312 +containerchecksum d7f6a40797b2968c31b28f1bf273af9d27b7a87e7c2953748f354db2e760b027feb5a8fd52c8f367649fba24cd629d71c1b1368b8864d42eb84269e0b22b59d4 +doccontainersize 746624 +doccontainerchecksum 1727133ca0e1713c356a647e08a7e22af50ad6a67e66c54f3d9e9a0601bd4a693c365cda625b37be83cb4ece42aba8312488f4ba5e885cc44f68f7930dfd7add +docfiles size=188 RELOC/doc/fonts/fontawesome5/README.md details="Readme" RELOC/doc/fonts/fontawesome5/fontawesome5.pdf details="Package documentation" RELOC/doc/fonts/fontawesome5/fontawesome5.tex RELOC/doc/fonts/fontawesome5/fulllist.tex -runfiles size=325 +runfiles size=331 RELOC/fonts/enc/dvips/fontawesome5/fa5brands0.enc RELOC/fonts/enc/dvips/fontawesome5/fa5brands1.enc RELOC/fonts/enc/dvips/fontawesome5/fa5free0.enc @@ -121172,7 +125429,7 @@ catalogue-also fontawesome catalogue-ctan /fonts/fontawesome5 catalogue-license ofl lppl1.3c catalogue-topics font font-supp-symbol font-symbol font-otf font-type1 -catalogue-version 5.13.0 +catalogue-version 5.15.4 name fontaxes category Package @@ -121272,7 +125529,7 @@ catalogue-version 2.2 name fontinst category Package -revision 53562 +revision 62517 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 @@ -121288,11 +125545,11 @@ longdesc for files or work with binary file formats; those tasks must longdesc normally be done manually or with the help of some other tool, longdesc such as the pltotf and vptovf programs. depend fontinst.ARCH -containersize 85736 -containerchecksum 1703570199fbc41d589817f83b5782bef5552030ab54646d464423f0788b1f2f3a5017a92846de55ee696b4ccbe1d46b2220382f7446ac7cafc9970c58d1b5ba -doccontainersize 1019508 -doccontainerchecksum dc7aca7d63e13fb908df02363542abebb1760b66669bf360c2ab33e790ae6d3ac0ac1808849efab2784c39499ee1eb5e2fe43091d41b0270a4c402c2394f6fec -docfiles size=463 +containersize 85740 +containerchecksum c3668f79f4b926090188386044fd68b0f13913168cdcb2aa23ccfd3aead488dec03e79133669bac3d2b719fdd2d5ef735fd46cbb27fd26fe560368f9e0cda05d +doccontainersize 1019808 +doccontainerchecksum 23c569bdd6f12dd4cd0b5673ed9efde2c7c7988d86bf2f89409bc22c80f64ea80ca6824745b50ea3ef30f70e4bd7c8d7005a9e05e511c1e917a12630f4b4bdb2 +docfiles size=464 texmf-dist/doc/fonts/fontinst/README details="Readme" texmf-dist/doc/fonts/fontinst/encspecs/encspecs.tex texmf-dist/doc/fonts/fontinst/encspecs/omxdraft.etx @@ -121327,7 +125584,7 @@ docfiles size=463 texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrykernx.mtx texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf details="Package documentation" texmf-dist/doc/fonts/fontinst/manual/fontinst.tex - texmf-dist/doc/fonts/fontinst/manual/intro98.pdf details="Package introductioon" + texmf-dist/doc/fonts/fontinst/manual/intro98.pdf details="Package introduction" 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 @@ -121367,7 +125624,7 @@ docfiles size=463 texmf-dist/doc/man/man1/fontinst.1 texmf-dist/doc/man/man1/fontinst.man1.pdf srccontainersize 410340 -srccontainerchecksum f0e4fd7818432ccf95a91f6e5d307aefe8d6d0bc3bcef464fa5b94cde24304c693466695e3a57fcc7d3bd388fc16a2ebb23fb80ecd3e5887ce845151983ed493 +srccontainerchecksum 1645dfe5c6cd0efc8d8af966eb7363176ee7a44646b5860a3c137dd70c7e130340887e8690913d03be84eb1d84134c4ec2add713e4583a0feeefe4a1c4554402 srcfiles size=469 texmf-dist/source/fontinst/base/CHANGES texmf-dist/source/fontinst/base/fibasics.dtx @@ -121494,15 +125751,6 @@ containerchecksum 097185ac42be371bfb02f58292962d143c8185a4dfd711cb171c34d00c5bc9 binfiles arch=armhf-linux size=1 bin/armhf-linux/fontinst -name fontinst.i386-cygwin -category Package -revision 53554 -shortdesc i386-cygwin files of fontinst -containersize 344 -containerchecksum 61602e4703163c99d37f74d046b7d2bce1b032f1118c70d897cb7fca91463d95597667cde1ca8eddaf1cf76d69f89303e20d56febc0ad1333f39b8fec5b42101 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/fontinst - name fontinst.i386-freebsd category Package revision 53554 @@ -121593,6 +125841,31 @@ containerchecksum 6b31219414460c7943e88b13d2446dc29bec74508fbf3484a8c16334cb7497 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/fontinst +name fontinstallationguide +category Package +revision 59755 +shortdesc Font installation guide +relocated 1 +longdesc This guide discusses the most common scenarios you are likely +longdesc to encounter when installing Type 1 PostScript fonts. While the +longdesc individual tools employed in the installation process are +longdesc documented well, the actual difficulty most users are facing +longdesc when trying to install new fonts is understanding how to put +longdesc all the pieces together. This is what this guide is about. +containersize 564 +containerchecksum c3f9820453f9cc3fcf4323f382a35255d2dc066dd0c090f55d15b2b28d64d8e3935e85b3dc8f30d9ee50408a48aba0ba4278d4985ead454f177ab1d484fe7b01 +doccontainersize 527348 +doccontainerchecksum 785a84a3bbcf67fcbb878f331815fd585093de89faee6f2556727ef820e392131545646242ebdef603e85e22e86b1e97f5369db4e1c565875e79683ff4987198 +docfiles size=242 + RELOC/doc/fonts/fontinstallationguide/README details="Readme" + RELOC/doc/fonts/fontinstallationguide/examples.zip + RELOC/doc/fonts/fontinstallationguide/fontinstallationguide.pdf details="The document itself" + RELOC/doc/fonts/fontinstallationguide/fontinstallationguide.tex +catalogue-ctan /info/Type1fonts/fontinstallationguide +catalogue-license fdl +catalogue-topics font-doc +catalogue-version 2.14 + name fontmfizz category Package revision 43546 @@ -121623,16 +125896,16 @@ catalogue-topics font font-supp-symbol font-symbol font-ttf name fontname category Package -revision 53228 +revision 64477 shortdesc Scheme for naming fonts in TeX relocated 1 longdesc The scheme for assigning names is described (in the longdesc documentation part of the package), and map files giving the longdesc relation between foundry name and 'TeX-name' are also provided. containersize 108532 -containerchecksum 97b85e6a11136049f54f611e8b4eda75fe097addb2b70edff263e5e4c124e0e05976407572468b7590a3c7fb41e53c0c5fe495ab922a3553c0c6d3fd5067ffdf +containerchecksum 424da4dbbc07c41840e6aeb6fabeef5d4778d206b9cb8a90e752ebeb65d962b96ad41a7e20c86a16665e2bf48ad795d85001da66ff41b01ae3c949c6eefa4593 doccontainersize 679580 -doccontainerchecksum 4c981cbaff6dd6a700b5b4c323396676539aab8bacf44781de560ef226557182f3be5e573a7a2be98a1ccd7ca4f47fb7ad4b847184b8a18e3aeeca62077223f1 +doccontainerchecksum 78199996913192f5f69423b6f412acc52b74f051b01d3e345b97b7f1d9ea4aea762a7b83488068f3091b41da69471d56b3f18ab4d299cc6adfe4e004072db303 docfiles size=781 RELOC/doc/fonts/fontname/8a.html RELOC/doc/fonts/fontname/8r.html @@ -121710,7 +125983,7 @@ catalogue-topics font-doc name fontools category Package -revision 58747 +revision 65706 shortdesc Tools to simplify using fonts (especially TT/OTF ones) longdesc This package provides tools to simplify using OpenType fonts longdesc with LaTeX. By far the most important program in this bundle is @@ -121724,10 +125997,10 @@ longdesc - re-encode .afm files, ot2kpx - extract kerning pairs from longdesc OpenType fonts, splitttc - split an OpenType Collection file longdesc (ttc or otc) into individual fonts. depend fontools.ARCH -containersize 50108 -containerchecksum fed81ca7b52a51cd69be9ea8333ab7eb0210fab3517eb501d08ce933c7d926303a68b095654852de336b0fafa28a11b97517750418793dc61049c85ffb10ede0 -doccontainersize 129732 -doccontainerchecksum 7ee681471cfddf5dfd919057df7016ad097876c92890e68c4e5a01751210997a747192ccb38682a0565070bd90c471c27a6710bf5a09c7a205475ec01ecd0dc9 +containersize 55340 +containerchecksum a4cd3009c98502534f3c54d40fb22d788bcdfd474ba6bfc1b7010aa4d3471f468cd54a5d5c292d5afe685f9e4d99c023b8f78f302792dd1b381418042d96f47c +doccontainersize 129664 +doccontainerchecksum 0506f6e9d0e0ae4fe4bb15303e2abde50a076899e4330a7d68f875abeaacff999cbab779bb368da5c717370e7cf885333c1479d6e795da4e387edd4656c30933 docfiles size=56 texmf-dist/doc/man/man1/afm2afm.1 texmf-dist/doc/man/man1/afm2afm.man1.pdf @@ -121738,16 +126011,21 @@ docfiles size=56 texmf-dist/doc/support/fontools/GPLv2.txt texmf-dist/doc/support/fontools/README details="Bundle readme" texmf-dist/doc/support/fontools/splitttc -runfiles size=62 +runfiles size=77 + texmf-dist/fonts/enc/dvips/fontools/fontools_cs.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_l7x.enc texmf-dist/fonts/enc/dvips/fontools/fontools_lgr.enc texmf-dist/fonts/enc/dvips/fontools/fontools_ly1.enc texmf-dist/fonts/enc/dvips/fontools/fontools_oml.enc texmf-dist/fonts/enc/dvips/fontools/fontools_ot1.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_qx.enc texmf-dist/fonts/enc/dvips/fontools/fontools_t1.enc texmf-dist/fonts/enc/dvips/fontools/fontools_t2a.enc texmf-dist/fonts/enc/dvips/fontools/fontools_t2b.enc texmf-dist/fonts/enc/dvips/fontools/fontools_t2c.enc texmf-dist/fonts/enc/dvips/fontools/fontools_t3.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t4.enc + texmf-dist/fonts/enc/dvips/fontools/fontools_t5.enc texmf-dist/fonts/enc/dvips/fontools/fontools_ts1.enc texmf-dist/fonts/enc/dvips/fontools/fontools_ts3.enc texmf-dist/scripts/fontools/afm2afm @@ -121802,17 +126080,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/autoinst bin/armhf-linux/ot2kpx -name fontools.i386-cygwin -category Package -revision 25997 -shortdesc i386-cygwin files of fontools -containersize 384 -containerchecksum 131290555951e101833b46b4197a7cd5e52118b85d45e1e3691dd56b8415b050482ab70f05a59dea3a0252eb61a5b6aa8c708333707135075a2efb0cbb583f74 -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/afm2afm - bin/i386-cygwin/autoinst - bin/i386-cygwin/ot2kpx - name fontools.i386-freebsd category Package revision 25997 @@ -121868,16 +126135,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/autoinst bin/universal-darwin/ot2kpx -name fontools.win32 +name fontools.windows category Package -revision 25997 -shortdesc win32 files of fontools -containersize 728 -containerchecksum 44513712dca776dc08c7e7d150b118a95770f059839d185474509306d547646c626eb20abaac6e04b935a6c6e5912e74ffbbaef9180ac41ede7e111a74f69341 -binfiles arch=win32 size=3 - bin/win32/afm2afm.exe - bin/win32/autoinst.exe - bin/win32/ot2kpx.exe +revision 65891 +shortdesc windows files of fontools +containersize 2396 +containerchecksum fb8a8838c595d50bebba363534530874236b3049d4415b924b61b402355b6849770040b0d2195ed877b07122c2832cf48bc1485a576e9b07d416ba80024361ab +binfiles arch=windows size=6 + bin/windows/afm2afm.exe + bin/windows/autoinst.exe + bin/windows/ot2kpx.exe name fontools.x86_64-cygwin category Package @@ -121977,7 +126244,7 @@ catalogue-version 2.2 name fonts-tlwg category Package -revision 54994 +revision 60817 shortdesc Thai fonts for LaTeX from TLWG relocated 1 longdesc A collection of free Thai fonts, supplied as FontForge sources, @@ -121986,19 +126253,22 @@ execute addMap nectec.map execute addMap nf.map execute addMap sipa.map execute addMap tlwg.map -containersize 5024912 -containerchecksum 7239ecb9ffb0dea42d339b1f758c3c4c11f18b6850b5265296c04027922d5ec882d7ee2b6eaf4abb0d2e702ff349833adedc36dd18eac492e191f43da267fdc9 -doccontainersize 4600 -doccontainerchecksum a122c38181cb85964e6344c6652e20444e09943cab0d5a25580aaf4cb691cda33808972dbe3a7cfc7cb7970a7233741111fe52d93d51e3fe06615710be4089de -docfiles size=17 +containersize 5031944 +containerchecksum 3b1894d677b63c88010fe583381ff7c0c8a7c5c6753e62e166ffa8ae7f18d6a521b12a4e57f16634855f3b807605407cfad110eb405a3ad334f8a14bfacb6338 +doccontainersize 11168 +doccontainerchecksum 93de1f1c668d460644f8246ac25c47f10d99e91c878c50c3096e2df373e521e54412c239d89f5372c767cd768f7973b06f97f25705e865dd5c36cc3674496c0e +docfiles size=24 RELOC/doc/fonts/fonts-tlwg/README.latex + RELOC/doc/fonts/fonts-tlwg/examples/digits-axes.tex + RELOC/doc/fonts/fonts-tlwg/examples/digits-cfr.tex + RELOC/doc/fonts/fonts-tlwg/examples/oldnum.tex RELOC/doc/fonts/fonts-tlwg/examples/testsans.tex RELOC/doc/fonts/fonts-tlwg/examples/testscaled-120.tex RELOC/doc/fonts/fonts-tlwg/examples/testscaled-65.tex RELOC/doc/fonts/fonts-tlwg/examples/teststd.tex -srccontainersize 7630632 -srccontainerchecksum 901b278e652010001b05d485b8a1e1d339c5f69b957965b3bb54791b2ea91d4db5e3ad93d168ae909dde39fe3569b82ba998b372021c66fbd4292bc468f43ddf -srcfiles size=14630 +srccontainersize 7644464 +srccontainerchecksum 555a7e3fb1f1202412dda95924b692f21b6ad7d1abb68b5fa789e360667b6a23bc377651d592d43aa67728a8bc9f2a20ad5b1cbca85c412b90ce8a8654b07b17 +srcfiles size=14669 RELOC/source/fonts/fonts-tlwg/AUTHORS RELOC/source/fonts/fonts-tlwg/COPYING RELOC/source/fonts/fonts-tlwg/ChangeLog @@ -122036,6 +126306,9 @@ srcfiles size=14630 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/digits-axes.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/digits-cfr.tex + RELOC/source/fonts/fonts-tlwg/latex/examples/oldnum.tex RELOC/source/fonts/fonts-tlwg/latex/examples/testsans.tex RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-120.tex RELOC/source/fonts/fonts-tlwg/latex/examples/testscaled-65.tex @@ -122046,8 +126319,14 @@ srcfiles size=14630 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/lthnorasij.fd + RELOC/source/fonts/fonts-tlwg/latex/lthnorj.fd + RELOC/source/fonts/fonts-tlwg/latex/lthnorx.fd RELOC/source/fonts/fonts-tlwg/latex/lthpurisa.fd RELOC/source/fonts/fonts-tlwg/latex/lthsawasdee.fd + RELOC/source/fonts/fonts-tlwg/latex/lthtlwg-osf-sc.enc + RELOC/source/fonts/fonts-tlwg/latex/lthtlwg-osf.enc + RELOC/source/fonts/fonts-tlwg/latex/lthtlwg-sc.enc RELOC/source/fonts/fonts-tlwg/latex/lthtlwg.enc RELOC/source/fonts/fonts-tlwg/latex/lthttype.fd RELOC/source/fonts/fonts-tlwg/latex/lthttypist.fd @@ -122055,6 +126334,9 @@ srcfiles size=14630 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-osf-sc.enc + RELOC/source/fonts/fonts-tlwg/latex/thailigs-osf.enc + RELOC/source/fonts/fonts-tlwg/latex/thailigs-sc.enc RELOC/source/fonts/fonts-tlwg/latex/thailigs.enc RELOC/source/fonts/fonts-tlwg/missing RELOC/source/fonts/fonts-tlwg/nectec/Loma-Bold.sfd @@ -122151,7 +126433,7 @@ srcfiles size=14630 RELOC/source/fonts/fonts-tlwg/tlwg/Waree-BoldOblique.sfd RELOC/source/fonts/fonts-tlwg/tlwg/Waree-Oblique.sfd RELOC/source/fonts/fonts-tlwg/tlwg/Waree.sfd -runfiles size=2270 +runfiles size=2331 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 @@ -122202,6 +126484,9 @@ runfiles size=2270 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-osf-sc.enc + RELOC/fonts/enc/dvips/fonts-tlwg/lthtlwg-osf.enc + RELOC/fonts/enc/dvips/fonts-tlwg/lthtlwg-sc.enc RELOC/fonts/enc/dvips/fonts-tlwg/lthtlwg.enc RELOC/fonts/map/dvips/fonts-tlwg/nectec.map RELOC/fonts/map/dvips/fonts-tlwg/nf.map @@ -122283,11 +126568,29 @@ runfiles size=2270 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-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/norasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_b-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_b-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_b-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/norasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_i-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_i-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_i-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/norasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_o-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_o-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_o-sc.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 @@ -122311,11 +126614,29 @@ runfiles size=2270 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-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/rnorasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i-sc.tfm RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_o-osf-sc.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_o-osf.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_o-sc.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 @@ -122433,11 +126754,29 @@ runfiles size=2270 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-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi-sc.vf RELOC/fonts/vf/public/fonts-tlwg/norasi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_b-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_b-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_b-sc.vf RELOC/fonts/vf/public/fonts-tlwg/norasi_b.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bi-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bi-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bi-sc.vf RELOC/fonts/vf/public/fonts-tlwg/norasi_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bo-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bo-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bo-sc.vf RELOC/fonts/vf/public/fonts-tlwg/norasi_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_i-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_i-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_i-sc.vf RELOC/fonts/vf/public/fonts-tlwg/norasi_i.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_o-osf-sc.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_o-osf.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_o-sc.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 @@ -122471,6 +126810,9 @@ runfiles size=2270 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/lthnorasij.fd + RELOC/tex/latex/fonts-tlwg/lthnorj.fd + RELOC/tex/latex/fonts-tlwg/lthnorx.fd RELOC/tex/latex/fonts-tlwg/lthpurisa.fd RELOC/tex/latex/fonts-tlwg/lthsawasdee.fd RELOC/tex/latex/fonts-tlwg/lthttype.fd @@ -122478,31 +126820,32 @@ runfiles size=2270 RELOC/tex/latex/fonts-tlwg/lthumpush.fd RELOC/tex/latex/fonts-tlwg/lthwaree.fd catalogue-contact-bugs https://github.com/tlwg/fonts-tlwg/issues -catalogue-contact-home http://linux.thai.net/projects/fonts-tlwg +catalogue-contact-home https://linux.thai.net/projects/fonts-tlwg catalogue-contact-repository https://github.com/tlwg/fonts-tlwg catalogue-contact-support https://groups.google.com/forum/#!forum/thai-linux-foss-devel catalogue-ctan /fonts/thai/fonts-tlwg catalogue-license gpl2+ lppl1.3 other-free catalogue-topics font font-thai thai -catalogue-version 0.7.2 +catalogue-version 0.7.3 name fontsetup category Package -revision 59079 +revision 65439 shortdesc A front-end to fontspec, for selected fonts with math support relocated 1 longdesc This package facilitates the use of fontspec for users who do longdesc not wish to bother with details, with a special focus on longdesc quality fonts supporting Mathematics. -containersize 6008 -containerchecksum a60aea22cd6ecaee2eb15c7441ccaf1175f088c1d99f73a58f0739fc31660b822edb1353d34cca40ec8c2be8852b0fe70ffc902c10200c77a856035f561272eb -doccontainersize 456368 -doccontainerchecksum e5559375e5378a5a71650f8d3d5ab36d7caf5aa8bd1a9b5311acfb9d903d3560330df8b74e2dd2509dd01d3798bc7d96fa1b76a9d815b6e8cf40558a94d32fbc -docfiles size=214 +containersize 7044 +containerchecksum 9eac00c84f22ba0409f49d9eb730050d8dde8e9468f7d55ffecd6ccca750aff171082638e52fa6c3e260a203e85c09a64900816d8cf7fcf025b655dcb738f62d +doccontainersize 580416 +doccontainerchecksum bfecb544a2ef7ac57b14ea9fea554e39d3b9549520b1dfa76d2ab1f983eff931ad98da0b970922b262ebc01b148bc3b8d7dd4d89e4ef7c03430ea6707add7ad8 +docfiles size=274 RELOC/doc/latex/fontsetup/README details="Readme" RELOC/doc/latex/fontsetup/fontsetup-doc.pdf details="Package documentation" RELOC/doc/latex/fontsetup/fontsetup-doc.tex RELOC/doc/latex/fontsetup/fspsample-cmr.pdf + RELOC/doc/latex/fontsetup/fspsample-concrete.pdf RELOC/doc/latex/fontsetup/fspsample-ebgaramond.pdf RELOC/doc/latex/fontsetup/fspsample-fira.pdf RELOC/doc/latex/fontsetup/fspsample-gfsartemisia.pdf @@ -122513,11 +126856,15 @@ docfiles size=214 RELOC/doc/latex/fontsetup/fspsample-libertinus.pdf RELOC/doc/latex/fontsetup/fspsample-neoeuler.pdf RELOC/doc/latex/fontsetup/fspsample-newdefault.pdf + RELOC/doc/latex/fontsetup/fspsample-oldstandard.pdf RELOC/doc/latex/fontsetup/fspsample-stixtwo.pdf + RELOC/doc/latex/fontsetup/fspsample-talos.pdf RELOC/doc/latex/fontsetup/fspsample-times.pdf + RELOC/doc/latex/fontsetup/fspsample-xcharter.pdf RELOC/doc/latex/fontsetup/fspsample.tex -runfiles size=17 +runfiles size=24 RELOC/tex/latex/fontsetup/fontsetup.sty + RELOC/tex/latex/fontsetup/fspconcrete.sty RELOC/tex/latex/fontsetup/fspdefault.sty RELOC/tex/latex/fontsetup/fspebgaramondot.sty RELOC/tex/latex/fontsetup/fspfiraot.sty @@ -122528,31 +126875,34 @@ runfiles size=17 RELOC/tex/latex/fontsetup/fspkerkisot.sty RELOC/tex/latex/fontsetup/fspneoeulerot.sty RELOC/tex/latex/fontsetup/fspolddefault.sty + RELOC/tex/latex/fontsetup/fspoldstandard.sty RELOC/tex/latex/fontsetup/fspstixtwoot.sty + RELOC/tex/latex/fontsetup/fsptalos.sty RELOC/tex/latex/fontsetup/fsptimesot.sty + RELOC/tex/latex/fontsetup/fspxcharter.sty catalogue-also fontsetup-nonfree catalogue-ctan /macros/unicodetex/latex/fontsetup catalogue-license gpl3 catalogue-topics font-sel font-supp xetex luatex maths -catalogue-version 1.02 +catalogue-version 1.4 name fontsize category Package -revision 58906 +revision 60161 shortdesc A small package to set arbitrary sizes for the main font of the document relocated 1 longdesc The package allows you to set arbitrary sizes for the main font longdesc of the document, through the fontsize= option. -containersize 4976 -containerchecksum 1f5f7af5b0ea951753d982a6f2ebf3b159b8a5a8ee993fdef4241e9608ba2ca6956691ff6c811a82303a5d69384008de1885ca525eb702ff7b8d23b49967ad7e -doccontainersize 398936 -doccontainerchecksum e0fc34a2aa013ba211fd47caf98829dececd830f11ae867498e445c66424a048312132f37a1ac7a9c3154003e852c000371d6f7e8db6117f167816d74306e8be -docfiles size=102 +containersize 4984 +containerchecksum 8e89cde1cdcc388a5e8ef48ccfeecf6f1f25e938c7513081bb17bb4b65f889c2826a929baf4833b2191554f3ddef2dd9c5bbf50f53ff14fe7463ebd1e494aa4a +doccontainersize 377600 +doccontainerchecksum 0b4cb325f4ca5b94a1757aea9ab3dc00dc92ee2b095dd35f176e7acbad7e1ec87a7e2b7cdf9ed19bf50095c41f221f8c791c0e7c9d541021768945a84a30e51e +docfiles size=96 RELOC/doc/latex/fontsize/README details="Readme" RELOC/doc/latex/fontsize/fontsize.bib RELOC/doc/latex/fontsize/fontsize.pdf details="Package documentation" -srccontainersize 14868 -srccontainerchecksum 184993572d347c963cdcdfcf56598863a0905bba6639092d6eca0b79f1e26a2630bbb1dafd6749f33709d4439ee6fcc2f6926b6d33ff2415012fd1010075bdf7 +srccontainersize 15124 +srccontainerchecksum 42b9a587d63a2a0190776851b86eb66c4e7e2811a4367ba659ebc996fcdf365b9447c94a4d04af5129a6b95d119e37735df9b26fcf12702f157d61932f64eef3 srcfiles size=19 RELOC/source/latex/fontsize/fontsize.dtx runfiles size=10 @@ -122560,11 +126910,11 @@ runfiles size=10 catalogue-ctan /macros/latex/contrib/fontsize catalogue-license lppl1.3 catalogue-topics font-supp-misc -catalogue-version 0.8.3 +catalogue-version 0.8.5 name fontspec category Package -revision 56594 +revision 63386 shortdesc Advanced font selection in XeLaTeX and LuaLaTeX relocated 1 longdesc Fontspec is a package for XeLaTeX and LuaLaTeX. It provides an @@ -122578,19 +126928,19 @@ depend l3kernel depend l3packages depend lm depend xunicode -containersize 26788 -containerchecksum 5c2013702cb65edbbd8d6e2c94eb8e181c7400f55593771d48e790cd32d8651e2ccb8fb41d89dffe7fb7ddd3219745102ec1934ad0dc5a24701f2c6a29107078 -doccontainersize 1189088 -doccontainerchecksum bef134b11346e3d06e33fd9ff0c80fa6d904c8cd481d2c55702766cac2d9553298f05dee9e0b4b57238d1c9e140176fa26d29dcdaee990712fd4a3f0148b26fe -docfiles size=314 +containersize 26664 +containerchecksum fc4516b96eefa9cb896488510f5ac531446acfa7993abc2f361751e06fe95128afbaadad393dd7ce8c22ea731c81ba99cd8182ce8205c55f78f64a69ba815996 +doccontainersize 1221672 +doccontainerchecksum e765756f93f1aeb03acf0f15d3388c3a39156f2bc46e951ab5c2e4596ac9babd975af025c0881078f58caeacc3281d3769a701f112b17f10ac474d12b4eac897 +docfiles size=323 RELOC/doc/latex/fontspec/CHANGES.md RELOC/doc/latex/fontspec/LICENSE RELOC/doc/latex/fontspec/README.md details="Package README" RELOC/doc/latex/fontspec/fontspec-code.pdf RELOC/doc/latex/fontspec/fontspec-example.tex RELOC/doc/latex/fontspec/fontspec.pdf details="Package documentation" -srccontainersize 83048 -srccontainerchecksum b64ffed6c06042ffab0faeba22b0df184b2fd0d27f8b312c65b33967021b860915d0c73f1ac9e3a9ac3125c5c7238038790b5d73127d02cb2ed51c64fdfaffab +srccontainersize 82848 +srccontainerchecksum 286db8b9c512c02f2333860b5ff2c980b8b5680de92fc896c95611f2cf1587077f47f9c0aa0e520ad0f64c6f031f8a2fb310f67034ebaca286076d7764bfbc99 srcfiles size=118 RELOC/source/latex/fontspec/fontspec-code-api.dtx RELOC/source/latex/fontspec/fontspec-code-closing.dtx @@ -122627,18 +126977,18 @@ srcfiles size=118 RELOC/source/latex/fontspec/fontspec.dtx RELOC/source/latex/fontspec/fontspec.ins RELOC/source/latex/fontspec/fontspec.ltx -runfiles size=81 +runfiles size=80 RELOC/tex/latex/fontspec/fontspec-luatex.sty RELOC/tex/latex/fontspec/fontspec-xetex.sty RELOC/tex/latex/fontspec/fontspec.cfg RELOC/tex/latex/fontspec/fontspec.lua RELOC/tex/latex/fontspec/fontspec.sty -catalogue-contact-bugs https://github.com/wspr/fontspec/issues -catalogue-contact-repository https://github.com/wspr/fontspec/ +catalogue-contact-bugs https://github.com/latex3/fontspec/issues +catalogue-contact-repository https://github.com/latex3/fontspec/ catalogue-ctan /macros/unicodetex/latex/fontspec catalogue-license lppl1.3c catalogue-topics font-sel luatex xetex -catalogue-version 2.7i +catalogue-version 2.8a name fonttable category Package @@ -122676,7 +127026,7 @@ catalogue-version 1.6c name fontware category TLCore -revision 57972 +revision 66186 catalogue vfware shortdesc Tools for virtual font metrics longdesc Virtual font metrics are usually created in a textual form, the @@ -122687,10 +127037,10 @@ longdesc takes a VPL file and generates a VF file and a TFM file; - longdesc vftovp takes a VF file and a TFM file and generates a VPL file. longdesc The programs are to be found in every distribution of TeX. depend fontware.ARCH -containersize 656 -containerchecksum 3e0dbb5ec5b2c1a616afdb209c9733c65786d59c621e43095a21ca5c1478815937361314fcbb9a161eaec8abd5acc5a05b1107cdf5919d152d01f318789a41cb -doccontainersize 68900 -doccontainerchecksum c76d1c81a72743c59ea37ef7bbd71ac7e49793cebf38eccd36c5dfeaf591ff7073beb4de8692fa5bd2ea453588582d50316a34818137e70673a701a7e4b4796d +containersize 652 +containerchecksum 7cec7df72b76ed64b864401c809b48e51f69338c7cb3ed05ac4ea69899a077983763c728543f99130f18afdd2a03c955d848066a239c97547ab0240d87c97d7e +doccontainersize 69200 +doccontainerchecksum ccd22e262e5fa2cccd5da0ff016447d2df04aefcdd6960f226762667ea2e81b4afd406ea9f822b74d07c8f93cbe70ef90cfcc4040cae2820cf5ace94ce8d1113 docfiles size=27 texmf-dist/doc/man/man1/pltotf.1 texmf-dist/doc/man/man1/pltotf.man1.pdf @@ -122701,7 +127051,7 @@ docfiles size=27 texmf-dist/doc/man/man1/vptovf.1 texmf-dist/doc/man/man1/vptovf.man1.pdf catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/etc catalogue-license knuth @@ -122709,10 +127059,10 @@ catalogue-topics font-supp name fontware.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of fontware -containersize 99140 -containerchecksum cdfb5d72a61c9eb9610663f2d062feb360cafe594a0a255118de9ca1ffbc7bc1772cad82b6c657ff761c146067083dee93d7e5759467c23df02f82681824656b +containersize 99016 +containerchecksum d366e21c2dec3e5b41159469eca81f832a4c6375ed1fa1b06a19073ebecfd15b8058477de2703757a5e9f1eefb4a815bd03b60a8be56ff89ed81305710e7c93e binfiles arch=aarch64-linux size=98 bin/aarch64-linux/pltotf bin/aarch64-linux/tftopl @@ -122721,11 +127071,11 @@ binfiles arch=aarch64-linux size=98 name fontware.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of fontware -containersize 116376 -containerchecksum 2ef44ea49db87d5d34d918875d376906d1a67eeeffaa4fc5f40f7b71ddb9324ae9fa3b90a5530568c21ccee35541515083ecf7bee4834ba960da36a48ab4fd5e -binfiles arch=amd64-freebsd size=105 +containersize 115760 +containerchecksum b141b2fb605abdf04618f715ec3fa085430e54be69461eaa3e6ceef59b64a8e927e51b4fae4b74976d5390189aea9482ab2c6f82c6c19409f3aaf31a463a6591 +binfiles arch=amd64-freebsd size=108 bin/amd64-freebsd/pltotf bin/amd64-freebsd/tftopl bin/amd64-freebsd/vftovp @@ -122733,10 +127083,10 @@ binfiles arch=amd64-freebsd size=105 name fontware.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of fontware -containersize 99436 -containerchecksum dacc248144d517f29bd2b84c498c6fd4f3cfbb1a9ca3e58d0ab423e19fd74fd1a1e9c6e94f0231da197b6dcfd4f2011e3130b1c3846c7966b8d54caf4ab9d9dc +containersize 99964 +containerchecksum 3adc41fa42c81a331fe9e6b7112b282e49a4c910e756c60c191c9b17069dee92ecf46210b3f5ff754a4414b5a832068cc585f6b35e5f7bb90a398a5ce12417a1 binfiles arch=amd64-netbsd size=114 bin/amd64-netbsd/pltotf bin/amd64-netbsd/tftopl @@ -122745,35 +127095,23 @@ binfiles arch=amd64-netbsd size=114 name fontware.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of fontware -containersize 79944 -containerchecksum a562ef4caeda366855c2f391238aa536681430a19092197fa1e8a2ba9e7c6671115ca57b424ca2c4f1b27fb68e0a8236b06d4135a1908d688b23ba484c729450 +containersize 80032 +containerchecksum 4d3e9c7a20ff1d53ac26593a78c0a7f589f5ce64e82c7756fbd6e76531ea64ff3a4ec5141544761047cbbd9f65736f9f2ce7ff4c77df152b7ac9d1442d9c3d37 binfiles arch=armhf-linux size=78 bin/armhf-linux/pltotf bin/armhf-linux/tftopl bin/armhf-linux/vftovp bin/armhf-linux/vptovf -name fontware.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of fontware -containersize 55900 -containerchecksum ddb02e0043dcf3bbb368a7161321d8fede990fa1df1b9a5d080809b9c7c1dc196d553d854f4bc717b399714f6e4e78545619b9dd49bbb17bcd7b5d9fda91f4a1 -binfiles arch=i386-cygwin size=54 - bin/i386-cygwin/pltotf.exe - bin/i386-cygwin/tftopl.exe - bin/i386-cygwin/vftovp.exe - bin/i386-cygwin/vptovf.exe - name fontware.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of fontware -containersize 97612 -containerchecksum f7bb3e3ec3853b965fa07b947f555f22926ab6692605dda8c117e6663764df80f7718ec9553e76dcd16c727f2eef572537d920392ec7f712fb12c4dc53ccec7a -binfiles arch=i386-freebsd size=92 +containersize 98376 +containerchecksum 58bc06d95ac342204f4b87e9c1d2e0541673d453f9949ba7d04ab96b19bdec7ee1ded3ae6a49919271a6e7e021998426e416a5871dc9de24e64552428cc255b5 +binfiles arch=i386-freebsd size=95 bin/i386-freebsd/pltotf bin/i386-freebsd/tftopl bin/i386-freebsd/vftovp @@ -122781,11 +127119,11 @@ binfiles arch=i386-freebsd size=92 name fontware.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of fontware -containersize 97304 -containerchecksum 6741780ed1e191f44a63ea629e434949c4930914d4a788477cb16d74f59fff1d31c36ccfac9b79c690f7e7d67cab88da17bbf185460ba06e7a2f6efd9c6469ec -binfiles arch=i386-linux size=96 +containersize 98416 +containerchecksum b08438864e662960071ea394772ba54f935e6f2d61a87eb04805915570d753ae9c8c3386e5f81adb1a7838043ed94cea087d7767062637fe37154c6e648276db +binfiles arch=i386-linux size=100 bin/i386-linux/pltotf bin/i386-linux/tftopl bin/i386-linux/vftovp @@ -122793,10 +127131,10 @@ binfiles arch=i386-linux size=96 name fontware.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of fontware -containersize 83848 -containerchecksum c5817716eb2b7ced68788648d9195293c6f2e69f9cb230a9c1ebb0200d8705a40f8b14526d58fb2c36b245391848d9c2801c8827d790c5563866ce044b592bb3 +containersize 84800 +containerchecksum a40f94b796d713dd618d8c1ac543aa099cf28636ae6b06236e1f4c82c208d8c94111bfdba15a596eeef8aecec9eb2577bba29129572fc6cf8a4309be4e686b53 binfiles arch=i386-netbsd size=107 bin/i386-netbsd/pltotf bin/i386-netbsd/tftopl @@ -122805,10 +127143,10 @@ binfiles arch=i386-netbsd size=107 name fontware.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of fontware -containersize 103632 -containerchecksum 9b05fc6e2374b67342cc741abd3508697136ef7e09ed8a70328958dd1393801b0cffee241ce764c5c6fb59d82c6c87c8cca515ecc7d8fa4bb8b131dff5b137aa +containersize 104220 +containerchecksum a5cd427d3b286565e713a46cc4b3f0e1d761608aaaf86a3120e64b679ffbc3d40353ee35d10ec0eec8af78235f59dcc734e97176bb3102f3c0024e7129dba494 binfiles arch=i386-solaris size=95 bin/i386-solaris/pltotf bin/i386-solaris/tftopl @@ -122817,35 +127155,35 @@ binfiles arch=i386-solaris size=95 name fontware.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of fontware -containersize 209092 -containerchecksum c1f4ee0014c268f4f7dd71467da0217a3717960ff61801ffd061a8f6be567f6e96f74f36b72a83a2da8c17f042ed81cb41041dd97f2db16fdc709f5dc39e0a37 +containersize 209408 +containerchecksum 1c072fa94450de39d8865a8a658621ef1c2205c8c639faebf828c422af6049b844e650e776834f5da81fd0562d7ccc4ffdc0a04375920f6c92cbd6e798322b22 binfiles arch=universal-darwin size=292 bin/universal-darwin/pltotf bin/universal-darwin/tftopl bin/universal-darwin/vftovp bin/universal-darwin/vptovf -name fontware.win32 +name fontware.windows category TLCore -revision 58783 -shortdesc win32 files of fontware -containersize 58216 -containerchecksum e35428ca8bbc7ad141f10d73066963cd6d4a62b132101f90f8ab120f8de898d5460a7bc3e66daf05996fdefbfed1c071374073ed09e294c6a50d073ad693cc6f -binfiles arch=win32 size=49 - bin/win32/pltotf.exe - bin/win32/tftopl.exe - bin/win32/vftovp.exe - bin/win32/vptovf.exe +revision 65891 +shortdesc windows files of fontware +containersize 69280 +containerchecksum 5a339398c336577723de4f5c0a540f1b8ea18a66222d977f80290ac8fde49073730b636fade115842375015d4920c9c6f25c50fd2b14ca36b068079573ccb17b +binfiles arch=windows size=53 + bin/windows/pltotf.exe + bin/windows/tftopl.exe + bin/windows/vftovp.exe + bin/windows/vptovf.exe name fontware.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of fontware -containersize 64356 -containerchecksum b10acbf6aa4e7e47dc5312031f28a032bdcaf6f2bba9e67565ef707344126dc89e5a03377051b7e382f09e2338b22eff9807c4953ff1e8fe95f7a7fb078380e6 -binfiles arch=x86_64-cygwin size=52 +containersize 65196 +containerchecksum 9164bb2f317db10c0129c9b4d8552627767434979882558d811b9ee620659706c174769867747f37cace6ac8c7aab95340fc8264661c76b79a5094d1fd0a25f2 +binfiles arch=x86_64-cygwin size=53 bin/x86_64-cygwin/pltotf.exe bin/x86_64-cygwin/tftopl.exe bin/x86_64-cygwin/vftovp.exe @@ -122853,10 +127191,10 @@ binfiles arch=x86_64-cygwin size=52 name fontware.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of fontware -containersize 100428 -containerchecksum 1c28946564e846aaec8ee16e040152f1b26487112c8c37d380cc557794c2170454e75dc0ea445e783b1bab05ee94a8691e37475696a0ab7aec8004be20bafc5d +containersize 100864 +containerchecksum c75b20d3bc20b7613ac734a3bfdc8177edaba176029b3d0588a4fe59273c15060e375f9d24277e153cd39da66ae91fcdadb16f10fb3872d7604ccb8e178269a4 binfiles arch=x86_64-darwinlegacy size=92 bin/x86_64-darwinlegacy/pltotf bin/x86_64-darwinlegacy/tftopl @@ -122865,11 +127203,11 @@ binfiles arch=x86_64-darwinlegacy size=92 name fontware.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of fontware -containersize 101780 -containerchecksum 08ff796748e27014c6172ba13e2980f176afd74c230e35f33f44f02acb300049af5044cd057139bd87d2db31f7544a754cf4e5854efd094820bcd5d486a2323e -binfiles arch=x86_64-linux size=86 +containersize 101864 +containerchecksum 260d8e50a316522edae071bfd74189a142d9d65fc80e3d2fcf2d831fa1857cb5808cf5ec50257737701d4997c07b019bca4dc5d87687a2cccfe416a6c30bae15 +binfiles arch=x86_64-linux size=89 bin/x86_64-linux/pltotf bin/x86_64-linux/tftopl bin/x86_64-linux/vftovp @@ -122877,11 +127215,11 @@ binfiles arch=x86_64-linux size=86 name fontware.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of fontware -containersize 106092 -containerchecksum e4369202c5eeb178f76d5121e72ee7149e7d645805c15ac679015c8d7baf57e65133d55e634294e186d6244628034eb0e39707ab69fda20aefd3b036c130008c -binfiles arch=x86_64-linuxmusl size=96 +containersize 110536 +containerchecksum f5c63d00fc9f0f732a0ca7196a2f1d43384ec38c5ea7bf44bfa9e9cc8617c74777af07ef05460bc068b3654149d7771a99101c5217c913a9156babfe4c4368dd +binfiles arch=x86_64-linuxmusl size=95 bin/x86_64-linuxmusl/pltotf bin/x86_64-linuxmusl/tftopl bin/x86_64-linuxmusl/vftovp @@ -122889,10 +127227,10 @@ binfiles arch=x86_64-linuxmusl size=96 name fontware.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of fontware -containersize 115280 -containerchecksum 8767637c5f0eb57a58b05ae1a0b26ab99ba361b39f36bbae525669c47ba3dafa2ba6657cd39991f2af9ef1d796d45c6c69c1d17aed246f90fae8bf27a0f3ebb4 +containersize 115496 +containerchecksum 8c9e058c103536eb2bc81f5cf2824016c46ac54b268c784796f091457bf78c30898c7a5c4313a2ecb9d5a64eca0c85ab9ff34219f8ad7ef1c920ac1b8d06f53a binfiles arch=x86_64-solaris size=102 bin/x86_64-solaris/pltotf bin/x86_64-solaris/tftopl @@ -122961,7 +127299,7 @@ catalogue-version 2.0.7 name footmisc category Package -revision 23330 +revision 62524 shortdesc A range of footnote options relocated 1 longdesc A collection of ways to change the typesetting of footnotes. @@ -122979,26 +127317,31 @@ longdesc packages, though those are both also portmanteau packages. longdesc (Don't be seduced by fnpara, whose implementation is improved longdesc by the present package.) The perpage option is also offered by longdesc footnpag and by the rather more general-purpose perpage -containersize 5904 -containerchecksum 50d0d02b243936d2455ad2353c0da1b77aab9f8f822033a98062d979b686163b94798784dc6b8496dda3ef38eadbd04a21e153f0fa9a76b499c50159c169fb85 -doccontainersize 325412 -doccontainerchecksum 3a732fe8a1ca364275a7b0849be097e307ba322ff611a650a4625cc47792410b974055c75165b62ec8d5d2a128b0d6a194d798248bcd6bae266c7638ffe67e01 -docfiles size=81 - RELOC/doc/latex/footmisc/README details="Readme" - RELOC/doc/latex/footmisc/footmisc.pdf details="Package documentation" language="en" -srccontainersize 19772 -srccontainerchecksum 3489b4c09a145ba19d25120a48368470d65c2407a8c5697946ae669fdd63f0dc7176ea171ccd2a815055a6fc16f02523f7b2ca084c60159c1768a8a3b2eccf11 -srcfiles size=20 +containersize 7672 +containerchecksum 85a082bfa68f0ab8d9cc252d04521b45bac8a3c4d005920c1806515efdea6668b3df3b57f51780b8d4bf4cd7d4e06751f41087b76da3b0dc9d916f3716cdc522 +doccontainersize 511244 +doccontainerchecksum 5c3e00ea325942affe2c68b6855207801b0155b79b1f33cdf3c2dc5d65f17bc94b6fb94e09c1ad8c823035232dc305d9131ae89bb726685354adb2a23117987d +docfiles size=154 + RELOC/doc/latex/footmisc/README.md details="Readme" + RELOC/doc/latex/footmisc/changes.txt + RELOC/doc/latex/footmisc/footmisc-code.pdf + RELOC/doc/latex/footmisc/footmisc-code.tex + RELOC/doc/latex/footmisc/footmisc-doc.pdf details="Package documentation" + RELOC/doc/latex/footmisc/footmisc-doc.tex +srccontainersize 22216 +srccontainerchecksum 526a64c71dd03b67dd0df1d735573bd51db7c6929aa1626c61fda42b7619ebad8b6127c2db8e08fdfc79f54e8c113080001fe6141f1412b0cf8b175c11a32972 +srcfiles size=22 RELOC/source/latex/footmisc/footmisc.dtx RELOC/source/latex/footmisc/footmisc.ins -runfiles size=7 +runfiles size=13 + RELOC/tex/latex/footmisc/footmisc-2011-06-06.sty RELOC/tex/latex/footmisc/footmisc.sty catalogue-also endnotes ftnright footmisx -catalogue-contact-bugs https://github.com/FrankMittelbach/fmitex/issues +catalogue-contact-repository https://github.com/frankmittelbach/fmitex-footmisc catalogue-ctan /macros/latex/contrib/footmisc -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics footnote -catalogue-version 5.5b +catalogue-version 6.0d name footmisx category Package @@ -123066,22 +127409,22 @@ catalogue-version 1.0 name footnotehyper category Package -revision 57618 +revision 60374 shortdesc hyperref aware footnote.sty relocated 1 longdesc The footnote package by Mark Wooding dates back to 1997 and has longdesc not been made hyperref compatible. The aim of the present longdesc package is to do that. -containersize 3372 -containerchecksum bac7b7ce8ec3f74d85e0182f1d65fd0c365c16426fcc725407e1d8146ebc15422fe2e10f20570e68802ae2ac405aecf55ec3dff45e7e6c1bca7b57059e0dd6d2 -doccontainersize 78640 -doccontainerchecksum 6fb3d09ca9c5dfaddedfa2c332634a0b846ffd95f67c1d00346f2d2dab60354a8678315f8987bfd13427909f0d489653f465e03252e84eac13048dbbbde9e6b7 -docfiles size=22 +containersize 3692 +containerchecksum 24d270cf9fdcec81a91be4084e371338f1daa0a12c8344b850860bddef360c97d66e7475711106ee0d1d2f4df359abdb2f0005740aaca83651ce92f1d6c89140 +doccontainersize 83112 +doccontainerchecksum 605c22ffce3c413a0f9caa41a3ff7a43022a9c7a26e43fb177c107c2bc156c93a75f392b29d46880793788f9b5f0ac9e87cdb4c5075a247c17abec2e41527ef5 +docfiles size=23 RELOC/doc/latex/footnotehyper/README.md details="Readme" RELOC/doc/latex/footnotehyper/footnotehyper.pdf details="Package documentation" RELOC/doc/latex/footnotehyper/footnotehyper.tex -srccontainersize 15120 -srccontainerchecksum f881ccb20f056ce3bec35061105f93e520a32565c26a5a8a89623ed5c644d6a6510683e4fb099a32492530f2751f043f65ca29c768b0eb0fae959872ac74b820 +srccontainersize 16008 +srccontainerchecksum 77f579a0e7422a98e0fa9898ea5fb36223f66a2b9889a0da1b4cb40736d88d11ca87820503ea934e6b7e41033ca18974df4d4f585d8283a0e62959c9c16ab7c2 srcfiles size=13 RELOC/source/latex/footnotehyper/footnotehyper.dtx runfiles size=3 @@ -123090,11 +127433,11 @@ catalogue-also footnote catalogue-ctan /macros/latex/contrib/footnotehyper catalogue-license lppl1.3c catalogue-topics footnote macro-supp -catalogue-version 1.1d +catalogue-version 1.1e name footnoterange category Package -revision 52910 +revision 66149 shortdesc References to ranges of footnotes relocated 1 longdesc The package provides the environments footnoterange and @@ -123105,17 +127448,17 @@ longdesc given. If the hyperref package is loaded with enabled longdesc hyperfootnotes-option, then the references are hyperlinked. longdesc (References to footnotes in footnoterange* environments are longdesc never hyperlinked.) -containersize 2624 -containerchecksum 6d1a5ae7982aa9f928d09dbe0dc8cb3fcae5894bd8d0eace4590a7627d476dd32c9c91dd2d68aa9a9428b7258b305b13911421f0834b694fe828654aafcc4eb7 -doccontainersize 402812 -doccontainerchecksum eb31ded0bf2112afd6c278456701690a0a7d846af6bd1f28721bb6db4e67b8a83e2ec67b6876fb05315430d9d1d400ae4b5dd7e04f5bfeecde322ec6aa84e30d -docfiles size=102 +containersize 2644 +containerchecksum b2c20e7b528219e0eee9ca32da40982670d3fa88938a58251e1ce6aca26b831d9ffdd89752ac19b78bc148c11c265374d2f679e7e3f54cff0ba445acc4025922 +doccontainersize 457724 +doccontainerchecksum bf5b704bb39a8d369093feecd02da251eb45790381605495960dabb9a4ef099f9118dc7a791c9d9db74eb19739628638a8c003256a42890d64ed821ebf2b8c12 +docfiles size=118 RELOC/doc/latex/footnoterange/README details="Readme" RELOC/doc/latex/footnoterange/footnoterange-example.pdf RELOC/doc/latex/footnoterange/footnoterange.pdf details="Package documentation" -srccontainersize 10844 -srccontainerchecksum 1cd3a85585772bfe701cbd25f45ed5a94e476d48c9c2efe5868b4d7d2a41c3add423a51238ee793c0cf8d4f65767e9c2b9e0c0c19603259f61e221aa40935b35 -srcfiles size=13 +srccontainersize 11564 +srccontainerchecksum 22665f8b1e912c325a0ba7b8b05ca7da54f54b92e8f7700d045a837e98a544c651c479dff88937615ea1d13a25ae3f6d6f3a5a60c1c7402c8a892dae0fa0a62e +srcfiles size=14 RELOC/source/latex/footnoterange/footnoterange.drv RELOC/source/latex/footnoterange/footnoterange.dtx RELOC/source/latex/footnoterange/footnoterange.ins @@ -123125,7 +127468,7 @@ catalogue-also footmisc catalogue-ctan /macros/latex/contrib/footnoterange catalogue-license lppl1.3c catalogue-topics footnote label-ref -catalogue-version 1.0c +catalogue-version 1.1a name footnpag category Package @@ -123336,6 +127679,37 @@ catalogue-license lgpl catalogue-topics macro-iterate macro-supp catalogue-version 3.0 +name formal-grammar +category Package +revision 61955 +shortdesc Typeset formal grammars +relocated 1 +longdesc This package provides a new environment and associated commands +longdesc to typeset BNF grammars. It allows to easily write formal +longdesc grammars. Its original motivation was to typeset grammars for +longdesc beamer presentations, therefore, there are macros to emphasize +longdesc or downplay some parts of the grammar (which is the main +longdesc novelty compared to other BNF packages). +containersize 1848 +containerchecksum 9a14266ff45b4d153000f27694869ce0b3a159d646ec0343726e4510ed8444d9e1ea08209f64ac2b88d8875e860880d048fbc67c5dd5292e60c02521f89de3be +doccontainersize 235904 +doccontainerchecksum 48d80287ee514f4a846e45b3c0af655644817a3a8dfd2e95e7955fcf4866cb15d5b771e73076cd8cb6717d2d70bfd615e2b613ba58e79380905d3cbf23beeb9a +docfiles size=59 + RELOC/doc/latex/formal-grammar/README.md details="Readme" + RELOC/doc/latex/formal-grammar/formal-grammar.pdf details="Package documentation" +srccontainersize 6752 +srccontainerchecksum 55c30bdefed19d9a794cccef0a437cac4fcc8d36b62f3fed1a8fee4c8ee68414fcbb5bf14203eb6510d4be32058388adc4829be1572aa9fc44915bfd362f67ae +srcfiles size=6 + RELOC/source/latex/formal-grammar/formal-grammar.dtx + RELOC/source/latex/formal-grammar/formal-grammar.ins +runfiles size=1 + RELOC/tex/latex/formal-grammar/formal-grammar.sty +catalogue-contact-repository https://framagit.org/Bromind/LaTeX-packages/-/tree/master +catalogue-ctan /macros/latex/contrib/formal-grammar +catalogue-license lppl1.3 +catalogue-topics formal-spec +catalogue-version 1.2 + name formation-latex-ul category Package revision 56714 @@ -123549,7 +127923,7 @@ catalogue-version 1.0a name forum category Package -revision 56025 +revision 64566 shortdesc Forum fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -123561,10 +127935,10 @@ longdesc Baltics, Cyrillic and Asian Cyrillic communities. There is longdesc currently just a regular weight and an artificially emboldened longdesc bold. execute addMap forum.map -containersize 675572 -containerchecksum fafb6f261a58546c717cd37dd0d5bc3f22b4342d28a62f6cb5dff8132993dc0a4081681e1ad2acdd96421b8d758b7079028b50507586e66dbd80fa6adb0cb180 -doccontainersize 27440 -doccontainerchecksum b4b86a30087dfb1d8a3fb2edc9535926717e07ce619ab7ecfd709b93abb1ed4535893bbc6a0b40c9dc93f16f5c556639f8875bc1ae8183e38715aa383efd6a29 +containersize 675560 +containerchecksum 17336de3385fe31437577e541a63fe10a9ff6f972e02776448a2012337499633eb118d86f7c1995cfbfd5b84360370c614a3687b18880e24a7e4ce06c1874117 +doccontainersize 27448 +doccontainerchecksum 6598777d072ce157440923c767ec77f710ef38bfb019b7134d0ef8ee216d1a66af185a63a54a6af0c17d537a4027c7fa322ebdad07466787e400b6ff4fd77d99 docfiles size=10 RELOC/doc/fonts/forum/OFL.txt RELOC/doc/fonts/forum/README details="Readme" @@ -123685,7 +128059,7 @@ catalogue-version 2.00 name fourier category Package -revision 54090 +revision 61937 shortdesc Using Utopia fonts in LaTeX documents relocated 1 longdesc Fourier-GUTenberg is a LaTeX typesetting system which uses @@ -123699,17 +128073,17 @@ longdesc Utopia Expert fonts, which are only available for purchase. longdesc Utopia is a registered trademark of Adobe Systems Incorporated execute addMap fourier-utopia-expert.map execute addMap fourier.map -containersize 265236 -containerchecksum 4e4e5bad7ce25c67ec925145531e1a27344735e32e2c7053fa73ddd1559ad3d2f5fce00c92c5dc09731a90666fb5c80aa9702adc7bc4469239ca5ae62c23644c -doccontainersize 304616 -doccontainerchecksum 59d1d7ebe7e44c1b5409a9b49e83845aeadcbcbecbf30176b3bc4156f7f611878fd3ee17405df48d3b4e41dd8c95d6dcc24080f15801959c1b2ae83a7a2311ae -docfiles size=82 +containersize 261356 +containerchecksum 127699baefe3be6cf18d50da60d162ad0daa8794797b2200d91d11f290de4f209f2d6097283e9340fb49f20810bac7fb376e014e419994444a6611718670c301 +doccontainersize 350016 +doccontainerchecksum 7f6ac2665a52e2bf4fd4769629e00ac2192c68628784e3bb9bc5cf4f9f4c99e8e46485344e7a1019182be0af086e2b5b0ed557650b1d02ed8a9f6e2dd075d59e +docfiles size=98 RELOC/doc/fonts/fourier/README details="Readme" RELOC/doc/fonts/fourier/fourier-doc-en.pdf details="Package documentation" RELOC/doc/fonts/fourier/fourier-doc-en.tex RELOC/doc/fonts/fourier/fourier-orns-doc.pdf details="The Fourier ornaments" RELOC/doc/fonts/fourier/fourier-orns-doc.tex -runfiles size=487 +runfiles size=453 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 @@ -123728,9 +128102,6 @@ runfiles size=487 RELOC/fonts/afm/public/fourier/fourier-orns.afm RELOC/fonts/map/dvips/fourier/fourier-utopia-expert.map RELOC/fonts/map/dvips/fourier/fourier.map - RELOC/fonts/opentype/public/fourier/FourierOrns-Bold.otf - RELOC/fonts/opentype/public/fourier/FourierOrns-BoldItalic.otf - RELOC/fonts/opentype/public/fourier/FourierOrns-Italic.otf RELOC/fonts/opentype/public/fourier/FourierOrns-Regular.otf RELOC/fonts/tfm/public/fourier/fourier-alt-black.tfm RELOC/fonts/tfm/public/fourier/fourier-alt-bold-sl.tfm @@ -123744,7 +128115,6 @@ runfiles size=487 RELOC/fonts/tfm/public/fourier/fourier-alt.tfm RELOC/fonts/tfm/public/fourier/fourier-bb.tfm RELOC/fonts/tfm/public/fourier/fourier-ligs-it.tfm - RELOC/fonts/tfm/public/fourier/fourier-ligs.tfm RELOC/fonts/tfm/public/fourier/fourier-mcl.tfm RELOC/fonts/tfm/public/fourier/fourier-mex.tfm RELOC/fonts/tfm/public/fourier/fourier-ml.tfm @@ -123753,8 +128123,6 @@ runfiles size=487 RELOC/fonts/tfm/public/fourier/fourier-mlitb.tfm RELOC/fonts/tfm/public/fourier/fourier-ms.tfm RELOC/fonts/tfm/public/fourier/fourier-orns.tfm - RELOC/fonts/tfm/public/fourier/fut-oldlatin-it.tfm - RELOC/fonts/tfm/public/fourier/fut-oldlatin.tfm RELOC/fonts/tfm/public/fourier/futb-sup.tfm RELOC/fonts/tfm/public/fourier/futb8c.tfm RELOC/fonts/tfm/public/fourier/futb8r.tfm @@ -123981,7 +128349,7 @@ catalogue-also utopia catalogue-ctan /fonts/fourier-GUT catalogue-license lppl catalogue-topics font font-maths font-type1 -catalogue-version 2.2 +catalogue-version 2.3 name fouriernc category Package @@ -124216,15 +128584,6 @@ containerchecksum b350841c558dc1c47f82216a59c36d60f6c1a91181be33d0577e838bf537e7 binfiles arch=armhf-linux size=1 bin/armhf-linux/fragmaster -name fragmaster.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of fragmaster -containersize 340 -containerchecksum 0bd693bc4e9ca3a2e7f43af328132c41ac80424bca84155bfd03dc187cc4bccde308d4c46520f5d15f774856b5893a79ade1a76c41abf0c6b2a84e40b7fb0aa4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/fragmaster - name fragmaster.i386-freebsd category Package revision 16472 @@ -124270,14 +128629,14 @@ containerchecksum b285a0c33aa511f7af78fb6b8ffc62599042c7b84f205739802ab9bed5e0ab binfiles arch=universal-darwin size=1 bin/universal-darwin/fragmaster -name fragmaster.win32 +name fragmaster.windows category Package -revision 15404 -shortdesc win32 files of fragmaster -containersize 688 -containerchecksum d76dee25ac8d60a69c7280cd45026070de0fd98a7e0f330c5a25caa88d73fa99100270f8d1730ae3673ab3beab3473ecaaab9ce466719511a1ad0d78becd9f62 -binfiles arch=win32 size=1 - bin/win32/fragmaster.exe +revision 65891 +shortdesc windows files of fragmaster +containersize 2308 +containerchecksum b7afb335c631c6bc6538d7b34250733bdb592e98face002d539166b2a86ad4a2285650a1244526e52c215b942394fac4c653aa67f662bf0eb8920c9bd8fb1b04 +binfiles arch=windows size=2 + bin/windows/fragmaster.exe name fragmaster.x86_64-cygwin category Package @@ -124700,25 +129059,27 @@ catalogue-version 1.3 name frenchmath category Package -revision 56847 +revision 66470 shortdesc Typesetting mathematics according to French rules relocated 1 -longdesc The package provides: capital letters in upright shape for -longdesc mathematical mode according to French rule (package option), -longdesc correct spacing after commas and before a semicolon in math -longdesc mode, some useful macros and aliases for symbols used in -longdesc France: \infeg, \supeg, \paral, ... several macros for writing -longdesc french operator names like pgcd, ppcm, Card, rg, Vect, ... -containersize 1872 -containerchecksum 9f05e3391576e8f37d00852a4d5c9c961369f0fa838d6942594e8b729391d41080d1bca55b258c24ed784788f5b52bb5f1ad4e0d33303676a2811c3804740d09 -doccontainersize 478856 -doccontainerchecksum d1e39e879de7f2cc5307970b7bf2c5535aeafc67e4d79b01d217e33f32d75c482716b07539c7f58981cb581fda61d5310f9f4d23ce9c96e7f1d151cd91a6dc7e -docfiles size=118 +longdesc The package provides: capital letters in roman (upright shape) +longdesc in mathematical mode according to French rule (can be +longdesc optionnally disabled), optionally lowercase Greek letters in +longdesc upright shape, correct spacing in math mode after commas, +longdesc before a semicolon and around square brackets, some useful +longdesc macros and aliases for symbols used in France: \infeg, \supeg, +longdesc \paral, ... several macros for writing french operator names +longdesc like pgcd, ppcm, Card, rg, Vect, ... +containersize 2828 +containerchecksum fc06b1385a0c74d0ddbd69505bfbbbb5947d31ade2aa16a4e7c3fb9a20add786f24121e58578299f96e58100754dcb795e435ae4bd3adb109fc31176c78f9bd3 +doccontainersize 234888 +doccontainerchecksum 6a83de03ebb057212ee6fdd16f297d663a2641c0513de87a2cb7b89d7313d3ad3c2088df1476faac7066f0cca969566cc5b83e3efb6f3f2295eb966bcbfae867 +docfiles size=66 RELOC/doc/latex/frenchmath/README.md details="Readme" RELOC/doc/latex/frenchmath/frenchmath.pdf details="Package documentation" language="fr" -srccontainersize 8276 -srccontainerchecksum d2af7f5fd3f45964d851c038b533b99e6c2a813fa382a9b34333246b044c9b18db6252ebc8c997527211ddc8ce20ec3a816d11b49e1a3e185d7356dd141967fd -srcfiles size=7 +srccontainersize 13564 +srccontainerchecksum 8c5e8f8e775307feea3d1d1b778dba1aecec8d00c98800bac78b10efbeab8dbd683a73560d45e15a1e302012b84a58b618ad43726fa6de6f438ebbf5fe5f81d3 +srcfiles size=12 RELOC/source/latex/frenchmath/frenchmath.dtx RELOC/source/latex/frenchmath/frenchmath.ins runfiles size=2 @@ -124726,7 +129087,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/frenchmath catalogue-license lppl1.3 catalogue-topics maths french -catalogue-version 1.5 +catalogue-version 2.6 name frimurer category Package @@ -124829,22 +129190,22 @@ catalogue-version 1.4a name froufrou category Package -revision 58968 +revision 59103 shortdesc Fancy section separators relocated 1 longdesc This package provides fancy separators, which are visual cues longdesc that indicate a change of subject or context without actually longdesc starting a new chapter or section. -containersize 4036 -containerchecksum 8f6aec27e2d8cfeb0705cdafedcb741de6fd7ec656f422034bc771573951c8bc8b778e509de57c516b7adad6509fd52b87ee5ec01f77efb318ee1e374c5d2cb4 -doccontainersize 41820 -doccontainerchecksum 701b5021ff3b21ae1f65d59d01ce534c3efca07c09bab2ae22df5c37e1510a0c80c2abccd2d738acd0195cb218169293f36827078552a3b94c82c46d6be000da -docfiles size=13 +containersize 4068 +containerchecksum 33efee00b38590de9510689730fa45f1123b5df05fae66fbdb4ffa740e8495309e75c75dba1c7d4d3b58ab7cc1a85d899654a27cc31f3b5eb983f512b5641db8 +doccontainersize 65564 +doccontainerchecksum 4b19469842e5dd7e0b852e531d2f99159acef4b8eb0cbaf3c03a510673a95896abdc2f80209ce164f71acca58c476d593a30449fcc05ae52851f78f76d6000bc +docfiles size=19 RELOC/doc/latex/froufrou/LICENSE RELOC/doc/latex/froufrou/README.md details="Readme" RELOC/doc/latex/froufrou/froufrou.pdf details="Package documentation" -srccontainersize 6256 -srccontainerchecksum d6cde8286592041c04157f222045082329023b6784677a8d587f63fc52f0af4e673b45a66a5756a29b4aae147f3a80c2e1b93faafc1268655431315a7808247e +srccontainersize 6528 +srccontainerchecksum 4e06412734c22e9035b311771412e4221cadd00c693f13d78ca221b1e07e895f09cac9ec97c56be02aad4fdf7e7f6aee3e04585856b773e455efc499ad04d763 srcfiles size=5 RELOC/source/latex/froufrou/froufrou.dtx RELOC/source/latex/froufrou/froufrou.ins @@ -124853,9 +129214,9 @@ runfiles size=3 catalogue-contact-bugs https://gitlab.com/lago/froufrou/issues catalogue-contact-repository https://gitlab.com/lago/froufrou catalogue-ctan /macros/latex/contrib/froufrou -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics decoration -catalogue-version 1.3.0 +catalogue-version 1.4.0 name frpseudocode category Package @@ -125098,6 +129459,39 @@ catalogue-ctan /macros/latex/contrib/functan catalogue-license lppl catalogue-topics maths +name functional +category Package +revision 65485 +shortdesc Provide an intuitive functional programming interface for LaTeX2 +relocated 1 +longdesc This package provides an intuitive functional programming +longdesc interface for LaTeX2, which is an alternative choice to expl3 +longdesc or LuaTeX, if you want to do programming in LaTeX. Although +longdesc there are functions in LaTeX3 programming layer (expl3), the +longdesc evaluation of them is from outside to inside. With this +longdesc package, the evaluation of functions is from inside to outside, +longdesc which is the same as other programming languages such as Lua. +longdesc In this way, it is rather easy to debug code too. +containersize 10960 +containerchecksum a8fd828e18a6162811bf750bb631240a9e1409e52db682d2b7285c369ce2d425889c7e10e3eca98d8a49b496ff7e276b78af09dffdc87769ada063639f165f35 +doccontainersize 720044 +doccontainerchecksum d8ea8ef65648cd46cc8d9b42e0b361a3848078cf2e92abc4d3e8cd2f115320bef414b2a8c762ddcb730ca92204c4c3c33c11d34b804c4497f26c804e53744aff +docfiles size=286 + RELOC/doc/latex/functional/README.txt details="Readme" + RELOC/doc/latex/functional/functional.pdf details="Package documentation" + RELOC/doc/latex/functional/functional.tex +runfiles size=21 + RELOC/tex/latex/functional/functional.sty +catalogue-contact-announce https://github.com/lvjr/functional/wiki/ChangeLog +catalogue-contact-bugs https://github.com/lvjr/functional/issues +catalogue-contact-home https://github.com/lvjr/functional/wiki +catalogue-contact-repository https://github.com/lvjr/functional +catalogue-contact-support https://github.com/lvjr/functional/discussions +catalogue-ctan /macros/latex/contrib/functional +catalogue-license lppl1.3c +catalogue-topics macro-supp latex3 expl3 +catalogue-version 2023A + name fundus-calligra category Package revision 26018 @@ -125168,32 +129562,32 @@ catalogue-version 1.2 name fvextra category Package -revision 49947 +revision 65158 shortdesc Extensions and patches for fancyvrb relocated 1 longdesc fvextra provides several extensions to fancyvrb, including longdesc automatic line breaking and improved math mode. It also patches longdesc some fancyvrb internals. Parts of fvextra were originally longdesc developed as part of pythontex and minted. -containersize 11168 -containerchecksum 9b5daea58dbbd82c3c2d5e637b3c46531aaac1600b39a945eecefc725591c885b0fd706fd38a11c3149fbee3b6029ed518147617a9f0c95b57fe5d66d19541f7 -doccontainersize 817944 -doccontainerchecksum 8e21f94366f7642cf92b8874050c961386fa019450a5e1ae9f6221ab3bf473b41e768bcb2fd1063a4421e721daef6ada5b964a1b6b9fc0054a1b9d7c4040b54c -docfiles size=203 +containersize 12292 +containerchecksum bf54ec110ca65a8c8b984c5599633a1d9be7769c77f532cbeafe0117a3fd9bff560a68e2650921023f3575d46c5a1311331342a7fceccd71bb2e971f044efb20 +doccontainersize 845388 +doccontainerchecksum e20f248fb4bd31df6d6ab4268933fbca4c3aee80d63467a5cd12de13ae314c8316a3a6b6f2a7425c7db2ab92203277f88deb3462c4af66bdf4fc5d49d31a164d +docfiles size=213 RELOC/doc/latex/fvextra/README details="Readme" RELOC/doc/latex/fvextra/fvextra.pdf details="Package documentation" -srccontainersize 50964 -srccontainerchecksum 85330a89067d35c88c86ffaffb0445178b899a9f7727148ccb6cece070317f0d559e72e216c7ecd5a39bf830f5ca93f9f5f711a931fe8cc9d942e4572263f74d -srcfiles size=67 +srccontainersize 54596 +srccontainerchecksum c464715162526f03f13b1f958fed34d5e00a776e715fa6cf3b2d4339006f77a28070472b8b18fc1121b3cf7fc38a2a12d67fe9292a6e9fe5067f734fc53d3e52 +srcfiles size=72 RELOC/source/latex/fvextra/fvextra.dtx RELOC/source/latex/fvextra/fvextra.ins -runfiles size=20 +runfiles size=22 RELOC/tex/latex/fvextra/fvextra.sty catalogue-contact-home https://github.com/gpoore/fvextra catalogue-ctan /macros/latex/contrib/fvextra catalogue-license lppl1.3 catalogue-topics verbatim -catalogue-version 1.4 +catalogue-version 1.5 name fwlw category Package @@ -125337,6 +129731,45 @@ catalogue-license lppl1.3 catalogue-topics games catalogue-version 1.0 +name gamebooklib +category Package +revision 63424 +shortdesc Macros for setting numbered entries in shuffled order +relocated 1 +longdesc This package provides macros and environments to allow the user +longdesc to typeset a series of cross-referenced, numbered "entries", +longdesc shuffled into random order, to produce an interactive novel or +longdesc "gamebook". This allows entries to be written in natural order +longdesc and shuffled automatically into a repeatable non-linear order. +longdesc Limited support is provided for footnotes to appear at the +longdesc natural position: the end of each entry, or the end of each +longdesc page, whichever is closest to the footnote mark. This is +longdesc unrelated to the gamebook package which is more concerned with +longdesc the formatting of entries rather than their order. The two +longdesc packages can be used together or separately. +containersize 3616 +containerchecksum 84c24df164a2f74e790a5ee64e3041510e7f9fc1f64e82a4004d8cf2db8c9c34f1853ac43741b5be08b98e44e9f3269e09019a114578036c7182bbf2a03e2e84 +doccontainersize 391300 +doccontainerchecksum 7584a7ad39a267f71a84111c17ee8b59393672a69dcd128004a368045a2f9540f1eb21a62b596be7dff29551ef6411fb53f9b0857ef841734cc26bf8acfe34b3 +docfiles size=99 + RELOC/doc/latex/gamebooklib/README details="Readme" + RELOC/doc/latex/gamebooklib/gamebooklib.pdf details="Package documentation" + RELOC/doc/latex/gamebooklib/gamebooklib_countpagesperseed.sh + RELOC/doc/latex/gamebooklib/gamebooklib_test.pdf details="Example of use" + RELOC/doc/latex/gamebooklib/gamebooklib_test.tex +srccontainersize 15104 +srccontainerchecksum 9e00870190f03892ebc2c8115b4ba46e88244b3824d732d4dce6b767c0b5fb479ef5f009a3c8b02f58278c140e399c3bc7b501048d94acc7e69647f679c438df +srcfiles size=14 + RELOC/source/latex/gamebooklib/Makefile + RELOC/source/latex/gamebooklib/gamebooklib.dtx + RELOC/source/latex/gamebooklib/gamebooklib.ins +runfiles size=3 + RELOC/tex/latex/gamebooklib/gamebooklib.sty +catalogue-ctan /macros/latex/contrib/gamebooklib +catalogue-license lppl1.3 +catalogue-topics games random +catalogue-version 1.3 + name gammas category Package revision 56403 @@ -125364,7 +129797,7 @@ catalogue-version 1.1 name garamond-libre category Package -revision 55166 +revision 64412 shortdesc The Garamond Libre font face relocated 1 longdesc Garamond Libre is a free and open-source old-style font family. @@ -125377,14 +129810,12 @@ longdesc design by Alexander Wilson. The font family includes support longdesc for Latin, Greek (monotonic and polytonic) and Cyrillic longdesc scripts, as well as small capitals, old-style figures, superior longdesc and inferior figures, historical ligatures, Byzantine musical -longdesc symbols, the IPA and swash capitals. The fonts are provided in -longdesc OpenType format, and are intended to be used with LuaLaTeX or -longdesc XeLaTeX via fontspec. +longdesc symbols, the IPA and swash capitals. execute addMap GaramondLibre.map -containersize 7141728 -containerchecksum 501f42272f35f6b454f9cdecec28b67ed7689a0a9d3b3a019b418ffbb9a116c1bba71bf1da971d6f39744ecbeebeec29e6a9546e11d672176a715570b3667aea -doccontainersize 86000 -doccontainerchecksum 2a88d41b8c52af7f8b1e143f31a87fd392b057846e390f77a3b5c471c287d57dd35e0fe544d00e6e5513decd7a68b2b2c1a6049b02f04fe25ea2d2825bf13a1a +containersize 7141676 +containerchecksum 2c8a9057bccac0b8187e7e7b38445102e2ee89885595d93eb3dcd88bea4fe18d73786b471812f9a0ba256a6fe16ceb3724902e587b3ce6a98a1461d554182698 +doccontainersize 86012 +doccontainerchecksum b8a575d15c7020287313aed6fc7f08d4d6d9cc02633527a657db4fd0fe39a25154f7dbbd9d6516ecd4662d08644d803822a19da43348f955f553725558c0dd6a docfiles size=24 RELOC/doc/fonts/garamond-libre/COPYING RELOC/doc/fonts/garamond-libre/README details="Readme" @@ -125923,34 +130354,30 @@ catalogue-contact-bugs https://github.com/dbenjaminmiller/garamond-libre/issues catalogue-contact-home https://dbmiller.org/type/garamond-libre.html catalogue-contact-repository https://github.com/dbenjaminmiller/garamond-libre catalogue-ctan /fonts/garamond-libre -catalogue-license mit +catalogue-license mit lppl catalogue-topics font font-body font-otf font-type1 font-serif font-greek font-cyrillic font-multilingual font-proportional font-supp font-t1enc catalogue-version 1.4 name garamond-math category Package -revision 52820 +revision 61481 shortdesc An OTF math font matching EB Garamond relocated 1 longdesc Garamond-Math is an open type math font matching EB Garamond longdesc (Octavio Pardo) and EB Garamond (Georg Mayr-Duffner). Many longdesc mathematical symbols are derived from other fonts, others are longdesc made from scratch. The metric is generated with a Python -longdesc script. The font is best used with XeTeX and the unicode-math -longdesc package. Other engines (e.g. LuaTeX; also: MS Word) are likely -longdesc to produce unsatifactory spacings. This font is still under -longdesc development, so do not expect it to be free of bugs. Any -longdesc component might be updated at any time. Issues, bug reports, -longdesc forks, and other contributions are welcome. -containersize 399076 -containerchecksum 5a6520612a6cfc8633149f4ea795049c017cb1a483104dc7258cd0c0afa0388d4348ebc0fd7d5b7229031adda5ba835c122b69d5310091106c972c5b8aa32891 -doccontainersize 244012 -doccontainerchecksum 3afc74609589c22ad0e540f2915c8cc27a2712a2409f0085098cd00df74007e2cecdecaa40cfe79e99ac6538e496d59bed9ca44cfb18dd2b7fce2620805623b3 -docfiles size=65 +longdesc script. Issues, bug reports and other contributions are +longdesc welcome. +containersize 407520 +containerchecksum fcab922fc4faa8468a2d8076664567c8533e95dc6767eabedee5c053bbdbb721890731f0d976a2d6047709f058a4d5e029996a5a5574912d21cb493f2975a76a +doccontainersize 292360 +doccontainerchecksum c7c5795e7d9de09a590dbfd7311786027be9dcbe51b1f40284639341953effbb0dfcb331061cad0a8d01df55c52611a8d61a6b62fba701565bb643826ba55734 +docfiles size=78 RELOC/doc/fonts/garamond-math/Garamond-Math.pdf details="Package documentation" RELOC/doc/fonts/garamond-math/Garamond-Math.tex RELOC/doc/fonts/garamond-math/README.md details="Readme" -runfiles size=197 +runfiles size=202 RELOC/fonts/opentype/public/garamond-math/Garamond-Math.otf catalogue-contact-bugs https://github.com/YuanshengZhao/Garamond-Math/issues catalogue-contact-home https://github.com/YuanshengZhao/Garamond-Math @@ -125984,15 +130411,15 @@ catalogue-topics calculation name garuda-c90 category Package -revision 37677 +revision 60832 shortdesc TeX support (from CJK) for the garuda font relocated 1 depend fonts-tlwg execute addMap garuda-c90.map containersize 3416 -containerchecksum 304e330de80c822862725f05da0c800ff8043d73398a48a4d88b9156d5575593aa1797e65f88093d3058594969fe3a288010efd2a13e12de52beb405ebfdbeec +containerchecksum a806538598cae0365968ab20936631a052dc65f9f6056c39197f7b1c7a5aad717a7a8b72ed2a1af347f8ce91f27d7dcd74b758db8f01fc7810a8d658990bcc28 srccontainersize 1368 -srccontainerchecksum 2e2b368b01952c710fa01b68b8b094e2c64905ba9e6375c3d6a5d82a4b63dea5f6343db3898472416ba9e7faa46d660f34bb2f6d3530aca753feb5aa5c1ffa2a +srccontainerchecksum 58f62ec8020489b69743c0591129967730f9ad0729f7cca343ab6e6fa6675122a1e37bf73f090cae050cb695a14dbfb3c52346e3c528e660484d2cb576aaca65 srcfiles size=1 RELOC/source/fonts/garuda-c90/garuda-c90.fontinst runfiles size=6 @@ -126029,48 +130456,6 @@ catalogue-license lppl catalogue-topics graphics-in-tex catalogue-version 3.0 -name gatech-thesis -category Package -revision 19886 -shortdesc Georgia Institute of Technology thesis class -relocated 1 -longdesc The output generated by using this class has been approved by -longdesc the Georgia Tech Office of Graduate Studies. It satisfies their -longdesc undocumented moving-target requirements in additional to the -longdesc actual documented requirements of the June 2002 Georgia Tech -longdesc Thesis Style Manual, as amended up to 2010. -containersize 32756 -containerchecksum c5928d0d383da4057a0ba00d2848d324624228f1a98f0f254b09fea35ba21e3ce655f1fbe02ecc6291921e43e9dbd2ae954d6199dc22c1390bf04670ca41038f -doccontainersize 130012 -doccontainerchecksum 9fe1e4342becab8b57d892256bfd0723afea3a3f4ad3edab2b3c374bdf410d14b3105f165aed56479e848939a5cf6c807112788ff3a82099641fa71f4e78b5ec -docfiles size=62 - RELOC/doc/latex/gatech-thesis/CHANGES - RELOC/doc/latex/gatech-thesis/COMPLIANCE - RELOC/doc/latex/gatech-thesis/COPYING - RELOC/doc/latex/gatech-thesis/ChangeLog - RELOC/doc/latex/gatech-thesis/INSTALL - RELOC/doc/latex/gatech-thesis/MANIFEST - RELOC/doc/latex/gatech-thesis/NEWS - RELOC/doc/latex/gatech-thesis/NOTES - RELOC/doc/latex/gatech-thesis/README details="Readme" - RELOC/doc/latex/gatech-thesis/TODO - RELOC/doc/latex/gatech-thesis/example-thesis.bib - RELOC/doc/latex/gatech-thesis/example-thesis.pdf - RELOC/doc/latex/gatech-thesis/example-thesis.tex -runfiles size=40 - RELOC/bibtex/bst/gatech-thesis/gatech-thesis-losa.bst - RELOC/bibtex/bst/gatech-thesis/gatech-thesis.bst - RELOC/makeindex/gatech-thesis/gatech-thesis-index.ist - RELOC/tex/latex/gatech-thesis/gatech-thesis-gloss.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-index.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-losa.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis-patch.sty - RELOC/tex/latex/gatech-thesis/gatech-thesis.cls -catalogue-ctan /macros/latex/contrib/gatech-thesis -catalogue-license gpl -catalogue-topics class dissertation -catalogue-version 1.8 - name gates category Package revision 29803 @@ -126195,7 +130580,7 @@ catalogue-topics linguistic name gbt7714 category Package -revision 57157 +revision 64633 shortdesc BibTeX implementation of China's bibliography style standard GB/T 7714-2015 relocated 1 longdesc The package provides a BibTeX implementation for the Chinese @@ -126205,31 +130590,36 @@ longdesc as well as a LaTeX package which provides the citation style longdesc defined in the standard. The package is compatible with natbib longdesc and supports language detection (Chinese and English) for each longdesc biblilography entry. -containersize 10608 -containerchecksum 72021c4eb7e1ee1b9b293801988df67c0e62fb5f46c7036c4dc75357a95a80d040782c4a71e98690858854d572351445fe6c06269ad8f926d62fd668095815a2 -doccontainersize 357032 -doccontainerchecksum c41fbed87dcb702241f8f8c3004854d725083f9e0dd2b3f1bb92a70210539617b728be086c2a7e823a8be0fc9b906cf965b9202fc5c12f4f05e87d73504444fb -docfiles size=95 +depend bibtex +depend natbib +depend url +containersize 11204 +containerchecksum f2f869bf4d507ac76ee576f1bb739bc5e5681d3f2cb1db64841f90dfb22a9b18aab04c5722e231280cb94f055ab002ed99fc965bdbb3d2bdeb8d953f704e73b2 +doccontainersize 477608 +doccontainerchecksum 17b79fb795d0b2a0f2c696da83ee1196750c1fef15c77d33353d6742443d43287b5bb96c349be8e58b0df538f4585f45b353234bb100318cbbc6de6f14192da9 +docfiles size=124 RELOC/doc/bibtex/gbt7714/CHANGELOG.md - RELOC/doc/bibtex/gbt7714/LICENSE + RELOC/doc/bibtex/gbt7714/DEPENDS.txt RELOC/doc/bibtex/gbt7714/README.md details="Readme" language="zh" RELOC/doc/bibtex/gbt7714/gbt7714.pdf details="Package documentation" language="zh" -srccontainersize 26628 -srccontainerchecksum 7e7e48208197fe92b939f569cbd0aaa96ba1b6b35821dece635c36572f3309f2af00d86ee70a6db35aa7ed261a4ca446dd857fdc1026bf18bf4c6adeb110ea68 -srcfiles size=30 +srccontainersize 27792 +srccontainerchecksum 0d7e44fdd1106800d2dac2cac49dfe4c9154498837e27880f0193fbc8033f2a74fe5670f79c929ce2216fef216288e5e072f1ccddd23cec85b6265ad569d21d0 +srcfiles size=31 RELOC/source/bibtex/gbt7714/gbt7714.dtx RELOC/source/bibtex/gbt7714/gbt7714.ins -runfiles size=26 +runfiles size=53 + RELOC/bibtex/bst/gbt7714/gbt7714-2005-author-year.bst + RELOC/bibtex/bst/gbt7714/gbt7714-2005-numerical.bst RELOC/bibtex/bst/gbt7714/gbt7714-author-year.bst RELOC/bibtex/bst/gbt7714/gbt7714-numerical.bst RELOC/tex/latex/gbt7714/gbt7714.sty catalogue-contact-announce https://github.com/CTeX-org/gbt7714-bibtex-style/releases -catalogue-contact-bugs https://github.com/CTeX-org/gbt7714-bibtex-style/issues -catalogue-contact-repository https://github.com/CTeX-org/gbt7714-bibtex-style +catalogue-contact-bugs https://github.com/zepinglee/gbt7714-bibtex-style/issues +catalogue-contact-repository https://github.com/zepinglee/gbt7714-bibtex-style catalogue-ctan /biblio/bibtex/contrib/gbt7714 catalogue-license lppl1.3c -catalogue-topics bibtex-supp biblatex chinese std-conform -catalogue-version 2.1 +catalogue-topics bibtex-supp chinese std-conform +catalogue-version 2.1.5 name gcard category Package @@ -126322,15 +130712,15 @@ catalogue-version 1.0.1 name gckanbun category Package -revision 58754 +revision 61719 shortdesc Kanbun typesetting for (u)pLaTeX and LuaLaTeX relocated 1 longdesc This package provides a Kanbun (Han Wen , "Chinese writing") longdesc typesetting for (u)pLaTeX and LuaLaTeX. -containersize 1996 -containerchecksum e3847d0d2d7273f0abf73d3d07524eb07358a7a61f42e9d72516bc20c4521916f1d68d1cf22cd266f7eb9e20b6687e8ff3cb12ef6524b02e713d1b1e653887cb +containersize 2008 +containerchecksum ccea354895392747e5c84d750ece8f3717a0f9c529fd5b8b7ae2554bbe607b4497b9a8d213c479d5ad11e8ebc40187799ffced6f08f4fefb4e6d3cf223566c98 doccontainersize 76744 -doccontainerchecksum 201dcf0ecf62b39ca8249f6fc9dcdaf1716c32102d0115924a37c4e0fb588af3d86130409c8f928a762a3a423273711136e9c2fe3fe33ad708a11d37a292b64f +doccontainerchecksum 4a885440883d615ad20dc083c768c3b64c3cdc627e1daca4008dbf07672ad62e8020a9b14f732d181c4a902adddd49908c4a0e41b3afbe2d68d2f90c5989e78b docfiles size=24 RELOC/doc/latex/gckanbun/LICENSE RELOC/doc/latex/gckanbun/README.md details="Readme" @@ -126339,6 +130729,7 @@ docfiles size=24 RELOC/doc/latex/gckanbun/test-gckanbun.tex runfiles size=2 RELOC/tex/latex/gckanbun/gckanbun.sty +catalogue-also kanbun catalogue-contact-repository https://github.com/munepi/gckanbun catalogue-ctan /language/japanese/gckanbun catalogue-license mit @@ -126425,7 +130816,7 @@ catalogue-topics genealogy font font-symbol font-specialist font-mf name genealogytree category Package -revision 55978 +revision 66513 shortdesc Pedigree and genealogical tree diagrams relocated 1 longdesc Pedigree and genealogical tree diagrams are proven tools to @@ -126437,13 +130828,14 @@ longdesc tree -- it is a more general graph. The package provides a set longdesc of tools to typeset genealogical trees (i.e., to typeset a set longdesc of special graphs for the description of family-like longdesc structures). The package uses an autolayout algorithm which can -longdesc be customized, e.g., to prioritize certain paths. -containersize 34104 -containerchecksum 80ff65cb67a5d431e316b6cb52d001ba63b346f117251a06c560c506f8adfc81644cc36d113b0a612acbc9b78c8627ead8c75a449486982ec786accaa79d2af5 -doccontainersize 4430236 -doccontainerchecksum 708639b248db280a26291d24594c70fdbefb8a4f6cb581ab5e95e1d2e1f122f29a5412ce876604afed42c881d02c4baaaae73aade99b246160895087394b7906 -docfiles size=2176 - RELOC/doc/latex/genealogytree/README details="Readme" +longdesc be customized, e. g., to prioritize certain paths. +containersize 36176 +containerchecksum 603091897c07e0d6643482ee754aa9f0a49ba4e71e3a426c35404f46c6f6fc43a6d24f721023706cf0c03b152ad3153a8322b440a89ee6542edbb8aa71a384f1 +doccontainersize 4836852 +doccontainerchecksum 88757eb6be6ade83a5125da7bb7bd0abb3d56367a330607fdea9b05929c8caaa4fad0be79863006e9048daa66aa0ce7ddddd1a2100ae9dfcfc835456c08453f4 +docfiles size=2726 + RELOC/doc/latex/genealogytree/CHANGES.md + RELOC/doc/latex/genealogytree/README.md details="Readme" RELOC/doc/latex/genealogytree/genealogytree-example-1.pdf details="Example 1" RELOC/doc/latex/genealogytree/genealogytree-example-2.pdf details="Example 2" RELOC/doc/latex/genealogytree/genealogytree-example-3.pdf details="Example 3" @@ -126451,7 +130843,7 @@ docfiles size=2176 RELOC/doc/latex/genealogytree/genealogytree-languages.pdf RELOC/doc/latex/genealogytree/genealogytree.doc.sources.zip RELOC/doc/latex/genealogytree/genealogytree.pdf details="Package documentation" -runfiles size=69 +runfiles size=77 RELOC/tex/latex/genealogytree/genealogytree.sty RELOC/tex/latex/genealogytree/gtrcore.contour.code.tex RELOC/tex/latex/genealogytree/gtrcore.drawing.code.tex @@ -126460,12 +130852,15 @@ runfiles size=69 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.catalan.code.tex + RELOC/tex/latex/genealogytree/gtrlang.chinese.code.tex RELOC/tex/latex/genealogytree/gtrlang.danish.code.tex RELOC/tex/latex/genealogytree/gtrlang.dutch.code.tex RELOC/tex/latex/genealogytree/gtrlang.english.code.tex RELOC/tex/latex/genealogytree/gtrlang.french.code.tex RELOC/tex/latex/genealogytree/gtrlang.german.code.tex RELOC/tex/latex/genealogytree/gtrlang.italian.code.tex + RELOC/tex/latex/genealogytree/gtrlang.portuguese.code.tex RELOC/tex/latex/genealogytree/gtrlang.spanish.code.tex RELOC/tex/latex/genealogytree/gtrlang.swedish.code.tex RELOC/tex/latex/genealogytree/gtrlib.debug.code.tex @@ -126475,7 +130870,7 @@ catalogue-also pst-pdgr catalogue-ctan /macros/latex/contrib/genealogytree catalogue-license lppl1.3 catalogue-topics genealogy pgf-tikz humanities -catalogue-version 2.01 +catalogue-version 2.3.0 name genmpage category Package @@ -126506,9 +130901,46 @@ catalogue-license lppl catalogue-topics layout boxing catalogue-version 0.3.1 +name gensymb +category Package +revision 64740 +shortdesc Generic symbols for both text and math mode +relocated 1 +longdesc Provides generic commands \degree, \celsius, \perthousand, +longdesc \micro and \ohm which work both in text and maths mode. Various +longdesc means are provided to fake the symbols or take them from +longdesc particular symbol fonts, if they are not available in the +longdesc default fonts used in the document. This should be perfectly +longdesc transparent at user level, so that one can apply the same +longdesc notation for units of measurement in text and math mode and +longdesc with arbitrary typefaces. Note that the package has been +longdesc designed to work in conjunction with units.sty. This package +longdesc used to be part of the was bundle, but has now become a package +longdesc in its own right. +containersize 2052 +containerchecksum 311de4fa6c68b21cdc8c655a7092d98772398e82bd9790e0bf00898a6575e234da44534635dfdd500eb7815d302a4487162f528452caf373ed11b7994682a43b +doccontainersize 221592 +doccontainerchecksum 4175231e5b998f26e913374ad20b2718d4c566e5b220bfe4de9f89ffc4422b2aa4c941acc067d392eb43a725d93457b1c10d8568f5ad0eb7c1aecd4fa83e9746 +docfiles size=60 + RELOC/doc/latex/gensymb/LICENSE + RELOC/doc/latex/gensymb/README details="Bundle readme" + RELOC/doc/latex/gensymb/gensymb.pdf details="Package documentation" +srccontainersize 5656 +srccontainerchecksum 56cc850ce5a2fb0d84b2232f591d3f1e3ed18d1924d365fdb6349237d98ac655b0881febaaed414f4903eeed7889385b4cf985eb3cf72c3fbb37392e8586f848 +srcfiles size=6 + RELOC/source/latex/gensymb/gensymb.dtx + RELOC/source/latex/gensymb/gensymb.ins +runfiles size=2 + RELOC/tex/latex/gensymb/gensymb.sty +catalogue-contact-repository https://gitlab.com/kjhtex/gensymb +catalogue-ctan /macros/latex/contrib/gensymb +catalogue-license lppl1.3 +catalogue-topics maths text-symbol +catalogue-version 1.0.2 + name gentium-tug category Package -revision 54512 +revision 63470 shortdesc Gentium fonts (in two formats) and support files relocated 1 longdesc Gentium is a typeface family designed to enable the diverse @@ -126521,46 +130953,93 @@ 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 Group; LaTeX and other supporting files; TeX-related longdesc documentation, and the SIL documentation and other files. execute addMap gentium-type1.map -containersize 3812200 -containerchecksum 4cc398baae4fd17854f92b2c995b77316111018d3e7c86c89cbc966febd26b329024227d295be440019fab6d4f6008dd2110a3005d1a86d88113e104b9f2c9e8 -doccontainersize 1247120 -doccontainerchecksum 2bb2267aa54d027fc83f492125943529497c3c611e187eb12d099d46f96fe5d48a56837332eec1c7ffde97007f6f311057aadf4e1ddc1862a490912b7a1c434b -docfiles size=393 - RELOC/doc/fonts/gentium-tug/ChangeLog - RELOC/doc/fonts/gentium-tug/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/Gentium/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/Gentium/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/Gentium/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/Gentium/OFL.txt - RELOC/doc/fonts/gentium-tug/Gentium/QUOTES.txt - RELOC/doc/fonts/gentium-tug/Gentium/README.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumBasic/OFL.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/GENTIUM-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/OFL.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/README.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/DOCUMENTATION.txt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.odt - RELOC/doc/fonts/gentium-tug/GentiumPlus/documentation/GentiumPlus-features.pdf - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/FONTLOG.txt - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/README.txt - RELOC/doc/fonts/gentium-tug/GentiumPlusCompact/feat_set_tuned.xml - RELOC/doc/fonts/gentium-tug/Makefile - RELOC/doc/fonts/gentium-tug/OFL-FAQ.txt - RELOC/doc/fonts/gentium-tug/OFL.txt +containersize 8760192 +containerchecksum 03a32d7926747e42f25daf87ef08f866b9145a7782fd372a4688404951211a3528bcad7ee5e4a6888cd8ede2602930f628141953c840268041edbde2624006ec +doccontainersize 1859064 +doccontainerchecksum 7cef5c563fa13b5b8458e2932be450edd48168da9db9ac45ab16ba608323beb4ea79f8dabf2c38b13b479de9ff3065a0cfa84ff5c259aea95495248e9794ec18 +docfiles size=636 + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/OFL-FAQ.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/OFL.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/README.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/DOCUMENTATION.txt + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/about.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/theme.css + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/themepdf.css + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/webfonts.css + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/css/webfontsttf.css + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/assets/images/Gentium_design_balance.png + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/charset.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/design.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/developer.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/faq.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/features.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/history.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/index.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/about.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/charset.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/design.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/developer.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/faq.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/features.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/history.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/index.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/resources.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/support.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/pdf/versions.pdf + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/resources.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/about.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/announcement.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/charset.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/design.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/developer.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/faq.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/features.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/history.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/index.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/makepsmd.py + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pandocfilters/filter-html.lua + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pandocfilters/filter-pdf.lua + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/about.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/charset.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/design.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/developer.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/faq.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/features.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/history.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/index.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/resources.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/support.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/pdftemp/versions.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/about.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/charset.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/design.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/developer.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/faq.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/features.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/history.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/resources.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/productsite/support.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/resources.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/support.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/template.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/templatepdf.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/source/versions.md + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/support.html + RELOC/doc/fonts/gentium-tug/GentiumPlus-6.101/documentation/versions.html RELOC/doc/fonts/gentium-tug/README details="Readme" - RELOC/doc/fonts/gentium-tug/gentium.pdf details="Package documentation" - RELOC/doc/fonts/gentium-tug/gentium.tex -srccontainersize 15660 -srccontainerchecksum ff084fc9f2644ac49e9267c1f3a87c09445399db4e3e8633e25bee5b54b15a091053a0754ecabb2f67a0e85a07060ab81cdf8353adc24dc7f0087ed104bd8d92 -srcfiles size=30 + RELOC/doc/fonts/gentium-tug/gentium-tug/ChangeLog + RELOC/doc/fonts/gentium-tug/gentium-tug/FONTLOG.txt + RELOC/doc/fonts/gentium-tug/gentium-tug/Makefile + RELOC/doc/fonts/gentium-tug/gentium-tug/README details="Readme" + RELOC/doc/fonts/gentium-tug/gentium-tug/gentium.pdf details="Package documentation" + RELOC/doc/fonts/gentium-tug/gentium-tug/gentium.tex +srccontainersize 21440 +srccontainerchecksum b2743e38fe079ca3d46711fbcf810f4feaa1bf781e35bbe33b62cf45cca3b2ee1ab6da22d61965c440f987f9850e614d3f1691f8aa0d01beb0f56984c31e66f8 +srcfiles size=47 RELOC/source/fonts/gentium-tug/ChangeLog RELOC/source/fonts/gentium-tug/Makefile RELOC/source/fonts/gentium-tug/generate-support-files.rb @@ -126573,19 +131052,33 @@ srcfiles size=30 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/GentiumBookPlus-Bold-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumBookPlus-BoldItalic-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumBookPlus-Italic-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumBookPlus-Regular-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-Bold-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-BoldItalic-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-Italic-Czech.kern + RELOC/source/fonts/gentium-tug/type1/GentiumPlus-Regular-Czech.kern RELOC/source/fonts/gentium-tug/type1/Makefile + RELOC/source/fonts/gentium-tug/type1/README 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/kern-test-greek.txt + RELOC/source/fonts/gentium-tug/type1/kern-word-list-caron.txt + RELOC/source/fonts/gentium-tug/type1/kern-word-list-cyrillic.txt RELOC/source/fonts/gentium-tug/type1/kerncorrection.py -runfiles size=3440 - RELOC/fonts/afm/public/gentium-tug/GenBasB.afm - RELOC/fonts/afm/public/gentium-tug/GenBasBI.afm - RELOC/fonts/afm/public/gentium-tug/GentiumPlus-I.afm - RELOC/fonts/afm/public/gentium-tug/GentiumPlus-R.afm +runfiles size=4396 + RELOC/fonts/afm/public/gentium-tug/GentiumBookPlus-Bold.afm + RELOC/fonts/afm/public/gentium-tug/GentiumBookPlus-BoldItalic.afm + RELOC/fonts/afm/public/gentium-tug/GentiumBookPlus-Italic.afm + RELOC/fonts/afm/public/gentium-tug/GentiumBookPlus-Regular.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-Bold.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-BoldItalic.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-Italic.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-Regular.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 @@ -126613,120 +131106,269 @@ runfiles size=3440 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/dvips/gentium-tug/gentiumbook-type1.map + RELOC/fonts/map/dvips/gentium-tug/gentiumplus-type1.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/map/pdftex/gentium-tug/gentiumbook-agr.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-ec.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-l7x.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-lgr.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-ot1.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-qx.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-t2a.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-t2b.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-t2c.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-t5.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-texnansi.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-truetype.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-ts1.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumbook-x2.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-agr.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-ec.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-l7x.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-lgr.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-ot1.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-qx.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-t2a.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-t2b.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-t2c.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-t5.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-texnansi.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-truetype.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-ts1.map + RELOC/fonts/map/pdftex/gentium-tug/gentiumplus-x2.map + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-bolditalic.tfm 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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-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-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-bolditalic.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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-bolditalic.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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-bolditalic.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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-bolditalic.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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-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-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-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-gentiumbook-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumbook-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-bold-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-bolditalic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-bolditalic.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/fonts/truetype/public/gentium-tug/GentiumBookPlus-Bold.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumBookPlus-BoldItalic.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumBookPlus-Italic.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumBookPlus-Regular.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-Bold.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-BoldItalic.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-Italic.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-Regular.ttf + RELOC/fonts/type1/public/gentium-tug/GentiumBookPlus-Bold.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumBookPlus-BoldItalic.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumBookPlus-Italic.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumBookPlus-Regular.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-Bold.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-BoldItalic.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-Italic.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-Regular.pfb RELOC/tex/latex/gentium-tug/gentium.sty + RELOC/tex/latex/gentium-tug/gentiumbook.sty RELOC/tex/latex/gentium-tug/l7xgentium.fd + RELOC/tex/latex/gentium-tug/l7xgentiumbook.fd RELOC/tex/latex/gentium-tug/lgrgentium.fd + RELOC/tex/latex/gentium-tug/lgrgentiumbook.fd RELOC/tex/latex/gentium-tug/ly1gentium.fd + RELOC/tex/latex/gentium-tug/ly1gentiumbook.fd RELOC/tex/latex/gentium-tug/ot1gentium.fd + RELOC/tex/latex/gentium-tug/ot1gentiumbook.fd RELOC/tex/latex/gentium-tug/qxgentium.fd + RELOC/tex/latex/gentium-tug/qxgentiumbook.fd RELOC/tex/latex/gentium-tug/t1gentium.fd + RELOC/tex/latex/gentium-tug/t1gentiumbook.fd RELOC/tex/latex/gentium-tug/t2agentium.fd + RELOC/tex/latex/gentium-tug/t2agentiumbook.fd RELOC/tex/latex/gentium-tug/t2bgentium.fd + RELOC/tex/latex/gentium-tug/t2bgentiumbook.fd RELOC/tex/latex/gentium-tug/t2cgentium.fd + RELOC/tex/latex/gentium-tug/t2cgentiumbook.fd RELOC/tex/latex/gentium-tug/t5gentium.fd + RELOC/tex/latex/gentium-tug/t5gentiumbook.fd RELOC/tex/latex/gentium-tug/ts1gentium.fd + RELOC/tex/latex/gentium-tug/ts1gentiumbook.fd RELOC/tex/latex/gentium-tug/x2gentium.fd -catalogue-contact-home http://tug.org/gentium + RELOC/tex/latex/gentium-tug/x2gentiumbook.fd +catalogue-alias gentium +catalogue-contact-home https://tug.org/gentium catalogue-ctan /fonts/gentium-tug catalogue-license ofl other-free catalogue-topics font font-body font-multilingual font-greek font-cyrillic font-serif font-proportional font-type1 font-ttf font-supp font-t1enc -catalogue-version 1.1.1 +catalogue-version 1.102 name gentle category Package @@ -126749,7 +131391,7 @@ catalogue-topics tut-plaintex name gentombow category Package -revision 56665 +revision 64333 shortdesc Generate Japanese-style crop marks relocated 1 longdesc This bundle provides a LaTeX package for generating @@ -126762,11 +131404,11 @@ longdesc pxgentombow.sty: Superseded by gentombow.sty; kept for longdesc compatibility only. bounddvi.sty: Set papersize special to DVI longdesc file. Can be used on LaTeX/pLaTeX/upLaTeX (with DVI output longdesc mode) with dvips or dvipdfmx drivers. -containersize 10892 -containerchecksum e97b138d5359c3fa0635bf56001ecc7c6a5afb2ab2a01fd8817cbd956adce97bee67632f4e3ae40d56e5d2ce06bc07ab33b52bbe3978f14bf4957d2647781813 -doccontainersize 504052 -doccontainerchecksum 89912adef5b6572945a81835b1dfd0648699c03e81c6f4e06309dbb8230f536f5c93bcd46a3acb508ca92398df07cdf71e8f5fa7a2f889220a03b27ad78ac110 -docfiles size=141 +containersize 10908 +containerchecksum 4aa08751c2fc9c6709031d53637e0c2dc734926160f357df53bed6e4c33c4340e33f9dbb92d3ec2bf5dcc7b552c9508622986edc3c30d6fe15cc8334a0773779 +doccontainersize 518772 +doccontainerchecksum af1d418f108bb050d8380223548d7fd77681e942a1a48aff8b7fb2c7e7a4d79b288e47099382e6ab9218bca78dc5406a57a42de00c2029f080285d6f11183a5c +docfiles size=145 RELOC/doc/latex/gentombow/LICENSE RELOC/doc/latex/gentombow/README.md details="Readme" RELOC/doc/latex/gentombow/bounddvi-en.pdf details="Documentation of the bounddvi package (English)" @@ -126793,7 +131435,7 @@ catalogue-topics japanese layout-page page-control name geometry category Package -revision 54080 +revision 61719 shortdesc Flexible and complete interface to document dimensions relocated 1 longdesc The package provides an easy and flexible user interface to @@ -126810,10 +131452,10 @@ longdesc it's set up to the output (whether via DVI \specials or via longdesc direct interaction with pdf(La)TeX). depend graphics depend iftex -containersize 8700 -containerchecksum ca5393e23639894401094084c3c2e30acf12491dcbd3968a4af79037b6dfb6b86f07acfec6886d89a261991cbdebdc846d9804f125aecd4cd77c3e71968bcfe4 +containersize 8712 +containerchecksum ed64996404299bd8379197b293baed752ff064e04eec87ffafdfd55cf21c2c48174560eb1c3bcdb0b06190badb9d9cc699aaa7a2ac8a5c537b0c818a423770fc doccontainersize 864536 -doccontainerchecksum 4bd5ec66f725516ef4d5d3e83e3b75a9b4408fe947161e3d885b929b34c4b60437c3fcd32472486aec12c9665b5c0d71a22896055a613c641bda4c4aa987f76f +doccontainerchecksum a58ab22ae6df349d81b5ddf18a4e9b7dbb5804a497bbaff42acde18ca59fe8a19bfee34293debc23e44c690456e6a1b1d87614fbb85dc6cb3b3b7d330fc866d7 docfiles size=230 RELOC/doc/latex/geometry/README.md details="Package Readme" RELOC/doc/latex/geometry/changes.txt @@ -126823,7 +131465,7 @@ docfiles size=230 RELOC/doc/latex/geometry/geometry.cfg RELOC/doc/latex/geometry/geometry.pdf details="Package documentation (English)" language="en" srccontainersize 47940 -srccontainerchecksum 03c27863d6bded295176550743bbe7cbe6aea2b8f1365f7d0cadabd6d29b699efab98b98d2ea5f8baeaf19963a681b9852b2bd01769b326942c781fd0644644e +srccontainerchecksum f4e1e8c0f5b8f443c8f5e6ad948cb1736ed944384daec20e9402c871872e86248b3167c72e07fc94fe32ef6ab36c17d2f177135ccf99f68d1c892af0a695bcbf srcfiles size=81 RELOC/source/latex/geometry/geometry-de.drv RELOC/source/latex/geometry/geometry-de.dtx @@ -126834,13 +131476,49 @@ srcfiles size=81 runfiles size=11 RELOC/tex/latex/geometry/geometry.sty catalogue-also vmargin typearea geometry-de -catalogue-contact-bugs https://github.com/davidcarlisle/geometry/issues -catalogue-contact-repository https://github.com/davidcarlisle/geometry +catalogue-contact-bugs https://github.com/LaTeX-Package-Repositories/geometry/issues +catalogue-contact-repository https://github.com/LaTeX-Package-Repositories/geometry catalogue-ctan /macros/latex/contrib/geometry catalogue-license lppl1.3c catalogue-topics geometry catalogue-version 5.9 +name geradwp +category Package +revision 63134 +shortdesc Document class for the Cahiers du GERAD series +relocated 1 +longdesc This package provides the geradwp class, a class based on +longdesc article and compatible with LaTeX. With this class, researchers +longdesc at GERAD will be able to write their working paper while +longdesc complying to all the presentation standards required by the +longdesc Cahiers du GERAD series. +containersize 5916 +containerchecksum b5b4cecbe95f3091348b917d9cafa31a5249bcf0b11b5a0be405d980c3a22d7af6f241af12ff999b5bbdf0aa3aebfff537e8c01fea9bdc904709eb66b3fc78bb +doccontainersize 847744 +doccontainerchecksum e12924c6e3437f0d2665bbfd97aa7d88c491a159866a3ec7ffdf9f84298e4bc0ff336487a194b68f0ebfea67dbf415749118328ac1606f02f32193963f6339c9 +docfiles size=271 + RELOC/doc/latex/geradwp/LICENSE.txt + RELOC/doc/latex/geradwp/README.md details="Readme" + RELOC/doc/latex/geradwp/geradwp-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/geradwp/geradwp.pdf details="Package documentation (English)" + RELOC/doc/latex/geradwp/geradwp.tex +srccontainersize 23620 +srccontainerchecksum faf85f46bfe88f5ea1220e69b514f6c026096ca331f53bb19d2ef2f1cc728cf8b9c46d394579bf78ef60d1b75c3164c2c8c204e959d4a298dbbef2f9f2dbe5e5 +srcfiles size=23 + RELOC/source/latex/geradwp/geradwp.dtx + RELOC/source/latex/geradwp/geradwp.ins +runfiles size=6 + RELOC/tex/latex/geradwp/geradwp.cls +catalogue-contact-bugs https://github.com/metalogueur/geradwp/issues +catalogue-contact-home https://www.gerad.ca/fr/papers +catalogue-contact-repository https://github.com/metalogueur/geradwp +catalogue-contact-support https://www.gerad.ca/fr/publications/papers/cahiers-procedure +catalogue-ctan /macros/latex/contrib/geradwp +catalogue-license lppl1.3c +catalogue-topics class doc-templ misc-paper +catalogue-version 1.1 + name german category Package revision 42428 @@ -127089,15 +131767,6 @@ containerchecksum a01ea5f4c6ac4f41f329aca6e51b44e35bdf6d5c384e508135218f6fd1e140 binfiles arch=armhf-linux size=1 bin/armhf-linux/getmapdl -name getmap.i386-cygwin -category Package -revision 34971 -shortdesc i386-cygwin files of getmap -containersize 340 -containerchecksum be4789c00a055d47e26562ae16df6ae834900d2a892ac11f3690cb793e99777a6d64304bb13b8d1b4a343d50c61cde9f6dc8065bf2d1619fbc5f796e795fd0a0 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/getmapdl - name getmap.i386-freebsd category Package revision 34971 @@ -127143,14 +131812,14 @@ containerchecksum 4d64bc0341396eaa915e8fd78ba3f9f6703f2a458e76153aea09f7eb0e7147 binfiles arch=universal-darwin size=1 bin/universal-darwin/getmapdl -name getmap.win32 +name getmap.windows category Package -revision 34634 -shortdesc win32 files of getmap -containersize 680 -containerchecksum 03c2788a14c4b9f85a70cf27af997daeefe0c69cfbe34c064c42befc60c88cfa29321c31adcc6d40cceba848181a8104728e26a0193d482640be7856416c05d7 -binfiles arch=win32 size=1 - bin/win32/getmapdl.exe +revision 65891 +shortdesc windows files of getmap +containersize 2304 +containerchecksum 9630d00e12bff3d99d122c67b6d646d99855f5f13c9c84fd37e92a65720380c360bf2f92ede7d828290e44869b2e613621439cca477cba10a80af15dc7f31d32 +binfiles arch=windows size=2 + bin/windows/getmapdl.exe name getmap.x86_64-cygwin category Package @@ -127251,6 +131920,44 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version 1.6 +name gfdl +category Package +revision 65415 +shortdesc Support for using GFDL in LaTeX +relocated 1 +longdesc The GFDL (GNU Free Documentation License) is a popular license +longdesc used for programming manuals, documentations and various other +longdesc textual works too, but using this license with LaTeX is not +longdesc very convenient. This package aims to help users in easily +longdesc using the license without violating any rules of the license. +longdesc With a handful of commands, users can rest assured that their +longdesc document will be perfectly licensed under GFDL. +containersize 11824 +containerchecksum d93bba6171e3179b559a26ce246b6de423c06d0ec4e360e33b4d140be07645b90aea070d41d988d0ddb22f6686789e96d9df5e3f1c8ff8cc23829b7be0d015db +doccontainersize 168916 +doccontainerchecksum 24034eb02baab28efccb6569425229f6e2dd4a0254c926e9153eb6e8802d0cd18d9af7ff4229dc1f8b39fb5dddff767b33e026b12a3443cb3c62f1f0f5e64ade +docfiles size=65 + RELOC/doc/latex/gfdl/COPYING + RELOC/doc/latex/gfdl/README.txt details="Readme" + RELOC/doc/latex/gfdl/gfdl.pdf details="Package documentation" +srccontainersize 6180 +srccontainerchecksum be816d4aa6547ae5e48201b5ec61618f2868422f2a3bb87422543ef4faa1461b8b7368a1dee29d36881e0e051b7d684ad90f5dac4b5f43dda70b5e11540c5b76 +srcfiles size=6 + RELOC/source/latex/gfdl/gfdl.dtx + RELOC/source/latex/gfdl/gfdl.ins +runfiles size=20 + RELOC/tex/latex/gfdl/gfdl-tex-1p1.tex + RELOC/tex/latex/gfdl/gfdl-tex-1p2.tex + RELOC/tex/latex/gfdl/gfdl-tex-1p3.tex + RELOC/tex/latex/gfdl/gfdl.sty +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=gfdl-tex +catalogue-contact-home https://puszcza.gnu.org.ua/projects/gfdl-tex +catalogue-contact-repository https://git.gnu.org.ua/gfdl-tex.git/ +catalogue-ctan /macros/latex/contrib/gfdl +catalogue-license gpl3+ fdl +catalogue-topics licence-mgmt +catalogue-version 0.1 + name gfnotation category Package revision 37156 @@ -127910,7 +132617,7 @@ catalogue-version 001.001 name gfsneohellenic category Package -revision 54080 +revision 63944 shortdesc A font in the Neo-Hellenic style relocated 1 longdesc The NeoHellenic style evolved in academic circles in the 19th @@ -127921,10 +132628,10 @@ longdesc characters, and has been adjusted to work well with the longdesc cmbright fonts for mathematics support. LaTeX support of the longdesc fonts is provided, offering OT1, T1 and LGR encodings. execute addMap gfsneohellenic.map -containersize 977640 -containerchecksum bd8fbea65fafc3c09fd1a53ffd7de48e93f160a49bba902efe155913bbda5fd2bf38e0d4d2242ec8152dc869959128cfdad49ded95d196aed1c39fbaad62c527 -doccontainersize 10276 -doccontainerchecksum d10d56caab42b2bd25f246726616e359ee10f934469e59a818753d1e7c4d876018cfdb86f466c49f58122fe9d7e67ca6b811b25b5e2d94b120f296ce87a2a48c +containersize 977780 +containerchecksum 7290de85142975c61b28cc8d3e5919805590e2be5f5b442f0c371c393f92012ef6b00997bbac1aa1fb63914578e99eb5e6b26f6af8f51cb5ec7f4c53ede51fd6 +doccontainersize 10308 +doccontainerchecksum 231ea0eb57834e5b781cc3e8f49a85e2564756abe3812a432212fa7e85468117a1d80d6af5db8cec754eb1996d3b9716c12c403b1865d60b18660f454a2323b8 docfiles size=11 RELOC/doc/fonts/gfsneohellenic/OFL-FAQ.txt RELOC/doc/fonts/gfsneohellenic/OFL.txt @@ -128049,11 +132756,12 @@ catalogue-contact-home http://myria.math.aegean.gr/labs/dt/ catalogue-ctan /fonts/greek/gfs/gfsneohellenic catalogue-license other-free catalogue-topics font font-otf font-greek +catalogue-version 1.02 name gfsneohellenicmath category Package -revision 52570 -shortdesc A Greek math font in the Neo-Hellenic style +revision 63928 +shortdesc A math font in the Neo-Hellenic style relocated 1 longdesc The GFSNeohellenic font, a historic font first designed by longdesc Victor Scholderer, and digitized by George Matthiopoulos of the @@ -128066,20 +132774,19 @@ longdesc beamer documents since this is a Sans Math font. The longdesc GFSNeohellenic fontfamily supports many languages (including longdesc Greek), and it is distributed (both text and math) under the longdesc OFL license. -containersize 308036 -containerchecksum 1dbce2d775c204b758b34c66adfa7af5315ba5d40f577a2e5f8bc37aedd4fd5814dccf31e6830804f8b8ededcfe88eed9f0ea020fb411e439777bc19d88698b8 -doccontainersize 114840 -doccontainerchecksum 5f511a3433bbfe68bd2240791126de6254f5dc552a24bd344aa33e2c8c93a08ed924b5d900d8bba1cd2fb03a2349ccd0c7233ae9b54db5f888b68bf97bad7f05 -docfiles size=30 - RELOC/doc/fonts/gfsneohellenicmath/MathematicsCheatSheet.pdf details="Package documentation" +containersize 296192 +containerchecksum 17e81da77241b3dcf6727ee8e954d9ea24a59a235d8e454b77204f99bec343d020803790ce6ce82a22226ef48ff29e65d84b6ec90e44286addd3ca727e8fbf1c +doccontainersize 1436 +doccontainerchecksum efb0faa6617a402b6d840d9f20303a8acaf4140c60b8de285dbbb9794dc6212715cec6d1fd2cdee65aaf348ed1184ad66c480e00843801203f47fd3a4058250a +docfiles size=1 RELOC/doc/fonts/gfsneohellenicmath/README details="Readme" -runfiles size=166 +runfiles size=162 RELOC/fonts/opentype/public/gfsneohellenicmath/GFSNeohellenicMath.otf RELOC/tex/latex/gfsneohellenicmath/gfsneohellenicot.sty catalogue-ctan /fonts/gfsneohellenicmath catalogue-license ofl catalogue-topics font font-type1 font-otf font-greek maths font-maths -catalogue-version 1.0.1 +catalogue-version 1.02 name gfsporson category Package @@ -128430,7 +133137,7 @@ catalogue-version 1.1 name gillius category Package -revision 32068 +revision 64865 shortdesc Gillius fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -128439,17 +133146,17 @@ longdesc serif fonts and condensed versions of them, designed by Hirwen longdesc Harendal. According to the designer, the fonts were inspired by longdesc Gill Sans. execute addMap gillius.map -containersize 941896 -containerchecksum 9620e63fa3a9a981bdb20cbd6d8002179c722e844df0a18566593acef864f134a894a7e1920fbc4494467b1301af0bbf9ee80fb10bcc192762e5b2505fa8becd +containersize 941900 +containerchecksum f2ce20c1650588af9f446ffc6d69835e4e970def915e3912ef36ed8d065d717ccbeb125a783768c360328ba6d44e15f954348957d774dec8eb3b84f4b8e00406 doccontainersize 216008 -doccontainerchecksum df8fdeb2055b4d3383eb6ebab3dc4fb92774a96d7b31e7bdd7a238e215619710a8c0ec3fe9593213535933fd76c38947ed295df1a628aee7a7d7b21078f5ffb4 +doccontainerchecksum df8f143a6a80e9e5038744744b649fc26d042672eca7080fc8493a965ef4e3bcfb714735e83ae9a3bb500e3a298bc9bc9d940ff343caaed4ebfb8bf8d8101fb8 docfiles size=66 RELOC/doc/fonts/gillius/COPYING RELOC/doc/fonts/gillius/Gillius-cat.pdf RELOC/doc/fonts/gillius/README details="Readme" RELOC/doc/fonts/gillius/gillius-samples.pdf details="Gillius font samples" RELOC/doc/fonts/gillius/gillius-samples.tex - RELOC/doc/fonts/gillius/gillius2-samples.pdf details="Gillius font samples" + RELOC/doc/fonts/gillius/gillius2-samples.pdf details="Gillius No. 2 font samples" RELOC/doc/fonts/gillius/gillius2-samples.tex runfiles size=628 RELOC/fonts/enc/dvips/gillius/gls_4bsedw.enc @@ -128769,12 +133476,12 @@ runfiles size=628 RELOC/tex/latex/gillius/gillius2.sty catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html catalogue-ctan /fonts/gillius -catalogue-license gpl2 -catalogue-topics font font-sans font-type1 font-otf +catalogue-license gpl2+ lppl +catalogue-topics font font-body font-proportional font-sans font-type1 font-otf font-supp font-t1enc name gincltex category Package -revision 56291 +revision 64967 shortdesc Include TeX files as graphics (.tex support for \includegraphics) relocated 1 longdesc The package builds on the standard LaTeX packages graphics @@ -128785,23 +133492,23 @@ longdesc .tex extension. Some of the lower level operations like longdesc clipping and trimming are implemented using the adjustbox longdesc package which includes native pdfLaTeX support and uses the pgf longdesc package for other output formats. -containersize 1908 -containerchecksum 465fa04e22924d68b3e92dbb0c8dc5f8f159ae88881127055d94e21a46ad8b8e65b08ee4cc872919188db8255c8ea095c32c5539997007873fcff16503029c16 +containersize 1900 +containerchecksum 2137967697765b1167f36a858d2eda778b43ff1d681ec0d8af7963d2ab4a92448c6c1ad6933975afcc211d301cf168528e7ded7c3114c4b5ec580f42d8a7b664 doccontainersize 168440 -doccontainerchecksum e44368814c57ae40fff7976c70cb160e43e608051ab2d5c46363cd82ea08c3c12a33fb6b2ddcf7f74816c5ca60284c6880c9d7340aa8a8afea77ef4d9cee689e +doccontainerchecksum 86ee14069c5522d7c0713a532627bf29e8cf71ec4c86184377cdcd8a73dcf0f034be9e92b8ff7c2caef8310f968c956d712f3281eb6e4d36e83a3464149489b9 docfiles size=43 RELOC/doc/latex/gincltex/README details="Readme" RELOC/doc/latex/gincltex/gincltex.pdf details="Package documentation" srccontainersize 5132 -srccontainerchecksum 9c9eda687dfd61585ddfa1a8680353cd863a1138c3fe0f1cd86f99fb34fc3c5b2ecb8a3e3278e6799ab0a5447e1d59a925d31bea5fa34913c1abd04af18823c8 +srccontainerchecksum ea7bb92e9f71606b39374bf43704187bd627ffa20e686d2ca09a8ea4c825e5cc363cf7cfb2a6811df7c82ff8773aa058362b9103052646e7ef5febf690abad22 srcfiles size=5 RELOC/source/latex/gincltex/gincltex.dtx RELOC/source/latex/gincltex/gincltex.ins runfiles size=1 RELOC/tex/latex/gincltex/gincltex.sty -catalogue-contact-bugs https://sourceforge.net/p/gincltex/tickets/ -catalogue-contact-home https://sourceforge.net/p/gincltex/ -catalogue-contact-repository https://sourceforge.net/p/gincltex/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/gincltex/issues +catalogue-contact-home https://github.com/MartinScharrer/gincltex +catalogue-contact-repository https://github.com/MartinScharrer/gincltex.git catalogue-ctan /macros/latex/contrib/gincltex catalogue-license lppl1.3 catalogue-topics graphics listing @@ -128943,15 +133650,6 @@ containerchecksum 9373010c324a38474d5a6fb329f66a18f2a128f13a39925dd2bd24a787eb39 binfiles arch=armhf-linux size=1 bin/armhf-linux/git-latexdiff -name git-latexdiff.i386-cygwin -category Package -revision 54732 -shortdesc i386-cygwin files of git-latexdiff -containersize 340 -containerchecksum 5404f28698b227a6df2cb2e506f84b6d4aef522ff31cc41f8ef24f59395c430dbe8c015c277b991bce4a5f8caa5d4a5bc7cb117d20391c13d791fa3fc98f7c88 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/git-latexdiff - name git-latexdiff.i386-freebsd category Package revision 54732 @@ -129173,9 +133871,43 @@ catalogue-license lppl1.3 catalogue-topics version-control doc-mgmt catalogue-version 0.0.beta +name gitstatus +category Package +revision 64662 +shortdesc Include Git information in the document as watermark or via variables +relocated 1 +longdesc If your LaTeX-document is version-controlled with git, you +longdesc might encounter situations, where you want to include some +longdesc information of your git-repository into your LaTeX-document- +longdesc e.g. to keep track on who gave you feedback on which version of +longdesc your document. This git-information can be included on every +longdesc page by a watermark or (for custom needs) via provided +longdesc variables. +containersize 1544 +containerchecksum 153b9df6e1629d42a1c96a4f6c4c25dbe180db8976a102d633cd54ac36b75c1650328f8c5039ebb10c7927f7d6717a9260f39b7de6c0f9f9f37fb6fcfa9dffad +doccontainersize 290508 +doccontainerchecksum e7741e738bafe379f71bd77aaa9b2a33c26b5da13f659181eddab01fcf8209ffbd0604d0b374368b7d814ca9608503f9e4004730871845e8f7b491e40bcb79f3 +docfiles size=77 + RELOC/doc/latex/gitstatus/LICENSE + RELOC/doc/latex/gitstatus/README.md details="Readme" + RELOC/doc/latex/gitstatus/example.tex + RELOC/doc/latex/gitstatus/gitstatus.pdf details="Package documentation" +srccontainersize 2624 +srccontainerchecksum 23ab1b1fe293fc842eb9ed3306e2b70d2fae8ba62178b64b29872f933bdd8f80b0991358fbd6aadfa194185790632acf2ec5249ef2fa9d490913072ba1b0660a +srcfiles size=3 + RELOC/source/latex/gitstatus/gitstatus.dtx + RELOC/source/latex/gitstatus/gitstatus.ins +runfiles size=1 + RELOC/tex/latex/gitstatus/gitstatus.sty +catalogue-contact-home https://github.com/mgrub/gitstatus +catalogue-ctan /macros/latex/contrib/gitstatus +catalogue-license lppl1.3 +catalogue-topics decoration watermark +catalogue-version 1.1 + name gitver category Package -revision 56810 +revision 63920 shortdesc Get the current git hash of a project and typeset it in the document relocated 1 longdesc This package will get a description of the current git version @@ -129185,24 +133917,25 @@ longdesc footers unless the option "noheader" is passed. The package longdesc also defines a command \versionBox which outputs a box longdesc containing the version and date of compilation. The package longdesc requires hyperref, catchfile, pdftexcmds, and datetime. -containersize 2272 -containerchecksum de9440bf5a42e65d9bcea03a0ae02a77499540ed5a3f35f48f55cbf8973685c08413e8770e5aef430dedeb24ac881e15bcf72f06c689909a3988b6c3a2ce6054 -doccontainersize 126392 -doccontainerchecksum 0661e3b6e92fc80e638966e7df452693cf3a3062f9b75016d636eed986dfa265cc8b240ec8d004a604c08e2fd8fe0d75eeada9c4ce554f1dc443e5ad4a0de296 -docfiles size=40 +containersize 2772 +containerchecksum c2a82b062f130225f36c66827deead41ad644512160351e216fd047b6f4bde03ee4798e5a753f319ce83b74cfe0ada5a9346b1ab12ee1058ce073ba114ed890f +doccontainersize 140860 +doccontainerchecksum 08f5ad70d40a3eab79a260958baa2e4d75872a93a33ac3398ad54049231693d3cb4f659ea91e3a53af8c19fbf6b8ca537c66f907b4592a45b155d895471cba63 +docfiles size=42 RELOC/doc/latex/gitver/COPYING RELOC/doc/latex/gitver/ChangeLog RELOC/doc/latex/gitver/README.md details="Readme" RELOC/doc/latex/gitver/gitver.pdf details="Package documentation" RELOC/doc/latex/gitver/gitver.tex + RELOC/doc/latex/gitver/latexmkrc runfiles size=2 RELOC/tex/latex/gitver/gitver.sty catalogue-contact-bugs https://github.com/charlesbaynham/gitver/issues catalogue-contact-repository https://github.com/charlesbaynham/gitver catalogue-ctan /macros/latex/contrib/gitver catalogue-license lppl1.3c -catalogue-topics version-control doc-mgmt -catalogue-version 1.3 +catalogue-topics version-control doc-mgmt expl3 +catalogue-version 1.4 name globalvals category Package @@ -129316,7 +134049,7 @@ catalogue-version 0.1 name glossaries category Package -revision 54402 +revision 64919 shortdesc Create glossaries and lists of acronyms longdesc The glossaries package supports acronyms and multiple longdesc glossaries, and has provision for operation in several @@ -129335,16 +134068,63 @@ longdesc glossary; either makeindex or xindy may serve this purpose, and longdesc a Perl script is provided to serve as interface. This package longdesc requires the mfirstuc package. The package supersedes the longdesc author's glossary package (which is now obsolete). +depend amsmath +depend datatool +depend etoolbox depend glossaries.ARCH -containersize 77968 -containerchecksum e900f8bc7b9f04088a3b2cbd3ff409603babaf232f09d6c75e85e3050ab0bd98b90c6e04e01aebb183e9fcbc4865c34568a7392d8b46ab318b506d10f1972d99 -doccontainersize 5992740 -doccontainerchecksum 7c364a8a843d32af396b76a14e3abb97a82638a41538653aac8046273b9d669bc1ada0744435f918eb0c169852fa01025e4f4257783b0101a60231de708fe82b -docfiles size=2528 +depend mfirstuc +depend tracklang +depend xfor +depend xkeyval +containersize 92336 +containerchecksum a805158d4c2741c4efc707bfe417032903630d3f235c7431a3767e47592d8b9be2d64f6a14f21a0c7a3f4b37cbcba90d501c0ab1a551fe16357745960f362a1b +doccontainersize 10763820 +doccontainerchecksum 24e43bacdaf3d3680b49460849f2d4eb652f2e2103558edecff0cb78d261d0275e5f416c7fe83857fbe09f7016643849ee5f030e4b3db167f469960d7791489b +docfiles size=4691 texmf-dist/doc/latex/glossaries/CHANGES + texmf-dist/doc/latex/glossaries/DEPENDS.txt texmf-dist/doc/latex/glossaries/INSTALL texmf-dist/doc/latex/glossaries/README.md details="Readme" texmf-dist/doc/latex/glossaries/glossaries-code.pdf details="Package code and documentation (PDF)" + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example001.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example001.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example001.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example002.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example002.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example002.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example003.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example003.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example003.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example004.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example004.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example004.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example005.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example005.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example005.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example006.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example006.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example006.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example007.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example007.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example007.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example008.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example008.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example008.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example022.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example022.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example022.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example023.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example023.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example023.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example024.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example024.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example024.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example025.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example025.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example025.tex + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example030.pdf + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example030.png + texmf-dist/doc/latex/glossaries/glossaries-user-examples/glossaries-user-example030.tex texmf-dist/doc/latex/glossaries/glossaries-user.html details="User manual (HTML)" texmf-dist/doc/latex/glossaries/glossaries-user.pdf details="User manual (PDF)" texmf-dist/doc/latex/glossaries/glossaries-user.tex @@ -129459,14 +134239,14 @@ docfiles size=2528 texmf-dist/doc/man/man1/makeglossaries-lite.man1.pdf texmf-dist/doc/man/man1/makeglossaries.1 texmf-dist/doc/man/man1/makeglossaries.man1.pdf -srccontainersize 125884 -srccontainerchecksum 3bc7eebf8a0861b6236cca948f053d90d550292a7ec9b1694325ffee594a166dca180b4153ba86c711ebf5ed5e81be8e52432b3a1229a3b4d477b6722c1e3e56 -srcfiles size=260 +srccontainersize 148508 +srccontainerchecksum 5240de5d2c942ec2eba38e76073f230265ce74dda641622acc8aad4c5856c1e8a749d01829ac39fc4b83479d9d24346270507c0f4bc5b957b7f4f3d07c4e898e +srcfiles size=456 texmf-dist/source/latex/glossaries/glossaries.dtx texmf-dist/source/latex/glossaries/glossaries.ins texmf-dist/source/latex/glossaries/makeglossaries-lite.pod -runfiles size=170 - texmf-dist/scripts/glossaries/glossaries.perl +runfiles size=418 + texmf-dist/scripts/glossaries/glossaries.l2h texmf-dist/scripts/glossaries/makeglossaries texmf-dist/scripts/glossaries/makeglossaries-lite.lua texmf-dist/tex/latex/glossaries/base/glossaries-babel.sty @@ -129476,6 +134256,40 @@ runfiles size=170 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/rollback/glossaries-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-accsupp-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-accsupp-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-babel-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-babel-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-compatible-207-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-compatible-207-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-compatible-307-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-compatible-307-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-polyglossia-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-polyglossia-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-prefix-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossaries-prefix-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-hypernav-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-hypernav-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-inline-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-inline-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-list-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-list-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-long-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-long-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-longbooktabs-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-longbooktabs-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-longragged-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-longragged-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-mcols-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-mcols-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-super-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-super-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-superragged-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-superragged-2021-11-01.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-tree-2020-03-19.sty + texmf-dist/tex/latex/glossaries/rollback/glossary-tree-2021-11-01.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 @@ -129490,20 +134304,23 @@ runfiles size=170 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-childmultipar.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-longchild.tex texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-multipar.tex texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-parent.tex texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbolnames.tex texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-symbols.tex texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-url.tex + texmf-dist/tex/latex/glossaries/test-entries/example-glossaries-user.tex catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=glossaries catalogue-ctan /macros/latex/contrib/glossaries catalogue-license lppl1.3 catalogue-topics glossary acronym -catalogue-version 4.46 +catalogue-version 4.52 name glossaries-danish category Package @@ -129618,7 +134435,7 @@ catalogue-version 1.0 name glossaries-extra category Package -revision 54688 +revision 64973 shortdesc An extension to the glossaries package relocated 1 longdesc This package provides improvements and extra features to the @@ -129627,148 +134444,645 @@ longdesc behaviour is changed by glossaries-extra.sty. See the user longdesc manual glossaries-extra-manual.pdf for further details. longdesc glossaries-extra.sty requires the glossaries package and, longdesc naturally, all packages required by glossaries.sty. -containersize 63304 -containerchecksum 6604e11d960693f3a4437a5eae8f4e508057c22bec61be620971f3fa88563fd8630d0b3cedd9cb259e0e024b0813db694bfe23d6fdbbfeed9e6543919f73b20b -doccontainersize 5295972 -doccontainerchecksum e8fb201968efd7701260f9b5fefab56930441b4240aed8bd90128c4dcef85cdd8d62372b579797a9450b56ceb37e7ee2793049f8098229f68b3d4915cca2ff3a -docfiles size=1949 +containersize 102204 +containerchecksum e7e28773e9a8608dc86715e7ec984f8c49439b0a2ef22805fcf555feb44871a25e4fdcaccda1ec2e758d1cd28cb10ec89a9502899794412d678b7262058ab58f +doccontainersize 17551884 +doccontainerchecksum d8de64c98fa04db207d890f7ad2b52ec6eb8fddf61daf16b17a5b4520dd4436ce647a34cac6abc04091573af17e07c00cc3af473dbbc82d89e181cf680696427 +docfiles size=9280 RELOC/doc/latex/glossaries-extra/CHANGES + RELOC/doc/latex/glossaries-extra/DEPENDS.txt RELOC/doc/latex/glossaries-extra/README details="Readme" - RELOC/doc/latex/glossaries-extra/glossaries-extra-code.pdf - RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.html - RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.pdf details="Package documentation" + RELOC/doc/latex/glossaries-extra/glossaries-extra-code.pdf details="Documented code" + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example001.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example001.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example001.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example002.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example002.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example002.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example003.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example003.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example003.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example004.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example004.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example004.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example005.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example005.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example005.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example006.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example006.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example006.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example007.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example007.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example007.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example008.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example008.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example008.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example009.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example009.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example009.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example010.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example010.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example010.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example011.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example011.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example011.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example012.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example012.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example012.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example013.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example013.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example013.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example014.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example014.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example014.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example015.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example015.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example015.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example016.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example016.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example016.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example017.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example017.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example017.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example018.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example018.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example018.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example019.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example019.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example019.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example020.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example020.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example020.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example021.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example021.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example021.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example022.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example022.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example022.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example023.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example023.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example023.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example024.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example024.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example024.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example025.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example025.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example025.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example026.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example026.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example026.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example027.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example027.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example027.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example028.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example028.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example028.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example029.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example029.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example029.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example030.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example030.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example030.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example031.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example031.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example031.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example032.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example032.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example032.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example033.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example033.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example033.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example034.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example034.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example034.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example035.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example035.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example035.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example036.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example036.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example036.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example037.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example037.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example037.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example038.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example038.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example038.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example039.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example039.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example039.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example040.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example040.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example040.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example041.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example041.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example041.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example042.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example042.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example042.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example043.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example043.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example043.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example044.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example044.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example044.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example045.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example045.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example045.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example046.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example046.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example046.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example047.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example047.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example047.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example048.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example048.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example048.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example049.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example049.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example049.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example050.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example050.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example050.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example051.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example051.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example051.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example052.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example052.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example052.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example053.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example053.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example053.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example054.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example054.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example054.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example055.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example055.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example055.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example056.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example056.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example056.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example057.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example057.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example057.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example058.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example058.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example058.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example059.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example059.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example059.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example060.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example060.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example060.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example061.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example061.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example061.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example062.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example062.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example062.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example063.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example063.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example063.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example064.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example064.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example064.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example065.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example065.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example065.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example066.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example066.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example066.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example067.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example067.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example067.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example068.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example068.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example068.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example069.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example069.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example069.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example070.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example070.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example070.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example071.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example071.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example071.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example072.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example072.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example072.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example073.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example073.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example073.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example074.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example074.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example074.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example075.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example075.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example075.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example076.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example076.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example076.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example077.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example077.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example077.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example078.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example078.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example078.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example079.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example079.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example079.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example080.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example080.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example080.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example081.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example081.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example081.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example082.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example082.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example082.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example083.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example083.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example083.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example084.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example084.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example084.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example085.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example085.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example085.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example086.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example086.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example086.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example087.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example087.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example087.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example088.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example088.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example088.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example089.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example089.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example089.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example090.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example090.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example090.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example091.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example091.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example091.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example092.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example092.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example092.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example093.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example093.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example093.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example094.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example095.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example096.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example096.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example096.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example097.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example097.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example097.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example098.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example098.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example098.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example099.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example099.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example099.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example100.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example100.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example100.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example101.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example101.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example101.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example102.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example102.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example102.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example103.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example103.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example103.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example104.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example104.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example104.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example105.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example105.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example105.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example106.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example106.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example106.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example107.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example107.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example107.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example108.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example108.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example108.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example109.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example109.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example109.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example110.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example110.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example110.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example111.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example111.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example111.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example112.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113-page1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example113.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example114.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-0.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-2.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115-3.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example115.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example116.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example117.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example117.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example117.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example118.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example118.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example118.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example119.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example119.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example119.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example120.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121-page1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example121.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example122.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-0.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123-1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example123.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example125.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example125.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example125.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example126.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example126.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example126.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example127.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example127.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example127.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example128.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example128.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example128.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example129.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example129.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example129.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example130.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example130.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example130.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example131.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example131.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example131.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example132.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example132.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example132.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example133.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example133.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example133.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example134.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example134.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example134.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example135.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example135.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example135.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example136.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example136.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example136.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example137.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example137.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example137.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example138.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example138.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example138.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example139.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example139.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example139.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example140.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example140.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example140.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example141.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example141.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example141.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example142.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example142.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example142.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example143.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example143.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example143.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example144.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example144.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example144.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example145.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example145.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example145.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example146.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example146.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example146.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example147.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example147.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example147.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example148.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example148.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example148.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example149.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example149.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example149.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example150.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example151.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example152.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153-page1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example153.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154-page1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example154.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-0.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155-2.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example155.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-0.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-1.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156-2.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example156.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.png + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example157.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example158.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159.pdf + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example159.tex + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.html details="User manual (HTML)" + RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.pdf details="User manual (PDF)" RELOC/doc/latex/glossaries-extra/glossaries-extra-manual.tex - RELOC/doc/latex/glossaries-extra/sample-abbr-styles.pdf - RELOC/doc/latex/glossaries-extra/sample-abbr-styles.tex - RELOC/doc/latex/glossaries-extra/sample-abbrv.pdf - RELOC/doc/latex/glossaries-extra/sample-abbrv.tex - RELOC/doc/latex/glossaries-extra/sample-accsupp.pdf - RELOC/doc/latex/glossaries-extra/sample-accsupp.tex - RELOC/doc/latex/glossaries-extra/sample-acronym-desc.pdf - RELOC/doc/latex/glossaries-extra/sample-acronym-desc.tex - RELOC/doc/latex/glossaries-extra/sample-acronym.pdf - RELOC/doc/latex/glossaries-extra/sample-acronym.tex - RELOC/doc/latex/glossaries-extra/sample-alias.pdf - RELOC/doc/latex/glossaries-extra/sample-alias.tex - RELOC/doc/latex/glossaries-extra/sample-altmodifier.pdf - RELOC/doc/latex/glossaries-extra/sample-altmodifier.tex - RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.pdf - RELOC/doc/latex/glossaries-extra/sample-alttree-marginpar.tex - RELOC/doc/latex/glossaries-extra/sample-alttree-sym.pdf - RELOC/doc/latex/glossaries-extra/sample-alttree-sym.tex - RELOC/doc/latex/glossaries-extra/sample-alttree.pdf - RELOC/doc/latex/glossaries-extra/sample-alttree.tex - RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.pdf - RELOC/doc/latex/glossaries-extra/sample-autoindex-hyp.tex - RELOC/doc/latex/glossaries-extra/sample-autoindex.pdf - RELOC/doc/latex/glossaries-extra/sample-autoindex.tex - RELOC/doc/latex/glossaries-extra/sample-crossref.pdf - RELOC/doc/latex/glossaries-extra/sample-crossref.tex - RELOC/doc/latex/glossaries-extra/sample-crossref2.pdf - RELOC/doc/latex/glossaries-extra/sample-crossref2.tex - RELOC/doc/latex/glossaries-extra/sample-docdef.pdf - RELOC/doc/latex/glossaries-extra/sample-docdef.tex - RELOC/doc/latex/glossaries-extra/sample-entrycount.pdf - RELOC/doc/latex/glossaries-extra/sample-entrycount.tex - RELOC/doc/latex/glossaries-extra/sample-external.pdf - RELOC/doc/latex/glossaries-extra/sample-external.tex - RELOC/doc/latex/glossaries-extra/sample-fmt.pdf - RELOC/doc/latex/glossaries-extra/sample-fmt.tex - RELOC/doc/latex/glossaries-extra/sample-footnote.pdf - RELOC/doc/latex/glossaries-extra/sample-footnote.tex - RELOC/doc/latex/glossaries-extra/sample-header.pdf - RELOC/doc/latex/glossaries-extra/sample-header.tex - RELOC/doc/latex/glossaries-extra/sample-indexhook.pdf - RELOC/doc/latex/glossaries-extra/sample-indexhook.tex - RELOC/doc/latex/glossaries-extra/sample-initialisms.pdf - RELOC/doc/latex/glossaries-extra/sample-initialisms.tex - RELOC/doc/latex/glossaries-extra/sample-linkcount.pdf - RELOC/doc/latex/glossaries-extra/sample-linkcount.tex - RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.pdf - RELOC/doc/latex/glossaries-extra/sample-mixed-abbrv-styles.tex - RELOC/doc/latex/glossaries-extra/sample-mixedsort.pdf - RELOC/doc/latex/glossaries-extra/sample-mixedsort.tex - RELOC/doc/latex/glossaries-extra/sample-mixture.pdf - RELOC/doc/latex/glossaries-extra/sample-mixture.tex - RELOC/doc/latex/glossaries-extra/sample-name-font.pdf - RELOC/doc/latex/glossaries-extra/sample-name-font.tex - RELOC/doc/latex/glossaries-extra/sample-nested.pdf - RELOC/doc/latex/glossaries-extra/sample-nested.tex - RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.pdf - RELOC/doc/latex/glossaries-extra/sample-noidx-restricteddocdefs.tex - RELOC/doc/latex/glossaries-extra/sample-onelink.pdf - RELOC/doc/latex/glossaries-extra/sample-onelink.tex - RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.pdf - RELOC/doc/latex/glossaries-extra/sample-onthefly-utf8.tex - RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.pdf - RELOC/doc/latex/glossaries-extra/sample-onthefly-xetex.tex - RELOC/doc/latex/glossaries-extra/sample-onthefly.pdf - RELOC/doc/latex/glossaries-extra/sample-onthefly.tex - RELOC/doc/latex/glossaries-extra/sample-pages.pdf - RELOC/doc/latex/glossaries-extra/sample-pages.tex - RELOC/doc/latex/glossaries-extra/sample-postdot.pdf - RELOC/doc/latex/glossaries-extra/sample-postdot.tex - RELOC/doc/latex/glossaries-extra/sample-postlink.pdf - RELOC/doc/latex/glossaries-extra/sample-postlink.tex - RELOC/doc/latex/glossaries-extra/sample-prefix.pdf - RELOC/doc/latex/glossaries-extra/sample-prefix.tex - RELOC/doc/latex/glossaries-extra/sample-record-nameref.glstex - RELOC/doc/latex/glossaries-extra/sample-record-nameref.pdf - RELOC/doc/latex/glossaries-extra/sample-record-nameref.tex - RELOC/doc/latex/glossaries-extra/sample-record.glstex - RELOC/doc/latex/glossaries-extra/sample-record.pdf - RELOC/doc/latex/glossaries-extra/sample-record.tex - RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.pdf - RELOC/doc/latex/glossaries-extra/sample-restricteddocdefs.tex - RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.pdf - RELOC/doc/latex/glossaries-extra/sample-suppl-hyp.tex - RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.pdf - RELOC/doc/latex/glossaries-extra/sample-suppl-main-hyp.tex - RELOC/doc/latex/glossaries-extra/sample-suppl-main.pdf - RELOC/doc/latex/glossaries-extra/sample-suppl-main.tex - RELOC/doc/latex/glossaries-extra/sample-suppl.pdf - RELOC/doc/latex/glossaries-extra/sample-suppl.tex - RELOC/doc/latex/glossaries-extra/sample-trans.pdf - RELOC/doc/latex/glossaries-extra/sample-trans.tex - RELOC/doc/latex/glossaries-extra/sample-undef.pdf - RELOC/doc/latex/glossaries-extra/sample-undef.tex - RELOC/doc/latex/glossaries-extra/sample-unitentrycount.pdf - RELOC/doc/latex/glossaries-extra/sample-unitentrycount.tex - RELOC/doc/latex/glossaries-extra/sample.pdf - RELOC/doc/latex/glossaries-extra/sample.tex -srccontainersize 116088 -srccontainerchecksum 9810a3934dfdd96bb0ab857ad3e27b9b36b488240f7fb86cdff303f26288a8e3c008aa5eca3af2402660040d6543f33023a47ed8a541290eb553a8adc5305e11 -srcfiles size=268 + RELOC/doc/latex/glossaries-extra/samples/sample-abbr-styles.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-abbr-styles.tex + RELOC/doc/latex/glossaries-extra/samples/sample-abbrv.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-abbrv.tex + RELOC/doc/latex/glossaries-extra/samples/sample-accsupp.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-accsupp.tex + RELOC/doc/latex/glossaries-extra/samples/sample-acronym-desc.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-acronym-desc.tex + RELOC/doc/latex/glossaries-extra/samples/sample-acronym.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-acronym.tex + RELOC/doc/latex/glossaries-extra/samples/sample-alias.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-alias.tex + RELOC/doc/latex/glossaries-extra/samples/sample-altmodifier.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-altmodifier.tex + RELOC/doc/latex/glossaries-extra/samples/sample-alttree-marginpar.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-alttree-marginpar.tex + RELOC/doc/latex/glossaries-extra/samples/sample-alttree-sym.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-alttree-sym.tex + RELOC/doc/latex/glossaries-extra/samples/sample-alttree.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-alttree.tex + RELOC/doc/latex/glossaries-extra/samples/sample-autoindex-hyp.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-autoindex-hyp.tex + RELOC/doc/latex/glossaries-extra/samples/sample-autoindex.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-autoindex.tex + RELOC/doc/latex/glossaries-extra/samples/sample-crossref.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-crossref.tex + RELOC/doc/latex/glossaries-extra/samples/sample-crossref2.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-crossref2.tex + RELOC/doc/latex/glossaries-extra/samples/sample-docdef.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-docdef.tex + RELOC/doc/latex/glossaries-extra/samples/sample-entrycount.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-entrycount.tex + RELOC/doc/latex/glossaries-extra/samples/sample-external.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-external.tex + RELOC/doc/latex/glossaries-extra/samples/sample-fmt.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-fmt.tex + RELOC/doc/latex/glossaries-extra/samples/sample-footnote.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-footnote.tex + RELOC/doc/latex/glossaries-extra/samples/sample-header.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-header.tex + RELOC/doc/latex/glossaries-extra/samples/sample-indexhook.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-indexhook.tex + RELOC/doc/latex/glossaries-extra/samples/sample-initialisms.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-initialisms.tex + RELOC/doc/latex/glossaries-extra/samples/sample-linkcount.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-linkcount.tex + RELOC/doc/latex/glossaries-extra/samples/sample-mixed-abbrv-styles.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-mixed-abbrv-styles.tex + RELOC/doc/latex/glossaries-extra/samples/sample-mixedsort.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-mixedsort.tex + RELOC/doc/latex/glossaries-extra/samples/sample-mixture.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-mixture.tex + RELOC/doc/latex/glossaries-extra/samples/sample-multientry.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-multientry.tex + RELOC/doc/latex/glossaries-extra/samples/sample-name-font.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-name-font.tex + RELOC/doc/latex/glossaries-extra/samples/sample-nested.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-nested.tex + RELOC/doc/latex/glossaries-extra/samples/sample-noidx-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-noidx-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/samples/sample-onelink.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-onelink.tex + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly-utf8.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly-utf8.tex + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly-xetex.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly-xetex.tex + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-onthefly.tex + RELOC/doc/latex/glossaries-extra/samples/sample-pages.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-pages.tex + RELOC/doc/latex/glossaries-extra/samples/sample-postdot.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-postdot.tex + RELOC/doc/latex/glossaries-extra/samples/sample-postlink.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-postlink.tex + RELOC/doc/latex/glossaries-extra/samples/sample-prefix.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-prefix.tex + RELOC/doc/latex/glossaries-extra/samples/sample-record-nameref.glstex + RELOC/doc/latex/glossaries-extra/samples/sample-record-nameref.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-record-nameref.tex + RELOC/doc/latex/glossaries-extra/samples/sample-record.glstex + RELOC/doc/latex/glossaries-extra/samples/sample-record.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-record.tex + RELOC/doc/latex/glossaries-extra/samples/sample-restricteddocdefs.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-restricteddocdefs.tex + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-hyp.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-hyp.tex + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-main-hyp.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-main-hyp.tex + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-main.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-suppl-main.tex + RELOC/doc/latex/glossaries-extra/samples/sample-suppl.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-suppl.tex + RELOC/doc/latex/glossaries-extra/samples/sample-trans.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-trans.tex + RELOC/doc/latex/glossaries-extra/samples/sample-undef.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-undef.tex + RELOC/doc/latex/glossaries-extra/samples/sample-unitentrycount.pdf + RELOC/doc/latex/glossaries-extra/samples/sample-unitentrycount.tex + RELOC/doc/latex/glossaries-extra/samples/sample.pdf + RELOC/doc/latex/glossaries-extra/samples/sample.tex +srccontainersize 183808 +srccontainerchecksum 09427bee8f2e23f471b84689d7ef04b04e6444fee8735e187af80bebe1027a0de11888e18646f6c07ddbf81b760d05de898169d3e2ed968ffbd35e9fb46c1f95 +srcfiles size=578 RELOC/source/latex/glossaries-extra/glossaries-extra.dtx RELOC/source/latex/glossaries-extra/glossaries-extra.ins -runfiles size=163 +runfiles size=415 RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym-desc.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronym.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-acronyms-lang.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-brief.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-childmultipar.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-childnoname.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-cite.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-images.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-long.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-longchild.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-multipar.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-parent.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbolnames.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-symbols.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-url.bib + RELOC/bibtex/bib/glossaries-extra/example-glossaries-user.bib RELOC/bibtex/bib/glossaries-extra/example-glossaries-xr.bib RELOC/tex/latex/glossaries-extra/example-glossaries-xr.tex + RELOC/tex/latex/glossaries-extra/glossaries-extra-2021-11-22.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra-abbrstyles.def + RELOC/tex/latex/glossaries-extra/glossaries-extra-bib2gls-2021-11-22.sty RELOC/tex/latex/glossaries-extra/glossaries-extra-bib2gls.sty + RELOC/tex/latex/glossaries-extra/glossaries-extra-stylemods-2021-11-22.sty RELOC/tex/latex/glossaries-extra/glossaries-extra-stylemods.sty RELOC/tex/latex/glossaries-extra/glossaries-extra.sty + RELOC/tex/latex/glossaries-extra/glossary-bookindex-2021-11-22.sty RELOC/tex/latex/glossaries-extra/glossary-bookindex.sty + RELOC/tex/latex/glossaries-extra/glossary-longextra-2021-11-22.sty RELOC/tex/latex/glossaries-extra/glossary-longextra.sty + RELOC/tex/latex/glossaries-extra/glossary-table.sty + RELOC/tex/latex/glossaries-extra/glossary-topic-2021-11-22.sty RELOC/tex/latex/glossaries-extra/glossary-topic.sty catalogue-also glossaries catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=glossaries-extra catalogue-ctan /macros/latex/contrib/glossaries-extra catalogue-license lppl1.3 catalogue-topics glossary acronym -catalogue-version 1.45 +catalogue-version 1.50 name glossaries-finnish category Package @@ -130146,16 +135460,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/makeglossaries bin/armhf-linux/makeglossaries-lite -name glossaries.i386-cygwin -category Package -revision 37813 -shortdesc i386-cygwin files of glossaries -containersize 368 -containerchecksum 6b005fa80bb08f2ef387615cd58549888810598fff226c0f78e0a6e2fa43ef3242989e38e8ae9aa719ad5c2c7e93b8e8689a3b5a491b7b71bab419a8dd5bab7b -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/makeglossaries - bin/i386-cygwin/makeglossaries-lite - name glossaries.i386-freebsd category Package revision 37813 @@ -130206,15 +135510,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/makeglossaries bin/universal-darwin/makeglossaries-lite -name glossaries.win32 +name glossaries.windows category Package -revision 37813 -shortdesc win32 files of glossaries -containersize 720 -containerchecksum 4ef1f297ff4ec0f5a737f87ebc24263dc175d0fbac94fc4dfa1cc6f34bb893886b2802f6d35f2a6ae09b7b55674d1ac6d7e4477d46646b88bf5439a2ae748525 -binfiles arch=win32 size=2 - bin/win32/makeglossaries-lite.exe - bin/win32/makeglossaries.exe +revision 65891 +shortdesc windows files of glossaries +containersize 2364 +containerchecksum b314d69b75a1473b42e26795769b952fe8fb118ba3f06f3599e635b66723861edb2246836edaf0d6cb205840f531b9809a2c358e6fdc53607c89556538d7ba75 +binfiles arch=windows size=4 + bin/windows/makeglossaries-lite.exe + bin/windows/makeglossaries.exe name glossaries.x86_64-cygwin category Package @@ -130700,7 +136004,7 @@ catalogue-topics games font font-symbol font-mf name gobble category Package -revision 56291 +revision 64967 shortdesc More gobble macros for PlainTeX and LaTeX relocated 1 longdesc The LaTeX package gobble includes several gobble macros not @@ -130713,26 +136017,26 @@ longdesc without \makeatletter and \makeatother. The same macros are longdesc provided inside .tex files for use with plain-TeX or other TeX longdesc formats. However, the gobble macros for optional macros require longdesc \@ifnextchar to be defined. -containersize 1564 -containerchecksum 1206d7ff1b34bed829bd23ae88b0505e699a30088983d8f7cec7ff77f87774406e82442fc51f1f77d3475474785087d4f2f29e62fec34ef1db26d8a52a904970 -doccontainersize 157648 -doccontainerchecksum 9d862847c9b2596c061cf898e23b0a1188fabb7636f8a5dfded5b08fd4422531fbbc6932af788c9a15b6805ecb4c254c82a37700caa03975fc2ff8c6f3f539cc -docfiles size=41 +containersize 1700 +containerchecksum a3490d91422940763da75ce023ae032a3d3dffc7114c02edab40399a1ef11e5fb2c3f8f3bcf27ba5fc089b4d961bc3b99f45351f43eb2f4b31d6a425a9df40e5 +doccontainersize 157372 +doccontainerchecksum cb1bf320485624448d9456c44056fd5c43792db4ef2a4211c37acbe54bc4be7a8eba0b7cd2a10446efd1591b631d6a3adef26b5440b1a79739af095a831b4300 +docfiles size=40 RELOC/doc/generic/gobble/README details="Readme" - RELOC/doc/generic/gobble/gobble-user.tex RELOC/doc/generic/gobble/gobble.pdf details="Package documentation" srccontainersize 3288 -srccontainerchecksum 6e9178359020f754435ce675f7c2fc8a184f84fe86e990ecd254eeef283ada2576a8f634034fcd083d199d9e92bbc874b91a724739740e707525e83e1227d0a2 +srccontainerchecksum f430253f8b2534f1eb1a2be289f7356792ee12b5be6f0847715974e5ed0303cd12f437723e93cc00616a4b55d4874d43477ebcf62c5b03a038a6bc76d838a597 srcfiles size=4 RELOC/source/generic/gobble/gobble.dtx RELOC/source/generic/gobble/gobble.ins -runfiles size=3 +runfiles size=4 RELOC/tex/generic/gobble/gobble-user.sty + RELOC/tex/generic/gobble/gobble-user.tex RELOC/tex/generic/gobble/gobble.sty RELOC/tex/generic/gobble/gobble.tex -catalogue-contact-bugs https://sourceforge.net/p/latex-gobble/tickets/ -catalogue-contact-home https://sourceforge.net/p/latex-gobble/ -catalogue-contact-repository https://sourceforge.net/p/latex-gobble/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/gobble/issues +catalogue-contact-home https://github.com/MartinScharrer/gobble +catalogue-contact-repository https://github.com/MartinScharrer/gobble.git catalogue-ctan /macros/generic/gobble catalogue-license lppl1.3 catalogue-topics macro-supp @@ -130740,7 +136044,7 @@ catalogue-version 0.2 name gofonts category Package -revision 54512 +revision 64358 shortdesc GoSans and GoMono fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -130751,10 +136055,10 @@ longdesc corresponding italics). GoMono is available in regular and longdesc bold, with italics. Notes on the design may be found at longdesc https://blog.golang.org/go-fonts. execute addMap go.map -containersize 1361732 -containerchecksum 277e9765c5568f84df7fb7fb0004a4ab9cf5dd2beddfe8ba1beba2db069213bef814ce07a714262701dbaa1e371d311dc99052e1239c18d321b7044b4f29564d -doccontainersize 304036 -doccontainerchecksum 831382dcea6b990aadfe38ef630951f0cb10ab093581ad67e3132d69d00a89cd64edb8350fea729fc2c02960a38e564b893ee07b203e3c79ec184aa18f544baf +containersize 1361720 +containerchecksum c30a0fa1e76d0d287ed9296bb379bbb284873593f8136aa567e2573ec9d20310ad5d2ff993b00714fc472b6d365e2556c488278216c95898ca44f1f5b5c681f2 +doccontainersize 304056 +doccontainerchecksum 6a9d31a1d55f65d05922b71d9651198f9f9a8c6df754cdc93c4605fb6bc241b5c7cb56d0313a2681f60f4d92c45cbc42a9f61eba0c1eb1ba447a0363ff72593a docfiles size=81 RELOC/doc/fonts/gofonts/License RELOC/doc/fonts/gofonts/README details="Readme" @@ -131343,30 +136647,53 @@ catalogue-version 1.1 name grabbox category Package -revision 51052 +revision 65223 shortdesc Read an argument into a box and execute the code afterwards relocated 1 longdesc The package provides the command \grabbox, which grabs an longdesc argument into a box and executes the code afterwards. -containersize 1608 -containerchecksum d56aedb2c60216ff18af9cc2f2bce0c646545becf973c7d791db5a17cf593e6677c3bca7134d9d663e6826c249e0ee737128ff68184200f1cf7c09c308508db3 -doccontainersize 353436 -doccontainerchecksum 584d8fc20bb49a9486426eea0c7694461e904375bd9af4d0030394d65c1dae8d97451244decfe3c00a59ee7ba92a5e8b5fcfdbec6668cc1ee3652657b7b04330 +containersize 1560 +containerchecksum f592b70d4b3bf02e442725ab3a17e3ebbfd3e69d7a790c01be44fa7dbca66b6df76d036b3aaf9f8ce4944bcf370dc626a07e94f5edeec11eb8dbf04c49bd3ff7 +doccontainersize 353440 +doccontainerchecksum 52e91ad758b653bf6ed804009f3aadf575925f9ce4f52225c1d5e1fb30a79907a587914b265471ff7bdefd5132b6b2d6baac6062193f498e127fb29c34107fd4 docfiles size=87 RELOC/doc/latex/grabbox/README.md details="Readme" RELOC/doc/latex/grabbox/grabbox.pdf details="Package documentation" -srccontainersize 4336 -srccontainerchecksum a82cbee93e9dbc9a2485f13783275304d11920ea201458175dface98da3545b4266be0402f4d39fe3f9f0a0adfdc2210244982e09fed094b7487385b65bb0808 +srccontainersize 4340 +srccontainerchecksum c49132a855bd7e3ed4a98b6af13866bae68301927b22757c824497a778d2036b30307cd262630d336be7e569744b7667d554fd4810aebc0646dc90b6ff196baa srcfiles size=4 RELOC/source/latex/grabbox/grabbox.dtx runfiles size=1 RELOC/tex/latex/grabbox/grabbox.sty -catalogue-contact-repository https://gitlass.de/jonathan/grabbox catalogue-ctan /macros/latex/contrib/grabbox catalogue-license lppl1.3c catalogue-topics boxing catalogue-version 1.4 +name gradient-text +category Package +revision 65567 +shortdesc Decorate text with linear gradient colors +relocated 1 +longdesc This package enables writers to conveniently decorate text with +longdesc linear gradient colors. The RGB values of the first and the +longdesc last character are specified as parameters while the rest of +longdesc the text is colored automatically. +containersize 1048 +containerchecksum 87ecc935dec50f43fb4079a86c0fce5de8d4222f941f346ba6d9ec67bf3c623351fd42fb88989e4d1de17c36a82259aa61b7baf9a9227eea3f8e5caff3ab8bf9 +doccontainersize 132824 +doccontainerchecksum 63894d303192ea56d1f29b33ed8722352a83e6fb58f05c639a9b930794ed5e7f2634690c5049dc62989e286464fc9f48d537e77fca234061dfedf755231b59c6 +docfiles size=36 + RELOC/doc/latex/gradient-text/README.md details="Readme" + RELOC/doc/latex/gradient-text/gradient-text.pdf details="Package documentation" + RELOC/doc/latex/gradient-text/gradient-text.tex +runfiles size=1 + RELOC/tex/latex/gradient-text/gradient-text.sty +catalogue-ctan /macros/latex/contrib/gradient-text +catalogue-license lppl1.3c +catalogue-topics colour expl3 +catalogue-version 1.2 + name gradientframe category Package revision 21387 @@ -131393,6 +136720,35 @@ catalogue-license lppl1.3 catalogue-topics decoration catalogue-version 0.2 +name grading-scheme +category Package +revision 62505 +shortdesc Typeset grading schemes in tabular format +relocated 1 +longdesc This package aims at an easy-to-use interface to typeset +longdesc grading schemes in tabular format, in particular +longdesc grading-schemes of exercises of mathematical olympiads where +longdesc multiple solutions have to be graded and might offer mutual +longdesc exclusive ways of receiving points. +containersize 5004 +containerchecksum d68e5f9110738f2ac7258c312045b40db3ce20ea8fd80e6feab47164091cf2dfa460ff7ab5fc794cfe2895f5df5733ed67429f3babafc448448aa99d52bc9ee0 +doccontainersize 769280 +doccontainerchecksum 337f873bbb07432ec9e5c20484d82e65d315921411757c295af78e521075a16044943f41bfe6daba9f0efca56d33b372ebd177420d13284a44b0251409277ec4 +docfiles size=196 + RELOC/doc/latex/grading-scheme/README.txt details="Readme" + RELOC/doc/latex/grading-scheme/grading-scheme.pdf details="Package documentation" +srccontainersize 15320 +srccontainerchecksum 47de7e1c71f78bc472500b44aba2cb4a606a6219737913bc07492bdc485fa7ec1bee30ee04311bc3b278b8017180e98e032e4f2d1cdcccf561e42f1a9bbadadc +srcfiles size=20 + RELOC/source/latex/grading-scheme/grading-scheme.dtx + RELOC/source/latex/grading-scheme/grading-scheme.ins +runfiles size=9 + RELOC/tex/latex/grading-scheme/grading-scheme.sty +catalogue-ctan /macros/latex/contrib/grading-scheme +catalogue-license lppl1.3c +catalogue-topics expl3 table +catalogue-version 0.1.1 + name gradstudentresume category Package revision 38832 @@ -131483,26 +136839,28 @@ catalogue-version 0.0.5 name graph35 category Package -revision 47522 +revision 65138 shortdesc Draw keys and screen items of several Casio calculators relocated 1 longdesc This package defines commands to draw the Casio Graph 35 / longdesc fx-9750GII calculator (and other models). It can draw the whole longdesc calculator, or parts of it (individual keys, part of the longdesc screen, etc.). It was written to typeset documents instructing -longdesc stundents how to use their calculator. -containersize 23260 -containerchecksum c9e2cb847614a7c21259b7b4e28ea1134d900049ca55da63990ac1f2c733e3b567bfae48de46b1e4b6b8faa9b4e0d4f9202bb00327ff33a899380dc3496214f1 -doccontainersize 2113596 -doccontainerchecksum 21a04b52c476b78142239e3db4165267b51ba596c2c7a95b175f323cf1e78b0bdcd324f55f817cfd8b2b6b7434200b060b51165e3468ee009d295eed752d1e88 -docfiles size=734 +longdesc students how to use their calculator. +containersize 22316 +containerchecksum c1846cf4e04e62641adb6b9a5cf9cdb6552fe8480ae167cdea44b8cd7959745ab54b269d083d927120240129572bc7c492b73ba1126e2afdce80192c0cf8e218 +doccontainersize 2244124 +doccontainerchecksum f32a46b9fd564e45f4988a565aa331bf4971a0b2a5057a5cbb65fddd762060a7e7dc86925e8df3d7a931d881466efdcb3ea936b950181573dd7630d9c129adc8 +docfiles size=798 RELOC/doc/latex/graph35/CHANGELOG.md RELOC/doc/latex/graph35/LICENSE.txt RELOC/doc/latex/graph35/README.md details="Readme" - RELOC/doc/latex/graph35/graph35-en.pdf details="Package documentation in English" - RELOC/doc/latex/graph35/graph35-fr.pdf details="Package documentation in French" -srccontainersize 13016 -srccontainerchecksum 4c2f073a22fea162e1c3347a74c60f680d5d2088143fd1e6634d4bf2884131c6c8a8c267531a04db705acf2bf2f756607d8164cf81659259f92ba600c7b22427 + RELOC/doc/latex/graph35/graph35-en.pdf details="Package documentation (English)" + RELOC/doc/latex/graph35/graph35-en.tex + RELOC/doc/latex/graph35/graph35-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/graph35/sources.zip +srccontainersize 13044 +srccontainerchecksum 685e0307a44705b0272ff8f2a61d90768a05fcea33cc913e8645f1d5a4768078133a645fe73b0571d87ba0000b4b13810190eacf60bc552dbb6c43bd46f06406 srcfiles size=18 RELOC/source/latex/graph35/graph35.dtx RELOC/source/latex/graph35/graph35.ins @@ -131511,13 +136869,11 @@ runfiles size=66 RELOC/tex/latex/graph35/graph35-pixelart.sty RELOC/tex/latex/graph35/graph35.sty catalogue-contact-bugs https://framagit.org/spalax/graph35/issues -catalogue-contact-home https://framagit.org/spalax/graph35 catalogue-contact-repository https://framagit.org/spalax/graph35 -catalogue-contact-support https://framagit.org/spalax/graph35/issues catalogue-ctan /graphics/graph35 catalogue-license lppl1.3 -catalogue-topics graphics teaching -catalogue-version 0.1.1 +catalogue-topics graphics teaching maths +catalogue-version 0.1.3 name graphbox category Package @@ -131555,7 +136911,7 @@ catalogue-version 1.1 name graphics category Package -revision 56514 +revision 66204 catalogue latex-graphics shortdesc The LaTeX standard graphics bundle relocated 1 @@ -131565,11 +136921,11 @@ longdesc of text in LaTeX documents. It comprises the packages color, longdesc graphics, graphicx, trig, epsfig, keyval, and lscape. depend graphics-cfg depend graphics-def -containersize 15112 -containerchecksum a04c805985e40b4db0abe1f308fe9f2a0ca4d1736e38d8390294c648935ba1d10ed2c0a16af0eda55736f699359c38e6117487a2c37e2c0d73ce588fbe438e17 -doccontainersize 2003520 -doccontainerchecksum 34382cbc4b6d48e60b00ec9eb1fbfbe786d339206e7c7ee3e33163ac41319e0646382745760d546b5946f54ae53882d8dff88bac2c0db117185be66f2f450673 -docfiles size=623 +containersize 15836 +containerchecksum cd36d380c8315829f3bf711dd970d5460f00e19961671714dbdf5928c2e842d33438221ee1fd9e45061a2adabb7f75eb34209914229eca872f2bb7fe7b346a16 +doccontainersize 2503676 +doccontainerchecksum b2a23c52e19eb8f6eeb53951f5fee9015f6d0ebeeb8a97f1bf4db217498ddb27b62d028b3554be3e5ec3b866d1d4bcce6bc805761e981c718f123f6688ba153c +docfiles size=779 RELOC/doc/latex/graphics/README.md details="Readme" RELOC/doc/latex/graphics/cat.eps RELOC/doc/latex/graphics/changes.txt @@ -131582,13 +136938,14 @@ docfiles size=623 RELOC/doc/latex/graphics/grfguide.tex RELOC/doc/latex/graphics/keyval.pdf RELOC/doc/latex/graphics/lscape.pdf + RELOC/doc/latex/graphics/mathcolor.pdf RELOC/doc/latex/graphics/rotating.pdf RELOC/doc/latex/graphics/rotex.pdf RELOC/doc/latex/graphics/rotex.tex RELOC/doc/latex/graphics/trig.pdf -srccontainersize 52100 -srccontainerchecksum f34cac380d7a42ad97f52aaa07bba40194d88c51905ae8e36b3559cd7dbea0152fb0ab09da353aa694317c360d7abe649b12477f9e2a59a8cb280175df4b5e59 -srcfiles size=64 +srccontainersize 57072 +srccontainerchecksum 45f998e3729e81f50cf7c064d1a3926c18007069b4a89b478e87a6f97f3e6820eb5d58be6025f374b05d9c443c8a101918ebff84de512366f5415e041356a848 +srcfiles size=69 RELOC/source/latex/graphics/color.dtx RELOC/source/latex/graphics/drivers.dtx RELOC/source/latex/graphics/epsfig.dtx @@ -131598,9 +136955,10 @@ srcfiles size=64 RELOC/source/latex/graphics/graphicx.dtx RELOC/source/latex/graphics/keyval.dtx RELOC/source/latex/graphics/lscape.dtx + RELOC/source/latex/graphics/mathcolor.dtx RELOC/source/latex/graphics/rotating.dtx RELOC/source/latex/graphics/trig.dtx -runfiles size=35 +runfiles size=36 RELOC/tex/latex/graphics/color.sty RELOC/tex/latex/graphics/dvipdf.def RELOC/tex/latex/graphics/dvipsnam.def @@ -131613,6 +136971,7 @@ runfiles size=35 RELOC/tex/latex/graphics/graphicx.sty RELOC/tex/latex/graphics/keyval.sty RELOC/tex/latex/graphics/lscape.sty + RELOC/tex/latex/graphics/mathcolor.ltx RELOC/tex/latex/graphics/pctex32.def RELOC/tex/latex/graphics/pctexhp.def RELOC/tex/latex/graphics/pctexps.def @@ -131655,7 +137014,7 @@ catalogue-topics graphics colour name graphics-def category Package -revision 58539 +revision 64487 shortdesc Colour and graphics option files relocated 1 longdesc This bundle is a combined distribution consisting of dvips.def, @@ -131664,10 +137023,10 @@ longdesc dvisvgm.def driver option files for the LaTeX graphics and longdesc color packages. It is hoped that by combining their source longdesc repositories at https://github.com/latex3/graphics-def it will longdesc be easier to coordinate updates. -containersize 10916 -containerchecksum 441fad3649b85fec474e9191f03b63b9e6a9b594db159de8740409f3cf79544a5aa8b9ee6d939f17dcb4b84507d105bb1bbdd7c25239d28096e99d97ea3c9bec +containersize 10740 +containerchecksum 7f811afae5119a42f97c23f65bfead8e7ba7e64796688b219eff78914115f8dbffa6e3aba97208f67d38b6463819ed2cf49e173aebcbe73aef8c2cf399ef803c doccontainersize 604 -doccontainerchecksum 9ad910e5870eb492921b40ef516f0d9e5b571b9c8129e5dc46f40c01cedc1724b0ab01191e0b37adfab62825857847b3ba6b8acaaea24d0da6b38d4b6191b41e +doccontainerchecksum b52099d553c2bdf52ddb7b50231303f106db445d58e675ad819dd0dd84750f0fc6d164fa21deb1f622644a6651e6bdbe41ad3362fb021f4a7da2e7599fe0a526 docfiles size=1 RELOC/doc/latex/graphics-def/README.md details="Readme" runfiles size=23 @@ -131686,7 +137045,7 @@ catalogue-topics graphics-drv name graphics-pln category Package -revision 56823 +revision 65187 shortdesc LaTeX-style graphics for Plain TeX users relocated 1 longdesc The Plain TeX graphics package is mostly a thin shell around @@ -131695,10 +137054,10 @@ longdesc LaTeX-isms in those packages provided by miniltx (which is the longdesc largest part of the bundle). The bundle also contains a file longdesc "picture.tex", which is a wrapper around the autopict.sty, and longdesc provides the LaTeX picture mode to Plain TeX users. -containersize 8740 -containerchecksum cbb87e4d040c6844cb2e677d352f9fdf9dca7848a894225944f52abf4b1ab9c03d6ea2881074b30bb618eee647ebfb70d8baeb2a82c3446bef40a47487e6b9c0 -doccontainersize 2228 -doccontainerchecksum 8051321f777155c8bb81d8e514a15e01d282c8ba73ceee6c60fa76201c1c91ba47299bc2ac3b21cd210a457daa1c549f73d299f94e4a972d2b7467ae9f7b9a87 +containersize 8960 +containerchecksum 968848e9ed432c21594670df42354badca67c38967a716aebe3af678b4904d295f908365532db6937f76fdd4a5195cae2f85093e96641bb49c5f4323797e9aa5 +doccontainersize 2252 +doccontainerchecksum 25628fb24b2817d8bf64a919c2bd29ee3b7fb618e5d3eccf7ec4d177de772f1a580d2cc5bddfe1e69792d88804f28e9e8bbc8471085d5ede1e95f78663fb5615 docfiles size=5 RELOC/doc/plain/graphics-pln/README.md details="Readme" RELOC/doc/plain/graphics-pln/exmplcol.tex @@ -131713,12 +137072,49 @@ runfiles size=12 RELOC/tex/plain/graphics-pln/picture.tex RELOC/tex/plain/graphics-pln/psfrag.tex catalogue-contact-bugs https://github.com/davidcarlisle/graphics-pln/issues -catalogue-contact-home https://github.com/davidcarlisle/graphics-pln catalogue-contact-repository https://github.com/davidcarlisle/graphics-pln catalogue-ctan /macros/plain/graphics catalogue-license lppl1 catalogue-topics graphics-incl plain-ext +name graphicscache +category Package +revision 65318 +shortdesc Cache includegraphics calls +relocated 1 +longdesc This LaTeX package provides caching of \includegraphics calls, +longdesc with several useful effects: Recompilations are much faster +longdesc (10x speedup observed). Images can be postprocessed with +longdesc ghostscript before inclusion, thus: Automatic downscaling to +longdesc specified DPI Automatic JPEG compression with configurable +longdesc quality Much smaller files (e.g. 10MB instead of 150MB)! Note: +longdesc Due to the one-by-one invocation of pdflatex and ghostscript +longdesc for each graphics element, the first compilation is typically +longdesc slower than usual. Note: graphicscache needs the \write18 call +longdesc (also called shell escape). This is a security risk if you have +longdesc untrusted TeX sources. graphicscache supports pdfLaTeX and +longdesc LuaLaTeX; XeLaTeX is not supported. +containersize 3612 +containerchecksum 90e4df3ce08bc12f0d5c2e8b66687c79fe7b791708bec5990f8e11590b64bcdf50ec393244ee85af7bd6f644787d56626f08c31fb1ca1b354b64ffb5527a960e +doccontainersize 176272 +doccontainerchecksum 749c11a534cbad3f32a7840097e6d42c70f99aa684b5971ccdac4e6a0bd668465ed4a7850bbfea61e14d396440754bfc0d1fe45a9ce71a57908b1c94ddae5444 +docfiles size=46 + RELOC/doc/latex/graphicscache/LICENSE + RELOC/doc/latex/graphicscache/README.md details="Readme" + RELOC/doc/latex/graphicscache/graphicscache.pdf details="Package documentation" +srccontainersize 7072 +srccontainerchecksum c730c10210c785ff27f319990b24af529a44c365d675f294401d363c1e5901af4b0e198c93a147ccf85fc440da99bf577063ed207d1d172ca4008fc9215586ef +srcfiles size=7 + RELOC/source/latex/graphicscache/graphicscache.dtx + RELOC/source/latex/graphicscache/graphicscache.ins +runfiles size=4 + RELOC/tex/latex/graphicscache/graphicscache.sty +catalogue-contact-repository https://github.com/xqms/graphicscache +catalogue-ctan /macros/latex/contrib/graphicscache +catalogue-license bsd3 +catalogue-topics graphics compilation cond-comp ext-code +catalogue-version 0.4 + name graphicx-psmin category Package revision 56931 @@ -131830,22 +137226,22 @@ catalogue-version 1.2 name graphpaper category Package -revision 58661 +revision 63116 shortdesc A LaTeX class to generate several types of graph papers relocated 1 longdesc Graphpaper is a LaTeX document class which allows to print longdesc several types of graph papers: bilinear (millimeter paper), longdesc semilogarithmic, bilogarithmic, polar, log-polar, Smith charts. longdesc It is based on the picture environment and its extensions. -containersize 4912 -containerchecksum 5081a2342621a69d4cc4bf70b129f8f28f769edb5e4b4b4b481fe415211979114583082b8e26524b98385dd8058fd415ebf824594714a596483b0e8b228e5283 -doccontainersize 413292 -doccontainerchecksum b5a206b9bc0bf3860a0fc5188d47b40b79fa413619ec8f3c015077fdf850090ebf7a4fe5da7ec41e191a68ec0e30a2e3c318585af9484b1037c034229fc8ed23 -docfiles size=107 +containersize 4916 +containerchecksum 1a850300bad30f7139032bf12c26cdd120e62342e09d7d742067c2f040f171a5a20bda2d57fad0aa769d0a337cb7373cf0f5f4d3932ed65ae589e4feecdd5738 +doccontainersize 426864 +doccontainerchecksum dda173040d6d492a96e8ecfc374f1a8f01b30689f6f97be6c2c530f2653c70340c7f8c2181fd4a854f2b25e5b4b835f67056b1a95892fb328d8f5c75152f36e0 +docfiles size=113 RELOC/doc/latex/graphpaper/README details="Readme" RELOC/doc/latex/graphpaper/graphpaper.pdf details="Package documentation" srccontainersize 10952 -srccontainerchecksum 23d7730da8f4df9b38cc1bfb8b17049eb77e37af8a4c19c7a7ab99e8c40b0d5dd585f983cade634f22a0cdc476092c1b27698b8673d9f736ba03a8eeb2c0d122 +srccontainerchecksum fbef9be61d0bf8e35e61a596a7297e1eb78308004786f2d48b66ec3fda045784ebba80d7fb66094dda99dc54b751710998dd96c013ac92e97a1c4e60d0b795f4 srcfiles size=10 RELOC/source/latex/graphpaper/graphpaper.dtx runfiles size=5 @@ -131854,7 +137250,7 @@ catalogue-also gridpapers catalogue-ctan /macros/latex/contrib/graphpaper catalogue-license lppl1.3c catalogue-topics class macro-supp -catalogue-version 1.0 +catalogue-version 1.1 name graphviz category Package @@ -131935,80 +137331,76 @@ catalogue-topics misc-support pdf-forms adobe-distiller name greek-fontenc category Package -revision 56851 +revision 66513 shortdesc LICR macros and encoding definition files for Greek relocated 1 longdesc The package provides Greek LICR macro definitions and encoding longdesc definition files for Greek text font encodings for use with longdesc fontenc. -containersize 28948 -containerchecksum 4b7189bd9080c0c34bb61c5d47dcd09985d61875af06c4263c408be70e85657bbd36b94a9f183b409739ff72ba59b1add5fdd8e42a1e498bb3508e3d997d2b53 -doccontainersize 2394692 -doccontainerchecksum 5d6495f824069c6866f3821839b671ef872dda96435ad0dd95a2b719dadeda5325d1d96bc8c4b68876b0812fec878e0d0770ff82c73fa4ec020bf9f0e059150d -docfiles size=762 - RELOC/doc/latex/greek-fontenc/README details="Readme" +containersize 32288 +containerchecksum 28f2f1935eb687ae54f672259c6a769b4decc81c751ca8de5908e38ee1f1e4f4bede1dca0b2cf52111b5e353dbba70da61c2241422df7dfbb4b9e5ddb82d7e07 +doccontainersize 2480032 +doccontainerchecksum 07234801061b9766fda8c6feda4f8533d90bafbba9fa9556d48ebaf13f8aac3e07d64551c933b67e85adcb8c2c15c0b6ff77c51e7773b86071ef3874bb2191c3 +docfiles size=786 + RELOC/doc/latex/greek-fontenc/README.md details="Readme" + RELOC/doc/latex/greek-fontenc/alphabeta-doc-tu.pdf RELOC/doc/latex/greek-fontenc/alphabeta-doc.pdf RELOC/doc/latex/greek-fontenc/alphabeta-doc.tex RELOC/doc/latex/greek-fontenc/alphabeta-lgr.def.html - RELOC/doc/latex/greek-fontenc/alphabeta-tu.pdf RELOC/doc/latex/greek-fontenc/alphabeta-tuenc.def.html RELOC/doc/latex/greek-fontenc/alphabeta.sty.html - RELOC/doc/latex/greek-fontenc/diacritics.pdf - RELOC/doc/latex/greek-fontenc/diacritics.tex + RELOC/doc/latex/greek-fontenc/greek-fontenc-doc.html details="Package documentation (HTML)" + RELOC/doc/latex/greek-fontenc/greek-fontenc-doc.rst RELOC/doc/latex/greek-fontenc/greek-fontenc.def.html - RELOC/doc/latex/greek-fontenc/greek-fontenc.html details="Readme (HTML)" RELOC/doc/latex/greek-fontenc/hyperref-with-greek.pdf RELOC/doc/latex/greek-fontenc/hyperref-with-greek.tex - RELOC/doc/latex/greek-fontenc/lgr2licr.lua RELOC/doc/latex/greek-fontenc/lgr2licr.lua.html RELOC/doc/latex/greek-fontenc/lgrenc.def.html RELOC/doc/latex/greek-fontenc/puenc-greek.def.html - RELOC/doc/latex/greek-fontenc/test-inputenc.pdf - RELOC/doc/latex/greek-fontenc/test-inputenc.tex + RELOC/doc/latex/greek-fontenc/test-diacritics.pdf + RELOC/doc/latex/greek-fontenc/test-diacritics.tex RELOC/doc/latex/greek-fontenc/test-lgrenc.pdf RELOC/doc/latex/greek-fontenc/test-lgrenc.tex + RELOC/doc/latex/greek-fontenc/test-licr-input.pdf + RELOC/doc/latex/greek-fontenc/test-licr-input.tex RELOC/doc/latex/greek-fontenc/test-tuenc-greek.pdf RELOC/doc/latex/greek-fontenc/test-tuenc-greek.tex + RELOC/doc/latex/greek-fontenc/textalpha-doc-tu.pdf RELOC/doc/latex/greek-fontenc/textalpha-doc.pdf RELOC/doc/latex/greek-fontenc/textalpha-doc.tex RELOC/doc/latex/greek-fontenc/textalpha-tu.pdf RELOC/doc/latex/greek-fontenc/textalpha.sty.html RELOC/doc/latex/greek-fontenc/tuenc-greek.def.html -srccontainersize 1572 -srccontainerchecksum 16049d6c57eca659c9aed41e4ac18417d667d5fb39e1bfa5976b5f8980c33425bf2301288b9284b39ae00e39d9c2878d09b25cfc793e51c09df92e703f6a968f -srcfiles size=2 - RELOC/source/latex/greek-fontenc/Makefile -runfiles size=51 +runfiles size=56 RELOC/tex/latex/greek-fontenc/alphabeta-lgr.def RELOC/tex/latex/greek-fontenc/alphabeta-tuenc.def RELOC/tex/latex/greek-fontenc/alphabeta.sty RELOC/tex/latex/greek-fontenc/greek-euenc.def RELOC/tex/latex/greek-fontenc/greek-fontenc.def + RELOC/tex/latex/greek-fontenc/lgr2licr.lua RELOC/tex/latex/greek-fontenc/lgrenc.def RELOC/tex/latex/greek-fontenc/puenc-greek.def RELOC/tex/latex/greek-fontenc/textalpha.sty RELOC/tex/latex/greek-fontenc/tuenc-greek.def -catalogue-also lgrx catalogue-ctan /language/greek/greek-fontenc catalogue-license lppl1.3 catalogue-topics greek fontenc -catalogue-version 2.0 +catalogue-version 2.2.1 name greek-inputenc category Package -revision 51612 +revision 66296 shortdesc Greek encoding support for inputenc relocated 1 longdesc The bundle provides UTF-8, Macintosh Greek encoding and ISO longdesc 8859-7 definition files for use with inputenc. -containersize 6540 -containerchecksum 1b3ad85dba5955a9dfb17d44a41db3e39c0d33920e1c36157e77803c4b2e402c6f7231c0628ad549c07ce7914f4a05c7da9369950b406270233d28f1a5adac55 -doccontainersize 826036 -doccontainerchecksum 42cab0f26d944da70ec3397946bf217155534f0def949f2a0fdeaf8c0dc30a5046447c5daa1d8e2d4fa4235cbd29fef2d8e6fa0c4c440c1ea58d1f2c4c2ab81d -docfiles size=237 - RELOC/doc/latex/greek-inputenc/README details="Readme" - RELOC/doc/latex/greek-inputenc/README.html details="Readme (HTML)" - RELOC/doc/latex/greek-inputenc/greek-utf8-minimal.pdf +containersize 6828 +containerchecksum 190b7cab561d01e6199f191f66d62bbf19d86c27c0ae797a9492c8e4dba51df3f0caee2672c6c0d35e78586ecb3f418f8b918f3b138e01962c7cb0812c8dcc0a +doccontainersize 681020 +doccontainerchecksum 5c28fda99a1db5bec9d7465ac38db88ac9e9eaf07f33356a616385add103786c4a7a7d77878217a72f89e5dda41c4623e6eb660e4728ddefddf729faecdfef81 +docfiles size=199 + RELOC/doc/latex/greek-inputenc/README.md details="Readme" + RELOC/doc/latex/greek-inputenc/greek-inputenc.html details="Package documentation" RELOC/doc/latex/greek-inputenc/greek-utf8-minimal.tex RELOC/doc/latex/greek-inputenc/greek-utf8.pdf details="Test, demonstrating the range covered" RELOC/doc/latex/greek-inputenc/greek-utf8.tex @@ -132020,10 +137412,11 @@ runfiles size=12 RELOC/tex/latex/greek-inputenc/iso-8859-7.def RELOC/tex/latex/greek-inputenc/lgrenc.dfu RELOC/tex/latex/greek-inputenc/macgreek.def +catalogue-contact-repository https://codeberg.org/milde/greek-tex catalogue-ctan /language/greek/greek-inputenc catalogue-license lppl1.3 catalogue-topics inputenc greek -catalogue-version 1.7 +catalogue-version 1.8.2 name greekdates category Package @@ -132236,145 +137629,136 @@ catalogue-version 6.0.0 name gregoriotex.aarch64-linux category Package -revision 58389 +revision 65927 shortdesc aarch64-linux files of gregoriotex -containersize 118720 -containerchecksum 5fac3de1927f2bbc7d14556ec0ecf84a7d51a6f8e0c891fc8c8ab281845304490efc492f8943f4c38cdceb349cb3fd5bacde6d6253fd5865b59f8c4e7535a20b +containersize 118760 +containerchecksum ebbc293daa59542c2b73d62767366265bb727f49dd4152741bc60e9b4414b7eaa802a430e973bd7e9844d0b952d6c46692228bc3eba08a6519cb2d687b2664f5 binfiles arch=aarch64-linux size=184 bin/aarch64-linux/gregorio name gregoriotex.amd64-freebsd category Package -revision 58388 +revision 65877 shortdesc amd64-freebsd files of gregoriotex -containersize 127752 -containerchecksum 6afd0cc4e4dd17dc3e7bba0405b1f11d267032807e9fd362d5f517727f25305b520101be70887bf3ef65e95274cc7607082c24d52b622ca3d10f3f5c04a81f2d +containersize 129424 +containerchecksum 349dddd8244b5469b9897b39cd41fc1f9fc47937f012067c1917be4630f443b9f765e328dee3412444335d56628437a6bda114f31f222730c5024ddf08f5ddd4 binfiles arch=amd64-freebsd size=183 bin/amd64-freebsd/gregorio name gregoriotex.amd64-netbsd category Package -revision 58386 +revision 65923 shortdesc amd64-netbsd files of gregoriotex -containersize 112212 -containerchecksum c2ab8668cd233e02098b9319594283da1efca485970452308a8835272e6934372dfb5ca5f1e16ee49a965a6b0427d51d975574047886f08e6a4560d527ef6199 +containersize 112236 +containerchecksum 92ac38de5a3740358381082a3758662735ae30c72fcf80d5898a2c96f29e0dbdde9c1f8ea8d49904cb58ff0a074890e30061cb4a475b833377b95f22dbd5bb7f binfiles arch=amd64-netbsd size=194 bin/amd64-netbsd/gregorio name gregoriotex.armhf-linux category Package -revision 58428 +revision 65877 shortdesc armhf-linux files of gregoriotex -containersize 103964 -containerchecksum c149a81c1d0ca5bdad4ba22809f586122423e51d848c540eb6dfa98a797533ebb5915e3d3b18e257cf83f05f3aa3677a79b190c7ac4843dd9b93d23406177170 +containersize 104020 +containerchecksum e9a8fdbc9e70cef21f734a1b2002dbaec04e8adea73e7918dda877d7cda9d6899a4b6220294f03b9a08253a520d5a3802f94aea8d90db2dd60a6dff6c8e925e5 binfiles arch=armhf-linux size=173 bin/armhf-linux/gregorio -name gregoriotex.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of gregoriotex -containersize 93176 -containerchecksum ed610b5a43f0766419500aac4b4c0bdaaf77bc54f4e325249500bc1f2264919e9ae9e9600646d8e8dac0179cee4190bf6f903bced997903d40038bf6d3582c0a -binfiles arch=i386-cygwin size=168 - bin/i386-cygwin/gregorio.exe - name gregoriotex.i386-freebsd category Package -revision 58388 +revision 65877 shortdesc i386-freebsd files of gregoriotex -containersize 110108 -containerchecksum e34d491c08db6d3cd70873534d6efea6f4da269cfabe4a1ab9d62131e0c679914b1d73fb47ec2bfe3b6371b1eb86d2215eb6008179b40b9be411b9d03c2c2f24 +containersize 112412 +containerchecksum cbb98e33ddb7d320c924e0bc4b86caa9dfec6b44ace171d1d4d7bd4966f675dca57948c6ecf99b968d5eba9c6d355d7977213a0447e99b535f8761b99ee71c21 binfiles arch=i386-freebsd size=174 bin/i386-freebsd/gregorio name gregoriotex.i386-linux category Package -revision 58378 +revision 65877 shortdesc i386-linux files of gregoriotex -containersize 130140 -containerchecksum da3fc86b165156f8920588f1c3a1513e2667cabb158f48f4aa150c0c93e36af3587efc9c463d683b278b7fc3712308bf9cb0660c35769eff48e35b2e231b01fd -binfiles arch=i386-linux size=189 +containersize 132508 +containerchecksum 8d31456af91c775571208e9e928ea8f104d6377671e26e62601d0bd82a82942f36b372638b3c3bb556d301496dc6675513ecac56b15c0e3d08b115763e652db9 +binfiles arch=i386-linux size=191 bin/i386-linux/gregorio name gregoriotex.i386-netbsd category Package -revision 58386 +revision 65923 shortdesc i386-netbsd files of gregoriotex -containersize 102192 -containerchecksum 99fe4c0d833d40e622fdbca2501024c26fe34d45814a4c9db8e5ee7b97e4b7eaff6e78ee171d30f50dd4c5e02d75b07e84131bc2bc0a3d57a5ba08ca8081cfa8 +containersize 102212 +containerchecksum c083cdff657183f3d63b46c0ba1b811d750b2f8103ebccbfe1a28703a77236b3dd1170b39a740657b61494e6a71f7f99ef4b342992a5ec20afa5c34d21334948 binfiles arch=i386-netbsd size=187 bin/i386-netbsd/gregorio name gregoriotex.i386-solaris category Package -revision 58388 +revision 65877 shortdesc i386-solaris files of gregoriotex -containersize 123820 -containerchecksum ac65ef312055406042f8f7a51e70cf3d08b854c63a1e8561be1ddf647aae8c0702a1e2b616ef68aa5de66f14fbf6feee031b40c9dbc6619d95b70a6c5343ab9f +containersize 123824 +containerchecksum d91a86fb3840075aa8f7e6456d19b9ff13ae9da73ac18e1ee57063c64505f765d3b9e8dc3d87c1304e52e48461627cd9715e2ceecfdc11f0c4026a3589f976bc binfiles arch=i386-solaris size=182 bin/i386-solaris/gregorio name gregoriotex.universal-darwin category Package -revision 58418 +revision 65895 shortdesc universal-darwin files of gregoriotex -containersize 235016 -containerchecksum 5ba6304136969d53c47a8043a77da8031f61c3cbc3e79a3e8db6786de468bc1d3f2e976363979e54f074f7c3ec592b754429c8b3e456cde18c427b1844ff374b -binfiles arch=universal-darwin size=378 +containersize 235384 +containerchecksum 9501677eed8a2c06e1398b2f5fae865534b0b6265dd0839d74904866df3f91ec0b10997b9c3d3bc563ab553cd6bdb65359c5eba0ac3696c013e3e7dec75b65e5 +binfiles arch=universal-darwin size=382 bin/universal-darwin/gregorio -name gregoriotex.win32 +name gregoriotex.windows category Package -revision 58783 -shortdesc win32 files of gregoriotex -containersize 282616 -containerchecksum 19b2f6f8234f0fa40dde993d8b0ed4dec108eaf8bf2606df3c8c6e60e2962c7d911019ea3ae6ce080e36bfd6fb935f3af85fbd3ea32101ce63bf991bc82ce80e -binfiles arch=win32 size=274 - bin/win32/gregorio.exe +revision 65891 +shortdesc windows files of gregoriotex +containersize 323832 +containerchecksum 33dabeba2f751b135464864fbc1c7b6ddd4498cb67a2c6240c370134431ac3ab80eeda4cdef08666c162e6e23936dcd9d753afa0423ff2e92213bd0c71632d7b +binfiles arch=windows size=303 + bin/windows/gregorio.exe name gregoriotex.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of gregoriotex -containersize 102772 -containerchecksum a8d375eb3581530bab1a2a36dfdb0705562cfbe80e2c2d2970462b6a239e984a74b3c01eb4aa6ef8e4a4389c0c0e9e56ed732791f6f5fc2beed506bf3c618218 +containersize 103100 +containerchecksum 837af6f58fe98812d29055f3307d64477a7bded51505229abc3cbc1690f708f78e70115c2253e4dd43c68cce803415b5e7d38230feac7b0e758d9d9228778aea binfiles arch=x86_64-cygwin size=167 bin/x86_64-cygwin/gregorio.exe name gregoriotex.x86_64-darwinlegacy category Package -revision 58388 +revision 65877 shortdesc x86_64-darwinlegacy files of gregoriotex -containersize 123256 -containerchecksum fa279d4009d8582420242c0c48a99322985773a065f90d8fc4bb446c2f77918b9e0a129b96e944b8750a8a52fa26e7d52a10bcd034dd404863704abe3325d88a +containersize 123312 +containerchecksum 39ef53bb554a3de20ebadae589f96cee690a6de42767dc5d83a63584c074a0b1e6f92637eedbd09daf09203db4777bce5adae4ee988d029a0c0069d25fd0af46 binfiles arch=x86_64-darwinlegacy size=178 bin/x86_64-darwinlegacy/gregorio name gregoriotex.x86_64-linux category Package -revision 58378 +revision 65877 shortdesc x86_64-linux files of gregoriotex -containersize 134224 -containerchecksum 9b328b436058f1829a7a731ccc537a7e876a584bdb7a67e2e053aa704a0f360403e2bd172dc883cb523a64b58073bb07cf7a7d0af5a580c87eaa5db245b66c88 -binfiles arch=x86_64-linux size=184 +containersize 132568 +containerchecksum f3a5f132be4a72878a2b68cca6caf624a8291538ede01233f82c088e5126caeefaa41338c4d68a0670694674d5bc86081d317ac4392c533ba23055ebb1a93492 +binfiles arch=x86_64-linux size=185 bin/x86_64-linux/gregorio name gregoriotex.x86_64-linuxmusl category Package -revision 58378 +revision 65877 shortdesc x86_64-linuxmusl files of gregoriotex -containersize 139864 -containerchecksum 0671d334004f94834031d98e539efc87b7aca8c418b15edcd0f37187d96fc4b3e2d7b323601236802a42317fd87c0ae8163c5802cb25503031dffcb969008344 +containersize 143052 +containerchecksum d524ad6f7ba88e921059567728fb612d31a3ead1c07166168969a46c71e8d49b2075f6b81f132ca7c917d41f0e952b9579a2bb346af6fd4a3ca8c8a9312c1397 binfiles arch=x86_64-linuxmusl size=187 bin/x86_64-linuxmusl/gregorio name gregoriotex.x86_64-solaris category Package -revision 58388 +revision 65877 shortdesc x86_64-solaris files of gregoriotex -containersize 143344 -containerchecksum bc373d76875ad74754f12ebe652f0c4a6e5d9fa1f7cf0111db2b4e4deed5137f97dc9f9387b2633a31401146ca8541da8da5aa5aeb6e69501c10c20e9d6c8cf4 +containersize 143400 +containerchecksum 078586aaf3a964c07682ae68153490ccff24986e15e73a1e525d9266e10a4773ab48010da92649e295b9c22b615f0be1fd32081d018f76fbbb411d4d4f79ef26 binfiles arch=x86_64-solaris size=194 bin/x86_64-solaris/gregorio @@ -132466,7 +137850,7 @@ catalogue-version 0.2 name grid category Package -revision 15878 +revision 61719 shortdesc Grid typesetting in LaTeX relocated 1 longdesc The package helps to enables grid typesetting in double column @@ -132477,10 +137861,10 @@ longdesc achieve it in a limited way. An example document, grid.tex, is longdesc provided with simple instructions to typeset it using the longdesc package. The package needs a lot more work: this is only a longdesc beginning... -containersize 3152 -containerchecksum c8a6c0d6ac1f6043411d5484c87877a939d891aa3bbaef31248f8dc04f39bfc5f7f13344ab2997724682f228f180025bc5afcba8712ee95de983d7182785a8fd +containersize 3132 +containerchecksum 312b142c43ef4bb9624fd6589d086d733593dc0d387894bf58749b3f6251f33df415656b974935352a0d4fff090953f136d0353b98329ed3051ad179708af12e doccontainersize 134640 -doccontainerchecksum 9fa0fbf1dfd0fd334c9dd57f50e6d1f893a222bda6402345c70240fce48ea07065fa25ce890fda77983dcb537c8b3b4740cea71ed6a6b4b94275f1e2bd8ea983 +doccontainerchecksum c3559726bf89f766b0d95e3b493046ee6b4c0edee43e4c581adb150e6ad5358ad0a1a3a67b75ea1095f2da87393734972a59693332de10b7b459579a7f73e534 docfiles size=45 RELOC/doc/latex/grid/README details="Readme" RELOC/doc/latex/grid/grid.pdf details="Package documentation" @@ -132488,12 +137872,12 @@ docfiles size=45 RELOC/doc/latex/grid/manifest.txt RELOC/doc/latex/grid/rvdtx.sty srccontainersize 680 -srccontainerchecksum 01b7c6dc356487d9e1d9b210828bdb6af50382a59d65b85c8246defe963ada4ee0796a93793d90d25c37ea9c86432d9c05c3eb05598c72410fc2f865e1e69836 +srccontainerchecksum dd59a48ee18940509d89ea55219706f7c0ae6d7f699b77137495fd4a850cd9d373f01cd9f2485a2ec47204c380c0a17c4986940e0a0ef21740c383e0eec81f0e srcfiles size=1 RELOC/source/latex/grid/Makefile runfiles size=3 RELOC/tex/latex/grid/grid.sty -catalogue-contact-home http://www.river-valley.com +catalogue-contact-home http://river-valley.com// catalogue-ctan /macros/latex/contrib/grid catalogue-license lppl catalogue-topics typeset-grid @@ -132727,6 +138111,42 @@ catalogue-license gpl2 catalogue-topics maths logic catalogue-version 1.03 +name gs1 +category Package +revision 59620 +shortdesc Typeset EAN barcodes using TeX rules, only +relocated 1 +longdesc The (LaTeX3) package typesets EAN-8 and EAN-13 barcodes, using +longdesc the facilities of the rule-D package. +containersize 3436 +containerchecksum d12c13d30c9e0303bf6c6bfb833d673cf673de3c60cb9d637aeff80470d34e04653860e2186c16c55660faa107bf583409a9891ac8d5ebf1612c8410cf60d10d +doccontainersize 1057448 +doccontainerchecksum b3757db8c56cbacb87bd17d578be51321b0ac06a3cbcd75b136cdf52bc66a046f0db42af84e5fc33bd347fb52950448a352027713ad01263fe6344a75576efde +docfiles size=291 + RELOC/doc/latex/gs1/EANBarcode.tex + RELOC/doc/latex/gs1/EANControlDigit.tex + RELOC/doc/latex/gs1/GS1.pdf details="Package documentation" + RELOC/doc/latex/gs1/GSSetup.tex + RELOC/doc/latex/gs1/GS_cut_EAN_control_digit.tex + RELOC/doc/latex/gs1/GS_set_EAN_control_digit.tex + RELOC/doc/latex/gs1/GS_set_code_digit_seq.tex + RELOC/doc/latex/gs1/README details="Readme" + RELOC/doc/latex/gs1/int_set_to_EAN_control_digit.tex + RELOC/doc/latex/gs1/rule-D.pdf +srccontainersize 9680 +srccontainerchecksum bc9f08753c9663ecc056de0ca7662dbecdec18ab9346e8590fc1ecd373392bce8af50a4a5f37eb6301a2cebce0dffdf0025a3d036f14ad0f696557abdb8f2716 +srcfiles size=11 + RELOC/source/latex/gs1/GS1.dtx + RELOC/source/latex/gs1/GS1.ins + RELOC/source/latex/gs1/rule-D.dtx +runfiles size=4 + RELOC/tex/latex/gs1/GS1.sty + RELOC/tex/latex/gs1/rule-D.sty +catalogue-ctan /macros/latex/contrib/gs1 +catalogue-license lppl1.3c +catalogue-topics barcode expl3 +catalogue-version 23 + name gsemthesis category Package revision 56291 @@ -132784,145 +138204,136 @@ catalogue-version 1.19.2 name gsftopk.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of gsftopk -containersize 39428 -containerchecksum 60d3e223f2bdaff136b3e5e7a02381b610828e33a4e423111b6af01f0d76895ca279d6cc6937179b5ee1d2260fb668b69a34f0c3a888dcab13870746b0d645e1 +containersize 39416 +containerchecksum 9a651729a93a916bf4399be4b23e63763c7ace15b9697c6a1cd0d2b81d6915452f45cb32147a0ea7f0128c9e2b19863e8340987588dbc6e18162a90860aec3f3 binfiles arch=aarch64-linux size=25 bin/aarch64-linux/gsftopk name gsftopk.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of gsftopk -containersize 43336 -containerchecksum e2c05c56fdde4e05211a5f57de1ad229245d8518bb0d930b0630a78d9e502c4e063453064bd5dd64362b29857ac78487408d1a89a10e7565aeece512b8396091 +containersize 43484 +containerchecksum 322d533b903815002f3a9c030fa537755a089ba00a0b83ce01aa7ce2868b9228dc5b83272c4346ce8319b897e6dc14e369fe10ce749dd7658f5d34bc462bb336 binfiles arch=amd64-freebsd size=25 bin/amd64-freebsd/gsftopk name gsftopk.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of gsftopk -containersize 37244 -containerchecksum 9261e2889b7ba0f679cc2a1fc68262488f254f76b51164f36f33e1aaa1c5686b9cd670a7a1a6f6fdd13513b4f3592f8909e55934dd68f25cb9f5f5c204916531 +containersize 37268 +containerchecksum d3525cee5b081f150d7cf5f8b29e04038dd71f9ceaaa198be923db550b2319116f8bafcf2e4990e7f38cd6a45fcbc6a29107dbf407aac9a0c95298a443484529 binfiles arch=amd64-netbsd size=29 bin/amd64-netbsd/gsftopk name gsftopk.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of gsftopk -containersize 33676 -containerchecksum 8f4ed2b2d8f470fb6e4ee6b88fac6fad911a9d2576b92f2d5c55d5fe1b9a76b8170507a48c8cf68f08d5d562cedbad6afeecfed339da57cb83268d56f73c44a0 +containersize 33592 +containerchecksum 7234f92ae97cc8e33e17dd4b18572a8393d5b318bb61e9eac4eed991927496cdcc6381ea7409234881b92821355265e6acbe8123e25500d08a318727005e2b1c binfiles arch=armhf-linux size=20 bin/armhf-linux/gsftopk -name gsftopk.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of gsftopk -containersize 12040 -containerchecksum 2c43cf4941d505a3379978b18d5b6e468547a07e1488bef3602899f0e08adccdd2ca0da8a9178bc11c8d0f82e1dc7f6f1ace67598f23342411a6c63f85430a53 -binfiles arch=i386-cygwin size=7 - bin/i386-cygwin/gsftopk.exe - name gsftopk.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of gsftopk -containersize 38076 -containerchecksum 044ed4ffdaa4ce966a0dc90135c4cf8c9d24098f1ea3e7951d7598f2bdd7281782fe711d6807405fdb9e3cbc155b4883210eeb66ed23f2acf5472f0e7b435f77 +containersize 38964 +containerchecksum 544dfcded276fe20c1a654cf655c4baee4744a7fe9c401526d19f6aa7f92824b2c2a85fb7fe4a55a73d6b3de25bc2f06631de397beb19d007be387b96274ee39 binfiles arch=i386-freebsd size=22 bin/i386-freebsd/gsftopk name gsftopk.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of gsftopk -containersize 43152 -containerchecksum 1e360a6620e72bdab29f208a50e4d735b49b4c297c07b0230c747497296c9dd09fd99ddc37b5f67ca8e9c4284427c348ab5423350188a978f94fcd3f93384f28 -binfiles arch=i386-linux size=26 +containersize 43748 +containerchecksum edbb2a3da3653520b53d3aa44089ab37627045f92006b8bd8797c18c96b50b7d323556e52a9e826e25967ba58485922ac3cac2e1f471047da2771fb6bd7d1f85 +binfiles arch=i386-linux size=27 bin/i386-linux/gsftopk name gsftopk.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of gsftopk -containersize 34180 -containerchecksum 56a088a5e8204a775886cab7a7f8c97457b0aaaff7b55f403fad28a9ac8d85358502ba88dcbf4878b29f826c3d8ace8fb1fd7787b9e6f9f1d777d93b33481c8d +containersize 34188 +containerchecksum 065d2cf1f7fb46cadf1e80a217ea8be88f6cc9780e1184515479d6904021c8eae28119d7e4e94f11e627d75297ac6c9c944f7862f3a7e0aaa3749f0aa17b1d71 binfiles arch=i386-netbsd size=26 bin/i386-netbsd/gsftopk name gsftopk.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of gsftopk -containersize 39980 -containerchecksum 990b1e7890d1c2e1100421c0ae75b29cb3a14cefc684912a9f443e73e303d58866d3300a3f9f0fd11632d013c7eb78176849fbf0c9196b8e651eda7eabe0769f +containersize 39960 +containerchecksum 75bbffda1c8ecd3256651cb98e69a7f4d332a49d7b941c964d93fbeef14d2f1e04aa68e0fcbff5e8e1591c3a74a836a3af6a9af50fb1c4af7eb6443b1073fc0d binfiles arch=i386-solaris size=22 bin/i386-solaris/gsftopk name gsftopk.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of gsftopk -containersize 79608 -containerchecksum adfb30b3024a3004ff3f3d0967b007c3fd13c9ad7784e3a7dfc8d5edf299879894e403ed9221c1b522491d9c500395ea4ba35d43cf28ebc968cf98ae256bef7d +containersize 80720 +containerchecksum 3caf84e800927c5fcfc29d49a3355b2ad8484c862ebc404417049fe6046fca962fec21e8d6bcb646a16cec37eb6a40bb2cfc3c1d70c61b6adec8f450eb1a06c5 binfiles arch=universal-darwin size=67 bin/universal-darwin/gsftopk -name gsftopk.win32 +name gsftopk.windows category TLCore -revision 58783 -shortdesc win32 files of gsftopk -containersize 12972 -containerchecksum 15a1a779c301d1e1bdbdf4713002a4286f972aac263feac91395c3d7967d6aa4bf4d7eb10662ec4224ebe14c9095d056f8a1fc37cbb9f5f2f8b66aef98658e00 -binfiles arch=win32 size=6 - bin/win32/gsftopk.exe +revision 65891 +shortdesc windows files of gsftopk +containersize 13512 +containerchecksum aac1ba13addf31274f1bf305d6316f5263d15849f2a0827de49b9a0b0c01cffef9b79a79f5ceec3a7bd1c3c4d5e75d231c737946d12434257f3958db70b98e0c +binfiles arch=windows size=7 + bin/windows/gsftopk.exe name gsftopk.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of gsftopk -containersize 12208 -containerchecksum 41e42877e21625a36e7599bdd1b45e47f461d13615edbffb7ab9e0876dd43d417d6a9d4030b17a6280256e791ea2070303b5bdf40482d258a669e6852884eab1 +containersize 12288 +containerchecksum 07590cb489ef67b74c59ff2d1752cae1b3341d0e7dd72b55146f3cbbb7a8d09dcdcfc850819bf712273c8fb8af72222a045160dc8084a2eee3ef243cfc2846f8 binfiles arch=x86_64-cygwin size=7 bin/x86_64-cygwin/gsftopk.exe name gsftopk.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of gsftopk -containersize 39648 -containerchecksum c9d57cd916fb59fad2f83ea7d69a59475fb2c6486c672c77c0ac7559326f2c60f85d3da19491e59979e98ec3f76e457d3d770b3c3d098fcfc423d121ce8da4a0 +containersize 39608 +containerchecksum fc2e26b8ab95df6f590db1882f364ad03c3167f5b39beb461a337568a6b4e28130aac4bd1d685b4967454bd293fb3372d131ad972437bb49b194088d235cfbc2 binfiles arch=x86_64-darwinlegacy size=24 bin/x86_64-darwinlegacy/gsftopk name gsftopk.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of gsftopk -containersize 41076 -containerchecksum 560f347b39899702c13090c424adde1ff222c725b8d61e557c804e73153fb50ed572f30f4e8428994175ebce21a51916c154a2b1e4ff4405c2876dccccbe5014 -binfiles arch=x86_64-linux size=23 +containersize 41252 +containerchecksum ba01e745c62a3af2234f6bb448593ba02e3bfe89b2b534e64b8132428e49cd2aa8d7911ad593e1833badd13a3d2967aabb699dd017bdd0bcfaf10cae4c968c5c +binfiles arch=x86_64-linux size=24 bin/x86_64-linux/gsftopk name gsftopk.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of gsftopk -containersize 42780 -containerchecksum 807c241204d58a5675a9aa1735ea10ca6f630eafec81b152ae12be4f5f67fcdae5380230009fb48fa50ec5730352172dcfa65231621a6bb88226a2a865fa4591 -binfiles arch=x86_64-linuxmusl size=26 +containersize 42104 +containerchecksum 36078a43c04cb055713146e844a84838ec5a65a4ac2545e950beca7d334c2ff05ad01b55c06eee237e2bfde18c9a1a5324b51ecaa014cfa39d575ccd4323733d +binfiles arch=x86_64-linuxmusl size=24 bin/x86_64-linuxmusl/gsftopk name gsftopk.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of gsftopk -containersize 43092 -containerchecksum 2502203a3b0cf746663724ed86f3ba705fd46f0ca919651d3c16fe87e50e745c08212681802edb387d0c34a5ead967f29b6b33b9403f50b156b34c7fc77a9d7d +containersize 43032 +containerchecksum 48858c3f1d3172388dab57ef0342120eab22c50e81d493c332cc95f50a29d906da3fbba05d4e7ae87c4300949679a98aee2313b350520590660923586b63dd5b binfiles arch=x86_64-solaris size=26 bin/x86_64-solaris/gsftopk @@ -133440,7 +138851,7 @@ docfiles size=82 name gzt category Package -revision 57765 +revision 63591 shortdesc Bundle of classes for "La Gazette des Mathematiciens" relocated 1 longdesc This bundle provides two classes and BibLaTeX styles for the @@ -133453,17 +138864,18 @@ longdesc to work their document in actual conditions, and provide a longdesc number of tools (commands and environments) to facilitate the longdesc drafting of documents, in particular those containing longdesc mathematical formulas. -containersize 33980 -containerchecksum b09bdcde2891d6d84ca193a6183b4286d1912c98fdd7cf6a7e737574f352d8eea2fa5cdcf71602291e9f1abd8f7aed3ad9fd6d56571f62a59e9d9bc58c875637 -doccontainersize 634440 -doccontainerchecksum a44bcb21337d7799d6fec0da69784252bdf74be493bfa75fe425a83e7f6d71b1ba46e45626d94b5a1b6234e0c21661cad68e0a95339d19c99577ddaa31a1a451 -docfiles size=178 +containersize 34480 +containerchecksum 5a2e547bb87b29649169a5114fb4d4175a7630473f30ea28ae00d6dc29bc6a4b3ee33a07c2e94fb6ee4b4179a0bd28f49a72a3d3ed822d852524878f34d77af3 +doccontainersize 1180784 +doccontainerchecksum 5ca5b4dd6e86cf2457b384bb663192313110e4c2666a827c10f36e348d9b8bfc37f9f69debf275728f822a8c01656a2ede34c2873dce1341c3d1e2b054e9934e +docfiles size=321 RELOC/doc/latex/gzt/CHANGELOG.md RELOC/doc/latex/gzt/README.md details="Readme" RELOC/doc/latex/gzt/english/README-TRANSLATION.md + RELOC/doc/latex/gzt/english/gzt-code.pdf details="Code documentation" RELOC/doc/latex/gzt/french/denis.png RELOC/doc/latex/gzt/french/gzt-fr.bib - RELOC/doc/latex/gzt/french/gzt-fr.pdf details="Package documentation" language="fr" + RELOC/doc/latex/gzt/french/gzt-fr.pdf details="User manual" language="fr" RELOC/doc/latex/gzt/french/gzt-fr.tex RELOC/doc/latex/gzt/french/latexmkrc RELOC/doc/latex/gzt/french/sections/fixed-footnotes.tex @@ -133471,9 +138883,9 @@ docfiles size=178 RELOC/doc/latex/gzt/french/sections/notations.tex RELOC/doc/latex/gzt/french/sections/packages-charges.tex RELOC/doc/latex/gzt/french/sections/todo.tex -srccontainersize 42964 -srccontainerchecksum 48073e4390ca1e8c0fdf1c95069439160b77ac2277dd1452b36c48172589b4a5aca1b5a2f040675acba09f5f60d80fa241475c1eec828d13d21f942ded6714bf -srcfiles size=56 +srccontainersize 43448 +srccontainerchecksum e5785d489263e42fa22e1aeec7d20211dbfc234feace273b4371b44227ca3342c68aa547a19e37608eab354ec1794f313c55a761c555922e0c3de408d5299d0d +srcfiles size=57 RELOC/source/latex/gzt/gzt.dtx runfiles size=68 RELOC/tex/latex/gzt/gzt.cfg @@ -133484,11 +138896,12 @@ runfiles size=68 RELOC/tex/latex/gzt/images/README-PICTOGRAMS.md RELOC/tex/latex/gzt/images/gzt-logo.pdf catalogue-contact-bugs https://github.com/dbitouze/gzt/issues -catalogue-contact-repository https://github.com/dbitouze/gzt +catalogue-contact-development https://github.com/dbitouze/gzt/ +catalogue-contact-repository https://github.com/dbitouze/gzt/ catalogue-ctan /macros/latex/contrib/gzt catalogue-license lppl1.3c catalogue-topics journalpub class french -catalogue-version 1.0.1 +catalogue-version 1.1.3 name h2020proposal category Package @@ -133542,6 +138955,57 @@ catalogue-license gpl3 catalogue-topics proposal class catalogue-version 1.0 +name ha-prosper +category Package +revision 59651 +shortdesc Patches and improvements for prosper +relocated 1 +longdesc HA-prosper is a patch for prosper that adds new functionality +longdesc to prosper based presentations. Among the new features you will +longdesc find automatic generation of a table of contents on each slide, +longdesc support for notes and portrait slides. The available styles +longdesc demonstrate how to expand the functionality of prosper even +longdesc further. +containersize 28404 +containerchecksum fc78d9c422c05e4d5b859d39f4b681c5deda4d6850ea383f33b71b0e2aebc5e4740811a831e8e364122c7f451866751d77af8d5e4fd6b8b9f5dbf76f23a7d09f +doccontainersize 205056 +doccontainerchecksum 939e86ee09351991654d8542cc21667e16d64dc56f0e9d29932b816458319c3ba8e0632e92bc8c17cd104fd10dd7171a89f9026fc9faaa197fd7376c61377d63 +docfiles size=62 + RELOC/doc/latex/ha-prosper/HA-prosper.pdf details="Package documentation" + RELOC/doc/latex/ha-prosper/HAPBigtest.tex + RELOC/doc/latex/ha-prosper/HAPDualslide.tex + RELOC/doc/latex/ha-prosper/HAPIntroduction.tex + RELOC/doc/latex/ha-prosper/README details="Package README" +srccontainersize 38768 +srccontainerchecksum 0ef051d229ef636232751d77ead251622845f9b973ee32cfcdf67c046423334c0fff283fa1f569464931ff8a6ec139e9fb16acb133874bb56aa11684b7388f00 +srcfiles size=41 + RELOC/source/latex/ha-prosper/HA-prosper.def + RELOC/source/latex/ha-prosper/HA-prosper.dtx +runfiles size=57 + RELOC/tex/latex/ha-prosper/HA-prosper.cfg + RELOC/tex/latex/ha-prosper/HA-prosper.sty + RELOC/tex/latex/ha-prosper/Styles/Aggie/AMLogo.eps + RELOC/tex/latex/ha-prosper/Styles/Aggie/HAPAggie.sty + RELOC/tex/latex/ha-prosper/Styles/Aggie/files.txt + RELOC/tex/latex/ha-prosper/Styles/Capsules/HAPcapsules.sty + RELOC/tex/latex/ha-prosper/Styles/Ciment/HAPciment.sty + RELOC/tex/latex/ha-prosper/Styles/Fyma/HAPFyma.sty + RELOC/tex/latex/ha-prosper/Styles/HA/HAPHA.sty + RELOC/tex/latex/ha-prosper/Styles/HA/flower.ps + RELOC/tex/latex/ha-prosper/Styles/Lakar/HAPLakar.sty + RELOC/tex/latex/ha-prosper/Styles/Simple/HAPsimple.sty + RELOC/tex/latex/ha-prosper/Styles/TCS/HAPTCS.sty + RELOC/tex/latex/ha-prosper/Styles/TCS/HAPTCSTealBlue.sty + RELOC/tex/latex/ha-prosper/Styles/TCS/HAPTCSgrad.sty + RELOC/tex/latex/ha-prosper/Styles/TCS/TCSgradlogo.ps + RELOC/tex/latex/ha-prosper/Styles/TCS/TCSlogo.ps + RELOC/tex/latex/ha-prosper/Styles/Tycja/HAPTycja.sty +catalogue-also powerdot +catalogue-ctan /macros/latex/contrib/ha-prosper +catalogue-license lppl +catalogue-topics presentation +catalogue-version 4.21 + name hackthefootline category Package revision 46494 @@ -133641,136 +139105,25 @@ catalogue-version 0.1 name hagenberg-thesis category Package -revision 56798 -shortdesc A Collection of LaTeX classes, style files, and example documents for academic manuscripts -relocated 1 -longdesc This bundle contains a collection of modern LaTeX classes, -longdesc style files, and example documents for authoring Bachelor, -longdesc Master, or Diploma theses and related academic manuscripts in -longdesc English and German. Includes a comprehensive tutorial (in -longdesc German) with detailed instructions and authoring guidelines. -containersize 18368 -containerchecksum abfb384663a77bd084a7a4f3026f59015b1cb70a851e25153c921ede1089bf43b6abf3a8a50469a55cfa6598d54983604d395eab8c5115ecefe7250ba872462a -doccontainersize 3877600 -doccontainerchecksum 78b8f4fff31a9f0a63b6d31e5d07bf8bf76aa6ad5b37e8ab7a28522bb9f9963d0b8e99925681286696d8e6bb688af8ea02788faaa7bff0ab50d2f166b6c9a4af -docfiles size=2194 +revision 65819 +shortdesc Collection of LaTeX classes, style files and example documents for academic manuscripts +relocated 1 +longdesc A collection of modern LaTeX classes, style files and example +longdesc documents for authoring Bachelor, Master or Diploma theses and +longdesc related academic manuscripts in English and German. Includes +longdesc comprehensive tutorials (in English and German) with detailed +longdesc instructions and authoring guidelines. +containersize 19864 +containerchecksum bba9dd22c1e4cf082697c555f2bca5b53af2f3684c47c8911cd11af9f35c9e16e60c5d6e7941436f0a584cc98f882f22c5c855194cc71df7e928f105bcecf9a3 +doccontainersize 2620340 +doccontainerchecksum 9e73ee93a231c319ed65a2c23d23d28ad224367ef7773a9d5c1de474eaf6f9d2a402ae1afa4138ec172ca9e07a5fe64c47d57e16ceaf24b203390a0adbf645fc +docfiles size=1038 RELOC/doc/latex/hagenberg-thesis/README.md details="Readme" - RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/images/cola-public-domain-photo-p.jpg - RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbArticle/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/images/logo.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbInternshipReport/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-clean.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/images/screenshot-dirty.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportDE/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-clean.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/images/screenshot-dirty.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbLabReportEN/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/images/PLACE_IMAGES_HERE.txt - RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbTermReport/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_a.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_b.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_c.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/anhang_d.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/back/messbox.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abbildungen.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/abschlussarbeit.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/drucken.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/einleitung.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/latex.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/literatur.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/mathematik.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/chapters/schluss.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/abstract.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/kurzfassung.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/front/vorwort.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/images/logo.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisDE/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_a.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_b.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_c.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/appendix_d.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/back/printbox.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/closing.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/figures.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/introduction.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/latex.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/literature.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/mathematics.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/printing.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/chapters/thethesis.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/abstract.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/kurzfassung.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/front/preface.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/images/logo.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisEN/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_a.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_b.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_c.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/anhang_d.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/back/messbox.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abbildungen.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/abschlussarbeit.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/drucken.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/einleitung.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/latex.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/literatur.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/mathematik.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/chapters/schluss.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/abstract.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/kurzfassung.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/front/vorwort.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-1.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ball-bearing-2.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/cola-public-domain-photo-p.jpg - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-1.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters-2.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.ai - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ellipse-parameters.fh11.zip - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/fragebogen.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/freehand-export-screen-setup.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/ibm-360-color.jpg - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-pdf-save-screenhot.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template-orig.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.pdf_tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/inkscape-template.svg - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/logo.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.nb - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/mathematica-example.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/overhang-mounting.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/photoshop-eps-screen.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-clean.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/screenshot-dirty.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/straddle-mounting.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvi-26.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/techniccenter-profile-dvips-26.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.fh11.zip - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/workflow-cm.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/images/yap-inverse-search-settings.png - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/HgbThesisTutorial/references.bib - RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.pdf - RELOC/doc/latex/hagenberg-thesis/examples/Manual/main.tex - RELOC/doc/latex/hagenberg-thesis/examples/Manual/references.bib - RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis-tutorial.pdf details="Example document / Tutorial (German)" language="de" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis-tutorial-de.pdf details="Example document / Tutorial" language="de" + RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis-tutorial-en.pdf details="Example document / Tutorial" language="en" RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.pdf details="Package documentation" RELOC/doc/latex/hagenberg-thesis/hagenberg-thesis.tex -runfiles size=21 +runfiles size=23 RELOC/tex/latex/hagenberg-thesis/hgb.sty RELOC/tex/latex/hagenberg-thesis/hgbabbrev.sty RELOC/tex/latex/hagenberg-thesis/hgbalgo.sty @@ -133822,6 +139175,39 @@ catalogue-license lppl1.3 catalogue-topics amusements maths maths-symbol catalogue-version 0.11 +name hamnosys +category Package +revision 61941 +shortdesc A font for sign languages +relocated 1 +longdesc The Hamburg Notation System, HamNoSys for short, is a system +longdesc for the phonetic transcription of signed languages. This +longdesc package makes HamNoSys available in XeLaTeX and LuaLaTeX. The +longdesc package provides a Unicode font for rendering HamNoSys symbols +longdesc as well as three methods for entering them. +containersize 20636 +containerchecksum 36af23f5eb95a743a691047d9dc02a19825e88e8fa62f1931f5c2f13e95f89351b42dda6a204493d5f2a147e0d8c039b6b5bbb2aa82bec00824c7c5612d5056c +doccontainersize 181248 +doccontainerchecksum 068e8232cf97513c69845e66eb6772e80de0dcf9422a3547db3b002ada137a1b385829a7e8258145ec2b5a05becfd08ad5ee40fce71326b93c3241bbc9f8c0b6 +docfiles size=47 + RELOC/doc/fonts/hamnosys/README.md details="Readme" + RELOC/doc/fonts/hamnosys/hamnosys.pdf details="Package documentation" +srccontainersize 15888 +srccontainerchecksum bacd0fdea3934bcfd32749c759d1e57e740c0e47e477790dd3c706d252c9439182c0af36eba30b8c00c785bf782605c319bf63b7d9ab677c799a5997f63af32c +srcfiles size=24 + RELOC/source/fonts/hamnosys/hamnosys.dtx + RELOC/source/fonts/hamnosys/hamnosys.ins +runfiles size=16 + RELOC/fonts/truetype/public/hamnosys/HamNoSysUnicode.ttf + RELOC/tex/latex/hamnosys/hamnosys.sty +catalogue-contact-bugs https://github.com/DGS-Korpus/HamNoSys4TeX/issues +catalogue-contact-home https://github.com/DGS-Korpus/HamNoSys4TeX +catalogue-contact-repository https://github.com/DGS-Korpus/HamNoSys4TeX +catalogue-ctan /fonts/hamnosys +catalogue-license lppl1.3c +catalogue-topics accessible font-ttf +catalogue-version 1.0.3 + name handin category Package revision 48255 @@ -133902,6 +139288,34 @@ catalogue-license lppl1.3 catalogue-topics presentation catalogue-version 1.6.0 +name handoutwithnotes +category Package +revision 62140 +shortdesc Create Handouts with notes from your LaTeX beamer presentation +relocated 1 +longdesc This package provides pgfpages layouts to place notes next to +longdesc the scaled slides. +containersize 3644 +containerchecksum cac79ba06d60e99e151b272f28d6a8a04f1f766f406801c6f4fb24f4b4c74cc59d78fc6961624b1f77405bab6687ad896826426d8bad30b3b210e7ad5be035af +doccontainersize 317144 +doccontainerchecksum f4f604fd888f5e072d8c002fcd72edb726d3f5512b5fd511446f3fa1295f5a6608510dabdfc6a162d648a3e020489d1e1ecaccb7e563f54e8ec156df51be6dd8 +docfiles size=80 + RELOC/doc/latex/handoutwithnotes/README.md details="Readme" + RELOC/doc/latex/handoutwithnotes/handoutWithNotes.pdf details="Package documentation" +srccontainersize 7304 +srccontainerchecksum b41429450b42e341df413bc1d7e4266836370617ee94fe685710ce66c7b559b0ed44e3ecf95963fd84595845eef57b695982b9ce300f214901bd967a06f09269 +srcfiles size=10 + RELOC/source/latex/handoutwithnotes/handoutWithNotes.dtx + RELOC/source/latex/handoutwithnotes/handoutWithNotes.ins +runfiles size=6 + RELOC/tex/latex/handoutwithnotes/handoutWithNotes.sty +catalogue-contact-bugs https://github.com/gdiepen/latexbeamer-handoutWithNotes/issues +catalogue-contact-repository https://github.com/gdiepen/latexbeamer-handoutWithNotes +catalogue-ctan /macros/latex/contrib/handoutwithnotes +catalogue-license lppl1.3c +catalogue-topics presentation expl3 +catalogue-version 1.3 + name hands category Package revision 13293 @@ -134002,6 +139416,39 @@ catalogue-license pd catalogue-topics games catalogue-version 20120101 +name hanzibox +category Package +revision 63062 +shortdesc Boxed Chinese characters with Pinyin above and translation below +relocated 1 +longdesc This is a LaTeX package written to simplify the input of +longdesc Chinese with Hanyu Pinyin and translation. Hanyu Pinyin is +longdesc placed above Chinese with the xpinyin package, and the +longdesc translation is placed below. The package can be used as a +longdesc utility for learning to write and pronounce Chinese characters, +longdesc for Chinese character learning plans, presentations, exercise +longdesc booklets and other documentation work. +containersize 7492 +containerchecksum 125406446426da598ff92398a7d0de5ea26e866d4f9248269191d113f50e8a613075e3e3d3f9d625ad3e9e0b1c5ca978a0420c2de9f31f12958d5adf7e2cbdeb +doccontainersize 593704 +doccontainerchecksum 87ef15dc7f3920e11d0cc678f56365ba9dde31210e0add0d80763c1d271baae5b7e905f72f2081f5712c286edacc6943e38df4eb112c7ba17c125edb4d0582d5 +docfiles size=152 + RELOC/doc/xelatex/hanzibox/README.md details="Readme" + RELOC/doc/xelatex/hanzibox/build.sh + RELOC/doc/xelatex/hanzibox/hanzibox.pdf details="Package documentation" language="zh" +srccontainersize 19544 +srccontainerchecksum d3d557b65df0809561c99431377585a119994d516dc9e30f0011e423abba27eaa545af6a76a0eea7269d1e2ef57a77c316f7aca5b0f9134b709635f87df14e38 +srcfiles size=26 + RELOC/source/xelatex/hanzibox/hanzibox.dtx +runfiles size=13 + RELOC/tex/xelatex/hanzibox/hanzibox.sty +catalogue-contact-bugs https://gitee.com/nwafu_nan/hanzibox-l3/issues +catalogue-contact-repository https://gitee.com/nwafu_nan/hanzibox-l3 +catalogue-ctan /macros/xetex/latex/hanzibox +catalogue-license lppl1.3c +catalogue-topics xetex expl3 chinese +catalogue-version 2.3.0 + name happy4th category Package revision 25020 @@ -134050,7 +139497,7 @@ catalogue-version 1.0 name haranoaji category Package -revision 58830 +revision 66115 shortdesc Harano Aji Fonts longdesc Harano Aji Fonts (Harano Aji Mincho and Harano Aji Gothic) are longdesc fonts obtained by replacing Adobe-Identity-0 (AI0) CIDs of @@ -134058,14 +139505,14 @@ longdesc Source Han fonts (Source Han Serif and Source Han Sans) with longdesc Adobe-Japan1 (AJ1) CIDs. There are 14 fonts, 7 weights each for longdesc Mincho and Gothic. postaction script file=tlpkg/tlpostcode/haranoaji-tlpost.pl -containersize 25893424 -containerchecksum 13029f3d1a25d11e2f9f04213532910bfededd9c8fc6f13913fd52c0018db493655a31084ca3ee3325569b500de5a641e69337a6f23ed575e429475d66940898 -doccontainersize 3048 -doccontainerchecksum 0e6b2d9cb7afbef675d4a0cff16b80729ac70d48bad26a5b2e784ef6386aa8f8dcd156b51f19d9eacdfc38962da135aeb1a3bf735f38fc7cfa300b9100b57ce9 +containersize 25945576 +containerchecksum 87e5bc3dc831c5e2afc5907b7135cdeca78963b79b1e8d9a303808952fe6336ae099ede4c2c379402e09becf69f77fe5df5d57b48b7cdb6baf1ec8775017910d +doccontainersize 3032 +doccontainerchecksum fd354cabfb74844ff63db19b70185088f92004c7b4e2ef59bb597b1a01cb1ae85076369b634715f14b5cd7f63c262194ae249d7109b3dee5e22b9c3f4add48bb docfiles size=3 texmf-dist/doc/fonts/haranoaji/LICENSE texmf-dist/doc/fonts/haranoaji/README details="Readme" -runfiles size=9358 +runfiles size=9384 texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Bold.otf texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Heavy.otf texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiGothic-Medium.otf @@ -134073,19 +139520,17 @@ runfiles size=9358 texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Bold.otf texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Light.otf texmf-dist/fonts/opentype/public/haranoaji/HaranoAjiMincho-Regular.otf - texmf-dist/tex/latex/haranoaji/HaranoAjiGothic.fontspec - texmf-dist/tex/latex/haranoaji/HaranoAjiMincho.fontspec tlpkg/tlpostcode/haranoaji-tlpost.pl catalogue-also haranoaji-extra catalogue-contact-home https://github.com/trueroad/HaranoAjiFonts catalogue-ctan /fonts/haranoaji catalogue-license ofl catalogue-topics font font-cjk japanese -catalogue-version 20210410 +catalogue-version 20230223 name haranoaji-extra category Package -revision 58831 +revision 66115 shortdesc Harano Aji Fonts relocated 1 longdesc Harano Aji Fonts (Harano Aji Mincho and Harano Aji Gothic) are @@ -134093,14 +139538,14 @@ longdesc fonts obtained by replacing Adobe-Identity-0 (AI0) CIDs of longdesc Source Han fonts (Source Han Serif and Source Han Sans) with longdesc Adobe-Japan1 (AJ1) CIDs. There are 14 fonts, 7 weights each for longdesc Mincho and Gothic. -containersize 25771060 -containerchecksum 97d75fa7b631b9319c66c4c9ce7768154efb3ccef02e8d8a0f19660972e171b59ad1a7cb53df976d6f593f7d7e19c897afdef3fdf1a2cc47648e53ee1512884b -doccontainersize 3060 -doccontainerchecksum 46e4516105a996f0abd7a848e51e98b739d7e525ecf5ce3db2bb7542849219414032db56e304e62a588d6dbc26cb9cce174189c75885d161a06a5dfc6d6c69b3 +containersize 25806196 +containerchecksum 6d567a900d2a7527acdf2035cc6ccb37d6c7b1a09482791a7b1574e7fd9d36e9233097b680b912881af776d586d0a90a304c56471ccd2772c95726ba0014d887 +doccontainersize 3048 +doccontainerchecksum 51205eb6838f45f051ccf085a348d426973faea52573be3c95ceedae5911d787aa2221b6ac6e4bf70e4a06ce84ecd0c90904798c4e3cccf87b5924b489cae47c docfiles size=3 RELOC/doc/fonts/haranoaji-extra/LICENSE RELOC/doc/fonts/haranoaji-extra/README details="Readme" -runfiles size=9487 +runfiles size=9490 RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-ExtraLight.otf RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-Light.otf RELOC/fonts/opentype/public/haranoaji-extra/HaranoAjiGothic-Normal.otf @@ -134113,7 +139558,7 @@ catalogue-contact-home https://github.com/trueroad/HaranoAjiFonts catalogue-ctan /fonts/haranoaji-extra catalogue-license ofl catalogue-topics font font-cjk japanese -catalogue-version 20210410 +catalogue-version 20230223 name hardwrap category Package @@ -134445,7 +139890,7 @@ catalogue-version 1.3 name hecthese category Package -revision 56181 +revision 60455 shortdesc A class for dissertations and theses at HEC Montreal relocated 1 longdesc This package provides the hecthese class, a class based on @@ -134462,11 +139907,11 @@ longdesc for each of the included articles and a general bibliography longdesc for the entire document. The hecthese class takes care of these longdesc requirements. The class depends on babel, color, enumitem, longdesc fontawesome, framed, numprint, url, and hyperref. -containersize 3984 -containerchecksum 8a2d32907fd13e505bb0d7a3c2683cca93c3fd40b471adb622ce06a315558c9ac8f991a3fffbcd52a6be93cb027785d4814e0f9364370cc423a30b115ad644b0 -doccontainersize 876192 -doccontainerchecksum efa6e45840e77b4a9905cae13b7dc3322d85429c5acb4c59d81a86833b0bf0d92f38fdcad00f5befc32e883ee4c530abd6921411ff7c5c2df8dd25507a6e1480 -docfiles size=300 +containersize 3980 +containerchecksum c7956496814a25dbcd42c7f0034e32cb40746da09e8a7d527b1b5cdc4d557971b55117ad35b60db18e21bd2433f13d3850fdf9e2364184c0dd9e7a248be2896b +doccontainersize 893252 +doccontainerchecksum 680b2cc373f0b7bb265ff01f3d07fff56c07e5c789a7528a2257b2e4282da510874611a4754c5b65d88ded8b8b32ad1343706dd1d77e8a4594c7291fa5b201d5 +docfiles size=304 RELOC/doc/latex/hecthese/README.md details="Readme" RELOC/doc/latex/hecthese/abstract-english.tex RELOC/doc/latex/hecthese/abstract-french.tex @@ -134507,8 +139952,8 @@ docfiles size=300 RELOC/doc/latex/hecthese/template-phd-articles.tex RELOC/doc/latex/hecthese/template-phd-classic.tex RELOC/doc/latex/hecthese/theoretical-framework.tex -srccontainersize 30560 -srccontainerchecksum 940e0bf6cf217100912e5950e5a345e85baeeee109b3da2c9f0fcd539fa886241a7fa64526c61b0233f06462ddba07f6aba5d3cc3795a2bd17f694178828465e +srccontainersize 30608 +srccontainerchecksum fd4318bb47d45336d5010544f0e048a8b23d1a2f33cb0c7c24d54fcca59c20ae62887285dbb128f234170dc0cd057e96793b8012274ff400e2f63da0821dd309 srcfiles size=34 RELOC/source/latex/hecthese/hecthese-en.ins RELOC/source/latex/hecthese/hecthese-fr.ins @@ -134520,7 +139965,7 @@ catalogue-contact-repository https://github.com/metalogueur/hecthese catalogue-ctan /macros/latex/contrib/hecthese catalogue-license lppl1.3c catalogue-topics dissertation class -catalogue-version 1.4 +catalogue-version 1.5 name helmholtz-ellis-ji-notation category Package @@ -134565,9 +140010,9 @@ catalogue-version 1.1 name helvetic category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -134580,8 +140025,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uhv.map -containersize 539636 -containerchecksum db1921bbf180287cb735ef403948585a91b3d84fa0cb5c99ca1bd06db57632f2533f40d0b7aa04c01664ca7898166482559e130f375a85242bc44f362079ec8f +containersize 539616 +containerchecksum 243904e50c3458e62bf346f5a48332709db226e54b17c731ed0bdac5fce04d76b19411a12b01b51ca93b5ff7f06eee38f78a8375f6244d7b7d53116713d601b8 runfiles size=594 RELOC/dvips/helvetic/config.uhv RELOC/fonts/afm/adobe/helvetic/phvb8a.afm @@ -134873,9 +140318,226 @@ catalogue-license lppl catalogue-topics physics catalogue-version 1.0 +name hep-acronym +category Package +revision 64890 +shortdesc An acronym extension for glossaries +relocated 1 +longdesc The hep-acronym package provides an acronym macro based on the +longdesc glossaries package. The package is loaded with +longdesc \usepackage{hep-acronym}. +containersize 2440 +containerchecksum 2a63980d54f5b00bd495ef5c44ebb32d9a75723ce79b9af131cf65da4d114eb3812581a2c305126d4c166c78bda21e164eda1fd127c3d3f0514a4e5f34cf3621 +doccontainersize 480260 +doccontainerchecksum ee7828b183307f94e5b77f44d228af390432ed51e5a75e96408c187139f08f9c7f19cbf80e1c752ab38b55ecdca9b0ea99c6a1043ae1eeb03ab0998398091100 +docfiles size=165 + RELOC/doc/latex/hep-acronym/README-hep-acronym.md + RELOC/doc/latex/hep-acronym/README.md details="Readme" + RELOC/doc/latex/hep-acronym/bibliography.bib + RELOC/doc/latex/hep-acronym/hep-acronym-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-acronym/hep-acronym-documentation.tex + RELOC/doc/latex/hep-acronym/hep-acronym-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-acronym/hep-acronym-test.tex + RELOC/doc/latex/hep-acronym/license.md +srccontainersize 5548 +srccontainerchecksum 7cd7b4619e13cfd97058dc7ad57d3c24ad7de4b39c7ae606c98c6a8c1be67cb0f370df17ad2325f62bd585abd4e98836f33e9201a876f90a5812b8c937dc1827 +srcfiles size=6 + RELOC/source/latex/hep-acronym/hep-acronym-implementation.dtx + RELOC/source/latex/hep-acronym/hep-acronym.ins +runfiles size=2 + RELOC/tex/latex/hep-acronym/hep-acronym.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-acronym +catalogue-license lppl1.3c +catalogue-topics acronym +catalogue-version 1.1 + +name hep-bibliography +category Package +revision 64888 +shortdesc An acronym extension for glossaries +relocated 1 +longdesc The hep-bibliography package extends the BibLaTeX package with +longdesc some functionality mostly useful for high energy physics. In +longdesc particular it makes full use of all BibTeX fields provided by +longdesc Discover High-Energy Physics. The package is loaded with +longdesc \usepackage{hep-bibliography}. +containersize 3260 +containerchecksum 205a5614ab353eff09732cd428b3ee5aa8ea6ae107b7d2c5b988a86eb218c06f70532d0ba6f4dd124e560e7407a2f3fa5832f04ca53094b55c26b043effd5a13 +doccontainersize 492244 +doccontainerchecksum 24e38cb835bbf1849c56a6635c7680e86cbb3b48c9c06442c4bc431837a88c739e38cfecf86d8c9c35864485c92bb00248d261bd0dd794e6fac94f80d23d7b7e +docfiles size=168 + RELOC/doc/latex/hep-bibliography/README-hep-bibliography.md + RELOC/doc/latex/hep-bibliography/README.md details="Readme" + RELOC/doc/latex/hep-bibliography/bibliography.bib + RELOC/doc/latex/hep-bibliography/hep-bibliography-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-bibliography/hep-bibliography-documentation.tex + RELOC/doc/latex/hep-bibliography/hep-bibliography-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-bibliography/hep-bibliography-test.tex + RELOC/doc/latex/hep-bibliography/license.md +srccontainersize 8756 +srccontainerchecksum 0ae3ab366a1d11ce3076cc96cba73a5526a81bc7c429a1e9f81d122a9d35b016b83d54b7cac5a06916d2a46e183ccc3ff759e163140299ae4e280146efb075ea +srcfiles size=9 + RELOC/source/latex/hep-bibliography/hep-bibliography-implementation.dtx + RELOC/source/latex/hep-bibliography/hep-bibliography.ins +runfiles size=3 + RELOC/tex/latex/hep-bibliography/hep-bibliography.dbx + RELOC/tex/latex/hep-bibliography/hep-bibliography.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/biblatex-contrib/hep-bibliography +catalogue-license lppl1.3c +catalogue-topics biblatex physics +catalogue-version 1.1 + +name hep-float +category Package +revision 64904 +shortdesc Convenience package for float placement +relocated 1 +longdesc The hep-float package redefines some LaTeX float placement +longdesc defaults and defines convenience wrappers for floats. The +longdesc package is loaded with \usepackage{hep-float}. +containersize 1704 +containerchecksum 418e6f0f1811b0c5604b397dbea4c79b1f9996ac87304eb8785def44d23c16a5ad9497d66b04fc342a3d10ac6a0c9bc35c5c222894e24bbc8a49c5fc9fa32ae9 +doccontainersize 466164 +doccontainerchecksum e26b9d807922a614adee0e03c39300ff77b3f52cdac2e351fdf9343a6e24f0077d14eeb650baf1c416a78712080b71bfbf64853a94af6e96f67c4a4a84244440 +docfiles size=172 + RELOC/doc/latex/hep-float/README-hep-float.md + RELOC/doc/latex/hep-float/README.md details="Readme" + RELOC/doc/latex/hep-float/bibliography.bib + RELOC/doc/latex/hep-float/hep-float-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-float/hep-float-documentation.tex + RELOC/doc/latex/hep-float/hep-float-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-float/license.md +srccontainersize 4572 +srccontainerchecksum c28a1b88639321188acd863fe75e8a8be63c03021eaf503cf5a0541a0674065b64df88e1dd89da5827388a862c56fd5762b6672288b72b5fa5271f9dfa1f32dd +srcfiles size=5 + RELOC/source/latex/hep-float/hep-float-implementation.dtx + RELOC/source/latex/hep-float/hep-float.ins +runfiles size=1 + RELOC/tex/latex/hep-float/hep-float.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-float +catalogue-license lppl1.3c +catalogue-topics float +catalogue-version 1.1 + +name hep-font +category Package +revision 64900 +shortdesc Latin modern extended by computer modern +relocated 1 +longdesc The hep-font package loads standard font packages and extends +longdesc the usual Latin Modern implementations by replacing missing +longdesc fonts with Computer Modern counterparts. The package is loaded +longdesc with \usepackage{hep-font}. +containersize 2128 +containerchecksum 57a5d12114bc9dc36367a9086e4ac5aa6bd3b84edcf48d724284a1b04237b95adf7b15bfe5b0e6aad35b38a759d4cd4cf3da62b8bcb31660602a3c2ef08f30d4 +doccontainersize 503636 +doccontainerchecksum a0dd46bbe862a9e9fa8c6c69dbc393f58d0a5cceecce6281ebdf2da87b78aedee1f57439cf28aaa0194d35b54e735b9d55154c6879e882e5ca4308cf7b31437d +docfiles size=175 + RELOC/doc/fonts/hep-font/README-hep-font.md + RELOC/doc/fonts/hep-font/README.md details="Readme" + RELOC/doc/fonts/hep-font/bibliography.bib + RELOC/doc/fonts/hep-font/hep-font-documentation.pdf details="Package documentation" + RELOC/doc/fonts/hep-font/hep-font-documentation.tex + RELOC/doc/fonts/hep-font/hep-font-implementation.pdf details="Package implementation" + RELOC/doc/fonts/hep-font/hep-font-test.tex + RELOC/doc/fonts/hep-font/license.md +srccontainersize 5716 +srccontainerchecksum a6e6118562ada743d6c11e733c781f4b40690e9d203cc05fee3c039598d147940d544b8be06f88bd9bfde792d593daabf947e705e63f127080fc63c7695f4f41 +srcfiles size=6 + RELOC/source/fonts/hep-font/hep-font-implementation.dtx + RELOC/source/fonts/hep-font/hep-font.ins +runfiles size=2 + RELOC/tex/latex/hep-font/hep-font.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /fonts/utilities/hep-font +catalogue-license lppl1.3c +catalogue-topics font font-mgmt font-use +catalogue-version 1.1 + +name hep-math +category Package +revision 64905 +shortdesc Extended math macros +relocated 1 +longdesc The hep-math package provides some additional features beyond +longdesc the mathtools and amsmath packages. To use the package place +longdesc \usepackage{hep-math} in the preamble +containersize 3368 +containerchecksum 5066944fb9c113e38e1055eb668709bb69f654871918c74fb784cc91138c45e06b26e55a2b14ae69c35757d181c46ecc87b2684128663765371eb5d3cf46747e +doccontainersize 616180 +doccontainerchecksum 98f0a956d9e3015e4db038ab9cbdad943303d9bce072367b3e819a6f3054226a2dba26825bed6520782227bf1e2f39ee81b90f3dc1a7de73ba1db4524ad91451 +docfiles size=209 + RELOC/doc/latex/hep-math/README-hep-math.md + RELOC/doc/latex/hep-math/README.md details="Readme" + RELOC/doc/latex/hep-math/bibliography.bib + RELOC/doc/latex/hep-math/hep-math-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-math/hep-math-documentation.tex + RELOC/doc/latex/hep-math/hep-math-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-math/hep-math-test.tex + RELOC/doc/latex/hep-math/license.md +srccontainersize 8788 +srccontainerchecksum 4c4b0975bbc75be8adbb1b2d020da2dcb98c6dfbd4fbf8ee40770510206d24c89e0132140f0376a5055222f5bf8ae7ad46cd6aafa6b6d622e64024d29560f1a9 +srcfiles size=10 + RELOC/source/latex/hep-math/hep-math-implementation.dtx + RELOC/source/latex/hep-math/hep-math.ins +runfiles size=3 + RELOC/tex/latex/hep-math/hep-math.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-math +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 1.1 + +name hep-math-font +category Package +revision 64901 +shortdesc Extended Greek and sans-serif math +relocated 1 +longdesc The hep-math-font package adjust the math fonts to be +longdesc sans-serif if the document is sans-serif. Additionally Greek +longdesc letters are redefined to be always italic and upright in math +longdesc and text mode respectively. Some math font macros are adjusted +longdesc to give more consistently the naively expected results. The +longdesc package is loaded with \usepackage{hep-math-font}. +containersize 2992 +containerchecksum ec36fb9e13fc57148bba67e0735879c203e3e955cad88c6d8150c5f77d9204c6a6cf9c95bb76811ca8fd4ef950c49c7f28961772d03c96d14e37e9bb67766215 +doccontainersize 1164940 +doccontainerchecksum b3fccd40b8133b29f22bf3841e65f7b48ba93e88ce241fdfe33a7a57b2f2fed7f2f5a9833df3634f17efc115fad130fb7c6ca8ada63dab03bc89487c0e6bbbae +docfiles size=471 + RELOC/doc/fonts/hep-math-font/README-hep-math-font.md + RELOC/doc/fonts/hep-math-font/README.md details="Readme" + RELOC/doc/fonts/hep-math-font/bibliography.bib + RELOC/doc/fonts/hep-math-font/hep-math-font-documentation.pdf details="Package documentation" + RELOC/doc/fonts/hep-math-font/hep-math-font-documentation.tex + RELOC/doc/fonts/hep-math-font/hep-math-font-implementation.pdf details="Package implementation" + RELOC/doc/fonts/hep-math-font/hep-math-font-test-sans.tex + RELOC/doc/fonts/hep-math-font/hep-math-font-test-serif.tex + RELOC/doc/fonts/hep-math-font/license.md +srccontainersize 9060 +srccontainerchecksum d4bf264ebc8fc2c4f33878b3af6e44eaba50c3de3b5ada106f66d5ec9a51bca9d48be44026e62a12f54ec5ea016e3980918a32ef5261238f4f99e3958cbcdc46 +srcfiles size=9 + RELOC/source/fonts/hep-math-font/hep-math-font-implementation.dtx + RELOC/source/fonts/hep-math-font/hep-math-font.ins +runfiles size=3 + RELOC/tex/latex/hep-math-font/hep-math-font.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /fonts/utilities/hep-math-font +catalogue-license lppl1.3c +catalogue-topics font font-mgmt font-use font-supp-maths +catalogue-version 1.1 + name hep-paper category Package -revision 57045 +revision 64917 shortdesc Publications in High Energy Physics relocated 1 longdesc This package aims to provide a single style file containing @@ -134886,31 +140548,144 @@ longdesc loads third party packages as long as they are light-weight longdesc enough. For usual publications it suffices to load the longdesc hep-paper package, without optional arguments, in addition to longdesc the article class. -containersize 8820 -containerchecksum e7422cf1015b554b20d6fa6cfca317fbd2e057ef31f6d57448ba11126c3b6b863fea428c642f15b8cbbf46929ce943f362cb99cb95cbe7d1bfe821c4315661f8 -doccontainersize 1359472 -doccontainerchecksum 29f71a395be21b72cfd2c0f167e11475215dbd7005529a89032a316d5802b8e2feffc7670923ea57b6f2bdab4d298b7798f122263ab496f4a4da323f8a44c483 -docfiles size=383 +containersize 2792 +containerchecksum 16cca3b6d0e74a01cdf0904211c41e74c7a9d85837a9b6c37876cb41a787d94d51efaa8a33af0c2ffad33805eff6d91c8d1556abf5d96855da10752086352529 +doccontainersize 699140 +doccontainerchecksum f3d63bd7e422e7db8eaf9b2b61a177f09ba27e6f3e61beefa70d30022b680171321d969c65ed5105c1752da22d684e3e24e72a815ae145f8a314d3df252beb44 +docfiles size=251 + RELOC/doc/latex/hep-paper/README-hep-paper.md RELOC/doc/latex/hep-paper/README.md details="Readme" RELOC/doc/latex/hep-paper/bibliography.bib RELOC/doc/latex/hep-paper/hep-paper-documentation.pdf details="Package documentation" RELOC/doc/latex/hep-paper/hep-paper-documentation.tex RELOC/doc/latex/hep-paper/hep-paper-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-paper/hep-paper-test-amsart.tex + RELOC/doc/latex/hep-paper/hep-paper-test-beamer.tex + RELOC/doc/latex/hep-paper/hep-paper-test-jcap.tex + RELOC/doc/latex/hep-paper/hep-paper-test-jhep.tex + RELOC/doc/latex/hep-paper/hep-paper-test-pos.tex + RELOC/doc/latex/hep-paper/hep-paper-test-revtex.tex + RELOC/doc/latex/hep-paper/hep-paper-test-springer.tex RELOC/doc/latex/hep-paper/license.md -srccontainersize 23384 -srccontainerchecksum 7610edb2223471f6ad729dca66145bb0686e56fdcebfab9260288c3fbaedad0be638f300f789158d824a0a04828297853c5b0774c4c2a96cbb0d48f2d93fd61a -srcfiles size=26 +srccontainersize 11048 +srccontainerchecksum b70767a81d62d1db480b26f2ac5398d5db691ab538111b4954fa59be55f258d2a1dbc1d50103e4c0ad57779d2f10cd0a5ea3b73202d1ea737325c9ac078c2d9c +srcfiles size=11 RELOC/source/latex/hep-paper/hep-paper-implementation.dtx RELOC/source/latex/hep-paper/hep-paper.ins -runfiles size=9 - RELOC/tex/latex/hep-paper/hep-paper.dbx +runfiles size=2 RELOC/tex/latex/hep-paper/hep-paper.sty catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues catalogue-contact-repository https://github.com/janhajer/hep-paper catalogue-ctan /macros/latex/contrib/hep-paper catalogue-license lppl1.3c catalogue-topics physics -catalogue-version 1.6 +catalogue-version 2.1 + +name hep-reference +category Package +revision 64853 +shortdesc Adjustments for publications in High Energy Physics +relocated 1 +longdesc This package makes some changes to the reference, citation and +longdesc footnote macros to improve the default behavior of LaTeX for +longdesc High Energy Physics publications. +containersize 1920 +containerchecksum 1a422d571817be0264385beae73effb4ac674f2e05396289373c0d0792f591c39ebc2bac21d9e6def0e18dc389b7af9f604b6aebba133053894b2874a8dc113d +doccontainersize 461932 +doccontainerchecksum 8952bc87e4a3cb1780ce51ea402b3dbe924b5e6adc9d05c9c0b75bb2e391c8fb4b07bab0f3419dc9f21bd4e9527eca5b56f6c10ef5a6e41d6c964e15cf9a5a0c +docfiles size=162 + RELOC/doc/latex/hep-reference/README-hep-reference.md + RELOC/doc/latex/hep-reference/README.md details="Readme" + RELOC/doc/latex/hep-reference/bibliography.bib + RELOC/doc/latex/hep-reference/hep-reference-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-reference/hep-reference-documentation.tex + RELOC/doc/latex/hep-reference/hep-reference-implementation.pdf + RELOC/doc/latex/hep-reference/hep-reference-test.tex + RELOC/doc/latex/hep-reference/license.md +srccontainersize 4468 +srccontainerchecksum 3a76caf01215ec123f930e0812674e67753727d3ef2adfcba12f0df9a0291739ec9493aa1b0536f749e976463b8c8ee90add1682109d44794c79e83967564b44 +srcfiles size=4 + RELOC/source/latex/hep-reference/hep-reference-implementation.dtx + RELOC/source/latex/hep-reference/hep-reference.ins +runfiles size=1 + RELOC/tex/latex/hep-reference/hep-reference.sty +catalogue-also hep-paper +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-reference +catalogue-license lppl1.3c +catalogue-topics ref-latex +catalogue-version 1.1 + +name hep-text +category Package +revision 64906 +shortdesc List and text extensions +relocated 1 +longdesc The hep-text package extends LaTeX lists using the enumitem +longdesc package and provides some text macros. The package is loaded +longdesc with \usepackage{hep-text}. +containersize 1796 +containerchecksum 6355b807fbb0f5657ae14f0ab03864536a47cb5b1ba477cd6f0df6541602ee32dcfbb5837ac24297ec1f67cb044d53d27f202ba747f81c7cb9313769129ca760 +doccontainersize 509584 +doccontainerchecksum 4b4d2319195f42dacc6b35787b54625e0db00119db9ae42c280b070aced46adf9fd5349ea8ae6bbe2e287b6f2abb40832087a3970d62b2f88d9b3bce72b9894e +docfiles size=177 + RELOC/doc/latex/hep-text/README-hep-text.md + RELOC/doc/latex/hep-text/README.md details="Readme" + RELOC/doc/latex/hep-text/bibliography.bib + RELOC/doc/latex/hep-text/hep-text-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-text/hep-text-documentation.tex + RELOC/doc/latex/hep-text/hep-text-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-text/license.md +srccontainersize 4524 +srccontainerchecksum 9f0a4db06f3cb9858132e9f06530c779c698cdffd53993eb75f48a4c9b7c503b45b8f589934742609770ed659f8a0b307d59c20b7f5d0afad2ca65959aa39e8f +srcfiles size=4 + RELOC/source/latex/hep-text/hep-text-implementation.dtx + RELOC/source/latex/hep-text/hep-text.ins +runfiles size=1 + RELOC/tex/latex/hep-text/hep-text.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-text +catalogue-license lppl1.3c +catalogue-topics list +catalogue-version 1.1 + +name hep-title +category Package +revision 64907 +shortdesc Extensions for the title page +relocated 1 +longdesc The hep-title package extends the title macros of the standard +longdesc classes with macros for a preprint, affiliation, editors, and +longdesc endorsers. The package is loaded with \usepackage{hep-title}. +containersize 3432 +containerchecksum 534e6cc0062806de3756d5593657bd481866813541fac8b5ca31655f03ef4f00c02a98eb366160a0e7621821d6636b1d4ecd33933ae57e31268001753e9c1b22 +doccontainersize 514904 +doccontainerchecksum c94a7eefa02a942fb0b751a197ed2d52d7b7f4a390e7609e8c122f08de59b83a421b4150e867d93881aa1bcab45ee345c76e2b23b566b0774658c0d08cfd799e +docfiles size=170 + RELOC/doc/latex/hep-title/README-hep-title.md + RELOC/doc/latex/hep-title/README.md details="Readme" + RELOC/doc/latex/hep-title/bibliography.bib + RELOC/doc/latex/hep-title/hep-title-documentation.pdf details="Package documentation" + RELOC/doc/latex/hep-title/hep-title-documentation.tex + RELOC/doc/latex/hep-title/hep-title-implementation.pdf details="Package implementation" + RELOC/doc/latex/hep-title/hep-title-test-one.tex + RELOC/doc/latex/hep-title/hep-title-test-two.tex + RELOC/doc/latex/hep-title/license.md +srccontainersize 7048 +srccontainerchecksum 5f4d1d073c8fcff302dd1a454837e80d6a9b821cd0b25eb0487992c3d8c474348a42644ea5c3a7da414985b0fbc78f083e565e798a42a27a0308f88c8f153475 +srcfiles size=8 + RELOC/source/latex/hep-title/hep-title-implementation.dtx + RELOC/source/latex/hep-title/hep-title.ins +runfiles size=4 + RELOC/tex/latex/hep-title/hep-title.sty +catalogue-contact-bugs https://github.com/janhajer/hep-paper/issues +catalogue-contact-repository https://github.com/janhajer/hep-paper +catalogue-ctan /macros/latex/contrib/hep-title +catalogue-license lppl1.3c +catalogue-topics titlepage +catalogue-version 1.1 name hepnames category Package @@ -135099,6 +140874,95 @@ catalogue-ctan /macros/latex/contrib/here catalogue-license pd catalogue-topics float +name hereapplies +category Package +revision 65251 +shortdesc A LaTeX package for referencing groups of pages that share something in common +relocated 1 +longdesc Here Applies is a LaTeX package that allows to collect groups +longdesc of labels and reference them altogether. It can be used for +longdesc creating informal glossaries that cross-link concepts to their +longdesc applications, or simply mentioning multiple pages that share +longdesc something in common. +containersize 5332 +containerchecksum b89cf4ffd5299939b681a91acb6e06c6185bbca2077677aa551e3d5ae2463f823293fced819f242cee8806000009a47baaf5375aa4487568ad229a81208eee6e +doccontainersize 421600 +doccontainerchecksum e55430f11a776d57c0ff022d11317986d454fcd1101a6df73afcb4c4b7f3782d1383a198d024e56ccf3950187017590e81128ca5a7e91247ae2e90271a4cd91d +docfiles size=126 + RELOC/doc/latex/hereapplies/COPYING + RELOC/doc/latex/hereapplies/ChangeLog.md + RELOC/doc/latex/hereapplies/README.md details="Readme" + RELOC/doc/latex/hereapplies/hereapplies-doc.lyx + RELOC/doc/latex/hereapplies/hereapplies-doc.pdf details="Package documentation" + RELOC/doc/latex/hereapplies/hereapplies-doc.tex + RELOC/doc/latex/hereapplies/hereapplies-example.pdf details="Example of use" + RELOC/doc/latex/hereapplies/hereapplies-example.tex + RELOC/doc/latex/hereapplies/lyx-module/hereapplies-example.lyx + RELOC/doc/latex/hereapplies/lyx-module/hereapplies.module + RELOC/doc/latex/hereapplies/package.json +runfiles size=5 + RELOC/tex/latex/hereapplies/hereapplies.sty +catalogue-contact-announce https://github.com/madmurphy/hereapplies.sty/releases +catalogue-contact-bugs https://github.com/madmurphy/hereapplies.sty/issues +catalogue-contact-development https://github.com/madmurphy +catalogue-contact-repository https://github.com/madmurphy/hereapplies.sty +catalogue-ctan /macros/latex/contrib/hereapplies +catalogue-license gpl3+ +catalogue-topics label-ref +catalogue-version 1.0.1 + +name heros-otf +category Package +revision 64695 +shortdesc Using the OpenType fonts TeX Gyre Heros> +relocated 1 +longdesc This package can only be used with LuaLaTeX or XeLaTeX. It does +longdesc the font setting for the OpenType font 'TeX Gyre Heros'. The +longdesc condensed versions of the fonts are also supported. The missing +longdesc typefaces for slanted text are also defined. +containersize 2380 +containerchecksum 370ee21398ddc2f3bf285a7c6c545e998a192d4dbb5790a7d2a9b6835d9076871a349001901764761fbdcac0e29d5c0fae8800dab4a34918998b54b7a83275af +doccontainersize 221248 +doccontainerchecksum fb99aa73c128cfb184a097b0d9a32a007ffd9e135d74b543cd23689bf5284176642c1f7a635b1a24ee167b5ee44daec090f7f78dfe9636fbe88351aef125d8ec +docfiles size=76 + RELOC/doc/fonts/heros-otf/Changes + RELOC/doc/fonts/heros-otf/README.md details="Readme" + RELOC/doc/fonts/heros-otf/heros-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/heros-otf/heros-otf-doc.tex +runfiles size=5 + RELOC/tex/latex/heros-otf/heros-otf.sty +catalogue-ctan /fonts/heros-otf +catalogue-license lppl1.3 +catalogue-topics font font-otf font-maths font-sans luatex xetex +catalogue-version 0.01 + +name hershey-mp +category Package +revision 64878 +shortdesc MetaPost support for the Hershey font file format +relocated 1 +longdesc This package provides MetaPost support for reading jhf vector +longdesc font files, used by (mostly? only?) the so-called Hershey Fonts +longdesc of the late 1960s. The package does not include the actual font +longdesc files, which you can probably find in the software repository +longdesc of your operating system. +containersize 1684 +containerchecksum 8759bfc2237fc1954e3ea3a47355cd42c48479ce01d959cf0b072ffba4f26068e99f32737bf8669a509f53085b8d8e5c5b0b02f9a7fa6ba73a38bc996539d902 +doccontainersize 273748 +doccontainerchecksum d869c70b0919380ae4d88d9cded20baf9a8cce0946550d1a3b80056f80bcf2eaa7fbffbe16a3101c2a04fda512ff1b9160786c05c279a78732e1909782cb2b23 +docfiles size=77 + RELOC/doc/metapost/hershey-mp/LICENSE + RELOC/doc/metapost/hershey-mp/README details="Readme" + RELOC/doc/metapost/hershey-mp/hershey.pdf details="Package documentation" + RELOC/doc/metapost/hershey-mp/hershey.tex +runfiles size=1 + RELOC/metapost/hershey-mp/hershey.mp +catalogue-contact-repository https://gitlab.com/renkema/hershey +catalogue-ctan /graphics/metapost/contrib/macros/hershey-mp +catalogue-license other-free +catalogue-topics mp-supp mp-use +catalogue-version 2022/1.0 + name heuristica category Package revision 51362 @@ -135355,6 +141219,36 @@ catalogue-license ofl catalogue-topics font font-type1 font-otf font-cyrillic cyrillic catalogue-version 1.092 +name hexboard +category Package +revision 62102 +shortdesc For drawing Hex boards and games +relocated 1 +longdesc hexboard is a package for LaTeX that should also work with +longdesc LuaTeX and XeTeX, that provides functionality for drawing Hex +longdesc boards and games. The aim is a clean, clear design with +longdesc flexibility for drawing different sorts of Hex diagrams. +containersize 3140 +containerchecksum e82683253d7790448bddbcefc617d0f0e91b5373de477f1c78a5db9256d632983b1d5f700a0c6fcb4490b746e932de3fe40a22875a6c0d37f6d0ae728867b73e +doccontainersize 275772 +doccontainerchecksum 97c92b9c8644cf060da8b3306c8a3f26d1c59f36b1731ca4b6af06ec77211ab676963d5ed8fb70c6a63096a7224cfaac22cf77d5dc39f937902815bea778f323 +docfiles size=70 + RELOC/doc/latex/hexboard/README.md details="Readme" + RELOC/doc/latex/hexboard/hexboard.pdf details="Package documentation" +srccontainersize 8556 +srccontainerchecksum f2ab006e01d1ff8ed68252f594d3340441a5a6bed7cc0cbee6c28e119a923a20b186e1f08db7444c75de52c86afdb9aa86767278f0b506a9c601064783baef95 +srcfiles size=13 + RELOC/source/latex/hexboard/hexboard.dtx + RELOC/source/latex/hexboard/hexboard.ins +runfiles size=4 + RELOC/tex/latex/hexboard/hexboard.sty +catalogue-contact-bugs https://github.com/prowlett/hexboard/issues +catalogue-contact-repository https://github.com/prowlett/hexboard +catalogue-ctan /graphics/pgf/contrib/hexboard +catalogue-license cc-by-sa-4 +catalogue-topics graphics games +catalogue-version 1.0 + name hexgame category Package revision 15878 @@ -136193,6 +142087,84 @@ catalogue-license gpl catalogue-topics font font-virtual font-supp catalogue-version 1.15 +name hfutexam +category Package +revision 66550 +shortdesc Exam class for Hefei University of Technology (China) +relocated 1 +longdesc This package provides an exam class for Hefei University of +longdesc Technology (China). Gai Wen Dang Lei Ti Gong Liao He Fei Gong +longdesc Ye Da Xue Kao Shi Shi Juan Mo Ban , Dian Ji Xia Fang Download +longdesc Lai Xia Zai Suo You Wen Jian . +containersize 4336 +containerchecksum fa0f8fd3ef84c479e38f3ab5d167fe1bfea09ffa706c2d2d6621e5406dd925ad8cba0f4a08d36e34300a83bde7fd0e2b6e26b4e45e9018936fb5c75992cb16a5 +doccontainersize 520232 +doccontainerchecksum 19ee9062b4160503ff7a57c94d22715b324e5a48d56e20999c2820a3166c26382b2d78f704cb7e02aa83c609fb426ea9d5592343d22766e36f04108b7dc5ef11 +docfiles size=163 + RELOC/doc/latex/hfutexam/CHANGELOG.md + RELOC/doc/latex/hfutexam/LICENSE + RELOC/doc/latex/hfutexam/README.md details="Readme" + RELOC/doc/latex/hfutexam/hfutexam.pdf details="Package documentation" + RELOC/doc/latex/hfutexam/hfutexam.tex + RELOC/doc/latex/hfutexam/hfutexam_cankaodaan.pdf details="Example of use (1)" + RELOC/doc/latex/hfutexam/hfutexam_cankaodaan.tex + RELOC/doc/latex/hfutexam/hfutexam_datizhi.pdf details="Example of use (2)" + RELOC/doc/latex/hfutexam/hfutexam_datizhi.tex + RELOC/doc/latex/hfutexam/hfutexam_shijuan.pdf details="Example of use (3)" + RELOC/doc/latex/hfutexam/hfutexam_shijuan.tex + RELOC/doc/latex/hfutexam/hfutexam_simple.pdf details="Example of use (4)" + RELOC/doc/latex/hfutexam/hfutexam_simple.tex +runfiles size=3 + RELOC/tex/latex/hfutexam/hfutexam.cls +catalogue-ctan /macros/latex/contrib/hfutexam +catalogue-license lppl1.3c +catalogue-topics exam chinese +catalogue-version 1.7 + +name hfutthesis +category Package +revision 64025 +shortdesc LaTeX Thesis Template for Hefei University of Technology +relocated 1 +longdesc This project is based on the HFUT_Thesis LaTeX template of +longdesc Hefei University of Technology compiled on the basis of +longdesc ustctug/ustcthesis, in accordance with the latest version of +longdesc Hefei University of Technology Graduate Dissertation Writing +longdesc Specifications and Hefei University of Technology Undergraduate +longdesc Graduation Project (Thesis) Work Implementation Rules. +containersize 25440 +containerchecksum 928dc93116a78a440fd1dcb163ccd5d88daa4b96a6850f5bb45c996c3c81249982588ffda7f51f4c76f153f3df6f85e033ce15d28593c4d6235f7781a829ddb6 +doccontainersize 799628 +doccontainerchecksum 491a841f563a79fbbc71d19bc9aa259ffc4429db53c86812724306432dcd7a5d3af98eb2ce1defd4f6af02fd5f4b34d4b5a96de540e95bd59fd7991ddd5dbc85 +docfiles size=271 + RELOC/doc/xelatex/hfutthesis/README.md details="Readme" + RELOC/doc/xelatex/hfutthesis/hfut-bib/hfut.bib + RELOC/doc/xelatex/hfutthesis/hfut-chapters/abstract.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/acknowledgements.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/citations.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/complementary.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/expertspage.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/floats.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/intro.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/math.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/notation.tex + RELOC/doc/xelatex/hfutthesis/hfut-chapters/publications.tex + RELOC/doc/xelatex/hfutthesis/hfut-figures/hfut-badge.pdf + RELOC/doc/xelatex/hfutthesis/hfut-figures/hfut-name.pdf + RELOC/doc/xelatex/hfutthesis/hfutsetup.tex + RELOC/doc/xelatex/hfutthesis/hfutthesis-doc.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/hfutthesis/hfutthesis-doc.tex + RELOC/doc/xelatex/hfutthesis/hfutthesis-example.pdf details="Example of use" language="zh" + RELOC/doc/xelatex/hfutthesis/hfutthesis-example.tex +runfiles size=28 + RELOC/tex/xelatex/hfutthesis/hfutthesis.cls +catalogue-contact-bugs https://github.com/HFUTTUG/HFUT_Thesis/issues +catalogue-contact-repository https://github.com/HFUTTUG/HFUT_Thesis +catalogue-ctan /macros/xetex/latex/hfutthesis +catalogue-license lppl1.3c +catalogue-topics class doc-templ dissertation chinese xetex +catalogue-version 1.0.4 + name hhtensor category Package revision 54080 @@ -136223,6 +142195,30 @@ catalogue-license lppl catalogue-topics maths catalogue-version 0.61 +name hideanswer +category Package +revision 63852 +shortdesc Generate documents with and without answers by toggling a switch +relocated 1 +longdesc This package can generate documents with and without answers +longdesc from a single file by toggling a switch. However, it can only +longdesc be used to create documents to be printed on paper. +containersize 1236 +containerchecksum 9124e631262dce82cea19158e34353817129e014ec5808dbfbe87df661127d516664de2a895622344dc663c68ca51731bb6d887a5043789e3d830fa908b82cdf +doccontainersize 119560 +doccontainerchecksum f9bad79f55157a0f9007c1f551592d0e054f2a519aeda36c175afa807a70542068cce1b9bffb31855de8e99e8460fa22f41f046be25c2bb4757ba859300b77b2 +docfiles size=35 + RELOC/doc/latex/hideanswer/README.md details="Readme" + RELOC/doc/latex/hideanswer/hideanswer.pdf details="Package documentation" + RELOC/doc/latex/hideanswer/hideanswer.tex +runfiles size=1 + RELOC/tex/latex/hideanswer/hideanswer.sty +catalogue-contact-home https://www.metaphysica.info/technote/package_hideanswer/ +catalogue-ctan /macros/latex/contrib/hideanswer +catalogue-license mit +catalogue-topics cond-comp exam +catalogue-version 1.1 + name highlightlatex category Package revision 58392 @@ -136477,65 +142473,314 @@ catalogue-license lppl catalogue-topics class catalogue-version 0.0(beta) +name hitex +category TLCore +revision 65883 +shortdesc A TeX extension writing HINT output for on-screen reading +longdesc An extension of TeX which generates HINT output. The HINT file +longdesc format is an alternative to the DVI and PDF formats which was +longdesc designed specifically for on-screen reading of documents. +longdesc Especially on mobile devices, reading DVI or PDF documents can +longdesc be cumbersome. Mobile devices are available in a large variety +longdesc of sizes but typically are not large enough to display +longdesc documents formated for a4/letter-size paper. To compensate for +longdesc the limitations of a small screen, users are used to +longdesc alternating between landscape (few long lines) and portrait +longdesc (more short lines) mode. The HINT format supports variable and +longdesc varying screen sizes, leveraging the ability of TeX to format a +longdesc document for nearly-arbitrary values of \hsize and \vsize. +depend atbegshi +depend atveryend +depend babel +depend cm +depend etex +depend everyshi +depend firstaid +depend hitex.ARCH +depend hyphen-base +depend knuth-lib +depend l3backend +depend l3kernel +depend l3packages +depend latex +depend latex-fonts +depend plain +depend tex-ini-files +depend unicode-data +execute AddFormat name=hilatex engine=hitex patterns=language.dat options="-etex -ltx hilatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data +execute AddFormat name=hitex engine=hitex patterns=language.def options="-etex -ltx hitex.ini" fmttriggers=cm,hyphen-base,etex,knuth-lib,plain +containersize 2964 +containerchecksum 4e2f7492a20dce409299344245b89e778cd5bee7fd7baf8de4a630906129a6f011e6666d4bed2b9df20826d2d9ffd0bed179312491434be2db99e834cb9a4ac3 +doccontainersize 2670656 +doccontainerchecksum 30deaac343815d366a1cd265d68b74198857b3fb6a953cb000e5c5351aecd03b2eb68f563d796d21ffebbbf479ed74bfa95f72fb8ef5a0055590c67014e5d8d2 +docfiles size=835 + texmf-dist/doc/hitex/base/hiformat.hnt + texmf-dist/doc/hitex/base/hiformat.pdf + texmf-dist/doc/hitex/base/hintmac.tex + texmf-dist/doc/hitex/base/hitexman.hnt + texmf-dist/doc/hitex/base/hitexman.pdf + texmf-dist/doc/hitex/base/hitexman.tex + texmf-dist/doc/man/man1/hishrink.1 + texmf-dist/doc/man/man1/hishrink.man1.pdf + texmf-dist/doc/man/man1/histretch.1 + texmf-dist/doc/man/man1/histretch.man1.pdf + texmf-dist/doc/man/man1/hitex.1 + texmf-dist/doc/man/man1/hitex.man1.pdf +runfiles size=6 + texmf-dist/makeindex/hitex/hint.ist + texmf-dist/tex/hitex/base/hilatex.ini + texmf-dist/tex/hitex/base/hiltxpage.tex + texmf-dist/tex/hitex/base/hiplainpage.tex + texmf-dist/tex/hitex/base/hitex.ini + texmf-dist/tex/hitex/base/ifhint.tex +catalogue-alias hint +catalogue-also knuth-hint +catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-home https://hint.userweb.mwn.de/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/hitexdir +catalogue-contact-support https://lists.tug.org/tex-k +catalogue-license x11 +catalogue-topics engine + +name hitex.aarch64-linux +category TLCore +revision 65927 +shortdesc aarch64-linux files of hitex +containersize 278676 +containerchecksum dd71a09ff660e5d169ee0b6dd41aa5b5eff748830de0683b3c1fd1c77e22b249e1ed600f9fb98a5d8dc00fc2a02f2f1d1bd46e114a6bc012697d9b0ade066d36 +binfiles arch=aarch64-linux size=196 + bin/aarch64-linux/hilatex + bin/aarch64-linux/hishrink + bin/aarch64-linux/histretch + bin/aarch64-linux/hitex + +name hitex.amd64-freebsd +category TLCore +revision 65877 +shortdesc amd64-freebsd files of hitex +containersize 326880 +containerchecksum b4a610205bc65125bc9c4d1ee178cf1fc71212b06f25f55842fe0a0dad803bc74b310fdce90bbf2458ae1d5e0407184d72fb77ad5f6cf9d1deee005247364fca +binfiles arch=amd64-freebsd size=220 + bin/amd64-freebsd/hilatex + bin/amd64-freebsd/hishrink + bin/amd64-freebsd/histretch + bin/amd64-freebsd/hitex + +name hitex.amd64-netbsd +category TLCore +revision 65957 +shortdesc amd64-netbsd files of hitex +containersize 284832 +containerchecksum 89e609dc4caf4ae4b930ac1f8bc2ad8d4d201d399d78ddeff474e0e44ae43c94b3b014a9bb53c3b3120f64f19ab0ae18898b02255aed3956f61d6331b70b3809 +binfiles arch=amd64-netbsd size=263 + bin/amd64-netbsd/hilatex + bin/amd64-netbsd/hishrink + bin/amd64-netbsd/histretch + bin/amd64-netbsd/hitex + +name hitex.armhf-linux +category TLCore +revision 65877 +shortdesc armhf-linux files of hitex +containersize 235884 +containerchecksum 76176aa73c2a82cd2fd4a5d8683158920159cdf30c25e1ddda517cbb4b56c4540795569bd66c0da25a05fd7e770a5aa36b4752990b81d7ed465718b0edf72001 +binfiles arch=armhf-linux size=159 + bin/armhf-linux/hilatex + bin/armhf-linux/hishrink + bin/armhf-linux/histretch + bin/armhf-linux/hitex + +name hitex.i386-freebsd +category TLCore +revision 65877 +shortdesc i386-freebsd files of hitex +containersize 265908 +containerchecksum 9d9c533a034e43850f3b46c67020247bb7c11da7f54fd7e62a6344e13dab8d479ba5bdff3677ea92c053382a0bc7deeed97af0982a49fefcc468d4f21ea0d273 +binfiles arch=i386-freebsd size=198 + bin/i386-freebsd/hilatex + bin/i386-freebsd/hishrink + bin/i386-freebsd/histretch + bin/i386-freebsd/hitex + +name hitex.i386-linux +category TLCore +revision 65877 +shortdesc i386-linux files of hitex +containersize 263624 +containerchecksum 6b82c721a171db7ae4a06dff1f153702f4f598fd74f1862cd6d438f6fa45a91e10ef3d48c14f77eacb1338cc14b56cd628b5fe4b78dc2850c3bd4b7f14359304 +binfiles arch=i386-linux size=190 + bin/i386-linux/hilatex + bin/i386-linux/hishrink + bin/i386-linux/histretch + bin/i386-linux/hitex + +name hitex.i386-netbsd +category TLCore +revision 65957 +shortdesc i386-netbsd files of hitex +containersize 227568 +containerchecksum 56b70ae2705f67578680b8ee759296c257b5c90fa1a2d99a59f323413e6ae76ce2faadbd0e4e334853a843ec7990b409330691b5d7dbfe216751a387419e618f +binfiles arch=i386-netbsd size=233 + bin/i386-netbsd/hilatex + bin/i386-netbsd/hishrink + bin/i386-netbsd/histretch + bin/i386-netbsd/hitex + +name hitex.i386-solaris +category TLCore +revision 66145 +shortdesc i386-solaris files of hitex +containersize 248460 +containerchecksum efd46c599e7929481d513b0677ad5a037760c61b8e1fb631845e218227044f318aee7353ab5f1706e8dbe7ca746e0cc2ffc18e21f93db73f51c45b19f0a7f887 +binfiles arch=i386-solaris size=166 + bin/i386-solaris/hilatex + bin/i386-solaris/hishrink + bin/i386-solaris/histretch + bin/i386-solaris/hitex + +name hitex.universal-darwin +category TLCore +revision 65895 +shortdesc universal-darwin files of hitex +containersize 618380 +containerchecksum 5c84e3313e12582f6c7dbdce643a8b6700bc9addf8d361155225d3d25b3010abca421e5f04dc412e1def6253c7e2449c750c1be29e64a238954c77515df577c1 +binfiles arch=universal-darwin size=483 + bin/universal-darwin/hilatex + bin/universal-darwin/hishrink + bin/universal-darwin/histretch + bin/universal-darwin/hitex + +name hitex.windows +category TLCore +revision 65891 +shortdesc windows files of hitex +containersize 279996 +containerchecksum 585804401ec49d3221e9bec608ea1586c32b259febb2e47b001171c932c7ef65a826d20bd3e073446ca8494dfaed338be957b3f9acc1a22ce31a5bd1265c474f +binfiles arch=windows size=176 + bin/windows/hilatex.exe + bin/windows/hishrink.exe + bin/windows/histretch.exe + bin/windows/hitex.exe + +name hitex.x86_64-cygwin +category TLCore +revision 66544 +shortdesc x86_64-cygwin files of hitex +containersize 278608 +containerchecksum bef62caf0560482ff87e61254558725accde5b06663d245b08e49c31d55e07781f20360e5442a210279729c77e3322d44bd7ea61405efd9585d9d8a101fd05af +binfiles arch=x86_64-cygwin size=176 + bin/x86_64-cygwin/hilatex + bin/x86_64-cygwin/hishrink.exe + bin/x86_64-cygwin/histretch.exe + bin/x86_64-cygwin/hitex.exe + +name hitex.x86_64-darwinlegacy +category TLCore +revision 65877 +shortdesc x86_64-darwinlegacy files of hitex +containersize 267836 +containerchecksum 8c7f070b7cebfa54fe4c3c5911e7b1357a66bcb1dc0fdc2e44b6866a7736d9f6e6ef5a8fc664e7f861c335c7ea101ae9faf301ba210a786a5f6734357c996b47 +binfiles arch=x86_64-darwinlegacy size=163 + bin/x86_64-darwinlegacy/hilatex + bin/x86_64-darwinlegacy/hishrink + bin/x86_64-darwinlegacy/histretch + bin/x86_64-darwinlegacy/hitex + +name hitex.x86_64-linux +category TLCore +revision 65877 +shortdesc x86_64-linux files of hitex +containersize 290076 +containerchecksum a01a1e36862a28ac790be573ce948d9b7f950cb7e752d1eb8b081202f35c9434a1353f309e2cecb3d661598c6de9a19eabf261388316f426d4ba391695eb8b3a +binfiles arch=x86_64-linux size=191 + bin/x86_64-linux/hilatex + bin/x86_64-linux/hishrink + bin/x86_64-linux/histretch + bin/x86_64-linux/hitex + +name hitex.x86_64-linuxmusl +category TLCore +revision 65877 +shortdesc x86_64-linuxmusl files of hitex +containersize 306664 +containerchecksum ebc06a5302664a1cac743b583f609eb9f75e8fa752d1de78ce799774ce9ba8512927237b39cb2d5644ab34292570ceb919a8030cf1bf183f98f8c90659fd72cb +binfiles arch=x86_64-linuxmusl size=192 + bin/x86_64-linuxmusl/hilatex + bin/x86_64-linuxmusl/hishrink + bin/x86_64-linuxmusl/histretch + bin/x86_64-linuxmusl/hitex + +name hitex.x86_64-solaris +category TLCore +revision 66145 +shortdesc x86_64-solaris files of hitex +containersize 297788 +containerchecksum 5057a15e00a3ba441783d1ae977195d9b27fd414a152edc6e4ae4f7503c66644e3f42bf445e382dddc812cd1881ba260755add173fed94b9f59d1a185a99842e +binfiles arch=x86_64-solaris size=194 + bin/x86_64-solaris/hilatex + bin/x86_64-solaris/hishrink + bin/x86_64-solaris/histretch + bin/x86_64-solaris/hitex + name hithesis category Package -revision 53362 +revision 64005 shortdesc Harbin Institute of Technology Thesis Template relocated 1 longdesc hithesis is a LaTeX thesis template package for Harbin longdesc Institute of Technology supporting bachelor, master, doctor longdesc dissertations. containersize 25980 -containerchecksum c23d1a9aad18b7ff37380cdf7644b759d7cad35998baf6dbb4593a19d38c85a47e376f06e6cc3b8eb445eed3f59f1e1213d844405b62317507602376b1efc2c8 -doccontainersize 979836 -doccontainerchecksum fbf6767efa3bbc7cef8583735e23a7f5a3db1aa2f7b0de8bc276d4728c8627fb9321ca212d010b1604c2e5087f24a947c5794a9d09d3d326ae45ad8d0fbf298a +containerchecksum d4060e3b06d2a103f414402e83bf5f5277c2af784b00abc7c6c0468518b0bbeded50f08735573e4a170eedd46227957127e3c3d2ab44edebe7386a7893af432e +doccontainersize 979888 +doccontainerchecksum c5fe2912c4429fc14fb43aa7de9ef76e30b0354f8e673ab9ce693c75a85f5c6dbf77927d1dcd82c0c5aae4a84a665d37fdd505f1bb2dd0e1ade7e5dad3ba5ad1 docfiles size=304 - RELOC/doc/latex/hithesis/README.md details="Readme" - RELOC/doc/latex/hithesis/back/acknowledgements.tex - RELOC/doc/latex/hithesis/back/appA.tex - RELOC/doc/latex/hithesis/back/appendix01.tex - RELOC/doc/latex/hithesis/back/ceindex.tex - RELOC/doc/latex/hithesis/back/conclusion.tex - RELOC/doc/latex/hithesis/back/publications.tex - RELOC/doc/latex/hithesis/back/resume.tex - RELOC/doc/latex/hithesis/body/introduction.tex - RELOC/doc/latex/hithesis/dtx-style.sty - RELOC/doc/latex/hithesis/figures/bthesistitle.eps - RELOC/doc/latex/hithesis/figures/golfer.eps - RELOC/doc/latex/hithesis/figures/hitlogo.eps - RELOC/doc/latex/hithesis/front/cover.tex - RELOC/doc/latex/hithesis/front/denotation.tex - RELOC/doc/latex/hithesis/hithesis.pdf details="Package documentation (Chinese)" language="zh" - RELOC/doc/latex/hithesis/latexmkrc - RELOC/doc/latex/hithesis/main.pdf - RELOC/doc/latex/hithesis/main.tex - RELOC/doc/latex/hithesis/reference.bib - RELOC/doc/latex/hithesis/wct1.eps - RELOC/doc/latex/hithesis/wct10.eps - RELOC/doc/latex/hithesis/wct5.eps - RELOC/doc/latex/hithesis/zfb.eps -srccontainersize 58844 -srccontainerchecksum 7c04ab284c9f5383aceca3fae590ea9612dd7f05cc0baafd3757b4fb5bf647260cf4645a3242392f211db63b239d0d8c6329ac0375f85631bcbf70a38928b9df + RELOC/doc/xelatex/hithesis/README.md details="Readme" + RELOC/doc/xelatex/hithesis/back/acknowledgements.tex + RELOC/doc/xelatex/hithesis/back/appA.tex + RELOC/doc/xelatex/hithesis/back/appendix01.tex + RELOC/doc/xelatex/hithesis/back/ceindex.tex + RELOC/doc/xelatex/hithesis/back/conclusion.tex + RELOC/doc/xelatex/hithesis/back/publications.tex + RELOC/doc/xelatex/hithesis/back/resume.tex + RELOC/doc/xelatex/hithesis/body/introduction.tex + RELOC/doc/xelatex/hithesis/dtx-style.sty + RELOC/doc/xelatex/hithesis/figures/bthesistitle.eps + RELOC/doc/xelatex/hithesis/figures/golfer.eps + RELOC/doc/xelatex/hithesis/figures/hitlogo.eps + RELOC/doc/xelatex/hithesis/front/cover.tex + RELOC/doc/xelatex/hithesis/front/denotation.tex + RELOC/doc/xelatex/hithesis/hithesis.pdf details="Package documentation (Chinese)" language="zh" + RELOC/doc/xelatex/hithesis/latexmkrc + RELOC/doc/xelatex/hithesis/main.pdf + RELOC/doc/xelatex/hithesis/main.tex + RELOC/doc/xelatex/hithesis/reference.bib + RELOC/doc/xelatex/hithesis/wct1.eps + RELOC/doc/xelatex/hithesis/wct10.eps + RELOC/doc/xelatex/hithesis/wct5.eps + RELOC/doc/xelatex/hithesis/zfb.eps +srccontainersize 58908 +srccontainerchecksum 64515fa70127ba17b9a8d846c9670bc93f16db80db83945037a4ae8b505979202a16e0fc7187731ead320078b8d9277337b555c2b2a271e99677e0330940b9f9 srcfiles size=63 - RELOC/source/latex/hithesis/Makefile - RELOC/source/latex/hithesis/hithesis.dtx - RELOC/source/latex/hithesis/hithesis.ins + RELOC/source/xelatex/hithesis/Makefile + RELOC/source/xelatex/hithesis/hithesis.dtx + RELOC/source/xelatex/hithesis/hithesis.ins runfiles size=53 RELOC/bibtex/bst/hithesis/hithesis.bst RELOC/makeindex/hithesis/hithesis.ist - RELOC/tex/latex/hithesis/ctex-fontset-siyuan.def - RELOC/tex/latex/hithesis/hithesis.cfg - RELOC/tex/latex/hithesis/hithesis.cls - RELOC/tex/latex/hithesis/hithesis.sty + RELOC/tex/xelatex/hithesis/ctex-fontset-siyuan.def + RELOC/tex/xelatex/hithesis/hithesis.cfg + RELOC/tex/xelatex/hithesis/hithesis.cls + RELOC/tex/xelatex/hithesis/hithesis.sty catalogue-contact-announce https://github.com/dustincys catalogue-contact-bugs https://github.com/dustincys/hithesis/issues catalogue-contact-development https://github.com/dustincys catalogue-contact-home https://github.com/dustincys/hithesis catalogue-contact-repository https://github.com/dustincys catalogue-contact-support https://github.com/dustincys/hithesis/issues -catalogue-ctan /macros/latex/contrib/hithesis +catalogue-ctan /macros/xetex/latex/hithesis catalogue-license lppl1.3a -catalogue-topics dissertation class chinese +catalogue-topics dissertation class chinese xetex catalogue-version 2.0.11 name hitreport @@ -136635,17 +142880,18 @@ catalogue-version 1.0.0 name hitszthesis category Package -revision 55643 +revision 61073 shortdesc A dissertation template for Harbin Institute of Technology, ShenZhen relocated 1 longdesc This package provides a dissertation template for Harbin longdesc Institute of Technology, ShenZhen (HITSZ), including bachelor, longdesc master and doctor dissertations. -containersize 25004 -containerchecksum 2661153465f8b9fc3f4feaf23859ddd0e0da863d0cdc3c0e8b14997e192260cc252ef58d95082b54b9f7299347ec72a9057e11d6656c5e26c9f3e6285baf6484 -doccontainersize 1675628 -doccontainerchecksum c6d12b3779c8e67050bd77f905741c1a496379f76c001f3348bd9f8fccfb8c25dbb58acfaab76901c1b01fcab260a206ba3a0337411881a21f46b1888b684195 -docfiles size=474 +containersize 25112 +containerchecksum b7a3dbbed2d9520aa26fbf88e9fd5f864912dbf0ebdf052cf65fe888676b9d5ce9917d154bef8bed2c5cdbec6bba5ce57cd434bdf3d9ff8c41ca6fc12f07a8ce +doccontainersize 1656872 +doccontainerchecksum 577c2dace816b5356e3a2da21f8e95aa165e55b75f5df0524d5abe6649d6e1879b7a2e97d0da88890e37baa05becfbcd567b977d62c58f17e0f372234cf00b36 +docfiles size=483 + RELOC/doc/latex/hitszthesis/License RELOC/doc/latex/hitszthesis/README.md details="Readme" RELOC/doc/latex/hitszthesis/back/acknowledgements.tex RELOC/doc/latex/hitszthesis/back/appendix01.tex @@ -136678,8 +142924,8 @@ docfiles size=474 RELOC/doc/latex/hitszthesis/hitszthesis.pdf details="Package documentation" language="zh" RELOC/doc/latex/hitszthesis/latexmkrc RELOC/doc/latex/hitszthesis/reference.bib -srccontainersize 33884 -srccontainerchecksum 3a39f1bf764f53cf149db0fde6e60d28fa290acb9c2506e5fee8379642532d51b29e3f0151ec577e258bb95160387a1ff0e9346c05e64cf18882e12f9b542b78 +srccontainersize 34172 +srccontainerchecksum cedf9d399434f48032d4bde2fb91088320b2bd8b939629ee71fa98e744e8de1dfe14b4a01787fc9eecaa7ce8931b322bc0fccd7d96c7eb5e24f2097362063fa5 srcfiles size=33 RELOC/source/latex/hitszthesis/Makefile RELOC/source/latex/hitszthesis/compile.bat @@ -136697,7 +142943,7 @@ catalogue-contact-support https://github.com/YangLaTeX/hitszthesis/wiki catalogue-ctan /macros/latex/contrib/hitszthesis catalogue-license lppl1.3c catalogue-topics class dissertation chinese -catalogue-version 3.2 +catalogue-version 3.2.1 name hletter category Package @@ -136898,33 +143144,33 @@ catalogue-topics macro-supp name hologo category Package -revision 53048 +revision 61719 shortdesc A collection of logos with bookmark support relocated 1 longdesc The package defines a single command \hologo, whose argument is longdesc the usual case-confused ASCII version of the logo. The command longdesc is bookmark-enabled, so that every logo becomes available in longdesc bookmarks without further work. -containersize 9924 -containerchecksum 8d1fd73519f0185db7ae8e82ac62957cb958311a5bded23823591157c6c31557b455ca6baa42fffa39d969e42a5fe87b18186dab7d18097e4e30e8589524ec96 -doccontainersize 553396 -doccontainerchecksum 72a65838829017ca887afe5bdf1f7645209601e267241a5650731a806c08b58670a4934698c4ebf2548d198e0b79619ef33c06d6eccfd5eef9119bee19629105 -docfiles size=141 - RELOC/doc/latex/hologo/README.md - RELOC/doc/latex/hologo/example/hologo-example.tex - RELOC/doc/latex/hologo/hologo.pdf details="Package documentation" -srccontainersize 19816 -srccontainerchecksum 0fa9111eb2d1dd0ce076cb831466219be1f18b87e9520aafa15bdfea7636df836e77611e393909b6c410f6bd1aee76b76aa4779317fb4159353098aa95921ed4 -srcfiles size=28 - RELOC/source/latex/hologo/hologo.dtx +containersize 9916 +containerchecksum d4c5899f35a7405ff19ba810af17a86c25ba76cd01597dd19e074ec468052a95c85f8a80e1f0467f48f72280246c152bb24928a68fbbdb2cf6f0788cf94703b0 +doccontainersize 578024 +doccontainerchecksum f92326ed2d0bb3ac455a54889b469f69563d4a91e80883bfcf0ce92fb55c0dd63423be8ec800696f8c078bede28929e8a79d43174e8cd1a802b4a6ac88cff178 +docfiles size=150 + RELOC/doc/generic/hologo/README.md details="Readme" + RELOC/doc/generic/hologo/hologo-example.tex + RELOC/doc/generic/hologo/hologo.pdf details="Package documentation" +srccontainersize 19880 +srccontainerchecksum 38d75dffe94c9af12005254231b3fb7fc8bf577993aec3ac3e132d14f304e400806627058a98f5ed1f8f9dd5f4ce6d8caef1214ab8d5dee31aa66f47126bf22a +srcfiles size=29 + RELOC/source/generic/hologo/hologo.dtx runfiles size=14 RELOC/tex/generic/hologo/hologo.sty catalogue-contact-bugs https://github.com/ho-tex/hologo/issues catalogue-contact-repository https://github.com/ho-tex/hologo -catalogue-ctan /macros/latex/contrib/hologo -catalogue-license lppl1.3 -catalogue-topics logo -catalogue-version 1.14 +catalogue-ctan /macros/generic/hologo +catalogue-license lppl1.3c +catalogue-topics logo macro-gen +catalogue-version 1.15 name hook-pre-commit-pkg category Package @@ -136959,7 +143205,7 @@ catalogue-version 1.1.2 name hopatch category Package -revision 56106 +revision 65491 shortdesc Load patches for packages relocated 1 longdesc Hopatch provides a command with which the user may register of @@ -136968,14 +143214,14 @@ longdesc patch immediately, if the relevant package has already been longdesc loaded; otherwise it will store the patch until the package longdesc appears. containersize 2184 -containerchecksum 1658c78cf7671e821ed38825f8b0a0dd96b268c80afb0e64b27129c08e6c9375a7c8e3e5019361e100cb11691a0d27fe533aa2d000306a38b752114a0eac4d12 -doccontainersize 303776 -doccontainerchecksum 57441e01ba72ed0fe8439da5b41dd7600ae43eab90e06150e58704c9fac5a0047c6ab3f7d581310972b973006d9a98ee52bf782f0f2fca151c59050e5bc402f3 -docfiles size=76 +containerchecksum 6c0f9549ce0321d9080cd0dfd3062eab47722bedac79293a14019c25edfdca7afd0cd6bd3b7be67a99a93ea0b347ac798a7b24909886d300e7085ca67d1a5c42 +doccontainersize 319716 +doccontainerchecksum 4fbf84371053bd67fb3d4b370bc335013cb62042cf9c13d2fc1c63a582a56885a93f73a44aff8986b4c657f7d172a1bd75cbde556633647a1abafb72746f9150 +docfiles size=82 RELOC/doc/latex/hopatch/README.md RELOC/doc/latex/hopatch/hopatch.pdf details="Package documentation" -srccontainersize 6008 -srccontainerchecksum 30537bb32dc82ccba9df85129db856884e2a948cee2cbe500a6208a5c3481b8f55253d86ed744d939e149c784e5aa6d8f843434629dc39a291762df863ad959d +srccontainersize 6076 +srccontainerchecksum bd32091e28973236d4de3255642677966c4c856da4d53ab811780536e3c564956ec8299d75f553790f2208ce2ccf9356fead39a5f501f53e91d108782bc3bcb2 srcfiles size=6 RELOC/source/latex/hopatch/hopatch.dtx runfiles size=3 @@ -136985,7 +143231,7 @@ catalogue-contact-bugs https://github.com/ho-tex/hopatch/issues catalogue-ctan /macros/latex/contrib/hopatch catalogue-license lppl1.3 catalogue-topics macro-supp -catalogue-version 1.4 +catalogue-version 1.5 name horoscop category Package @@ -137043,29 +143289,65 @@ catalogue-license gpl catalogue-topics dissertation class catalogue-version 1.0 +name href-ul +category Package +revision 64880 +shortdesc Underscored LaTeX hyperlinks +relocated 1 +longdesc This LaTeX package makes hyperlinks underscored, just like on +longdesc the web. The package uses hyperref and ulem. +depend hyperref +depend ulem +containersize 1460 +containerchecksum fd3ddb8d494b5b6a80bddf3e28747cb872452d8bf56e0e59cdbd19e811a235683ac0aff7e92e358f7b9f352cfc2b6c03f2263248cc13e147e4dad649fb331381 +doccontainersize 269928 +doccontainerchecksum 9318e6fd357b9705e95db7600dea3b3b1fe2e7bcb0dffec4bf92b5375a8d7feaaf1574188bfeaefa71f05f6aa3728b51d9c7c72908cc66945a3bc8d5391583d9 +docfiles size=73 + RELOC/doc/latex/href-ul/DEPENDS.txt + RELOC/doc/latex/href-ul/LICENSE.txt + RELOC/doc/latex/href-ul/README.md details="Readme" + RELOC/doc/latex/href-ul/href-ul.pdf details="Package documentation" +srccontainersize 2832 +srccontainerchecksum cea37410dbfd8094c4028b96f03d8ac631a32f349098ad5acdbdd484a789d2da58a21f65745d647e05075226d8ad3e1c2217850a312afe522206e900c0b00eed +srcfiles size=3 + RELOC/source/latex/href-ul/href-ul.dtx + RELOC/source/latex/href-ul/href-ul.ins +runfiles size=1 + RELOC/tex/latex/href-ul/href-ul.sty +catalogue-contact-bugs https://github.com/yegor256/href-ul/issues +catalogue-contact-repository https://github.com/yegor256/href-ul +catalogue-ctan /macros/latex/contrib/href-ul +catalogue-license mit +catalogue-topics hyper underline verbatim +catalogue-version 0.3.0 + name hrefhide category Package -revision 22255 +revision 66189 shortdesc Suppress hyper links when printing relocated 1 -longdesc This package provides the command \hrefdisplayonly (which -longdesc provides a substitute for \href). While the (hyperlinked) text -longdesc appears like an ordinary \href in the compiled PDF file, the -longdesc same text will be "hidden" when printing the text. (Hiding is -longdesc actually achieved by making the text the same colour as the -longdesc background, thus preserving the layout of the rest of the -longdesc text.) -containersize 2412 -containerchecksum 6d96fdc550a99ed7f3e4dbee19a589c27b27af16f910a22befb51bfb452d8f9f57cbb27f1ecf96c5604e61eb1cd0343c0a07810ac1519dc51422183d6229916e -doccontainersize 434460 -doccontainerchecksum a8ae0fbbb185ded46cbc1d7550526230de4098bf3a5bc8bf72ec8f5a5b4b93703501da19a4c9e09e08044aea768a01e39dfa36c38c9be72c7aee8e61f58acd71 -docfiles size=111 +longdesc This package provides the command \hrefdisplayonly +longdesc (additionally to \href provided by the hyperref package). While +longdesc the (hyperlinked) text appears like an ordinary \href in the +longdesc compiled pdf-file, the same text will be "hidden" when printing +longdesc the text. Hiding is actually achieved by making the text the +longdesc same colour as the background, thus preserving the layout of +longdesc the rest of the text. Further the commands \hycon and \hycoff +longdesc (hyper-colour-on/off) can be used to simulate switching option +longdesc ocgcolorlinks of the hyperref package on and off. This package +longdesc is possibly obsolete, see section 3: "Alternatives" in the +longdesc documentation. +containersize 2624 +containerchecksum f62671bc667f8a0eccf2d63b06b55e5483a7f5d1f97e4a1f829c898fe947adf048c21cac10b659160d6ee51f0ad4a48a3998a1e820e387881b6df390ce9bbd0f +doccontainersize 431560 +doccontainerchecksum 0ade5f947160493a66f8772d6980db65d0c52ef03b1c12cc2841ae40eeebaddb8b0af50a8c28b010cfe7689dd1bfaa136b80c419fe26ecad302699e754f372b0 +docfiles size=113 RELOC/doc/latex/hrefhide/README details="Readme" RELOC/doc/latex/hrefhide/hrefhide-example.pdf RELOC/doc/latex/hrefhide/hrefhide-example.tex RELOC/doc/latex/hrefhide/hrefhide.pdf details="Package documentation" -srccontainersize 11684 -srccontainerchecksum ed08bbabfdd78725060f3bac173d2819ddfe494e99d76abe02ffff755718caafc520e0336299c8c1dda0db1492089316e05b1b85c93c866b683703b471e845b4 +srccontainersize 11276 +srccontainerchecksum 51373bd9570c5df5ff388e9174875db7144e5868a0da8d5d27a9f4c332dc37c97436d1ebedb60c18b47a1e6befa07e5703fb1d6d5d5f872d46f3bc3e2ef71b84 srcfiles size=12 RELOC/source/latex/hrefhide/hrefhide.drv RELOC/source/latex/hrefhide/hrefhide.dtx @@ -137075,7 +143357,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/hrefhide catalogue-license lppl1.3 catalogue-topics hyper -catalogue-version 1.0f +catalogue-version 1.1a name hrlatex category Package @@ -137157,28 +143439,87 @@ catalogue-version 1.1.1 name huawei category Package -revision 58907 +revision 65264 shortdesc Template for Huawei documents relocated 1 longdesc This unofficial package provides a class for creating documents -longdesc for people working with Huawei Technologies Co., Ltd.. -containersize 5668 -containerchecksum d6aba70a005d5902c55cdcee90f903d11f8ff337f0fec8966add4a5ed0e03f72b466542b7e40422a83016569d808cf1ec5c04ee1e729b96492140ff356ca9a95 -doccontainersize 366952 -doccontainerchecksum 8131787a0f84aa0b54072f1a20f0c397b5e48c0168a4df993b9ee542e2444db40b4a1cb2c4da7263c492db511a74f03d858f47b287f9db803d997553f88885ed -docfiles size=92 +longdesc for people working with Huawei Technologies Co., Ltd. +depend biblatex +depend cjk +depend currfile +depend datetime +depend enumitem +depend fancyhdr +depend footmisc +depend geometry +depend graphics +depend hyperref +depend l3packages +depend lastpage +depend libertine +depend makecell +depend microtype +depend minted +depend paralist +depend pgf +depend setspace +depend svg +depend tcolorbox +depend textpos +depend titling +depend tools +depend ulem +depend wrapfig +depend xcolor +containersize 260164 +containerchecksum d181f45f8211714674697a8e2e203b3169cb1be998687f315418dca664cb09533b5e3b5f7b1cda0db628401d263d7ca816c2ce1c29da48f1550ea9100d9e2523 +doccontainersize 778780 +doccontainerchecksum 3b4112d8b5389ab26034ff126744aa4299cbc5f42630a00a7e7b4245e4355ed0abe42718100439af3cb5b1642db4567b6d16e69ffe852cae0c5c9aa20e8cd7f9 +docfiles size=200 + RELOC/doc/latex/huawei/DEPENDS.txt + RELOC/doc/latex/huawei/LICENSE.txt RELOC/doc/latex/huawei/README.md details="Readme" RELOC/doc/latex/huawei/huawei.pdf details="Package documentation" - RELOC/doc/latex/huawei/huawei.tex -runfiles size=4 +srccontainersize 10156 +srccontainerchecksum 93271d9361e0cbf9fff9890f2617c96a381b631332041a576309a28af77150afc1da99f7596d3b89d0685584115cdbfd46d1b5fa7706b7ae4af88984e8fae8ab +srcfiles size=9 + RELOC/source/latex/huawei/huawei.dtx + RELOC/source/latex/huawei/huawei.ins +runfiles size=67 + RELOC/tex/latex/huawei/huawei-cover-picture.pdf RELOC/tex/latex/huawei/huawei.cls -catalogue-contact-bugs http://github.com/yegor256/huawei.cls/issues -catalogue-contact-home http://github.com/yegor256/huawei.cls -catalogue-contact-repository http://github.com/yegor256/huawei.cls +catalogue-contact-home https://github.com/yegor256/huawei.cls catalogue-ctan /macros/latex/contrib/huawei catalogue-license mit -catalogue-topics class -catalogue-version 0.1.0 +catalogue-topics class misc-paper +catalogue-version 0.15.0 + +name huaz +category Package +revision 64723 +shortdesc Automatic Hungarian definite articles +relocated 1 +longdesc In Hungarian there are two definite articles, "a" and "az", +longdesc which are determined by the pronunciation of the subsequent +longdesc word. The definite article is "az", if the first phoneme of the +longdesc pronounced word is a vowel, otherwise it is "a". The huaz +longdesc package helps the user to insert automatically the correct +longdesc definite article for cross-references and other commands +longdesc containing text. +containersize 4692 +containerchecksum 78331527a14c974923706a26527c8b42e1467935a741d28e81e7ba0510b29cc26242f8b811ac7025a9be3da1d92a2d65fb47dbd798fc1ddd985d58ad96e82c9b +doccontainersize 328068 +doccontainerchecksum 32c2279e927dfe4fce1554b2dc9a747aa274c6406a0b98fe4477fcf159d3b978f46035badb293bea596067583ad738373e2bf3680fb1d5e20284a0d45b3900a4 +docfiles size=88 + RELOC/doc/latex/huaz/README details="Readme" + RELOC/doc/latex/huaz/huaz.pdf details="Package documentation" language="hu" + RELOC/doc/latex/huaz/huaz.tex +runfiles size=5 + RELOC/tex/latex/huaz/huaz.sty +catalogue-ctan /macros/latex/contrib/huaz +catalogue-license lppl1.3 +catalogue-topics hungarian +catalogue-version 1.0 name hulipsum category Package @@ -137249,7 +143590,7 @@ catalogue-version 1.4 name hvarabic category Package -revision 55643 +revision 59423 shortdesc Macros for RTL typesetting relocated 1 longdesc This package provides some macros for right-to-left @@ -137257,9 +143598,9 @@ longdesc typesetting. It uses by default the arabic fonts Scheherazade longdesc and ALM fixed, the only monospaced arabic font. The package longdesc works with LuaLaTeX or XeLaTeX, but not with pdfLaTeX or latex. containersize 1468 -containerchecksum be0e943f505edd7c8e0138ccf101a821791fc7560a6e5afd41c57236fe6fd632c0813162bd9ede8ff021cd5583a739ed7871cc6453a3bae8c0c917740bd06f48 -doccontainersize 150684 -doccontainerchecksum 1e08c4864ef4ba5f083500b55521995fbf4dbea9c53626ff36bdab438db25f612d5272a2d05b72c7c6eb3a72a946179819b4ab52c7eb79ec699ce69d112b2cc8 +containerchecksum 2f9af35f3e3ebf6d90ed05a77fcd6d6c079d3a476c26e0704e6f6b74899badc3eb0cc79d37f5f9e8b6a2846edb869bf57fc5b4bf14e834629d126bc71b77e42a +doccontainersize 150588 +doccontainerchecksum 8508cab70c4cc87665790dcfd34a4465fa22002ca19a41d2d24e21ae0a2ed833a7f3c0e346d36e8c95411ea925ad3ebda8b6d1ee4179610ce0e3f673e6226246 docfiles size=49 RELOC/doc/latex/hvarabic/CHANGELOG RELOC/doc/latex/hvarabic/README.md @@ -137270,12 +143611,41 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/hvarabic catalogue-license lppl1.3c catalogue-topics arabic bidi -catalogue-version 0.01 +catalogue-version 0.02 + +name hvextern +category Package +revision 65670 +shortdesc Write and execute external code, and insert the output +relocated 1 +longdesc This package allows to write MetaPost, TeX, ConTeXt, LaTeX, +longdesc LuaTeX, LuaLaTeX, XeTeX, XeLaTeX, Lua, Perl, or Python source +longdesc code into an external file, run that file via shell-escape to +longdesc create PDF, PNG, or text output, and include that output +longdesc automatically into the main LaTeX document. +containersize 7980 +containerchecksum 2a0b0771f99c83fd3e33aa0da43afc51ec32ff3eed45ece76eadbe3c4eedf7ddaec16d4ba32f8829cd16e61af93f5b9be83686262174f07ca863f5d183b5520b +doccontainersize 1133992 +doccontainerchecksum 0dfcd19c671a4e6100df0b89113d517abbc803e411a347059c44652106b7990b7371b96a6bde85ada1420f2029eeb5d614fae5b44b3c2dc7cb9191d55341cae7 +docfiles size=382 + RELOC/doc/latex/hvextern/Changes + RELOC/doc/latex/hvextern/README details="Readme" + RELOC/doc/latex/hvextern/hvdoctools.sty + RELOC/doc/latex/hvextern/hvextern.pdf details="Package documentation" + RELOC/doc/latex/hvextern/hvextern.tex +runfiles size=13 + RELOC/tex/latex/hvextern/hvextern-checkfile.lua + RELOC/tex/latex/hvextern/hvextern.lua + RELOC/tex/latex/hvextern/hvextern.sty +catalogue-ctan /macros/latex/contrib/hvextern +catalogue-license lppl1.3c +catalogue-topics ext-code comp-supp image-supp expl3 +catalogue-version 0.33 name hvfloat category Package -revision 59069 -shortdesc Rotating caption and object of floats independently +revision 65671 +shortdesc Controlling captions, fullpage and doublepage floats relocated 1 longdesc This package defines a macro to place objects (tables and longdesc figures) and their captions in different positions with @@ -137286,11 +143656,11 @@ longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}. longdesc Options are provided to place captions to the right or left, longdesc and rotated. Setting nonFloat=true results in placing the float longdesc here. -containersize 8364 -containerchecksum c57acb1f6b5b117e5728cfcc5a009d23d24fb31e1928eb220f0d63cd5f8b8e7e83f15f8e8fdd80f3f99a83a9f3e2bb088bf99f38868b985e0d9eea99feec9226 -doccontainersize 19073660 -doccontainerchecksum e2ef456032dea2e21e94e5e21d68a51b40d4f63a57d4ee2f91d0be5742816f9e538b1a08ff3507b3e4636c64ed0f32e4eb942886bc9378967b0da53e0428adc8 -docfiles size=5870 +containersize 13328 +containerchecksum 9189c7cdffe77ca6ea69288641453fb057512079dbf59a112de18d6a496a487e928a4ccdcf9ae4b69433ee73b03ab07e4ea6ebe5f881619b57b24be3ee787f11 +doccontainersize 10482984 +doccontainerchecksum 1dcfe143a1b525763a2c4e1c5f9761002cbbf46259eac4d18d8e95033af86f92c9a9d1106070f696500db89feefec6717c934ec310d463cb4161a3497df9d548 +docfiles size=4827 RELOC/doc/latex/hvfloat/CTAN.png RELOC/doc/latex/hvfloat/Changes RELOC/doc/latex/hvfloat/README details="Readme" @@ -137299,6 +143669,10 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/after1s1c.tex RELOC/doc/latex/hvfloat/after2s2c.pdf RELOC/doc/latex/hvfloat/after2s2c.tex + RELOC/doc/latex/hvfloat/capPos.inc + RELOC/doc/latex/hvfloat/capPos.pdf + RELOC/doc/latex/hvfloat/capPos.tex + RELOC/doc/latex/hvfloat/capVPos.inc RELOC/doc/latex/hvfloat/default1s1c.pdf RELOC/doc/latex/hvfloat/default1s1c.tex RELOC/doc/latex/hvfloat/default1s2c.pdf @@ -137307,6 +143681,12 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/default2s1c.tex RELOC/doc/latex/hvfloat/default2s2c.pdf RELOC/doc/latex/hvfloat/default2s2c.tex + RELOC/doc/latex/hvfloat/doublefullpage2s2c.pdf + RELOC/doc/latex/hvfloat/doublefullpage2s2c.tex + RELOC/doc/latex/hvfloat/doublepage2s1c.pdf + RELOC/doc/latex/hvfloat/doublepage2s1c.tex + RELOC/doc/latex/hvfloat/doublepage2s2c.pdf + RELOC/doc/latex/hvfloat/doublepage2s2c.tex RELOC/doc/latex/hvfloat/even1s1c.pdf RELOC/doc/latex/hvfloat/even1s1c.tex RELOC/doc/latex/hvfloat/even1s2c.pdf @@ -137315,7 +143695,10 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/even2s1c.tex RELOC/doc/latex/hvfloat/even2s2c.pdf RELOC/doc/latex/hvfloat/even2s2c.tex + RELOC/doc/latex/hvfloat/felsen-wasser-small.pdf RELOC/doc/latex/hvfloat/frose.png + RELOC/doc/latex/hvfloat/fullpage1s1c.pdf + RELOC/doc/latex/hvfloat/fullpage1s1c.tex RELOC/doc/latex/hvfloat/fullpage1s2c.pdf RELOC/doc/latex/hvfloat/fullpage1s2c.tex RELOC/doc/latex/hvfloat/hvfloat.pdf details="Package documentation" @@ -137361,16 +143744,26 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/outer2s2c.tex RELOC/doc/latex/hvfloat/paper-after1s1c.pdf RELOC/doc/latex/hvfloat/paper-after1s1c.tex + RELOC/doc/latex/hvfloat/paper-after2s2c.pdf + RELOC/doc/latex/hvfloat/paper-after2s2c.tex RELOC/doc/latex/hvfloat/paper-default1s1c.pdf RELOC/doc/latex/hvfloat/paper-default1s1c.tex RELOC/doc/latex/hvfloat/paper-default1s2c.pdf RELOC/doc/latex/hvfloat/paper-default1s2c.tex + RELOC/doc/latex/hvfloat/paper-default2s1c.pdf + RELOC/doc/latex/hvfloat/paper-default2s1c.tex RELOC/doc/latex/hvfloat/paper-default2s2c.pdf RELOC/doc/latex/hvfloat/paper-default2s2c.tex + RELOC/doc/latex/hvfloat/paper-even2s1c.pdf + RELOC/doc/latex/hvfloat/paper-even2s1c.tex RELOC/doc/latex/hvfloat/paper-inner2s2c.pdf RELOC/doc/latex/hvfloat/paper-inner2s2c.tex + RELOC/doc/latex/hvfloat/paper-odd2s1c.pdf + RELOC/doc/latex/hvfloat/paper-odd2s1c.tex RELOC/doc/latex/hvfloat/paper-right1s1c.pdf RELOC/doc/latex/hvfloat/paper-right1s1c.tex + RELOC/doc/latex/hvfloat/paper-twocolcaption-after2s2c.pdf + RELOC/doc/latex/hvfloat/paper-twocolcaption-after2s2c.tex RELOC/doc/latex/hvfloat/preamble.ltx RELOC/doc/latex/hvfloat/right1s1c.pdf RELOC/doc/latex/hvfloat/right1s1c.tex @@ -137383,6 +143776,7 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/rose.png RELOC/doc/latex/hvfloat/runAll.sh RELOC/doc/latex/hvfloat/runEXA.sh + RELOC/doc/latex/hvfloat/sonne-meer.jpg RELOC/doc/latex/hvfloat/sub-after1s1c.pdf RELOC/doc/latex/hvfloat/sub-after1s1c.tex RELOC/doc/latex/hvfloat/sub-after2s2c.pdf @@ -137399,14 +143793,18 @@ docfiles size=5870 RELOC/doc/latex/hvfloat/sub-right1s2c.tex RELOC/doc/latex/hvfloat/sub-right2s2c.pdf RELOC/doc/latex/hvfloat/sub-right2s2c.tex -runfiles size=13 + RELOC/doc/latex/hvfloat/wide1s2c.pdf + RELOC/doc/latex/hvfloat/wide1s2c.tex + RELOC/doc/latex/hvfloat/wide2s2c.pdf + RELOC/doc/latex/hvfloat/wide2s2c.tex +runfiles size=23 RELOC/tex/latex/hvfloat/hvfloat-fps.sty RELOC/tex/latex/hvfloat/hvfloat.sty catalogue-also rotating catalogue-ctan /macros/latex/contrib/hvfloat catalogue-license lppl catalogue-topics float box-manip -catalogue-version 2.21 +catalogue-version 2.45 name hvindex category Package @@ -137433,19 +143831,70 @@ catalogue-license lppl catalogue-topics index catalogue-version 0.04 +name hvlogos +category Package +revision 63261 +shortdesc Print TeX-related names as logo +relocated 1 +longdesc This package is more or less an extension to Heiko Oberdiek's +longdesc package hologo. It prints TeX-related names as logos. The +longdesc package requires fetamont, hologo, dantelogo, and xspace. +containersize 2772 +containerchecksum 655f8db151a5fbd05b096d288a6fe93cd89de9df3741a68eb5ffd221276d3ed633ca1f17507177c8bec2485ece386d117f11a363f87483763a941a155015ab3a +doccontainersize 87192 +doccontainerchecksum 459e93a38de9d5dd600d02eaef7ea512ef57127a683bfa8831c159ab68bf6f86bfc4a659aba98adc59f2c5ac7e26984db5f84e8c9933b4a49b30633ad46ee45a +docfiles size=26 + RELOC/doc/latex/hvlogos/Changes + RELOC/doc/latex/hvlogos/README details="Readme" + RELOC/doc/latex/hvlogos/hvlogos-doc.pdf details="Package documentation" + RELOC/doc/latex/hvlogos/hvlogos-doc.tex +runfiles size=2 + RELOC/tex/latex/hvlogos/hvlogos.sty +catalogue-ctan /macros/latex/contrib/hvlogos +catalogue-license lppl +catalogue-topics logo +catalogue-version 0.09 + +name hvpygmentex +category Package +revision 62405 +shortdesc Syntax-Highlighting of program code +relocated 1 +longdesc The package is based on pygmentex but provides an automatic run +longdesc from within the document itself, with the option +longdesc --shell-escape. It does not need the additional action by the +longdesc user to run the external program pygmentize to create the code +longdesc snippets. +containersize 3576 +containerchecksum 5770b9933ad2dc7c844ba2281a3717bc1d27f67a834de45a87effd400551fc74d111ba5087ceab96b2a9e6ed11293fd0d3dfbaf7ac89c4d9a1434911a2fbf734 +doccontainersize 22308 +doccontainerchecksum cd7b3a615ab8ca79e0d0e9feb7804cabd9036831d2f9761429b7bf528125d055e29f3f7a2e1eeb8efd4c73c1f6f8e0ed03a2ba47dbf9504fc1a750b4c278843c +docfiles size=9 + RELOC/doc/latex/hvpygmentex/Changes + RELOC/doc/latex/hvpygmentex/README.md details="Readme" + RELOC/doc/latex/hvpygmentex/hvpygmentex.pdf details="Package documentation" + RELOC/doc/latex/hvpygmentex/hvpygmentex.tex +runfiles size=4 + RELOC/tex/latex/hvpygmentex/hvpygmentex.sty +catalogue-also pygmentex +catalogue-ctan /macros/latex/contrib/hvpygmentex +catalogue-license lppl1.3c +catalogue-topics listing synt-hlt +catalogue-version 0.01 + name hvqrurl category Package -revision 52993 +revision 59256 shortdesc Insert a QR code in the margin relocated 1 longdesc This package allows to draw an URL as a QR code into the margin longdesc of a one- or twosided document. The following packages are longdesc loaded by default: qrcode, marginnote, url, xcolor and xkeyval. -containersize 1240 -containerchecksum 3f52fae550f92e379b76bc91b6a4b8fc25cb9ad6bc19c744c6f9ef0948d6590c1289f267681339fc7f596a7c328adaf45eb7c94be45e5f327bd77db5e366e315 -doccontainersize 96644 -doccontainerchecksum 2f9c4772b34ebb6096da22ffb10b41eef091be66513d1dbb20c4f224c2e471493fa30e63432e19e47b03ca7b248ae178a1a729517ed3108ef406cb30abb6cef8 -docfiles size=28 +containersize 1296 +containerchecksum 472da0c72999f672cc6d21e35e9adc7c25d1202b8f4eb4a75f9498ae8cca5ea7aca7102dece9943e2070002390a3ced018d12358523d52cb2a32c6e6b9012126 +doccontainersize 105300 +doccontainerchecksum 0c7de4ea0173e754cdcea91b56681c4681c05d591f3176a0e7973c5b1f9d819a737d6ab14052a94a8dc48919dc2b98c7337274770a115d598667852cb118f69b +docfiles size=30 RELOC/doc/latex/hvqrurl/Changes RELOC/doc/latex/hvqrurl/README details="Readme" RELOC/doc/latex/hvqrurl/hvqrurl.pdf details="Package documentation" @@ -137455,7 +143904,34 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/hvqrurl catalogue-license lppl1.3 catalogue-topics qrcode -catalogue-version 0.01a +catalogue-version 0.02 + +name hwemoji +category Package +revision 65001 +shortdesc Unicode emoji support for pdfLaTeX with sequences +relocated 1 +longdesc This package provides direct support for Unicode emoji in +longdesc pdfLaTeX, with full access to emoji sequences including but not +longdesc limited to flag sequences, diversity modifier sequences, and +longdesc tag sequences. Emojis are displayed through Twemoji digital +longdesc assets, as licensed under the CC-BY 4.0. +containersize 4274656 +containerchecksum fb29647b4b81c5c4cc389fe4957400e01dd408f9b915fa4062218af3b2a8eb852315399251c257ed1220ff48359940c59ab9a09dc7a67fa8f0817e39636a1312 +doccontainersize 4360084 +doccontainerchecksum ec35434e49038755dfaef171273e70baffeb3021d002c83703bdc18d0f181f8027a01272bf5b3ce02ceede62495dc9dc1f1c390323e73d77b1bb6adf226f74b1 +docfiles size=1494 + RELOC/doc/latex/hwemoji/README details="Readme" + RELOC/doc/latex/hwemoji/hwemoji.pdf details="Package documentation" + RELOC/doc/latex/hwemoji/hwemoji.tex +runfiles size=1883 + RELOC/tex/latex/hwemoji/hwemoji-assets.pdf + RELOC/tex/latex/hwemoji/hwemoji.sty +catalogue-contact-support mailto:identitysuccessfullyconcealed@gmail.com +catalogue-ctan /macros/latex/contrib/hwemoji +catalogue-license lppl1.3c cc-by-4 +catalogue-topics graphics text-symbol +catalogue-version 1.0 name hycolor category Package @@ -137511,6 +143987,34 @@ catalogue-license lppl1.3 catalogue-topics hyper catalogue-version 2.7 +name hypdoc +category Package +revision 65678 +shortdesc Hyper extensions for doc.sty +relocated 1 +longdesc This package adds hypertext features to the package doc that is +longdesc used in the documentation system of LaTeX2e. Bookmarks are +longdesc added and references are linked as far as possible. +containersize 3556 +containerchecksum 216c3adfa731d4c18b7072d3fd812065195bd06b849cc2b669650a24d51b93cd5c4dd8b9dbfb5874e90d2b928e32a675d5bafed1f5543b826041374f2d4885dd +doccontainersize 325076 +doccontainerchecksum 8ef2afe4f1e69aa9934d80363d206a852444396a7067e99ee9ea33c5ab8648e94997631e657f6eca0d9d65e4c14132d46eac7d639ea5f8ba558e83d17c39a2f4 +docfiles size=83 + RELOC/doc/latex/hypdoc/README.md details="Readme" + RELOC/doc/latex/hypdoc/hypdoc.pdf details="Package documentation" +srccontainersize 8564 +srccontainerchecksum a68d3134f4c96ee6edcd3da623fc37b475c5ec7d599e363b2d5bb14bfb74d4906b7831d595cd1e547534e773a0348cd4cd11252f7ebdb64c7ed11ad0a5e2ab9a +srcfiles size=9 + RELOC/source/latex/hypdoc/hypdoc.dtx +runfiles size=3 + RELOC/tex/latex/hypdoc/hypdoc.sty +catalogue-contact-bugs https://github.com/ho-tex/hypdoc/issues +catalogue-contact-repository https://github.com/ho-tex/hypdoc +catalogue-ctan /macros/latex/contrib/hypdoc +catalogue-license lppl1.3c +catalogue-topics doc-supp hyper +catalogue-version 1.18 + name hypdvips category Package revision 53197 @@ -137676,7 +144180,7 @@ catalogue-version 1.0b name hyperref category Package -revision 58024 +revision 65758 shortdesc Extensive support for hypertext in LaTeX relocated 1 longdesc The hyperref package is used to handle cross-referencing @@ -137706,40 +144210,44 @@ depend rerunfilecheck depend stringenc depend url depend zapfding -containersize 91200 -containerchecksum 00c82f1b64272ee6fd3728e29edf8e399a08eb3ffb9fb4fb011f4d0caa38970a351c132fd7096954a32ce9c730d798ba606f59f0ad6bf1754e43462067dd6c49 -doccontainersize 3287788 -doccontainerchecksum 9005eb33d3f8b90199131eb2104fd961fd7d248c17c67af73162a0b90f0b90de1e5f5c79ffce59564f7d19e835765c59b385fb0e9e19ef4935f1de49655b03dc -docfiles size=1046 +containersize 91152 +containerchecksum c30dfac04cd90487740189dca7bf596c43e6313b1382296b0f5cc4337e6504906cdb247870eb15af1fc1f8b9417dac2872ca82ec490b6e065f8148c35ecdcb21 +doccontainersize 3687224 +doccontainerchecksum b54fa3cf90ad69d0aa0ac409b1372b438a1b07818d102b01e597f956d9a380fb9e99acbab14a4d87c30b5fd4343536c40b39eb4ff43e1f5a0704f31d38063f38 +docfiles size=1198 RELOC/doc/latex/hyperref/ChangeLog.txt RELOC/doc/latex/hyperref/README.md details="Readme" RELOC/doc/latex/hyperref/backref.pdf RELOC/doc/latex/hyperref/hyperref-doc.css RELOC/doc/latex/hyperref/hyperref-doc.html details="Manual, HTML version" RELOC/doc/latex/hyperref/hyperref-doc.pdf details="Manual, PDF version" language="en" + RELOC/doc/latex/hyperref/hyperref-doc.tex RELOC/doc/latex/hyperref/hyperref-doc2.html RELOC/doc/latex/hyperref/hyperref-doc3.html RELOC/doc/latex/hyperref/hyperref-doc4.html RELOC/doc/latex/hyperref/hyperref-doc5.html RELOC/doc/latex/hyperref/hyperref-doc6.html RELOC/doc/latex/hyperref/hyperref-doc7.html + RELOC/doc/latex/hyperref/hyperref-doc8.html + RELOC/doc/latex/hyperref/hyperref-linktarget.pdf RELOC/doc/latex/hyperref/hyperref.pdf RELOC/doc/latex/hyperref/manifest.txt RELOC/doc/latex/hyperref/nameref.pdf RELOC/doc/latex/hyperref/paper.pdf details="Paper on tagging and navigation" language="en" RELOC/doc/latex/hyperref/slides.pdf -srccontainersize 446744 -srccontainerchecksum be6c8585a89c5c17bc38704251c9800073784e0fdfce6441a14ab804e9de0b23cebfcd7ca94f366cdc12e37b20f571f68b309df483691ebe3e065af4a7876f68 -srcfiles size=346 +srccontainersize 415304 +srccontainerchecksum 3d1637fb8d0149214d308a4c0030f70719a27ce0c0c3cee9c061d54e8607fce12257b08d2b992c6f8de9012615e91e0ae10713d18fa16e9c6dff554257490457 +srcfiles size=313 RELOC/source/latex/hyperref/backref.dtx RELOC/source/latex/hyperref/bmhydoc.sty - RELOC/source/latex/hyperref/doc/hyperref-doc.tex RELOC/source/latex/hyperref/doc/paperslides99.zip RELOC/source/latex/hyperref/hluatex.dtx + RELOC/source/latex/hyperref/hyperref-linktarget.dtx + RELOC/source/latex/hyperref/hyperref-patches.dtx RELOC/source/latex/hyperref/hyperref.dtx RELOC/source/latex/hyperref/hyperref.ins RELOC/source/latex/hyperref/nameref.dtx -runfiles size=208 +runfiles size=204 RELOC/tex/latex/hyperref/backref.sty RELOC/tex/latex/hyperref/hdvipdfm.def RELOC/tex/latex/hyperref/hdvips.def @@ -137754,7 +144262,7 @@ runfiles size=208 RELOC/tex/latex/hyperref/hvtexhtm.def RELOC/tex/latex/hyperref/hvtexmrk.def RELOC/tex/latex/hyperref/hxetex.def - RELOC/tex/latex/hyperref/hyperref-langpatches.def + RELOC/tex/latex/hyperref/hyperref-patches.sty RELOC/tex/latex/hyperref/hyperref.sty RELOC/tex/latex/hyperref/hypertex.def RELOC/tex/latex/hyperref/minitoc-hyper.sty @@ -137774,12 +144282,12 @@ catalogue-contact-bugs https://github.com/latex3/hyperref/issues catalogue-contact-home https://github.com/latex3/hyperref catalogue-ctan /macros/latex/contrib/hyperref catalogue-license lppl1.3 -catalogue-topics hyper pdf-feat adobe-distiller form-fillin -catalogue-version 7.00k +catalogue-topics hyper pdf-feat adobe-distiller form-fillin etex +catalogue-version 7.00v name hyperxmp category Package -revision 57004 +revision 65980 shortdesc Embed XMP metadata within a LaTeX document longdesc XMP (eXtensible Metadata Platform) is a mechanism proposed by longdesc Adobe for embedding document metadata within the document @@ -137801,17 +144309,17 @@ longdesc address/URL. Hyperxmp currently embeds XMP only within PDF longdesc documents; it is compatible with pdfLaTeX, XeLaTeX, longdesc LaTeX+dvipdfm, and LaTeX+dvips+ps2pdf. depend hyperxmp.ARCH -containersize 15008 -containerchecksum 559312539407e1ec8eca1e476d015baa88631b8750249c724a9a99a2bb0644680ddc7b4d9c1aa8cd74dd9ff366b2e1821a01bd6d6eef54a14a72d8877f86b7d7 -doccontainersize 1163204 -doccontainerchecksum e63bb28383038ca1ac45bf0af92a95e50383b1a9dc3714b3e077a37d92022c4304dd00ab313979c7b7763f2ec6ba8946f6ba71fb09fc0870d02a0ac89be25c53 -docfiles size=388 +containersize 15092 +containerchecksum ed89d3ec618c2826bcaad1b4766c8dda2e4561a5a7f54f373170740977139bab3d89af01143110054b31645311a6d8fbf9a615881af0097e9fe2082cb757670c +doccontainersize 1171384 +doccontainerchecksum 350822e58fc27cf949615ab5fcc4e0b3a31c51921c64d59a039b235f786560f5f30debb676ea1a0cc2b21e1fd4fc0a390caf37846440350067417de7a7718069 +docfiles size=319 texmf-dist/doc/latex/hyperxmp/README details="Readme" texmf-dist/doc/latex/hyperxmp/hyperxmp.pdf details="Package documentation" texmf-dist/doc/man/man1/hyperxmp-add-bytecount.1 texmf-dist/doc/man/man1/hyperxmp-add-bytecount.man1.pdf -srccontainersize 156872 -srccontainerchecksum 8c7aab81881bf79fba919bb752a5d9f5c9653e89755d1c4bff5c076dc24339dc1327de57fb35393c7d80ee0ad46b4c787c81d73cc15d8d3111a580059bc2e361 +srccontainersize 157468 +srccontainerchecksum cfe6c86273ab20ec869361ee03031d59a7f57edc868ed910a571ccb72aebca078bc81c45c5add1150efdfa5e8e98813c54ecdd8c82fa7b3ed1d7ea694359e4a8 srcfiles size=111 texmf-dist/source/latex/hyperxmp/einstein-xmp.tex texmf-dist/source/latex/hyperxmp/einstein1.pdf @@ -137821,13 +144329,13 @@ srcfiles size=111 texmf-dist/source/latex/hyperxmp/hyperxmp-stds.tex texmf-dist/source/latex/hyperxmp/hyperxmp.dtx texmf-dist/source/latex/hyperxmp/hyperxmp.ins -runfiles size=17 +runfiles size=18 texmf-dist/scripts/hyperxmp/hyperxmp-add-bytecount.pl texmf-dist/tex/latex/hyperxmp/hyperxmp.sty catalogue-ctan /macros/latex/contrib/hyperxmp catalogue-license lppl1.3c catalogue-topics pdf-feat -catalogue-version 5.9 +catalogue-version 5.11 name hyperxmp.aarch64-linux category Package @@ -137865,15 +144373,6 @@ containerchecksum 82914de22b25572cc29fa5f37cfc5903078162c34ede50dd7fc2e76f32381c binfiles arch=armhf-linux size=1 bin/armhf-linux/hyperxmp-add-bytecount -name hyperxmp.i386-cygwin -category Package -revision 56984 -shortdesc i386-cygwin files of hyperxmp -containersize 352 -containerchecksum 7a778fbfcd149fc318f52b4916f237ac92ce424cac1316488df3d6d1548d0e87ec22554868847aeaa9440d0656731b60e56adde4678021244612d0f816f2fafc -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/hyperxmp-add-bytecount - name hyperxmp.i386-freebsd category Package revision 56984 @@ -137919,14 +144418,14 @@ containerchecksum 87ceec5c0f87f5af138c8393ed2dbc07db0ee0317540ca5e826ecaa45360b3 binfiles arch=universal-darwin size=1 bin/universal-darwin/hyperxmp-add-bytecount -name hyperxmp.win32 +name hyperxmp.windows category Package -revision 56984 -shortdesc win32 files of hyperxmp -containersize 692 -containerchecksum 68e8e7357c79c12b04fd0854eed3a1038b1f6fdb6d1a62338c13b3a56f6ac38467b618a6f7bb01d101784e65eae90399bd36efa74a2329e630e71f535c75aa65 -binfiles arch=win32 size=1 - bin/win32/hyperxmp-add-bytecount.exe +revision 65891 +shortdesc windows files of hyperxmp +containersize 2320 +containerchecksum b3cbe1f68906ffd7fab810b138ec473d76f42c4f1efe74bcd84791bda4ae2ebf8764dc9c431d87ac61e3ea966815d2c98646d7e796c90c06d8eb96e3fed9b4c5 +binfiles arch=windows size=2 + bin/windows/hyperxmp-add-bytecount.exe name hyperxmp.x86_64-cygwin category Package @@ -137975,7 +144474,7 @@ binfiles arch=x86_64-solaris size=1 name hyph-utf8 category Package -revision 58619 +revision 61719 shortdesc Hyphenation patterns expressed in UTF-8 relocated 1 longdesc Modern native UTF-8 engines such as XeTeX and LuaTeX need @@ -137990,9 +144489,9 @@ longdesc TeX systems are only read at iniTeX time, it is hoped that the longdesc UTF-8 patterns, with their converters, will completely supplant longdesc the older patterns. containersize 15996 -containerchecksum dc14e4a6aa57764113b9945c76f3f485f370e6c399196916bea2e0451f8238c577100c0db89e742d1233a16b7f51f56674ef1f458dd04f49e207f62744e8ea47 +containerchecksum 64055aa046fdbc721fda474b7848b37d094b1a8f5f01e507df80003ba591dd959871c880f04d5bc6e0bf169e99bf89f5a1a7dad1195c8839773fc613f3719d9f doccontainersize 267700 -doccontainerchecksum 09e4a5ae3b0541b5e6b721f164592c364ca00b0c96986085632461b9201a81fa3f0fe375156a91fdbcdd1f4d5f207d8e7c16d35b6fbe2cd196b4c7025a933d6f +doccontainerchecksum c4aac42267b75a16559705e7de3716eafbec96a285d523d5e7b2f77f345d8e344e174571e247b9c5de8fac75942bc1b0f924e81efd8356b52c9ed91a149d8f09 docfiles size=84 RELOC/doc/generic/hyph-utf8/CHANGES RELOC/doc/generic/hyph-utf8/HISTORY @@ -138004,8 +144503,8 @@ docfiles size=84 RELOC/doc/generic/hyph-utf8/img/texlive-collection.png RELOC/doc/luatex/hyph-utf8/README RELOC/doc/luatex/hyph-utf8/luatex-hyphen.pdf -srccontainersize 34840 -srccontainerchecksum 3dcf4d89d34db765459694329be8cd3182f0021ebbead0ffaab9ae3810c8392b69bab6d0baf433c209becd7eb5ec55b8fdc4c3f145d7792b0c7456129c997430 +srccontainersize 34844 +srccontainerchecksum 2ed5177a81f46bb538517447d89129d82bab87f937c98e4afc6c74863d5f4cc3342470f66d2f5d05247fb3ac26b23ed4b6ce4fd093fcb61fbabac6dd330889f2 srcfiles size=59 RELOC/source/generic/hyph-utf8/README RELOC/source/generic/hyph-utf8/contributed/make-exhyph.pl @@ -138059,7 +144558,7 @@ catalogue-also dehyph-exptl catalogue-contact-bugs https://github.com/hyphenation/tex-hyphen/issues catalogue-contact-home http://www.hyphenation.org catalogue-contact-repository https://github.com/hyphenation/tex-hyphen -catalogue-contact-support http://tug.org/mailman/listinfo/tex-hyphen +catalogue-contact-support https://tug.org/mailman/listinfo/tex-hyphen catalogue-ctan /language/hyph-utf8 catalogue-license mit catalogue-topics hyphenation @@ -138144,15 +144643,15 @@ runfiles size=8 name hyphen-base category TLCore -revision 58630 +revision 66413 shortdesc core hyphenation support files relocated 1 longdesc Includes Knuth's original hyphen.tex, zerohyph.tex to disable longdesc hyphenation, language.us which starts the autogenerated files longdesc language.dat and language.def (and default versions of those), longdesc etc. -containersize 22448 -containerchecksum 15daa4e0004bb55601db85cf796761c1feca5f4668a5894df820a31d107ebefde74fd4d3a997191d9049ecb0fa3f4678a6a0b1fb6506b17bd24546e942d85510 +containersize 22488 +containerchecksum 919ce5b609e6c3252c420ec723132c38866a1add9cabc79e07b212fea50e0fb343236619b5ff735101a333fceaeb9b69c2a27f45c9b94e51918181952c5b3c61 runfiles size=24 RELOC/tex/generic/config/language.dat RELOC/tex/generic/config/language.dat.lua @@ -138605,7 +145104,7 @@ runfiles size=24 name hyphen-german category TLCore -revision 58652 +revision 59807 shortdesc German hyphenation patterns. relocated 1 longdesc Hyphenation patterns for German in T1/EC and UTF-8 encodings, @@ -138624,8 +145123,8 @@ depend hyphen-base execute AddHyphen name=german lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1901.tex file_patterns=hyph-de-1901.pat.txt file_exceptions= execute AddHyphen name=ngerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-1996.tex file_patterns=hyph-de-1996.pat.txt file_exceptions= execute AddHyphen name=swissgerman lefthyphenmin=2 righthyphenmin=2 file=loadhyph-de-ch-1901.tex file_patterns=hyph-de-ch-1901.pat.txt file_exceptions= -containersize 222536 -containerchecksum bea7d4605b1a18d3e7845ccaa06951b62178b3abbdc13dc59d3cbece3fa95fc4fba7e4d60dd253cd9fc022f804975cae5c4996fb99d3037c29971ade9984abce +containersize 222532 +containerchecksum c27389dea67ffd0d45419d484b0c72577b2d5b8234266483add078b970d5d994d41f7cf9a1509ad93efe9489501f986127ea717135c5f57588094393e0d7219e runfiles size=533 RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1901.tex RELOC/tex/generic/hyph-utf8/loadhyph/loadhyph-de-1996.tex @@ -139556,17 +146055,17 @@ catalogue-version 1.0 name ibarra category Package -revision 55820 +revision 64567 shortdesc LaTeX support for the Ibarra Real Nova family of fonts relocated 1 longdesc The Ibarra Real Nova is a revival of a typeface designed by longdesc Geronimo Gil for the publication of Don Quixote for the Real longdesc Academia de la Lengua in 1780. Joaquin Ibarra was the printer. execute addMap ibarra.map -containersize 1106008 -containerchecksum f02661a9cb6b3004bef8ed740cf9b1921080b4e332600e83d2d8c0da1ecbc5a895f026fa178e9b729d3b59457e778d4a64de8e2111e2dae51feb09ae9b2ddfd9 -doccontainersize 213996 -doccontainerchecksum 2f39336d80282c1bf03cd4749b04ef0da513cd1fcae54cce7d64f017ae284c79423b5f17502742677922a9ab9052f2e8053efa70cae2956cc30c6eba1e2ea4a1 +containersize 1106004 +containerchecksum 1e837bc577e185fc2e79abdb3e353939eab98e824369096e536afa03f4030d0e4789080c2e51a49cc4451a4c6d7ddaf59c9def438f7a033ecf981320121c6e8f +doccontainersize 213588 +doccontainerchecksum c48b49d4d0d63948c17a8116fa691e0e75b3d659e40c983082bad98b8fc21ff75f8e87ec4ce1048b0d03bbe12597e4a3d720054ff6d367c5c3ec14452fcec4c3 docfiles size=63 RELOC/doc/fonts/ibarra/OFL.txt RELOC/doc/fonts/ibarra/README details="Readme" @@ -139890,6 +146389,34 @@ catalogue-ctan /fonts/ibarra catalogue-license ofl lppl catalogue-topics font font-body font-proportional font-serif font-type1 font-otf font-supp font-t1enc +name ibrackets +category Package +revision 65383 +shortdesc Intelligent brackets +relocated 1 +longdesc This small package provides a new definition of brackets [ and +longdesc ] as active characters to get correct blank spaces in +longdesc mathematical mode when using for open intervals. Instead of +longdesc parenthesis: ]-\infty, 0[ is equivalent to (-\infty, 0). +containersize 1120 +containerchecksum 96f5a6ee84810035bdba234e23a6b87dafbff602cde6d1f435be1c291e741779133e335d7a8ea7e1a16288348357b16200a7a98751a7a4bed9de2c4fb28dcdee +doccontainersize 80632 +doccontainerchecksum 06ae490ac0d5f49c7a2c9f7f2c4a52922717b2f0375162c8a83750cf7f5525eca3e69b1e89a41204b971a85ceed0779ff27ed557192464d0763ce9c0892ece2d +docfiles size=24 + RELOC/doc/latex/ibrackets/README.md details="Readme" + RELOC/doc/latex/ibrackets/ibrackets.pdf details="Package documentation" +srccontainersize 3836 +srccontainerchecksum 2ab5897bfbd438ddfc8dbcd32b13e57f32617617529590b5089494bc5533376eef99e68e23a7f695ae5c1cd86c9c654ab40477f104ee64b63ee92c5dd24331fc +srcfiles size=3 + RELOC/source/latex/ibrackets/ibrackets.dtx + RELOC/source/latex/ibrackets/ibrackets.ins +runfiles size=1 + RELOC/tex/latex/ibrackets/ibrackets.sty +catalogue-ctan /macros/latex/contrib/ibrackets +catalogue-license lppl1.3 +catalogue-topics french maths paren-mgmt +catalogue-version 1.1 + name ibycus-babel category Package revision 15878 @@ -140082,22 +146609,20 @@ catalogue-version 0.2 name identkey category Package -revision 49018 +revision 61719 shortdesc Typesetting bracketed dichotomous identification keys relocated 1 longdesc The package is for typesetting bracketed dichotomous longdesc identification keys. -containersize 1196 -containerchecksum b04dc4859826ad3f4fc4dd4a9b19abc0f6125d66d200519652a130c522fc6b49de8565af73f81efa9e75d592036ccca6d373a368e66526d8997dab9d8a5f806f +containersize 1132 +containerchecksum 3f41af7a6b1f253dd34c670c3726f9b5fba2849230787827f69dfffd7008ec7bdf8bf84d11e7151b9e0a47b486f60ed2e475f30ed3f6cf35d68e283ff6a9c558 doccontainersize 488 -doccontainerchecksum c676908535a4a67efd8569e81a1d3ce5a47bf7a5ec755e87e62830e370fa3307bf0d6a84f3ec7c399bca3cc365f97469393a6fc954bf83b2e2fbc9eda9983811 +doccontainerchecksum 58574d462eee30612617c9340e00e956968f04b8da292babced36016516272e4d190f06862c9bc41466c85ced264f380192c4e9376c4b0ed58e673f37efd3cd0 docfiles size=1 RELOC/doc/latex/identkey/README.md details="Readme" runfiles size=1 RELOC/tex/latex/identkey/identkey.sty catalogue-also dichokey -catalogue-contact-bugs https://gitlab.com/rj_white/latex-identkey/issues -catalogue-contact-repository https://gitlab.com/rj_white/latex-identkey catalogue-ctan /macros/latex/contrib/identkey catalogue-license gpl3 catalogue-topics biology @@ -140156,6 +146681,32 @@ catalogue-license lppl catalogue-topics index catalogue-version 0.4d +name ieeeconf +category Package +revision 59665 +shortdesc Macros for IEEE conference proceedings +relocated 1 +longdesc The IEEEconf class implements the formatting dictated by the +longdesc IEEE Computer Society Press for conference proceedings. +containersize 2524 +containerchecksum 1a0bf2fe8e019b55ac1ed72a9d428c3e90653183918f2c1ff22e9ea468cb3b3fea424fa3de2a46b9534086138f1130105672ac217ba7172354c51bbf384ba20d +doccontainersize 177420 +doccontainerchecksum a0133638d4da1822c2cc7c41052fc69d71feb89bfe0351594343166cdb217a62cb849d2a355bbaa3a12e38882ca76c94740f9f4711b42280c81a58bcc9fd17f2 +docfiles size=53 + RELOC/doc/latex/ieeeconf/IEEEconf.pdf details="Package documentation" + RELOC/doc/latex/ieeeconf/README details="Readme" +srccontainersize 12536 +srccontainerchecksum 9badadaad5c47d067054176f8c979b4472ff57db1746ec2f2adbbb39fd75856d2145e120de78e51388d064765a018a06a71bcf75f078f3a4a958754c6f565c5d +srcfiles size=11 + RELOC/source/latex/ieeeconf/IEEEconf.dtx + RELOC/source/latex/ieeeconf/IEEEconf.ins +runfiles size=2 + RELOC/tex/latex/ieeeconf/IEEEconf.cls +catalogue-ctan /macros/latex/contrib/IEEEconf +catalogue-license lppl +catalogue-topics confproc class +catalogue-version 1.4 + name ieeepes category Package revision 17359 @@ -140184,6 +146735,87 @@ catalogue-license lppl catalogue-topics journalpub catalogue-version 4.0 +name ieeetran +category Package +revision 59672 +shortdesc Document class for IEEE Transactions journals and conferences +relocated 1 +longdesc The class and its BibTeX style enable authors to produce +longdesc officially-correct output for the Institute of Electrical and +longdesc Electronics Engineers (IEEE) transactions, journals and +longdesc conferences. +containersize 89348 +containerchecksum d688e4be2d145652c16b028cccd05ec5f41a94ca190caff0c6b3fbadaa5c859516a28e4555569d072dd1d550c8794c1ddaaefecce49945284dd304938360f419 +doccontainersize 487300 +doccontainerchecksum 241119c6d2848d5f63e2afe8f1e07c263fea526c9c7ef21ecc533f27c92a67b1baf9a33122fed6ff491b2ddaddb0e02ce138164c8b9ff2f5db11d1ff802f73b8 +docfiles size=248 + RELOC/doc/latex/ieeetran/IEEEtrantools_doc.txt + RELOC/doc/latex/ieeetran/README details="Readme" + RELOC/doc/latex/ieeetran/README.TEXLIVE + RELOC/doc/latex/ieeetran/README.bibtex + RELOC/doc/latex/ieeetran/README.extras + RELOC/doc/latex/ieeetran/README.testflow + RELOC/doc/latex/ieeetran/README.tools + RELOC/doc/latex/ieeetran/bare_adv.tex + RELOC/doc/latex/ieeetran/bare_conf.tex + RELOC/doc/latex/ieeetran/bare_conf_compsoc.tex + RELOC/doc/latex/ieeetran/bare_jrnl.tex + RELOC/doc/latex/ieeetran/bare_jrnl_compsoc.tex + RELOC/doc/latex/ieeetran/bare_jrnl_comsoc.tex + RELOC/doc/latex/ieeetran/bare_jrnl_transmag.tex + RELOC/doc/latex/ieeetran/bibtex/changelog.txt + RELOC/doc/latex/ieeetran/changelog.txt + RELOC/doc/latex/ieeetran/testflow.tex + RELOC/doc/latex/ieeetran/testflow_ctl_A4.pdf + RELOC/doc/latex/ieeetran/testflow_ctl_LTR.pdf + RELOC/doc/latex/ieeetran/testflow_doc.pdf + RELOC/doc/latex/ieeetran/tools/changelog.txt + RELOC/doc/latex/ieeetran/tux.eps + RELOC/doc/latex/ieeetran/tux.pdf +runfiles size=205 + RELOC/bibtex/bib/ieeetran/IEEEabrv.bib + RELOC/bibtex/bib/ieeetran/IEEEexample.bib + RELOC/bibtex/bib/ieeetran/IEEEfull.bib + RELOC/bibtex/bst/ieeetran/IEEEtran.bst + RELOC/bibtex/bst/ieeetran/IEEEtranN.bst + RELOC/bibtex/bst/ieeetran/IEEEtranS.bst + RELOC/bibtex/bst/ieeetran/IEEEtranSA.bst + RELOC/bibtex/bst/ieeetran/IEEEtranSN.bst + RELOC/tex/latex/ieeetran/IEEEtran.cls + RELOC/tex/latex/ieeetran/IEEEtrantools.sty +catalogue-contact-home http://www.michaelshell.org/tex/ieeetran/ +catalogue-ctan /macros/latex/contrib/IEEEtran +catalogue-license lppl1.3 +catalogue-topics journalpub class +catalogue-version 1.8b + +name ieejtran +category Package +revision 65641 +shortdesc Unofficial bibliography style file for the Institute of Electrical Engineers of Japan +relocated 1 +longdesc This package provides an unofficial BibTeX style for authors of +longdesc the Institute of Electrical Engineers of Japan (IEEJ) +longdesc transactions journals and conferences. +containersize 17688 +containerchecksum 16dde97354dd4c4ff2bfbbb9ead8ce7141a253afe2ec5b39cebe3239d40827d73c83ae90e79be77c5e5a799b40dcf5a3074f2659feb5add8b62d4491097a6cf1 +doccontainersize 150936 +doccontainerchecksum 41ffd8978d9a591c4aa711c4b2f1dc73a4d18a39e67003494c4c9a86d5fd24acf40b6c79dcc139cb46a36dda96d1e0a26a7d5336683c3d7d11eb6e46765c03e9 +docfiles size=47 + RELOC/doc/bibtex/ieejtran/README details="Readme" + RELOC/doc/bibtex/ieejtran/ieejtran-en.pdf details="Package documentation (English)" + RELOC/doc/bibtex/ieejtran/ieejtran-en.tex + RELOC/doc/bibtex/ieejtran/ieejtran.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/bibtex/ieejtran/ieejtran.tex + RELOC/doc/bibtex/ieejtran/mixej.py +runfiles size=21 + RELOC/bibtex/bst/ieejtran/IEEJtran.bst +catalogue-contact-repository https://github.com/ehki/jIEEEtran +catalogue-ctan /biblio/bibtex/contrib/ieejtran +catalogue-license mit +catalogue-topics bibtex-sty japanese +catalogue-version 0.19 + name ietfbibs category Package revision 41332 @@ -140212,6 +146844,72 @@ catalogue-license mit catalogue-topics bibtex-gen catalogue-version 1.0.0 +name iexec +category Package +revision 64908 +shortdesc Execute shell commands and input their output +relocated 1 +longdesc With the help of the \iexec command, you can execute a shell +longdesc command and then input its output into your document. This +longdesc package also lets you use any special symbols inside your +longdesc command. +depend tools +depend xkeyval +containersize 2416 +containerchecksum 7e6c55383a22d2b47858e02b0d7023a7d130a089c550c0d4aa387035374ba6e0266b35a2f825e4d0bc4fb084bab42686df610f8f6f9007ff155bf7c150383cb1 +doccontainersize 331872 +doccontainerchecksum 2b55ea3e886043af3e137be5e23388d1d0311e64f695b3774d85be2305e5ea8389a4139e4b3c84989187d66066ffadeccb0d8b70a5347ecfc6dfef750d28b2ba +docfiles size=85 + RELOC/doc/latex/iexec/DEPENDS.txt + RELOC/doc/latex/iexec/LICENSE.txt + RELOC/doc/latex/iexec/README.md details="Readme" + RELOC/doc/latex/iexec/iexec.pdf details="Package documentation" +srccontainersize 5680 +srccontainerchecksum d4f8b3b253189de2e303c00c5c8e42cd539eaf7eb0cd20feff54473086056fff2e6f8be3bebc071a261c68adffa55f198505dc81df4d095f3ab2dc6932b8e7a1 +srcfiles size=5 + RELOC/source/latex/iexec/iexec.dtx + RELOC/source/latex/iexec/iexec.ins +runfiles size=2 + RELOC/tex/latex/iexec/iexec.sty +catalogue-contact-repository https://github.com/yegor256/iexec +catalogue-ctan /macros/latex/contrib/iexec +catalogue-license mit +catalogue-topics sys-supp exec-foreign +catalogue-version 0.11.4 + +name ifallfalse +category Package +revision 60027 +shortdesc Compare a string against a set of other strings +relocated 1 +longdesc This package allows you to check whether a string is contained +longdesc within another set of strings, and perform an action if it is +longdesc not. This is done by using the allfalse environment and passing +longdesc in a string and an action to be performed if the string is not +longdesc contained in the set. Then, passing in a string to the \orcheck +longdesc macro inside the respective allfalse environment adds that to +longdesc the set of strings. This package does not work with the LuaTeX +longdesc engine. +containersize 1248 +containerchecksum 2117368f9114bfe20c7fcd387c47d27d59cb2af720eb6c55f2a8254067e2dbf7be21b9081a244367d46d5deae8150f915b17431296b02de486f4147e5ade9b87 +doccontainersize 175068 +doccontainerchecksum c952a3f591c77df2b2443352783606e57ccc35d45769d1e7892b12399de5253af174a739c7283a28463536394430d0582852abb677fd87015bada501b0bde95e +docfiles size=45 + RELOC/doc/latex/ifallfalse/README.md details="Readme" + RELOC/doc/latex/ifallfalse/ifallfalse.pdf details="Package documentation" +srccontainersize 3084 +srccontainerchecksum 3070c2a5beefc8ce8b29f8216a66b5636aa71f6f68aee9734eba78e487110efa67a405ed4b87d4a550bd3fe45df3a8f3da10ae717d0c31cd98bb2465bb903bb9 +srcfiles size=3 + RELOC/source/latex/ifallfalse/ifallfalse.dtx + RELOC/source/latex/ifallfalse/ifallfalse.ins +runfiles size=1 + RELOC/tex/latex/ifallfalse/ifallfalse.sty +catalogue-contact-repository https://github.com/chennisden/ifallfalse +catalogue-ctan /macros/latex/contrib/ifallfalse +catalogue-license lppl1.3 +catalogue-topics macro-supp cond-comp +catalogue-version 2.0.0 + name iffont category Package revision 38823 @@ -140356,7 +147054,7 @@ catalogue-version 0.3 name ifoddpage category Package -revision 56291 +revision 64967 shortdesc Determine if the current page is odd or even relocated 1 longdesc The package provides an \ifoddpage conditional to determine if @@ -140366,27 +147064,28 @@ longdesc Two compiler runs are therefore required to achieve correct longdesc results. In addition, the conditional \ifoddpageoronside is longdesc provided which is also true in oneside mode where all pages use longdesc the odd page layout. -containersize 1456 -containerchecksum f56738031814ba4d980455765212f074979b95ccfe62b1661e2017a839bc774b5423f994196a23e763644d40b9842221a5c862f9b427f335f5788d34bbcb9acb -doccontainersize 134584 -doccontainerchecksum e9fdf6ca02d33a52e89046f4d648204a0e560d97e9a12aa5742971e654bdc05867460ec10cbdb5441fc66ba02d2e078007593d9c4c898f290e61965eb6111007 -docfiles size=34 - RELOC/doc/latex/ifoddpage/README details="Readme" +containersize 1440 +containerchecksum 2a750da3db6bcc2c08f4240874d57c4aee1df4fa42e695156ad08ea5c1e187061c8071f621d3cae9365f28853c44e53a94d7702ccb4972656d096ed4d1272524 +doccontainersize 144248 +doccontainerchecksum 924f08c94634f1149f8873c626c4b73cbbd2a6fba0ed28f1199b6688fd8940720643ba672d781b28f6802c1fc5dfed5928784a70436d492f4bc51c6d43006119 +docfiles size=38 + RELOC/doc/latex/ifoddpage/DEPENDS.txt + RELOC/doc/latex/ifoddpage/README.txt details="Readme" RELOC/doc/latex/ifoddpage/ifoddpage.pdf details="Package documentation" -srccontainersize 4176 -srccontainerchecksum d6e471eb7014a93a4593234f3f2c81fcd1b7a758d73bd3b659c86812304e9eb9a9a29b8a653653e4672a79f75c2399bdf30491069bdc26c0e45ce9834fd8de40 -srcfiles size=4 +srccontainersize 4600 +srccontainerchecksum 1a77f0234475293f72afad4b2db4e5b861236b30a80172460be7a4bf0b734a4a06a2f69018415b80bba11bd68bf4a36a953eaccaf11efc93698f1f779f80f071 +srcfiles size=5 RELOC/source/latex/ifoddpage/ifoddpage.dtx RELOC/source/latex/ifoddpage/ifoddpage.ins runfiles size=1 RELOC/tex/latex/ifoddpage/ifoddpage.sty -catalogue-contact-bugs https://sourceforge.net/p/ifoddpage/tickets/ -catalogue-contact-home https://sourceforge.net/p/ifoddpage/ -catalogue-contact-repository https://sourceforge.net/p/ifoddpage/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/ifoddpage/issues +catalogue-contact-home https://github.com/MartinScharrer/ifoddpage +catalogue-contact-repository https://github.com/MartinScharrer/ifoddpage.git catalogue-ctan /macros/latex/contrib/ifoddpage catalogue-license lppl1.3 catalogue-topics typesetting macro-supp -catalogue-version 1.1 +catalogue-version 1.2 name ifplatform category Package @@ -140423,28 +147122,28 @@ catalogue-version 0.4a name ifptex category Package -revision 52626 +revision 62982 shortdesc Check if the engine is pTeX or one of its derivatives relocated 1 longdesc The ifptex package is a counterpart of ifxetex, ifluatex, etc. longdesc for the ptex engine. The ifuptex package is an alias to ifptex longdesc provided for backward compatibility. -containersize 3828 -containerchecksum cd06bd01d071c091962451850de4cf78c0ed7604b392e6c0eb59fd66b202ed9f015cac75b6260bfe071b70246cb1d9a70a5bc9f052876469ace54a68ef250e22 -doccontainersize 3176 -doccontainerchecksum 6d6668a5f663aeeddd19c5f8086633d6542316807d0dbfc94e8ed1991136dc2258718e61a450dcc3c1560af3d349519ca2da98a05964741083dbb66ef85fb848 -docfiles size=3 +containersize 4016 +containerchecksum 54f4e4a1077a5f394811a4b0b08818fb17060496c7915c85dc69b55d2adcc7793f4047069b1bd067229bdd945c2e2a35f19b59d048cf242d489ab652813f5cf0 +doccontainersize 3640 +doccontainerchecksum 7e30eb1014032cd8c322ffeab692f1abb325f1890e66b1136da1e88ccfa24aa80b003f785dd899ebe7951123bb7661b6f44ff382a7b296abfac129ea55eca226 +docfiles size=4 RELOC/doc/generic/ifptex/LICENSE RELOC/doc/generic/ifptex/README-ja.md details="Readme (Japanese)" language="ja" RELOC/doc/generic/ifptex/README.md details="Readme" -runfiles size=4 +runfiles size=5 RELOC/tex/generic/ifptex/ifptex.sty RELOC/tex/generic/ifptex/ifuptex.sty catalogue-contact-repository https://github.com/zr-tex8r/ifptex catalogue-ctan /macros/generic/ifptex catalogue-license mit catalogue-topics env-query japanese -catalogue-version 2.0 +catalogue-version 2.2 name ifsym category Package @@ -140508,7 +147207,7 @@ catalogue-topics font font-mf font-symbol name iftex category Package -revision 56594 +revision 61910 shortdesc Am I running under pdfTeX, XeTeX or LuaTeX? relocated 1 longdesc The package, which works both for Plain TeX and for LaTeX, @@ -140517,11 +147216,11 @@ longdesc testing which engine is being used for typesetting. The package longdesc also provides the \RequirePDFTeX, \RequireXeTeX, and longdesc \RequireLuaTeX commands which throw an error if pdfTeX, XeTeX longdesc or LuaTeX (respectively) is not the engine in use. -containersize 3008 -containerchecksum 07e15945295e3d5c2f6a6e4087d16f1f5ca6014f2ae98bfd25a18d32efd07c4da4542676fa164ecdbe326d478b1370337577638ed2031cdb9f0b2b1961b86855 -doccontainersize 218576 -doccontainerchecksum a0497c07ddc2087b8291c9f017101950bb774ae387db082497b859491e38d4fe22d7f69ee9bc093ee9d70d7b67796fdbe643b76322f5fa3577aba5733c7aa105 -docfiles size=56 +containersize 3132 +containerchecksum ac7958c10c0cd5ee3a82273632445423c347bc9c5fc2015b97fdb7018d7a07b7e1316761698973b325314e945fba6c86be0dd49e058ecf74a55ccf2b9df8774f +doccontainersize 228940 +doccontainerchecksum d51b452532fcffce4b1078ab26396bc4f8739e2c3025917b4ce88af2e5aecfbe0a54e481f1683afe2d25259c6f73e27be8f257beb1b599f9817dc37df427fd70 +docfiles size=60 RELOC/doc/generic/iftex/README.md details="Readme" RELOC/doc/generic/iftex/iftex.pdf details="Package documentation" RELOC/doc/generic/iftex/iftex.tex @@ -140538,7 +147237,7 @@ catalogue-contact-repository https://github.com/latex3/iftex catalogue-ctan /macros/generic/iftex catalogue-license lppl1.3c catalogue-topics env-query macro-gen -catalogue-version 1.0d +catalogue-version 1.0f name ifthenx category Package @@ -140816,7 +147515,7 @@ catalogue-version 1.3e name imfellenglish category Package -revision 38547 +revision 64568 shortdesc IM Fell English fonts with LaTeX support relocated 1 longdesc Igino Marini has implemented digital revivals of fonts @@ -140825,26 +147524,30 @@ longdesc Oxford and Dean of Christ Church in 1686. This package provides longdesc the English family, consisting of Roman, Italic and Small-Cap longdesc fonts. execute addMap imfellEnglish.map -containersize 2947156 -containerchecksum 99dcc3e48c55b402adb5e5481615a35f4d6ecc535cf68ac95b223e13bedd8edfad2dcb2d6ce99712646b52d384e02a1500f333823a343d887f87fbed44a06ccc -doccontainersize 143264 -doccontainerchecksum 3ae58fa270354ab028a4cfbd6d23ba12a9969073f28db5ce2de4888af2ec70a904767dfe692ff7ef657e5ce13747e7a2602856b0ee4cc92db87ac8e2f4a9e635 +containersize 3095296 +containerchecksum 59c575a0c08ea995ebdf871c627734e47d48de927f3176f7ebfe54fc9f73d0a026159ac75e5673b180ac3cd5b8af9bc59aecc9879ee1a30084609c3d5828ede9 +doccontainersize 143300 +doccontainerchecksum ca9e465e985ad5568713c5cd79f4b6d8b0474ecff9e35356bb2c88cbd6e71e451c44cd9e407bf0e8b15b4267d44bfce2a64fcc052a7f4be662b560695c34a865 docfiles size=38 RELOC/doc/fonts/imfellenglish/COPYING RELOC/doc/fonts/imfellenglish/README details="Readme" RELOC/doc/fonts/imfellenglish/imfellEnglish.pdf details="Package documentation" RELOC/doc/fonts/imfellenglish/imfellEnglish.tex -runfiles size=1431 +runfiles size=1508 RELOC/fonts/enc/dvips/imfellenglish/imfe_5cupvv.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_cycd4j.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_dc7pev.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_fhc46f.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_5k4rzj.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_5vh7x2.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_6clpkg.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_f45kxn.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_mwjp4u.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_o7go57.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_q75qgb.enc RELOC/fonts/enc/dvips/imfellenglish/imfe_qauovj.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_s6atnx.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_uut767.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_wnjo6u.enc - RELOC/fonts/enc/dvips/imfellenglish/imfe_zxj6gt.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_smj6bz.enc + RELOC/fonts/enc/dvips/imfellenglish/imfe_srzjep.enc RELOC/fonts/map/dvips/imfellenglish/imfellEnglish.map + RELOC/fonts/opentype/iginomarini/imfellenglish/FeFlow1.otf + RELOC/fonts/opentype/iginomarini/imfellenglish/FeFlow2.otf RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENit28P.otf RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENrm28P.otf RELOC/fonts/opentype/iginomarini/imfellenglish/IMFeENsc28P.otf @@ -140854,6 +147557,15 @@ runfiles size=1431 RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--base.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1--lcdfj.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ly1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ot1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-t1--lcdfj.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-t1.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--base.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1--lcdfj.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.tfm @@ -140870,14 +147582,12 @@ runfiles size=1431 RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1--base.tfm RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1--base.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1--base.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1--base.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1--base.tfm - RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ly1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ot1.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-t1.tfm RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Italic.pfb RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_ItalicLCDFJ.pfb RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_Roman.pfb @@ -140885,16 +147595,18 @@ runfiles size=1431 RELOC/fonts/type1/iginomarini/imfellenglish/IM_FELL_English_SC.pfb RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ly1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-swash-t1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-t1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Italic-tlf-ts1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ly1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ot1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-t1.vf RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_Roman-tlf-ts1.vf - RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ly1.vf - RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ot1.vf - RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-t1.vf - RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-ts1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ly1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-ot1.vf + RELOC/fonts/vf/iginomarini/imfellenglish/IM_FELL_English_SC-tlf-sc-t1.vf RELOC/tex/latex/imfellenglish/LY1IMFELLEnglish-TLF.fd RELOC/tex/latex/imfellenglish/OT1IMFELLEnglish-TLF.fd RELOC/tex/latex/imfellenglish/T1IMFELLEnglish-TLF.fd @@ -141170,7 +147882,7 @@ catalogue-version 1.7 name incgraph category Package -revision 36500 +revision 60810 shortdesc Sophisticated graphics inclusion in a PDF document relocated 1 longdesc The package provides tools for including graphics at the full @@ -141180,17 +147892,18 @@ longdesc documents that require inclusion of (potentially many) scans or longdesc photographs. Bookmarking is especially supported. The tool box longdesc has basic macros and a 'convenience' user interface that wraps longdesc \includegraphics. -containersize 4204 -containerchecksum 9a063a51c77ec55136a60a7ffaa259f7c8e2fbc9c71dc2d5240f125be50fc246e2a1d1a6c3379aacc044ad0eb7a754dc27a6445bd12fd63c3d5b2929cdacc133 -doccontainersize 1079708 -doccontainerchecksum 1a1be60ab0ee587095ad6e2c74ce356292ce454f3a40fa96e5fab7d48da52b98cabfe9826235b3afae679baeea1b23e5c4fb4d7a4b00279ce0433568a9cf3108 -docfiles size=575 - RELOC/doc/latex/incgraph/CHANGES - RELOC/doc/latex/incgraph/README details="Readme" +containersize 4976 +containerchecksum 06c7228e1ef4d760f6d7b1d308d4946eef7a55a60ff39bba6bdc6a96407cb6fab9f47dfd2c26f37d4f674d815e0ab7196badf2590638e214c980d26343a6bd55 +doccontainersize 1111764 +doccontainerchecksum 3e37591fd1c239d2feb262434a5782be0160104392f6b6c2f330aa30d8e8af5905694a125d29045b403239d67952bb88d1194a1d1e61194e82426405fa11c772 +docfiles size=585 + RELOC/doc/latex/incgraph/CHANGES.md + RELOC/doc/latex/incgraph/README.md details="Readme" RELOC/doc/latex/incgraph/exaimage-0001.png RELOC/doc/latex/incgraph/exaimage-0037.png RELOC/doc/latex/incgraph/exaimage-0123.png RELOC/doc/latex/incgraph/example.jpg + RELOC/doc/latex/incgraph/incgraph-doc.sty RELOC/doc/latex/incgraph/incgraph-example-a.pdf RELOC/doc/latex/incgraph/incgraph-example-a.tex RELOC/doc/latex/incgraph/incgraph-example-b.pdf @@ -141199,13 +147912,13 @@ docfiles size=575 RELOC/doc/latex/incgraph/incgraph-example-c.tex RELOC/doc/latex/incgraph/incgraph.pdf details="Package documentation" RELOC/doc/latex/incgraph/incgraph.tex -runfiles size=4 +runfiles size=6 RELOC/tex/latex/incgraph/incgraph.sty catalogue-also graphicx catalogue-ctan /macros/latex/contrib/incgraph catalogue-license lppl1.3 catalogue-topics graphics-incl -catalogue-version 1.12 +catalogue-version 1.2.0 name includernw category Package @@ -141788,17 +148501,17 @@ catalogue-version 1.0 name inline-images category Package -revision 54080 +revision 61719 shortdesc Inline images in base64 encoding relocated 1 longdesc The package provides a command \inlineimg to dynamically create longdesc a file containing the inline image in base64 format, which is longdesc decoded and included in the source file. Requirements LaTeX longdesc must be run with option --shell-escape. Program base64. -containersize 796 -containerchecksum 7706dce6a4c0a6dd9b3222d296654c974ee3d6265ab5baeea762c708863f45d7f351158b04075f4365de5a5913fd9cdae5e777ddea69e19d7feb4067491d6515 -doccontainersize 123068 -doccontainerchecksum 1c24afd0757ca9b9a0cee81192498b15a250994ebf45dc1ad4e26800a1266cad6536c922e97b11999a6b2999ec8ab111de0ff8de46baead06510d2de2296f737 +containersize 760 +containerchecksum 8cb6a0ba51ddbc06a795dc21c40ca4f18921fa978cf17254aed279e85e769b29e7dd6a0266738e5f52e22bfed87599e6b2099bb04aa656397f04d6d51722c56d +doccontainersize 123072 +doccontainerchecksum ce56e90e90da8ed441213eaedaee7bc388714248547524701ad49021899ef439ae78884ad1de6e60cd06b5916649403d75ea7fda051fd3b87e89bfead9ccdf10 docfiles size=37 RELOC/doc/latex/inline-images/README.md details="Readme" RELOC/doc/latex/inline-images/examples/example.pdf @@ -141806,8 +148519,6 @@ docfiles size=37 RELOC/doc/latex/inline-images/screenshots/example.jpg runfiles size=1 RELOC/tex/latex/inline-images/inline-images.sty -catalogue-contact-bugs https://mrw.dev/templates/inline-images/issues -catalogue-contact-home https://mrw.dev/templates/inline-images catalogue-ctan /macros/latex/contrib/inline-images catalogue-license lgpl3 catalogue-topics image-supp @@ -141876,6 +148587,30 @@ catalogue-license lppl catalogue-topics macro-def catalogue-version 1.0 +name inlinelabel +category Package +revision 63853 +shortdesc Assign equation numbers to inline equations +relocated 1 +longdesc This package can assign equation numbers to inline equations. +longdesc When Japanese is supported, you can switch to circled equation +longdesc numbers. +containersize 1236 +containerchecksum 66d105c71bd5896019ec584a4ca0a26fadadd8d922be95ec7c8e0ee8f9b5a265304359a19ad77036e8bc885ec0e786e03ee8e1edb72addd1adb5d064eb40ab08 +doccontainersize 158132 +doccontainerchecksum 0d70c8f7d7b9f022444c95657b3ecef395790ca80697511e8ebcef975ae19edbfc43abb223bed03888943203e870e8732cfb37f2f07e0e4e2575b8e2d495f8ce +docfiles size=44 + RELOC/doc/latex/inlinelabel/README.md details="Readme" + RELOC/doc/latex/inlinelabel/inlinelabel.pdf details="Package documentation" + RELOC/doc/latex/inlinelabel/inlinelabel.tex +runfiles size=1 + RELOC/tex/latex/inlinelabel/inlinelabel.sty +catalogue-contact-home https://www.metaphysica.info/technote/package_inlinelabel/ +catalogue-ctan /macros/latex/contrib/inlinelabel +catalogue-license mit +catalogue-topics label-ref +catalogue-version 1.2.1 + name innerscript category Package revision 57672 @@ -141972,6 +148707,36 @@ catalogue-license lppl1.3 catalogue-topics inputenc catalogue-version 1.12 +name inputnormalization +category Package +revision 59850 +shortdesc Wrapper for XeTeX's and LuaTeX's input normalization +relocated 1 +longdesc This package provides a cross engine interface to normalizing +longdesc input before it's read by TeX. It is based on XeTeX's +longdesc \XeTeXinputnormalization primitive and lua-uni-algos for +longdesc LuaTeX. +containersize 1448 +containerchecksum ea1b93d71757875867fb9d899399ad5cf95d2a0560b3caf2569d08480f4d65dcf4a963632dd27b1e28674a9b5c6496f769c17ae08494a6c37ca2d0e6a8fd8f04 +doccontainersize 99064 +doccontainerchecksum ade22bfe8534389f117f0f99dfefd7e27f84ad653419929ab86ab045ff08c1d08952178c6c8d42b3b22d575e371ad4b77c2efda436e4b8ff89dad2bcb67c7d65 +docfiles size=27 + RELOC/doc/latex/inputnormalization/README.md details="Readme" + RELOC/doc/latex/inputnormalization/inputnormalization.pdf details="Package documentation" + RELOC/doc/latex/inputnormalization/inputnormalization.tex + RELOC/doc/latex/inputnormalization/plain.pdf +srccontainersize 2888 +srccontainerchecksum 048bcdc198cb028863f2f3f30366ab209f18fa2d3f76cf42ebd795cf34d92734e617fdd7412c3f5e43127a4853f1f2b3fe928c8cd554b5e5fde430b5c9170d47 +srcfiles size=2 + RELOC/source/latex/inputnormalization/inputnormalization.dtx +runfiles size=1 + RELOC/tex/latex/inputnormalization/inputnormalization.sty +catalogue-contact-repository https://github.com/zauguin/inputnormalization +catalogue-ctan /macros/unicodetex/generic/inputnormalization +catalogue-license lppl1.3 +catalogue-topics unicode luatex xetex +catalogue-version 0.2 + name inputtrc category Package revision 28019 @@ -142915,7 +149680,7 @@ catalogue-version 2.2 name install-latex-guide-zh-cn category Package -revision 59037 +revision 65434 shortdesc A short introduction to LaTeX installation written in Chinese relocated 1 longdesc This package will introduce the operations related to @@ -142924,10 +149689,10 @@ longdesc macro packages, and compiling simple documents on Windows 10, longdesc Ubuntu 20.04, and macOS systems, and mainly introducing command longdesc line operations. containersize 568 -containerchecksum 25689f4a96ff97c4790dca455abe2230d5d98f58a0deabb2f8d665d44c9a0a88ad336ace256d830d051a1e796f17da13a14f5f75f5acfb28148ded82658b0dc8 -doccontainersize 766856 -doccontainerchecksum d54c0f575208ba36bdc4d5281e3822816ec65c393caa0d8f3cdbcdcfd6236ea2a10509257690e0c62302c84f7330c91966cedc42a197bda584f2bc84f36f5aa9 -docfiles size=219 +containerchecksum a091341f588222b1a4301eff95afffe8d89c11818790e9a82a3a3f1e7d75601d9ae2c3ede562449938a32f29ec61efebff97467a5fae5140849d737895335d74 +doccontainersize 809336 +doccontainerchecksum 2fe37d8e3ba7d4b36e2e8936ba30112422d5ddeacc13861fa47727e17a35466f395b06648b67a9eb54f59ee111a1c8324a8ec41f5cdcaa7396b8867a4636d4b4 +docfiles size=231 RELOC/doc/latex/install-latex-guide-zh-cn/LICENSE RELOC/doc/latex/install-latex-guide-zh-cn/README.md details="Readme" RELOC/doc/latex/install-latex-guide-zh-cn/appendix/mirror.tex @@ -142949,7 +149714,7 @@ catalogue-contact-repository https://github.com/OsbertWang/install-latex-guide-z catalogue-ctan /info/install-latex-guide-zh-cn catalogue-license lppl1.3c catalogue-topics chinese-doc tutorial -catalogue-version 2021.5.1 +catalogue-version 2023.1.1 name installfont category Package @@ -143020,15 +149785,6 @@ containerchecksum 3b934098ba81fbb081b1b6cfdfa62a75b8a54554ceebe571e1f87fefdba2d9 binfiles arch=armhf-linux size=1 bin/armhf-linux/installfont-tl -name installfont.i386-cygwin -category Package -revision 19743 -shortdesc i386-cygwin files of installfont -containersize 344 -containerchecksum 8bf8465984adcca84b8c033b2a0d5e053181c2f00ac213de99fd5d5e1726c56a95bbc8aa358dd196c6fc39734b19ad576ccb2b2b08a149420931d11208d96f22 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/installfont-tl - name installfont.i386-freebsd category Package revision 19743 @@ -143074,14 +149830,14 @@ containerchecksum c2083fb0357543aa6337730aadf79770213b07de92eeadcfa9dc9f9c31182c binfiles arch=universal-darwin size=1 bin/universal-darwin/installfont-tl -name installfont.win32 +name installfont.windows category Package -revision 33638 -shortdesc win32 files of installfont -containersize 916 -containerchecksum b16958e96bedede2c07a90488c55de416b1f57da9f86b77878c8720a5fcce35a14c488da27d5c261bb93d5125898791c0ac188138c30d295955c28e20da7510a -binfiles arch=win32 size=1 - bin/win32/installfont-tl.exe +revision 65891 +shortdesc windows files of installfont +containersize 2524 +containerchecksum 493a7e3de35ffbd6f006bd02659d0f4c5095cb98556b89ffd0c6d29594c094960d347e9e72093cafe4a42e4a0cc54ce9f74a8dc789e1a1328f55420d49b3ee9a +binfiles arch=windows size=2 + bin/windows/installfont-tl.exe name installfont.x86_64-cygwin category Package @@ -144610,20 +151366,20 @@ catalogue-version 0.4 name intopdf category Package -revision 58743 +revision 63987 shortdesc Embed non-PDF files into PDF with hyperlink relocated 1 longdesc The package allows to embed non-PDF files (e.g., BibTeX) into longdesc PDF with a hyperlink. -containersize 1360 -containerchecksum 555c9e4c98c5d123afd706ecd02b9983406268ccbe32cb06f1072a08d5b4d035aa76ac1cdfb94015b02458405cb95f175ef719a477be593318dff2f1b1e2c0f9 -doccontainersize 379136 -doccontainerchecksum dc4524ac96a3d29ad898e9bf9c34ec3d32716eb3ef9c7da217180ead49f9926883a2a26116b1f7a18635094576e93f6bf1b5110002f14674dec19d26e37da0ce +containersize 1372 +containerchecksum 77477057b8c49400059eb2ec0ed1ec6ab8c5b80ad661871c5b179af60abd0a5904ccd1faf045951d83e29aec560a77188c8468cb9f854ed28676ce52c3bbbd83 +doccontainersize 380176 +doccontainerchecksum 07abc35842c8170da6763d070180f63505ce5fcc98ec9966b3e0b7502191ad267b4b6b0a9bbc6fe1fe037b0eb6e249c9ba9080669abeaaadfaa6be26ea86e5f7 docfiles size=94 RELOC/doc/latex/intopdf/README.md details="Readme" RELOC/doc/latex/intopdf/intopdf.pdf details="Package documentation" -srccontainersize 2388 -srccontainerchecksum 75b6ee9b8b878cfe666d9d73c68a7445a6ab1520515bf6e353d2b27e0b388b28e36ef4508892eaa9647441ee988a1e8607a6dcb94dc356c34ae1e7ae986fad45 +srccontainersize 2444 +srccontainerchecksum ab22656c6f47d03fd416e7340438a1c57e9ec1bcf360ec3224aa7c37859b1210807c3ba7b94d9fcf7e4a6878c9874332d3bd030cb7e1baf3f05f10077169d75b srcfiles size=2 RELOC/source/latex/intopdf/intopdf.dtx runfiles size=1 @@ -144632,7 +151388,7 @@ catalogue-contact-repository https://github.com/zauguin/intopdf catalogue-ctan /macros/latex/contrib/intopdf catalogue-license lppl1.3c catalogue-topics hyper pdf-feat -catalogue-version 0.4.0 +catalogue-version 0.4.1 name intro-scientific category Package @@ -144930,15 +151686,15 @@ catalogue-version 2.1 name ipaex category Package -revision 52032 +revision 61719 shortdesc IPA (Japanese) fonts relocated 1 longdesc The fonts provide fixed-width glyphs for Kana and Kanji longdesc characters, proportional width glyphs for Western characters. -containersize 15865216 -containerchecksum c15157c117594f670a5779bc33e1cac043fda730e2b7a95d781470da2f42075e387d2a939976d469f1b0d05804b2907a7daf7ddb7d9f45074239c6893d89c21f -doccontainersize 7480 -doccontainerchecksum 04fca8414689b3b828937ba46767415b3b2de1a4cbc87ae95f790aee4bc82b658c1ff0ff705bea0c45952589693cb357cdf00c1721722d7c340a32f502d3b961 +containersize 15865176 +containerchecksum dec0527223fdb0f897ccf54e96691cd68b933ac61de4c036e21fd35bff93d32766444fe6971492ce64328f92621bd2949ebb669ab33b6b6f4ede88280351292d +doccontainersize 7484 +doccontainerchecksum c53cf11bc81d9a8f5aa19c264a1970d4819400ceaffa20b688d0709546113f932b82b6b6d12cf9fb31b2a3d2c0d45b6b33ee3cb3bd0060c961360389839b1475 docfiles size=8 RELOC/doc/fonts/ipaex/IPA_Font_License_Agreement_v1.0.txt RELOC/doc/fonts/ipaex/README details="Readme" @@ -144952,7 +151708,6 @@ runfiles size=10380 RELOC/fonts/truetype/public/ipaex/ipam.ttf RELOC/fonts/truetype/public/ipaex/ipamp.ttf catalogue-also ipaex-type1 -catalogue-contact-home http://ipafont.ipa.go.jp/ catalogue-ctan /fonts/ipaex catalogue-license other-free catalogue-topics font font-ttf japanese @@ -147089,7 +153844,7 @@ catalogue-version 2.28 name isodoc category Package -revision 57811 +revision 59709 shortdesc A LaTeX class for typesetting letters and invoices relocated 1 longdesc The isodoc class can be used for the preparation of letters and @@ -147098,15 +153853,15 @@ longdesc set up with options, thus making the class easily adaptable to longdesc user's wishes and extensible for other document types. The longdesc class is based on the NTG brief class by Victor Eijkhout, which longdesc implements the NEN1026 standard. -containersize 9308 -containerchecksum b26c7f3b87f4892f6f3c31f62225b43918be6e168dbb85d287fa708069d9560312d00bff1198842ade1a0a542da59dfd5d802d59ba6f62cc1dd15ce75ecde015 -doccontainersize 838216 -doccontainerchecksum 11cc576322712103511c3025524fe068a3f011e726a2335051ec6eece18a6217931071ccae412ee46148d4665cc3526b0a91fc66f4455ddfdae7af9974ae5959 -docfiles size=214 +containersize 9320 +containerchecksum 5bdd4158aa30923d2f06513dd2f1a729077eef05f8f6e068c1e376f931558b9ad786eea871396ca3d16778692f010bc39f25da3993c74776bd746ed5355fc0e4 +doccontainersize 776800 +doccontainerchecksum ebf8ac1221592472837590973700603e0cef6b459dae92cc28ba751f5c3c0c49a686b4224c83502b09cec26ba306e44fc00f19b0f9e9c83b26f582a9923f76dd +docfiles size=200 RELOC/doc/latex/isodoc/README.md details="Readme" RELOC/doc/latex/isodoc/isodoc.pdf details="Package documentation" -srccontainersize 472076 -srccontainerchecksum a56610f50bf8e9286e04f8d505158dc2d4838731e667279728edc5e46cb92ced25c4a23b02b6c0cdfd4830fb09d093ed1c87b6292a2917ca5b8d212317b59e3e +srccontainersize 472020 +srccontainerchecksum 9240f497398b77b6633f5be4040d13053abe51d64189e6678beccc1110f9e97b24422105bb3a552ade1f33c1af3ca2f8941b5c86548fbf7885a799fa69345b90 srcfiles size=176 RELOC/source/latex/isodoc/Makefile RELOC/source/latex/isodoc/isodoc.dtx @@ -147116,7 +153871,7 @@ runfiles size=11 catalogue-ctan /macros/latex/contrib/isodoc catalogue-license lppl1.3c catalogue-topics letter invoice class -catalogue-version 1.12 +catalogue-version 1.14 name isomath category Package @@ -147294,7 +154049,7 @@ catalogue-version 1.1 name istgame category Package -revision 49848 +revision 62946 shortdesc Draw Game Trees with TikZ relocated 1 longdesc This LaTeX package provides macros based on TikZ to draw a game @@ -147306,22 +154061,22 @@ longdesc 'great-grandchildren'). Using this package you can draw a game longdesc tree as easily as drawing a game tree with pen and paper. This longdesc package depends on expl3, TikZ, and xparse. The 'ist' prefix longdesc stands for "it's a simple tree" or "In-Sung's simple tree." -containersize 18008 -containerchecksum 3380e604bb3153d94ed21ca3c5fa16bcf0d81ff3ff878a3f19ee3f1beea0ab32185ea9d8b0118eaddfb15e483d040bbc5f915ab7bd3033978518fd30aeb5f609 -doccontainersize 751764 -doccontainerchecksum 9838728c32479b6a1229d2f9e9755209c07520bd691452bfba81a62f21ba929237bc916c5f49523610516aec6c054d080086c82be277eedd5fe4b0006b4be8e5 -docfiles size=250 +containersize 18292 +containerchecksum 40ea41a683ecff33942fb3287f57489079be48eb5e7512b04f5b7038da34bf9daeb523b9d15325444f27493119d2258302838b4a44becc7dad205504064cb5da +doccontainersize 857172 +doccontainerchecksum 275d45c62d3e140b5a292e0499c555716a43ed4cd06c69c59edc49b0e832371d39b320de954452226dcdabce7a140a622f3d3d1e8acb69fdd4aa0c62b39fe0f4 +docfiles size=280 RELOC/doc/latex/istgame/README.txt details="Readme" - RELOC/doc/latex/istgame/istgame-doc-v2.0.tex + RELOC/doc/latex/istgame/istgame-doc-v2.1.tex RELOC/doc/latex/istgame/istgame-doc.pdf details="Package documentation" RELOC/doc/latex/istgame/istgame-doc.tex RELOC/doc/latex/istgame/istgame.ist -runfiles size=29 +runfiles size=30 RELOC/tex/latex/istgame/istgame.sty catalogue-ctan /graphics/pgf/contrib/istgame catalogue-license lppl1.3c -catalogue-topics pgf-tikz games tree -catalogue-version 2.0 +catalogue-topics pgf-tikz games tree expl3 +catalogue-version 2.1 name itnumpar category Package @@ -148049,40 +154804,40 @@ catalogue-topics font font-mf font-novelty name jacow category Package -revision 50870 -shortdesc The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org +revision 63060 +shortdesc A class for submissions to the proceedings of conferences on JACoW.org relocated 1 longdesc The jacow class is used for submissions to the proceedings of longdesc conferences on Joint Accelerator Conferences Website (JACoW), longdesc an international collaboration that publishes the proceedings longdesc of accelerator conferences held around the world. -containersize 6216 -containerchecksum 11cdae5bd4387f11e30200f72ebca29a0c19c61a44570fd02de40dfffe1b7578defadb15eef1b7e9d06d5f394f816ab8a5f46994b3a225be446c693dd23796d1 -doccontainersize 1131916 -doccontainerchecksum 6872a79aacf4a59ab408fac511604a596c40ad8dc991d0519afd75590a1e3b06ab24c3b7ad33eb4a8447e14094fb34e64d52cea75fd4d41b2ef1e600b4d12d6b -docfiles size=712 +containersize 7464 +containerchecksum 7482562b56521fbb70325ad3b633ebfc82165d65149dd85b89697ff9b5941f580f43e42da9775c659fa4fceb8a2908a200258dc31162b013ad8a207b88a5152f +doccontainersize 264036 +doccontainerchecksum b53a0cdf5c3fe1eedeacbb438fbb453f844eff9c669946963e18c0c787aac744307d51804327dfbfebba1f88332dc01c40c43d3a4a50b5d2c9c8a0bf67840dd9 +docfiles size=161 RELOC/doc/latex/jacow/JACoW_LaTeX_A4.pdf details="Package documentation" RELOC/doc/latex/jacow/JACoW_LaTeX_A4.tex RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.pdf RELOC/doc/latex/jacow/JACoW_LaTeX_Letter.tex - RELOC/doc/latex/jacow/JACpic2.jpg RELOC/doc/latex/jacow/JACpic_mc.pdf RELOC/doc/latex/jacow/README details="Readme" + RELOC/doc/latex/jacow/TeamMeeting2019.jpg RELOC/doc/latex/jacow/annexes-A4.tex RELOC/doc/latex/jacow/annexes-Letter.tex RELOC/doc/latex/jacow/jacow-collaboration.pdf RELOC/doc/latex/jacow/jacow-collaboration.tex -runfiles size=5 +runfiles size=6 RELOC/tex/latex/jacow/jacow.cls -catalogue-contact-home http://www.jacow.org/Authors/LaTeX +catalogue-contact-home https://www.jacow.org/Authors/LaTeX catalogue-ctan /macros/latex/contrib/jacow catalogue-license lppl1.3c catalogue-topics confproc -catalogue-version 2.4 +catalogue-version 2.7 name jadetex category Package -revision 57186 +revision 63654 shortdesc Macros supporting Jade DSSSL output longdesc Macro package on top of LaTeX to typeset TeX output of the Jade longdesc DSSSL implementation. @@ -148102,6 +154857,7 @@ depend etexcmds depend everyshi depend fancyhdr depend firstaid +depend gettitlestring depend graphics depend graphics-cfg depend graphics-def @@ -148130,6 +154886,7 @@ depend pdfescape depend pdftex depend pdftexcmds depend psnfss +depend refcount depend rerunfilecheck depend stmaryrd depend symbol @@ -148143,12 +154900,12 @@ depend uniquecounter depend url depend wasysym depend zapfding -execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding -execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding -containersize 29900 -containerchecksum 985e1ed14e5db0a23e9be510e5a52456fdf07ff8c8746add0d1123fa8b8684b3a0c5d9e99e06aa193c667ffa2dd648419d4359a75685d6514e81b9ef0d92ff22 -doccontainersize 31792 -doccontainerchecksum bf83fb4dc700f10050d34905197a630f8de75a6a27146188efc254b831ad0d68cc873b610f7457a3dc1140a10793aa05c567749efc38225089014df99fc2c895 +execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,gettitlestring,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,refcount,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding +execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,amsfonts,auxhook,bigintcalc,bitset,colortbl,cyrillic,dehyph,ec,etexcmds,fancyhdr,gettitlestring,graphics,graphics-cfg,graphics-def,hycolor,hyperref,hyph-utf8,iftex,infwarerr,intcalc,kvdefinekeys,kvoptions,kvsetkeys,latex,latexconfig,letltxmacro,ltxcmds,marvosym,passivetex,pdfescape,pdftexcmds,psnfss,refcount,rerunfilecheck,stmaryrd,symbol,tipa,tools,ulem,uniquecounter,url,wasysym,zapfding +containersize 29924 +containerchecksum 75b9c8be4f87b51798826f5ea070ff9877e8bfa2fbee5112972e9e0fc81a76dcb7081c2fe9eed645f53a38dd85443dfdb394004b2970c2ff5a91b32dc1cab909 +doccontainersize 31788 +doccontainerchecksum f70f85a12d730fc9dfb29da57a6f95239c10aa8ba7b9453ae884cae81399609fb99ccac3bfbc41f0c5f360ef80bd3f78b2f8479a826412bf573e9c5336d7e8ca docfiles size=34 texmf-dist/doc/man/man1/jadetex.1 texmf-dist/doc/man/man1/jadetex.man1.pdf @@ -148167,7 +154924,7 @@ docfiles size=34 texmf-dist/doc/otherformats/jadetex/base/releasenotes.dsl texmf-dist/doc/otherformats/jadetex/base/releasenotes.xml srccontainersize 19312 -srccontainerchecksum 63bf7f94983a971833e1e1b7d33afdf684d83117e4ce846334952176641b45acfe0c18b2fe983c2f24d98e68e91469560c2c10582d53015d069802a38066280f +srccontainerchecksum 180798c7f61cfd56cef3b98f25dec39b4062b636297e60bfdf96c925f295a256e19fd25bdb8f18794db31d586234cf7c4d22989cd901d51bdaf6c3b8002e73ae srcfiles size=21 texmf-dist/source/jadetex/base/Makefile texmf-dist/source/jadetex/base/jadetex.dtx @@ -148225,16 +154982,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/jadetex bin/armhf-linux/pdfjadetex -name jadetex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of jadetex -containersize 340 -containerchecksum f3813825129ab1e57fed8908e9cd42d631473f8486ca7c4013120a1b4f8e0cd680e1b7da99d9f9b0c3dddb4e7e9f2a6eda27aa853f3bbcc100becf1625a10878 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/jadetex - bin/i386-cygwin/pdfjadetex - name jadetex.i386-freebsd category Package revision 16472 @@ -148285,15 +155032,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/jadetex bin/universal-darwin/pdfjadetex -name jadetex.win32 +name jadetex.windows category Package -revision 57883 -shortdesc win32 files of jadetex -containersize 880 -containerchecksum 07c9d4a9fa1dc06963b62d015c758dd673d0f81a043390c83ea6b7c85052237d0c557835aaa1eb6ab3484208c7c788c49b29ccc19efb60935ccd4452a15da5fc -binfiles arch=win32 size=2 - bin/win32/jadetex.exe - bin/win32/pdfjadetex.exe +revision 65891 +shortdesc windows files of jadetex +containersize 2384 +containerchecksum b2a1d7340dd4ceb0a2d9c33eadb79e9dd64ba7562dd4b056ad83338859d5c3672c9474abf08f62aca20cb22b667d1e4aefd94fd781a362d28285c10b81b6718d +binfiles arch=windows size=4 + bin/windows/jadetex.exe + bin/windows/pdfjadetex.exe name jadetex.x86_64-cygwin category Package @@ -148479,9 +155226,37 @@ catalogue-license other-free catalogue-topics font-supp catalogue-version 1.12 +name japanese-mathformulas +category Package +revision 64678 +shortdesc Compiling basic math formulas in Japanese using LuaLaTeX +relocated 1 +longdesc This is a style file for compiling basic maths formulas in +longdesc Japanese using LuaLaTeX. \NewDocumentCommand allows you to +longdesc specify whether the formula should be used within a sentence or +longdesc on a new line. The main packages used in +longdesc japanese-mathformulas.sty are amsmath, amssymb, siunitx, +longdesc ifthen, xparse, TikZ, mathtools, and graphics. +containersize 22132 +containerchecksum 35245333f0ad08ba0772aff54e5ed1b252ad1b1d298c55934ade4a0e33dec29fc67adfebcce22f10b61b9469a2a2d208c4b9977519271457f1538c4bba8bce24 +doccontainersize 698872 +doccontainerchecksum cfa07138896028186773970685309030f587fc39f95b2fb0d993e2827a124ae4172acc91f9276ae65b32fdc614cd9525d557505b2f1fc11750a982a5c9cebb42 +docfiles size=195 + RELOC/doc/lualatex/japanese-mathformulas/README.txt details="Readme" + RELOC/doc/lualatex/japanese-mathformulas/japanese-mathformulas-sample.pdf details="Example of use" language="ja" + RELOC/doc/lualatex/japanese-mathformulas/japanese-mathformulas-sample.tex + RELOC/doc/lualatex/japanese-mathformulas/japanese-mathformulas.pdf details="Package documentation" language="ja" + RELOC/doc/lualatex/japanese-mathformulas/japanese-mathformulas.tex +runfiles size=48 + RELOC/tex/lualatex/japanese-mathformulas/japanese-mathformulas.sty +catalogue-ctan /macros/luatex/latex/japanese-mathformulas +catalogue-license lppl1.3c +catalogue-topics maths japanese luatex +catalogue-version 1.0.2 + name japanese-otf category Package -revision 57826 +revision 66091 shortdesc Advanced font selection for platex and its friends relocated 1 longdesc The package contains pLaTeX support files and virtual fonts for @@ -148491,24 +155266,57 @@ execute addKanjiMap otf-@jaEmbed@.map execute addKanjiMap otf-ko-@koEmbed@.map execute addKanjiMap otf-sc-@scEmbed@.map execute addKanjiMap otf-tc-@tcEmbed@.map -containersize 207068 -containerchecksum 09c4a30bf8ea079119cbc094eb21591e8402b5364e4a497abaa2048278b0a54322f012c7bed44b4a5b30eff44cdb360be66d8271d8e6fd22dc92622862693f47 -doccontainersize 12328 -doccontainerchecksum 92f23d5d376451a6103183e6924328432e3e983577a98f8a911da5cf2421baaffaf617065c48c339bdd0a33868976c55ba2a8b254f3f0a3d7d8a85414495c902 -docfiles size=16 +execute addKanjiMap otf-up-@jaEmbed@.map +containersize 244436 +containerchecksum 04ad5535d2338bd433198aa496637d5d18e3f87535001b452d0d5236fbe9e02f99ff604164fdf3b7339c8958fd00e56d19b08eb0ffccf5249803dbade1d9bddb +doccontainersize 37812 +doccontainerchecksum 5d2613cc87a3eb59f897c8db1ba183229bdacf77a8bd69773f94f17a6df7976baee9168576275697c47af2326d5a8398674b46875005f39f47a06a0ff4168bc0 +docfiles size=84 RELOC/doc/fonts/japanese-otf/COPYRIGHT + RELOC/doc/fonts/japanese-otf/ChangeLog.md RELOC/doc/fonts/japanese-otf/README details="Readme (English)" language="en" - RELOC/doc/fonts/japanese-otf/otf-script-gteb.diff - RELOC/doc/fonts/japanese-otf/readme-ja.txt details="Readme (japanese)" language="ja" - RELOC/doc/fonts/japanese-otf/test/brsgtest.tex - RELOC/doc/fonts/japanese-otf/test/jis2004.tex - RELOC/doc/fonts/japanese-otf/test/koreanexample.tex - RELOC/doc/fonts/japanese-otf/test/otftest.tex - RELOC/doc/fonts/japanese-otf/test/pkanatest.tex - RELOC/doc/fonts/japanese-otf/test/pkanatest2.tex -srccontainersize 45264 -srccontainerchecksum 0f429dcb8ac083503d65dc73e065746d6b2e5849927ceb013e708df4567017ad6554d50cbcfa5cec8da8cbac8461a66599cfa7e26e246a01951ff72d0ed634e5 -srcfiles size=111 + RELOC/doc/fonts/japanese-otf/doc/00otf-uptex.txt + RELOC/doc/fonts/japanese-otf/doc/TeXLive-maps/otf-cktx.map + RELOC/doc/fonts/japanese-otf/doc/otf-script-gteb.diff + RELOC/doc/fonts/japanese-otf/doc/readme-ja.txt details="Readme (japanese)" language="ja" + RELOC/doc/fonts/japanese-otf/doc/test/brsgtest.tex + RELOC/doc/fonts/japanese-otf/doc/test/hankana_test.tex + RELOC/doc/fonts/japanese-otf/doc/test/jis2004.tex + RELOC/doc/fonts/japanese-otf/doc/test/koreanexample.tex + RELOC/doc/fonts/japanese-otf/doc/test/otftest.tex + RELOC/doc/fonts/japanese-otf/doc/test/pkanatest.tex + RELOC/doc/fonts/japanese-otf/doc/test/pkanatest2.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/Makefile + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/cjk-mltwght-h.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/cjk-mltwght-v.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/cjk-pxbabel-h.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/cjk-pxbabel-v.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/direction-utf8.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/era.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/exclam.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/jotf-psfonts.map + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/otfscale.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/paren0.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/punct0.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/punctuation.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/sp_cns_utf.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/sp_gb_utf.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/sp_jp_text.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/sp_jp_utf.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/sp_kr_utf.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/uotf-sp-utf8.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/uotftest-utf8.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/uotftest.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/upbrsgtest.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/upjis2004.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/upkanatest1.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/upkanatest2.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-cjk.tex + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-haranoaji.map + RELOC/doc/fonts/japanese-otf/doc/test/uplatex/utfmacro-kozuka.map +srccontainersize 67560 +srccontainerchecksum 925eee304c2b5bf9fbe83a2c7b872b5bac8b729ecca0250e701190c93f3a555cbeb410626e72462b8bde94673080b5d73ad2a1e899efe4e54b2fd21461497a33 +srcfiles size=171 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 @@ -148517,8 +155325,26 @@ srcfiles size=111 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/basepl/mjvf-upnmkor-slim.cnf + RELOC/source/fonts/japanese-otf/basepl/mjvf-upnmkor.cnf + RELOC/source/fonts/japanese-otf/basepl/mjvf-upnmsch-slim.cnf + RELOC/source/fonts/japanese-otf/basepl/mjvf-upnmsch.cnf + RELOC/source/fonts/japanese-otf/basepl/mjvf-upnmtch-slim.cnf + RELOC/source/fonts/japanese-otf/basepl/mjvf-upnmtch.cnf + RELOC/source/fonts/japanese-otf/basepl/ubase-h.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-kor-h.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-kor-v.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-sch-h.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-sch-v.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-tch-h.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-tch-v.pl + RELOC/source/fonts/japanese-otf/basepl/ubase-v.pl + RELOC/source/fonts/japanese-otf/basepl/ubrsg-h.pl + RELOC/source/fonts/japanese-otf/basepl/ubrsg-v.pl RELOC/source/fonts/japanese-otf/makeotf RELOC/source/fonts/japanese-otf/mkjvf + RELOC/source/fonts/japanese-otf/script/CheckDVICode.pm + RELOC/source/fonts/japanese-otf/script/MakeSPList.pm RELOC/source/fonts/japanese-otf/script/glyphdata RELOC/source/fonts/japanese-otf/script/mkaltutfvf.pl RELOC/source/fonts/japanese-otf/script/mkcidofm.pl @@ -148528,11 +155354,25 @@ srcfiles size=111 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/mktfm_sp.pl + RELOC/source/fonts/japanese-otf/script/mkutf32list.pl RELOC/source/fonts/japanese-otf/script/mkutfvf.pl + RELOC/source/fonts/japanese-otf/script/mkutfvf_sp.pl RELOC/source/fonts/japanese-otf/script/mkvpkana.pl RELOC/source/fonts/japanese-otf/script/otf-hangul.rb -runfiles size=31081 - RELOC/fonts/map/dvipdfmx/japanese-otf/otf-cktx.map + RELOC/source/fonts/japanese-otf/script/sp_list_c.txt + RELOC/source/fonts/japanese-otf/script/sp_list_j.txt + RELOC/source/fonts/japanese-otf/script/sp_list_k.txt + RELOC/source/fonts/japanese-otf/script/sp_list_t.txt + RELOC/source/fonts/japanese-otf/script/umkpkana.pl + RELOC/source/fonts/japanese-otf/script/umkvpkana.pl + RELOC/source/fonts/japanese-otf/umakeotf + RELOC/source/fonts/japanese-otf/umakeotf_brsg + RELOC/source/fonts/japanese-otf/umakeotf_jis04 + RELOC/source/fonts/japanese-otf/umakeotf_pre + RELOC/source/fonts/japanese-otf/umakeotf_prop + RELOC/source/fonts/japanese-otf/umkjvf +runfiles size=25256 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 @@ -148869,30 +155709,74 @@ runfiles size=31081 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-ucgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucge-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-ucmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucml-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-ukgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukge-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-ukmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukml-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-utgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utge-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-utmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utml-v.tfm RELOC/fonts/tfm/public/japanese-otf/otf-utmr-h.tfm RELOC/fonts/tfm/public/japanese-otf/otf-utmr-v.tfm RELOC/fonts/tfm/public/japanese-otf/rubygothb-h.tfm @@ -148909,6 +155793,250 @@ runfiles size=31081 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/upakorgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakormgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakormgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upakorminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upaschminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upatchminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upbrsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uphminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkormgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkormgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmkorminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmschminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/upnmtchminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubygothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubymgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubymgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/uprubyminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcge--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcge--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr--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 @@ -148941,6 +156069,22 @@ runfiles size=31081 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/utfcgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcml--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcml--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr--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 @@ -148973,6 +156117,14 @@ runfiles size=31081 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/utfcmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmro-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 @@ -149005,6 +156157,44 @@ runfiles size=31081 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/utfgrg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb--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 @@ -149037,6 +156227,20 @@ runfiles size=31081 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/utfjgbg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn-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 @@ -149069,6 +156273,30 @@ runfiles size=31081 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/utfjgbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgby-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgby-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge--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 @@ -149101,6 +156329,20 @@ runfiles size=31081 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/utfjgeg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgej-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgej-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgek-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgek-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgel-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgel-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgem-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgem-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen-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 @@ -149133,6 +156375,30 @@ runfiles size=31081 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/utfjgeo-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeo-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgep-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgep-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjger-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjger-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjges-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjges-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjget-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjget-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeu-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeu-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgev-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgev-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgex-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgex-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgey-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgey-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgez-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgez-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr--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 @@ -149165,6 +156431,20 @@ runfiles size=31081 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/utfjgrg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn-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 @@ -149197,6 +156477,30 @@ runfiles size=31081 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/utfjgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb--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 @@ -149229,6 +156533,20 @@ runfiles size=31081 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/utfjmbg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn-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 @@ -149261,6 +156579,30 @@ runfiles size=31081 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/utfjmbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmby-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmby-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr--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 @@ -149293,6 +156635,20 @@ runfiles size=31081 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/utfjmgrg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn-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 @@ -149325,6 +156681,30 @@ runfiles size=31081 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/utfjmgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgry-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgry-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml--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 @@ -149357,6 +156737,20 @@ runfiles size=31081 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/utfjmlg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmll-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmll-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln-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 @@ -149389,6 +156783,30 @@ runfiles size=31081 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/utfjmlo-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlo-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmls-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmls-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlu-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlu-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmly-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmly-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr--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 @@ -149421,6 +156839,20 @@ runfiles size=31081 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/utfjmrg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn-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 @@ -149453,6 +156885,34 @@ runfiles size=31081 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/utfjmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmry-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkge--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkge--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr--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 @@ -149485,6 +156945,14 @@ runfiles size=31081 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/utfkmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkml--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkml--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr--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 @@ -149549,6 +157017,48 @@ runfiles size=31081 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/utfmrg-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrg-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmry-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmry-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftge--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftge--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr--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 @@ -149581,6 +157091,44 @@ runfiles size=31081 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/utftgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmb--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmb--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmgr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmgr--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftml--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftml--v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr--h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr--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 @@ -149613,6 +157161,36 @@ runfiles size=31081 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/tfm/public/japanese-otf/utftmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrw-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrw-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrx-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrx-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrz-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 @@ -149895,6 +157473,180 @@ runfiles size=31081 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/upbrsgexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upbrsgnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkormgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkormgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmkorminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmschminr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminb-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminb-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminl-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminl-v.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminr-h.vf + RELOC/fonts/vf/public/japanese-otf/upnmtchminr-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubygothb-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubygothb-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubygotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubygotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubygothr-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubygothr-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubymgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubymgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminb-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminb-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminl-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminl-v.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminr-h.vf + RELOC/fonts/vf/public/japanese-otf/uprubyminr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgb--v.vf + RELOC/fonts/vf/public/japanese-otf/utfcge--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcge--v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr--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 @@ -149927,6 +157679,22 @@ runfiles size=31081 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/utfcgrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmb--v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmgr--v.vf + RELOC/fonts/vf/public/japanese-otf/utfcml--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcml--v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr--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 @@ -149959,6 +157727,14 @@ runfiles size=31081 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/utfcmrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmro-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 @@ -149991,6 +157767,44 @@ runfiles size=31081 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/utfgrg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrn-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgru-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgru-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrw-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrw-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgry-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgry-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb--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 @@ -150023,6 +157837,20 @@ runfiles size=31081 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/utfjgbg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn-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 @@ -150055,6 +157883,30 @@ runfiles size=31081 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/utfjgbo-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbo-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbu-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbu-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgby-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgby-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge--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 @@ -150087,6 +157939,20 @@ runfiles size=31081 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/utfjgeg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgej-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgej-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgek-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgek-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgel-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgel-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgem-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgem-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen-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 @@ -150119,6 +157985,30 @@ runfiles size=31081 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/utfjgeo-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeo-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgep-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgep-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjger-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjger-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjges-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjges-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjget-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjget-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeu-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeu-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgev-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgev-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgex-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgex-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgey-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgey-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgez-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgez-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr--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 @@ -150151,6 +158041,20 @@ runfiles size=31081 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/utfjgrg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn-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 @@ -150183,6 +158087,30 @@ runfiles size=31081 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/utfjgro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgru-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgru-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgry-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgry-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb--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 @@ -150215,6 +158143,20 @@ runfiles size=31081 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/utfjmbg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn-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 @@ -150247,6 +158189,30 @@ runfiles size=31081 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/utfjmbo-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbo-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbu-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbu-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmby-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmby-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr--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 @@ -150279,6 +158245,20 @@ runfiles size=31081 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/utfjmgrg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn-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 @@ -150311,6 +158291,30 @@ runfiles size=31081 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/utfjmgro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgru-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgru-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgry-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgry-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml--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 @@ -150343,6 +158347,20 @@ runfiles size=31081 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/utfjmlg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmll-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmll-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln-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 @@ -150375,6 +158393,30 @@ runfiles size=31081 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/utfjmlo-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlo-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmls-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmls-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlu-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlu-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmly-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmly-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr--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 @@ -150407,6 +158449,20 @@ runfiles size=31081 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/utfjmrg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn--h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn--v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn-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 @@ -150439,6 +158495,34 @@ runfiles size=31081 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/utfjmro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmru-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmru-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmry-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmry-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgb--v.vf + RELOC/fonts/vf/public/japanese-otf/utfkge--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkge--v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr--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 @@ -150471,6 +158555,14 @@ runfiles size=31081 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/utfkmb--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmb--v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmgr--v.vf + RELOC/fonts/vf/public/japanese-otf/utfkml--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkml--v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr--h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr--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 @@ -150535,6 +158627,48 @@ runfiles size=31081 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/utfmrg-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrg-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrj-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrj-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrn-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmro-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmro-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmru-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmru-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrw-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrw-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmry-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmry-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgb--h.vf + RELOC/fonts/vf/public/japanese-otf/utftgb--v.vf + RELOC/fonts/vf/public/japanese-otf/utftge--h.vf + RELOC/fonts/vf/public/japanese-otf/utftge--v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr--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 @@ -150567,6 +158701,44 @@ runfiles size=31081 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/utftgrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrn-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgro-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgro-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgru-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgru-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrw-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrw-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrz-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmb--h.vf + RELOC/fonts/vf/public/japanese-otf/utftmb--v.vf + RELOC/fonts/vf/public/japanese-otf/utftmgr--h.vf + RELOC/fonts/vf/public/japanese-otf/utftmgr--v.vf + RELOC/fonts/vf/public/japanese-otf/utftml--h.vf + RELOC/fonts/vf/public/japanese-otf/utftml--v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr--h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr--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 @@ -150599,1315 +158771,48 @@ runfiles size=31081 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/fonts/vf/public/japanese-otf/utftmrk-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrk-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrl-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrl-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrm-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrm-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrn-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrn-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmro-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmro-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrp-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrp-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrq-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrq-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrr-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrr-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrs-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrs-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrt-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrt-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmru-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmru-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrv-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrv-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrw-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrw-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrx-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrx-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrz-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrz-v.vf RELOC/tex/platex/japanese-otf/ajmacros.sty RELOC/tex/platex/japanese-otf/mlcid.sty + RELOC/tex/platex/japanese-otf/mlutf.sty RELOC/tex/platex/japanese-otf/otf-hangul.dfu + RELOC/tex/platex/japanese-otf/otf.sty RELOC/tex/platex/japanese-otf/redeffont.sty catalogue-contact-home http://psitau.kitunebi.com/otf.html catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror -catalogue-ctan /language/japanese/japanese-otf -catalogue-license other-free -catalogue-topics font-use font-cjk japanese -catalogue-version 1.7b8 - -name japanese-otf-uptex -category Package -revision 56932 -shortdesc Support for Japanese OTF files in upLaTeX -relocated 1 -longdesc The bundle offers support of the fonts in the japanese-otf -longdesc package, for use with the UpTeX distribution (version 0.20 or -longdesc later). -depend japanese-otf -execute addKanjiMap otf-up-@jaEmbed@.map -containersize 64232 -containerchecksum cd95656f02cd97a06119134406b519928ced50c31647a4dd421850d7e83b3705cd2b715be2e23c45b77d1634c47fd5cf8733aea05c654a0d3fd7fd223a3742a7 -doccontainersize 23520 -doccontainerchecksum c67265456120136645bcd45f099e62174efa2350acbc5a13e45e35e959421f94cc2f1492bba9605b087008c3fe565ae8a52f4842070ac98039d7b6d8a9bf2172 -docfiles size=48 - RELOC/doc/fonts/japanese-otf-uptex/00otf-uptex.txt - RELOC/doc/fonts/japanese-otf-uptex/COPYRIGHT - RELOC/doc/fonts/japanese-otf-uptex/README details="Readme" - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/Makefile - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/era.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/exclam.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/otfscale.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/paren0.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punct0.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/punctuation.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_cns_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_gb_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_text.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_jp_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/sp_kr_utf.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotf-sp-utf8.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest-utf8.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/uotftest.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upbrsgtest.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upjis2004.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest1.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/upkanatest2.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/utfmacro-cjk.tex - RELOC/doc/fonts/japanese-otf-uptex/test/uplatex/utfmacro-haranoaji.map -srccontainersize 26704 -srccontainerchecksum efb029012b07e8bffa1311424138f923b4fec963bd2373a9aa083ab048007b05a2cabdf1fe53eadfc0d2431d0a48209f2e532e9a36d914868cb0dd932ce55098 -srcfiles size=47 - RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-h.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubase-v.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-h.pl - RELOC/source/fonts/japanese-otf-uptex/basepl/ubrsg-v.pl - RELOC/source/fonts/japanese-otf-uptex/script/CheckDVICode.pm - RELOC/source/fonts/japanese-otf-uptex/script/MakeSPList.pm - RELOC/source/fonts/japanese-otf-uptex/script/mktfm_sp.pl - RELOC/source/fonts/japanese-otf-uptex/script/mkutf32list.pl - RELOC/source/fonts/japanese-otf-uptex/script/mkutfvf_sp.pl - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_c.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_j.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_k.txt - RELOC/source/fonts/japanese-otf-uptex/script/sp_list_t.txt - RELOC/source/fonts/japanese-otf-uptex/script/umkpkana.pl - RELOC/source/fonts/japanese-otf-uptex/script/umkvpkana.pl - RELOC/source/fonts/japanese-otf-uptex/umakeotf - RELOC/source/fonts/japanese-otf-uptex/umakeotf_brsg - RELOC/source/fonts/japanese-otf-uptex/umakeotf_jis04 - RELOC/source/fonts/japanese-otf-uptex/umakeotf_pre - RELOC/source/fonts/japanese-otf-uptex/umakeotf_prop - RELOC/source/fonts/japanese-otf-uptex/umkjvf -runfiles size=5748 - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucge-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucge-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucml-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucml-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ucmr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujge-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujge-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgen-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgen-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujml-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujml-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ujmrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukge-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukge-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukml-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukml-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-ukmr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utge-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utge-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmgr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmgr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utml-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utml-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/otf-utmr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcge--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcge--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcml--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcml--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrw-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgry-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgby-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjge--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjge--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgex-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgey-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgry-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmby-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgry-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjml--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjml--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmly-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmry-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkge--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkge--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkml--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkml--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfkmr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrw-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmry-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftge--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftge--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrw-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmb--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmb--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmgr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmgr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftml--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftml--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmr--h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmr--v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrv-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrw-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrx-v.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-h.tfm - RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-v.tfm - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcge--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcge--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcml--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcml--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrw-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgry-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgby-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjge--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjge--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgex-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgey-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgry-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmby-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgry-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjml--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjml--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmly-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmry-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkgb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkgb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkge--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkge--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkml--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkml--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfkmr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrw-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmry-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftge--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftge--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrw-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmb--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmb--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmgr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmgr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftml--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftml--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmr--h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmr--v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrv-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrw-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrx-v.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-h.vf - RELOC/fonts/vf/public/japanese-otf-uptex/utftmrz-v.vf - RELOC/tex/platex/japanese-otf-uptex/mlutf.sty - RELOC/tex/platex/japanese-otf-uptex/otf.sty -catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex.html -catalogue-contact-repository https://github.com/texjporg/japanese-otf-mirror -catalogue-ctan /language/japanese/japanese-otf-uptex +catalogue-contact-support https://github.com/texjporg/japanese-otf-mirror/issues +catalogue-ctan /macros/jptex/latex/japanese-otf catalogue-license bsd3 catalogue-topics font-use font-cjk japanese -catalogue-version 0.26 name jbact category Package @@ -151928,9 +158833,451 @@ catalogue-license other-free catalogue-topics bibtex-sty journalpub catalogue-version 1.30 +name jeuxcartes +category Package +revision 66190 +shortdesc Macros to insert playing cards +relocated 1 +longdesc This package provides macros to insert playing cards, single, +longdesc or hand, or random-hand, Poker or French Tarot or Uno, from png +longdesc files. +containersize 4777536 +containerchecksum 99c053cf4e29a254d08ee762c4d58deac4470a02fd79c697a9f4bd3eee9934492e8776efce825a5ad9d39490940c97614b65511b22eae580b6f1643622f2a076 +doccontainersize 5995800 +doccontainerchecksum 628214c05cb9443545bee19a32b18a876979efa8e80a3c69ed3ce46fdbed22705a8462c7f7adc968deb0bfcb4564ecdbc4c7596501ef4ef66e551e736dc599a2 +docfiles size=1551 + RELOC/doc/latex/jeuxcartes/JeuxCartes-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/jeuxcartes/JeuxCartes-doc.tex + RELOC/doc/latex/jeuxcartes/README.md details="Readme" +runfiles size=1488 + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-10C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-10K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-10P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-10T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-2C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-2K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-2P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-2T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-3C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-3K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-3P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-3T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-4C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-4K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-4P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-4T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-5C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-5K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-5P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-5T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-6C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-6K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-6P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-6T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-7C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-7K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-7P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-7T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-8C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-8K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-8P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-8T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-9C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-9K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-9P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-9T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-AC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-AK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-AP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-AT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-DC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-DK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-DP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-DT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-Dos.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-JN.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-JR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-RC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-RK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-RP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-RT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-VC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-VK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-VP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv1-VT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-10C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-10K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-10P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-10T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-2C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-2K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-2P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-2T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-3C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-3K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-3P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-3T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-4C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-4K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-4P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-4T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-5C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-5K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-5P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-5T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-6C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-6K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-6P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-6T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-7C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-7K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-7P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-7T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-8C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-8K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-8P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-8T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-9C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-9K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-9P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-9T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-AC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-AK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-AP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-AT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DosBleu.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DosBleu2.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DosRouge.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-DosRouge2.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-JN.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-JR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-RC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-RK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-RP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-RT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-VC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-VK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-VP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv2-VT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-10C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-10K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-10P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-10T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-2C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-2K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-2P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-2T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-3C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-3K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-3P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-3T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-4C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-4K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-4P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-4T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-5C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-5K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-5P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-5T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-6C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-6K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-6P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-6T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-7C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-7K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-7P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-7T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-8C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-8K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-8P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-8T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-9C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-9K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-9P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-9T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-AC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-AK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-AP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-APv2.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-AT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DosNoir.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-DosRouge.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-JN.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-JR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-JS.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-RC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-RK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-RP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-RT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-VC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-VK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-VP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv3-VT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-10C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-10K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-10P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-10T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-2C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-2K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-2P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-2T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-3C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-3K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-3P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-3T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-4C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-4K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-4P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-4T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-5C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-5K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-5P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-5T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-6C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-6K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-6P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-6T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-7C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-7K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-7P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-7T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-8C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-8K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-8P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-8T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-9C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-9K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-9P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-9T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-AC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-AK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-AP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-AT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DosBleu.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-DosRouge.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-JN.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-JR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-RC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-RK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-RP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-RT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-VC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-VK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-VP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv4-VT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-10C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-10K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-10P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-10T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-2C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-2K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-2P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-2T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-3C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-3K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-3P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-3T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-4C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-4K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-4P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-4T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-5C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-5K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-5P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-5T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-6C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-6K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-6P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-6T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-7C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-7K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-7P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-7T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-8C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-8K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-8P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-8T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-9C.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-9K.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-9P.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-9T.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-AC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-AK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-AP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-AT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DosNoir.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-DosRouge.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-JN.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-JR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-RC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-RK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-RP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-RT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-VC.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-VK.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-VP.pdf + RELOC/tex/latex/jeuxcartes/CaJ-PokeRv5-VT.pdf + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-10AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-10C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-10K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-10P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-10T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-11AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-12AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-13AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-14AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-15AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-16AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-17AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-18AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-19AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-1AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-20AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-21AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-2AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-2C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-2K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-2P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-2T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-3AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-3C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-3K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-3P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-3T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-4AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-4C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-4K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-4P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-4T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-5AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-5C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-5K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-5P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-5T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-6AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-6C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-6K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-6P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-6T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-7AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-7C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-7K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-7P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-7T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-8AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-8C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-8K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-8P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-8T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-9AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-9C.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-9K.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-9P.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-9T.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-AC.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-AK.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-AP.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-AT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-CC.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-CK.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-CP.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-CT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-DC.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-DK.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-DP.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-DT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-Dos.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-Exc.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-RC.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-RK.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-RP.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-RT.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-VC.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-VK.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-VP.png + RELOC/tex/latex/jeuxcartes/CaJ-TaroTv1-VT.png + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-0B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-0J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-0R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-0V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-1B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-1J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-1R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-1V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-2B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-2J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-2R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-2V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-3B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-3J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-3R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-3V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-4B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-4J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-4R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-4V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-5B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-5J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-5R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-5V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-6B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-6J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-6R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-6V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-7B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-7J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-7R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-7V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-8B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-8J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-8R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-8V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-9B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-9J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-9R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-9V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-CSB.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-CSJ.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-CSR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-CSV.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-Coul.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-Dos.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-P2B.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-P2J.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-P2R.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-P2V.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-P4.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-PTB.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-PTJ.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-PTR.pdf + RELOC/tex/latex/jeuxcartes/CaJ-UnOv1-PTV.pdf + RELOC/tex/latex/jeuxcartes/JeuxCartes.sty +catalogue-contact-bugs https://github.com/cpierquet/JeuxCartes/issues +catalogue-contact-repository https://github.com/cpierquet/JeuxCartes +catalogue-ctan /macros/latex/contrib/jeuxcartes +catalogue-license lppl1.3c lgpl2.1 pd cc-by-sa-4 pd mit +catalogue-topics games pgf-tikz +catalogue-version 0.2.3 + name jfmutil category Package -revision 55044 +revision 60987 shortdesc Utility to process pTeX-extended TFM and VF longdesc This program provides functionality to process data files (JFM longdesc and VF) that form logical fonts used in (u)pTeX. The functions @@ -151942,10 +159289,10 @@ longdesc counterpart to the vftovp/vptovf programs. The mutual longdesc conversion between VF files alone and files in the "ZVP0 longdesc format", which is a subset of the ZVP format. depend jfmutil.ARCH -containersize 25772 -containerchecksum ba0c853d1624ef00407e9eb4c6051fa9f71f505e0e55ea2a698d4a9f7fee241c1339d46e873d77573252c781ccacb05b9d447b80aa43887ad76da667977c666b -doccontainersize 9584 -doccontainerchecksum d4b255cccbe58ec85240be3f0a390dd2fd716fd40c744732494d3e113899747133e99be75f8bab888d240e66e16195dbd2b12188f3551e5535a2cbe157c5bf9f +containersize 25788 +containerchecksum 11f0ee88997b197ccb4cf249a92f90ecd08227b0086861b59752c2e17fafb1e1fec7a1cfc701d5df91497d4cb9e61d13f892d776ded07c34d7dab09a2a65eed4 +doccontainersize 9660 +doccontainerchecksum 045b74024de9798fd7c74442404dba0610a94f66b60455d84fc33bfe56e8612b014fbd83cfa3edfb0c3a8acb31c0dece69ebefb58294b2d271dc1dc2e95d094f docfiles size=9 texmf-dist/doc/fonts/jfmutil/LICENSE texmf-dist/doc/fonts/jfmutil/README-ja.md details="Readme (Japanese)" language="ja" @@ -151955,7 +159302,7 @@ runfiles size=26 catalogue-ctan /fonts/utilities/jfmutil catalogue-license mit catalogue-topics font-proc japanese -catalogue-version 1.3.1 +catalogue-version 1.3.3 name jfmutil.aarch64-linux category Package @@ -151993,15 +159340,6 @@ containerchecksum f32a42f644de7afc10694175a18bca190ebc805ae421415d4010f92f698a00 binfiles arch=armhf-linux size=1 bin/armhf-linux/jfmutil -name jfmutil.i386-cygwin -category Package -revision 44835 -shortdesc i386-cygwin files of jfmutil -containersize 340 -containerchecksum be92b62a3e0a99d57c9d627ebb73b6b89acd00ba0cabb528b59e8b21a4525d1979abd204493d1c9b08d0b94492344df45780df400c317ae3ad08716bde03c63a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/jfmutil - name jfmutil.i386-freebsd category Package revision 44835 @@ -152047,14 +159385,14 @@ containerchecksum 5dc3aea30fb768dc0005d5189ec22eb5c59fb0b08b7a7e67203b825172a00c binfiles arch=universal-darwin size=1 bin/universal-darwin/jfmutil -name jfmutil.win32 +name jfmutil.windows category Package -revision 44835 -shortdesc win32 files of jfmutil -containersize 684 -containerchecksum cfe6725a5dc9d306a80e4c0b8bd93453e8680109f65c87ca12b541790d6b86cf469241bc5be5f673ad9e1e2c74455ce900fb1ba311a12229b2e0b8141cc7b9bc -binfiles arch=win32 size=1 - bin/win32/jfmutil.exe +revision 65891 +shortdesc windows files of jfmutil +containersize 2308 +containerchecksum 573046f68b4a5566c4fe273aecbe4b4f818a126fc838a0db684cdc6deb93ef5dbdc79cccb7edfe276929b1b0f7e38e8ed5f047a87dfb0e33579ea58d6e385ef7 +binfiles arch=windows size=2 + bin/windows/jfmutil.exe name jfmutil.x86_64-cygwin category Package @@ -152101,21 +159439,47 @@ containerchecksum 922296ed3f4006351b09b90f2b3b9f9f1c32d175191ef02f0b3564269a5cda binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/jfmutil +name jieeetran +category Package +revision 65642 +shortdesc UnofficiaL BibTeX style for citing Japanese articles in IEEE format +relocated 1 +longdesc This package provides an unofficial BibTeX style for authors +longdesc trying to cite Japanese articles in the Institute of Electrical +longdesc and Electronics Engineers (IEEE) format. +containersize 17708 +containerchecksum 79433835a06c0fe268d90ad11bfe6a9956e49284cb2ea2255c4577883f2087c0c6b823121a563cb76f666ce74265a056f0e0b470dd2542a104894adb0242d083 +doccontainersize 153340 +doccontainerchecksum ccdbc9aafd94956f43c7f78c93b02f067defb038ba6b9c649e38d1e0c02647c853ad391a1c2b10b60e14255b38c5d77aae9ddd260c8297e06084236c27d70073 +docfiles size=47 + RELOC/doc/bibtex/jieeetran/README details="Readme" + RELOC/doc/bibtex/jieeetran/jieeetran-en.pdf details="Package documentation (English)" + RELOC/doc/bibtex/jieeetran/jieeetran-en.tex + RELOC/doc/bibtex/jieeetran/jieeetran.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/bibtex/jieeetran/jieeetran.tex + RELOC/doc/bibtex/jieeetran/mixej.py +runfiles size=21 + RELOC/bibtex/bst/jieeetran/jIEEEtran.bst +catalogue-contact-repository https://github.com/ehki/jIEEEtran +catalogue-ctan /biblio/bibtex/contrib/jieeetran +catalogue-license mit +catalogue-topics bibtex-sty japanese +catalogue-version 0.19 + name jigsaw category Package -revision 49111 +revision 66009 shortdesc Draw jigsaw pieces with TikZ relocated 1 longdesc This is a small LaTeX package to draw jigsaw pieces with TikZ. longdesc It is possible to draw individual pieces and adjust their longdesc shape, create tile patterns or automatically generate complete longdesc jigsaws. -containersize 1440 -containerchecksum 3bff01425c502c98894fc517be9b4af8ed48bd5a059835fb850ad1c58a2618998967780a65a5bb43946acecaa397ea51fcdd051dc2b8c863e27b55fd3beb5230 -doccontainersize 176048 -doccontainerchecksum 17c263228124da3f17ca338738add762992e2674b0e0fb80e250c8302cc59d11bd1017a1d4e005a7c9c9d66444a91851cfd6e505a5e1f6fb73aef7d5ee703d31 -docfiles size=50 - RELOC/doc/latex/jigsaw/LICENSE.txt +containersize 1792 +containerchecksum 3ad1aab51b4fbd99efc6bbfabf716cfd27e4af71674b094053f4866e38ab4c6c3f8d1884bfc4e4f7cf0fef11abfc488cafdb696238c5af1440255151b1b2ca77 +doccontainersize 180576 +doccontainerchecksum 92d04e7497c19471f8aaa5344a1cc3824e18691daffab637a1822f900468269367244c984e4420efc94014cfc849ebfa4fd0db6e5b37cb1e89aa5493bdbbdb87 +docfiles size=48 RELOC/doc/latex/jigsaw/README.md details="Readme" RELOC/doc/latex/jigsaw/jigsaw-doc.pdf details="Package documentation" RELOC/doc/latex/jigsaw/jigsaw-doc.tex @@ -152127,7 +159491,7 @@ catalogue-contact-support https://github.com/samcarter/jigsaw/issues catalogue-ctan /graphics/pgf/contrib/jigsaw catalogue-license lppl1.3c catalogue-topics pgf-tikz -catalogue-version 0.1a +catalogue-version 0.4 name jkmath category Package @@ -152222,18 +159586,18 @@ catalogue-topics labels name jlreq category Package -revision 58472 +revision 66362 shortdesc Japanese document class based on requirements for Japanese text layout relocated 1 longdesc This package provides a Japanese document class based on longdesc requirements for Japanese text layout. The class file and the longdesc JFM (Japanese font metric) files for LuaTeX-ja / pLaTeX / longdesc upLaTeX are provided. -containersize 135032 -containerchecksum 1a2118698ae25d3f9a3d9d41c7bab2b3d56e58b9fea73d977114f6cae429d2e9ed0b410a0537531e4eb6559f2a6ebda47eda0e6b3e1d1b8ddbf567dbe1ebf26f -doccontainersize 502528 -doccontainerchecksum e88a88d7d70a03e8dea569f198690278ddb2233df7dbca0733c60d6f5d4963ad9cc810c7764365646302cd529ac70a29aa258a577adc2958fed9da5448f52299 -docfiles size=162 +containersize 144616 +containerchecksum e69996585a00040de962bc36df2e58bf79d2d3fd76bfcd9d8f05703975e02f5af5e542bbbdd6300534c59f83f9a07d0c4350bf3bee0d73c60c25fc30ec417855 +doccontainersize 527176 +doccontainerchecksum 2592c71c31c7356ae691b994bea1357a306d126d12897a1de2a81f82aa7feee8a4fd672d91661f9ed19f9e107ef78c5f85d235a32ddc0024aeee71fbca207aa9 +docfiles size=173 RELOC/doc/latex/jlreq/LICENSE RELOC/doc/latex/jlreq/README-ja.md details="Readme" language="ja" RELOC/doc/latex/jlreq/README.md details="Readme" @@ -152245,15 +159609,15 @@ docfiles size=162 RELOC/doc/latex/jlreq/jlreq-trimmarks.md RELOC/doc/latex/jlreq/jlreq.html RELOC/doc/latex/jlreq/jlreq.pdf details="Package documentation" -srccontainersize 8208 -srccontainerchecksum 143b2d7bb6ce740c2dfcc5295ba568189041091118e6cdd6856b7ce6df2b267ca9a1d7443e752f22cb9d4668971cc559609434d091df94906c04ccce066d67bc +srccontainersize 8304 +srccontainerchecksum 648b5e94737f61b03ffaae36800365cdb9beee5489553ff47c5e78e700c1e82bb3636a54a8f12d2f3cfe377acf53661dbc97c062c43b3adcb505d4f67dc4fe9e srcfiles size=10 RELOC/source/latex/jlreq/Makefile RELOC/source/latex/jlreq/README-template.html RELOC/source/latex/jlreq/README-template.tex RELOC/source/latex/jlreq/luajfm2pl.lua RELOC/source/latex/jlreq/make_variant_jfm.lua -runfiles size=8645 +runfiles size=8661 RELOC/fonts/tfm/public/jlreq/bjlreq-v.tfm RELOC/fonts/tfm/public/jlreq/bjlreq.tfm RELOC/fonts/tfm/public/jlreq/bjlreqg-v.tfm @@ -152354,6 +159718,7 @@ runfiles size=8645 RELOC/fonts/vf/public/jlreq/zjlreq.vf RELOC/fonts/vf/public/jlreq/zjlreqg-v.vf RELOC/fonts/vf/public/jlreq/zjlreqg.vf + RELOC/tex/latex/jlreq/jlreq-complements.sty RELOC/tex/latex/jlreq/jlreq-helpers.sty RELOC/tex/latex/jlreq/jlreq-trimmarks.sty RELOC/tex/latex/jlreq/jlreq.cls @@ -152362,21 +159727,21 @@ runfiles size=8645 RELOC/tex/luatex/jlreq/jfm-jlreqv-jidori.lua RELOC/tex/luatex/jlreq/jfm-jlreqv.lua catalogue-contact-home https://github.com/abenori/jlreq -catalogue-ctan /language/japanese/jlreq +catalogue-ctan /macros/jptex/latex/jlreq catalogue-license bsd2 -catalogue-topics japanese font-cjk class std-conform +catalogue-topics japanese font-cjk class std-conform expl3 name jlreq-deluxe category Package -revision 58329 +revision 66115 shortdesc Multi-weight Japanese font support for the jlreq class relocated 1 longdesc This package provides multi-weight Japanese font support for longdesc the jlreq class. -containersize 21492 -containerchecksum b7b3e3c5a9de849ea79cf84d6fde1d9594ebb3c5b8887ef682c2973227f7d60a159a3f90b05797c9bc59eb030bef4853415e02a98ccccc2f914b29c1e619b27e -doccontainersize 66008 -doccontainerchecksum 956be7405e5aeeb7c56e6db88465950865376e14a39caaee61be9b77fbd859f509dc9dc522e756382a0276dedac85a23cd43c2f7034d1d8482bce5b305eae75d +containersize 21528 +containerchecksum 318b01471bcd2e7a15d5e58fe922d341c9daddc3ed9f3565c85bd221dba2d5d38635d60b848aa37760b3ecfd4d007d202d69b6694eacd41c885eed34ce77c34a +doccontainersize 66136 +doccontainerchecksum ce096d4d8461d1fef3e4c9d24efd8f7a402085ed03852ac2b293467400e2c000633cc852d4a0ccc2b0903c9e3a682770a4edf632183758b9753e6a1c553ecab7 docfiles size=20 RELOC/doc/platex/jlreq-deluxe/LICENSE RELOC/doc/platex/jlreq-deluxe/README-ja.md details="Readme (Japanese)" @@ -153507,10 +160872,10 @@ runfiles size=1177 RELOC/tex/platex/jlreq-deluxe/jlreq-deluxe.sty catalogue-also jlreq catalogue-contact-repository https://github.com/h20y6m/jlreq-deluxe -catalogue-ctan /language/japanese/jlreq-deluxe +catalogue-ctan /macros/jptex/latex/jlreq-deluxe catalogue-license mit catalogue-topics font-cjk font-use japanese expl3 -catalogue-version 0.4.0 +catalogue-version 0.4.1 name jmb category Package @@ -153537,7 +160902,7 @@ catalogue-version 1.21 name jmlr category Package -revision 56395 +revision 61957 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 @@ -153548,48 +160913,24 @@ longdesc to produce either a colour hyperlinked book for on-line viewing longdesc or a greyscale nonhyperlinked book for printing. Production longdesc editors can use makejmlrbookgui to help build the proceedings longdesc from the articles. -containersize 24348 -containerchecksum 950f1d737ccf93c12d497ae04192f63c861a3a03279e69aa54c28ab0dbf4299dca3339ca19933c96f1c5f42dd9e2d860dda9c201d2f89b6aadbf75d73c16a878 -doccontainersize 1740652 -doccontainerchecksum c86b3f5c1e1522009b2a31fa532c98a754354ef744be12ddaa24f1ae0c3c7f36522d1ff886aefb220796375541949a55ddefe0a085fdc0b607383a183f70234f -docfiles size=534 +containersize 17520 +containerchecksum 95a5e59c8f4617b8d3d459a2cfe0730465d46a98781e4352debb9eb0c4357e74c8f519e77873a236f127dbecc235f611e30fbd7348818d9024a27fb8f0ff1eac +doccontainersize 965184 +doccontainerchecksum a481634eac642925340aa02323deee2aeee1577696abd435814a2f27d6e4bf6e61be2b2618778c762f3ec60a1e5067d634da74125dfacccfd940488b6a812175 +docfiles size=252 RELOC/doc/latex/jmlr/CHANGES - RELOC/doc/latex/jmlr/INSTALL RELOC/doc/latex/jmlr/README details="Readme" + RELOC/doc/latex/jmlr/example-teximage.tex RELOC/doc/latex/jmlr/jmlr.pdf details="Package documentation" - RELOC/doc/latex/jmlr/sample-books/bookLogo-gray.png - RELOC/doc/latex/jmlr/sample-books/bookLogo.png - RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.pdf - RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.tex - RELOC/doc/latex/jmlr/sample-books/paper1/paper1.bib - RELOC/doc/latex/jmlr/sample-books/paper1/paper1.tex - RELOC/doc/latex/jmlr/sample-books/paper2/paper2.bib - RELOC/doc/latex/jmlr/sample-books/paper2/paper2.tex - RELOC/doc/latex/jmlr/sample-books/paper3/paper3.bib - RELOC/doc/latex/jmlr/sample-books/paper3/paper3.tex - RELOC/doc/latex/jmlr/sample-books/paper4/paper4.bib - RELOC/doc/latex/jmlr/sample-books/paper4/paper4.tex - RELOC/doc/latex/jmlr/sample-books/proceedings-sample.pdf - RELOC/doc/latex/jmlr/sample-books/proceedings-sample.tex - RELOC/doc/latex/jmlr/sample-papers/images/circle-gray.png - RELOC/doc/latex/jmlr/sample-papers/images/circle.jpg - RELOC/doc/latex/jmlr/sample-papers/images/nodes-gray.png - RELOC/doc/latex/jmlr/sample-papers/images/nodes.png - RELOC/doc/latex/jmlr/sample-papers/images/square-gray.png - RELOC/doc/latex/jmlr/sample-papers/images/square.png - RELOC/doc/latex/jmlr/sample-papers/images/teximage.tex - RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.bib - RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.pdf - RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.tex - RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf - RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.tex -srccontainersize 41916 -srccontainerchecksum 163df127f2f448d0ae23144d91fc7aa28c423f3d2ffc63d7cd34d6532b734721215e5f3f31cb3f6662544d3609da83a9a2fd3970a8169841b6cdf129a58a575f -srcfiles size=54 + RELOC/doc/latex/jmlr/pmlr-sample.bib + RELOC/doc/latex/jmlr/pmlr-sample.pdf + RELOC/doc/latex/jmlr/pmlr-sample.tex +srccontainersize 42432 +srccontainerchecksum 1dee8b499ad2c5427082a69b5a3a65c173a96ea298a05f94b96d448d8d7554d96819798dc724e1e8f55afdd1b25d9e6ed6e7f3474bd83af83b2f89add907f2c8 +srcfiles size=55 RELOC/source/latex/jmlr/jmlr.dtx RELOC/source/latex/jmlr/jmlr.ins -runfiles size=30 - RELOC/scripts/jmlr/makejmlrbook +runfiles size=23 RELOC/tex/latex/jmlr/jmlr.cls RELOC/tex/latex/jmlr/jmlrbook.cls RELOC/tex/latex/jmlr/jmlrutils.sty @@ -153597,7 +160938,7 @@ catalogue-contact-bugs https://www.dickimaw-books.com/bugtracker.php?category=jm catalogue-ctan /macros/latex/contrib/jmlr catalogue-license lppl1.3 catalogue-topics journalpub class -catalogue-version 1.28 +catalogue-version 1.30 name jmn category Package @@ -153618,6 +160959,46 @@ runfiles size=22 RELOC/fonts/type1/jmn/hans/hans.pfb RELOC/fonts/type1/jmn/hans/hans.pfm +name jmsdelim +category Package +revision 62630 +shortdesc A package for compositional delimiter sizing +relocated 1 +longdesc Correctly sizing delimiters is very difficult, particularly in +longdesc well-architected documents: a correctly engineered mathematical +longdesc document will include macros for all operations, and these +longdesc macros necessarily will include delimiters (such as +longdesc parentheses). However, the correct size for the delimiter +longdesc cannot be chosen ahead of time, because it will depend on the +longdesc arguments; two options are available: Provide optional +longdesc arguments to each notation macro for choosing delimiter sizes. +longdesc This is nearly intractable to do in practice. Ignore delimiter +longdesc sizes. With jmsdelim we offer an alternative: the correct +longdesc delimiter sizes can be set at the leaf nodes of a mathematical +longdesc expression, and magically bubble upward through the delimiters. +containersize 2268 +containerchecksum 83a76c353b38c9d5e432606c2f1667dac10adf54f844d9c4c7a9b8b8733a44d63db9e2c9e46b2ca54f427bca1d3bf4ef49d016c26dbad361b83d091c78708918 +doccontainersize 402864 +doccontainerchecksum ef6f90a4b7d3738ff857158822fbc7b3dc23752b5da5845932f560fcaf83d67a22920e045448caae26eded760e34aaab375f29993ffb503d0b5ef3c8185ae737 +docfiles size=104 + RELOC/doc/latex/jmsdelim/README.md details="Readme" + RELOC/doc/latex/jmsdelim/jmsdelim.pdf details="Package documentation" + RELOC/doc/latex/jmsdelim/refs.bib +srccontainersize 5692 +srccontainerchecksum bbb2b6acb1e2a4be8fd02ea84f3f43b14675b7c02fcb036fbf10e59553411d4a19ad5bd6c087e7aebb5c7309d3ad6d19ccfc67d9186799159e0209f45bdbc5bb +srcfiles size=7 + RELOC/source/latex/jmsdelim/jmsdelim.dtx + RELOC/source/latex/jmsdelim/jmsdelim.ins +runfiles size=2 + RELOC/tex/latex/jmsdelim/jmsdelim.sty +catalogue-contact-bugs https://github.com/jonsterling/latex3-jmsdelim/issues/6 +catalogue-contact-home https://github.com/jonsterling/latex3-jmsdelim +catalogue-contact-repository https://github.com/jonsterling/latex3-jmsdelim +catalogue-ctan /macros/latex/contrib/jmsdelim +catalogue-license lppl1.3c +catalogue-topics maths +catalogue-version 0.2.0 + name jneurosci category Package revision 17346 @@ -153682,9 +161063,36 @@ catalogue-license lppl1.3 catalogue-topics exam class chinese catalogue-version 1.0 +name jobname-suffix +category Package +revision 64797 +shortdesc Compile differently based on the filename +relocated 1 +longdesc This package allows to compile a document differently depending +longdesc on the portion of the document's file name (internally, the +longdesc \jobname) that comes after the first "-" character. This allows +longdesc one to have one source file and multiple links to this source +longdesc file that each compile differently. +containersize 1756 +containerchecksum b2e5a82d5bb8575e3708a3e2c30e23a3ceb129c6cd78882126061321350c3ad72e36ccf41392eca7556203be713530d3169bcb39210f91d720159c49975eddf7 +doccontainersize 440628 +doccontainerchecksum fbe45bf364098e30deb8e040dfbb59b3b81cf53720793ca02dce59ec113ea57b86c1a3a8465ce6029ac1fa7b19b2220fdddc71f71285969e8f91eeafcabc3bfb +docfiles size=110 + RELOC/doc/latex/jobname-suffix/README.md details="Readme" + RELOC/doc/latex/jobname-suffix/jobname-suffix.pdf details="Package documentation" + RELOC/doc/latex/jobname-suffix/jobname-suffix.tex +runfiles size=1 + RELOC/tex/latex/jobname-suffix/jobname-suffix.sty +catalogue-contact-bugs https://github.com/siefkenj/jobname-suffix/issues +catalogue-contact-home https://github.com/siefkenj/jobname-suffix +catalogue-ctan /macros/latex/contrib/jobname-suffix +catalogue-license lppl1.3 +catalogue-topics compilation +catalogue-version 1.0 + name josefin category Package -revision 57152 +revision 64569 shortdesc Josefin fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -153693,10 +161101,10 @@ longdesc Santiago Orozco of the Typemade foundry in Monterey, Mexico. longdesc Josefin Sans is available in seven weights, with corresponding longdesc italics. execute addMap josefin.map -containersize 1097116 -containerchecksum 4f0a7e6095a676878617bf05b1680c5482b3f5f43d00abf2460bfe1d09568721afc2808081001898bebbc8e16e54f9faab0a0c9c41b0d6aa0bc43f7a829f1b16 -doccontainersize 173112 -doccontainerchecksum 2f59d8fbe271d00673bb78592d4f3a9ba70a5004236548dcf49182c4efc458b5973d1e01a3f97bc3e6556d8b70d4e20f52d7f268dd7ed2b875fc1656d6781506 +containersize 1097100 +containerchecksum 6be43db9172d51a84374aa836cf9e2baf02f087336685a37c321449ba06461f08b08a8d98c12cb3aba0dbc9c0e2e8b3316362f65c7393b9286ab50b11f70174d +doccontainersize 173116 +doccontainerchecksum cc41ce980515708238256db38ff05c74a22f78ee5a8f4dc63d68339a064799e1beacab7be71ec15b2c97a6d9aecc7a39064fcadf4d7c67ff172eb9b8f7a939db docfiles size=46 RELOC/doc/fonts/josefin/OFL.txt RELOC/doc/fonts/josefin/README details="Readme" @@ -153890,15 +161298,103 @@ catalogue-ctan /fonts/josefin catalogue-license ofl lppl catalogue-topics font font-body font-sans font-mono font-otf font-type1 font-proportional font-supp font-t1enc +name jourcl +category Package +revision 65290 +shortdesc Cover letter for journal submissions +relocated 1 +longdesc Paper submissions to journals are usually accompanied by a +longdesc cover letter. This package provides a LaTeX class and a +longdesc template for such a cover letter with the following main +longdesc features: Minimalistic design. Custom image. Pre-defined +longdesc commands for journal name, author, date, etc. Many macros +longdesc contained in this package speed up the process of preparing the +longdesc necessary ingredients for the cover letter. Macros for +longdesc recommending up to three reviewers and/or editors. ORCID logo +longdesc and link to the submitting author's ORCID page. Controls for +longdesc adding a "Conflict of interest" statement and declaration. +longdesc Custom greeting (e.g., "Dear Editor" for a regular submission, +longdesc "Dear Editor-in-Chief" for a submission to a journal's special +longdesc issue, etc.) Predefined valedictions for different types of +longdesc submissions (e.g., Yours sincerely, Yours faithfully, Best +longdesc regards, etc.) +containersize 3024 +containerchecksum 6039789de2a03ec2568597cfee911d20b66db75ef4ca3c48cf9481ed2debd0226ccb605a083ba53bce91b74768e3d70a2e2ac077c630b8de33c010f917d68335 +doccontainersize 117948 +doccontainerchecksum 873b2e5636f6409f7b6c4c8c4a8c8988108ad4740df9fdcaef4e7998d3eeba0a2a26e84fac5e6c7b6534bafd120a3dcf066974fc9419e4544cf597bc99fdaeb3 +docfiles size=50 + RELOC/doc/latex/jourcl/LICENSE + RELOC/doc/latex/jourcl/README.md details="Readme" + RELOC/doc/latex/jourcl/imgs/jourcl-logo.png + RELOC/doc/latex/jourcl/imgs/jourcl-signature.png + RELOC/doc/latex/jourcl/jourcl.pdf details="Example of use" + RELOC/doc/latex/jourcl/jourcl.tex +runfiles size=3 + RELOC/tex/latex/jourcl/jourcl.cls +catalogue-contact-repository https://github.com/firefly-cpp/cover-letter-latex +catalogue-ctan /macros/latex/contrib/jourcl +catalogue-license cc-by-sa-4 +catalogue-topics letter class doc-templ + +name jpneduenumerate +category Package +revision 63893 +shortdesc Enumerative expressions in Japanese education +relocated 1 +longdesc Mathematical equation representation in Japanese education +longdesc differs somewhat from the standard LaTeX writing style. This +longdesc package introduces enumerative expressions in Japanese +longdesc education. +containersize 2720 +containerchecksum 10bb936cbddc6e88979ceed208bdba424d4e4c9c388cadd3a9b84a767c59ea43362f11092907f98c16696f07134ed66765a8bc7b02ea0a8fbe9eb7b814760780 +doccontainersize 160748 +doccontainerchecksum 447c925bfe05d1c6657bbf2592bfbd16f80d9bcc1a3320635231153b90198f2e8010cef5d13573e84504d5a41b9cc6ec750054c00a9178154c4e210684919d0a +docfiles size=47 + RELOC/doc/latex/jpneduenumerate/README.md details="Readme" + RELOC/doc/latex/jpneduenumerate/jpneduenumerate.pdf details="Package documentation" language="en,ja" + RELOC/doc/latex/jpneduenumerate/jpneduenumerate.tex +runfiles size=5 + RELOC/tex/latex/jpneduenumerate/jpneduenumerate.sty +catalogue-contact-home https://www.metaphysica.info/technote/package_jpneduenumerate/ +catalogue-ctan /macros/latex/contrib/jpneduenumerate +catalogue-license mit +catalogue-topics maths japanese list-enum +catalogue-version 1.2 + +name jpnedumathsymbols +category Package +revision 63864 +shortdesc Mathematical equation representation in Japanese education +relocated 1 +longdesc Mathematical equation representation in Japanese education +longdesc differs somewhat from the standard LaTeX writing style. This +longdesc package introduces mathematical equation representation in +longdesc Japanese education. +containersize 4512 +containerchecksum c4f23412a83fed8ee870922d1e8e0c2e8a881989223b340de7ecda0851d45d504fa6c5f0cb70ceb65e2c07f5df0154f77f343787573a6265a709bc398e3add9a +doccontainersize 327416 +doccontainerchecksum 0589ea6fa4dee93900753dc170aea295e9bf1103687fa146633589897292dff8c472ee95607a2d0b682321a5a33e22220234e2a396cee4ec2abc54fa4276459c +docfiles size=91 + RELOC/doc/latex/jpnedumathsymbols/README.md details="Readme" + RELOC/doc/latex/jpnedumathsymbols/jpnedumathsymbols.pdf details="Package documentation" language="en,ja" + RELOC/doc/latex/jpnedumathsymbols/jpnedumathsymbols.tex +runfiles size=6 + RELOC/tex/latex/jpnedumathsymbols/jpnedumathsymbols.sty +catalogue-contact-home https://www.metaphysica.info/technote/package_jpnedumathsymbols/ +catalogue-ctan /macros/latex/contrib/jpnedumathsymbols +catalogue-license mit +catalogue-topics maths japanese +catalogue-version 1.1 + name jpsj category Package -revision 15878 +revision 66115 shortdesc Document Class for Journal of the Physical Society of Japan relocated 1 -containersize 7272 -containerchecksum 70b0e83af5b828e6a783d888adcacc504342e2cbe255d88aaa2fc3cdda629fca8e2fec9c98c73c0673d98d396727025b0a622905c3403c2b568d67597218398e -doccontainersize 150368 -doccontainerchecksum 220c28ed6312c046dcb2973e2e22fd47c683460578dbf952d12d52da0aa4c21a5dc5e8195b78d743c093e05772ae1e00a45d3c221e805a452420c435f23b6a38 +containersize 7216 +containerchecksum de1383f7c52d4a43b0ecd2677314a88181e2702ae487b0ce3140b3048c1820bd504b6743002733e2da3e45553aaf911fe2c6ff552f77e706cbcd300570a34c03 +doccontainersize 150364 +doccontainerchecksum 65c25cd1540664e4e529be67851e5198761cffd6eea495d1f60963dd9deb911ebe8426391fc456f08bb6f640040790fbe7d7702b21f7ddcfca5d246c02791764 docfiles size=61 RELOC/doc/latex/jpsj/dummy.eps RELOC/doc/latex/jpsj/injpsj2.pdf details="Instructions for authors" @@ -153906,7 +161402,6 @@ docfiles size=61 RELOC/doc/latex/jpsj/template.tex runfiles size=8 RELOC/tex/latex/jpsj/jpsj2.cls -catalogue-contact-home http://journals.jps.jp/page/jpsj/authors/style catalogue-ctan /macros/latex/contrib/jpsj catalogue-license lppl catalogue-topics physics journalpub @@ -153954,17 +161449,17 @@ catalogue-topics collection name jsclasses category Package -revision 56608 +revision 66093 shortdesc Classes tailored for use with Japanese relocated 1 longdesc Classes jsarticle and jsbook are provided, together with longdesc packages okumacro and okuverb. These classes are designed to longdesc work under ASCII Corporation's Japanese TeX system ptex. -containersize 21760 -containerchecksum 18c5cd1e63e4fedbf1ec0faf069d40d34dd72ca18af0d634eab16b5c7ce92139cf4892492782f816c0c0deab4706ee1c5a83d052cd122f7d5df35f1d5d2ff4dc -doccontainersize 782112 -doccontainerchecksum f9d477ca10dfa4fe83e2f5a981f7584555e06968417c542cd09e223a0ef30074540890b3f5b28de12b9d77e9a45e3bae19590cfec31d3232528db1d854514083 -docfiles size=199 +containersize 21800 +containerchecksum aeba8c75d3af2077763da1846e09b6d51ce0f5935cc4e8a09fb6c747d9321161996423ce620d04c15cfe3a4f9af3ea36f90ccbded6fa03dcc088c5e71be74295 +doccontainersize 797208 +doccontainerchecksum 0ce0175fc4a3ea36154c329961d7604bb06431b586dc1bc928afd5b2ada528bb79349a833504ccc93525addde80818210cfa2a1803ecb319032bc8eda034f18c +docfiles size=203 RELOC/doc/platex/jsclasses/LICENSE RELOC/doc/platex/jsclasses/README.md details="Readme" RELOC/doc/platex/jsclasses/jsclasses.pdf details="Documentation of the classes (Japanese)" language="ja" @@ -153972,8 +161467,8 @@ docfiles size=199 RELOC/doc/platex/jsclasses/jsverb.pdf details="Jsverb package documentation (Japanese)" language="ja" RELOC/doc/platex/jsclasses/okumacro.pdf details="Okumacro package documentation (Japanese)" language="ja" RELOC/doc/platex/jsclasses/okuverb.pdf details="Okuverb package documentation (Japanese)" language="ja" -srccontainersize 56528 -srccontainerchecksum c4b4d11b3684122e47cb3b1ef59001e0163297768743b570f4c64c3eb0ab95f41a6660b44f6048acf4e9d1f4b949eae9883ee97cadec53798d363f3630cc4fca +srccontainersize 57016 +srccontainerchecksum 4b8e605a8f9d3de33b9deef3dd58ae2984881f9716b0a9647fd794a3c97549e50ffe3f2556bb4b4ebc5938ce3516abda9445d4ddff21882b53ccfd9276b37e02 srcfiles size=73 RELOC/source/platex/jsclasses/Makefile RELOC/source/platex/jsclasses/jsclasses.dtx @@ -153998,7 +161493,7 @@ runfiles size=85 RELOC/tex/platex/jsclasses/okumacro.sty RELOC/tex/platex/jsclasses/okuverb.sty catalogue-contact-repository https://github.com/texjporg/jsclasses -catalogue-ctan /macros/latex/contrib/jsclasses +catalogue-ctan /macros/jptex/latex/jsclasses catalogue-license bsd catalogue-topics japanese class @@ -154114,7 +161609,7 @@ catalogue-version 0.2 name junicode category Package -revision 53954 +revision 61719 shortdesc A TrueType font for mediaevalists relocated 1 longdesc Junicode is a TrueType font with many OpenType features for @@ -154122,10 +161617,10 @@ longdesc antiquarians (especially medievalists) based on typefaces used longdesc by the Oxford Press in the late 17th and early 18th centuries. longdesc It works well with Xe(La)TeX. execute addMap Junicode.map -containersize 937448 -containerchecksum a0e447471da270a19659d19bb4e18699eda7447ef65b5c5abea1662ff6ca631ccf1a4c0efbb192208a835d8acabfeb51aba3c576578c7e40c13d6d28e727cbd4 +containersize 937456 +containerchecksum dd565975fe8ce096d575c0237caae274c0c3efb0a7b3b3fc3cc561636536ea71d62f20e73e549711580a1792e69fa794677d88ebbb7cbad28bd6c82a53797167 doccontainersize 5756 -doccontainerchecksum f692c94008d88ed2b0b0d91678072cee6cd379e5a3fe58831a69393cb2de3058c0e7320409385a2112b41c9369255ddbc6919520a222adccb38223b5b2576790 +doccontainerchecksum 120772bc43e50cd12e936fe0903d6b91202c2379f073750372d30ffa0abde39cc5f6092089e289fac97ef95b955e2785c07030496f601b805193138414bcc271 docfiles size=8 RELOC/doc/fonts/junicode/COPYING RELOC/doc/fonts/junicode/ChangeLog @@ -154627,7 +162122,7 @@ runfiles size=1104 RELOC/tex/latex/junicode/mt-Junicode.cfg catalogue-ctan /fonts/junicode catalogue-license ofl -catalogue-topics font font-ttf font-historical +catalogue-topics font font-ttf font-historical font-medieval catalogue-version 1.0.2 name jupynotex @@ -154902,6 +162397,35 @@ catalogue-license lppl catalogue-topics listing catalogue-version 0.7 +name jwjournal +category Package +revision 65480 +shortdesc A personal class for writing journals +relocated 1 +longdesc This LaTeX document class enables the user to turn simple pure +longdesc text entries into a colorful and nicely formatted journal. +depend einfart +containersize 2612 +containerchecksum 0f322a3af5cb47d88a2cc9ec275433e5c13e7a39bb0d1b3dd9513cbf9cf745774a676e7cb5734cc0eab330f78d973742b98287710538eccc5720c5903f534778 +doccontainersize 90996 +doccontainerchecksum df9e6f8b942a4d35842e18417d8624c91f4f08fcd8749b2c99513eb51b00c63517fa54c7389166bb78e0296927feba04339ae6a61de9da4281bacc5c60effe36 +docfiles size=33 + RELOC/doc/latex/jwjournal/DEPENDS.txt + RELOC/doc/latex/jwjournal/LICENSE + RELOC/doc/latex/jwjournal/README.md details="Readme" + RELOC/doc/latex/jwjournal/jwjournal-demo-cn.pdf details="Example of use (Chinese)" + RELOC/doc/latex/jwjournal/jwjournal-demo-cn.tex + RELOC/doc/latex/jwjournal/jwjournal-demo-en.pdf details="Example of use (English)" + RELOC/doc/latex/jwjournal/jwjournal-demo-en.tex + RELOC/doc/latex/jwjournal/jwjournal-demo-fr.pdf details="Example of use (French)" + RELOC/doc/latex/jwjournal/jwjournal-demo-fr.tex +runfiles size=2 + RELOC/tex/latex/jwjournal/jwjournal.cls +catalogue-contact-repository https://github.com/Jinwen-XU/jwjournal +catalogue-ctan /macros/latex/contrib/jwjournal +catalogue-license lppl1.3c +catalogue-topics class article-like multilingual expl3 + name kalendarium category Package revision 48744 @@ -154969,6 +162493,40 @@ catalogue-license bsd catalogue-topics luatex parser japanese catalogue-version 1.0 +name kanbun +category Package +revision 62026 +shortdesc Typeset kanbun-kundoku with support for kanbun annotation +relocated 1 +longdesc This package allows users to manually input macros for elements +longdesc in a kanbun-kundoku (Han Wen Xun Du ) paragraph. More +longdesc importantly, it accepts plain text input in the "kanbun +longdesc annotation" form when used with LuaLaTeX, which allows +longdesc typesetting kanbun-kundoku paragraphs efficiently. +containersize 6080 +containerchecksum 2ca12d697ed80a1f3182ac2e28897f670f8d770d99ce6fb3d8cb692e8e40d45afb463959ac8668b60ac7d67c9d8dd8f88ff5ec9e83a96f656ea8cd59ac419187 +doccontainersize 715336 +doccontainerchecksum 853230ef31da0bab5215f62e68162553b5ba54619e1e6b6e84c9c57fbe43b5af5715af2696c384a14807a1cd6507dee600d37bb205e5b82d42cdae15ce30e940 +docfiles size=237 + RELOC/doc/latex/kanbun/README.md details="Readme" + RELOC/doc/latex/kanbun/kanbun-en.pdf details="Package documentation (English)" + RELOC/doc/latex/kanbun/kanbun-en.tex + RELOC/doc/latex/kanbun/kanbun-example.pdf details="Example of use" language="zh,ja" + RELOC/doc/latex/kanbun/kanbun-example.tex + RELOC/doc/latex/kanbun/kanbun-ja.pdf details="Package documentation (Japanese)" language="ja" + RELOC/doc/latex/kanbun/kanbun-ja.tex + RELOC/doc/latex/kanbun/kanbun.tex +runfiles size=8 + RELOC/tex/latex/kanbun/kanbun.lua + RELOC/tex/latex/kanbun/kanbun.sty +catalogue-also gckanbun +catalogue-contact-bugs https://github.com/edward-martyr/kanbun/issues +catalogue-contact-repository https://github.com/edward-martyr/kanbun +catalogue-ctan /macros/latex/contrib/kanbun +catalogue-license lppl1.3 +catalogue-topics chinese japanese use-luatex expl3 +catalogue-version 1.2 + name kantlipsum category Package revision 51727 @@ -155024,35 +162582,36 @@ catalogue-topics engineering maths name karnaugh-map category Package -revision 44131 +revision 61614 shortdesc LaTeX package for drawing karnaugh maps with up to 6 variables relocated 1 longdesc This package draws karnaugh maps with 2, 3, 4, 5, and 6 longdesc variables. It also contains commands for filling the karnaugh longdesc map with terms semi-automatically or manually. Last but not longdesc least it contains commands for drawing implicants on top of the -longdesc map. This package depends on the TikZ, xparse, and xstring -longdesc packages. -containersize 4836 -containerchecksum dc2327e4cda55e4b60365d6354f679f9bc68d87a3d3695eb98c2754d7a5f7f64d65db8732b107f686fc39a07868d4703afc0fba754f42af3fd567a143199580e -doccontainersize 239480 -doccontainerchecksum 0daa9aafafd67df8934ff2b7b31794b23c8ebc53fb142f23111e64957a75904c4813c6f40512e4a440861351a2185884969cffef35209dfddbfd9ac4007e6557 -docfiles size=60 +longdesc map. This package depends on the keyval, kvoptions, TikZ, +longdesc xparse, and xstring packages. +containersize 6116 +containerchecksum 789421645939ff491e3ee00aa06813a5e194108c2d55a5e06ffb4dba593a095352ec54c5194ef8ac536f4226007d2323a923ada94966b5cdbd147117856ba680 +doccontainersize 287964 +doccontainerchecksum 6a04bc71128802a62fa2dbf92a513c9859f9bab336cd2208d05fcd3b9404a1531e4f20cfd69a1d58186cee6660582ab03e89ce87511c3e1173f84bc6ac132f29 +docfiles size=72 RELOC/doc/latex/karnaugh-map/README.md details="Readme" RELOC/doc/latex/karnaugh-map/karnaugh-map.pdf details="Package documentation" -srccontainersize 8056 -srccontainerchecksum 3de03d6661f8a8d0955de760bd8e0a9e2c5592e1ec95e55224994c9b5580036da6c20a9e68a2e59195fbdbbe0ffb5f431dd025400a3c1c57c44fa92000575dfc -srcfiles size=16 +srccontainersize 9980 +srccontainerchecksum 520bcc77beb97f2f106c92682898244160c2ee45ec85118776dc375763363b272e1459e73d3cfe1c27c7f82f24f723953bc9705cf1f506e7c4b679c0f3063804 +srcfiles size=19 RELOC/source/latex/karnaugh-map/karnaugh-map.dtx RELOC/source/latex/karnaugh-map/karnaugh-map.ins -runfiles size=8 +runfiles size=11 RELOC/tex/latex/karnaugh-map/karnaugh-map.sty catalogue-also karnaugh karnaughmap +catalogue-contact-bugs https://github.com/2pi/karnaugh-map/issues catalogue-contact-repository https://github.com/2pi/karnaugh-map catalogue-ctan /graphics/pgf/contrib/karnaugh-map -catalogue-license other-free +catalogue-license cc-by-sa-3 catalogue-topics maths engineering pgf-tikz -catalogue-version 1.1 +catalogue-version 2.0 name karnaughmap category Package @@ -155109,6 +162668,40 @@ catalogue-ctan /macros/generic/kastrup catalogue-license other-free catalogue-topics numbers +name kaytannollista-latexia +category Package +revision 65461 +shortdesc Practical manual for LaTeX (Finnish) +relocated 1 +longdesc "Kaytannollista Latexia" is a practical manual for LaTeX +longdesc written in the Finnish language. The manual covers most of the +longdesc topics that a typical document author needs. So it can be a +longdesc useful guide for beginners as well as a reference manual for +longdesc advanced users. +containersize 568 +containerchecksum dd0c2543cb40e8b1f36f29f2be3675874ce4a51538cf54584af0393e74a0acb9674a40433256d8629ceb68acb4d2d8641e97c5f19a3a0709843837a1279a10cb +doccontainersize 998428 +doccontainerchecksum 35056d4df46d7a935d600ee6e670a3a3221524c8e4ed1ac6da638c0fe645bd6b2786dbc2d512558c65e6675f0c5e7ca27dd3dd83eca81ca8a1d4d8cc1a18dfca +docfiles size=371 + RELOC/doc/latex/kaytannollista-latexia/README.md details="Readme" + RELOC/doc/latex/kaytannollista-latexia/kaytannollista-latexia.pdf details="The document itself" language="fi" + RELOC/doc/latex/kaytannollista-latexia/kaytannollista-latexia.tex + RELOC/doc/latex/kaytannollista-latexia/kirjallisuutta.bib + RELOC/doc/latex/kaytannollista-latexia/luku-asetukset.tex + RELOC/doc/latex/kaytannollista-latexia/luku-erikoiset.tex + RELOC/doc/latex/kaytannollista-latexia/luku-esipuhe.tex + RELOC/doc/latex/kaytannollista-latexia/luku-merkintakieli.tex + RELOC/doc/latex/kaytannollista-latexia/luku-rakenne.tex + RELOC/doc/latex/kaytannollista-latexia/luku-valmistautuminen.tex + RELOC/doc/latex/kaytannollista-latexia/tavutusvihjeet.tex + RELOC/doc/latex/kaytannollista-latexia/versio.tex +catalogue-contact-bugs https://github.com/tlikonen/latex-opas/issues +catalogue-contact-repository https://github.com/tlikonen/latex-opas +catalogue-ctan /info/kaytannollista-latexia +catalogue-license cc-by-sa-4 +catalogue-topics tut-latex finnish-doc +catalogue-version 2023 + name kblocks category Package revision 57617 @@ -155177,6 +162770,59 @@ catalogue-license lppl1.3 catalogue-topics dissertation class catalogue-version 1.0 +name kdpcover +category Package +revision 65150 +shortdesc Covers for books published by Kindle Direct Publishing +relocated 1 +longdesc The problem this class solves is the necessity to change the +longdesc size of the cover PDF according to the number of pages in the +longdesc book -- the bigger the book, the larger the spine of the book +longdesc must be. The provided class makes the necessary calculations +longdesc on-the-fly, using the qpdf tool. Obviously, you need to have it +longdesc installed. Also, you must run pdflatex with the --shell-escape +longdesc option, in order to allow LaTeX to run qpdf. +depend anyfontsize +depend geometry +depend graphics +depend microtype +depend pgf +depend setspace +depend textpos +depend tools +depend xcolor +depend xifthen +depend xkeyval +containersize 23156 +containerchecksum d68fa467a50f7d1648e51b918201b76c199920e39915a3c5fcc72cd75c4b11b0924082cf8c01363fe5af998c66ffae71137e7f9635e147ed40ed5e7cd4fd63cb +doccontainersize 356896 +doccontainerchecksum 880f981153526b41cc128677d950e52b4ff5449adc4fbb3b0004a983bcc7222fb64714ca033b605172fe0b52107e6cc8ff0fcbd1778bf7aa6b9d20fa994ef452 +docfiles size=107 + RELOC/doc/latex/kdpcover/DEPENDS.txt + RELOC/doc/latex/kdpcover/LICENSE.txt + RELOC/doc/latex/kdpcover/README.md details="Readme" + RELOC/doc/latex/kdpcover/cactus.pdf + RELOC/doc/latex/kdpcover/kdpcover.pdf details="Package documentation" + RELOC/doc/latex/kdpcover/yb-book-logo.pdf +srccontainersize 5100 +srccontainerchecksum e67cc3eede96c42506beb03d8e4e7db1b5fd4a7ed15026a060c3a5db559c0abc7fe0f9e24c22b23d2aff7c7979005f0c26d250607129d29b6d4bc9babc0e11be +srcfiles size=5 + RELOC/source/latex/kdpcover/kdpcover.dtx + RELOC/source/latex/kdpcover/kdpcover.ins +runfiles size=13 + RELOC/tex/latex/kdpcover/kdpcover-signature.pdf + RELOC/tex/latex/kdpcover/kdpcover-vol-1.pdf + RELOC/tex/latex/kdpcover/kdpcover-vol-2.pdf + RELOC/tex/latex/kdpcover/kdpcover-vol-3.pdf + RELOC/tex/latex/kdpcover/kdpcover-vol-4.pdf + RELOC/tex/latex/kdpcover/kdpcover.cls +catalogue-contact-bugs https://github.com/yegor256/kdpcover/issues +catalogue-contact-repository https://github.com/yegor256/kdpcover +catalogue-ctan /macros/latex/contrib/kdpcover +catalogue-license mit +catalogue-topics covers class doc-templ std-conform +catalogue-version 0.5.1 + name kerkis category Package revision 56271 @@ -156343,15 +163989,6 @@ containerchecksum d106825d5a0d971562974f15024f080d7d1e960497969b4b4fd28f31d90860 binfiles arch=armhf-linux size=1 bin/armhf-linux/ketcindy -name ketcindy.i386-cygwin -category Package -revision 49033 -shortdesc i386-cygwin files of ketcindy -containersize 340 -containerchecksum 9956776f379f7bb7bd03abdb0111b521bb3fa95e5fda18a7c9360044601a092df7d96d2b70aae31293764f2996e5a7dc17ea056b54cf9c9b886ad8066da02876 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ketcindy - name ketcindy.i386-freebsd category Package revision 49033 @@ -156397,14 +164034,14 @@ containerchecksum 66e789cb6056ba27df46ad478bac99e29ef304344142f160a5c543441aa2b0 binfiles arch=universal-darwin size=1 bin/universal-darwin/ketcindy -name ketcindy.win32 +name ketcindy.windows category Package -revision 49033 -shortdesc win32 files of ketcindy -containersize 684 -containerchecksum 6f28e9fefe4712512e5c62eb2fd4e54f18153678dbbbd61b4580b84d39a0e7d561fcdecde9cc8f2d0586d14e6cdba9071db025c968a8288bc2b09d2e19aa829d -binfiles arch=win32 size=1 - bin/win32/ketcindy.exe +revision 65891 +shortdesc windows files of ketcindy +containersize 2308 +containerchecksum 4a7f3917295d5c338be99b509049c33a46af394aebde705f443c964e96cd6031f21d62302455d1e1832ca737e7e33816a6152996bc455a1a4a34f17124a24d41 +binfiles arch=windows size=2 + bin/windows/ketcindy.exe name ketcindy.x86_64-cygwin category Package @@ -156486,7 +164123,7 @@ catalogue-version 3.1415 name keyfloat category Package -revision 52160 +revision 65446 shortdesc Provides a key/value interface for generating floats relocated 1 longdesc The keyfloat package provides a key/value user interface for @@ -156505,27 +164142,27 @@ longdesc columns, continuing to the next row if necessary. Nested longdesc sub-rows may be used to generate layouts such as two small longdesc figures placed vertically next to one larger figure. Subfloats longdesc are supported by two environments. -containersize 6644 -containerchecksum 3d2be77c6ff60292b3cb50e8033d5f182fa731b6b435e4eec4d6a3f4376e6f0487a6bc5bfbb59da37ba6d620721f3756e42a795bc26547d2218f66b2dcf82a4d -doccontainersize 1033348 -doccontainerchecksum b678b7e0fac699625b9638b67e3e00b892ed4d0a01d78ef0fb13ce65d2a1e74afea50bbb9f4ffbfaa37b1e80a96dd1cd8f8420e8b1b5f1cbf6f6155d745a7604 -docfiles size=259 +containersize 7112 +containerchecksum aeb72770dda420e3694b98ba4d9071e814b0fea850ca6876769c44ad4b7fb1b3873db0e2eddebfbc85b11603f301826dc5d04c9aa5d9e250c807d3ffa795de79 +doccontainersize 1052496 +doccontainerchecksum 19a7aa10ea4916fdfbbddd9e843db4b312a2bd5a24192fd980b34bdf5669dfe3dc5553089bb3fbd7a892167a9fa21a0424c7461a881fe2ab16f353b9c0216376 +docfiles size=264 RELOC/doc/latex/keyfloat/README.txt details="Readme" RELOC/doc/latex/keyfloat/images/image.pdf RELOC/doc/latex/keyfloat/images/image2.pdf RELOC/doc/latex/keyfloat/keyfloat.pdf details="Package documentation" -srccontainersize 27136 -srccontainerchecksum 32c7cfd96870d94034984b923d47075a2e071df11290f076ddb4def33236aa3ca40118382072b3d17aeb8d8fa263c1c0575182ff5b91a4c410f6c7268100eefa -srcfiles size=35 +srccontainersize 31332 +srccontainerchecksum f0d8d54049cb79aa54d52b6c669104e6c9928e863d70df6dd434f6842bfee3bd653c4249732feb11237c5db88010d4ef0bae7f1238b19ffb807e33d4bfeb0573 +srcfiles size=42 RELOC/source/latex/keyfloat/keyfloat.dtx RELOC/source/latex/keyfloat/keyfloat.ins -runfiles size=9 +runfiles size=10 RELOC/tex/latex/keyfloat/keyfloat.sty catalogue-contact-home http://bdtechconcepts.com catalogue-ctan /macros/latex/contrib/keyfloat catalogue-license lppl1.3 catalogue-topics float -catalogue-version 2.01 +catalogue-version 2.08 name keyindex category Package @@ -156560,6 +164197,34 @@ catalogue-license lppl1.3c catalogue-topics index catalogue-version 1.0 +name keyparse +category Package +revision 60277 +shortdesc Key based parser +relocated 1 +longdesc This LaTeX package provides an interface to define and evaluate +longdesc key-based replacement rules. It can be used to parse the +longdesc argument specification of a document command. +containersize 1620 +containerchecksum f3ca8d0b78d9e20bf99e46ebf181d670fe6d936f9d91f1059056820f8be1a9be6eb6278fdda8b118a5f82d376440681dc4cf9a063bb6693df67d5e2d47b3a5dc +doccontainersize 560836 +doccontainerchecksum 01b6aa91350a1ebad4f37be4051a4bdc97939392a6ec2b7708de77d06a575c14fa3f9bc9a8b98ac5d73428555389aa6bd0f9439dd299c2b34e19b7800eb2a27a +docfiles size=142 + RELOC/doc/latex/keyparse/README.md details="Readme" + RELOC/doc/latex/keyparse/keyparse.pdf details="Package documentation" +srccontainersize 4836 +srccontainerchecksum 2eb4c90abed3e2676bce4865ad4254b6f572a69edf63ba82a5a9b3c994343f8d3a3523dd465b94d6afe814364c41a581dc84d49c9e21be6dc4231c3f850eafe9 +srcfiles size=5 + RELOC/source/latex/keyparse/keyparse.dtx + RELOC/source/latex/keyparse/keyparse.ins +runfiles size=1 + RELOC/tex/latex/keyparse/keyparse.sty +catalogue-contact-repository https://github.com/rogard/keyparse +catalogue-ctan /macros/latex/contrib/keyparse +catalogue-license lppl1.3c +catalogue-topics macro-supp expl3 +catalogue-version 1.1 + name keyreader category Package revision 28195 @@ -156644,7 +164309,7 @@ catalogue-version 0.0.2 name keyvaltable category Package -revision 54677 +revision 65416 shortdesc Re-usable table layouts separating content and presentation relocated 1 longdesc The main goal of this package is to offer means for typesetting @@ -156654,26 +164319,90 @@ longdesc for tables of the same type. For this purpose, the package longdesc provides the environment KeyValTable, which allows one to longdesc typeset tables that have a previously defined column layout and longdesc whose rows can be produced in a key-value fashion. -containersize 8740 -containerchecksum 5f3f337347df00a955dd7d7694a51ecce15027580d2264da3f580cb9ea602f6e1583f41e72cbe39a5d4ffb36640eb26cd39132967e0e5a138de8703eb1651de7 -doccontainersize 459000 -doccontainerchecksum 7709c3ea7ad6fac4625620bc86bddeda751c6e36accf7b14b3dab2d5280c77ee4b704b2657511c4226efaffc7db79cb8eea068566ae099354920a522975dbef5 -docfiles size=117 +containersize 10088 +containerchecksum 733d7e2f07b07b1b7f0538f54c0dce33a706210203c9aaeb203c7c4129859d025d20a1afc973f5320102c89bcac78547213707802726367311625ab89566492b +doccontainersize 902524 +doccontainerchecksum 7b3cf84548c2a8d997b8cb5ff3cdf77a40ff309220fb6d109fcb8215e78c8b93f44e495f3da7d92a3e144c1635473fe8780cc45acd9e978f12faa7dcbbff9893 +docfiles size=225 RELOC/doc/latex/keyvaltable/README.md details="Readme" RELOC/doc/latex/keyvaltable/keyvaltable.pdf details="Package documentation" -srccontainersize 37812 -srccontainerchecksum aeab384eab5a414cdee5162ccfea90284e9ccaa96129a2fcd77059abcdf2039350a8f6e17f4d5a7ea8759cf414daa620d12eb85ac42523ecfca70e6424e5df6c -srcfiles size=42 +srccontainersize 42384 +srccontainerchecksum 0bed97c004ebb8aa8af13d226c10fa01e00459534a061d5bb9500e7d5376fd379f67310cb169e2c1fbcc0e07f4e5c35d096ef1ab65b92a1b78481fbd7e90e1b0 +srcfiles size=48 RELOC/source/latex/keyvaltable/keyvaltable.dtx RELOC/source/latex/keyvaltable/keyvaltable.ins -runfiles size=10 +runfiles size=11 RELOC/tex/latex/keyvaltable/keyvaltable.sty catalogue-contact-bugs https://github.com/Ri-Ga/keyvaltable/issues catalogue-contact-repository https://github.com/Ri-Ga/keyvaltable catalogue-ctan /macros/latex/contrib/keyvaltable catalogue-license lppl1.2 catalogue-topics table -catalogue-version 2.2 +catalogue-version 2.3 + +name kfupm-math-exam +category Package +revision 63977 +shortdesc A LaTeX document style to produce homework, quiz and exam papers +relocated 1 +longdesc The package provides commands and environments that simplify +longdesc and streamline the process of preparing homework, quiz and exam +longdesc papers according to apreffered style. The default style is +longdesc based on the guidelines set by the department of mathematics at +longdesc King Fahd University of Petroleum and Minerals (KFUPM). It can +longdesc be easily customized to fit any style for any institution. +containersize 4120 +containerchecksum cb050347cc1cfab5e2ef5c248b6460edb50779b81216f3b9277700780922c94e44ea2c14696b470111421de1e049378811645cde6dba004c23631f2111cadab9 +doccontainersize 63204 +doccontainerchecksum 8cebb9035b23e1919fc9428e9f57335ecfda9c98214fec78f95d665f44060cdab2aff6a9ae22eb124a6da7716e88971f559084f64f7b1c1456e95dcd03c00307 +docfiles size=20 + RELOC/doc/latex/kfupm-math-exam/LICENSE + RELOC/doc/latex/kfupm-math-exam/README.txt details="Readme" + RELOC/doc/latex/kfupm-math-exam/kfupm-math-exam.pdf details="Package documentation" + RELOC/doc/latex/kfupm-math-exam/kfupm-math-exam.tex +srccontainersize 4852 +srccontainerchecksum 0a7dbdfb80a3ae91b23256839c8174b3db13ec23f3dca35bba422440897ade8b33c0ecd8d8c76367241e71abe9b12c5d69a07bb9d0a1962d080a6d89e76a50e2 +srcfiles size=4 + RELOC/source/latex/kfupm-math-exam/kfupm-math-exam.dtx + RELOC/source/latex/kfupm-math-exam/kfupm-math-exam.ins +runfiles size=3 + RELOC/tex/latex/kfupm-math-exam/kfupm-math-exam.cls +catalogue-contact-bugs https://github.com/mmogib/kfupm-math-exam/issues +catalogue-contact-development https://github.com/mmogib/kfupm-math-exam +catalogue-contact-home https://github.com/mmogib/kfupm-math-exam +catalogue-contact-repository https://github.com/mmogib/kfupm-math-exam +catalogue-ctan /macros/latex/contrib/kfupm-math-exam +catalogue-license mit +catalogue-topics exam +catalogue-version 0.1.0 + +name kinematikz +category Package +revision 61392 +shortdesc Design kinematic chains and mechanisms +relocated 1 +longdesc This package provides functionalities to draw kinematic +longdesc diagrams for mechanisms using dedicate symbols (some from the +longdesc ISO standard and others). The intention is not to represent CAD +longdesc mechanical drawings of mechanisms and robots, but only to +longdesc represent 2D and 3D kinematic chains. The package provides +longdesc links, joints and other symbols, mostly in the form of TikZ pic +longdesc objects. These pics can be placed in the canvas either by a +longdesc central point for joints, and start and end points for some +longdesc links. +containersize 23308 +containerchecksum 6f23b8084247aa807c5738468f005fbaaed59559828247f269dcc24e62535984bf7805c69aea27b889d01b2afa04ad67811a0cc8e0ffdea7e263f9ac9c384fc4 +doccontainersize 1260 +doccontainerchecksum b5fb6a456f042a677866f9fee3bc7a13a8405ab6fcad590ba37dc9d681e61d04abdfe6bbab5009cc1d79f73859a1fdec137c92e6c0d367b1d801ca2d41d69160 +docfiles size=2 + RELOC/doc/latex/kinematikz/README details="Readme" + RELOC/doc/latex/kinematikz/README.TEXLIVE +runfiles size=29 + RELOC/tex/latex/kinematikz/kinematikz.sty +catalogue-ctan /graphics/pgf/contrib/kinematikz +catalogue-license lppl1.3 gpl +catalogue-topics pgf-tikz physics +catalogue-version 1.0 name kix category Package @@ -156920,7 +164649,7 @@ catalogue-topics diagram name knowledge category Package -revision 58724 +revision 61991 shortdesc Displaying, hyperlinking, and indexing notions in a document relocated 1 longdesc The package offers a systematic way to handle @@ -156928,31 +164657,29 @@ longdesc notions/concepts/terms throughout a document. It helps building longdesc an index. In combination with hyperref it makes it easy to have longdesc every reference of a concept linked to its introduction. It longdesc also offers simple notations. -containersize 21536 -containerchecksum 22b67c0c0833f593ec0ca072744986212d34765945e8e18e0ac37c1ceba26109e98e41ad6535df066cd8091757a55fc644c311159b734fe69952845fcaed1c31 -doccontainersize 772396 -doccontainerchecksum 99b2a1f7bf227317dfa946d0c500f4b3b018d9348b3e71eae188fa3b14df61ad0ea9a63297e186b6555c0ac002150fda71aeedf8abcea20065a13c6c39f0ccae -docfiles size=225 +containersize 22776 +containerchecksum dac315840aaabc1efb96d52d96e1ee789f61c65964c0343fc35d340694a3f13f7cf9e0ab101bbead9f3d25ef9e3ea2723916864abdd192a89c319a0370b566a5 +doccontainersize 812816 +doccontainerchecksum 0f95f35d60513fb181efa2d5d9579efa000838647b167521b364305774be164731c4c09ba4fa739ed3749cd5c43b19b59cd417f8237bbca2f930bc4b22ba0c68 +docfiles size=238 RELOC/doc/latex/knowledge/README.md details="Readme" RELOC/doc/latex/knowledge/knowledge-example.tex RELOC/doc/latex/knowledge/knowledge.pdf details="Package documentation" RELOC/doc/latex/knowledge/knowledge.tex RELOC/doc/latex/knowledge/makefile -srccontainersize 41004 -srccontainerchecksum fe2cef9c5ddc8cfb133291d3340546d75168568211c99f3db5b87d6029fabc85027d382df5210d70e52b782b15728493932b9f15e5673911d821cf656bc56f57 -srcfiles size=54 +srccontainersize 42572 +srccontainerchecksum 5843dfc2fec15d5cd0a57eeb5aec12bfefa2914bdb8f4ebe2522e6576fcbea73f5663b437ff2654f8ddd7d6f8ef92ecc8aa96c59bf7d76ac58029fee85e1bb8d +srcfiles size=57 RELOC/source/latex/knowledge/knowledge-code.dtx RELOC/source/latex/knowledge/knowledge-configuration.dtx RELOC/source/latex/knowledge/knowledge-utils.dtx RELOC/source/latex/knowledge/knowledge.ins -runfiles size=32 +runfiles size=35 RELOC/tex/latex/knowledge/knowledge.sty -catalogue-contact-home https://www.irif.fr/~colcombe/knowledge_en.html -catalogue-contact-repository https://www.irif.fr/~colcombe/Knowledge/ catalogue-ctan /macros/latex/contrib/knowledge catalogue-license lppl1.2 catalogue-topics index label-ref expl3 -catalogue-version 1.25 +catalogue-version 1.28 name knuth-errata category Package @@ -156989,6 +164716,119 @@ catalogue-ctan /systems/knuth/dist/errata catalogue-license knuth catalogue-topics doc-errata +name knuth-hint +category Package +revision 62971 +shortdesc HINT collection of typeset C/WEB sources in TeX Live +relocated 1 +longdesc The knuth-hint package contains the large collection of HINT +longdesc documents for many of the CWEB amd WEB sources of programs in +longdesc the TeX Live distribution (and, for technical reasons, PDF +longdesc documents for CTWILL and XeTeX). Each program is presented in +longdesc its original form as written by the respective authors, and in +longdesc the "changed" form as used in TeX Live. Care has been taken to +longdesc keep the section numbering intact, so that you can study the +longdesc codes and the changes in parallel. Also included are the +longdesc "errata" for Donald Knuth's "Computers & Typesetting". HINT is +longdesc the dynamic document format created by Martin Ruckert's HiTeX +longdesc engine that was added to TeX Live 2022. The HINT files can be +longdesc viewed on Linux, Windows, and Android with the hintview +longdesc application. The knuth-hint package is a showcase of HiTeX's +longdesc capabilities. +containersize 888 +containerchecksum 0fee38074b4f7abb32f021259951072ee662ab96bcf7127e14e0e3fa68fa981a533a9112a56eaa7a71da48805737abdf3db3d41acc012300217082068e72c10a +doccontainersize 19402560 +doccontainerchecksum 0cefe2852a97aa680989280e7e2349dce4355f5442ca34334b585596eae9923537a5acada9fca5e90eb4ff10a817df58f6bac35c5944b407cf3d6cb87cc745d9 +docfiles size=13422 + RELOC/doc/generic/knuth-hint/README.md details="Readme" + RELOC/doc/generic/knuth-hint/bibtex/bibtex-changes.hnt + RELOC/doc/generic/knuth-hint/bibtex/bibtex.hnt + RELOC/doc/generic/knuth-hint/ctie/ctie-changes.hnt + RELOC/doc/generic/knuth-hint/ctie/ctie.hnt + RELOC/doc/generic/knuth-hint/cweb/common-changes.hnt + RELOC/doc/generic/knuth-hint/cweb/common.hnt + RELOC/doc/generic/knuth-hint/cweb/ctangle-changes.hnt + RELOC/doc/generic/knuth-hint/cweb/ctangle.hnt + RELOC/doc/generic/knuth-hint/cweb/ctwill.pdf + RELOC/doc/generic/knuth-hint/cweb/cweave-changes.hnt + RELOC/doc/generic/knuth-hint/cweb/cweave.hnt + RELOC/doc/generic/knuth-hint/cweb/cwebman.hnt + RELOC/doc/generic/knuth-hint/cweb/refsort-changes.hnt + RELOC/doc/generic/knuth-hint/cweb/refsort.hnt + RELOC/doc/generic/knuth-hint/cweb/twinx-changes.hnt + RELOC/doc/generic/knuth-hint/cweb/twinx.hnt + RELOC/doc/generic/knuth-hint/errata/errata.eight.hnt + RELOC/doc/generic/knuth-hint/errata/errata.eleven.hnt + RELOC/doc/generic/knuth-hint/errata/errata.five.hnt + RELOC/doc/generic/knuth-hint/errata/errata.four.hnt + RELOC/doc/generic/knuth-hint/errata/errata.hnt + RELOC/doc/generic/knuth-hint/errata/errata.nine.hnt + RELOC/doc/generic/knuth-hint/errata/errata.one.hnt + RELOC/doc/generic/knuth-hint/errata/errata.seven.hnt + RELOC/doc/generic/knuth-hint/errata/errata.six.hnt + RELOC/doc/generic/knuth-hint/errata/errata.ten.hnt + RELOC/doc/generic/knuth-hint/errata/errata.three.hnt + RELOC/doc/generic/knuth-hint/errata/errata.twelve.hnt + RELOC/doc/generic/knuth-hint/errata/errata.two.hnt + RELOC/doc/generic/knuth-hint/errata/errorlog.hnt + RELOC/doc/generic/knuth-hint/etc/vftovp-changes.hnt + RELOC/doc/generic/knuth-hint/etc/vftovp.hnt + RELOC/doc/generic/knuth-hint/etc/vptovf-changes.hnt + RELOC/doc/generic/knuth-hint/etc/vptovf.hnt + RELOC/doc/generic/knuth-hint/index.html + RELOC/doc/generic/knuth-hint/index.pdf + RELOC/doc/generic/knuth-hint/mf/mf-changes.hnt + RELOC/doc/generic/knuth-hint/mf/mf.hnt + RELOC/doc/generic/knuth-hint/mf/trapman.hnt + RELOC/doc/generic/knuth-hint/mfware/gftodvi-changes.hnt + RELOC/doc/generic/knuth-hint/mfware/gftodvi.hnt + RELOC/doc/generic/knuth-hint/mfware/gftopk-changes.hnt + RELOC/doc/generic/knuth-hint/mfware/gftopk.hnt + RELOC/doc/generic/knuth-hint/mfware/gftype-changes.hnt + RELOC/doc/generic/knuth-hint/mfware/gftype.hnt + RELOC/doc/generic/knuth-hint/mfware/mft-changes.hnt + RELOC/doc/generic/knuth-hint/mfware/mft.hnt + RELOC/doc/generic/knuth-hint/other/dvicopy-changes.hnt + RELOC/doc/generic/knuth-hint/other/dvicopy.hnt + RELOC/doc/generic/knuth-hint/other/patgen-changes.hnt + RELOC/doc/generic/knuth-hint/other/patgen.hnt + RELOC/doc/generic/knuth-hint/other/pktogf-changes.hnt + RELOC/doc/generic/knuth-hint/other/pktogf.hnt + RELOC/doc/generic/knuth-hint/other/pktype-changes.hnt + RELOC/doc/generic/knuth-hint/other/pktype.hnt + RELOC/doc/generic/knuth-hint/pdftex/pdftex-changes.hnt + RELOC/doc/generic/knuth-hint/pdftex/pdftex.hnt + RELOC/doc/generic/knuth-hint/tex/glue.hnt + RELOC/doc/generic/knuth-hint/tex/tex-changes.hnt + RELOC/doc/generic/knuth-hint/tex/tex.hnt + RELOC/doc/generic/knuth-hint/tex/tripman.hnt + RELOC/doc/generic/knuth-hint/texware/dvitype-changes.hnt + RELOC/doc/generic/knuth-hint/texware/dvitype.hnt + RELOC/doc/generic/knuth-hint/texware/pltotf-changes.hnt + RELOC/doc/generic/knuth-hint/texware/pltotf.hnt + RELOC/doc/generic/knuth-hint/texware/pooltype-changes.hnt + RELOC/doc/generic/knuth-hint/texware/pooltype.hnt + RELOC/doc/generic/knuth-hint/texware/tftopl-changes.hnt + RELOC/doc/generic/knuth-hint/texware/tftopl.hnt + RELOC/doc/generic/knuth-hint/tie/tie-changes.hnt + RELOC/doc/generic/knuth-hint/tie/tie.hnt + RELOC/doc/generic/knuth-hint/web/tangle-changes.hnt + RELOC/doc/generic/knuth-hint/web/tangle.hnt + RELOC/doc/generic/knuth-hint/web/twill.hnt + RELOC/doc/generic/knuth-hint/web/weave-changes.hnt + RELOC/doc/generic/knuth-hint/web/weave.hnt + RELOC/doc/generic/knuth-hint/web/webman.hnt + RELOC/doc/generic/knuth-hint/xetex/xetex-changes.pdf + RELOC/doc/generic/knuth-hint/xetex/xetex.pdf +catalogue-also knuth-pdf +catalogue-contact-home https://github.com/ascherer/web +catalogue-contact-repository https://github.com/ascherer/web +catalogue-contact-support https://tug.org/texmfbug +catalogue-ctan /info/knuth-hint +catalogue-license pd knuth +catalogue-topics collection +catalogue-version 1.0 + name knuth-lib category Package revision 57963 @@ -157083,8 +164923,8 @@ catalogue-topics collection name knuth-pdf category Package -revision 58470 -shortdesc PDF library for C/WEB sources in TeX Live +revision 62969 +shortdesc PDF collection of typeset C/WEB sources in TeX Live relocated 1 longdesc Here you find a large collection of PDF documents for many longdesc C/WEB programs in TeX Live, both in their original form as @@ -157093,18 +164933,17 @@ longdesc they are actually used in the TeX Live system. Care has been longdesc taken to keep the section numbering intact, so that you can longdesc study the sources and their changes in parallel. Also included longdesc is the collection of "errata" for Donald Knuth's "Computers & -longdesc Typesetting series";. Although not all the texts here are +longdesc Typesetting series". Although not all the texts here are longdesc written or maintained by Donald Knuth, it is more convenient longdesc for everything to be collected in one place for reading and -longdesc searching. And they all stem from the system that Knuth -longdesc created. The central entry point is the "index" file, with -longdesc links to the individual documents, either in HTML or in PDF -longdesc format. -containersize 860 -containerchecksum 281dd6f88f543a84b66ecc6b7f53cf1b9c7c295079e97dc722212fdfb337dd5adaea510d687916d477c990042382066e80f0aec3b2eb29d22b29cdf0968f7e1f -doccontainersize 45480112 -doccontainerchecksum b6bb93794b064466c8bf7f79425a55a111a276a9888b720b7780756b5dbab86c6a573dedcd3946e4f7aa661b6bc6eecbc5f92068a50c0f17a3676e4077acfe0b -docfiles size=11873 +longdesc searching. They all stem from the system that Knuth created. +longdesc The central entry point is the "index" file, with links to the +longdesc individual documents, either in HTML or in PDF format. +containersize 856 +containerchecksum 4dbe29f3f595973beb13764e3e8514834a3c5b371a8cb74effedc11e9ec62c72e64e68a314f26bb1cddc491f58bdf01015bd9c3fff4e566d9e5e28a6f5ca52bf +doccontainersize 45532388 +doccontainerchecksum 4bb68abdd5183201848e4000f921f7ee6095480341877f9cb050c923dbb930c962c78854db477d8a7df64a613693d7dc406186b4682a47371975a4c4eaff66fa +docfiles size=11927 RELOC/doc/generic/knuth-pdf/README.md details="Readme" RELOC/doc/generic/knuth-pdf/bibtex/bibtex-changes.pdf RELOC/doc/generic/knuth-pdf/bibtex/bibtex.pdf @@ -157114,7 +164953,6 @@ docfiles size=11873 RELOC/doc/generic/knuth-pdf/cweb/common.pdf RELOC/doc/generic/knuth-pdf/cweb/ctangle-changes.pdf RELOC/doc/generic/knuth-pdf/cweb/ctangle.pdf - RELOC/doc/generic/knuth-pdf/cweb/ctwill-changes.pdf RELOC/doc/generic/knuth-pdf/cweb/ctwill.pdf RELOC/doc/generic/knuth-pdf/cweb/cweave-changes.pdf RELOC/doc/generic/knuth-pdf/cweb/cweave.pdf @@ -157180,6 +165018,7 @@ docfiles size=11873 RELOC/doc/generic/knuth-pdf/tie/tie.pdf RELOC/doc/generic/knuth-pdf/web/tangle-changes.pdf RELOC/doc/generic/knuth-pdf/web/tangle.pdf + RELOC/doc/generic/knuth-pdf/web/twill.pdf RELOC/doc/generic/knuth-pdf/web/weave-changes.pdf RELOC/doc/generic/knuth-pdf/web/weave.pdf RELOC/doc/generic/knuth-pdf/web/webman.pdf @@ -157190,7 +165029,7 @@ catalogue-contact-support https://tug.org/texmfbug catalogue-ctan /info/knuth-pdf catalogue-license pd catalogue-topics collection -catalogue-version 1.1 +catalogue-version 2.0 name koma-moderncvclassic category Package @@ -157222,7 +165061,7 @@ catalogue-version 0.5 name koma-script category TLCore -revision 58585 +revision 64685 shortdesc A bundle of versatile classes and packages relocated 1 longdesc The KOMA-Script bundle provides replacements for the article, @@ -157238,188 +165077,261 @@ longdesc with the standard classes. Since every package has its own longdesc version number, the version number quoted only refers to the longdesc version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea longdesc (which are the main parts of the bundle). -containersize 12947592 -containerchecksum c7df4ac717c0b1ed2508ad52546b3cd1ba84db401f32888461cb0e558bb434abda933bd91b1a9f01b42ea0db9754fbf230e5915caac823d67d8789ac4f7c0f4c -runfiles size=5429 - RELOC/doc/latex/koma-script/INSTALL.txt - RELOC/doc/latex/koma-script/INSTALLD.txt - RELOC/doc/latex/koma-script/README - RELOC/doc/latex/koma-script/koma-script.html - RELOC/doc/latex/koma-script/komabug.tex - RELOC/doc/latex/koma-script/komascr.html - RELOC/doc/latex/koma-script/komascript.html +depend footmisc +containersize 7399992 +containerchecksum 2fe2a07d56107390a191c016c29f7bf77700647b7996957a3802aa89b9b7eacc4cefe1c444b6faa688a147a8b0d9c5d80fca511dc2454a15ada6ddaf6aa3ccb2 +runfiles size=4098 + RELOC/doc/latex/koma-script/MANIFEST.md + RELOC/doc/latex/koma-script/README.md + RELOC/doc/latex/koma-script/examples/ich.lco + RELOC/doc/latex/koma-script/examples/letter-example-00-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-00-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-00-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-00-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-01-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-01-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-01-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-01-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-02-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-02-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-02-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-02-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-03-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-03-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-03-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-03-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-04-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-04-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-04-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-04-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-05-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-05-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-05-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-05-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-06-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-06-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-06-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-06-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-07-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-07-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-07-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-07-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-08-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-08-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-08-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-08-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-09-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-09-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-09-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-09-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-10-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-10-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-10-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-10-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-11-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-11-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-11-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-11-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-12-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-12-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-12-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-12-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-13-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-13-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-13-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-13-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-14-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-14-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-14-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-14-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-15-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-15-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-15-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-15-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-16-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-16-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-16-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-16-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-17-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-17-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-17-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-17-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-18-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-18-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-18-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-18-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-19-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-19-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-19-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-19-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-20-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-20-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-20-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-20-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-21-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-21-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-21-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-21-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-22-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-22-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-22-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-22-en.tex + RELOC/doc/latex/koma-script/examples/letter-example-23-de.pdf + RELOC/doc/latex/koma-script/examples/letter-example-23-de.tex + RELOC/doc/latex/koma-script/examples/letter-example-23-en.pdf + RELOC/doc/latex/koma-script/examples/letter-example-23-en.tex + RELOC/doc/latex/koma-script/examples/me.lco + RELOC/doc/latex/koma-script/examples/musterlogo.eps + RELOC/doc/latex/koma-script/examples/scrjura-example-de.pdf + RELOC/doc/latex/koma-script/examples/scrjura-example-de.tex + RELOC/doc/latex/koma-script/examples/scrjura-example-en.pdf + RELOC/doc/latex/koma-script/examples/scrjura-example-en.tex + RELOC/doc/latex/koma-script/examples/scrlayer-notecolumn-example-de.pdf + RELOC/doc/latex/koma-script/examples/scrlayer-notecolumn-example-de.tex + RELOC/doc/latex/koma-script/examples/scrlayer-notecolumn-example-en.pdf + RELOC/doc/latex/koma-script/examples/scrlayer-notecolumn-example-en.tex 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/scrarticle.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/scrguide-de.pdf + RELOC/doc/latex/koma-script/scrguide-en.pdf RELOC/doc/latex/koma-script/scrhack.html + RELOC/doc/latex/koma-script/scrjura.html + RELOC/doc/latex/koma-script/scrkbase.html RELOC/doc/latex/koma-script/scrlayer-notecolumn.html RELOC/doc/latex/koma-script/scrlayer-scrpage.html RELOC/doc/latex/koma-script/scrlayer.html RELOC/doc/latex/koma-script/scrletter.html + RELOC/doc/latex/koma-script/scrlfile-hook-3.34.html + RELOC/doc/latex/koma-script/scrlfile-hook.html + RELOC/doc/latex/koma-script/scrlfile-patcholdlatex.html RELOC/doc/latex/koma-script/scrlfile.html + RELOC/doc/latex/koma-script/scrlogo.html RELOC/doc/latex/koma-script/scrlttr2.html + RELOC/doc/latex/koma-script/scrreport.html RELOC/doc/latex/koma-script/scrreprt.html RELOC/doc/latex/koma-script/scrtime.html RELOC/doc/latex/koma-script/scrwfile.html RELOC/doc/latex/koma-script/tocbasic.html RELOC/doc/latex/koma-script/typearea.html - RELOC/source/latex/koma-script/Makefile - RELOC/source/latex/koma-script/Makefile.baseinit - RELOC/source/latex/koma-script/Makefile.baserules - RELOC/source/latex/koma-script/doc/Makefile - RELOC/source/latex/koma-script/doc/Makefile.guide - RELOC/source/latex/koma-script/doc/Makefile.latexinit - RELOC/source/latex/koma-script/doc/bin/genhtmlidx.pl - RELOC/source/latex/koma-script/doc/bin/genindex.pl - RELOC/source/latex/koma-script/doc/english/Makefile - RELOC/source/latex/koma-script/doc/english/adrconvnote.tex - RELOC/source/latex/koma-script/doc/english/authorpart.tex - RELOC/source/latex/koma-script/doc/english/common-compatibility.tex - RELOC/source/latex/koma-script/doc/english/common-dictum.tex - RELOC/source/latex/koma-script/doc/english/common-draftmode.tex - RELOC/source/latex/koma-script/doc/english/common-fontsize.tex - RELOC/source/latex/koma-script/doc/english/common-footnotes.tex - RELOC/source/latex/koma-script/doc/english/common-headfootheight.tex - RELOC/source/latex/koma-script/doc/english/common-interleafpage.tex - RELOC/source/latex/koma-script/doc/english/common-lists.tex - RELOC/source/latex/koma-script/doc/english/common-marginpar.tex - RELOC/source/latex/koma-script/doc/english/common-oddorevenpage.tex - RELOC/source/latex/koma-script/doc/english/common-options.tex - RELOC/source/latex/koma-script/doc/english/common-pagestylemanipulation.tex - RELOC/source/latex/koma-script/doc/english/common-parmarkup.tex - RELOC/source/latex/koma-script/doc/english/common-textmarkup.tex - RELOC/source/latex/koma-script/doc/english/common-titles.tex - RELOC/source/latex/koma-script/doc/english/common-typearea.tex - RELOC/source/latex/koma-script/doc/english/expertpart.tex - RELOC/source/latex/koma-script/doc/english/guide-english.tex - RELOC/source/latex/koma-script/doc/english/guide.tex - RELOC/source/latex/koma-script/doc/english/htmlsetup - RELOC/source/latex/koma-script/doc/english/introduction.tex - RELOC/source/latex/koma-script/doc/english/japanlco.tex - RELOC/source/latex/koma-script/doc/english/linkalias.tex - RELOC/source/latex/koma-script/doc/english/preface.tex - RELOC/source/latex/koma-script/doc/english/scraddr.tex - RELOC/source/latex/koma-script/doc/english/scrbase.tex - RELOC/source/latex/koma-script/doc/english/scrbookreportarticle-experts.tex - RELOC/source/latex/koma-script/doc/english/scrbookreportarticle.tex - RELOC/source/latex/koma-script/doc/english/scrdatetime.tex - RELOC/source/latex/koma-script/doc/english/scrextend.tex - RELOC/source/latex/koma-script/doc/english/scrhack.tex - RELOC/source/latex/koma-script/doc/english/scrjura.tex - RELOC/source/latex/koma-script/doc/english/scrjuraexample.tex - RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn-example.tex - RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex - RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex - RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage.tex - RELOC/source/latex/koma-script/doc/english/scrlayer.tex - RELOC/source/latex/koma-script/doc/english/scrlfile.tex - RELOC/source/latex/koma-script/doc/english/scrlttr2-experts.tex - RELOC/source/latex/koma-script/doc/english/scrlttr2.tex - RELOC/source/latex/koma-script/doc/english/scrlttr2examples.dtx - RELOC/source/latex/koma-script/doc/english/scrwfile.tex - RELOC/source/latex/koma-script/doc/english/tocbasic.tex - RELOC/source/latex/koma-script/doc/english/typearea-experts.tex - RELOC/source/latex/koma-script/doc/english/typearea.tex - RELOC/source/latex/koma-script/doc/guide.bib - RELOC/source/latex/koma-script/doc/guide.tex - RELOC/source/latex/koma-script/doc/koma-script.html - RELOC/source/latex/koma-script/doc/komascr.html - RELOC/source/latex/koma-script/doc/komascript.html + RELOC/source/latex/koma-script/doc/authorpart-de.tex + RELOC/source/latex/koma-script/doc/authorpart-en.tex + RELOC/source/latex/koma-script/doc/common-compatibility-de.tex + RELOC/source/latex/koma-script/doc/common-compatibility-en.tex + RELOC/source/latex/koma-script/doc/common-dictum-de.tex + RELOC/source/latex/koma-script/doc/common-dictum-en.tex + RELOC/source/latex/koma-script/doc/common-draftmode-de.tex + RELOC/source/latex/koma-script/doc/common-draftmode-en.tex + RELOC/source/latex/koma-script/doc/common-fontsize-de.tex + RELOC/source/latex/koma-script/doc/common-fontsize-en.tex + RELOC/source/latex/koma-script/doc/common-footnotes-de.tex + RELOC/source/latex/koma-script/doc/common-footnotes-en.tex + RELOC/source/latex/koma-script/doc/common-footnotes-experts-de.tex + RELOC/source/latex/koma-script/doc/common-footnotes-experts-en.tex + RELOC/source/latex/koma-script/doc/common-headfootheight-de.tex + RELOC/source/latex/koma-script/doc/common-headfootheight-en.tex + RELOC/source/latex/koma-script/doc/common-interleafpage-de.tex + RELOC/source/latex/koma-script/doc/common-interleafpage-en.tex + RELOC/source/latex/koma-script/doc/common-lists-de.tex + RELOC/source/latex/koma-script/doc/common-lists-en.tex + RELOC/source/latex/koma-script/doc/common-marginpar-de.tex + RELOC/source/latex/koma-script/doc/common-marginpar-en.tex + RELOC/source/latex/koma-script/doc/common-oddorevenpage-de.tex + RELOC/source/latex/koma-script/doc/common-oddorevenpage-en.tex + RELOC/source/latex/koma-script/doc/common-options-de.tex + RELOC/source/latex/koma-script/doc/common-options-en.tex + RELOC/source/latex/koma-script/doc/common-pagestylemanipulation-de.tex + RELOC/source/latex/koma-script/doc/common-pagestylemanipulation-en.tex + RELOC/source/latex/koma-script/doc/common-parmarkup-de.tex + RELOC/source/latex/koma-script/doc/common-parmarkup-en.tex + RELOC/source/latex/koma-script/doc/common-textmarkup-de.tex + RELOC/source/latex/koma-script/doc/common-textmarkup-en.tex + RELOC/source/latex/koma-script/doc/common-titles-de.tex + RELOC/source/latex/koma-script/doc/common-titles-en.tex + RELOC/source/latex/koma-script/doc/common-typearea-de.tex + RELOC/source/latex/koma-script/doc/common-typearea-en.tex + RELOC/source/latex/koma-script/doc/expertpart-de.tex + RELOC/source/latex/koma-script/doc/expertpart-en.tex + RELOC/source/latex/koma-script/doc/introduction-de.tex + RELOC/source/latex/koma-script/doc/introduction-en.tex + RELOC/source/latex/koma-script/doc/japanlco-en.tex RELOC/source/latex/koma-script/doc/linkalias.tex - RELOC/source/latex/koma-script/doc/ngerman/Makefile - RELOC/source/latex/koma-script/doc/ngerman/adrconvnote.tex - RELOC/source/latex/koma-script/doc/ngerman/authorpart.tex - RELOC/source/latex/koma-script/doc/ngerman/common-compatibility.tex - RELOC/source/latex/koma-script/doc/ngerman/common-dictum.tex - RELOC/source/latex/koma-script/doc/ngerman/common-draftmode.tex - RELOC/source/latex/koma-script/doc/ngerman/common-fontsize.tex - RELOC/source/latex/koma-script/doc/ngerman/common-footnotes.tex - RELOC/source/latex/koma-script/doc/ngerman/common-headfootheight.tex - RELOC/source/latex/koma-script/doc/ngerman/common-interleafpage.tex - RELOC/source/latex/koma-script/doc/ngerman/common-lists.tex - RELOC/source/latex/koma-script/doc/ngerman/common-marginpar.tex - RELOC/source/latex/koma-script/doc/ngerman/common-oddorevenpage.tex - RELOC/source/latex/koma-script/doc/ngerman/common-options.tex - RELOC/source/latex/koma-script/doc/ngerman/common-pagestylemanipulation.tex - RELOC/source/latex/koma-script/doc/ngerman/common-parmarkup.tex - RELOC/source/latex/koma-script/doc/ngerman/common-textmarkup.tex - RELOC/source/latex/koma-script/doc/ngerman/common-titles.tex - RELOC/source/latex/koma-script/doc/ngerman/common-typearea.tex - RELOC/source/latex/koma-script/doc/ngerman/expertpart.tex - RELOC/source/latex/koma-script/doc/ngerman/guide-ngerman.tex - RELOC/source/latex/koma-script/doc/ngerman/guide.tex - RELOC/source/latex/koma-script/doc/ngerman/htmlsetup - RELOC/source/latex/koma-script/doc/ngerman/introduction.tex - RELOC/source/latex/koma-script/doc/ngerman/linkalias.tex - RELOC/source/latex/koma-script/doc/ngerman/preface.tex - RELOC/source/latex/koma-script/doc/ngerman/scraddr.tex - RELOC/source/latex/koma-script/doc/ngerman/scrbase.tex - RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle-experts.tex - RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle.tex - RELOC/source/latex/koma-script/doc/ngerman/scrdatetime.tex - RELOC/source/latex/koma-script/doc/ngerman/scrextend.tex - RELOC/source/latex/koma-script/doc/ngerman/scrhack.tex - RELOC/source/latex/koma-script/doc/ngerman/scrjura.tex - RELOC/source/latex/koma-script/doc/ngerman/scrjuraexample.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn-example.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlayer.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlfile.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlttr2-experts.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlttr2.tex - RELOC/source/latex/koma-script/doc/ngerman/scrlttr2examples.dtx - RELOC/source/latex/koma-script/doc/ngerman/scrwfile.tex - RELOC/source/latex/koma-script/doc/ngerman/tocbasic.tex - RELOC/source/latex/koma-script/doc/ngerman/typearea-experts.tex - RELOC/source/latex/koma-script/doc/ngerman/typearea.tex - RELOC/source/latex/koma-script/doc/plength.dtx - RELOC/source/latex/koma-script/doc/scraddr.html - RELOC/source/latex/koma-script/doc/scrartcl.html - RELOC/source/latex/koma-script/doc/scrbase.html - RELOC/source/latex/koma-script/doc/scrbook.html - RELOC/source/latex/koma-script/doc/scrdate.html - RELOC/source/latex/koma-script/doc/scrextend.html + RELOC/source/latex/koma-script/doc/plength-tikz.tex + RELOC/source/latex/koma-script/doc/preface-de.tex + RELOC/source/latex/koma-script/doc/preface-en.tex + RELOC/source/latex/koma-script/doc/scraddr-de.tex + RELOC/source/latex/koma-script/doc/scraddr-en.tex + RELOC/source/latex/koma-script/doc/scrbase-de.tex + RELOC/source/latex/koma-script/doc/scrbase-en.tex + RELOC/source/latex/koma-script/doc/scrbookreportarticle-de.tex + RELOC/source/latex/koma-script/doc/scrbookreportarticle-en.tex + RELOC/source/latex/koma-script/doc/scrbookreportarticle-experts-de.tex + RELOC/source/latex/koma-script/doc/scrbookreportarticle-experts-en.tex + RELOC/source/latex/koma-script/doc/scrdate-de.tex + RELOC/source/latex/koma-script/doc/scrdate-en.tex + RELOC/source/latex/koma-script/doc/scrdocstrip.tex + RELOC/source/latex/koma-script/doc/scrextend-de.tex + RELOC/source/latex/koma-script/doc/scrextend-en.tex + RELOC/source/latex/koma-script/doc/scrguide-body.tex + RELOC/source/latex/koma-script/doc/scrguide-de.tex + RELOC/source/latex/koma-script/doc/scrguide-en.tex + RELOC/source/latex/koma-script/doc/scrguide.bib RELOC/source/latex/koma-script/doc/scrguide.cls RELOC/source/latex/koma-script/doc/scrguide.gst - RELOC/source/latex/koma-script/doc/scrguide.html RELOC/source/latex/koma-script/doc/scrguide.ist - RELOC/source/latex/koma-script/doc/scrguide.pdf - RELOC/source/latex/koma-script/doc/scrguien.html - RELOC/source/latex/koma-script/doc/scrguien.pdf - RELOC/source/latex/koma-script/doc/scrhack.html - RELOC/source/latex/koma-script/doc/scrlayer-notecolumn.html - RELOC/source/latex/koma-script/doc/scrlayer-scrpage.html - RELOC/source/latex/koma-script/doc/scrlayer.html - RELOC/source/latex/koma-script/doc/scrletter.html - RELOC/source/latex/koma-script/doc/scrlfile.html - RELOC/source/latex/koma-script/doc/scrlttr2.html - RELOC/source/latex/koma-script/doc/scrreprt.html - RELOC/source/latex/koma-script/doc/scrtime.html - RELOC/source/latex/koma-script/doc/scrwfile.html - RELOC/source/latex/koma-script/doc/tocbasic.html - RELOC/source/latex/koma-script/doc/typearea.html + RELOC/source/latex/koma-script/doc/scrhack-de.tex + RELOC/source/latex/koma-script/doc/scrhack-en.tex + RELOC/source/latex/koma-script/doc/scrjura-de.tex + RELOC/source/latex/koma-script/doc/scrjura-en.tex + RELOC/source/latex/koma-script/doc/scrjura-example-de.tex + RELOC/source/latex/koma-script/doc/scrjura-example-en.tex + RELOC/source/latex/koma-script/doc/scrlayer-de.tex + RELOC/source/latex/koma-script/doc/scrlayer-en.tex + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn-de.tex + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn-en.tex + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn-example-de.tex + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn-example-en.tex + RELOC/source/latex/koma-script/doc/scrlayer-scrpage-de.tex + RELOC/source/latex/koma-script/doc/scrlayer-scrpage-en.tex + RELOC/source/latex/koma-script/doc/scrlayer-scrpage-experts-de.tex + RELOC/source/latex/koma-script/doc/scrlayer-scrpage-experts-en.tex + RELOC/source/latex/koma-script/doc/scrlfile-de.tex + RELOC/source/latex/koma-script/doc/scrlfile-en.tex + RELOC/source/latex/koma-script/doc/scrlogo-de.tex + RELOC/source/latex/koma-script/doc/scrlogo-en.tex + RELOC/source/latex/koma-script/doc/scrlttr2-de.tex + RELOC/source/latex/koma-script/doc/scrlttr2-en.tex + RELOC/source/latex/koma-script/doc/scrlttr2-examples.dtx + RELOC/source/latex/koma-script/doc/scrlttr2-experts-de.tex + RELOC/source/latex/koma-script/doc/scrlttr2-experts-en.tex + RELOC/source/latex/koma-script/doc/scrtime-de.tex + RELOC/source/latex/koma-script/doc/scrtime-en.tex + RELOC/source/latex/koma-script/doc/scrwfile-de.tex + RELOC/source/latex/koma-script/doc/scrwfile-en.tex + RELOC/source/latex/koma-script/doc/terms-de.tex + RELOC/source/latex/koma-script/doc/terms-en.tex + RELOC/source/latex/koma-script/doc/tocbasic-de.tex + RELOC/source/latex/koma-script/doc/tocbasic-en.tex + RELOC/source/latex/koma-script/doc/typearea-de.tex + RELOC/source/latex/koma-script/doc/typearea-en.tex + RELOC/source/latex/koma-script/doc/typearea-experts-de.tex + RELOC/source/latex/koma-script/doc/typearea-experts-en.tex + RELOC/source/latex/koma-script/doc/variables-tikz.tex RELOC/source/latex/koma-script/japanlco.dtx + RELOC/source/latex/koma-script/koma-script-source-doc.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-addressfiles.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 @@ -157448,7 +165360,6 @@ runfiles size=5429 RELOC/source/latex/koma-script/scrlfile.dtx RELOC/source/latex/koma-script/scrlogo.dtx RELOC/source/latex/koma-script/scrmain.ins - RELOC/source/latex/koma-script/scrsource.tex RELOC/source/latex/koma-script/scrstrip.inc RELOC/source/latex/koma-script/scrstrop.inc RELOC/source/latex/koma-script/scrtime.dtx @@ -157473,6 +165384,7 @@ runfiles size=5429 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/koma-script-source-doc.cls RELOC/tex/latex/koma-script/listings.hak RELOC/tex/latex/koma-script/lscape.hak RELOC/tex/latex/koma-script/nomencl.hak @@ -157493,6 +165405,7 @@ runfiles size=5429 RELOC/tex/latex/koma-script/scrlayer.sty RELOC/tex/latex/koma-script/scrletter.cls RELOC/tex/latex/koma-script/scrletter.sty + RELOC/tex/latex/koma-script/scrlfile-hook-3.34.sty RELOC/tex/latex/koma-script/scrlfile-hook.sty RELOC/tex/latex/koma-script/scrlfile-patcholdlatex.sty RELOC/tex/latex/koma-script/scrlfile.sty @@ -157511,25 +165424,27 @@ runfiles size=5429 RELOC/tex/latex/koma-script/typearea.sty RELOC/tex/latex/koma-script/visualize.lco catalogue-also scrartcl scrbook -catalogue-contact-home http://www.komascript.de/ +catalogue-contact-development https://sourceforge.net/p/koma-script +catalogue-contact-home https://komascript.de +catalogue-contact-repository https://sourceforge.net/p/koma-script/code catalogue-ctan /macros/latex/contrib/koma-script catalogue-license lppl1.3c -catalogue-topics class letter book-pub page-hf geometry -catalogue-version 3.33 +catalogue-topics class letter book-pub page-hf geometry float toc-etc legal notes addr-list date-time keyval package-mgmt io-mgmt +catalogue-version 3.38 name koma-script-examples category Package -revision 47523 +revision 63833 shortdesc Examples from the KOMA-Script book relocated 1 longdesc This package contains some examples from the 6th edition of the longdesc book >>KOMA-Script<<, >>Eine Sammlung von Klassen und Paketen longdesc fur LaTeX2e<< by Markus Kohm, published by Lehmanns Media. longdesc There are no further descriptions of these examples. -containersize 540 -containerchecksum df9ccc215a2693454b3f8e1cbce816708415e987451cb652c1b3c2121ff073b7dd0311e3a61de493b5591923edd7688edf66e061467d28a5c3ea437f912568f9 +containersize 516 +containerchecksum 03941b9cb516d836b59f493e1e6af7ef409306cc567ace2abc467c7b6c73156819fd23212668ab5506c03697e29840073162dff5f912f605354cf9851ab6dda8 doccontainersize 563260 -doccontainerchecksum 6cdd548d21897f33927ee33be350b77b317777464ce3c7be24223cf10b6200ffb73944d72d0ea8491795de71c9554881ee52ae157a035b667f8c2c74aa1c3641 +doccontainerchecksum d355edd3348b454015a390449e251bf476350385b062d314d9e924b187e85802e815cca97c550073605ec3a91a38a15d2a9af79b7771ec74557067dbedebdbff docfiles size=416 RELOC/doc/latex/koma-script-examples/Anhang-B/result/chapterthumbexample.pdf RELOC/doc/latex/koma-script-examples/Anhang-B/source/chapterthumb.sty @@ -157627,7 +165542,7 @@ docfiles size=416 RELOC/doc/latex/koma-script-examples/LEGAL_DE.txt RELOC/doc/latex/koma-script-examples/LIESMICH.txt details="German Readme" language="de" RELOC/doc/latex/koma-script-examples/README.txt details="English Readme" language="en" -catalogue-contact-home http://www.komascript.de/ +catalogue-contact-home https://komascript.de/ catalogue-ctan /info/examples/KOMA-Script-6 catalogue-license lppl1.3c catalogue-topics book-ex @@ -157739,7 +165654,7 @@ catalogue-version 0.9.2 name kotex-oblivoir category Package -revision 58436 +revision 66513 shortdesc A LaTeX document class for typesetting Korean documents relocated 1 longdesc The class is based on memoir, and is adapted to typesetting @@ -157748,13 +165663,14 @@ longdesc belongs to the ko.TeX bundle. It depends on memoir and longdesc kotex-utf to function. depend kotex-utf depend memoir -containersize 41476 -containerchecksum af873efba59c61bfacad1914a9842a0240b38ce064258a1e4ad0317c396df1a82d62e3372fd4d1386ebcec8c74a552c6a0f9f7f8a950b0b8a4b638b6a518ca73 -doccontainersize 470140 -doccontainerchecksum 921b184ffe6ecb78e44791d86cc622894232d7c4ff439236f2439e501634cd97e3ff1d4432d58fd1750e755010d169ad79c1c9a82941d043bf6dbbf5998d480c -docfiles size=153 +containersize 44392 +containerchecksum ec9022c6f1fb3d888e7624f4ed311327d9f0b9b569f7eaa078d03c275027edbb4cbcf5785d155ec9cc7c68ea1f93f5d527cc769a12609c361250d5bcaf0d9d42 +doccontainersize 543668 +doccontainerchecksum 28d6c7c2ba61c06258020dce099ae1ba339ff1a6c0a1c9b350512914fda062d3cc612cdb4410cb3ccefdef0f0700c6f724a35e1f8c5a0fcfdfe16c090322b59d +docfiles size=187 RELOC/doc/latex/kotex-oblivoir/ChangeLog RELOC/doc/latex/kotex-oblivoir/README details="Readme" + RELOC/doc/latex/kotex-oblivoir/chapstyfig.pdf RELOC/doc/latex/kotex-oblivoir/ob-mathleading-doc.pdf RELOC/doc/latex/kotex-oblivoir/ob-mathleading-doc.tex RELOC/doc/latex/kotex-oblivoir/obchaptertoc-doc.pdf @@ -157762,7 +165678,7 @@ docfiles size=153 RELOC/doc/latex/kotex-oblivoir/oblivoir-simpledoc.pdf details="Package documentation" language="ko" RELOC/doc/latex/kotex-oblivoir/oblivoir-simpledoc.tex RELOC/doc/latex/kotex-oblivoir/oblivoir-test.tex -runfiles size=69 +runfiles size=73 RELOC/tex/latex/kotex-oblivoir/memhangul-common/10_5.sty RELOC/tex/latex/kotex-oblivoir/memhangul-common/fapapersize.sty RELOC/tex/latex/kotex-oblivoir/memhangul-common/memhangul-common.sty @@ -157773,6 +165689,7 @@ runfiles size=69 RELOC/tex/latex/kotex-oblivoir/memhangul-common/ob-nokoreanappendix.sty RELOC/tex/latex/kotex-oblivoir/memhangul-common/ob-toclof.sty RELOC/tex/latex/kotex-oblivoir/memhangul-common/obchaptertoc.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-common/oblivoir-misc.sty RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontsel.sty RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontspec.nanum RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-ucs.sty @@ -157797,21 +165714,21 @@ runfiles size=69 catalogue-ctan /language/korean/kotex-oblivoir catalogue-license lppl1.3c catalogue-topics korean class -catalogue-version 3.0.1 +catalogue-version 3.2.1 name kotex-plain category Package -revision 38630 +revision 63689 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 text should be encoded in UTF-8. The package belongs to the longdesc ko.TeX bundle. -containersize 9052 -containerchecksum f04333a7b7ffa7bee44b2d74bc1c4b0eb22fc57fe0721db0ed3bf260fddd68a6c10d92a041e42fe0ab1f897b5869cd7ff67da168336a708f03d072b4c4cedd68 -doccontainersize 1712 -doccontainerchecksum 55b16054d06f079a5d8bf6baa32155a0114e2a12b0269e1ba07ba988e733ad16cdebc1c991033f7bedbc3a180ef24fa84bb463c07e138136ffd89bab0c48b0e4 +containersize 9116 +containerchecksum 940f6672fd2d490cae446408ed6421c77ada3ea9c0c4820b00a0b38026ed5d30fa2b0f8bf86a5904a8c04b15e561e3f146ae4f817e7e2ef8c3a9284f9c841350 +doccontainersize 1852 +doccontainerchecksum 34a45ea6cda9fa9b6ba453fef795740869b1cc3c3eec84b467847b7221a916f4eada3bac97b78dc6e5a545e12f87f1d56c3540fafa658535f9ca89335bc6b534 docfiles size=2 RELOC/doc/plain/kotex-plain/ChangeLog RELOC/doc/plain/kotex-plain/README details="Readme" @@ -157821,13 +165738,13 @@ runfiles size=11 RELOC/tex/plain/kotex-plain/kotexutf-core.tex RELOC/tex/plain/kotex-plain/kotexutf.tex catalogue-ctan /language/korean/kotex-plain -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics korean plain-ext enc-juggle -catalogue-version 2.1.1a +catalogue-version 3.0.0 name kotex-utf category Package -revision 38558 +revision 63690 shortdesc Typeset Hangul, coded in UTF-8 relocated 1 longdesc The package typesets Hangul, which is the native alphabet of @@ -157835,11 +165752,11 @@ longdesc the Korean language; input Korean text should be encoded in longdesc UTF-8. The bundle (of class and associated packages) belongs to longdesc the ko.TeX bundle. depend cjk-ko -containersize 20496 -containerchecksum 65ce36703d824ae483a53ac6a3550a8d71d140bdeb67d3c9ddd343255cedbb74739c1688b05ae4742703c6c46b3e46deef5c6a7c5571cfe8f8a4003d56aac446 -doccontainersize 6849784 -doccontainerchecksum 692a2d90f404c571aa0dea436436f72139bf2024dc6f3be0b9e48cb57b60e36d1abb79d7e51fb88b5efc83176417b8f74c8b945fbd236c0832873ad8fa65f410 -docfiles size=2066 +containersize 21076 +containerchecksum be75556f3857a405d235f920866f8089f105a57f9accff07a541fe110bb8124e049ebe75368ce3282bcd329cc6a02eed0ccffdfad49020986d61221839cae4b5 +doccontainersize 9496848 +doccontainerchecksum 7226874594b10ee48e8aea30a72e6d6f4db9f770d5d5830dc83a41f828bfe36b0b11f679aff02722e457150548860f1ad719758e6ffd239bbf9ac18d907acded +docfiles size=2814 RELOC/doc/latex/kotex-utf/ChangeLog RELOC/doc/latex/kotex-utf/README details="Readme" RELOC/doc/latex/kotex-utf/fig/allowbreak-dhucs.pdf @@ -157848,12 +165765,13 @@ docfiles size=2066 RELOC/doc/latex/kotex-utf/fig/histkotex.jpg RELOC/doc/latex/kotex-utf/fig/linebreaktest.pdf RELOC/doc/latex/kotex-utf/fig/testdhucsallowbreak.pdf - RELOC/doc/latex/kotex-utf/kotexdoc.pdf details="Package documentation (Korean)" language="ko" - RELOC/doc/latex/kotex-utf/kotexdoc.tex + RELOC/doc/latex/kotex-utf/fig/yettext.pdf + RELOC/doc/latex/kotex-utf/kotex-doc.pdf + RELOC/doc/latex/kotex-utf/kotex-doc.tex + RELOC/doc/latex/kotex-utf/kotex-utf-doc.pdf details="Package documentation (Korean)" language="ko" + RELOC/doc/latex/kotex-utf/kotex-utf-doc.tex RELOC/doc/latex/kotex-utf/sample-finemath-setup.tex - RELOC/doc/latex/kotex-utf/yettext.tex - RELOC/doc/latex/kotex-utf/yettext.txt -runfiles size=38 +runfiles size=39 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 @@ -157871,6 +165789,7 @@ runfiles size=38 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-sections.sty RELOC/tex/latex/kotex-utf/kotex.cfg RELOC/tex/latex/kotex-utf/kotexutf.sty RELOC/tex/latex/kotex-utf/lucenc.dfu @@ -157879,9 +165798,9 @@ runfiles size=38 RELOC/tex/latex/kotex-utf/tex4ht/dhucs.cfg RELOC/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht catalogue-ctan /language/korean/kotex-utf -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics korean -catalogue-version 2.1.2 +catalogue-version 3.0.0 name kotex-utils category Package @@ -157956,17 +165875,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/komkindex bin/armhf-linux/ttf2kotexfont -name kotex-utils.i386-cygwin -category Package -revision 32101 -shortdesc i386-cygwin files of kotex-utils -containersize 412 -containerchecksum d8348558ed0c70ed50ed4abd115bdcbdf9cf72fd6f4ad0579cc55255505f186749d3e4d86d83e777df153e1668cb759aa71a6d383590662bdf5639bd2196393a -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/jamo-normalize - bin/i386-cygwin/komkindex - bin/i386-cygwin/ttf2kotexfont - name kotex-utils.i386-freebsd category Package revision 32101 @@ -158022,16 +165930,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/komkindex bin/universal-darwin/ttf2kotexfont -name kotex-utils.win32 +name kotex-utils.windows category Package -revision 32101 -shortdesc win32 files of kotex-utils -containersize 744 -containerchecksum 73514a29441619841d3a341e7c60f9fc94aa93a334ffc226d53acdd0b9d0452e4b19b54b717cd93c01ccde7c89e39d852643019c0b2eb12bc1e99c1d8c59d87c -binfiles arch=win32 size=3 - bin/win32/jamo-normalize.exe - bin/win32/komkindex.exe - bin/win32/ttf2kotexfont.exe +revision 65891 +shortdesc windows files of kotex-utils +containersize 2416 +containerchecksum faf10835ebe81e3ec4cc6eca4f2a08a2d851a2b416e1c80e4cc937996655b8087011a2ff244aa5522ba60f911a12d293dec2c108051f9b67cf95ba887883c824 +binfiles arch=windows size=6 + bin/windows/jamo-normalize.exe + bin/windows/komkindex.exe + bin/windows/ttf2kotexfont.exe name kotex-utils.x86_64-cygwin category Package @@ -158090,24 +165998,24 @@ binfiles arch=x86_64-solaris size=3 name kpathsea category TLCore -revision 58622 +revision 66209 shortdesc Path searching library for TeX-related files longdesc Kpathsea is a library and utility programs which provide path longdesc searching facilities for TeX file types, including the longdesc self-locating feature required for movable installations, longdesc layered on top of a general search mechanism. It is not longdesc distributed separately, but rather is released and maintained -longdesc as part of the TeX live sources. +longdesc as part of the TeX Live sources. depend kpathsea.ARCH -containersize 32484 -containerchecksum 33e8096a1798a6204c0a6519cd13302e1c80797937aae4ce9e7c4928e4bd75472cd0864cd00ff88d3d6f01fcf1a2e027efbd5d1768024fa5ee23e56094f1b308 -doccontainersize 1072996 -doccontainerchecksum 9d34679ffecc16117ed7d1d6207602ab9466266b48b15d303764fc27301eb9dd4621dbf9ad2dcff85bfcf0c1f762316a412b3925e91f6b31e4da03e46ee51893 -docfiles size=556 +containersize 32520 +containerchecksum 89cdc74e3f82fa3b62afa61e6a946d4cbf25b71193249d1a5f6122b0047ba02645412cda9248dc7cac487c23781e11c2dc1b9fcef4b95c7ad8d230b6253e7637 +doccontainersize 1040296 +doccontainerchecksum b29518a446a11a962ebf795742b947179e5f99653f1be35dcf1cbabaf086d0f0550523cd26567232a475a618bf1cf815d05d0169df3c40d3438759e4a95a78c2 +docfiles size=577 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/NEWS texmf-dist/doc/kpathsea/kpathsea.html texmf-dist/doc/kpathsea/kpathsea.pdf details="Package documentation" texmf-dist/doc/man/man1/kpseaccess.1 @@ -158118,6 +166026,7 @@ docfiles size=556 texmf-dist/doc/man/man1/kpsestat.man1.pdf texmf-dist/doc/man/man1/kpsewhich.1 texmf-dist/doc/man/man1/kpsewhich.man1.pdf + texmf-dist/doc/web2c/NEWS texmf-dist/doc/web2c/web2c.html texmf-dist/doc/web2c/web2c.pdf runfiles size=52 @@ -158152,18 +166061,18 @@ runfiles size=52 texmf-dist/web2c/texmf.cnf texmf-dist/web2c/viscii-t5.tcx catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-home http://tug.org/kpathsea -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/kpathsea/ +catalogue-contact-home https://tug.org/kpathsea +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/kpathsea/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-license lgpl2.1 catalogue-topics sys-supp name kpathsea.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of kpathsea -containersize 38340 -containerchecksum f1bdb3ca6852dfa7d6bd8de658e849e3d4a89709b8856249623c3e1b44b87a9c1e1a257ce50d2029d4257dc3fd6a7fa895311d604f2127ea8305c74400873270 +containersize 38524 +containerchecksum 454d20198a55449cb9cf54e328dc29e129dd452ae5b867c04e24c9bce9b6056e647aa1ac419026dcfe269682ae867a0cf317ecc2e8ac63846e64bdca42aaaef6 binfiles arch=aarch64-linux size=32 bin/aarch64-linux/kpseaccess bin/aarch64-linux/kpsereadlink @@ -158172,10 +166081,10 @@ binfiles arch=aarch64-linux size=32 name kpathsea.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of kpathsea -containersize 42924 -containerchecksum 294252b3a8f4cf83c442ef2d8e4969087c720310c86eb1deaa1f8e8821ec48ddba8d0f83fc690a0401327afca5469c4988c87ee0a9ff5e4f438a34f9d5213ece +containersize 43256 +containerchecksum 7c11662b4b647b2edf76471366efd8b47cb4cd604f28796492ffb5c0e46237432d520817dbf3ae15cb7202b53524e3087de4d5ab89d2064465569ad21e1eb257 binfiles arch=amd64-freebsd size=30 bin/amd64-freebsd/kpseaccess bin/amd64-freebsd/kpsereadlink @@ -158184,10 +166093,10 @@ binfiles arch=amd64-freebsd size=30 name kpathsea.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of kpathsea -containersize 38752 -containerchecksum 22aeba59cd561971281962ec34cf7a18be8f5b98494be54d04476902696fdcd9e7d16635a9707845b72c83466781bdb9d83ed245236ee166c34436423f7d0d6b +containersize 38760 +containerchecksum 8e445c587c44adbd7716b98e64148a0fc4d93b36c6be5c2922679b96934434bfa05ac67f396f1b08fa7ebe60d733d74009c397a68bde727cf1de32ad0afb4d7c binfiles arch=amd64-netbsd size=36 bin/amd64-netbsd/kpseaccess bin/amd64-netbsd/kpsereadlink @@ -158196,35 +166105,22 @@ binfiles arch=amd64-netbsd size=36 name kpathsea.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of kpathsea containersize 32400 -containerchecksum 777ec112d244ea141bc98c283e6d4f97e378881fb7bc93c0584a95873c5ae884e5caddeb65c1c55c5debbd0ee9b8b859c193f722aaeca1a9956a942b1108e1fb +containerchecksum f8b1e3088006644155fa79173e9327306003b8fc963a43749f15803bf1c18b20c7ee5e00ce742461691e08f8c381275a30961abcbef03e35ea0c048db721d322 binfiles arch=armhf-linux size=25 bin/armhf-linux/kpseaccess bin/armhf-linux/kpsereadlink bin/armhf-linux/kpsestat bin/armhf-linux/kpsewhich -name kpathsea.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of kpathsea -containersize 47024 -containerchecksum b25fe26f84b34f85b953f99a58e40b5de52adb743f0c96d8ee98d0773725fa7ae2ca96e6428bcdc4484678399261c87237b6eec0e30f8126dcd88e995fd1b995 -binfiles arch=i386-cygwin size=40 - bin/i386-cygwin/cygkpathsea-6.dll - bin/i386-cygwin/kpseaccess.exe - bin/i386-cygwin/kpsereadlink.exe - bin/i386-cygwin/kpsestat.exe - bin/i386-cygwin/kpsewhich.exe - name kpathsea.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of kpathsea -containersize 38328 -containerchecksum 9844038b46eb2c0b37dd37513fea53d05d79976f7390f47f1056109809e2bf7c187fbf2dc6eaad22ffa313b6ec63f16c5d0a02f59a5c2baac152d6762dce63c9 +containersize 39536 +containerchecksum adf1c4482b2541736fdb72091f2542c8802f542ebb4a0c97f9317075b299f49b0875c76641fa6c578101ecd88ef4eb41e56ef60f74346a9199eea62815974832 binfiles arch=i386-freebsd size=27 bin/i386-freebsd/kpseaccess bin/i386-freebsd/kpsereadlink @@ -158233,10 +166129,10 @@ binfiles arch=i386-freebsd size=27 name kpathsea.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of kpathsea -containersize 42620 -containerchecksum 4651121c2cb264914c64f063837a5435f7fe2a3743b55807153c53cedb6e3f60aea733b0d18b5ee71af708a7c5dea2312f50b0ea7f66c66e661440265ef5470d +containersize 43088 +containerchecksum 14a4c730b2d287e0768f11d2897f25dfdf40dbdd426df28225d55e8f81489cc14be53633a30211a379dcaaa1092fc403e5085046b04c71e44e24bd0b18cf46e9 binfiles arch=i386-linux size=31 bin/i386-linux/kpseaccess bin/i386-linux/kpsereadlink @@ -158245,10 +166141,10 @@ binfiles arch=i386-linux size=31 name kpathsea.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of kpathsea -containersize 35560 -containerchecksum 52cc7316d8ae4eaddce597c6e6b97655de9e5081eb197ce1afdc5e34570dbd12f5566099e3eea62347794697eb4a6eb81ed9a8d00e75bc767cac688f5c5b5d76 +containersize 35528 +containerchecksum 5274fffd61472ea469f05f10c1a43d62bb687bc24847df64b71eb35ecdb5ec2b00e947970d0ce28d6a63f01c642645aa40b9e122a225266c95a4fbdcc7807731 binfiles arch=i386-netbsd size=33 bin/i386-netbsd/kpseaccess bin/i386-netbsd/kpsereadlink @@ -158257,10 +166153,10 @@ binfiles arch=i386-netbsd size=33 name kpathsea.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of kpathsea -containersize 41332 -containerchecksum a70e280b69f4e857edbd99f7bea42076549dd47ec66454fc188bbd0ffcb9d53836488475d037e0214e55681b59dc26f77309984195c7618bc53e566a195645a1 +containersize 41308 +containerchecksum 1aa8b73ab0610c63101bc73a57a68c03660c578491400e63d63bbd21b6cacda754ee1cd9273f55c964f74502504bc5c3450af4a691978f0bdf3092296e1ea70f binfiles arch=i386-solaris size=28 bin/i386-solaris/kpseaccess bin/i386-solaris/kpsereadlink @@ -158269,38 +166165,38 @@ binfiles arch=i386-solaris size=28 name kpathsea.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of kpathsea -containersize 83712 -containerchecksum 8da7bc1520b4c2238ea5d6efd001539aff8ba8fb8e8f9b9c400d847223688ecb530fb78c24ee862567c77ace10627812a633eaf669d84a4d286cf58cccb6a906 -binfiles arch=universal-darwin size=142 +containersize 83868 +containerchecksum 0bf2bc7996eba6c1e81dcb52230a86f9f115bec474232a14e7fbd8a46e25260e16d3f03dd29f80b801b9a31948dee887cc9adff2ebd10bbf9ca46f77957bed6c +binfiles arch=universal-darwin size=154 bin/universal-darwin/kpseaccess bin/universal-darwin/kpsereadlink bin/universal-darwin/kpsestat bin/universal-darwin/kpsewhich -name kpathsea.win32 -category TLCore -revision 58783 -shortdesc win32 files of kpathsea -containersize 487512 -containerchecksum 1ece66a50ddbb88cc14ef8ff93f057c2b543f7c0c74648d841f8bdd8472f513b2211ab729f18b01aa08d862afa96480f1c6f0999a6f24675ce65085b426f03fb -binfiles arch=win32 size=332 - bin/win32/kpathsealib.dll - bin/win32/kpseaccess.exe - bin/win32/kpsereadlink.exe - bin/win32/kpsestat.exe - bin/win32/kpsewhich.exe - bin/win32/mktexupd.exe - bin/win32/msvcp140.dll - bin/win32/msvcr100.dll +name kpathsea.windows +category TLCore +revision 65891 +shortdesc windows files of kpathsea +containersize 518324 +containerchecksum 1272a57eaca59d7310a8a39177afe41c9f861f14bead19543010dc52afae69560b93fbcae26196ecf936bb5ef3a4afd6d51b753d8af3bd14679b9f4414227c60 +binfiles arch=windows size=400 + bin/windows/kpathsealibw64.dll + bin/windows/kpseaccess.exe + bin/windows/kpsereadlink.exe + bin/windows/kpsestat.exe + bin/windows/kpsewhich.exe + bin/windows/mktexupd.exe + bin/windows/msvcp140.dll + bin/windows/msvcr100.dll name kpathsea.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of kpathsea -containersize 45992 -containerchecksum f2be719854aef13ef5f7cc52eebddaab127b726555b1eb5a9df2b05760e339fee0b7d3a5128288f1016ff4cc5df7fb45c4929681d437e914099f5738849fe8da +containersize 45896 +containerchecksum 01219b752f9e9265bfa7d8a4bc3ea081ec8f5748254cb01ebb670858c17f8ca5ff94e138b010c6cd28196dfd4bfa9b7a122f01d944837f6fdca0531451fe06e1 binfiles arch=x86_64-cygwin size=38 bin/x86_64-cygwin/cygkpathsea-6.dll bin/x86_64-cygwin/kpseaccess.exe @@ -158310,10 +166206,10 @@ binfiles arch=x86_64-cygwin size=38 name kpathsea.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of kpathsea -containersize 39540 -containerchecksum 42ec4d87e85929958811d6d5c807f5a0caec51fd7838eaddb2191c574967c107e1f73cf7d5ba7be6adab7db388f59a4d3d5a78243840234933d1cd09b70600a6 +containersize 39468 +containerchecksum b8d85dd8e5df697de75dee4fc2ebb443038c5e75318ea09ab71ae4721a9de9fc11b224fa86f1772b4a1f804bcfe63d8fd6e4b99d2fb536ec1b787bdcb128c20b binfiles arch=x86_64-darwinlegacy size=31 bin/x86_64-darwinlegacy/kpseaccess bin/x86_64-darwinlegacy/kpsereadlink @@ -158322,11 +166218,11 @@ binfiles arch=x86_64-darwinlegacy size=31 name kpathsea.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of kpathsea -containersize 40260 -containerchecksum 1b5155d366e33c2c0717439f1024e4108ec9d1e4c052d30ed547e66b0978f145048362e886feb99ba6674f9093abb77f077efd44da23a69f3d393f5ed42fe8a4 -binfiles arch=x86_64-linux size=28 +containersize 40136 +containerchecksum da2e629dfa2b0d8831bc1509d2fed8138a8c458d3da6ab9cb969e3d99201ade08f63ae0e7388acbfe3c3aea581148b0d49075d2306ffa4fc963e4c107ea9bcce +binfiles arch=x86_64-linux size=35 bin/x86_64-linux/kpseaccess bin/x86_64-linux/kpsereadlink bin/x86_64-linux/kpsestat @@ -158334,11 +166230,11 @@ binfiles arch=x86_64-linux size=28 name kpathsea.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of kpathsea -containersize 44140 -containerchecksum 3b16593d6c1f1194bb585f991161d82f6a196d90ce681098aec611344aeda7f3fbfd38268997078ce5b1ac014836abb9101a71120a2b7b9233d3f5e93da44d95 -binfiles arch=x86_64-linuxmusl size=32 +containersize 43576 +containerchecksum b3edc790fa566d65ab0caddd18ba5fe8d539911473f79dbe7f9ec61c432765f146b735998cf90a6d28fc13429388f7637d84e2153e312c1d3c8fb4866a9aacbe +binfiles arch=x86_64-linuxmusl size=31 bin/x86_64-linuxmusl/kpseaccess bin/x86_64-linuxmusl/kpsereadlink bin/x86_64-linuxmusl/kpsestat @@ -158346,10 +166242,10 @@ binfiles arch=x86_64-linuxmusl size=32 name kpathsea.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of kpathsea -containersize 44648 -containerchecksum 8f7be67242f2b4596c00115e7815d1336474cec5e685d8fb3a0083591bac88091ecfd84ac8fd0d4980c3b8e40c9796a78c98d62bbb753814e561e1284e8f73fc +containersize 44616 +containerchecksum fdcdf115d1a317a186461a00bb6c6b9c675ce0c2121434f089b5b3151f3d75c3ac3c0e5181d92c91a26ebc96b2aa0d8573e62edcc3388c8f478d3e2aecf0ed9f binfiles arch=x86_64-solaris size=33 bin/x86_64-solaris/kpseaccess bin/x86_64-solaris/kpsereadlink @@ -158358,7 +166254,7 @@ binfiles arch=x86_64-solaris size=33 name kpfonts category Package -revision 55643 +revision 65583 shortdesc A complete set of fonts for text and mathematics relocated 1 longdesc The family contains text fonts in roman, sans-serif and @@ -158377,27 +166273,74 @@ longdesc originally derived from URW Palladio (with URW's agreement) longdesc though the fonts are very clearly different in appearance from longdesc their parent. execute addMap kpfonts.map -containersize 2205528 -containerchecksum 80ac89fcf4e17560781d3f5774d39b47dee0851938409e0fda6837f99d9781c5669d1e6f3c7f27b08ce2e76bf884da7de95d5e66664a1b9e4c012063ed4a6f45 -doccontainersize 1759292 -doccontainerchecksum fee8417e0bfb66a6ebd6869eba5d5cb64ffa64259925b9ef8c150c24d0e3ca5d15c82d3769542245c835189d7afd128a831f567dc642df00c6dac2d536b2e94f -docfiles size=544 - RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.pdf details="Package documentation (French)" language="fr" - RELOC/doc/fonts/kpfonts/Kpfonts-Doc-French.tex +containersize 2246256 +containerchecksum d4d035c30acd5d5731a16e144cb45df6a3ce12c06d290f50c9e721ac67aa4808eade4eeae4c91a5093e29c64f91ec4d7a8d65d42307238c472d87d22eb5298c0 +doccontainersize 1622220 +doccontainerchecksum d030abf78988bc21f0e4afc06f0fda95339864036883877f5ceec11210640fcea8cd0ba54eb4d7b7dcc33b9eee8a0b2593739b4e2260b9db6e23cd480861e79d +docfiles size=438 + RELOC/doc/fonts/kpfonts/Changes RELOC/doc/fonts/kpfonts/README.txt details="Readme" - RELOC/doc/fonts/kpfonts/christophe.cls RELOC/doc/fonts/kpfonts/kpfonts-abstract.pdf details="Summary of features" RELOC/doc/fonts/kpfonts/kpfonts-abstract.tex RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.pdf RELOC/doc/fonts/kpfonts/kpfonts-math-symbols-tables.tex RELOC/doc/fonts/kpfonts/kpfonts.pdf details="Package documentation (English)" language="en" RELOC/doc/fonts/kpfonts/kpfonts.tex -srccontainersize 223556 -srccontainerchecksum 387ac06bb251c84b0da03e25f530eff8f8c0ac134fc7b33b1fa3a0dd47366f8a78e3fba8bb9dd0bab2094d1082bc5e08dde7c198e302654bced7ff01776e5317 -srcfiles size=76 - RELOC/source/fonts/kpfonts/afm.zip - RELOC/source/fonts/kpfonts/kpfonts-fontinst.zip -runfiles size=3713 +runfiles size=3882 + 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 @@ -160255,19 +168198,19 @@ runfiles size=3713 RELOC/tex/latex/kpfonts/ujkpsydw.fd catalogue-also kpfonts-otf catalogue-ctan /fonts/kpfonts -catalogue-license gpl +catalogue-license lppl gpl catalogue-topics font font-type1 font-serif font-sans font-mono font-maths -catalogue-version 3.33 +catalogue-version 3.35 name kpfonts-otf category Package -revision 58435 +revision 65560 shortdesc OTF version of the Kp-fonts relocated 1 longdesc This bundle provides OpenType versions of the Type1 Kp-fonts longdesc designed by Christophe Caignaert. It is usable with LuaTeX or longdesc XeTeX engines only. It consists of sixteen Text fonts (eight -longdesc Serif, four Sans-Serif, four Monotype) and five Math fonts. +longdesc Serif, four Sans-Serif, four Monotype) and six Math fonts. longdesc Serif and Sans-Serif families have small caps available in two longdesc sizes (SmallCaps and PetitesCaps), upper and lowercase digits, longdesc real superscripts and subscripts; ancient ligatures (ct and @@ -160275,11 +168218,11 @@ longdesc st), ancient long-s and a long-tailed capital Q are available longdesc via font features. Math fonts cover all usual symbols including longdesc AMS'; a full list of available symbols is provided, see the longdesc 'List of glyphs'. -containersize 1084240 -containerchecksum 7daa6cf5fcdedce50ad5fac45abe82c69f695d8f42c95bece738ca161b6b494ef4b008a769f3989ac800d9970888e5c205d87ef7c33ba19a56883547f2957c61 -doccontainersize 2057708 -doccontainerchecksum 29affa9fa075b00abc05332a214ed6abb5c0a8e79a07527461b813d335ace02e3e2e04e32abf823d2a327721b69affc4a2a065ba6b1392afa04542ab37cd9efc -docfiles size=554 +containersize 1091368 +containerchecksum f78d001ca2fff4367338e5b8bfc2adc933daac36168bfa88523cf03379ddf2da12d3c1d92bb3feaeab2eb4fe090aef691ba76c93b5aeb53d4a766fd2366a3556 +doccontainersize 2085304 +doccontainerchecksum 61be2d97b486e1dc330f3e0e16ca1b33c674afad63ddc711996d8126d9157851a2158f0c31e96d1bfb8d968ee5ca73f066714645af8374c6bffe3f8c5442daa3 +docfiles size=581 RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.ltx RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-English.pdf details="Package documentation (English)" language="en" RELOC/doc/fonts/kpfonts-otf/Kpfonts-OTF-Doc-French.ltx @@ -160287,11 +168230,12 @@ docfiles size=554 RELOC/doc/fonts/kpfonts-otf/README.md details="Readme" RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.ltx RELOC/doc/fonts/kpfonts-otf/unimath-kpfonts.pdf details="List of glyphs" -runfiles size=828 +runfiles size=879 RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Bold.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Light.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Regular.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Sans.otf + RELOC/fonts/opentype/public/kpfonts-otf/KpMath-SansBold.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMath-Semibold.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMono-Bold.otf RELOC/fonts/opentype/public/kpfonts-otf/KpMono-BoldItalic.otf @@ -160318,7 +168262,7 @@ catalogue-also kpfonts catalogue-ctan /fonts/kpfonts-otf catalogue-license ofl lppl1.3 catalogue-topics font font-body font-serif font-sans font-proportional font-mono font-maths font-otf font-supp -catalogue-version 0.35 +catalogue-version 0.48 name ksfh_nat category Package @@ -161185,21 +169129,21 @@ catalogue-version 0.3.5 name kvoptions category Package -revision 56609 +revision 63622 shortdesc Key value format for package options relocated 1 longdesc This package offers support for package authors who want to use longdesc options in key-value format for their package options. -containersize 7136 -containerchecksum 47d2d386a418ffd07810589061d13e625b691fe65522ccf5efb514750314933aeafa75f1e2a56df9851b2cabf3bd54be9bd1200df59c671f0f7c92e90d9aa9b9 -doccontainersize 472508 -doccontainerchecksum dc8fa31afcb9c86d5a94ffa4bfd7e02fd186b27d1f645a5317c718d8079e4b003426e9202c49f6cf3017cd49a59100d8c2a6a553d16012856e340da0e9ede0ef -docfiles size=121 +containersize 7180 +containerchecksum 8e4189334b66ed38279ec0deebb12769453db802b1538e8ef47598de08123006a5f65b4b86c144aba5c7ef21abb95c65196e314e4b80e9b513103354e4b29619 +doccontainersize 485344 +doccontainerchecksum 864fd685912d7bdac610c16508efdfadf82c9c2efb8ae3c9b5a0d16c1dffd91822a1389109b3de1ce63dd74bb1aff5efa534c134ee06f1e61df9c867aeea608d +docfiles size=126 RELOC/doc/latex/kvoptions/README.md details="Readme" RELOC/doc/latex/kvoptions/example-mycolorsetup.sty RELOC/doc/latex/kvoptions/kvoptions.pdf details="Package documentation" language="en" -srccontainersize 21336 -srccontainerchecksum 90a0c6d2b03855dfa7716eb9a18d3c412e51a5bc592650677298eff8040acff81e3c2cda492daa0790372034f33e93763f4ac02821587d095f77dc0810a52b25 +srccontainersize 21144 +srccontainerchecksum 38168cf3c486866ae79eac1708ed93f117187cd7404d852020cd9b70b3a518ca50d641db564d5d1d36b7e2a2c9beaab27e45abce93d01db4c37de7d9ad36bdf9 srcfiles size=24 RELOC/source/latex/kvoptions/kvoptions.dtx runfiles size=10 @@ -161210,11 +169154,11 @@ catalogue-contact-repository https://github.com/ho-tex/kvoptions catalogue-ctan /macros/latex/contrib/kvoptions catalogue-license lppl1.3 catalogue-topics keyval -catalogue-version 3.14 +catalogue-version 3.15 name kvsetkeys category Package -revision 53166 +revision 64632 shortdesc Key value parser with default handler support relocated 1 longdesc This package provides \kvsetkeys, a variant of package keyval's @@ -161223,25 +169167,25 @@ longdesc with unknown options. Active commas and equal signs may be used longdesc (e.g. see babel's shorthands) and only one level of curly longdesc braces are removed from the values. containersize 3568 -containerchecksum c5e117a46ab54485b7748bafd5cfd381d28073564b571fd1cda78da70b42dcf48fe054538323cdee7e784aff91cb76dd24361908a4c97213df315f6cb91af583 -doccontainersize 372380 -doccontainerchecksum 875af5f0ef28b6bb80b19537ca3dc426fb9daf4de8e10dc518cf5daea8f6bc6801832156e5bd978937209b2e9883898b957c8cbe87b51a2b2aeb071445e045de -docfiles size=94 +containerchecksum 8acc4b9069c3baadf9a9802546d636fe8268afb97416b47d79b0a0306d90104fbb86b8ec1b4492f3134357564bb81eba1ae0e84a38f5b94a556de45525777431 +doccontainersize 390776 +doccontainerchecksum 127d4a03b26c9adb92254b08f0aac6039e39ff961539e253bccfdc1ee3598dd5e10608b8c8909708c041f5134c549f9af550bd1371a1e7b90003f77ef53bbf33 +docfiles size=101 RELOC/doc/latex/kvsetkeys/README.md RELOC/doc/latex/kvsetkeys/kvsetkeys-example.tex RELOC/doc/latex/kvsetkeys/kvsetkeys.pdf details="Package documentation" language="en" -srccontainersize 10800 -srccontainerchecksum 48a8299a53c47b518b3461fc960c18d81acd26b90bc58e84756cff28fa34b072d769b55162ab86ebd10fb6e3e1a4486c85c66093a32695636f7821582234cb9f +srccontainersize 10604 +srccontainerchecksum 696e78c295f0ac2a4d4c69e0d855925d46fee487da25ff238546033cae5e3b9042f66b924d1535ee41afc6142234fbef63ecf4df5b0c6c191b395109244e19e4 srcfiles size=12 RELOC/source/latex/kvsetkeys/kvsetkeys.dtx runfiles size=4 - RELOC/tex/generic/kvsetkeys/kvsetkeys.sty + RELOC/tex/latex/kvsetkeys/kvsetkeys.sty catalogue-contact-bugs https://github.com/ho-tex/kvsetkeys/issues catalogue-contact-repository https://github.com/ho-tex/kvsetkeys catalogue-ctan /macros/latex/contrib/kvsetkeys catalogue-license lppl1.3 catalogue-topics keyval -catalogue-version 1.18 +catalogue-version 1.19 name l2picfaq category Package @@ -161269,17 +169213,17 @@ catalogue-version 1.50 name l2tabu category Package -revision 39597 +revision 63708 shortdesc Obsolete packages and commands relocated 1 longdesc The "sins" of LaTeX users, and how to correct them. The longdesc document provides a list of obsolete packages and commands. longdesc This original is in German; it has been translated into longdesc English, French, Italian, and Spanish. -containersize 500 -containerchecksum 2e94e77ab5c8327396d2ff714f7c6c1e8c91a3ab0f35be411d11f617d39dd815d4bf1c6eb1dd0be5154c1d702697c08b8658c8371dce3dca0349712a5dac2d1b +containersize 480 +containerchecksum 2e3dc6f2707cc6b9ef6daba6f18099665e279b90ac85d6c391d33dcaf1511b1d85cc8348b259163ac6fc96879053364423510b199da3af81f1fcb2674b983db1 doccontainersize 245464 -doccontainerchecksum 84673b59100568d1472f3221ff0cc35b8e8512ece38701f35d60265d316aa52186642def2d66885df47e2f613ae042a86972b7958349b7b2b83e754d72163df6 +doccontainerchecksum c6913d96a1821725c0d1a91cabf2db7a8afe692c1dbcd23113c3df63793653de48aeedf142d2dc81ec81c863d16583767766955a7ba0cba0de09840b9d3f74b6 docfiles size=74 RELOC/doc/latex/l2tabu/CHANGES RELOC/doc/latex/l2tabu/README details="Readme" @@ -161287,7 +169231,7 @@ docfiles size=74 RELOC/doc/latex/l2tabu/l2tabu.tex catalogue-ctan /info/l2tabu/german catalogue-license other-free -catalogue-topics german-doc +catalogue-topics german-doc latex-qual catalogue-version 2.4 name l2tabu-english @@ -161372,7 +169316,7 @@ catalogue-version 1.1 name l3backend category Package -revision 58509 +revision 65573 shortdesc LaTeX3 backend drivers relocated 1 longdesc This package forms parts of expl3, and contains the code used @@ -161381,18 +169325,18 @@ longdesc The functions here are defined differently depending on the longdesc engine in use. As such, these are distributed separately from longdesc l3kernel to allow this code to be updated on an independent longdesc schedule. -containersize 14412 -containerchecksum 4e0fa3710748aef350580d94d95b788dabb5d1ea86b2fe6e70697e9baa0fa7f254d06cad4c4ce4a3f9ec5b5e38be1742887051a16e327c18fd754cc500f74c75 -doccontainersize 806248 -doccontainerchecksum 5255d75a9804c1b1c5505873897145d759aa57c7bbaff7d1c2eeaa3677af6630c984b48984ba397cf77a0c9c564d110f7983c6c024c3623883edf3128e769ebc -docfiles size=209 +containersize 15464 +containerchecksum adeed96dee5075c022752def063e1602dcc59d30ff032d3da5d51fdc57fd21c881eff95bfb9c027c8edd683a1e33030c72d3dac03fc62d7f2c32f782618ef6ba +doccontainersize 889272 +doccontainerchecksum 9b2dbdd99c36f9003dca7d28d578fbdc12d40fdf861c04dc579f9b81ab3dba4c7ba05143ff0b024b422c4d70c068ebecbc76ce1e03edb233e248dae3d5962d74 +docfiles size=233 RELOC/doc/latex/l3backend/CHANGELOG.md RELOC/doc/latex/l3backend/README.md details="Readme" RELOC/doc/latex/l3backend/l3backend-code.pdf details="Package documentation" RELOC/doc/latex/l3backend/l3backend-code.tex -srccontainersize 31112 -srccontainerchecksum f4fe6972053149b04b9b88b4c6d231a04a6b2d6eea5c96b7a9fe7589657917bb330152840b8c008e5e798c54ebf4a6fa7f038530bdbb36cf9c634b5396e7392a -srcfiles size=54 +srccontainersize 33064 +srccontainerchecksum fcdc5cd944e68405fed8fcb4e97d5c855de67b00e352f99fe810e5bb61cda8ac0b1c25e7e07596ddc8528177b1277bbf1deecd370a31235edc94e8a0b2235ab8 +srcfiles size=57 RELOC/source/latex/l3backend/l3backend-basics.dtx RELOC/source/latex/l3backend/l3backend-box.dtx RELOC/source/latex/l3backend/l3backend-color.dtx @@ -161402,7 +169346,7 @@ srcfiles size=54 RELOC/source/latex/l3backend/l3backend-opacity.dtx RELOC/source/latex/l3backend/l3backend-pdf.dtx RELOC/source/latex/l3backend/l3backend.ins -runfiles size=49 +runfiles size=50 RELOC/dvips/l3backend/l3backend-dvips.pro RELOC/tex/latex/l3backend/l3backend-dvipdfmx.def RELOC/tex/latex/l3backend/l3backend-dvips.def @@ -161419,7 +169363,7 @@ catalogue-topics latex3 expl3 macro-supp pre-release name l3build category Package -revision 59091 +revision 66471 shortdesc A testing and building system for (La)TeX longdesc The build system supports testing and building LaTeX3 code, on longdesc Linux, Mac OS X and Windows systems. The package offers: A unit @@ -161431,23 +169375,22 @@ longdesc material released by the LaTeX3 team, and may be updated on a longdesc different schedule. depend l3build.ARCH depend luatex -containersize 33328 -containerchecksum bb1a5a2b7a0a1944b6f34256c776cc4a09157ae1abc07a2dbf2ef8f71e3df7fe33b3c22ddc05ee3362904f683e87f2c2125d5b88f64ac21686a1fcdb25e973bf -doccontainersize 725568 -doccontainerchecksum dc7e6fcd044c6b4ccb0fb5653a796bef60570696cc55ae72fe4fdfcca6f38bd5736563a47ef6c73000e3cdf5cde5a00e13a26935daea356885e1d42bcb846eab -docfiles size=184 +containersize 36180 +containerchecksum b34715b851daf019e56539362b32d3b7f13ee838f6030e9e94fb6da1caca14ba595567edc91798f31ab9856c131d192876f0a4a32f6eb9caf22f4a62a1eaa94c +doccontainersize 743768 +doccontainerchecksum e126739b4ad5fdc305385929f88917dd61df72cb98d5db50d625b16bdb3867af8d84161a8394ed04b1322c52f53504a28852b919282b3431f81c533d0240cc91 +docfiles size=193 texmf-dist/doc/latex/l3build/CHANGELOG.md - texmf-dist/doc/latex/l3build/CONTRIBUTING.md texmf-dist/doc/latex/l3build/README.md details="Readme" texmf-dist/doc/latex/l3build/l3build.pdf details="Package documentation" texmf-dist/doc/man/man1/l3build.1 texmf-dist/doc/man/man1/l3build.man1.pdf -srccontainersize 29816 -srccontainerchecksum 19cc091239126937a281d3a6cd6a3132a82eb070f326b7781d44e53c4f8400adf926d0e8824855312f96873722627ceaecfe3da8726d6c9d392a1bdb02023e16 -srcfiles size=28 +srccontainersize 30988 +srccontainerchecksum 4b7494a7e947d334c8fe8143f8b763e1af7980cadc7d3860527986d19261f1f5e020718bfa52c03552ae3a69c85fc0a8b26ec88a2423a39ebecd30743102088a +srcfiles size=29 texmf-dist/source/latex/l3build/l3build.dtx texmf-dist/source/latex/l3build/l3build.ins -runfiles size=44 +runfiles size=47 texmf-dist/scripts/l3build/l3build-arguments.lua texmf-dist/scripts/l3build/l3build-aux.lua texmf-dist/scripts/l3build/l3build-check.lua @@ -161464,6 +169407,7 @@ runfiles size=44 texmf-dist/scripts/l3build/l3build-unpack.lua texmf-dist/scripts/l3build/l3build-upload.lua texmf-dist/scripts/l3build/l3build-variables.lua + texmf-dist/scripts/l3build/l3build-zip.lua texmf-dist/scripts/l3build/l3build.lua texmf-dist/tex/latex/l3build/regression-test.tex catalogue-contact-bugs https://github.com/latex3/l3build/issues @@ -161509,15 +169453,6 @@ containerchecksum 2feec116d36c90f13f9e4a0be3dee8ae3a0a9bd949bf266e80f456dc960cf3 binfiles arch=armhf-linux size=1 bin/armhf-linux/l3build -name l3build.i386-cygwin -category Package -revision 46894 -shortdesc i386-cygwin files of l3build -containersize 340 -containerchecksum 1cbda214e44cc4f67c50339f7b68ddeddbe7b1388da85acd1d415e9ae88c50b720e50033d17f595146e9b506e5a267332621fb18f2dc95e2155e8c2ed0de2af1 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/l3build - name l3build.i386-freebsd category Package revision 46894 @@ -161563,14 +169498,14 @@ containerchecksum 79f49bbe75e817b3e677c1ddf7682ee732c39025a358d278cfa398f8ff7f8b binfiles arch=universal-darwin size=1 bin/universal-darwin/l3build -name l3build.win32 +name l3build.windows category Package -revision 46894 -shortdesc win32 files of l3build -containersize 684 -containerchecksum 796aeecde79f2c21f414e647539e8c6f40f4dc91c335570a42d75f95fcbd06232b9621b5b3a8f94f9ddf3f2248c564afb05047a3e52c95f64774b107aa492d57 -binfiles arch=win32 size=1 - bin/win32/l3build.exe +revision 65891 +shortdesc windows files of l3build +containersize 2308 +containerchecksum 6c55f76725691db22695d26cb8a35d31848b5050033054a253aa6bca26b3a799e0265df8f5f39c6db271e980eb49dc20108c082e63f2364c97f1d71631069b65 +binfiles arch=windows size=2 + bin/windows/l3build.exe name l3build.x86_64-cygwin category Package @@ -161619,7 +169554,7 @@ binfiles arch=x86_64-solaris size=1 name l3experimental category Package -revision 57789 +revision 65621 shortdesc Experimental LaTeX3 concepts relocated 1 longdesc The l3experimental packages are a collection of experimental @@ -161630,35 +169565,37 @@ longdesc can be used on top of LaTeX2e with no changes to the existing longdesc kernel. The present release includes: l3benchmark for measuring longdesc the time taken by TeX to run certain code; l3draw, a code-level longdesc interface for constructing drawings; l3graphics, an interfaces -longdesc for the inclusion of graphics files; l3str, support for string -longdesc manipulation; l3bitset, support for bit vectors; l3sys-shell, -longdesc which provides abstractions for common shell functions like -longdesc file deletion and copying; xcoffins, which allows the alignment -longdesc of boxes using a series of 'handle' positions, supplementing -longdesc the simple TeX reference point; xgalley, which controls boxes -longdesc receiving text for typesetting. +longdesc for the inclusion of graphics files; l3opacity, support for +longdesc opacity in PDF output; l3str, support for string manipulation; +longdesc l3bitset, support for bit vectors; l3sys-shell, which provides +longdesc abstractions for common shell functions like file deletion and +longdesc copying; xcoffins, which allows the alignment of boxes using a +longdesc series of 'handle' positions, supplementing the simple TeX +longdesc reference point; xgalley, which controls boxes receiving text +longdesc for typesetting. depend l3kernel -containersize 22992 -containerchecksum b72f9d154fe57effb38b8da1fa1e32e4343e4ff8eee094794c7d3864a2b89f4ad65f2c744de8033e4371872c325462f5fac9886e5037a965d3a5e242a916a055 -doccontainersize 3241488 -doccontainerchecksum b0951f18b213cbc9796eb80ec688ff7bddb07606a756262a252ea0572e4ae5b4c562af62bc26a13ed4512ac82c92a6eb3505d39eff50df16de1fbb924bf3d499 -docfiles size=952 +containersize 23640 +containerchecksum 1074091d77bc323d108e27cb08592c895fae20f4cb563734dd69701f1a4ac215575af9425db9eec98e420317325adad434c21dbed50063036715b95d67050c90 +doccontainersize 3496232 +doccontainerchecksum 8b954e90f323646a289de57aa6c1a01c25a948b42d70d439c9921437b01fa489a01c08e50bf0601ee4fa12b32f8b60c64af82cf6a4ac9cd8cefb6ef4b4a22c70 +docfiles size=1090 RELOC/doc/latex/l3experimental/CHANGELOG.md RELOC/doc/latex/l3experimental/README.md details="Readme" RELOC/doc/latex/l3experimental/l3benchmark/l3benchmark.pdf details="l3benchmark documentation" - RELOC/doc/latex/l3experimental/l3bitset/l3bitset.pdf + RELOC/doc/latex/l3experimental/l3bitset/l3bitset.pdf details="l3bitset documentation" RELOC/doc/latex/l3experimental/l3draw/l3draw-code.pdf RELOC/doc/latex/l3experimental/l3draw/l3draw-code.tex RELOC/doc/latex/l3experimental/l3draw/l3draw.pdf details="l3draw documentation" RELOC/doc/latex/l3experimental/l3graphics/l3graphics.pdf details="l3graphics documentation" + RELOC/doc/latex/l3experimental/l3opacity/l3opacity.pdf details="l3opacity documentation" RELOC/doc/latex/l3experimental/l3str/l3str-format.pdf details="l3str-format documentation" RELOC/doc/latex/l3experimental/l3sys-shell/l3sys-shell.pdf details="l3sys-shell documentation" RELOC/doc/latex/l3experimental/xcoffins/xcoffins.pdf details="xcoffins documentation" RELOC/doc/latex/l3experimental/xgalley/l3galley.pdf RELOC/doc/latex/l3experimental/xgalley/xgalley.pdf details="xgalley documentation" -srccontainersize 78284 -srccontainerchecksum 2a48f0bbb8d53bb95939376a91a08523233f002eb9c4114c36d599c89a8442a960df52a727605a4d8c5ec96e89e131ba7c3cebbb575aaae9d85b0a60f02659dd -srcfiles size=126 +srccontainersize 80096 +srccontainerchecksum aa5352e2c74e191baf954acdcbd22aef14a3c7aefef3acef6dbfabf206ed30d3102c29448f4401aa89c820172fb5b892a3af537f4ec605fb0b8e159b61131cbc +srcfiles size=132 RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.dtx RELOC/source/latex/l3experimental/l3benchmark/l3benchmark.ins RELOC/source/latex/l3experimental/l3bitset/l3bitset.dtx @@ -161675,6 +169612,8 @@ srcfiles size=126 RELOC/source/latex/l3experimental/l3draw/l3draw.ins RELOC/source/latex/l3experimental/l3graphics/l3graphics.dtx RELOC/source/latex/l3experimental/l3graphics/l3graphics.ins + RELOC/source/latex/l3experimental/l3opacity/l3opacity.dtx + RELOC/source/latex/l3experimental/l3opacity/l3opacity.ins RELOC/source/latex/l3experimental/l3str/l3str-format.dtx RELOC/source/latex/l3experimental/l3str/l3str.ins RELOC/source/latex/l3experimental/l3sys-shell/l3sys-shell.dtx @@ -161684,11 +169623,12 @@ srcfiles size=126 RELOC/source/latex/l3experimental/xgalley/l3galley.dtx RELOC/source/latex/l3experimental/xgalley/xgalley.dtx RELOC/source/latex/l3experimental/xgalley/xgalley.ins -runfiles size=47 +runfiles size=50 RELOC/tex/latex/l3experimental/l3benchmark/l3benchmark.sty RELOC/tex/latex/l3experimental/l3bitset/l3bitset.sty RELOC/tex/latex/l3experimental/l3draw/l3draw.sty RELOC/tex/latex/l3experimental/l3graphics/l3graphics.sty + RELOC/tex/latex/l3experimental/l3opacity/l3opacity.sty RELOC/tex/latex/l3experimental/l3str/l3str-format.sty RELOC/tex/latex/l3experimental/l3sys-shell/l3sys-shell.sty RELOC/tex/latex/l3experimental/xcoffins/xcoffins.sty @@ -161702,7 +169642,7 @@ catalogue-topics macro-supp layout latex3 pre-release name l3kernel category Package -revision 57789 +revision 66094 shortdesc LaTeX3 programming conventions relocated 1 longdesc The l3kernel bundle provides an implementation of the LaTeX3 @@ -161712,16 +169652,17 @@ longdesc LaTeX3 kernel and other future code are built: it is an API for longdesc TeX programmers. The packages are set up so that the LaTeX3 longdesc conventions can be used with regular LaTeX2e packages. depend l3backend -containersize 163980 -containerchecksum 6cc0245c0986c964ba8a41430c4c1a794196f6c534fffa8bb87a43687d60a5f7ae686cbe09e36845898e60d13d6503448c81a6d549c7793f799c241013ef41b6 -doccontainersize 10408236 -doccontainerchecksum 70150363e1f09627e3040aaa7f1b0aabc3a62e5f5d81c00b8991895873bfccf764164dbc7da4a6ff7c5e12513d343a0eb6e38d7a173050e0db53a6c7cb66f6b1 -docfiles size=2932 +containersize 174616 +containerchecksum a9329b7a66b3f201063f2568247d5cfcb49512195cae2b8ba8e1dbf4f5a0fbc14b36f5727b171136b371e94410092897881925d96ffe4a628afb441be130e32f +doccontainersize 11984952 +doccontainerchecksum eb7ef32a4fd8226f032ebeb435244c7c92ba6264b0eaa03d73e208167b240644196f82e0ea57ac9665e372fd3c68ff030f0a26a8b68eee0a35d3b01f6c30fb8f +docfiles size=3412 RELOC/doc/latex/l3kernel/CHANGELOG.md RELOC/doc/latex/l3kernel/README.md details="Readme" RELOC/doc/latex/l3kernel/expl3.pdf details="The LaTeX3 Programming Language" RELOC/doc/latex/l3kernel/interface3.pdf details="The LaTeX3 interfaces" RELOC/doc/latex/l3kernel/interface3.tex + RELOC/doc/latex/l3kernel/l3doc.pdf RELOC/doc/latex/l3kernel/l3docstrip.pdf RELOC/doc/latex/l3kernel/l3news.pdf RELOC/doc/latex/l3kernel/l3news.tex @@ -161762,9 +169703,9 @@ docfiles size=2932 RELOC/doc/latex/l3kernel/source3.pdf RELOC/doc/latex/l3kernel/source3.tex RELOC/doc/latex/l3kernel/source3body.tex -srccontainersize 568920 -srccontainerchecksum 5f8837dd921469ed84e48ace634a00e450cee5fd8306a7236279cdf86b842ed2134f8960ff58bc2cf15dbf26ac7d407bc2a1d1ca48179d6666e88285a210d4b7 -srcfiles size=878 +srccontainersize 599532 +srccontainerchecksum 50bb088f0176c31c0dc1bd54c92ab1a784827c00aceaeb5cf26b48f2c9e5c35951aabd36d5670b08a16b5a3306bfd40f0741a2a958c915ffed75c96425f6978e +srcfiles size=924 RELOC/source/latex/l3kernel/expl3.dtx RELOC/source/latex/l3kernel/l3.ins RELOC/source/latex/l3kernel/l3basics.dtx @@ -161816,20 +169757,20 @@ srcfiles size=878 RELOC/source/latex/l3kernel/l3str.dtx RELOC/source/latex/l3kernel/l3sys.dtx RELOC/source/latex/l3kernel/l3text-case.dtx + RELOC/source/latex/l3kernel/l3text-map.dtx RELOC/source/latex/l3kernel/l3text-purify.dtx RELOC/source/latex/l3kernel/l3text.dtx RELOC/source/latex/l3kernel/l3tl-analysis.dtx RELOC/source/latex/l3kernel/l3tl.dtx RELOC/source/latex/l3kernel/l3token.dtx RELOC/source/latex/l3kernel/l3unicode.dtx -runfiles size=335 +runfiles size=356 RELOC/tex/latex/l3kernel/expl3-code.tex RELOC/tex/latex/l3kernel/expl3-generic.tex RELOC/tex/latex/l3kernel/expl3.ltx RELOC/tex/latex/l3kernel/expl3.lua RELOC/tex/latex/l3kernel/expl3.sty RELOC/tex/latex/l3kernel/l3debug.def - RELOC/tex/latex/l3kernel/l3deprecation.def RELOC/tex/latex/l3kernel/l3doc.cls RELOC/tex/latex/l3kernel/l3docstrip.tex RELOC/tex/latex/l3kernel/l3str-enc-iso88591.def @@ -161857,7 +169798,7 @@ catalogue-topics format latex3 pre-release name l3packages category Package -revision 58296 +revision 65722 shortdesc High-level LaTeX3 concepts relocated 1 longdesc This collection contains implementations for aspects of the @@ -161875,11 +169816,11 @@ longdesc provides a means of defining generic functions using a longdesc key-value syntax xfrac, which provides flexible split-level longdesc fractions depend l3kernel -containersize 21504 -containerchecksum 9ce87e6667a601818c586a01629ff954bd539075160a11e82bb8f53bf1306255584fca6f3ee36327fed5c78c43d7ecabcecf4db1b09410a70ec77496871ba4e0 -doccontainersize 1773816 -doccontainerchecksum 782e2a1d9d49264eab0801c625940c3fd993051f879f1e525a685572ba08e949368f429a01574a2f94d9b5dd386db33a6c75aa3eb485c725ec9c8007f5f5def0 -docfiles size=532 +containersize 21928 +containerchecksum 39204e9cd356a5202dddad329cefa5bb47d11e6553609fbcf79a878c524b8f67e868e027015e304fb626d5bb953a69743390174f20f489302682e08a512c26f0 +doccontainersize 1831688 +doccontainerchecksum 3ece8153e345f4678cf5e4c05200033a64fc7e0d9e80d42ad8f32604f8b78a888ab86a98a8c68144855773d96650698af82af3be77fc7523d7cb9ec36a9c5d9a +docfiles size=546 RELOC/doc/latex/l3packages/CHANGELOG.md RELOC/doc/latex/l3packages/README.md details="Readme" RELOC/doc/latex/l3packages/l3keys2e/l3keys2e-demo.tex @@ -161888,9 +169829,9 @@ docfiles size=532 RELOC/doc/latex/l3packages/xfrac/xfrac.pdf details="xfrac documentation" RELOC/doc/latex/l3packages/xparse/xparse.pdf details="xparse documentation" RELOC/doc/latex/l3packages/xtemplate/xtemplate.pdf details="xtemplate documentation" -srccontainersize 44724 -srccontainerchecksum b78b37e60af618bd2bb527a7bca77f99d2e977d4baa8a1899275ebd1ac0ec9f71b6553a8a83a1b8df763b6a4ea9533fb5d0bbc64bdf0e7b29c9a0bb850dce59a -srcfiles size=59 +srccontainersize 45696 +srccontainerchecksum 8a113832ec4aab128ef471c496a86bde774c9b86f77beef04b8eed03ee8c78c57004786d4606a67e5bfdccdfd41fcf7875fc96f2e03e59b6f0884cf5e03a6644 +srcfiles size=60 RELOC/source/latex/l3packages/l3keys2e/l3keys2e.dtx RELOC/source/latex/l3packages/l3keys2e/l3keys2e.ins RELOC/source/latex/l3packages/xfp/xfp.dtx @@ -161901,7 +169842,7 @@ srcfiles size=59 RELOC/source/latex/l3packages/xparse/xparse.ins RELOC/source/latex/l3packages/xtemplate/xtemplate.dtx RELOC/source/latex/l3packages/xtemplate/xtemplate.ins -runfiles size=65 +runfiles size=66 RELOC/tex/latex/l3packages/l3keys2e/l3keys2e.sty RELOC/tex/latex/l3packages/xfp/xfp.sty RELOC/tex/latex/l3packages/xfrac/xfrac.sty @@ -162101,16 +170042,16 @@ catalogue-version 1.0 name lacheck category TLCore -revision 54070 +revision 66186 shortdesc LaTeX checker longdesc Lacheck is a tool for finding common mistakes in LaTeX longdesc documents. The distribution includes sources, and executables longdesc for OS/2 and Win32 environments. depend lacheck.ARCH containersize 436 -containerchecksum 30241d13ac35054017c6240ad066ae84b11c26757fa895ffdc1444b0825e50a2a89864ca85d710882be4105127c4df203ad4a403504a6c309b796c9b9ee5b589 -doccontainersize 20964 -doccontainerchecksum a1ef923bfe1c3496651052b4a8b6978665b75f43b7dbeb254fb61657050427aedc8415218f988a7e727849dd0001b67ed023ecd252bac2445b0965a58800187c +containerchecksum 5a27d940fe59c61539d053bc6602bf37df1f538679eaf34d0e8b3ec3aed74ff619e4843ae2769aeafd10074328e9e27255376bc9e809d373d3913995a2a95b87 +doccontainersize 21012 +doccontainerchecksum cf4355d56985f9335270e4280d10602299fadfd01605e83edb4e8b89cf0d91b3e8ca671257a9599d5f5578e7a85140d390edd40c3b109f77bb9fca5ba47ca517 docfiles size=8 texmf-dist/doc/man/man1/lacheck.1 texmf-dist/doc/man/man1/lacheck.man1.pdf @@ -162121,145 +170062,136 @@ catalogue-topics latex-qual name lacheck.aarch64-linux category TLCore -revision 53999 +revision 65927 shortdesc aarch64-linux files of lacheck -containersize 20096 -containerchecksum 3245dc94860e151eebc5393b63e4423c308ba341a497f17349d647157563517f88b5fc77d811ae650fa9679db1a76435a5f88a4e7cd1fa04cbba89d4a18d617b +containersize 20184 +containerchecksum 94059a24a05c29ed68d0a9ee953601a502fbee148fe226ecdc36899143da3d5819d8fdb4c065372b210203f8261201afca58686aa7d4c4b0d03a185a88bf5a2f binfiles arch=aarch64-linux size=16 bin/aarch64-linux/lacheck name lacheck.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of lacheck -containersize 21992 -containerchecksum 0f59b594b416a97e50dbffacd56ac6d50a840121485fa483f203ca0e96bf36abd38a14736eb79cbf1602b80899809a8d360df9b0aceb54d49dd13b96361ccbd9 +containersize 22292 +containerchecksum d3cfdd4891c155f006da666b10c528a5678b8d30908712b03857f3cde568e214d7f8ce7f6d2238349abffb062bc9229989175c00ec0ebb9416d02ec1167ea9fe binfiles arch=amd64-freebsd size=16 bin/amd64-freebsd/lacheck name lacheck.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of lacheck -containersize 21624 -containerchecksum 8ca80dcdb5da1e2569bbb2ef2fe1ab9e1f7a0ca44ef58557a7e064920b83d7075d44171d0fc5305ca4c8d9602549d65d7b11397239764d09dac681834326acef +containersize 21716 +containerchecksum 9f7060f3dfedc959ddee737304b8089a8f33a5f811c5ac4808973e149232c7f7159cab89605660dcb47d51ce786cabe4f2fa54c13de9ab84439bcd534b9a063e binfiles arch=amd64-netbsd size=17 bin/amd64-netbsd/lacheck name lacheck.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of lacheck -containersize 18788 -containerchecksum 06f282c5a0736e03c534886a6ae7146fd3729832ee835e9313a70703b7ea5a0059d364005f1a7c4aafe9363bfb363c478d5ce8f04e048c01924c33eb0a9093c7 +containersize 18840 +containerchecksum 0dc105f9530747524f8832629d63edbe608872dadf5706c39107ce42cfc9f4f7e3e5a1deadfb9fd466d4d7e7f807d8439f6e436c5605c6de88b0ec03b2e4f9bc binfiles arch=armhf-linux size=15 bin/armhf-linux/lacheck -name lacheck.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of lacheck -containersize 19752 -containerchecksum 8e7a744bf751fde7e7da5fc1e82dda909440a357dae5a88a99eb8c6346259ad6f5cb9ae30bd307ca2f7804c937048600bbe8d16b0ebaff8e925e4bb6dda83d4f -binfiles arch=i386-cygwin size=16 - bin/i386-cygwin/lacheck.exe - name lacheck.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of lacheck -containersize 18740 -containerchecksum b9f1cbd022d584bdcadc55d451939377b46f741cc224f43a5c76c2e3839a9e2bd6815c04e9443dd1b01989409718f1aff0fe77ed8f8749dd823172db330a794c +containersize 19240 +containerchecksum e02d67e9ccedc48e63904fb059773002ad1938acbdea6e9f537712e485759100fca8b5a51b88a098de1c852a9cbe258153e85f2f76682189cec95f7b427acf77 binfiles arch=i386-freebsd size=14 bin/i386-freebsd/lacheck name lacheck.i386-linux category TLCore -revision 53999 +revision 65877 shortdesc i386-linux files of lacheck -containersize 20088 -containerchecksum 17b4c50c03d2298edea06be3ea9e9a1b6d1aa8e9ec32adf9ec56dc8a8f25976694ae77fb5b157be46764d6f2c9506014be7eda4ef433e6fd41a35186d322f1ed -binfiles arch=i386-linux size=15 +containersize 20472 +containerchecksum 46b8a9b1dae62f978b4ed413fd14546b61c6b347da1d6709da4a3fb23c6a94cd6c7d03aeeb7c86107dbd7e6975940f3ac0c08a0ad3fea4e86f20be77276d67a4 +binfiles arch=i386-linux size=16 bin/i386-linux/lacheck name lacheck.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of lacheck -containersize 18412 -containerchecksum 8ed91959fb81c001568cef97e2b1998e36bf10215de1bf13508730f5d98080b4d56937343d1a6735514cdab10f93f7cd4f3373abe3ac282e04897157577381d4 +containersize 18468 +containerchecksum 429506fa367b9de0e6d4dd5e3dd03e1e65edc4ad73e4cd29ca204afad815337706c5ac55738b53c00718fe116ece396eb778ff662299ea8f159ad42f6b59fd99 binfiles arch=i386-netbsd size=16 bin/i386-netbsd/lacheck name lacheck.i386-solaris category TLCore -revision 53999 +revision 65877 shortdesc i386-solaris files of lacheck -containersize 20320 -containerchecksum 8b8211b764aeca56e903a8dabecd28fe145ac20c6fde81d14be10bb4171213bffbfce060009711007ddbeef3a9e986fb2c12ea4e719f2e3073aa22ba02bd2ad8 +containersize 20404 +containerchecksum 6523503db5df6964b6c1dced706c30a19dd7f32790811b1ec6e1e3d541350577182b102657f844f63a30562a642b1f8a3ccffd4a73194c3c3739d5726eb71434 binfiles arch=i386-solaris size=15 bin/i386-solaris/lacheck name lacheck.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of lacheck -containersize 37056 -containerchecksum a977b535b5b86d6d1652e331f0cd61984c1107f3a777b4bb74e2feea3aa29e93c89783a1d5960e3eb8e207877364784b2fd016f407c3327b67b3b3ef6075e751 -binfiles arch=universal-darwin size=54 +containersize 37416 +containerchecksum caabcb8ee75e202cc6d7c0ed3e5b7b304f915953728abac730909ec70cc44079ed01b617627860768f6bf47a165d5c4a4dbed62fdc8d41ab1a725db0a23af8cf +binfiles arch=universal-darwin size=58 bin/universal-darwin/lacheck -name lacheck.win32 +name lacheck.windows category TLCore -revision 53994 -shortdesc win32 files of lacheck -containersize 19512 -containerchecksum b43adead20abe73c6458ef3ed6e9caccb2e759bada0dc3b8ebd5d0b9a80b50aadd2e47242c904e7b3de295adfcdd42d19d94dcfcaa48d131dd3d7bf7f79d5d4f -binfiles arch=win32 size=15 - bin/win32/lacheck.exe +revision 65891 +shortdesc windows files of lacheck +containersize 21764 +containerchecksum 15dd0d512fb5dcc3f73207e975d1f7b5027ca4f7c2505a1815e0e60164c40c0619fe414b228f7c110cec70b308c1cb3d47ace78bf760498b4501d3dfe3d1b2b4 +binfiles arch=windows size=17 + bin/windows/lacheck.exe name lacheck.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of lacheck -containersize 22664 -containerchecksum 9b0d4ce48248b097546cbfa6fcca17ef850bd968cfe5b72d0ffec84fdd55aa770ac564aa204a83c57baedd0dae01e3c8a73976aa58f5321135cb69640d299f47 +containersize 22808 +containerchecksum ebae91d08a39d268a22c526b3687ae4f71c21d51be8e3aad3b7543284b2ca938251149e65f9766be6c1d0cf7b69c9d8c34385c7d3ead03e91c40de54ec1f5ea2 binfiles arch=x86_64-cygwin size=16 bin/x86_64-cygwin/lacheck.exe name lacheck.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of lacheck -containersize 20100 -containerchecksum 10afd9bb5e94e26e2cc29db8e54b8e6777204f86c416c1dcfee93e264a5b17b77cd4e100767b0572a050c0b590fecda606a2c226b92e0906d5792a8661d916b9 +containersize 20176 +containerchecksum 4cb32d5f48d5fd62e5d40b756431502f922dfb956ea84c17eba6eaa65f3831c7e2cd64ea4550fc82014404c53c7d8bbd18728c98c829e87999fba443f9bac30a binfiles arch=x86_64-darwinlegacy size=15 bin/x86_64-darwinlegacy/lacheck name lacheck.x86_64-linux category TLCore -revision 53999 +revision 65877 shortdesc x86_64-linux files of lacheck -containersize 22592 -containerchecksum 5fc6c78281b14a149859ab717119fef7cd44b0926ddc487805bd5f450fe33667e998cc99142545580fe03a3539950d17d38a1d365cdbdc1640ecb9ae32a572e6 -binfiles arch=x86_64-linux size=16 +containersize 22460 +containerchecksum 5f21460ab690e9fda2a6d7c3c897e5f0ad03af0052914b095512670a89f3ef7d053e7d4a5b7ec7927178eb79cb0d2e6a83d237eb6e9d80c3b86771abe38c59cc +binfiles arch=x86_64-linux size=17 bin/x86_64-linux/lacheck name lacheck.x86_64-linuxmusl category TLCore -revision 54264 +revision 65877 shortdesc x86_64-linuxmusl files of lacheck -containersize 22496 -containerchecksum b25c8f26a3b15b3d709c63d9550961e0ec643e0045a1e8b31d2ca4d82aafb970891879fee493cef3f47e8b938183bdca582702ffd6d93235d86a67bf706f2ecf +containersize 22984 +containerchecksum 0fe83ffce5d1056bb071ffb9f9cd0120116f9c6606217141908f8e30fbb546ba0f88353ed451e8323e64da5cdc370c0f24c2180d4df718eae6287ad79ae3a7f3 binfiles arch=x86_64-linuxmusl size=16 bin/x86_64-linuxmusl/lacheck name lacheck.x86_64-solaris category TLCore -revision 53999 +revision 65877 shortdesc x86_64-solaris files of lacheck -containersize 24040 -containerchecksum eaa3d4af3c1ac0311586a83b99f9b5e2e2144d9548d75afc1c42636f0a9312feffb4c0d8894ab0add74bd27dd6cccd9e8d6546ad97c525d515977b6351ff5859 +containersize 24164 +containerchecksum 9f2c1f05221420fd605c8f2d9f0b041709723ecf5b9a70d41fd2dce841f5c0d10b00f709756f14079c1efbae53add7dbf6b748fc637fbd8a0ab37b7aa26fccb1 binfiles arch=x86_64-solaris size=17 bin/x86_64-solaris/lacheck @@ -162347,6 +170279,36 @@ catalogue-ctan /macros/generic/lambda-lists catalogue-license lppl catalogue-topics macro-supp +name lambdax +category Package +revision 60278 +shortdesc Use Lambda expression within LaTeX +relocated 1 +longdesc This package provides Lambda expressions. It is an interface to +longdesc specify the parameters and replacement code of a +longdesc document-command, and then to evaluate it with compatible +longdesc arguments. Optionally, it can be used recursively. +containersize 1992 +containerchecksum 63ce2370079b4b2a286355d05d40771658e35fef085570aaf07d264d81571378a6d76db128e3fcea1c6c27632cb37f317ae28300059027979114e9eefcb5cf53 +doccontainersize 541164 +doccontainerchecksum 203a8ecde6022efcaba0680a507833ec56601887b47dbd563683195b828cd246d55cc9a44b91cb6ec2a3d0b8d7ce6d0777aa9519b93ca2b4b0f96f643df35dd9 +docfiles size=138 + RELOC/doc/latex/lambdax/README.md details="Readme" + RELOC/doc/latex/lambdax/lambdax.bib + RELOC/doc/latex/lambdax/lambdax.pdf details="Package documentation" +srccontainersize 4292 +srccontainerchecksum 2790c5696eaa95b18c4c301d3a72d5aa0a72566cfebd514dab3546738897f2d0aafe55ef96ba51073fd07e98f0052eaca4cc9bd8d46f5fd9cf7b544b4f103c64 +srcfiles size=4 + RELOC/source/latex/lambdax/lambdax.dtx + RELOC/source/latex/lambdax/lambdax.ins +runfiles size=2 + RELOC/tex/latex/lambdax/lambdax.sty +catalogue-contact-repository https://github.com/rogard/lambdax +catalogue-ctan /macros/latex/contrib/lambdax +catalogue-license lppl1.3c +catalogue-topics macro-supp macro-def +catalogue-version 1.1 + name langcode category Package revision 27764 @@ -162381,9 +170343,49 @@ catalogue-license lppl1.3 catalogue-topics multilingual macro-gen catalogue-version 0.2 +name langnames +category Package +revision 65502 +shortdesc Name languages and their genetic affiliations consistently +relocated 1 +longdesc This package attempts to make the typing of language names, +longdesc codes, and families slightly easier by providing macros to +longdesc access pre-defined language--code--family combinations from two +longdesc important databases, as well as the possibility to create new +longdesc combinations. It may be particularly useful for large, +longdesc collaborative projects as well as typologically minded ones +longdesc with a variety of language examples. +containersize 137972 +containerchecksum 34942812d0c0a59d9e0515e58dc6517a3e4b9fcbf75a338925f2913287d712b9975aa2c48a5f65d2453d5d2b5798f506e8b5bbcb6351ab92cd7a77a07804e94a +doccontainersize 107712 +doccontainerchecksum 0f3d6dc9fcff40e3bbf8d9217629b5c587dd5cca03efa840611d907bc2859f88515e9f4a052fe229d9fbdd3aa2c2d5905a5cfe818b09897688f3e528d12c0267 +docfiles size=42 + RELOC/doc/latex/langnames/README.md details="Readme" + RELOC/doc/latex/langnames/langnames.pdf details="Package documentation" +srccontainersize 6120 +srccontainerchecksum 0777e5a79ac5dd94ac8a9c7191f877408c5d00de252ee95015e8b8918fc94dd29877f10ee110c082df2309d4c0f057fee6a5c50568259d8f93ef7f55b5b5609e +srcfiles size=6 + RELOC/source/latex/langnames/langnames.dtx + RELOC/source/latex/langnames/langnames.ins +runfiles size=331 + RELOC/tex/latex/langnames/langnames.sty + RELOC/tex/latex/langnames/ln_fams_glot.tex + RELOC/tex/latex/langnames/ln_fams_wals.tex + RELOC/tex/latex/langnames/ln_langs_glot.tex + RELOC/tex/latex/langnames/ln_langs_glot_native.tex + RELOC/tex/latex/langnames/ln_langs_wals.tex + RELOC/tex/latex/langnames/ln_langs_wals_native.tex +catalogue-contact-bugs https://github.com/cicervlvs/langnames/issues +catalogue-contact-home https://github.com/cicervlvs/langnames +catalogue-contact-repository https://github.com/cicervlvs/langnames +catalogue-ctan /macros/latex/contrib/langnames +catalogue-license lppl1.3 +catalogue-topics abbrev linguistic +catalogue-version 2.1 + name langsci category Package -revision 58820 +revision 65793 shortdesc Typeset books for publication with Language Science Press relocated 1 longdesc This package allows you to typeset monographs and edited @@ -162392,57 +170394,45 @@ longdesc (http://www.langsci-press.org). It includes all necessary files longdesc for title pages, frontmatter, main content, list of references longdesc and indexes. Dust jackets for BoD and Createspace longdesc (print-on-demand service providers) can also be produced. -containersize 74256 -containerchecksum bff440adaa56f45ff5a2e8d84d9af8267dacf1c1835c0ae151aac8b30d08b50a1b9b432343603fc6c5426d157befd70cc6d80e2c70470f85c875bf3e733927a4 -doccontainersize 202348 -doccontainerchecksum 570af6bd6f945aef36cc533d5a7fb05f7ffe615d01c9fbb63d9c1cbe2fa8120444b484ccdb84cc3a1c9805bd00b92c7cf744688b3d02166bb03c735404088a19 -docfiles size=58 +containersize 64436 +containerchecksum 88f33199c97f3f8a6a8ce174caea01f299ecf7230324d5739bf02d7e5b42db36736d1c17730a2f27f6d114490b5c1770a6da368ec1dd983791b8a67962136fa7 +doccontainersize 273436 +doccontainerchecksum b7b18248eb59015cdbc489b1ff9c992493e5a4453b4703223586367787c5648c640bc8946d25e665acf88ac376953f2e22f61cedc9ba53d9d8e4a47ce89e9b33 +docfiles size=85 RELOC/doc/xelatex/langsci/README.md details="README.md" RELOC/doc/xelatex/langsci/documentation/langsci-doc.pdf details="Package documentation" RELOC/doc/xelatex/langsci/documentation/langsci-doc.tex RELOC/doc/xelatex/langsci/documentation/langsci-gb4.pdf RELOC/doc/xelatex/langsci/examples/langsci-test.bib + RELOC/doc/xelatex/langsci/examples/samplemonograph.pdf RELOC/doc/xelatex/langsci/examples/samplemonograph.tex + RELOC/doc/xelatex/langsci/examples/samplepaper.pdf RELOC/doc/xelatex/langsci/examples/samplepaper.tex + RELOC/doc/xelatex/langsci/examples/samplevolume.pdf RELOC/doc/xelatex/langsci/examples/samplevolume.tex - RELOC/doc/xelatex/langsci/labphon-logo.pdf -runfiles size=107 +runfiles size=90 RELOC/tex/xelatex/langsci/langsci-affiliations.sty - RELOC/tex/xelatex/langsci/langsci-basic.sty RELOC/tex/xelatex/langsci/langsci-bidi.sty - RELOC/tex/xelatex/langsci/langsci-forest-setup.sty RELOC/tex/xelatex/langsci/langsci-gb4e.sty - RELOC/tex/xelatex/langsci/langsci-hyphenation-de.tex - RELOC/tex/xelatex/langsci/langsci-hyphenation-fr.tex - RELOC/tex/xelatex/langsci/langsci-hyphenation-pt.tex - RELOC/tex/xelatex/langsci/langsci-hyphenation-universal.tex RELOC/tex/xelatex/langsci/langsci-lgr.sty - RELOC/tex/xelatex/langsci/langsci-linguex.sty RELOC/tex/xelatex/langsci/langsci-optional.sty - RELOC/tex/xelatex/langsci/langsci-plots.sty - RELOC/tex/xelatex/langsci/langsci-pod.sty RELOC/tex/xelatex/langsci/langsci-series.def RELOC/tex/xelatex/langsci/langsci-subparts.sty RELOC/tex/xelatex/langsci/langsci-tbls.sty RELOC/tex/xelatex/langsci/langsci-textipa.sty - RELOC/tex/xelatex/langsci/langsci-tikz.sty - RELOC/tex/xelatex/langsci/langsci-tobi.sty RELOC/tex/xelatex/langsci/langsci-unified.bbx RELOC/tex/xelatex/langsci/langsci-unified.cbx + RELOC/tex/xelatex/langsci/langsci-unified.dbx RELOC/tex/xelatex/langsci/langscibook.cls RELOC/tex/xelatex/langsci/tbls-alarm.pdf - RELOC/tex/xelatex/langsci/tbls-book.eps RELOC/tex/xelatex/langsci/tbls-book.pdf - RELOC/tex/xelatex/langsci/tbls-bulb.eps RELOC/tex/xelatex/langsci/tbls-bulb.pdf RELOC/tex/xelatex/langsci/tbls-bulbon.pdf RELOC/tex/xelatex/langsci/tbls-code.pdf RELOC/tex/xelatex/langsci/tbls-explore.pdf RELOC/tex/xelatex/langsci/tbls-filter.pdf - RELOC/tex/xelatex/langsci/tbls-glass.eps RELOC/tex/xelatex/langsci/tbls-glass.pdf RELOC/tex/xelatex/langsci/tbls-glass2.pdf - RELOC/tex/xelatex/langsci/tbls-law.eps RELOC/tex/xelatex/langsci/tbls-law.pdf RELOC/tex/xelatex/langsci/tbls-more.pdf RELOC/tex/xelatex/langsci/tbls-pencil.pdf @@ -162455,7 +170445,7 @@ runfiles size=107 RELOC/tex/xelatex/langsci/tbls-test.pdf RELOC/tex/xelatex/langsci/tbls-tree.pdf catalogue-contact-bugs https://github.com/langsci/langscibook/issues -catalogue-contact-development https://github.com/langsci/langscibook/graphs/contributors +catalogue-contact-development https://github.com/glottotopia catalogue-contact-home https://www.langsci-press.org catalogue-contact-repository https://github.com/langsci/langscibook catalogue-contact-support mailto:support@langsci-press.org @@ -162465,40 +170455,36 @@ catalogue-topics journalpub book-pub class name langsci-avm category Package -revision 55846 -shortdesc Attribute-value matrices and feature structures for use in linguistics -relocated 1 -longdesc This package is aimed at typesetting beautiful feature -longdesc structures, also known as attribute-value matrices (AVMs), for -longdesc use in linguistics. The package provides a minimal and easy to -longdesc read syntax. It depends only on the array package and can be -longdesc placed almost everywhere, in particular in footnotes or graphs -longdesc and tree structures. The package is meant as an update to, and -longdesc serves the same purpose as, Christopher Manning's avm package, -longdesc but shares no code base with that package. langsci-avm was -longdesc developed at Language Science Press to help in the production -longdesc of scientific texts in linguistics, in particular an upcoming -longdesc HPSG handbook. -containersize 3360 -containerchecksum 45e13bfd02059c610e29e486effc0fd6b2b9f3c6ab2ac12dc52de45f8ac564215141450619c6d10021f649114c9faf84ff7b6ccfd5c2ea29d0cefce188b71615 -doccontainersize 112560 -doccontainerchecksum d1430be2082f046538d035ed3aecd3be47694ed251a51e542a26b2206686d08594d443107fbb019732d06152d97724359b8e42a3be4bdcdf6ec778e80116df9a -docfiles size=29 +revision 66016 +shortdesc Feature structures and attribute-value matrices (AVM) +relocated 1 +longdesc A package for typesetting feature structures, also known as +longdesc attribute-value matrices (AVMs), for use in linguistics. The +longdesc package provides a minimal and easy to read syntax. It depends +longdesc only on the array package and can be placed almost everywhere, +longdesc in particular in footnotes or graphs and tree structures. The +longdesc package serves the same purpose as, Christopher Manning's avm +longdesc package, but shares no code base with that package. +containersize 4412 +containerchecksum 00cb724f7783d4f6d088f38bd60c816afe8c117b338bf3ae320e4b8118416f025b535989a48262d13d210087560ae01d850f2562f3d75db38210fcb6c012ab38 +doccontainersize 156860 +doccontainerchecksum 618e957df349847fd4828b07ad44e9a8247bcaba893704379471afbf9348c310da92fde003bbbe963b3249ba532982483ad7eb53950a5f39b27f9c17058f7bd0 +docfiles size=41 RELOC/doc/latex/langsci-avm/README details="Readme" RELOC/doc/latex/langsci-avm/langsci-avm.pdf details="Package documentation" -srccontainersize 11436 -srccontainerchecksum 4f7432db385da2317e11a7c41d90d06f47ca0867897db38c14f91a138d6b671fe808800eea40736266cb6b49c1f7ae30c62be84af64cfb47d986672bb9a27a16 -srcfiles size=12 +srccontainersize 14200 +srccontainerchecksum bd2a2411ad9e5d418f33b3c758bcc7f572aff8be2a8b757c247bf099d246f4b658602cdda97e12de0e784259e13b3e4840b5789baf35606ebfc3baf2629bea10 +srcfiles size=15 RELOC/source/latex/langsci-avm/langsci-avm.dtx RELOC/source/latex/langsci-avm/langsci-avm.ins -runfiles size=4 +runfiles size=5 RELOC/tex/latex/langsci-avm/langsci-avm.sty catalogue-contact-bugs https://github.com/langsci/langsci-avm/issues catalogue-contact-repository https://github.com/langsci/langsci-avm catalogue-ctan /macros/latex/contrib/langsci-avm catalogue-license lppl1.3c catalogue-topics linguistic matrix expl3 -catalogue-version 0.2.1 +catalogue-version 0.3.0 name lapdf category Package @@ -162634,7 +170620,7 @@ catalogue-version 0.1 name lastpage category Package -revision 36680 +revision 66461 shortdesc Reference last page for Page N of M type footers relocated 1 longdesc Reference the number of pages in your LaTeX document through @@ -162642,33 +170628,36 @@ longdesc the introduction of a new label which can be referenced like longdesc \pageref{LastPage} to give a reference to the last page of a longdesc document. It is particularly useful in the page footer that longdesc says: Page N of M. -containersize 3556 -containerchecksum adcd9319022ecf2a5b959ede5d5ce8c5d6a3e7efe1aae5f84abfa7d138162e24a403c6d50604cb6bf8bc80a918837f6d78dee60a452397e7a495cc4d15e52956 -doccontainersize 547124 -doccontainerchecksum 2eb7e8457918e2ed51abf6f48d5f5d93157eff19b8e320a782bc204b44c58a684cdeb2dd3b1c28f5a8de7434b6da9af49ffb2d939ae80875234797149a80c2ab -docfiles size=139 +containersize 3980 +containerchecksum 05dd2ff6bd9b203950c68f373dc908c8be572ce9a86342e420d5195914834b065a98723dcfc5c3191497502f7eab01c228b0899f7d4d391f04d39e9354df09d3 +doccontainersize 555364 +doccontainerchecksum 3ab2b7b8c80450e60abbc5608f06d6bd482387d7c78ad1dc3fc0b0a7be6ab6de23ae4ced788a7d91fe5de2d97efc1addf216267de2c4fe323525567b82761034 +docfiles size=144 RELOC/doc/latex/lastpage/README details="Readme" RELOC/doc/latex/lastpage/lastpage-example.pdf details="Package examples" RELOC/doc/latex/lastpage/lastpage-example.tex RELOC/doc/latex/lastpage/lastpage.pdf details="Package documentation" -srccontainersize 19772 -srccontainerchecksum 53b1f86deddefe6f61b270ae18cc705a8ec1360a98a5e5338730aa7cb1653383062cede821dc670c5a9db0064e2989961d2604491bd6a5df9fd90f6e18ba0ae0 -srcfiles size=22 +srccontainersize 20892 +srccontainerchecksum a3eeac9547bf740c19b8ab7691e0a0d92a3cf173473e2e33248a87275f3a1c7a48f378996a0f2306b061e4ef529a6be8b4f14a4feb69341537b91e63afd8a79a +srcfiles size=27 RELOC/source/latex/lastpage/lastpage.drv RELOC/source/latex/lastpage/lastpage.dtx RELOC/source/latex/lastpage/lastpage.ins -runfiles size=4 +runfiles size=9 RELOC/tex/latex/lastpage/lastpage.sty RELOC/tex/latex/lastpage/lastpage209.sty + RELOC/tex/latex/lastpage/lastpage2e.sty + RELOC/tex/latex/lastpage/lastpageclassic.sty + RELOC/tex/latex/lastpage/lastpagemodern.sty catalogue-also totpages catalogue-ctan /macros/latex/contrib/lastpage -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics label-ref -catalogue-version 1.2m +catalogue-version 2.0a name latex category Package -revision 57354 +revision 65161 shortdesc A TeX macro package that defines LaTeX relocated 1 longdesc LaTeX is a widely-used macro package for TeX, providing many @@ -162690,11 +170679,11 @@ depend latex-fonts depend latexconfig depend luatex depend pdftex -containersize 196100 -containerchecksum 3dc7384b2074e86b6c45f5096b7a85a03064b0d9be4e74b46adefbfcc1fe80d66700f38494961a806ccd4710219681e2968fa5c0c071b366b197114af7c798b0 -doccontainersize 22967836 -doccontainerchecksum 13b7a880f89a5cb1ea79fe32f8fcc20679ed30fdba4c27837b29a7c861f52cfabd614622bcdaa7805bd0e8f1abbaeea0336d346d3a8b990e94bddb516e093ce3 -docfiles size=7175 +containersize 229788 +containerchecksum de95ba089738862d57b1139a21da57a8263cbe9ff81a7ab43608ce23fde57b4630057a95c99ecb7be712bc864e0c07a56429019d7aa9f63c01f47a995d5d567d +doccontainersize 31173536 +doccontainerchecksum 68ecd2a5c85afe7b39402db416bb7ad0f8e5662c77d77c0839a470f3f70da65377560fbcb5a6952e997da70868533f29a4b7c65d3f7dd63db13aa95ee7159b23 +docfiles size=9823 RELOC/doc/latex/base/README.md RELOC/doc/latex/base/alltt.pdf RELOC/doc/latex/base/bugs.txt @@ -162708,6 +170697,8 @@ docfiles size=7175 RELOC/doc/latex/base/cmfonts.pdf RELOC/doc/latex/base/cyrguide.pdf RELOC/doc/latex/base/cyrguide.tex + RELOC/doc/latex/base/doc-code.pdf + RELOC/doc/latex/base/doc-code.tex RELOC/doc/latex/base/doc.pdf RELOC/doc/latex/base/docstrip.pdf RELOC/doc/latex/base/encguide.pdf @@ -162719,8 +170710,8 @@ docfiles size=7175 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/lamport-manual.err + RELOC/doc/latex/base/lamport-manual.pdf RELOC/doc/latex/base/latexrelease.pdf RELOC/doc/latex/base/latexsym.pdf RELOC/doc/latex/base/lb2.err @@ -162734,6 +170725,10 @@ docfiles size=7175 RELOC/doc/latex/base/lppl-1-2.txt RELOC/doc/latex/base/lppl.pdf RELOC/doc/latex/base/lppl.txt + RELOC/doc/latex/base/ltcmdhooks-code.pdf + RELOC/doc/latex/base/ltcmdhooks-code.tex + RELOC/doc/latex/base/ltcmdhooks-doc.pdf + RELOC/doc/latex/base/ltcmdhooks-doc.tex RELOC/doc/latex/base/ltfilehook-code.pdf RELOC/doc/latex/base/ltfilehook-code.tex RELOC/doc/latex/base/ltfilehook-doc.pdf @@ -162743,6 +170738,10 @@ docfiles size=7175 RELOC/doc/latex/base/lthooks-doc.pdf RELOC/doc/latex/base/lthooks-doc.tex RELOC/doc/latex/base/ltluatex.pdf + RELOC/doc/latex/base/ltmarks-code.pdf + RELOC/doc/latex/base/ltmarks-code.tex + RELOC/doc/latex/base/ltmarks-doc.pdf + RELOC/doc/latex/base/ltmarks-doc.tex RELOC/doc/latex/base/ltnews.pdf RELOC/doc/latex/base/ltnews.tex RELOC/doc/latex/base/ltnews01.pdf @@ -162809,6 +170808,18 @@ docfiles size=7175 RELOC/doc/latex/base/ltnews31.tex RELOC/doc/latex/base/ltnews32.pdf RELOC/doc/latex/base/ltnews32.tex + RELOC/doc/latex/base/ltnews33.pdf + RELOC/doc/latex/base/ltnews33.tex + RELOC/doc/latex/base/ltnews34.pdf + RELOC/doc/latex/base/ltnews34.tex + RELOC/doc/latex/base/ltnews35.pdf + RELOC/doc/latex/base/ltnews35.tex + RELOC/doc/latex/base/ltnews36.pdf + RELOC/doc/latex/base/ltnews36.tex + RELOC/doc/latex/base/ltpara-code.pdf + RELOC/doc/latex/base/ltpara-code.tex + RELOC/doc/latex/base/ltpara-doc.pdf + RELOC/doc/latex/base/ltpara-doc.tex RELOC/doc/latex/base/ltshipout-code.pdf RELOC/doc/latex/base/ltshipout-code.tex RELOC/doc/latex/base/ltshipout-doc.pdf @@ -162818,8 +170829,6 @@ docfiles size=7175 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 @@ -162829,21 +170838,19 @@ docfiles size=7175 RELOC/doc/latex/base/source2e.pdf RELOC/doc/latex/base/source2e.tex RELOC/doc/latex/base/syntonly.pdf - RELOC/doc/latex/base/tex2.txt - RELOC/doc/latex/base/texpert.txt RELOC/doc/latex/base/tlc2.err RELOC/doc/latex/base/tlc2.pdf RELOC/doc/latex/base/tulm.pdf + RELOC/doc/latex/base/usrguide-historic.pdf + RELOC/doc/latex/base/usrguide-historic.tex RELOC/doc/latex/base/usrguide.pdf RELOC/doc/latex/base/usrguide.tex - RELOC/doc/latex/base/usrguide3.pdf - RELOC/doc/latex/base/usrguide3.tex RELOC/doc/latex/base/utf8ienc.pdf RELOC/doc/latex/base/webcomp.err RELOC/doc/latex/base/webcomp.pdf -srccontainersize 604512 -srccontainerchecksum 39703818293b0deb2b337ac23e8ca6bf55c982b71e5753dbebffbc3627729f6334e60fb44e68d372401dae03bcfa3a3afedc0751dadf3934fa8037365a390f51 -srcfiles size=889 +srccontainersize 719884 +srccontainerchecksum 59d3d31147fc8a31c6348c2a5f371cd4dc69d2367f9ced0c62150c5d14ead49b4e195c328ad4791638e61b93f69143c0c93bbed5551b31e4de1284a4aa7b6d73 +srcfiles size=1054 RELOC/source/latex/base/alltt.dtx RELOC/source/latex/base/alltt.ins RELOC/source/latex/base/classes.dtx @@ -162879,6 +170886,8 @@ srcfiles size=889 RELOC/source/latex/base/ltbibl.dtx RELOC/source/latex/base/ltboxes.dtx RELOC/source/latex/base/ltclass.dtx + RELOC/source/latex/base/ltcmd.dtx + RELOC/source/latex/base/ltcmdhooks.dtx RELOC/source/latex/base/ltcntrl.dtx RELOC/source/latex/base/ltcounts.dtx RELOC/source/latex/base/ltdefns.dtx @@ -162899,11 +170908,14 @@ srcfiles size=889 RELOC/source/latex/base/lthooks.dtx RELOC/source/latex/base/lthyphen.dtx RELOC/source/latex/base/ltidxglo.dtx + RELOC/source/latex/base/ltkeys.dtx RELOC/source/latex/base/ltlength.dtx RELOC/source/latex/base/ltlists.dtx RELOC/source/latex/base/ltlogos.dtx RELOC/source/latex/base/ltluatex.dtx + RELOC/source/latex/base/ltmarks.dtx RELOC/source/latex/base/ltmath.dtx + RELOC/source/latex/base/ltmeta.dtx RELOC/source/latex/base/ltmiscen.dtx RELOC/source/latex/base/ltoutenc.dtx RELOC/source/latex/base/ltoutenc.ins @@ -162911,6 +170923,7 @@ srcfiles size=889 RELOC/source/latex/base/ltpage.dtx RELOC/source/latex/base/ltpageno.dtx RELOC/source/latex/base/ltpar.dtx + RELOC/source/latex/base/ltpara.dtx RELOC/source/latex/base/ltpictur.dtx RELOC/source/latex/base/ltplain.dtx RELOC/source/latex/base/ltsect.dtx @@ -162942,7 +170955,7 @@ srcfiles size=889 RELOC/source/latex/base/tulm.ins RELOC/source/latex/base/unpack.ins RELOC/source/latex/base/utf8ienc.dtx -runfiles size=530 +runfiles size=644 RELOC/makeindex/latex/gglo.ist RELOC/makeindex/latex/gind.ist RELOC/tex/latex/base/alltt.sty @@ -162969,9 +170982,10 @@ runfiles size=530 RELOC/tex/latex/base/cp858.def RELOC/tex/latex/base/cp865.def RELOC/tex/latex/base/decmulti.def + RELOC/tex/latex/base/doc-2016-02-15.sty + RELOC/tex/latex/base/doc-2021-06-01.sty RELOC/tex/latex/base/doc.sty RELOC/tex/latex/base/docstrip.tex - RELOC/tex/latex/base/everyshi-ltx.sty RELOC/tex/latex/base/exscale.sty RELOC/tex/latex/base/fix-cm.sty RELOC/tex/latex/base/fixltx2e.sty @@ -163011,6 +171025,7 @@ runfiles size=530 RELOC/tex/latex/base/ltluatex.tex RELOC/tex/latex/base/ltnews.cls RELOC/tex/latex/base/ltxcheck.tex + RELOC/tex/latex/base/ltxdoc.cfg RELOC/tex/latex/base/ltxdoc.cls RELOC/tex/latex/base/ltxguide.cls RELOC/tex/latex/base/ly1enc.dfu @@ -163111,22 +171126,22 @@ runfiles size=530 catalogue-contact-home http://www.latex-project.org/ catalogue-license lppl1.3c catalogue-topics format -catalogue-version 2020-10-01-PL4 +catalogue-version 2022-11-01 PL1 name latex-amsmath-dev category Package -revision 56791 +revision 64899 shortdesc Development pre-release of the LaTeX amsmath bundle relocated 1 longdesc This is a pre-release version of the standard LaTeX amsmath longdesc bundle. It accompanies the pre-testing kernel code longdesc (latex-base-dev), and is intended for testing by knowledgeable longdesc users. -containersize 30636 -containerchecksum 53089df5f54a43f8e6e4835df89824ebbc7ba53d54a96dcb3419be22fb8151337d5b03dec8db095a808135e83de9739f8dd314befb52d3f3340a7f82d8b0d0da -doccontainersize 2351488 -doccontainerchecksum ec111f9ae7c306c4a028ece6edd89b205a47d05d82ad9872235ce189354cdb2415f64a401c150327dd6cbb1b84d0ca495236b733000213f7fc9865a9baceb8df -docfiles size=667 +containersize 31024 +containerchecksum 54d16b5357800dfdeed39ea71e5c98bbe8ff88c4f01bf9781be181d47854110bd5e9f50a70b512963e4034d5b984e5ab898f61412b3d5b183c3799a908512e64 +doccontainersize 2420644 +doccontainerchecksum e1d3a8c5f15962c3727dab5d9cf6aff999e817e56ec950b3a49adc762318a895cbfe411e27795957831b18f8b19ade00b40ea9c72e0e112ed41540556eb179f0 +docfiles size=717 RELOC/doc/latex-dev/amsmath/README.md details="Readme" RELOC/doc/latex-dev/amsmath/ams-external.txt RELOC/doc/latex-dev/amsmath/ams-internal.txt @@ -163148,9 +171163,9 @@ docfiles size=667 RELOC/doc/latex-dev/amsmath/technote.tex RELOC/doc/latex-dev/amsmath/testmath.pdf details="Examples paper" language="en" RELOC/doc/latex-dev/amsmath/testmath.tex -srccontainersize 65376 -srccontainerchecksum 13564f9aa92a5e6577caacd4c912ba7b8ac1da004092dd911bc311818689b9cccdff8c5b9e6ae9fb3cbac4cfb0eca0a008d83603a0e793739f02cf4cecd307cb -srcfiles size=81 +srccontainersize 66328 +srccontainerchecksum 2d1cb38cf290f4fbcf7cd32f2befbb399a4f92a89396ce312f4274f05ceb72b702c0908b1f7877fcc346e4c78499af1028edbb6723b57d3ca4a31ea30d68fb76 +srcfiles size=82 RELOC/source/latex-dev/amsmath/amsbsy.dtx RELOC/source/latex-dev/amsmath/amsbsy.ins RELOC/source/latex-dev/amsmath/amscd.dtx @@ -163177,12 +171192,12 @@ runfiles size=70 RELOC/tex/latex-dev/amsmath/amsxtra.sty catalogue-ctan /macros/latex-dev/required/amsmath catalogue-license lppl1.3c -catalogue-topics maths -catalogue-version 2021-05-01 pre-release 0 +catalogue-topics maths latex-devel +catalogue-version 2023-05-01 pre-release 0 name latex-base-dev category Package -revision 59080 +revision 66513 shortdesc Development pre-release of the LaTeX kernel relocated 1 longdesc This package provides a testing release for upcoming LaTeX2e @@ -163192,11 +171207,11 @@ longdesc users is required by adding these changes to the release LaTeX longdesc kernel. Typically, the code here will be used by a TeX system longdesc to create dedicated formats, for example pdflatex-dev, which longdesc can then be used explicitly for testing. -containersize 215440 -containerchecksum 49b883fe2a4e048c2dbc730ac67c2b9566161ca36d1bce5af87114f8e47df6c6635fe86c2d82e8083af4e93d50e7c1cf16ce4beeb822da38f0a4cbec36ba2a6e -doccontainersize 27216200 -doccontainerchecksum 3bd64f94d9a8c045735ef3d3f04cdd553fa1d60151e01ab6e1736e8e0109ae30681bc90ff33ba8c4d0b9fe52945a36fafb237ae1de6c87a69403769167e150af -docfiles size=8572 +containersize 229944 +containerchecksum 1b7c2780dcf6c7d3d0356c0ded016fc031bc5f18f20a426e8b5faf3d63825ccb8cc28893f401a1d2f658c2091b14c627c955c8256c7f12f6c6a1310d078659a6 +doccontainersize 31529372 +doccontainerchecksum 6f0fa65698f7e44b8c2585bff281a2834ece8d9df6aec188760307d4f32c7e61550ceaac2c3120e0515a5a612c4236c873f5510163c5d067645e26bea93f0db9 +docfiles size=9955 RELOC/doc/latex-dev/base/README.md details="Readme" RELOC/doc/latex-dev/base/alltt.pdf RELOC/doc/latex-dev/base/bugs.txt @@ -163210,6 +171225,8 @@ docfiles size=8572 RELOC/doc/latex-dev/base/cmfonts.pdf RELOC/doc/latex-dev/base/cyrguide.pdf details="Cyrillic languages guide" RELOC/doc/latex-dev/base/cyrguide.tex + RELOC/doc/latex-dev/base/doc-code.pdf + RELOC/doc/latex-dev/base/doc-code.tex RELOC/doc/latex-dev/base/doc.pdf RELOC/doc/latex-dev/base/docstrip.pdf RELOC/doc/latex-dev/base/encguide.pdf details="Font encoding guide" @@ -163221,8 +171238,8 @@ docfiles size=8572 RELOC/doc/latex-dev/base/graphpap.pdf RELOC/doc/latex-dev/base/ifthen.pdf RELOC/doc/latex-dev/base/inputenc.pdf - RELOC/doc/latex-dev/base/latexchanges.pdf details="Details of changes to LaTeX2e" - RELOC/doc/latex-dev/base/latexchanges.tex + RELOC/doc/latex-dev/base/lamport-manual.err + RELOC/doc/latex-dev/base/lamport-manual.pdf RELOC/doc/latex-dev/base/latexrelease.pdf RELOC/doc/latex-dev/base/latexsym.pdf RELOC/doc/latex-dev/base/lb2.err @@ -163249,6 +171266,10 @@ docfiles size=8572 RELOC/doc/latex-dev/base/lthooks-doc.pdf RELOC/doc/latex-dev/base/lthooks-doc.tex RELOC/doc/latex-dev/base/ltluatex.pdf + RELOC/doc/latex-dev/base/ltmarks-code.pdf + RELOC/doc/latex-dev/base/ltmarks-code.tex + RELOC/doc/latex-dev/base/ltmarks-doc.pdf + RELOC/doc/latex-dev/base/ltmarks-doc.tex RELOC/doc/latex-dev/base/ltnews.pdf details="Complete LaTeX2e news" RELOC/doc/latex-dev/base/ltnews.tex RELOC/doc/latex-dev/base/ltnews01.pdf @@ -163317,6 +171338,14 @@ docfiles size=8572 RELOC/doc/latex-dev/base/ltnews32.tex RELOC/doc/latex-dev/base/ltnews33.pdf RELOC/doc/latex-dev/base/ltnews33.tex + RELOC/doc/latex-dev/base/ltnews34.pdf + RELOC/doc/latex-dev/base/ltnews34.tex + RELOC/doc/latex-dev/base/ltnews35.pdf + RELOC/doc/latex-dev/base/ltnews35.tex + RELOC/doc/latex-dev/base/ltnews36.pdf + RELOC/doc/latex-dev/base/ltnews36.tex + RELOC/doc/latex-dev/base/ltnews37.pdf + RELOC/doc/latex-dev/base/ltnews37.tex RELOC/doc/latex-dev/base/ltpara-code.pdf RELOC/doc/latex-dev/base/ltpara-code.tex RELOC/doc/latex-dev/base/ltpara-doc.pdf @@ -163330,8 +171359,6 @@ docfiles size=8572 RELOC/doc/latex-dev/base/ltxdoc.pdf RELOC/doc/latex-dev/base/makeindx.pdf RELOC/doc/latex-dev/base/manifest.txt - RELOC/doc/latex-dev/base/manual.err - RELOC/doc/latex-dev/base/manual.pdf RELOC/doc/latex-dev/base/modguide.pdf details="Modification guide" RELOC/doc/latex-dev/base/modguide.tex RELOC/doc/latex-dev/base/nfssfont.pdf @@ -163341,21 +171368,19 @@ docfiles size=8572 RELOC/doc/latex-dev/base/source2e.pdf RELOC/doc/latex-dev/base/source2e.tex RELOC/doc/latex-dev/base/syntonly.pdf - RELOC/doc/latex-dev/base/tex2.txt - RELOC/doc/latex-dev/base/texpert.txt RELOC/doc/latex-dev/base/tlc2.err RELOC/doc/latex-dev/base/tlc2.pdf RELOC/doc/latex-dev/base/tulm.pdf + RELOC/doc/latex-dev/base/usrguide-historic.pdf details="LaTeX for authors -- historic version" + RELOC/doc/latex-dev/base/usrguide-historic.tex RELOC/doc/latex-dev/base/usrguide.pdf details="User guide to LaTeX 2e" RELOC/doc/latex-dev/base/usrguide.tex - RELOC/doc/latex-dev/base/usrguide3.pdf details="LaTeX3 methods for document authors" - RELOC/doc/latex-dev/base/usrguide3.tex RELOC/doc/latex-dev/base/utf8ienc.pdf RELOC/doc/latex-dev/base/webcomp.err RELOC/doc/latex-dev/base/webcomp.pdf -srccontainersize 665048 -srccontainerchecksum 89387b87aa7116f8bc04116b20dd487855bc63859db0b886694b7abe42e0a7540b92ff0fca8fc5a1a409513fec1120ebd7800247949d05421920996853bb1b3f -srcfiles size=974 +srccontainersize 722308 +srccontainerchecksum 4d7b6520586f30ecac21054e6b5cd29899f912f0c87e99cb6835c1c5dc04cb21bf9b7cf4133e88ebbf96a6b85ceac194845c228b537605f7ceba59d5dd77aa7d +srcfiles size=1058 RELOC/source/latex-dev/base/alltt.dtx RELOC/source/latex-dev/base/alltt.ins RELOC/source/latex-dev/base/classes.dtx @@ -163413,11 +171438,14 @@ srcfiles size=974 RELOC/source/latex-dev/base/lthooks.dtx RELOC/source/latex-dev/base/lthyphen.dtx RELOC/source/latex-dev/base/ltidxglo.dtx + RELOC/source/latex-dev/base/ltkeys.dtx RELOC/source/latex-dev/base/ltlength.dtx RELOC/source/latex-dev/base/ltlists.dtx RELOC/source/latex-dev/base/ltlogos.dtx RELOC/source/latex-dev/base/ltluatex.dtx + RELOC/source/latex-dev/base/ltmarks.dtx RELOC/source/latex-dev/base/ltmath.dtx + RELOC/source/latex-dev/base/ltmeta.dtx RELOC/source/latex-dev/base/ltmiscen.dtx RELOC/source/latex-dev/base/ltoutenc.dtx RELOC/source/latex-dev/base/ltoutenc.ins @@ -163457,7 +171485,7 @@ srcfiles size=974 RELOC/source/latex-dev/base/tulm.ins RELOC/source/latex-dev/base/unpack.ins RELOC/source/latex-dev/base/utf8ienc.dtx -runfiles size=598 +runfiles size=645 RELOC/tex/latex-dev/base/alltt.sty RELOC/tex/latex-dev/base/ansinew.def RELOC/tex/latex-dev/base/applemac.def @@ -163482,7 +171510,8 @@ runfiles size=598 RELOC/tex/latex-dev/base/cp858.def RELOC/tex/latex-dev/base/cp865.def RELOC/tex/latex-dev/base/decmulti.def - RELOC/tex/latex-dev/base/doc-v3beta.sty + RELOC/tex/latex-dev/base/doc-2016-02-15.sty + RELOC/tex/latex-dev/base/doc-2021-06-01.sty RELOC/tex/latex-dev/base/doc.sty RELOC/tex/latex-dev/base/docstrip.tex RELOC/tex/latex-dev/base/exscale.sty @@ -163524,6 +171553,7 @@ runfiles size=598 RELOC/tex/latex-dev/base/ltluatex.tex RELOC/tex/latex-dev/base/ltnews.cls RELOC/tex/latex-dev/base/ltxcheck.tex + RELOC/tex/latex-dev/base/ltxdoc.cfg RELOC/tex/latex-dev/base/ltxdoc.cls RELOC/tex/latex-dev/base/ltxguide.cls RELOC/tex/latex-dev/base/ly1enc.dfu @@ -163624,12 +171654,12 @@ runfiles size=598 catalogue-also latex-base catalogue-ctan /macros/latex-dev/base catalogue-license lppl1.3c -catalogue-topics format class -catalogue-version 2021-06-01 pre-release 3 +catalogue-topics format class latex-devel +catalogue-version 2023-06-01 pre-release 2 name latex-bin category TLCore -revision 57972 +revision 66186 shortdesc LaTeX executables and man pages depend atbegshi depend atveryend @@ -163659,10 +171689,10 @@ execute AddFormat name=dvilualatex engine=luatex patterns=language.dat execute AddFormat name=latex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *latex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,dehyph,hyph-utf8,latexconfig execute AddFormat name=lualatex engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,lm,luaotfload execute AddFormat name=pdflatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex,dehyph,hyph-utf8,latexconfig -containersize 616 -containerchecksum b349e8fad2765c4a87b471532dcfafedc0a9711237c6e967011727da7bad3a5ed27a89eca81af324aa84958872d0b78c68e6d9490fced44eb7636b2fbf36611f -doccontainersize 53816 -doccontainerchecksum 7cfb465f4db5089e7fa41762a0437f5f51445efdb9aba5d676dc5933e0fbcfbe0fda31baf83e20f2d16e6a7a0019c71752af8744d02ad12636adb9afb8cb3041 +containersize 620 +containerchecksum 4067db41ccc58892a4683c2ce5e15784e9aeebea88a9d9302dffc36fedf48f51c469bb1e99035ebafc58aa0a8a442c12b06457898a71e492ce778e58122a6a62 +doccontainersize 53812 +doccontainerchecksum 763c7e3df586a275b2a756b591c96ae98ca1a2b5f0c694e9b502d55e7c4a0ad1d40b15ff4987e2be6a06f2f11afe99a4f7fcace22c45877dc54741383a55df25 docfiles size=32 texmf-dist/doc/man/man1/dvilualatex.1 texmf-dist/doc/man/man1/dvilualatex.man1.pdf @@ -163675,7 +171705,7 @@ docfiles size=32 name latex-bin-dev category TLCore -revision 59005 +revision 66186 shortdesc LaTeX pre-release executables and formats longdesc See the latex-base-dev package for information. depend atbegshi @@ -163709,9 +171739,9 @@ execute AddFormat name=latex-dev engine=pdftex patterns=language.dat execute AddFormat name=lualatex-dev engine=luahbtex patterns=language.dat,language.dat.lua options="lualatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,lm,luaotfload execute AddFormat name=pdflatex-dev engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx *pdflatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,dehyph,hyph-utf8,latexconfig,pdftex containersize 676 -containerchecksum 5d44e0274f584509e2d600f0c27f6bb395d5c9a9d18cef9df67199a8ebb30b00d32a6a944ad7e195a47ac7bd87e0bd2d8f116cd513678a0cdf2a7d45db8c065a -doccontainersize 13972 -doccontainerchecksum f7ac33d09631c9054f8ccb0ffd91a6ab83bedfee96a299ec5727be9ffeae226d2844a08633cf19e5ed45a17fce9c15707e02aeb53778d06281aba0b612c90a60 +containerchecksum 56988a74dc1969af32a87890a930eae5d1c41cc7d78d84d5293836c139885e1bca3103304d0083583e0a9d9ad1ebd76b11f86df67887de6ebec7b36137755075 +doccontainersize 14104 +doccontainerchecksum 2166531c752eb0295b643f0e20f518011d2c3063a9a5de5e7e913b2cdf8efcb382a9460ef95a711420e9a9f49fc2ac77a538361c4cdc7d730af5acb43f15f2ab docfiles size=35 texmf-dist/doc/man/man1/dvilualatex-dev.1 texmf-dist/doc/man/man1/dvilualatex-dev.man1.pdf @@ -163776,18 +171806,6 @@ binfiles arch=armhf-linux size=4 bin/armhf-linux/lualatex-dev bin/armhf-linux/pdflatex-dev -name latex-bin-dev.i386-cygwin -category TLCore -revision 54026 -shortdesc i386-cygwin files of latex-bin-dev -containersize 384 -containerchecksum 9139e2af25a4f2ca990db07bd4fe7066bf887f8fa4df2d4a7eabf62b7796316bdc64c3c5097454b286a3ee7e3752a38c483192aa79152008d988578206c2368e -binfiles arch=i386-cygwin size=4 - bin/i386-cygwin/dvilualatex-dev - bin/i386-cygwin/latex-dev - bin/i386-cygwin/lualatex-dev - bin/i386-cygwin/pdflatex-dev - name latex-bin-dev.i386-freebsd category TLCore revision 53999 @@ -163848,17 +171866,17 @@ binfiles arch=universal-darwin size=4 bin/universal-darwin/lualatex-dev bin/universal-darwin/pdflatex-dev -name latex-bin-dev.win32 +name latex-bin-dev.windows category TLCore -revision 57883 -shortdesc win32 files of latex-bin-dev -containersize 960 -containerchecksum 37dc8049f8323944465fd50382a04310009e9ef66ce0b6b6cff79db210d8dce6d1af82c8b2a6448d32f84654d703a935cedceb3ea00368502b18b2fff67ff1fd -binfiles arch=win32 size=4 - bin/win32/dvilualatex-dev.exe - bin/win32/latex-dev.exe - bin/win32/lualatex-dev.exe - bin/win32/pdflatex-dev.exe +revision 65891 +shortdesc windows files of latex-bin-dev +containersize 2568 +containerchecksum a711a169cbc2b6838921016b6222eb4f9dda29f0d720a5e6b116ed0ae621c86777a950cdd02ba4a85a7fb133277fc2108ff1a9a7c86115d0693f802b0804c64f +binfiles arch=windows size=8 + bin/windows/dvilualatex-dev.exe + bin/windows/latex-dev.exe + bin/windows/lualatex-dev.exe + bin/windows/pdflatex-dev.exe name latex-bin-dev.x86_64-cygwin category TLCore @@ -163968,18 +171986,6 @@ binfiles arch=armhf-linux size=4 bin/armhf-linux/lualatex bin/armhf-linux/pdflatex -name latex-bin.i386-cygwin -category TLCore -revision 54035 -shortdesc i386-cygwin files of latex-bin -containersize 388 -containerchecksum cc395dd629ba92e5d85a492bd6e405dd8e19d36e4a878d158107a73044b3b64f34fb439b58412307a91a249373623c87950301c32aca5c477eeab987ef94e609 -binfiles arch=i386-cygwin size=4 - bin/i386-cygwin/dvilualatex - bin/i386-cygwin/latex - bin/i386-cygwin/lualatex - bin/i386-cygwin/pdflatex - name latex-bin.i386-freebsd category TLCore revision 54018 @@ -164040,17 +172046,17 @@ binfiles arch=universal-darwin size=4 bin/universal-darwin/lualatex bin/universal-darwin/pdflatex -name latex-bin.win32 +name latex-bin.windows category TLCore -revision 57883 -shortdesc win32 files of latex-bin -containersize 956 -containerchecksum 87bd0c26a3a3405b730e4a46a54e230d65d34dd66b34d69baa356a6e2aaf5f1f700643be814bb11715104a23405fcc3a7c36d621c49b7545d7fdf396419202ad -binfiles arch=win32 size=4 - bin/win32/dvilualatex.exe - bin/win32/latex.exe - bin/win32/lualatex.exe - bin/win32/pdflatex.exe +revision 65891 +shortdesc windows files of latex-bin +containersize 2560 +containerchecksum 117f39fc9434ede20150010c03fe512338f26e8ff969d0d5533f49eaed80aae1113554a7cdc4c82dd615460cfead5299d06a9bdb4f8c94f85a0c399b9d5efd5b +binfiles arch=windows size=8 + bin/windows/dvilualatex.exe + bin/windows/latex.exe + bin/windows/lualatex.exe + bin/windows/pdflatex.exe name latex-bin.x86_64-cygwin category TLCore @@ -164213,34 +172219,34 @@ catalogue-topics latex-doc name latex-firstaid-dev category Package -revision 57981 +revision 65181 shortdesc Development pre-release of the LaTeX firstaid package relocated 1 longdesc This is a pre-release version of the standard LaTeX firstaid longdesc package. It accompanies the pre-testing kernel code longdesc (latex-base-dev), and is intended for testing by knowledgeable longdesc users. -containersize 2344 -containerchecksum d15e218f16cef0e7ae518ee567d9d3912b20e1e62781f0aea4d167b1922ad28b5ce946609fd2f2a9e3c2671f096a0e34c0f88d30877dfee466ac37130cf20a18 -doccontainersize 219328 -doccontainerchecksum 870a42973a33fccdca2c176071bb5dc9f52f29c69fbe41633f75097b3b42e63db0185697ac0bbeb487eed0bc35df61507a934f2ab47c413970fa6ee1eeda73e1 -docfiles size=57 +containersize 3472 +containerchecksum f9305a21c399fac15258a607d12b889ca860eba3673b8b4d91a6470a078f6b23288588dd6d22e9255629060696702d2d22163d6669cede8c83762b286ad22cf8 +doccontainersize 265128 +doccontainerchecksum fe6a3cc24a4aebca09d4c20336016847a177b352d9ad402bc675f0bb67231dafd38f6208e003f6ce39bc7bb451e600c5f1457cc3723bb1f4d7bc7aedaa751ed4 +docfiles size=70 RELOC/doc/latex-dev/firstaid/README.md details="Readme" RELOC/doc/latex-dev/firstaid/changes.txt RELOC/doc/latex-dev/firstaid/latex2e-first-aid-for-external-files.pdf details="Package documentation" -srccontainersize 6076 -srccontainerchecksum d9b97a9c8b659ef4a4ff3a67a4593bf95bf5d01917b0c550017a4a2085d5acb127a1028920d4bee04a7b00c34219f001afbdf8b34c51a0b04bcca2e2c70fc3bc -srcfiles size=6 +srccontainersize 8284 +srccontainerchecksum b7a1c866724208e2f702e9e7678876e8607e9063686b2cbb81b5bc97bfc84584207156cbf8c0b0470b5f8c2eb6227d8474c17ca52a582ad6e957ca20c3d18b8d +srcfiles size=7 RELOC/source/latex-dev/firstaid/firstaid.ins RELOC/source/latex-dev/firstaid/latex2e-first-aid-for-external-files.dtx -runfiles size=3 +runfiles size=4 RELOC/tex/latex-dev/firstaid/everysel-ltx.sty RELOC/tex/latex-dev/firstaid/filehook-ltx.sty RELOC/tex/latex-dev/firstaid/latex2e-first-aid-for-external-files.ltx catalogue-ctan /macros/latex-dev/required/firstaid catalogue-license lppl1.3c -catalogue-topics format bugfix -catalogue-version 1.0k +catalogue-topics format bugfix latex-devel +catalogue-version 1.0w name latex-fonts category Package @@ -164320,6 +172326,39 @@ catalogue-ctan /fonts/latex catalogue-license lppl catalogue-topics font font-symbol font-mf +name latex-for-undergraduates +category Package +revision 64647 +shortdesc A tutorial aimed at introducing undergraduate students to LaTeX +relocated 1 +longdesc A tutorial aimed at introducing undergraduate students to +longdesc LaTeX, including an introduction to LaTeX Workshop in Visual +longdesc Studio Code and an example package of user-defined LaTeX +longdesc commands. +containersize 456 +containerchecksum 5fc8504cbb061e03329d2e1952749d67bf5fb2f6798353c62a6f3d3f0106b9ec270852a99d9497870d84ba5d7bc9aae3bdcf7d15cc212d9c091e57527e97b656 +doccontainersize 2009952 +doccontainerchecksum a20a2467eb6e98261c588baadfc15a9a653fa257338abca2c8976d46e8a51c282012f1279b537e02e39a00227ce3171b6b68d20452dd4f228c187f373cc4e9b7 +docfiles size=829 + RELOC/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.pdf details="The tutorial itself" + RELOC/doc/latex/latex-for-undergraduates/LaTeX_for_Undergraduates.tex + RELOC/doc/latex/latex-for-undergraduates/README.md details="Readme" + RELOC/doc/latex/latex-for-undergraduates/alounsburymacros-doc.pdf details="Documentation of personal macro package" + RELOC/doc/latex/latex-for-undergraduates/alounsburymacros-doc.tex + RELOC/doc/latex/latex-for-undergraduates/alounsburymacros.sty + RELOC/doc/latex/latex-for-undergraduates/images/M33_figure.jpeg + RELOC/doc/latex/latex-for-undergraduates/images/compiling.png + RELOC/doc/latex/latex-for-undergraduates/images/creatingDocument.png + RELOC/doc/latex/latex-for-undergraduates/images/directories.png + RELOC/doc/latex/latex-for-undergraduates/images/marketplace.png + RELOC/doc/latex/latex-for-undergraduates/images/perl1.png + RELOC/doc/latex/latex-for-undergraduates/images/perl2crop.png + RELOC/doc/latex/latex-for-undergraduates/images/whiteboard.jpeg +catalogue-ctan /info/latex-for-undergraduates +catalogue-license pd +catalogue-topics tut-latex maths-doc +catalogue-version 1.0.2 + name latex-git-log category Package revision 54010 @@ -164385,15 +172424,6 @@ containerchecksum 390d256dda4dbe4c04a61df18a5f2c7f67c245fb0604cb83621536515a592d binfiles arch=armhf-linux size=1 bin/armhf-linux/latex-git-log -name latex-git-log.i386-cygwin -category Package -revision 30983 -shortdesc i386-cygwin files of latex-git-log -containersize 340 -containerchecksum 1521059195d4613781302c9cb7439c634905712b2d2d10d9d1667f83ece1f4448490ee532c201e7c632d10c206bb8a153f826fde5447332bee4fbf78eaaa5dd8 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latex-git-log - name latex-git-log.i386-freebsd category Package revision 30983 @@ -164439,14 +172469,14 @@ containerchecksum 91cde3b5b26d715dd42ce524281d050b5966cabc74449088b1543c27cb8921 binfiles arch=universal-darwin size=1 bin/universal-darwin/latex-git-log -name latex-git-log.win32 +name latex-git-log.windows category Package -revision 30983 -shortdesc win32 files of latex-git-log -containersize 692 -containerchecksum f1e8bc5f5290151660dcb98176cc55fd940baed882b036d83c88eac2b8488ebde7c4706f21da6246ee8fb7775fe66b517b2e3cc5800a479128b587396e125800 -binfiles arch=win32 size=1 - bin/win32/latex-git-log.exe +revision 65891 +shortdesc windows files of latex-git-log +containersize 2308 +containerchecksum 28cbb9367da6b0a6c9c02b27cbf50a8bca012dadbeb5c18dedcee4e0e3321cf17e73ef7422a1b5b22ef325d31b9870a6e27328863bcd0d50d7158fdf7b39c72c +binfiles arch=windows size=2 + bin/windows/latex-git-log.exe name latex-git-log.x86_64-cygwin category Package @@ -164949,7 +172979,7 @@ catalogue-topics book-ex name latex-graphics-dev category Package -revision 59080 +revision 64899 shortdesc Development pre-release of the LaTeX graphics bundle relocated 1 longdesc This is a pre-release version of the standard LaTeX graphics @@ -164957,11 +172987,11 @@ longdesc bundle. It accompanies the pre-testing kernel code longdesc (latex-base-dev), and is intended for testing by knowledgeable longdesc users. depend graphics-cfg -containersize 15148 -containerchecksum 5a68637707e35fd7567bfd19d7053a07b5b14bca6da5d8ba021d3c802ab74d693b4586e1da0793ab0facf4757d5512651b8111dfc0665cea66066b121b6a0588 -doccontainersize 2028260 -doccontainerchecksum 138df1c018b519e4f4463dacd158735d8de58fcf54e97e586899d49fd6ba60f5d1b53d92526cc812d85da74537c09d1fe3268a8c2515c9e12ccc918ce399ed67 -docfiles size=669 +containersize 15844 +containerchecksum 33e2d6ed2e3076219a0438b8d8461110e7edf3a9b0534455d2fc43837a3766d12bdc8d912414bf88bdbd9b10a54a5b8b2045ff3a3cef42ed7cdc49a2d8664d5a +doccontainersize 2503664 +doccontainerchecksum ab0be817107e89a4d87c8e5ce68d20ec06eba0ae37ccf79d2dae1e916fc9ae8e2b1c7f7d9701daeffa5bfb931a881d63cfd188393e075c943d91fccf3eb1753c +docfiles size=779 RELOC/doc/latex-dev/graphics/README.md details="Readme" RELOC/doc/latex-dev/graphics/cat.eps RELOC/doc/latex-dev/graphics/changes.txt @@ -164974,13 +173004,14 @@ docfiles size=669 RELOC/doc/latex-dev/graphics/grfguide.tex RELOC/doc/latex-dev/graphics/keyval.pdf RELOC/doc/latex-dev/graphics/lscape.pdf + RELOC/doc/latex-dev/graphics/mathcolor.pdf RELOC/doc/latex-dev/graphics/rotating.pdf RELOC/doc/latex-dev/graphics/rotex.pdf RELOC/doc/latex-dev/graphics/rotex.tex RELOC/doc/latex-dev/graphics/trig.pdf -srccontainersize 52252 -srccontainerchecksum 63386bb2d2ca9c8153e770efda87777e589bf94093f1d81abea91945156bb173ca974fa3799cb0fa1151e722265675e11a880ae6a70c74a18d0ef74db836cfae -srcfiles size=65 +srccontainersize 57092 +srccontainerchecksum cb5f6a80b7178dfd1074235d5e1c7a3a2830d4c7eb037cf9e5d51a2770ed85140be7648e288cd5d67f64955212b29d8dc37fe359c0b7a27fc065cdecdc198de7 +srcfiles size=69 RELOC/source/latex-dev/graphics/color.dtx RELOC/source/latex-dev/graphics/drivers.dtx RELOC/source/latex-dev/graphics/epsfig.dtx @@ -164990,9 +173021,10 @@ srcfiles size=65 RELOC/source/latex-dev/graphics/graphicx.dtx RELOC/source/latex-dev/graphics/keyval.dtx RELOC/source/latex-dev/graphics/lscape.dtx + RELOC/source/latex-dev/graphics/mathcolor.dtx RELOC/source/latex-dev/graphics/rotating.dtx RELOC/source/latex-dev/graphics/trig.dtx -runfiles size=35 +runfiles size=36 RELOC/tex/latex-dev/graphics/color.sty RELOC/tex/latex-dev/graphics/dvipdf.def RELOC/tex/latex-dev/graphics/dvipsnam.def @@ -165005,6 +173037,7 @@ runfiles size=35 RELOC/tex/latex-dev/graphics/graphicx.sty RELOC/tex/latex-dev/graphics/keyval.sty RELOC/tex/latex-dev/graphics/lscape.sty + RELOC/tex/latex-dev/graphics/mathcolor.ltx RELOC/tex/latex-dev/graphics/pctex32.def RELOC/tex/latex-dev/graphics/pctexhp.def RELOC/tex/latex-dev/graphics/pctexps.def @@ -165016,12 +173049,146 @@ runfiles size=35 catalogue-also latex-graphics catalogue-ctan /macros/latex-dev/required/graphics catalogue-license lppl1.3c -catalogue-topics graphics collection -catalogue-version 2021-06-01 pre-release 1 +catalogue-topics graphics collection latex-devel +catalogue-version 2023-05-01 pre-release 0 + +name latex-lab +category Package +revision 64892 +shortdesc LaTeX laboratory +relocated 1 +longdesc The LaTeX laboratory provides a route for additions to the +longdesc LaTeX kernel to be stablised, whilst still allowing some +longdesc stability for adventorous users. +containersize 8892 +containerchecksum 90c94e15ff9131c03891c3671ffe77c3c87fbb2cf28437a4e7e9e2eb366cd74dba85e04fa0ed7d7d25b9ec39d60397a6e6a31b9a5c05e9d8fa1a6a8775a7f4cd +doccontainersize 1869904 +doccontainerchecksum efa0da9d1f8744283802966defb8e79d2830a390c13eb310f4b9e67cdb18f1f46c05df0f2ffe5093d2ae1d6a4d3ad869437d4913e121b1d2435c3618aa6833bf +docfiles size=584 + RELOC/doc/latex/latex-lab/README.md details="Readme" + RELOC/doc/latex/latex-lab/changes.txt + RELOC/doc/latex/latex-lab/documentmetadata-support-code.pdf + RELOC/doc/latex/latex-lab/documentmetadata-support-code.tex + RELOC/doc/latex/latex-lab/documentmetadata-support-doc.pdf + RELOC/doc/latex/latex-lab/documentmetadata-support-doc.tex + RELOC/doc/latex/latex-lab/latex-lab-footnotes.pdf + RELOC/doc/latex/latex-lab/latex-lab-new-or.pdf + RELOC/doc/latex/latex-lab/latex-lab-testphase.pdf + RELOC/doc/latex/latex-lab/usage-of-footnotemark.txt + RELOC/doc/latex/latex-lab/usage-of-footnotetext.txt + RELOC/doc/latex/latex-lab/usage-of-kern-kern.txt +srccontainersize 21920 +srccontainerchecksum a1f8b5699ca88f7ca9f0576ce1a1f4b5404cea616361dd2e73cfbce60f09a9d2bbfb365c293adec116a768ca27b36e99b49a0f9a6cd86b817cb1b3b58d308e19 +srcfiles size=23 + RELOC/source/latex/latex-lab/documentmetadata-support.dtx + RELOC/source/latex/latex-lab/latex-lab-footnotes.dtx + RELOC/source/latex/latex-lab/latex-lab-new-or.dtx + RELOC/source/latex/latex-lab/latex-lab-testphase.dtx + RELOC/source/latex/latex-lab/latex-lab.ins +runfiles size=16 + RELOC/tex/latex/latex-lab/documentmetadata-support.ltx + RELOC/tex/latex/latex-lab/latex-lab-footmisc.ltx + RELOC/tex/latex/latex-lab/latex-lab-footnotes.ltx + RELOC/tex/latex/latex-lab/latex-lab-testphase-new-or.sty + RELOC/tex/latex/latex-lab/new-or-latex-lab-testphase.ltx + RELOC/tex/latex/latex-lab/phase-I-latex-lab-testphase.ltx + RELOC/tex/latex/latex-lab/phase-II-latex-lab-testphase.ltx + RELOC/tex/latex/latex-lab/tagpdf-latex-lab-testphase.ltx +catalogue-contact-home https://www.latex-project.org +catalogue-ctan /macros/latex/required/latex-lab +catalogue-license lppl1.3c +catalogue-topics format latex-devel + +name latex-lab-dev +category Package +revision 66513 +shortdesc LaTeX laboratory: Development pre-release +relocated 1 +longdesc This package provides a testing release for upcoming changes to +longdesc the latex-lab bundle, which provides a route for additions to +longdesc the LaTeX kernel to be stablised. It accompanies the +longdesc pre-testing kernel code (latex-base-dev), and is intended for +longdesc testing by knowledgeable users. +containersize 27424 +containerchecksum bb79c7d8f9e9532039f8a007c192e93db84271bc623f915f0ae2dc50962fe32f53604502dc1a835a28af9e4359c1d11218acee43709848ad1bfc1cc4f7d8ad82 +doccontainersize 5330952 +doccontainerchecksum 79c1ff9087840bfd57adec0abbdc8a642867b20473f39194ca234bb3ce6c3bd94be1afe0f8733b9f6ec0f91f8fdc29ada59e8e8cbd3fb5d137bc889308f9bfda +docfiles size=2030 + RELOC/doc/latex-dev/latex-lab/README.md details="Readme" + RELOC/doc/latex-dev/latex-lab/blocks-code.pdf + RELOC/doc/latex-dev/latex-lab/blocks-code.tex + RELOC/doc/latex-dev/latex-lab/blocks-doc.pdf + RELOC/doc/latex-dev/latex-lab/blocks-doc.tex + RELOC/doc/latex-dev/latex-lab/changes.txt + RELOC/doc/latex-dev/latex-lab/documentmetadata-support-code.pdf + RELOC/doc/latex-dev/latex-lab/documentmetadata-support-code.tex + RELOC/doc/latex-dev/latex-lab/documentmetadata-support-doc.pdf + RELOC/doc/latex-dev/latex-lab/documentmetadata-support-doc.tex + RELOC/doc/latex-dev/latex-lab/latex-lab-amsmath.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-block-tagging.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-footnotes.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-mathpkg.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-mathtagging.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-mathtools.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-new-or-1.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-new-or-2.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-sec-tagging.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-testphase.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-toc-hyperref-changes.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-toc-kernel-changes.pdf + RELOC/doc/latex-dev/latex-lab/latex-lab-toc-tagging-functions.pdf +srccontainersize 74752 +srccontainerchecksum 2e2872da928b06fbe2fd30ac64f050c0992b01bb05de860b1c238d4f50f4924aea7a97f979e84c15a6a1244fc2b91bade54d85c5854b4eb5166dd4e529d5cb41 +srcfiles size=95 + RELOC/source/latex-dev/latex-lab/documentmetadata-support.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-amsmath.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-block-tagging.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-footnotes.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-mathpkg.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-mathtagging.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-mathtools.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-new-or-1.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-new-or-2.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-sec-tagging.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-testphase.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-toc-hyperref-changes.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-toc-kernel-changes.dtx + RELOC/source/latex-dev/latex-lab/latex-lab-toc-tagging-functions.dtx + RELOC/source/latex-dev/latex-lab/latex-lab.ins +runfiles size=56 + RELOC/tex/latex-dev/latex-lab/block-tagging-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/documentmetadata-support.ltx + RELOC/tex/latex-dev/latex-lab/glyphtounicode-cmex.tex + RELOC/tex/latex-dev/latex-lab/latex-lab-amsmath.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-footmisc.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-footnotes.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-kernel-changes.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-mathpkg.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-mathtagging.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-mathtools.ltx + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-block-tagging.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-math.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-new-or-1.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-new-or-2.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-sec-tagging.sty + RELOC/tex/latex-dev/latex-lab/latex-lab-testphase-toc-tagging.sty + RELOC/tex/latex-dev/latex-lab/math-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/new-or-1-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/new-or-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/phase-I-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/phase-II-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/phase-III-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/sec-tagging-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/tagpdf-latex-lab-testphase.ltx + RELOC/tex/latex-dev/latex-lab/toc-tagging-latex-lab-testphase.ltx +catalogue-ctan /macros/latex-dev/required/latex-lab +catalogue-license lppl1.3c +catalogue-topics format latex-devel +catalogue-version 2023-06-01 pre-release 2 name latex-make category Package -revision 57349 +revision 60874 shortdesc Easy compiling of complex (and simple) LaTeX documents relocated 1 longdesc This package provides several tools that aim to simplify the @@ -165036,20 +173203,20 @@ longdesc (with \includegraphics{file.fig}). It can interact with longdesc LaTeX.mk so that the latter automatically invokes transfig if longdesc needed. And various helper tools for LaTeX.mk This package longdesc requires GNUmake (>= 3.81). -containersize 9628 -containerchecksum 1813e8f2c768d7bc33a44d8fa11609915bb392d08da86718ed969fbe3c4284d57619a39284e611ab454d207edd054b36322d5e621cd23e302e85c17c52c5060c -doccontainersize 678104 -doccontainerchecksum 71111a4f203b1ac200515ff1668831265733c9b7fd6884c4612f1261e65ad6cb1336258e7ef47f51f0d0e12a98f3efe4884f38426c0905164b3a9b8ffd47895b -docfiles size=201 - RELOC/doc/support/latex-make/LaTeX.mk +containersize 9596 +containerchecksum de9a924c38afe1abcd0802a17de4c5fd2cb444809dc81e00b6964cf3d0c81b8d8796a1bfa804250701ac4d71f42bb9d2a9ca1ec0740f59a8feb329d26aa605e3 +doccontainersize 969744 +doccontainerchecksum aeef6568aec936c43dd0bfada1245a0d353faf2329e6e66e9d49ca8a1a2f9eb738ab1667934cd0a160e074c2e2da85aa8b068bed0bdb1ab1b944cf62f42af087 +docfiles size=262 RELOC/doc/support/latex-make/LaTeX.mk.conf RELOC/doc/support/latex-make/README details="Readme" RELOC/doc/support/latex-make/figlatex.pdf details="figlatex Package documentation" RELOC/doc/support/latex-make/latex-make.pdf details="Package documentation" RELOC/doc/support/latex-make/texdepends.pdf details="texdepends Package documentation" -srccontainersize 28948 -srccontainerchecksum 9aef117c9db4a8e59715ea906c8293fb460ea4026d583d33bb34c3e14ad92ccd536d831cd2e3eb8729eac3b4654236e73419a2bacf84e1c10d640ab9274db2fa -srcfiles size=35 +srccontainersize 29356 +srccontainerchecksum 521a553ebb556cb6df809ea5f830c926101dcd06f147544c19476a0b0ba82154c3b0316d795f4057a906370972648b485a96dd7386c8e6541160af469a74487f +srcfiles size=46 + RELOC/source/support/latex-make/LaTeX.mk RELOC/source/support/latex-make/figlatex.dtx RELOC/source/support/latex-make/latex-make.dtx RELOC/source/support/latex-make/latex-make.ins @@ -165070,7 +173237,7 @@ catalogue-contact-repository https://gitlab.inria.fr/latex-utils/latex-make catalogue-ctan /support/latex-make catalogue-license gpl catalogue-topics compilation -catalogue-version 2.4.2 +catalogue-version 2.4.3 name latex-mr category Package @@ -165234,15 +173401,6 @@ containerchecksum 0276bf7f34e4c18c75a3397d70713290c401a4dc2ef9bc15790709e235a73b binfiles arch=armhf-linux size=1 bin/armhf-linux/latex-papersize -name latex-papersize.i386-cygwin -category Package -revision 42296 -shortdesc i386-cygwin files of latex-papersize -containersize 344 -containerchecksum a851ceebda55e9e474090291df9dd1feb21f7ba8b7850418bbc74125c4670b17d93a9cf9c63c1a44d953d2f9ff1103f034b8fb904fa414f7c7b2ded1fbb3574a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latex-papersize - name latex-papersize.i386-freebsd category Package revision 42296 @@ -165288,14 +173446,14 @@ containerchecksum 709cc045d173f7faac28d7d1e4638d653651a3978cadca7703d93468bad69a binfiles arch=universal-darwin size=1 bin/universal-darwin/latex-papersize -name latex-papersize.win32 +name latex-papersize.windows category Package -revision 42296 -shortdesc win32 files of latex-papersize -containersize 688 -containerchecksum 68ae3e1aa0a98182b798b09cffc265117deda073cdb7209c351921fe3db5300553a00e7c8951833f5a1aa732e3ad2d09db9fe3b813ac7ec7820bbf37759f1c8c -binfiles arch=win32 size=1 - bin/win32/latex-papersize.exe +revision 65891 +shortdesc windows files of latex-papersize +containersize 2312 +containerchecksum e5a757893cb3e8cf946de358072577dd56044c5293fd3e36097f97eb751377215d7af7363fc1d5e3b21ad7f406e17fb5b21844719d2492cf11ba3f215af3f5e8 +binfiles arch=windows size=2 + bin/windows/latex-papersize.exe name latex-papersize.x86_64-cygwin category Package @@ -165374,18 +173532,18 @@ catalogue-version 1.2 name latex-tools-dev category Package -revision 59080 +revision 64899 shortdesc Development pre-release of the LaTeX tools bundle relocated 1 longdesc This is a pre-release version of the standard LaTeX tools longdesc bundle. It accompanies the pre-testing kernel code longdesc (latex-base-dev), and is intended for testing by knowledgeable longdesc users. -containersize 42452 -containerchecksum c99eb52581a1407268fe124d1a33ba6dc6b9bc431f79a17a8a7d5d34c99a81248d7826cf8043ab2230fe6f2a019984f5165ca2a8b8325d616f960c06d85f683e -doccontainersize 5280832 -doccontainerchecksum f3b0cb91bd4cd95de31f52518f8be5fdb6693fd5f0c6b00d5891521745251bfe352641c3a83cd4d7e47a6191736afff1e6ceab9ea6a5824f8433b8f9c72c80d1 -docfiles size=1774 +containersize 43220 +containerchecksum 04be02d57a30975443b1f56512a066775d4f9531c63f4466e728e6575e7edad0677c5bf7f492c5b9dd2938359b392789845e0df6d4e69d53da465dad7d6783ff +doccontainersize 5313960 +doccontainerchecksum f784daabae6e1986c0c79115e7600849af75061a314e3410d7521b1e8ea5920d1e382a15c9b18bb6f7d5a585b40a4a835f59e8a1fa6ad62f5f16a5fb6e037e42 +docfiles size=1765 RELOC/doc/latex-dev/tools/README.md details="Readme" RELOC/doc/latex-dev/tools/afterpage.pdf RELOC/doc/latex-dev/tools/array.pdf @@ -165417,9 +173575,9 @@ docfiles size=1774 RELOC/doc/latex-dev/tools/verbatim.pdf RELOC/doc/latex-dev/tools/xr.pdf RELOC/doc/latex-dev/tools/xspace.pdf -srccontainersize 227844 -srccontainerchecksum cc88af3474e6ed454b7c6b967aaf74c428a1575620a8dd4abe0979b8b65bccafd94b5862a75143412581a88d69692dcbd5d534191a5de13b6309950beebe3653 -srcfiles size=269 +srccontainersize 228760 +srccontainerchecksum 4f2a940c3cd04762ffac656929c1b01a74feb4a4edbc8387ad2cb673aa2af5e8ce1b3f804c7f46053cc2e38416ee5cd8739e59eb19b8af9796b68651e1f08665 +srcfiles size=270 RELOC/source/latex-dev/tools/afterpage.dtx RELOC/source/latex-dev/tools/afterpage.ins RELOC/source/latex-dev/tools/array.dtx @@ -165453,7 +173611,7 @@ srcfiles size=269 RELOC/source/latex-dev/tools/verbatim.dtx RELOC/source/latex-dev/tools/xr.dtx RELOC/source/latex-dev/tools/xspace.dtx -runfiles size=110 +runfiles size=121 RELOC/tex/latex-dev/tools/.tex RELOC/tex/latex-dev/tools/afterpage.sty RELOC/tex/latex-dev/tools/array-2016-10-06.sty @@ -165475,12 +173633,14 @@ runfiles size=110 RELOC/tex/latex-dev/tools/longtable-2020-01-07.sty RELOC/tex/latex-dev/tools/longtable.sty RELOC/tex/latex-dev/tools/multicol-2017-04-11.sty + RELOC/tex/latex-dev/tools/multicol-2019-10-01.sty RELOC/tex/latex-dev/tools/multicol.sty RELOC/tex/latex-dev/tools/q.tex RELOC/tex/latex-dev/tools/r.tex RELOC/tex/latex-dev/tools/rawfonts.sty RELOC/tex/latex-dev/tools/s.tex RELOC/tex/latex-dev/tools/shellesc.sty + RELOC/tex/latex-dev/tools/showkeys-2014-10-28.sty RELOC/tex/latex-dev/tools/showkeys.sty RELOC/tex/latex-dev/tools/somedefs.sty RELOC/tex/latex-dev/tools/tabularx.sty @@ -165501,8 +173661,8 @@ runfiles size=110 RELOC/tex/latex-dev/tools/xspace.sty catalogue-ctan /macros/latex-dev/required/tools catalogue-license lppl1.3c -catalogue-topics collection -catalogue-version 2021-06-01 pre-release 2 +catalogue-topics collection latex-devel +catalogue-version 2023-05-01 pre-release 0 name latex-uni8 category Package @@ -165580,27 +173740,27 @@ catalogue-version 0.7 name latex-via-exemplos category Package -revision 53248 +revision 63374 shortdesc A LaTeX course written in brazilian portuguese language relocated 1 longdesc This is a LaTeX2e course written in brazilian portuguese longdesc language. containersize 400 -containerchecksum 12760e4866e1796a290bae531205da1cca1f24c51359a9e0f231524a55834a94a357625b775997f065c002da663c460eabcdb5ae22984330427c62e001f49fc7 -doccontainersize 2020468 -doccontainerchecksum 5a108346c7653122b37a9914cdf16410e6135f142b1f849d3d4d413be2cc59631d56c3b25d770621d84ff3256cadecbe7834f132b424244353f5889f09dfecf2 -docfiles size=675 +containerchecksum e10e8c0ddc02b4c99a382d7839118c454b4b3ecd931a880e2c8d4cd69999349dc2088a221976acc91f78d7ddef9bc1ec92d345eb26a499b46ad676c2401faf5d +doccontainersize 2049324 +doccontainerchecksum 6065f5e9997d39f38fa3759ad4ed19c42914019b582aeb9aa6baa359eead9ff3ff5c6fcb690702337fe4ed7a4dad87d0b7a04d96e5f54a647efa8829b807b004 +docfiles size=697 RELOC/doc/latex/latex-via-exemplos/README.md details="Readme" RELOC/doc/latex/latex-via-exemplos/changelog.txt RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-certificado.tex RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-fig.tex RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-lista-nomes.csv - RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.pdf details="The document itself (oneside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.pdf details="The document itself (oneside)" language="pt-br" RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-oneside.tex RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-poster.tex RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos-slides.tex RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.bib - RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself (twoside)" + RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.pdf details="The document itself (twoside)" language="pt-br" RELOC/doc/latex/latex-via-exemplos/latex-via-exemplos.tex RELOC/doc/latex/latex-via-exemplos/makeaux.sh RELOC/doc/latex/latex-via-exemplos/makedoc.sh @@ -165608,7 +173768,7 @@ catalogue-also lshort-portuguese-br catalogue-ctan /info/latex-via-exemplos catalogue-license gpl2+ catalogue-topics portuguese-doc tut-latex -catalogue-version 0.5.6 +catalogue-version 0.5.8 name latex-web-companion category Package @@ -165784,7 +173944,7 @@ catalogue-topics book-ex name latex2e-help-texinfo category Package -revision 57213 +revision 65552 shortdesc Unofficial reference manual covering LaTeX2e relocated 1 longdesc The manual is provided as Texinfo source (which was originally @@ -165794,11 +173954,11 @@ longdesc development, and details of getting involved are to be found on longdesc the package home page. A French translation is available as a longdesc separate package. All the other formats in the distribution are longdesc derived from the Texinfo source, as usual. -containersize 708 -containerchecksum 914b0959cd94f13c8c8a9e3bf4ce88988816298853d73e02ef3bef24a03e621a43d6e7e2a33a0253991c32c4a02b87bff7eb6d6a8cec7f4ca80142308c4d79bd -doccontainersize 1725896 -doccontainerchecksum d659abed2563ca91820af487693cc91919ee3ae10c077c40a27fdbcc5ef1b7fc223007945bfe15ba6e5e8c2522b0f46c78810342cbebf9a6e9a96563d42c583e -docfiles size=1700 +containersize 732 +containerchecksum 34b91b19e1b71b1df6d0f57dda4d6976a93b16afac259656c9d4e331b0c23a9b0550563c1a10dd7a95640e3740b3b15597c1023f6c2721bf2a64800466b9cd09 +doccontainersize 2122104 +doccontainerchecksum d4584d9259f3c1867e7445d4a219e4decc5ba3b305e20d1e780180a47fbad8df4d55552726d8288e78c8388823a2b652b81080c8139b00f4ea3ca10e5789375b +docfiles size=2139 RELOC/doc/info/latex2e.info RELOC/doc/latex/latex2e-help-texinfo/ChangeLog RELOC/doc/latex/latex2e-help-texinfo/Makefile @@ -165821,7 +173981,9 @@ docfiles size=1700 RELOC/doc/latex/latex2e-help-texinfo/latex2e.xml RELOC/doc/latex/latex2e-help-texinfo/ltx-help.el catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman -catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-development https://latexref.xyz/dev/ +catalogue-contact-home https://latexref.xyz +catalogue-contact-repository https://puszcza.gnu.org.ua/projects/latexrefman/ catalogue-contact-support https://lists.tug.org/latexrefman catalogue-ctan /info/latex2e-help-texinfo catalogue-license other-free @@ -165829,16 +173991,16 @@ catalogue-topics ref-latex documentation spanish-doc name latex2e-help-texinfo-fr category Package -revision 57275 +revision 64228 shortdesc A French translation of "latex2e-help-texinfo" relocated 1 longdesc This package provides a complete French translation of longdesc latex2e-help-texinfo. -containersize 448 -containerchecksum d531614aca1d80614fd6fd8f56ff8c5542c5c2f1c944083d151317820b9019395a7d3ec4daf91d7afc53d3852aee1fbfaa6ece12bc08783d508e996b330e5059 -doccontainersize 1768004 -doccontainerchecksum 91f4166da251720271be473412764934212e19fbe21a4487245a0b19e08967c2693b81c89d98788ff7a768f1da462a5cd44aeec95ac459c912e0f128ebe65ecc -docfiles size=1709 +containersize 444 +containerchecksum 96366ea420532f56ae076da48f5402c2ee78ca27fae8180795d6cd18aae118a8c7060208ff43ab64526addcdce9e4d90790583842b20c751f37865cf616e04e4 +doccontainersize 2221448 +doccontainerchecksum 52f6aea9ac2393a73d7dc7ce8ad4d6f08e0a224397199d5def97412502026717e8cb966552368899c50718a1049b1ad4610d2d23150a45bee55cc2c776003db7 +docfiles size=2239 RELOC/doc/info/latex2e-fr.info RELOC/doc/latex/latex2e-help-texinfo-fr/ChangeLog RELOC/doc/latex/latex2e-help-texinfo-fr/Makefile @@ -165861,7 +174023,7 @@ catalogue-topics ref-latex documentation french-doc name latex2e-help-texinfo-spanish category Package -revision 57213 +revision 65614 catalogue latex2e-help-texinfo shortdesc Unofficial reference manual covering LaTeX2e relocated 1 @@ -165872,20 +174034,21 @@ longdesc development, and details of getting involved are to be found on longdesc the package home page. A French translation is available as a longdesc separate package. All the other formats in the distribution are longdesc derived from the Texinfo source, as usual. -containersize 712 -containerchecksum d6181f2049056c06911b5eabe977d07d24099bc2bfbfee3ff4d2bee811af9b2a6165fd8ee464fe68172f5b8d47d85ac9ae973a2bbe8dcbe0529c9d68d9c3c692 -doccontainersize 873268 -doccontainerchecksum 8b8bc956d914b97d2679274e6f3e4ef62022eaf32e20dbac83e0c995e0c85ae33e8cf707f94a2ae9890747bedcc27ec46f627dd4a2923f10a4a7ec62d039194e -docfiles size=758 +containersize 740 +containerchecksum 870c8f3af54ac42df5f4958669cf730cd16084c985f0b377c5aba9d526b8f7be14b367791d2c0a1f1a715739390ab63777ff2a92e7f9aad09897c8bbecff495e +doccontainersize 2013468 +doccontainerchecksum 4c751a7305e089dab61bf991436ab1e612cfca0d17e416e21d659c04ef32eeb2d14dbeb09d63649a2b79f842766a218c43ae2c6fbeeba5549f039f991049a79d +docfiles size=1982 RELOC/doc/info/latex2e-es.info RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.dbk RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.html details="HTML conversion of the source (Spanish)" language="es" - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf - RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.texi + RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.pdf details="PDF conversion of the source (Spanish)" language="es" RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.txt RELOC/doc/latex/latex2e-help-texinfo-spanish/latex2e-es.xml catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=latexrefman -catalogue-contact-home http://puszcza.gnu.org.ua/projects/latexrefman/ +catalogue-contact-development https://latexref.xyz/dev/ +catalogue-contact-home https://latexref.xyz +catalogue-contact-repository https://puszcza.gnu.org.ua/projects/latexrefman/ catalogue-contact-support https://lists.tug.org/latexrefman catalogue-ctan /info/latex2e-help-texinfo catalogue-license other-free @@ -165893,7 +174056,7 @@ catalogue-topics ref-latex documentation spanish-doc name latex2man category Package -revision 49249 +revision 64477 shortdesc Translate LaTeX-based manual pages into Unix man format longdesc Latex2man is a tool to translate UNIX manual pages written with longdesc LaTeX into the troff format understood by the UNIX man(1) @@ -165904,10 +174067,10 @@ longdesc may be used). There is a LaTeX package (latex2man.sty) for longdesc writing the man page and a Perl script (latex2man) that does longdesc the actual translation. depend latex2man.ARCH -containersize 14088 -containerchecksum 9ce1870958d7de7625fe73dfb735488d2512b048c8c06fed3f87255db0914080675017d24c88a97ec71ddb9cfe6f5769ea378f099d8787e447837a1ff5167436 -doccontainersize 369336 -doccontainerchecksum 214685e6982c7a9c694d74a73d37c58f3947d7304637d2ed44fc616cece6026e5d02763f26e280ab21212d18a962c31b4ac5315fa840f10bf1efcfb782f4dd2a +containersize 14072 +containerchecksum 2617f6e8059f30c0098ea896cff69f585ea2ddbd3bbbd8066e7296dd833d3a246b8fefc0af71a92abf7e2051c754c0e3e6098175a4b181780563416bc9146b95 +doccontainersize 369332 +doccontainerchecksum 390666cc56ad70342c9a24ca593fe65b3760674a882ed8bba383d193f2578285727a085f823afc03fa0dbc9966612caf9a29222fd2a9f39214f01aa268acdc50 docfiles size=146 texmf-dist/doc/info/latex2man.info texmf-dist/doc/man/man1/latex2man.1 @@ -165972,15 +174135,6 @@ containerchecksum d70dbf4a9a31a1d36dc1f31cca6162206b0ebd033f615cf1dcf4fb1f1c9fcd binfiles arch=armhf-linux size=1 bin/armhf-linux/latex2man -name latex2man.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of latex2man -containersize 336 -containerchecksum e91746e3b185d2dfc04b25adcc7ec3ef6bc1aa485abab5ed139927ac372ad8cd9705912915bc494030b0b2fd14deba207b96c65e12af9b6800276959797eca62 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latex2man - name latex2man.i386-freebsd category Package revision 16472 @@ -166026,14 +174180,14 @@ containerchecksum 1e901e3809956ec0c0d94e678364fa063ef56c93bc46fb07016cff9724e095 binfiles arch=universal-darwin size=1 bin/universal-darwin/latex2man -name latex2man.win32 +name latex2man.windows category Package -revision 15404 -shortdesc win32 files of latex2man -containersize 684 -containerchecksum 1cafd038a94c11980b17f6828e4bcf454fa14457391a017c574476d403405f82192a075a4f0a71db5a756349028b2dba75d142efaa872815867d9e3d42ddafa4 -binfiles arch=win32 size=1 - bin/win32/latex2man.exe +revision 65891 +shortdesc windows files of latex2man +containersize 2304 +containerchecksum 31f432f71a4bcd4c871c25888800e7301ead2adc409b3e65166171ce01d981cf7a81e0e7c977db3859ac6ea0e8f8cd5cd88eddc0909a3fef7bd317e1932ad57e +binfiles arch=windows size=2 + bin/windows/latex2man.exe name latex2man.x86_64-cygwin category Package @@ -166082,42 +174236,50 @@ binfiles arch=x86_64-solaris size=1 name latex2nemeth category Package -revision 54389 +revision 65269 shortdesc Convert LaTeX source to Braille with math in Nemeth longdesc After many failed attempts to transcribe real math notes and longdesc books to Braille/Nemeth in order to deal with a real situation longdesc (blind student in Math Dept.), we decided to develop a new longdesc program that follows a direct, from LaTeX to Braille/Nemeth, -longdesc approach. Other attempts (such as tex4ht) failed because they -longdesc all needed an extra step to go from xml to Braille, and this -longdesc step (say, with liblouis) produced incomprehensible output -longdesc (liblouis focuses on Office apps). Our main target was the -longdesc Greek language which is only Braille level 1, but English at -longdesc level 1 is supported as well. Simple pictures in PSTricks are -longdesc also supported in order to produce tactile graphics with -longdesc specialized equipment. Note that embossing will need -longdesc LibreOffice and odt2braille as this project does not deal with -longdesc embossers' drivers. +longdesc approach. Our main target was the Greek language which is only +longdesc Braille level 1, but English at level 1 is supported as well. +longdesc Simple pictures in PSTricks are also supported in order to +longdesc produce tactile graphics with specialized equipment. Note that +longdesc embossing will need LibreOffice and odt2braille as this project +longdesc does not deal with embossers' drivers. What's new in version +longdesc 1.1 In this version, the support of the user level commands of +longdesc the amsmath package was added, as described in its user guide, +longdesc with the exception of commutative diagrams (amscd package) as +longdesc well as structures that are irrelevant to visually impared +longdesc persons. Also, the Unicode mathematics symbols of the +longdesc unicode-math package that are represented by the Nemeth code +longdesc are now supported by latex2nemeth. We would like to acknowledge +longdesc support by the TUGfund for this project (TUGfund project 33). depend latex2nemeth.ARCH -containersize 7125616 -containerchecksum 37065f9916e6755c1a97f2b8a1f1cfd838008b5da2d2131938626ae4eb6872af30e5b4b767ff3204e271a86b7245b54d9146d9fdd8c807f882ca28e1663d2d14 -doccontainersize 26836 -doccontainerchecksum e2ea8084bec4d41a4b694c3b46788e3170043ba1f7ce4096bf029a4de61b76cb504b532d7e0c454943980d44d1c145a78a9e4a7f20a6654aa9cca63d388bdb5a -docfiles size=42 +containersize 7296096 +containerchecksum f2669a9e58857094c922b968f337e2cb2cf475b07811d53c61a8e0b4dc8bcc41d95186940361676bc62c0f235edb4fe7a7c0d5ee0f6d74c541d1108960e18e7e +doccontainersize 730388 +doccontainerchecksum 7fa7ae1c628e29549fc3cb2c98164e27f60cc0bcbf14e26b7a325aee313a5f41c3144d5adf2993c20999016f4798dcd436d96c637c4258ace0efc3bda4a54a43 +docfiles size=328 texmf-dist/doc/support/latex2nemeth/README details="Readme" + texmf-dist/doc/support/latex2nemeth/contrib/nemeth2odt + texmf-dist/doc/support/latex2nemeth/doc/unicode-math-braille.pdf + texmf-dist/doc/support/latex2nemeth/doc/unicode-math-braille.tex + texmf-dist/doc/support/latex2nemeth/encodings/nemeth.json texmf-dist/doc/support/latex2nemeth/encodings/polytonic.json texmf-dist/doc/support/latex2nemeth/examples/mathpics.tex texmf-dist/doc/support/latex2nemeth/examples/mathtest.tex - texmf-dist/doc/support/latex2nemeth/examples/nemeth.json texmf-dist/doc/support/latex2nemeth/gpl-3.0.txt -runfiles size=1947 + texmf-dist/doc/support/latex2nemeth/source.zip +runfiles size=1993 texmf-dist/scripts/latex2nemeth/latex2nemeth - texmf-dist/scripts/latex2nemeth/latex2nemeth-v1.0.2.jar + texmf-dist/scripts/latex2nemeth/latex2nemeth.jar catalogue-contact-home http://myria.math.aegean.gr/labs/dt/braille/index-en.html catalogue-ctan /support/latex2nemeth catalogue-license gpl3 catalogue-topics cvt-other maths accessible -catalogue-version 1.0.2 +catalogue-version 1.1.3 name latex2nemeth.aarch64-linux category Package @@ -166155,15 +174317,6 @@ containerchecksum f76abf0ab25b94f918604d5e2fbd52b651ee05a73d03a8c8a8cc5eb6574694 binfiles arch=armhf-linux size=1 bin/armhf-linux/latex2nemeth -name latex2nemeth.i386-cygwin -category Package -revision 42300 -shortdesc i386-cygwin files of latex2nemeth -containersize 340 -containerchecksum ac144ec03445736c785b2a652b46a8c95033781e8989e780ba4c732eba934141b09866a5b51338147c89ffef8340c594d2f9060223f24d700d954ba94b63a025 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latex2nemeth - name latex2nemeth.i386-freebsd category Package revision 42300 @@ -166209,14 +174362,14 @@ containerchecksum 139d1deef9f953d46306123b0e0c6f73633acc9436995a4d668d8e1a139528 binfiles arch=universal-darwin size=1 bin/universal-darwin/latex2nemeth -name latex2nemeth.win32 +name latex2nemeth.windows category Package -revision 42300 -shortdesc win32 files of latex2nemeth -containersize 688 -containerchecksum 742ca9f2d901077a554c4114c6fca696bc3b677dd8d5b579a9c4e4537cef99de1b6a3a801c8cb3e15764d35ad3592aae81a0ed5ef19bb1531920ff542846ce2c -binfiles arch=win32 size=1 - bin/win32/latex2nemeth.exe +revision 65891 +shortdesc windows files of latex2nemeth +containersize 2312 +containerchecksum 71fa7361ec2b2c1c53e6c6a1099ead745e66c36303afa510f17a1c4cbb7f9a8e9e9e75554d7ad17cf48ca47f4552c77b438742b9d5ef6ffdce3dc357181e204b +binfiles arch=windows size=2 + bin/windows/latex2nemeth.exe name latex2nemeth.x86_64-cygwin category Package @@ -166491,33 +174644,33 @@ catalogue-version 0.2 name latexbug category Package -revision 58151 +revision 63596 shortdesc Bug-classification for LaTeX related bugs relocated 1 longdesc The package is written in order to help identifying the longdesc rightful addressee for a bug report. The LaTeX team asks that longdesc it will be loaded in any test file that is intended to be sent longdesc to the LaTeX bug database as part of a bug report. -containersize 4796 -containerchecksum 167fd3afc056f1a17510ff3040208686d71939e2bcb8f09e4d21ebd57420debd0beb315d0c6623ca2525f8ce7d50c063b3761eadd1764a8d369768edabde2d69 -doccontainersize 186860 -doccontainerchecksum 4875fb2f4533d884259ec3191625b252f2d922ce8e992adf3c58eef2f1263e7c24121e6cc43d16e617da2dc66abbc6dbe9899cf63ee1592c42cf61174d77c763 -docfiles size=48 +containersize 8000 +containerchecksum 343629bebcc022be463cfb13e155c372436b6138a3ce641ddb7ff17286788b6db438d040a8fa76bbd0354b880e5455a1aeb5060202b99de2cff1bddafdafac35 +doccontainersize 219368 +doccontainerchecksum 67209c3221ddf31ea4ba6a9678d340a590feebbe4965750a65037e3c8546d4a3db0b43d0ea5fe178eaa5e4d1500304b2a3fc04bc8e65781da2a5bf22e702fd0c +docfiles size=57 RELOC/doc/latex/latexbug/README.md details="Readme" RELOC/doc/latex/latexbug/changes.txt RELOC/doc/latex/latexbug/latexbug.pdf details="Package documentation" -srccontainersize 8916 -srccontainerchecksum 2daca13020e5e605e974dbf4da0e83a1941496202b2908f6e4ac40666d715cf4a8edbc9ced512974d88b05812e62c0f2e856c564a9116b95a530dc18e768a0d8 -srcfiles size=9 +srccontainersize 12692 +srccontainerchecksum 28e88cad4c3b0e676e95d3b4be46285a73036af1662156d298bc288cead111425d956352cb94165ff515d5b725f1aced863e6cca917d6cb100ca71affb5da7d2 +srcfiles size=16 RELOC/source/latex/latexbug/latexbug.dtx RELOC/source/latex/latexbug/latexbug.ins -runfiles size=5 +runfiles size=11 RELOC/tex/latex/latexbug/latexbug.sty catalogue-contact-repository https://github.com/latex3/latexbug catalogue-ctan /macros/latex/required/latexbug catalogue-license lppl1.3c catalogue-topics latex-doc latex-devel -catalogue-version 1.0j +catalogue-version 1.0n name latexcheat category Package @@ -166701,7 +174854,7 @@ catalogue-version 0.1 name latexdiff category Package -revision 55540 +revision 64980 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 @@ -166714,11 +174867,11 @@ longdesc all changes. Manual editing of the difference file can be used longdesc to override this default behaviour and accept or reject longdesc selected changes only. depend latexdiff.ARCH -containersize 70032 -containerchecksum cd69ad7bea121664c600e77438eee882e71447bfe5ffb034773a72269ea856f41b54b1369aa701b755586e12f121948d9773688f65d6b0bb161e3a052d95c5f6 -doccontainersize 478708 -doccontainerchecksum 33931c4a47ce1ae61119a54caf074049504ea044159afb6a8ad59dcfea1d54782939ef5d2e8f3303f0aa623c64c4dc84a209eefb179fd057b6903ef6c9409f67 -docfiles size=260 +containersize 74664 +containerchecksum ae7179b5a9d410302d750233b6b22d29382406f3222129155c98b1f2ddc23d22ca7abe1683fd013c7302fe8e21e82a376499ae33d83c15a01fa2720696e5b718 +doccontainersize 472668 +doccontainerchecksum 2f484db22ec12886a4d76fabde3a65a982d3e659f524120b377221f91c7ad5973ad6023aa3226dd35baa687c86ec8dd8e736553d1604690d87e68d3cf7be84f8 +docfiles size=266 texmf-dist/doc/man/man1/latexdiff-vc.1 texmf-dist/doc/man/man1/latexdiff-vc.man1.pdf texmf-dist/doc/man/man1/latexdiff.1 @@ -166739,7 +174892,7 @@ docfiles size=260 texmf-dist/doc/support/latexdiff/example/example-rev.tex texmf-dist/doc/support/latexdiff/latexdiff texmf-dist/doc/support/latexdiff/latexdiff-fast -runfiles size=72 +runfiles size=76 texmf-dist/scripts/latexdiff/latexdiff-vc.pl texmf-dist/scripts/latexdiff/latexdiff.pl texmf-dist/scripts/latexdiff/latexrevise.pl @@ -166747,7 +174900,7 @@ catalogue-contact-repository https://github.com/ftilmann/latexdiff/ catalogue-ctan /support/latexdiff catalogue-license gpl3 catalogue-topics doc-mgmt -catalogue-version 1.3.1.1 +catalogue-version 1.3.3 name latexdiff.aarch64-linux category Package @@ -166793,17 +174946,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/latexdiff-vc bin/armhf-linux/latexrevise -name latexdiff.i386-cygwin -category Package -revision 16420 -shortdesc i386-cygwin files of latexdiff -containersize 384 -containerchecksum 23e6f9e796dc1c2e3c4202c6dab5d01d60022d4ba6fbae1f51f79087668ce3d5120866d16b1f0d540b3e7e2fdf994a3fe4c388ca4a32395b8783d3859dc097e1 -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/latexdiff - bin/i386-cygwin/latexdiff-vc - bin/i386-cygwin/latexrevise - name latexdiff.i386-freebsd category Package revision 16484 @@ -166859,16 +175001,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/latexdiff-vc bin/universal-darwin/latexrevise -name latexdiff.win32 +name latexdiff.windows category Package -revision 16726 -shortdesc win32 files of latexdiff -containersize 716 -containerchecksum acadc4bfcbec0bc4f628115e605b4574867a799b96d7d7099002b42bf96a9429513aea31613408be93ea8bf8bf8235c479589637f581d8ba7ce4141d20c844a0 -binfiles arch=win32 size=3 - bin/win32/latexdiff-vc.exe - bin/win32/latexdiff.exe - bin/win32/latexrevise.exe +revision 65891 +shortdesc windows files of latexdiff +containersize 2384 +containerchecksum 45505f2abbd36b912e81c4b8682faa0baa1d8b2e6c70dfd16954b79a4217879bb5f9a9ea3184dbf317988fc5974c9f7192ced68df12549939470238a829ae41d +binfiles arch=windows size=6 + bin/windows/latexdiff-vc.exe + bin/windows/latexdiff.exe + bin/windows/latexrevise.exe name latexdiff.x86_64-cygwin category Package @@ -167017,15 +175159,6 @@ containerchecksum 411a423f3f653ccdee5b0892a918f31f44a02fda74e4e50087545deeac8490 binfiles arch=armhf-linux size=1 bin/armhf-linux/latexfileversion -name latexfileversion.i386-cygwin -category Package -revision 25012 -shortdesc i386-cygwin files of latexfileversion -containersize 340 -containerchecksum 1cf639adfef41bf56594a2c116761670ca973dbf883252c5ce446244154df9b27360043f0f0ca0fe9f9074e66074b03a5c1874f077f4ed0ca9fe7c9fbc996bfb -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latexfileversion - name latexfileversion.i386-freebsd category Package revision 25012 @@ -167146,55 +175279,33 @@ catalogue-topics version-control doc-mgmt name latexindent category Package -revision 58790 +revision 65937 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. +longdesc The Perl script processes a LaTeX file, indenting parts so as +longdesc to highlight the structure for the reader. Included are also +longdesc binary (executable) files for Windows, Ubuntu Linux, and macOS. depend latexindent.ARCH -containersize 60252 -containerchecksum d33db672ca71557e5a2fe1a59e95c78a4da49ed0d9a73da5b1ecdf9b36d1b4fbb61aa6f9ec47d7ec5bbf8197878692758cec937879bce94d1f8505b47514a050 -doccontainersize 982572 -doccontainerchecksum 89bfacb4bde1abd385173bfa2b02a7f0c8fac437f557dac027e4b7b112a27308b91844217c6fcf46dfef2141f9efd1025c17b244acc8b87b56a72a5595beaf28 -docfiles size=337 +containersize 72564 +containerchecksum 86767228ea35d9c65f4954ae441b13702abb17e2baee941bfb95be4323fd3468953781ceecee7c3518b45f05d94daed5cc89eb18b4d17d2e0ae545a7613bb5c3 +doccontainersize 1318904 +doccontainerchecksum 2a34372c3aa18aa3016262905f675d23eaed1d8c6e0e360b61e2084b3bfcfdebc6e349ce2af020fb09a24037119ccd5d3a80635454100ccc688251cde62519b9 +docfiles size=443 texmf-dist/doc/support/latexindent/README details="Readme" - texmf-dist/doc/support/latexindent/appendices.tex - texmf-dist/doc/support/latexindent/cmhlistings.tex + texmf-dist/doc/support/latexindent/contributors.bib texmf-dist/doc/support/latexindent/figure-schematic.png - texmf-dist/doc/support/latexindent/figure-schematic.tex + texmf-dist/doc/support/latexindent/latex-indent.bib texmf-dist/doc/support/latexindent/latexindent-module-installer.pl + texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json texmf-dist/doc/support/latexindent/latexindent.pdf details="Package documentation" texmf-dist/doc/support/latexindent/latexindent.tex texmf-dist/doc/support/latexindent/logo.png - texmf-dist/doc/support/latexindent/logo.tex - texmf-dist/doc/support/latexindent/references.tex - texmf-dist/doc/support/latexindent/sec-conclusions-know-limitations.tex - texmf-dist/doc/support/latexindent/sec-default-user-local.tex - texmf-dist/doc/support/latexindent/sec-demonstration.tex - texmf-dist/doc/support/latexindent/sec-fine-tuning.tex - texmf-dist/doc/support/latexindent/sec-how-to-use.tex - texmf-dist/doc/support/latexindent/sec-indent-config-and-settings.tex - texmf-dist/doc/support/latexindent/sec-introduction.tex - texmf-dist/doc/support/latexindent/sec-replacements.tex - texmf-dist/doc/support/latexindent/sec-the-m-switch.tex - texmf-dist/doc/support/latexindent/subsec-commands-and-their-options.tex - texmf-dist/doc/support/latexindent/subsec-conflicting-poly-switches.tex - texmf-dist/doc/support/latexindent/subsec-noAdditionalIndent-indentRules.tex - texmf-dist/doc/support/latexindent/subsec-partnering-poly-switches.tex - texmf-dist/doc/support/latexindent/subsubsec-commands-with-arguments.tex - texmf-dist/doc/support/latexindent/subsubsec-environments-and-their-arguments.tex - texmf-dist/doc/support/latexindent/subsubsec-environments-with-items.tex - texmf-dist/doc/support/latexindent/subsubsec-headings.tex - texmf-dist/doc/support/latexindent/subsubsec-ifelsefi.tex - texmf-dist/doc/support/latexindent/subsubsec-no-add-remaining-code-blocks.tex - texmf-dist/doc/support/latexindent/subsubsec-special.tex - texmf-dist/doc/support/latexindent/title.tex -runfiles size=124 +runfiles size=149 texmf-dist/scripts/latexindent/LatexIndent/AlignmentAtAmpersand.pm texmf-dist/scripts/latexindent/LatexIndent/Arguments.pm texmf-dist/scripts/latexindent/LatexIndent/BackUpFileProcedure.pm texmf-dist/scripts/latexindent/LatexIndent/BlankLines.pm texmf-dist/scripts/latexindent/LatexIndent/Braces.pm + texmf-dist/scripts/latexindent/LatexIndent/Check.pm texmf-dist/scripts/latexindent/LatexIndent/Command.pm texmf-dist/scripts/latexindent/LatexIndent/Document.pm texmf-dist/scripts/latexindent/LatexIndent/DoubleBackSlash.pm @@ -167210,6 +175321,7 @@ runfiles size=124 texmf-dist/scripts/latexindent/LatexIndent/Indent.pm texmf-dist/scripts/latexindent/LatexIndent/Item.pm texmf-dist/scripts/latexindent/LatexIndent/KeyEqualsValuesBraces.pm + texmf-dist/scripts/latexindent/LatexIndent/Lines.pm texmf-dist/scripts/latexindent/LatexIndent/LogFile.pm texmf-dist/scripts/latexindent/LatexIndent/Logger.pm texmf-dist/scripts/latexindent/LatexIndent/MandatoryArgument.pm @@ -167227,6 +175339,7 @@ runfiles size=124 texmf-dist/scripts/latexindent/LatexIndent/UnNamedGroupingBracesBrackets.pm texmf-dist/scripts/latexindent/LatexIndent/Verbatim.pm texmf-dist/scripts/latexindent/LatexIndent/Version.pm + texmf-dist/scripts/latexindent/LatexIndent/Wrap.pm texmf-dist/scripts/latexindent/defaultSettings.yaml texmf-dist/scripts/latexindent/latexindent.pl catalogue-contact-bugs https://github.com/cmhughes/latexindent.pl/issues @@ -167235,7 +175348,7 @@ catalogue-contact-repository https://github.com/cmhughes/latexindent.pl catalogue-ctan /support/latexindent catalogue-license gpl3 catalogue-topics code-layout -catalogue-version 3.9.2 +catalogue-version 3.20.3 name latexindent.aarch64-linux category Package @@ -167273,15 +175386,6 @@ containerchecksum 183a78fc54bdcc152ee38d905bd67763744882234fa735ca1b3103f620f0a3 binfiles arch=armhf-linux size=1 bin/armhf-linux/latexindent -name latexindent.i386-cygwin -category Package -revision 32150 -shortdesc i386-cygwin files of latexindent -containersize 340 -containerchecksum 63c36a9ae80ccd699769a86701aa3aca56d78039b11afbf180a1efad365d6ef7833c1b315c26dcd6594f5f16fada469716a6e57f6324330841e879b8ec359d93 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latexindent - name latexindent.i386-freebsd category Package revision 32150 @@ -167327,14 +175431,14 @@ containerchecksum 1319ee46aa7512b5077f657ac7a405074ff4751a53f53875cae9dfc4b4e518 binfiles arch=universal-darwin size=1 bin/universal-darwin/latexindent -name latexindent.win32 +name latexindent.windows category Package -revision 58595 -shortdesc win32 files of latexindent -containersize 3057588 -containerchecksum dec9178a0f21ea13a08011d8bbf7cba0de29cd8648425a28a658ccf6f50ecd207c3669b259b4f7a4f121e04375da13e54a355b5474cfaa2d89a6d17d3d0dadad -binfiles arch=win32 size=1556 - bin/win32/latexindent.exe +revision 65946 +shortdesc windows files of latexindent +containersize 3545580 +containerchecksum 6480f69420bea27d90710269f61d5be8bdcbf79aee73b5837ae98f42153c182e75c853e5fc26953e52756e6c1bc141ffd8e5da6917692a5fb549e6578aedb9c2 +binfiles arch=windows size=2125 + bin/windows/latexindent.exe name latexindent.x86_64-cygwin category Package @@ -167383,7 +175487,7 @@ binfiles arch=x86_64-solaris size=1 name latexmk category Package -revision 59081 +revision 65485 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 @@ -167395,11 +175499,11 @@ longdesc files), and reruns LaTeX, etc., whenever a source file has longdesc changed. Thus a previewer can offer a display of the document's longdesc latest state. depend latexmk.ARCH -containersize 93244 -containerchecksum b6385b44df35f91ae6e64cf868ecc903bd9e143ff1727553443d4c4e307c71845e123b39f361bac6ec302181c07cf42fb9939c3826a88568cf45cffb19317f76 -doccontainersize 480040 -doccontainerchecksum 634c9bb9b15e6e866d31bfd9ff30014f0f763fc8f0cec69cd80988ef289fb1bfd23729faee9e1abb96a0e42bf91eebe897952e824b57531e8fe55a608dfb8073 -docfiles size=259 +containersize 108100 +containerchecksum c00227344e815dd558173662022045e2d6d2bf626235aa2b12e637da5ecfe069b4bf74d243eda7d33d0fb9d7c98e67fc33b2a6735d87bae17f22f5e81b1f2710 +doccontainersize 511516 +doccontainerchecksum 4daa3f455c7396aaff4c7ad0322787621fb91f247cf8da95dd65aebc4d09f114ef226b65c701807b6f4d66777026be2d65ff10745d96832658139f33b315069b +docfiles size=276 texmf-dist/doc/man/man1/latexmk.1 texmf-dist/doc/man/man1/latexmk.man1.pdf texmf-dist/doc/support/latexmk/CHANGES @@ -167411,13 +175515,16 @@ docfiles size=259 texmf-dist/doc/support/latexmk/example_rcfiles/bib2gls_latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/chapterbib-latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/clean_pattern_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/dot2tex-latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/exceltex1.sty texmf-dist/doc/support/latexmk/example_rcfiles/exceltex_latexmkrc - texmf-dist/doc/support/latexmk/example_rcfiles/fix-aux.latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/glossaries_latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/glossary_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/graphviz-latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/hyperxmp-latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/knitr-latexmkrc texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc + texmf-dist/doc/support/latexmk/example_rcfiles/minted_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 @@ -167443,16 +175550,17 @@ docfiles size=259 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.cmd texmf-dist/doc/support/latexmk/latexmk.pdf details="Manual page, PDF" texmf-dist/doc/support/latexmk/latexmk.txt details="Manual page, text format" -runfiles size=101 +runfiles size=116 texmf-dist/scripts/latexmk/latexmk.pl catalogue-also latexn prv arara catalogue-contact-home http://personal.psu.edu/~jcc8/software/latexmk/ catalogue-ctan /support/latexmk catalogue-license gpl2 catalogue-topics compilation -catalogue-version 4.73 +catalogue-version 4.79 name latexmk.aarch64-linux category Package @@ -167490,15 +175598,6 @@ containerchecksum 949c63fb461fba492c97e06df99c916b0071a445d3155b8e4181d33b1b2167 binfiles arch=armhf-linux size=1 bin/armhf-linux/latexmk -name latexmk.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of latexmk -containersize 336 -containerchecksum 5d0a0736b1a75abe2fa24a3c0b60666d96e639aed2e8267adff3666ca354dfe5b79bd326966efb9a53e2342eb7f6923f0bbb009ebfcef8d874dc3fd087b34b73 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latexmk - name latexmk.i386-freebsd category Package revision 16472 @@ -167544,14 +175643,14 @@ containerchecksum ab302c69dbd2644803a243082de3dfea1d441950f40d04ac2dbc660eca3c70 binfiles arch=universal-darwin size=1 bin/universal-darwin/latexmk -name latexmk.win32 +name latexmk.windows category Package -revision 15404 -shortdesc win32 files of latexmk -containersize 684 -containerchecksum 6ffbaea9c44da9fc73228a44f55d98219e8515ed595fafeda03a2794f3c7dc1f96bff22b4e7dcdc6c5ce4ee0ce8ca07f15150ed00b8ecfcbdd12b89b685be616 -binfiles arch=win32 size=1 - bin/win32/latexmk.exe +revision 65891 +shortdesc windows files of latexmk +containersize 2300 +containerchecksum dbdcbba6c94b305ee1ffa04db6b3beaabce7c50c4dd50b57bba84e8124152ff6839730360e459433c38fe3476da793647ce5c403ff206037518d292c1b398849 +binfiles arch=windows size=2 + bin/windows/latexmk.exe name latexmk.x86_64-cygwin category Package @@ -167627,27 +175726,27 @@ catalogue-version 1.2.1 name latexpand category Package -revision 53109 +revision 66226 shortdesc Expand \input and \include in a LaTeX document longdesc Latexpand is a Perl script that simply replaces \input and longdesc \include commands with the content of the input or included longdesc file. The script does not deal with \includeonly commands. depend latexpand.ARCH -containersize 6692 -containerchecksum ff362aea91f703759157dc810067d39d0d8fbdfd031e993c1a6c019a55d50a3e11745ab72c8abc7bd615f79cbe589cb0bd7bf82c147d12d18d3483ef95dcf4ba -doccontainersize 3132 -doccontainerchecksum 63181837edaf48a5bcd842039579e3efad999cf2db1cc3da8184b59f359db0ed7f50a9c706a44f32fd0642438020256283434b95a29d64b184ddd5ca27895282 +containersize 7644 +containerchecksum e5b63c9aa31f3b5885b1a61503998ce949021b448199538ac385d3fe687156ce6669cd3610a7c3387592d968b0707f7122f35fd50402616470e34bb49f341bf4 +doccontainersize 3244 +doccontainerchecksum c06bbb57bc006aebb644fc4a8edc1f89e10617c67bb77193bd2f4dc3eb7b04b55fb1f239d7d6979f9b385134f3b1e584d9f10521efe704292b7e64865f78d156 docfiles size=4 texmf-dist/doc/support/latexpand/LICENCE texmf-dist/doc/support/latexpand/README details="Readme" texmf-dist/doc/support/latexpand/version.txt -runfiles size=5 +runfiles size=6 texmf-dist/scripts/latexpand/latexpand catalogue-contact-repository https://gitlab.com/latexpand/latexpand catalogue-ctan /support/latexpand -catalogue-license bsd +catalogue-license bsd3 catalogue-topics file-mgmt -catalogue-version 1.6 +catalogue-version 1.7.2 name latexpand.aarch64-linux category Package @@ -167685,15 +175784,6 @@ containerchecksum 639827d3b54121c42d6a2b0a46787a335897d9c883500534c6eacc8f91ba90 binfiles arch=armhf-linux size=1 bin/armhf-linux/latexpand -name latexpand.i386-cygwin -category Package -revision 27025 -shortdesc i386-cygwin files of latexpand -containersize 336 -containerchecksum 23e8f1ed6bd3079f95f20b2d9bfeaa2cc918593a8e8a28654ef8bcabb7d7816b7b23f1e32fa90680c3e47462db05e58497ee36e32cf33e59b5e259507158a7c9 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/latexpand - name latexpand.i386-freebsd category Package revision 27025 @@ -167739,14 +175829,14 @@ containerchecksum c6eb47a18b103986cf9f42703d0a20a437944c02c1ad53036a8e5e271638fd binfiles arch=universal-darwin size=1 bin/universal-darwin/latexpand -name latexpand.win32 +name latexpand.windows category Package -revision 27025 -shortdesc win32 files of latexpand -containersize 680 -containerchecksum 21c9edc74fe645c4e2ccb7a24196c71710d9e4ca730069bbaffc3012f804623a92bca4e6d491d773a398d42d8ddc118a57c078b98b35d481cd8da45865c88bbf -binfiles arch=win32 size=1 - bin/win32/latexpand.exe +revision 65891 +shortdesc windows files of latexpand +containersize 2304 +containerchecksum 37404aaef62514a1f798ea739794c9db5383c52f89916194d8a14cdbc1367edb0b9e30f072a194fdc8b7de012dea1de64d312ed804dd3f98332581eb8650cab0 +binfiles arch=windows size=2 + bin/windows/latexpand.exe name latexpand.x86_64-cygwin category Package @@ -169901,10 +177991,10 @@ catalogue-topics font-devel name lcdftypetools.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of lcdftypetools -containersize 664856 -containerchecksum f1058d70d83ac89e84f9eec670f1783c42559a0c8ebdc7209627dfad5f285b9df9529b539dfc22703acb8fee2c265faa1b11ff02f6180cef88990da26c565fb4 +containersize 666080 +containerchecksum c7f0ecdd1eb30f8827f1c185f33aa38a41669c3c0e7d0f644b60491cddaf22bbad775ca7926e5625f9ac9e6d930de22785de2b8e8acd342ded6e42ec1e1f4bbf binfiles arch=aarch64-linux size=1225 bin/aarch64-linux/cfftot1 bin/aarch64-linux/mmafm @@ -169920,11 +178010,11 @@ binfiles arch=aarch64-linux size=1225 name lcdftypetools.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of lcdftypetools -containersize 633868 -containerchecksum 07ff0317d4cf2299c92142bf6efeccb620b9f8eee601224632fcaa0dc5718342b90d89e53fc50f22c40bc2d6282f76f9ce320b3304a4cc0c1f19e4aaea23326e -binfiles arch=amd64-freebsd size=937 +containersize 635192 +containerchecksum c74fe1ca41e4945ac959503e788f3802c28929cda7c5e49f06b24ce45d8d34f1e13938fc426935cf102b3e3fc2e56e70bded4799d22a98961bb326ec68a8f435 +binfiles arch=amd64-freebsd size=935 bin/amd64-freebsd/cfftot1 bin/amd64-freebsd/mmafm bin/amd64-freebsd/mmpfb @@ -169939,10 +178029,10 @@ binfiles arch=amd64-freebsd size=937 name lcdftypetools.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of lcdftypetools -containersize 684932 -containerchecksum fcea348d4fc4ef28a34894a4fe2d921f96ba77c3ad4d5821a8ad872cda74926dff5d21ee457463d281037ddde6ce4dcc31b85dfa024c4253edca33e34233002e +containersize 684756 +containerchecksum 78beb0d20f7e58318c4ce168619eef9295a70f11a2c016bafa830ec14295388c7984fbcf15d29d283b61ce24ebae2f46aabe42f8a610a52ad3b57907d5c5dc98 binfiles arch=amd64-netbsd size=1258 bin/amd64-netbsd/cfftot1 bin/amd64-netbsd/mmafm @@ -169958,10 +178048,10 @@ binfiles arch=amd64-netbsd size=1258 name lcdftypetools.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of lcdftypetools -containersize 498220 -containerchecksum e2c5a791803c837447ca7c67a1bbd93eb5ed9c4290a41155502d85b2550f8576611a008d2ba41d5cd9fe72fff96b31ba74df61ab3527c0075426d8e72b274087 +containersize 498056 +containerchecksum 2cf0ad15a030dcd2eb2b0eff790a9533a959144bd1a2b693435ffad091e2dc7af44528b22d29f2d580e1910102fa6816c12bc245fbb37355859961b1d5b73bed binfiles arch=armhf-linux size=914 bin/armhf-linux/cfftot1 bin/armhf-linux/mmafm @@ -169975,32 +178065,13 @@ binfiles arch=armhf-linux size=914 bin/armhf-linux/t1testpage bin/armhf-linux/ttftotype42 -name lcdftypetools.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of lcdftypetools -containersize 603728 -containerchecksum 5b270b8173af7d2e14e5b9b3720cf8ca73cd25dcf8baf15558569d793032c94a8629490bd4e92316bc35c255e4c0cd4e19ecd19cccd763371c36e2744f7b9e1b -binfiles arch=i386-cygwin size=1088 - bin/i386-cygwin/cfftot1.exe - bin/i386-cygwin/mmafm.exe - bin/i386-cygwin/mmpfb.exe - bin/i386-cygwin/otfinfo.exe - bin/i386-cygwin/otftotfm.exe - bin/i386-cygwin/t1dotlessj.exe - bin/i386-cygwin/t1lint.exe - bin/i386-cygwin/t1rawafm.exe - bin/i386-cygwin/t1reencode.exe - bin/i386-cygwin/t1testpage.exe - bin/i386-cygwin/ttftotype42.exe - name lcdftypetools.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of lcdftypetools -containersize 628048 -containerchecksum 837aaa652414e84ba1c7c1f0de602290b3af7481ce0785119db84e53d38f23ec094cf14003fbbfefaed6baac9568e45df0dd63e1f1bec328270c1370fb19284c -binfiles arch=i386-freebsd size=859 +containersize 632260 +containerchecksum dd0b5d8080c9d43f8a39ad4e5c956dfda15729095b9216fc117c0deaf1f71ec71799f951aa73f5de140a0465cd5eb95f07bcc52482ad0999f7d4806cb572d1e3 +binfiles arch=i386-freebsd size=861 bin/i386-freebsd/cfftot1 bin/i386-freebsd/mmafm bin/i386-freebsd/mmpfb @@ -170015,11 +178086,11 @@ binfiles arch=i386-freebsd size=859 name lcdftypetools.i386-linux category TLCore -revision 57878 +revision 62210 shortdesc i386-linux files of lcdftypetools -containersize 694764 -containerchecksum 9ac05ad89c92a072995ec4ad6197060a4d2086dc7d197986505a8084a5d5f5a81b90d619a7d976603d2b3a846d0c4267de8fe0f918446e7c70f72b85991d33ac -binfiles arch=i386-linux size=1133 +containersize 704304 +containerchecksum bf76fa6a78ebf0330a3bc1a7ed15104304e271a1a6bbc9876c7fe9d93b897b7563309765d13698b0b72e95be1bde41b219701d29d87552f856a5df79069dfe46 +binfiles arch=i386-linux size=1155 bin/i386-linux/cfftot1 bin/i386-linux/mmafm bin/i386-linux/mmpfb @@ -170034,11 +178105,11 @@ binfiles arch=i386-linux size=1133 name lcdftypetools.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of lcdftypetools -containersize 658156 -containerchecksum 03d8f45b2a6b9d35f98ac5487d5454d868956eb3a37d774919098e8731ad62b09611f8ea09cda6c5605b0c9d0c013de56839d8d5df494ba85b34e1f5220b77e2 -binfiles arch=i386-netbsd size=1151 +containersize 659188 +containerchecksum 75aebb2dd1cdb6238383ce0aa13a8b640c6a4a9a41825b96edc8be1f7ef3a485ad2cf7f7f06ff0186cb7f3d0bf4c092876d441d603cd2a7cc6fd0f68a42e05b8 +binfiles arch=i386-netbsd size=1153 bin/i386-netbsd/cfftot1 bin/i386-netbsd/mmafm bin/i386-netbsd/mmpfb @@ -170053,10 +178124,10 @@ binfiles arch=i386-netbsd size=1151 name lcdftypetools.i386-solaris category TLCore -revision 57938 +revision 62206 shortdesc i386-solaris files of lcdftypetools -containersize 824320 -containerchecksum acf3757f6bee9b553e21247aa80218680ee6c552b676a047899356441d46e6ff95bd4c618f52099a16bcaf42e9cf491bb6045ad2b048d432dcf421d19a297c5d +containersize 824340 +containerchecksum 9bdf3db7c78bec5766b630178067a985f0c684b833f54f8fdff881eb760a2c82cde31962467d9b45ab6270cb25f556f90441d2c8c9d855972582a67425f49431 binfiles arch=i386-solaris size=1297 bin/i386-solaris/cfftot1 bin/i386-solaris/mmafm @@ -170072,10 +178143,10 @@ binfiles arch=i386-solaris size=1297 name lcdftypetools.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of lcdftypetools -containersize 1290584 -containerchecksum aa099612bd5bbadcb10afe92c2a11a593b3fb9364d38c1a80c40d73ed7f6642c4a103494af0b22ee80e8fc3bf3d2b1cdfe8bc074dc065e23212975c513608ef6 +containersize 1294980 +containerchecksum 4aeec7593e1bbb4acf8836dcfb8cc2f2ec1ddd94b27dee525d192ef9652c7a9799a190499c7b448db0fdb91df1d57d0c2c5216a949075bfc8a1e8dbba7626550 binfiles arch=universal-darwin size=2103 bin/universal-darwin/cfftot1 bin/universal-darwin/mmafm @@ -170089,32 +178160,32 @@ binfiles arch=universal-darwin size=2103 bin/universal-darwin/t1testpage bin/universal-darwin/ttftotype42 -name lcdftypetools.win32 -category TLCore -revision 58783 -shortdesc win32 files of lcdftypetools -containersize 703488 -containerchecksum 8945dd808cbacc646ce25020b24b4de69b49a67a63656bb46c8fddbe00d2ff18d16a9c939ce9aedfa54ab7508e840cc9ac9d9cdc39378ef04d81c35a41fc56b4 -binfiles arch=win32 size=947 - bin/win32/cfftot1.exe - bin/win32/mmafm.exe - bin/win32/mmpfb.exe - bin/win32/otfinfo.exe - bin/win32/otftotfm.exe - bin/win32/t1dotlessj.exe - bin/win32/t1lint.exe - bin/win32/t1rawafm.exe - bin/win32/t1reencode.exe - bin/win32/t1testpage.exe - bin/win32/ttftotype42.exe +name lcdftypetools.windows +category TLCore +revision 65891 +shortdesc windows files of lcdftypetools +containersize 819000 +containerchecksum 1063db5cd5dfbaafe1a3f74241f9b8718c50ad2bc8ce46f7985071a1ecfd667f9e0624299a430bc7d78698dc99146c7f9aac8e1e4b0bb3cdbb9d5f50601580b2 +binfiles arch=windows size=1187 + bin/windows/cfftot1.exe + bin/windows/mmafm.exe + bin/windows/mmpfb.exe + bin/windows/otfinfo.exe + bin/windows/otftotfm.exe + bin/windows/t1dotlessj.exe + bin/windows/t1lint.exe + bin/windows/t1rawafm.exe + bin/windows/t1reencode.exe + bin/windows/t1testpage.exe + bin/windows/ttftotype42.exe name lcdftypetools.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of lcdftypetools -containersize 588000 -containerchecksum 373e6f31dc49f96cd560e4ae5adcb74b621cd743e3fe599effd6d4501d84f6a6343ce3e49b490f674ef352481c3c8e46e9fa8b93c9c924a427128b401e5a6aab -binfiles arch=x86_64-cygwin size=1033 +containersize 593356 +containerchecksum ce87ab21880186f92e629fc150c639d5100aec03c454bd3cf2c15b49f94b76fddc7282cfe61dc8335cbdd66f0b263219ad1ca9eb6700370d05cfd04774b30e2c +binfiles arch=x86_64-cygwin size=1032 bin/x86_64-cygwin/cfftot1.exe bin/x86_64-cygwin/mmafm.exe bin/x86_64-cygwin/mmpfb.exe @@ -170129,10 +178200,10 @@ binfiles arch=x86_64-cygwin size=1033 name lcdftypetools.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of lcdftypetools -containersize 630700 -containerchecksum 0bb7fc5b20405cb0cf0fdfe71cc971358e72945c9f6a49239333bca37260722050f0557a8d2a20f4c530ad9818d6530f1ff30832a00ca2f85178f3a56c5d6604 +containersize 630916 +containerchecksum 01fff667300baffd65cca700726e903669dba475479364015af9e261aabbdbdc9b815ee0f24b0a25206d5a7aeba347acd71275a19e0d03709f7c0af419ba818c binfiles arch=x86_64-darwinlegacy size=864 bin/x86_64-darwinlegacy/cfftot1 bin/x86_64-darwinlegacy/mmafm @@ -170148,11 +178219,11 @@ binfiles arch=x86_64-darwinlegacy size=864 name lcdftypetools.x86_64-linux category TLCore -revision 57878 +revision 62187 shortdesc x86_64-linux files of lcdftypetools -containersize 680296 -containerchecksum 6465df752752473925d88701940e3319efdd497d78190c9ea6abe74c68508d24b0667baff8e04c4a95e2fe8e3362782ace3f624d0582abc2ad7523c0d88e598c -binfiles arch=x86_64-linux size=1120 +containersize 702320 +containerchecksum 794fef87bb025008f1b9f08525efb0bf4fade5a2bf0c4e774a262962378143f4ba3e7562e07e3ad33167a53c8b4270bdee207e6b33f12110394ea8fa690ae5a3 +binfiles arch=x86_64-linux size=1151 bin/x86_64-linux/cfftot1 bin/x86_64-linux/mmafm bin/x86_64-linux/mmpfb @@ -170167,11 +178238,11 @@ binfiles arch=x86_64-linux size=1120 name lcdftypetools.x86_64-linuxmusl category TLCore -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of lcdftypetools -containersize 769440 -containerchecksum 3c9259ceafdf7c66940acb161810d64d5b55fc7bb415a09c7d6d952082a61da4895a1a89052feff02046daccb9d8e1cfa14130f3f699d0a575297ae86c1da751 -binfiles arch=x86_64-linuxmusl size=1184 +containersize 729388 +containerchecksum b8f766bd1b69f56979815b008e54d3837e6c844af011cab8b934ec34fe9d724895b6599f376f452ac6a0144a41babc846bf7fafa9ae0290e016348a0883c6993 +binfiles arch=x86_64-linuxmusl size=1145 bin/x86_64-linuxmusl/cfftot1 bin/x86_64-linuxmusl/mmafm bin/x86_64-linuxmusl/mmpfb @@ -170186,10 +178257,10 @@ binfiles arch=x86_64-linuxmusl size=1184 name lcdftypetools.x86_64-solaris category TLCore -revision 57938 +revision 62206 shortdesc x86_64-solaris files of lcdftypetools -containersize 842508 -containerchecksum 5cd90653c252685d58aaa77a48fc2893a36d16cc6545a83934e1cd0e85e30a6d8a31c44af78b1b6463b94303c40370fe29ab3e4ad01fbf4382e7bad4e6b8b686 +containersize 841204 +containerchecksum d0211cdb0acf18a2360b37ec472b2736bdbc907e48c89151eb912a40c70cc0071d5a2e502ebf0526136c070d2632e4f0d5823f6a4e8304d393343ccaeced4151 binfiles arch=x86_64-solaris size=1403 bin/x86_64-solaris/cfftot1 bin/x86_64-solaris/mmafm @@ -170298,17 +178369,17 @@ catalogue-version 0.3 name leadsheets category Package -revision 52275 +revision 61504 shortdesc Typesetting leadsheets and songbooks relocated 1 longdesc This LaTeX package offers support for typesetting simple longdesc leadsheets of songs, i.e. song lyrics and the corresponding longdesc chords. -containersize 16964 -containerchecksum e7a84348b6347962fad95171059e968f35e7601da51ae6fa278add1ed4262bd7ab84bddad9b48780e7481056bece9c311ed1cc25e77c57f9d9e0649abc9197e5 -doccontainersize 958896 -doccontainerchecksum dea48a9b053aa67f6d9e3dcd3560ceccd104d743a5797320e76d43cdb8709afe7236f7ac8ef23dc9175268fe57c97898c92d0dc329a4e3151b017544fa537521 -docfiles size=255 +containersize 17044 +containerchecksum 026e310ee9617108ac60fca69b0f08b2031d9c9dc583a400095765458bc72681c5c39332602994fd8a7dd4757b5214924d4f5d75bc5861365ef65e8e33b6e143 +doccontainersize 2544404 +doccontainerchecksum dafae48e690e6f0a2272d268204cbe58967eec5dc895987ecbff563061f23a53bf9d0d39f4a269b852524c1cad8de08fb121aa8291d2c723c01615f4c83b3231 +docfiles size=647 RELOC/doc/latex/leadsheets/README details="Readme" RELOC/doc/latex/leadsheets/leadsheets_en.pdf details="Package documentation" RELOC/doc/latex/leadsheets/leadsheets_en.tex @@ -170332,7 +178403,7 @@ catalogue-contact-repository https://github.com/cgnieder/leadsheets catalogue-ctan /macros/latex/contrib/leadsheets catalogue-license lppl1.3 catalogue-topics music chords -catalogue-version 0.6 +catalogue-version 0.7 name leaflet category Package @@ -170370,36 +178441,34 @@ catalogue-version 2.1a name lebhart category Package -revision 58503 +revision 65475 shortdesc Write your articles in a colorful way relocated 1 longdesc This package provides a LaTeX class for typesetting articles longdesc with a colorful design. Currently, it has native support for -longdesc English, French, and Chinese typesetting. It compiles with -longdesc either XeLaTeX or LuaLaTeX. This is part of the colorist class -longdesc series and depends on colorist.sty from the colorist package. -longdesc The package name "lebhart" is taken from the German word -longdesc "lebhaft" ("vivid"), combined with the first three letters of -longdesc "Artikel" ("article"). +longdesc Chinese (simplified and traditional), English, French, German, +longdesc Italian, Japanese, Portuguese (European and Brazilian), Russian +longdesc and Spanish typesetting. It compiles with either XeLaTeX or +longdesc LuaLaTeX. This is part of the colorist class series and depends +longdesc on colorist.sty from the colorist package. The package name +longdesc "lebhart" is taken from the German word "lebhaft" ("vivid"), +longdesc combined with the first three letters of "Artikel" ("article"). depend colorist -containersize 3044 -containerchecksum 9f2e2a2b45593dcbcf57bb5a41b0785c73b3e920d26b2311f25776d5902b325db23931f3d9fb642804c374ac00495b350af5559b9bf7bc7fd367f90919a4e94f -doccontainersize 273048 -doccontainerchecksum b3f9af0dd9a4a08034bbe769a3d8a0f76aa741431646ce9be168d6292688c63070d57c3757c799fc2d37391cee12e65828e31062c9abad80b2ca7167ab881f4f -docfiles size=81 +containersize 4772 +containerchecksum 9633bac627299b169929f63a2ce5f4e2595bbf58afbc3b6a4bf4bc2ee605242caa8825f0a22ed91b26ba38cd3ba76da527282bc0a8c30a2ffb41bf2ba10589d6 +doccontainersize 7076 +doccontainerchecksum 5d99e3c77bc95606cc92443d68e119cca9cc6fddd5c0c6bafaa3bf6bb7a647fdadca3ce363847804fef6da247344ca8037f28227dcaa7cccd45368018eeff09e +docfiles size=7 + RELOC/doc/latex/lebhart/DEPENDS.txt RELOC/doc/latex/lebhart/LICENSE RELOC/doc/latex/lebhart/README.md details="Readme" - RELOC/doc/latex/lebhart/lebhart-doc-cn.pdf details="Package documentation (Chinese)" language="zh" - RELOC/doc/latex/lebhart/lebhart-doc-cn.tex - RELOC/doc/latex/lebhart/lebhart-doc-en.pdf details="Package documentation (English)" - RELOC/doc/latex/lebhart/lebhart-doc-en.tex -runfiles size=2 +runfiles size=8 RELOC/tex/latex/lebhart/lebhart.cls catalogue-also colorist catalogue-contact-repository https://github.com/Jinwen-XU/colorist catalogue-ctan /macros/unicodetex/latex/lebhart catalogue-license lppl1.3c -catalogue-topics class article-like chinese +catalogue-topics class article-like expl3 chinese multilingual name lecturer category Package @@ -170490,15 +178559,15 @@ catalogue-version 1.0.5 name lectureslides category Package -revision 58393 +revision 62292 shortdesc Combine single PDF files into one file relocated 1 longdesc This package makes it easy to combine and index individual PDF longdesc files into one large PDF file. -containersize 1528 -containerchecksum 8d5c2e6872ae1f6acbfadabf997ff8b4286398afee2cdb01a0be17b243df25fa9677d360872e422ab62b1c8f3150c6fe4e896eb2dc802752ff362df51d684004 -doccontainersize 47572 -doccontainerchecksum 77822069774285b57a68ae543a287d09dde276266f3a4acc767f101eafd113b74a53fbcaa0ee71bedda18edbbca23f2bde5b77a4f33a0f0dd26a631e3b0945b7 +containersize 1372 +containerchecksum 48d99cd8a5b0c730af30c9c3585f0d2c9d9bf88f359f591bb769d5744412f5b76fe7151a744cfa194dc77f53da2737895fffc9b0e81de216d6d3f5bf4831d26f +doccontainersize 48784 +doccontainerchecksum 8bce5395c30b16ea534071464941e4d4df7622946f09daf4e1dd4f63f79dcbc05f350353bbfa474e1d990a37c0a61368aa34683ee251a4e34da5ad5c896ab84e docfiles size=15 RELOC/doc/latex/lectureslides/README.md details="Readme" RELOC/doc/latex/lectureslides/lectureslides-doc.pdf details="Package documentation" @@ -170509,7 +178578,7 @@ catalogue-also pdfjam pdfpages catalogue-ctan /macros/latex/contrib/lectureslides catalogue-license cc-by-4 catalogue-topics pdfprocess -catalogue-version 0.1 +catalogue-version 1.0 name ledmac category Package @@ -170692,6 +178761,78 @@ catalogue-license lppl1.3 catalogue-topics units misc-conv expl3 catalogue-version 1.0a +name letgut +category Package +revision 65548 +shortdesc Class for the newsletter "La Lettre GUTenberg" of the French TeX User Group GUTenberg +relocated 1 +longdesc The French TeX User Group GUTenberg has been publishing "The +longdesc GUTenberg Letter", its irregular newsletter, since February +longdesc 1993. For this purpose, a dedicated, in-house (La)TeX class was +longdesc gradually created but, depending on new needs and on the people +longdesc who were publishing the Newsletter, its development was +longdesc somewhat erratic; in particular, it would not have been +longdesc possible to publish its code as it was. In addition, its +longdesc documentation was non-existent. The Board of Directors of the +longdesc association, elected in November 2020, wished to provide a +longdesc better structured, more perennial and documented class, able to +longdesc be published on the CTAN. This is now done with the present +longdesc 'letgut' class. # French L'association GUTenberg publie "La +longdesc Lettre GUTenberg", son bulletin irregulomestriel, depuis +longdesc fevrier 1993. Pour ce faire, une classe (La)TeX dediee, maison, +longdesc a peu a peu vu le jour mais, au gre des nouveaux besoins et des +longdesc personnes qui ont assure la publication de la Lettre, son +longdesc developpement a ete quelque peu erratique ; il n'aurait +longdesc notamment pas ete possible de publier son code en l'etat. En +longdesc outre, sa documentation etait inexistante. Le Conseil +longdesc d'Administration de l'association, elu en novembre 2020, a +longdesc souhaite fournir une classe mieux structuree, davantage perenne +longdesc et documentee, a meme d'etre publiee sur le CTAN. C'est +longdesc desormais chose faite avec la presente classe letgut. +containersize 52980 +containerchecksum 848b1c2df001f47239ddb87286baaad56e81b9069d9496bcb6ab7cbedf362f2bfe04dfbc313db4b7bcf4d4b9095a5dc591a0455bba7d815a4b8d58b7308d4277 +doccontainersize 1337472 +doccontainerchecksum c5ee6f66c2fbc13c85a239f74713b2e9aa7bb0b0d7bfc7c65f118ff5f5dc3561dfe4c1907f1e51bca11eb747491af8639559e1cb0dcf49730371a746813843c1 +docfiles size=437 + RELOC/doc/lualatex/letgut/CHANGELOG.md + RELOC/doc/lualatex/letgut/README.md details="Readme" + RELOC/doc/lualatex/letgut/exemple-nouveautes.pdf + RELOC/doc/lualatex/letgut/exemple-nouveautes.tex + RELOC/doc/lualatex/letgut/latexmkrc + RELOC/doc/lualatex/letgut/letgut-banner-code.pdf + RELOC/doc/lualatex/letgut/letgut-banner-code.tex + RELOC/doc/lualatex/letgut/letgut-code.pdf + RELOC/doc/lualatex/letgut/letgut-code.tex + RELOC/doc/lualatex/letgut/letgut.bib + RELOC/doc/lualatex/letgut/letgut.pdf details="Package documentation" + RELOC/doc/lualatex/letgut/letgut.tex + RELOC/doc/lualatex/letgut/listings-conf.tex + RELOC/doc/lualatex/letgut/localconf.tex + RELOC/doc/lualatex/letgut/xindex-letgut.lua +srccontainersize 67304 +srccontainerchecksum a64b94d669315e968fdcdcd43a71d0c3f85767d2c83d121a3997c113f114a867ebc5cc5bbb406234b5d63c21c294030cd48491a3199c1a992cb0ad2cbea17dd3 +srcfiles size=87 + RELOC/source/lualatex/letgut/HOWTO.md + RELOC/source/lualatex/letgut/letgut-banner.org + RELOC/source/lualatex/letgut/letgut.org +runfiles size=69 + RELOC/tex/lualatex/letgut/informations-gut.tex + RELOC/tex/lualatex/letgut/letgut-acronyms.tex + RELOC/tex/lualatex/letgut/letgut-banner.sty + RELOC/tex/lualatex/letgut/letgut-francophony-icon.pdf + RELOC/tex/lualatex/letgut/letgut-lstlang.sty + RELOC/tex/lualatex/letgut/letgut.cbx + RELOC/tex/lualatex/letgut/letgut.cls + RELOC/tex/lualatex/letgut/letgut.dbx + RELOC/tex/lualatex/letgut/letgut.lbx + RELOC/tex/lualatex/letgut/logo-gut.pdf +catalogue-contact-development https://framagit.org/gutenberg/letgut/-/merge_requests +catalogue-contact-repository https://framagit.org/gutenberg/letgut/ +catalogue-ctan /macros/luatex/latex/letgut +catalogue-license lppl1.3c +catalogue-topics magazine luatex +catalogue-version 0.9.6 + name letltxmacro category Package revision 53022 @@ -170745,7 +178886,7 @@ catalogue-topics letterspace name letterswitharrows category Package -revision 53709 +revision 59993 shortdesc Draw arrows over math letters relocated 1 longdesc This package provides LaTeX math-mode commands for setting left @@ -170753,15 +178894,15 @@ longdesc and right arrows over mathematical symbols so that the arrows longdesc dynamically scale with the symbols. While it is possible to set longdesc arrows over longer strings of symbols, the focus lies on single longdesc characters. -containersize 3204 -containerchecksum 4594fdce5a2c6bb4c4405d5111b574076faa247e4b5976596695af2de776edc26fb949d46012ce29663c55c78342d0d234e0a0e0f6a53fc59991083fc3b7e52c -doccontainersize 455796 -doccontainerchecksum 4bbef8f44103e5155cdcbb3719c80f3a1cd4b24211b3734e4e698b411519fb70742b4cab9ee510bf4db2a6a929550e1f448aeffba311b0fa7904e17ecd44b5b2 -docfiles size=113 +containersize 3252 +containerchecksum dcfd59b7a51100a4e1d856d3cbc0d4f2ac258e745566b278e275d8ebd0273e7f96fa1431b681d42e10b1c7496596f1ecdd92753b8b58df4fe352c51b9b009bcb +doccontainersize 480964 +doccontainerchecksum a21ff5d9a4c2e409cd7a32207e1e162b263dff46919fdad25bd5fbc1cca86329efebf847ed24ff7401293d8a318bde9fe7fd2c9def69f39740d5e0686c0ab849 +docfiles size=122 RELOC/doc/latex/letterswitharrows/README.txt details="Readme" RELOC/doc/latex/letterswitharrows/letterswitharrows.pdf details="Package documentation" -srccontainersize 5200 -srccontainerchecksum ea32a5da486d6c7501c900254f1c76494bc30ca6ab74be7d7f6494abe263151c0a94ec3ebae48d778e7fd21ab71f065a26c56535ae9d2f1d8205cceae13ee9af +srccontainersize 5380 +srccontainerchecksum 50e2521b55a238cd6e461b3bcde326c5948573363988bf3bdcc428d04341728dbf73e891d09af65ca1832924cdbd0b0320bd94d662afdf78b3d1039ca3519231 srcfiles size=5 RELOC/source/latex/letterswitharrows/letterswitharrows.dtx runfiles size=3 @@ -170827,7 +178968,7 @@ catalogue-version 3.002 name lettrine category Package -revision 54560 +revision 64511 shortdesc Typeset dropped capitals relocated 1 longdesc The lettrine package supports various dropped capitals styles, @@ -170835,21 +178976,22 @@ longdesc typically those described in the French typographic books. In longdesc particular, it has facilities for the paragraph text's left longdesc edge to follow the outline of capitals that have a regular longdesc shape (such as "A" and "V"). -containersize 7052 -containerchecksum 839469d3cdd53698bd9072451e7b9262633282cf46c32ecf23f3b0f46ae999ac259daeb6b4cc5c43222f9f788a95b85cc406857b19bf4eea1ac1ff3b00caac60 -doccontainersize 272308 -doccontainerchecksum 3ef14d7292d3653acfb5bd47141d16cdeaba393450fe27fe1b91b1f2c171c46949e7336a5d9a384676f3bf0d01b8297ff81f732267d94491460c7d883a520763 -docfiles size=81 +containersize 7224 +containerchecksum a0e2e8b47998ea8cb75f42a8b5b91ac9d44130846e772b6d345e857b2fbf132185047de7886ab772c57a791865887b173287d387b5ff7f5e515ea5c37813c16d +doccontainersize 286324 +doccontainerchecksum 4b1a85198e653f366dfcee1caecb80d620584dfb5cd19f7b4fe98e8c3a0b07cb1bcea8762fb37e7e4eeb32bdfe658a348d9f30c602d6491afec77a7c9ff12ad3 +docfiles size=86 RELOC/doc/latex/lettrine/README.md details="Readme" - RELOC/doc/latex/lettrine/demo-de.pdf details="Package examples (German)" language="de" - RELOC/doc/latex/lettrine/demo-de.tex - RELOC/doc/latex/lettrine/demo-fr.pdf details="Package examples (French)" language="fr" - RELOC/doc/latex/lettrine/demo-fr.tex - RELOC/doc/latex/lettrine/demo-lua.pdf - RELOC/doc/latex/lettrine/demo-lua.tex + RELOC/doc/latex/lettrine/W.pdf + RELOC/doc/latex/lettrine/lettrine-demo-de.pdf details="Package examples (German)" language="de" + RELOC/doc/latex/lettrine/lettrine-demo-de.tex + RELOC/doc/latex/lettrine/lettrine-demo-fr.pdf details="Package examples (French)" language="fr" + RELOC/doc/latex/lettrine/lettrine-demo-fr.tex + RELOC/doc/latex/lettrine/lettrine-demo-lua.pdf + RELOC/doc/latex/lettrine/lettrine-demo-lua.tex RELOC/doc/latex/lettrine/lettrine.pdf details="Package documentation" -srccontainersize 16720 -srccontainerchecksum 0f80bf599a303757e2a8ce836d50bd4a4ab701a623d5ea218d23c8c7ef267756cd5320998570962f9679f17bb26d89bd353ab99c3d5407aa535355239856465a +srccontainersize 17184 +srccontainerchecksum dda2d295fcf87d46c794f84ac1b1c03c95ee5f324d951a6179b7cdb8af5c1c54d676bbc8ed0ef9dbad0ec8ccc45953094f1a0522935d6e671ec4e2e4f28f0eae srcfiles size=20 RELOC/source/latex/lettrine/contrib.dtx RELOC/source/latex/lettrine/contrib.ins @@ -170870,7 +179012,7 @@ catalogue-contact-home http://daniel.flipo.free.fr/lettrine catalogue-ctan /macros/latex/contrib/lettrine catalogue-license lppl1.3 catalogue-topics lettrine -catalogue-version 2.23 +catalogue-version 2.30 name levy category Package @@ -171186,6 +179328,38 @@ catalogue-ctan /macros/latex/contrib/lgreek catalogue-license gpl2 catalogue-topics font-use greek +name lgrmath +category Package +revision 65038 +shortdesc Use LGR-encoded fonts in math mode +relocated 1 +longdesc The lgrmath package is a LaTeX package which sets the Greek +longdesc letters in math mode to use glyphs from the LGR-encoded font of +longdesc one's choice. The documentation includes a rather extensive +longdesc list of the available font family names on typical LaTeX +longdesc installations. +containersize 3168 +containerchecksum 415c04ea9add325ad71e678cafa99fe896d02c8b16facb0c4f69d656f0621e131c79be9470d15c755bfc4f63d9b6611e58829281c0e5c7209ac7c10ecc456b0a +doccontainersize 124328 +doccontainerchecksum c68c01069ef48b668f471c86d0b562f2455e9bf022ee7a9d9a9b2c6475b9fd04b4e1b9b0eb7cac215f51ca965d35a1cc80102a6d862b2d72f9d9c72f07fd5900 +docfiles size=33 + RELOC/doc/latex/lgrmath/README details="Readme" + RELOC/doc/latex/lgrmath/lgrmath.pdf details="Package documentation" + RELOC/doc/latex/lgrmath/lgrmath.tex +srccontainersize 13204 +srccontainerchecksum 044fc3ae8aad6637cb8489f1cb0fed9e5cbe7435a7615fb20b77c749fee43de1de6740b0212239c71106d7615c7a54eee36bb9fb35be571220744d6ae41da90d +srcfiles size=14 + RELOC/source/latex/lgrmath/lgrmath.dtx +runfiles size=5 + RELOC/tex/latex/lgrmath/lgrmath.sty +catalogue-contact-bugs https://github.com/jfbu/lgrmath/issues +catalogue-contact-development https://github.com/jfbu/lgrmath/pulls +catalogue-contact-repository https://github.com/jfbu/lgrmath +catalogue-ctan /macros/latex/contrib/lgrmath +catalogue-license lppl1.3c +catalogue-topics greek font-supp +catalogue-version 1.0 + name lh category Package revision 15878 @@ -172028,7 +180202,7 @@ catalogue-version 2.0 name libertine category Package -revision 54583 +revision 64359 shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX relocated 1 longdesc The package provides the Libertine and Biolinum fonts in both @@ -172042,10 +180216,10 @@ depend iftex depend mweights depend xkeyval execute addMap libertine.map -containersize 13946168 -containerchecksum b4c3a52caa463b8968862de7c9442da09af1bad572b4f59a31cd349948365fc04a190f876b99dca61cffeaa57faf26658c1e44bca6e27ea03024fd50fb665d5b -doccontainersize 1119028 -doccontainerchecksum 185faa15915e8224dc705d6555c35877cb82f6a752df67eb8eb78f05ab8dc7dea228bad5828764551df7f0509668287575432cb864e1365d574d5ffd53e122f9 +containersize 13903304 +containerchecksum 7b95b6612f5b46298cddf459184f11752a4b050110bd1d0271e43e364aa5da58c9e27d3b72119b76e863a19ab0987ea408d749ecf18ff40da1ab8a585e31c7cf +doccontainersize 1118984 +doccontainerchecksum c33beec53a939a5b9f672e0c5a7aea7a3b3047e4f1f1e68b7d4d64cd03a7f73da2bbce2a4c56199f71519d4c364a3e0ccddf8f93f24dc9eb1fd3896fd035ec77 docfiles size=305 RELOC/doc/fonts/libertine/Bugs.txt RELOC/doc/fonts/libertine/ChangeLog.txt @@ -174560,17 +182734,17 @@ catalogue-version 1.01 name libertinus category Package -revision 55064 +revision 61719 shortdesc Wrapper to use the correct libertinus package according to the used TeX engine relocated 1 -longdesc This package is only a wrapper for the the two packages +longdesc This package is only a wrapper for the two packages longdesc libertinus-type1 (pdfLaTeX) and libertinus-otf longdesc (LuaLaTeX/XeLaTeX). The Libertinus fonts are similiar to longdesc Libertine and Biolinum, but come with math symbols. containersize 972 -containerchecksum ec36e8d1184e4b8aad46391bf6cfe54a48006af6ab70cc2a4e20892bdaabdf39ec145e216a12e8be389e3080a51ce5d81be2376be631e32f48ddd5f9548cc564 +containerchecksum 93fc163a66e711943c22f383187d4f7e81aaca32f36eac6e6f944682169282544c9233d05a2b5e6d263dd95de3d8a8106871a0ea1fd2028899031e2cde1244c4 doccontainersize 16240 -doccontainerchecksum 35e7c7ccb8c10bf2d5d24c03b47174a6e53dfabb9f7629f778f6ab3624f146371b4970f577d28765cbcdb1094dbf8414a729a2b808a7f41f418b911899ee0698 +doccontainerchecksum 8865b61037690bd3569654879866592750561d3fdeddd7943280ef772e7798194cf0bdb95809ab4373e1f082d1a1468b3b4456971b72dc892b07e73e2dcdecc6 docfiles size=7 RELOC/doc/fonts/libertinus/Changes RELOC/doc/fonts/libertinus/README.md details="Readme" @@ -174641,7 +182815,7 @@ catalogue-version 7.040 name libertinus-otf category Package -revision 57398 +revision 60023 shortdesc Support for Libertinus OpenType relocated 1 longdesc This package offers LuaLaTeX/XeLaTeX support for the Libertinus @@ -174649,10 +182823,10 @@ longdesc OpenType fonts maintained by Khaled Hosny. Missing fonts are longdesc defined via several font feature settings. The Libertinus fonts longdesc are similiar to Libertine and Biolinum, but come with math longdesc symbols. -containersize 3724 -containerchecksum 12f6bf40c77850714880d7f1e91629e2242d206b2f672b2d9d2f18d567e0e6fe47ef161d03a6351d0e1344048dc8b92b755d53153c164e23177c0dd29ccc3372 -doccontainersize 593988 -doccontainerchecksum a55175cad1b7a407e827b341ab742f6a7ed3aa92984c4a39d534a76b2c733b4aec939609fc77e0e319f2eb2589f2a96c5bb0f8d2b00ecad7ad74932fd8959bb1 +containersize 3728 +containerchecksum 1aee669aaa55ff11c2de760f65597542736b64a4ae52b8d73aa967c92a178ae7013ce06e701d9a3bf3de0e5987abec4d29401480dd4bb845a64c0047ddf66c84 +doccontainersize 594072 +doccontainerchecksum 6c21d100b5ef1bbb8e892c0a0da0cabfe11404b7e1e4606ec04b25bd0a0d22547b1e80f1398573f62a34b4e951cda01466d0d8828cd10e78e8ed008aafecb416 docfiles size=170 RELOC/doc/fonts/libertinus-otf/Changes RELOC/doc/fonts/libertinus-otf/README.md details="Readme" @@ -174664,29 +182838,29 @@ catalogue-also libertinus-fonts libertinus-type1 catalogue-ctan /fonts/libertinus-otf catalogue-license lppl1.3 catalogue-topics font-body font-otf font-supp font-serif font-sans font-proportional font-mono font-maths luatex xetex -catalogue-version 0.28 +catalogue-version 0.29 name libertinus-type1 category Package -revision 57754 +revision 64958 shortdesc Support for using Libertinus fonts with LaTeX/pdfLaTeX relocated 1 longdesc This package provides support for use of Libertinus fonts with longdesc traditional processing engines (LaTeX with dvips or dvipdfmx, longdesc or pdfLaTeX). execute addMap libertinus.map -containersize 8791732 -containerchecksum cfd0e2f07d40389fe0a1dbbcc08b35da4f2639c235c0bf4f5bcce92c09fce6721b4c4f0870e8e09b18e8bbf239b79fb9c6603e6de4efda9958e111b164ac6716 -doccontainersize 1407044 -doccontainerchecksum 92d0df6163e0fe5951b73b938ee184b30c3443492cb6844c1ea662ae47889434afbbad77463da051358835eeb02b1c1730351acab75fb2530782f4a37348ab2e -docfiles size=350 +containersize 8567092 +containerchecksum 7133d2b3572861d7d3ab20063aa7330aec926ab1586d6616bef18cb8078ed66cdafd205993c20b459421f5b5ac8ac7e4e059beb5216b028564154ce3b3acf00a +doccontainersize 1447364 +doccontainerchecksum c01f69729235bdda491ef66f1bcbf5fe39a1edebe0c817ec35ae9aa4f393338b24cfee27823b90fbc1994a32b5e7ddb5a097a9fbfb35b3412346a84028c908c7 +docfiles size=362 RELOC/doc/fonts/libertinus-type1/OFL.txt RELOC/doc/fonts/libertinus-type1/README details="Readme" RELOC/doc/fonts/libertinus-type1/libertinus-samples.pdf details="Font samples" RELOC/doc/fonts/libertinus-type1/libertinus-samples.tex RELOC/doc/fonts/libertinus-type1/libertinus-type1.pdf details="Package documentation" RELOC/doc/fonts/libertinus-type1/libertinus-type1.tex -runfiles size=4932 +runfiles size=5031 RELOC/fonts/enc/dvips/libertinus-type1/lbts_2dnbtf.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_2fcdyd.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_2ojay3.enc @@ -174695,7 +182869,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_2vfnnw.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_2y652m.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_2yds7f.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_332eyj.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_35favc.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_36t55i.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_37i5h5.enc @@ -174726,7 +182899,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_5cy3nd.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_5h7qbk.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_5jnf2k.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_5mdojo.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_5xa72p.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_63ftwl.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_674lrv.enc @@ -174770,12 +182942,10 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_c3bv3f.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_c4i7ev.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_c4nx3a.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_c6ebdh.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_c6vmpn.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_c7grr2.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_calslh.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_cb34qf.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_cclupu.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_cefqwa.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ckbdgg.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ckenly.enc @@ -174808,7 +182978,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_fmdp7p.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_fmriqv.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_fph2zj.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_frnenp.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_fszxp3.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_fujx3h.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_fuyass.enc @@ -174828,7 +182997,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_hahfqq.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_hboyu3.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_hej6xm.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_hh5cao.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_hhbt6z.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_hhmpft.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_hjeuwr.enc @@ -174841,8 +183009,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_iaq24h.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ibb6ig.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_icmtyb.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_ie56ak.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_ienuhe.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ighl2q.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_igmfoi.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ihsp6n.enc @@ -174908,7 +183074,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_oaaihm.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_obkmrl.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_obzz72.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_odbssz.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_of47id.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_of4nbw.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_olw3tj.enc @@ -174929,7 +183094,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_poicuj.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ponsko.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ppaygs.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_ppmlvs.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_pquqdo.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_ptnx64.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_pydski.enc @@ -174937,7 +183101,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_q2ibpc.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_q4imkx.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_q4q2yp.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_qamrlg.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_qcfvgl.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_qe2yqv.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_qpph5c.enc @@ -174992,13 +183155,10 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_uwmf7x.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_uxbjn5.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_uxf4m5.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_uyjt7r.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_v5eacd.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_v5z4kv.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vafbri.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vejg7h.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vftr22.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_vgeuwy.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vgw5na.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vhmker.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_vizicw.enc @@ -175014,9 +183174,7 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_wm6att.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_wogi6j.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_wozmdw.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_wpqmwa.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_wrg6fm.enc - RELOC/fonts/enc/dvips/libertinus-type1/lbts_wyusil.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_x7beke.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_xaezkf.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_xfy7gm.enc @@ -175044,18 +183202,6 @@ runfiles size=4932 RELOC/fonts/enc/dvips/libertinus-type1/lbts_zpwads.enc RELOC/fonts/enc/dvips/libertinus-type1/lbts_zqzvht.enc RELOC/fonts/map/dvips/libertinus-type1/libertinus.map - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-t1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-lf-ts1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-sup-t1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ot1.tfm @@ -175063,18 +183209,6 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ot1.tfm @@ -175082,18 +183216,6 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-t1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-ot1.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1--base.tfm - RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-sup-t1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusMono-Oblique-tlf-ot1.tfm @@ -175118,8 +183240,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-lf-t1.tfm @@ -175138,8 +183263,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-osf-t1.tfm @@ -175166,8 +183294,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.tfm @@ -175186,8 +183317,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.tfm @@ -175206,8 +183340,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.tfm @@ -175226,8 +183363,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.tfm @@ -175254,8 +183394,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.tfm @@ -175274,8 +183417,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.tfm @@ -175297,8 +183443,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-lf-t1.tfm @@ -175320,8 +183469,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-osf-t1.tfm @@ -175353,8 +183505,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.tfm @@ -175376,8 +183531,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.tfm @@ -175396,8 +183554,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-lf-t1.tfm @@ -175416,8 +183577,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-osf-t1.tfm @@ -175444,8 +183608,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tlf-t1.tfm @@ -175464,8 +183631,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSans-Regular-tosf-t1.tfm @@ -175484,8 +183654,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.tfm @@ -175504,8 +183677,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.tfm @@ -175532,8 +183708,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.tfm @@ -175552,8 +183731,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.tfm @@ -175572,8 +183754,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.tfm @@ -175592,8 +183777,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.tfm @@ -175620,8 +183808,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.tfm @@ -175640,8 +183831,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.tfm @@ -175660,8 +183854,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.tfm @@ -175680,8 +183877,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.tfm @@ -175708,8 +183908,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.tfm @@ -175728,8 +183931,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.tfm @@ -175748,8 +183954,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-lf-t1.tfm @@ -175768,8 +183977,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-osf-t1.tfm @@ -175796,8 +184008,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1.tfm @@ -175816,8 +184031,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1.tfm @@ -175836,8 +184054,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.tfm @@ -175856,8 +184077,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.tfm @@ -175884,8 +184108,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.tfm @@ -175904,8 +184131,11 @@ runfiles size=4932 RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2c.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1--base.tfm RELOC/fonts/tfm/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.tfm @@ -176119,27 +184349,12 @@ runfiles size=4932 RELOC/fonts/type1/public/libertinus-type1/LibertinusSerif-SemiboldItalic.pfb RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifDisplay-Regular.pfb RELOC/fonts/type1/public/libertinus-type1/LibertinusSerifInitials-Regular.pfb - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-t1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-lf-ts1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-sup-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Bold-tlf-ts1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-t1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-lf-ts1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-sup-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-BoldOblique-tlf-ts1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-t1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-lf-ts1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-sup-ly1.vf - RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusMono-Oblique-tlf-ts1.vf @@ -176149,43 +184364,67 @@ runfiles size=4932 RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Bold-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-BoldOblique-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-lgr.vf @@ -176194,6 +184433,9 @@ runfiles size=4932 RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-lgr.vf @@ -176202,6 +184444,9 @@ runfiles size=4932 RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-sup-lgr.vf @@ -176213,6 +184458,9 @@ runfiles size=4932 RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-lgr.vf @@ -176221,132 +184469,207 @@ runfiles size=4932 RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Italic-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSans-Regular-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Bold-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Italic-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Regular-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-lf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-osf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-sup-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tlf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ly1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-ot1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2a.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2b.vf + RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-sc-t2c.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-t1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-Semibold-tosf-ts1.vf RELOC/fonts/vf/public/libertinus-type1/LibertinusSerif-SemiboldItalic-lf-ly1.vf @@ -176441,8 +184764,6 @@ runfiles size=4932 RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TLF.fd RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifDisplay-TOsF.fd RELOC/tex/latex/libertinus-type1/LGRLibertinusSerifInitials-TLF.fd - RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-LF.fd - RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-Sup.fd RELOC/tex/latex/libertinus-type1/LY1LibertinusMono-TLF.fd RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-LF.fd RELOC/tex/latex/libertinus-type1/LY1LibertinusSans-OsF.fd @@ -176460,8 +184781,6 @@ runfiles size=4932 RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TLF.fd RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifDisplay-TOsF.fd RELOC/tex/latex/libertinus-type1/LY1LibertinusSerifInitials-TLF.fd - RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-LF.fd - RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-Sup.fd RELOC/tex/latex/libertinus-type1/OT1LibertinusMono-TLF.fd RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-LF.fd RELOC/tex/latex/libertinus-type1/OT1LibertinusSans-OsF.fd @@ -176479,8 +184798,6 @@ runfiles size=4932 RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TLF.fd RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifDisplay-TOsF.fd RELOC/tex/latex/libertinus-type1/OT1LibertinusSerifInitials-TLF.fd - RELOC/tex/latex/libertinus-type1/T1LibertinusMono-LF.fd - RELOC/tex/latex/libertinus-type1/T1LibertinusMono-Sup.fd RELOC/tex/latex/libertinus-type1/T1LibertinusMono-TLF.fd RELOC/tex/latex/libertinus-type1/T1LibertinusSans-LF.fd RELOC/tex/latex/libertinus-type1/T1LibertinusSans-OsF.fd @@ -176546,7 +184863,6 @@ runfiles size=4932 RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TLF.fd RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifDisplay-TOsF.fd RELOC/tex/latex/libertinus-type1/T2CLibertinusSerifInitials-TLF.fd - RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-LF.fd RELOC/tex/latex/libertinus-type1/TS1LibertinusMono-TLF.fd RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-LF.fd RELOC/tex/latex/libertinus-type1/TS1LibertinusSans-OsF.fd @@ -176569,7 +184885,7 @@ catalogue-topics font font-body font-type1 font-serif font-sans font-proportiona name libertinust1math category Package -revision 56861 +revision 61751 shortdesc A Type 1 font and LaTeX support for Libertinus Math relocated 1 longdesc The package provides a Type1 version of Libertinus Math, with a @@ -176578,11 +184894,11 @@ longdesc allow it to serve as a math accompaniment to Libertine under longdesc LaTeX. In addition, with option sansmath, it can function as a longdesc standalone math font with sans serif Roman and Greek letters. execute addMap libertinust1math.map -containersize 1011376 -containerchecksum a0720e690aecd6e8239aabacdb815ebd70512b067782d0efbef9da437b8cbed9edc70f5650eae18f51e3cd37b4dc966af472690fac9bcca0dd025faf591b26fc -doccontainersize 1329808 -doccontainerchecksum d963d7e8541a8a7df1ab8da508cee578abffeebae9d1326ed0d11f1c28831b6f6656429988ea77378477d7a5680aab1fcadd793931908a93cb16548265c7a96d -docfiles size=1193 +containersize 1242040 +containerchecksum 444d23e7bff1a6c1b3c368730a589a033c211f9fafb1032b3852e55ade7cde260f1662ab7266291136919558d9c2995986655f0302c38a677afd4dd2f74d5376 +doccontainersize 1533516 +doccontainerchecksum d3bbc0ef7e507affc60a6a76c4f33e42b42f5b9742098b5e967d6581f79d9fd68231cb7f67ff97b7d5cd8a47a023885306439125419375537412024d5bbd9f88 +docfiles size=1245 RELOC/doc/fonts/libertinust1math/FONTLOG.txt RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.pdf details="Package documentation" RELOC/doc/fonts/libertinust1math/LibertinusT1Math-doc.tex @@ -176621,12 +184937,12 @@ docfiles size=1193 RELOC/doc/fonts/libertinust1math/sample9-crop.pdf RELOC/doc/fonts/libertinust1math/sample9.pdf RELOC/doc/fonts/libertinust1math/sample9.tex -runfiles size=455 +runfiles size=530 RELOC/fonts/afm/public/libertinust1math/BDXsfmi-bol.afm RELOC/fonts/afm/public/libertinust1math/BDXsfmi-reg.afm RELOC/fonts/afm/public/libertinust1math/BDXsfmr-bol.afm RELOC/fonts/afm/public/libertinust1math/BDXsfmr-reg.afm - RELOC/fonts/afm/public/libertinust1math/LibertinusT1Math.afm + RELOC/fonts/afm/public/libertinust1math/LibertinusT1math.afm RELOC/fonts/enc/dvips/libertinust1math/libusBB.enc RELOC/fonts/enc/dvips/libertinust1math/libusBMI.enc RELOC/fonts/enc/dvips/libertinust1math/libusBMR.enc @@ -176651,6 +184967,9 @@ runfiles size=455 RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathit.tfm RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm-bold.tfm RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathrm.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsf.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfb.tfm + RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfi.tfm RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit-bold.tfm RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfit.tfm RELOC/fonts/tfm/public/libertinust1math/libertinust1-mathsfrm-bold.tfm @@ -176675,37 +184994,43 @@ runfiles size=455 catalogue-ctan /fonts/libertinust1math catalogue-license ofl lppl catalogue-topics font-serif font-sans font-maths font-type1 -catalogue-version 1.2.2 +catalogue-version 2.0.2 name libgreek category Package -revision 27789 -shortdesc Use Libertine or Biolinum Greek glyphs in mathematics -relocated 1 -longdesc The package is for LaTeX users who wish to use the Libertine or -longdesc Biolinum font for the Greek letters in math mode. It is not -longdesc necessary to load the libertine package itself, but of course -longdesc the Linux-Libertine/Biolinum fonts and LaTeX support files must -longdesc have been installed. -containersize 2244 -containerchecksum 0547ebdd180554fd00a7ad96932816e13744886457c84960b8abba06125f68ec9391ffb03c7bb7ad039a2654a1b73c2c378b8eee2130107a02e25881581c8139 -doccontainersize 46148 -doccontainerchecksum 105ad6a6d557213c6918b2160dfc70449d496155e3a0fe1e683b2186b8d10d3067a85b05e3ee26f01ccdb6f70c2f864d09439eb4b8347dc3217482e17600f79d -docfiles size=16 +revision 65004 +shortdesc Greek letters in math mode from Libertinus or Linux Libertine/Biolinum +relocated 1 +longdesc This package allows LaTeX users (especially if using +longdesc traditional LaTeX/pdfLaTeX) to set the Greek letters in math +longdesc mode to use the glyphs from the Libertinus Serif or Sans font, +longdesc via the font support files provided by the libertinus-type1 +longdesc package of Bob Tennent. All Greek letters are defined both in +longdesc \...up and \...it variants. The style (ISO, TeX, or French i. +longdesc e. upright) can be modified midway in the document. A "legacy" +longdesc mode uses font support from the (obsolete) package +longdesc https://ctan.org/pkg/libertine-legacy which map to the Linux +longdesc Libertine or Biolinum fonts. This package is for users which +longdesc only want to customize Greek letters in math mode. +containersize 4504 +containerchecksum bfd9b373b9dd5bf637dba467b32a8b15965407ff1f6d47629f400b919d7126d5f37e1f35b8624cc5505869d8a649e25db2a175de4aaedc50a3607d90848c6cf6 +doccontainersize 159184 +doccontainerchecksum 94f7022093b0b1c3903b214a3e874751884020a78355e13ae101a2d336eb25796ec0f8388884f5dd9600badd15992978f3c9516a5a6d8ac1d7d3b92046ecde96 +docfiles size=42 RELOC/doc/latex/libgreek/README details="Readme" RELOC/doc/latex/libgreek/libgreek.pdf details="Package documentation" - RELOC/doc/latex/libgreek/libgreekcheck.tex -srccontainersize 4748 -srccontainerchecksum 41e1629949d8fbe9cbef5a153bd9ffe2ed354789a4c80d518e5ef7bb4bb9f5152c024f190a4ad8d22eb58a69852d3fa63d7670aa1fa78001cac5d46c3891e025 -srcfiles size=5 + RELOC/doc/latex/libgreek/libgreek.tex +srccontainersize 17020 +srccontainerchecksum 7a04909b6663987eb42f690355b91ba72056540f5e4cb7e8998ef04db7bfa90d33f605103b01a383107a1c0629c9a328006ec2d5b2d0d98777bd4b69db779db9 +srcfiles size=19 RELOC/source/latex/libgreek/libgreek.dtx - RELOC/source/latex/libgreek/libgreek.ins -runfiles size=3 +runfiles size=8 + RELOC/tex/latex/libgreek/libgreek-legacy.sty RELOC/tex/latex/libgreek/libgreek.sty catalogue-ctan /macros/latex/contrib/libgreek -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics font-maths font-supp -catalogue-version 1.0 +catalogue-version 1.1 name librarian category Package @@ -176744,7 +185069,7 @@ catalogue-version 1.0 name librebaskerville category Package -revision 56018 +revision 64421 shortdesc The Libre Baskerville family of fonts with LaTeX support relocated 1 longdesc This package provides the Libre Baskerville family of fonts, @@ -176753,17 +185078,17 @@ longdesc XeLaTeX or LuaLaTeX. It is primarily intended to be a web font longdesc but is also attractive as a text font. A BoldItalic variant has longdesc been artificially generated. execute addMap LibreBaskerville.map -containersize 576200 -containerchecksum 49e0fce1bb4d31cb12f323e45a9e9cdd8688951f89e69c22c9cb576d2d0e222eafe74e02b07a9a854fdca2a32debadbca32ded1ec5a0b2efaff4a0d20e7ea3a1 -doccontainersize 33176 -doccontainerchecksum f90a5f6d2de21b15d53dc047771412fcd7ca7b5332a667efe1bab6c59eec59c474b5b6042fd1d81e70df86b3a571f3fd64799fd5e7ccac9362a9fe0b65da63ca +containersize 575508 +containerchecksum 671894db7ebd325e35efba47a8b84dc9afbeb213358503f65e246e97af090be03f6591fe124d4f5b4c53ae99bdc7a56bf84d385597ed7564fa63f7fad5265e4e +doccontainersize 33184 +doccontainerchecksum 9cfecbbfea90ff99af78bac088674061c7123ea046aa42da806fc09d6fe5e88c94fbaa3053bf87b563e55f514eda5cda108d5bf6b096253e79fa0d09567221ee docfiles size=13 RELOC/doc/fonts/librebaskerville/FONTLOG.txt RELOC/doc/fonts/librebaskerville/OFL.txt RELOC/doc/fonts/librebaskerville/README details="Readme" RELOC/doc/fonts/librebaskerville/librebaskerville-samples.pdf details="Font samples" RELOC/doc/fonts/librebaskerville/librebaskerville-samples.tex -runfiles size=457 +runfiles size=456 RELOC/fonts/enc/dvips/librebaskerville/lbskvl_4uz6a2.enc RELOC/fonts/enc/dvips/librebaskerville/lbskvl_4yc6wb.enc RELOC/fonts/enc/dvips/librebaskerville/lbskvl_6hj2ra.enc @@ -176852,7 +185177,6 @@ runfiles size=457 RELOC/fonts/vf/impallari/librebaskerville/LibreBskvl-Regular-sup-t1.vf RELOC/tex/latex/librebaskerville/LY1LibreBskvl-LF.fd RELOC/tex/latex/librebaskerville/LY1LibreBskvl-Sup.fd - RELOC/tex/latex/librebaskerville/LibreBskvl.sty RELOC/tex/latex/librebaskerville/OT1LibreBskvl-LF.fd RELOC/tex/latex/librebaskerville/OT1LibreBskvl-Sup.fd RELOC/tex/latex/librebaskerville/T1LibreBskvl-LF.fd @@ -176865,21 +185189,21 @@ catalogue-topics font font-body font-serif font-proportional font-ttf font-type1 name librebodoni category Package -revision 39375 +revision 64431 shortdesc Libre Bodoni fonts with LaTeX support relocated 1 longdesc The Libre Bodoni fonts are designed by Pablo Impallari and longdesc Rodrigo Fuenzalida, based on the 19th century Morris Fuller longdesc Benton's. execute addMap LibreBodoni.map -containersize 547364 -containerchecksum eebacf9b045b46df1a8c806deebbd94742e2c1615e45da85946c83cbb82a3a2ff278a6a0bdf47059c5713ed1c2dfce8988ff82c4682aeeadc05772c49426372f -doccontainersize 20164 -doccontainerchecksum 5cad86257fd423e1f7551a014f888c28d4b61a9fea14aabb0128458fa17ad81372668f247d9e7a81ab0801d9ece0a0529a304d16ae2f06dae5598048bef4d036 +containersize 547356 +containerchecksum e1bc9e0560febac6f6e56737ddc070fb9642ca6e701699dd3546e63fa681ce28a995e61b4190edaf4d9b9f9a4131b77436d69cbce47e601b11b63caa25bccc7a +doccontainersize 20192 +doccontainerchecksum be63dcbe34c1f09f560f85aba54e469b3b14331a4ccaf8e44ce7ffcc649ec1a0c4ba2494ff844cede73943a646cc8c62c8bf7a949b602389e4abf9ae5181331e docfiles size=9 RELOC/doc/fonts/librebodoni/OFL.txt RELOC/doc/fonts/librebodoni/README details="Readme" - RELOC/doc/fonts/librebodoni/librebodoni-samples.pdf details="Package documentation" + RELOC/doc/fonts/librebodoni/librebodoni-samples.pdf details="Font samples" RELOC/doc/fonts/librebodoni/librebodoni-samples.tex runfiles size=316 RELOC/fonts/enc/dvips/librebodoni/lbd_2nc6ly.enc @@ -177009,12 +185333,12 @@ runfiles size=316 RELOC/tex/latex/librebodoni/T1LibreBodoni-TLF.fd RELOC/tex/latex/librebodoni/TS1LibreBodoni-TLF.fd catalogue-ctan /fonts/librebodoni -catalogue-license ofl -catalogue-topics font font-otf font-type1 +catalogue-license ofl lppl +catalogue-topics font font-body font-proportional font-serif font-otf font-type1 font-supp font-t1enc name librecaslon category Package -revision 56003 +revision 64432 shortdesc Libre Caslon fonts, with LaTeX support relocated 1 longdesc The Libre Caslon fonts are designed by Pablo Impallari. @@ -177022,10 +185346,10 @@ longdesc Although they have been designed for use as web fonts, they longdesc work well as conventional text fonts. An artificially generated longdesc BoldItalic variant has been added. execute addMap LibreCaslon.map -containersize 693256 -containerchecksum 83f7bf4212aa4340cb12ef5ab6ba447860793c8e2f1e8892e43b28d7bb19f3d20bdd58b74d9362fa21afd2bbd7f374d292635f30be91eddfe091a005703cf7ef -doccontainersize 107932 -doccontainerchecksum c41ea29708c5f830ef69d02444eb2735a307c545bbd3b876e9d367006bcea0df55d43fb740b15f1fba2849a9133ecf9edc617b9f2e143789c317821ea5573cdd +containersize 693252 +containerchecksum 96c3193cfc16b5cb312ff67303825c7e9733642108a601ee2b8dccc6e8d6aaa0db28e2da7c84faf71eaa1576ddab230bb6f385972d95f4aaba547e57a82b1e54 +doccontainersize 107940 +doccontainerchecksum 9f7c6662af462f0c73b97de098cc4bbff5a3060e44a72ce294b175c5d5a3f520a93026b1bab17bdaf5c48d2de55c4045730386f7f8f046b3ff797c4d715acb8f docfiles size=30 RELOC/doc/fonts/librecaslon/OFL.txt RELOC/doc/fonts/librecaslon/README details="Readme" @@ -177304,17 +185628,17 @@ catalogue-topics font font-body font-proportional font-serif font-otf font-type1 name librefranklin category Package -revision 54512 +revision 64441 shortdesc LaTeX support for the Libre-Franklin family of fonts relocated 1 longdesc Libre Franklin is an interpretation and expansion based on the longdesc 1912 Morris Fuller Benton's classic, designed by Pablo longdesc Impallari, Rodrigo Fuenzalida and Nhung Nguyen. execute addMap LibreFranklin.map -containersize 2995408 -containerchecksum 793a8b7048c96bab41620464fbac38adba4a07bf1cbe167e12bf56a051183b5af599f2559ea00bef51f1dc9d8851c41fc8bb65664a2544278b9b66be66d2f9cc -doccontainersize 31688 -doccontainerchecksum 54b3c072fc80d07b07a1388988d37ba39a1ee302e12e99d9b9beed32bd547edc4bdd1134888cc79922a59347bd5c03724150eab7fcd84431bda31cc8a04eadaf +containersize 2995400 +containerchecksum 35b304ca5b24ea88fc6a5227361db7f825a99eeba4b1ddcc31e5e71bda3f6ec911b00e2ec7ae9f54022748f39a26baa61aecff267628343dceae8eb8cb07bfd2 +doccontainersize 31684 +doccontainerchecksum 092dfd68010c10942f030828552e4609ded2b27bbd13d213556ad301629893748ace3380aefda1adc8ad23261b2de253599f6784b461fac8a1bf49cd6e1370d8 docfiles size=13 RELOC/doc/fonts/librefranklin/OFL.txt RELOC/doc/fonts/librefranklin/README details="Readme" @@ -177897,16 +186221,16 @@ catalogue-version 1.007 name lie-hasse category Package -revision 53653 +revision 61719 shortdesc Draw Hasse diagrams relocated 1 longdesc This package draws Hasse diagrams of the partially ordered sets longdesc of the simple roots of any complex simple Lie algebra. It uses longdesc the Dynkin diagrams package dynkin-diagrams. -containersize 10712 -containerchecksum ecd15640967371587139b06241a7031e86b72a6855a762e90b5b96ffa629c520613fafa95f08f346bbca365ef4e2156b2d1db6051f5e065bfd94291d942b2a44 -doccontainersize 575492 -doccontainerchecksum e33467606f46bf04dc4b42820a1016a3da4222e17dc3ee0fd44290b6e8cd831ee8080beb3536a66f961406066884bffd1488b103ec2fd86c1bc01399b1879bfa +containersize 10644 +containerchecksum b71ed475c73a94a92b8a8078a4edccc73f7d688bad7a1a5e6218bafba823b76a20b79da83c7591903fa234c6f0e7f776317dd8b740e5fd7cd014821f8dd77c94 +doccontainersize 575496 +doccontainerchecksum d846971b6b8429e58521ad0cc564906fc06623a3764117069fdb1912aeb84858e7af93ea2f4a7732c6e677f260f10a6a9b79488d43caf56ad158152245f8e4aa docfiles size=152 RELOC/doc/latex/lie-hasse/README details="Readme" RELOC/doc/latex/lie-hasse/lie-hasse.bib @@ -177914,39 +186238,62 @@ docfiles size=152 RELOC/doc/latex/lie-hasse/lie-hasse.tex runfiles size=15 RELOC/tex/latex/lie-hasse/lie-hasse.sty -catalogue-contact-home http://euclid.ucc.ie/Mckay/ catalogue-ctan /graphics/pgf/contrib/lie-hasse catalogue-license lppl1.3c catalogue-topics diagram pgf-tikz catalogue-version 1.0 +name liftarm +category Package +revision 62981 +shortdesc Draw liftarms +relocated 1 +longdesc This package can be used to draw liftarms with TikZ. It +longdesc provides several options for the appearance of the liftarms, a +longdesc command which connects two liftarms and an environment to +longdesc describe a construction. +containersize 3420 +containerchecksum a4938aa3e9a7c844766c2b6ef5959fda39f4de50325545d64a319a9d7f80ac2b3b5c4966e1db249e83d4cca7b82a3a7a60bff90c5d425f32a2a5c5b55b2fc4e9 +doccontainersize 1861856 +doccontainerchecksum 1d4917e9a032e459ed1922b4d1ed5b525d3cc8799dedb8d435b0a387fb9c529159b620668bf5e737e87c68e434f2c01004d6f6b2100ea2484f179f2105901a73 +docfiles size=497 + RELOC/doc/latex/liftarm/README.md details="Readme" + RELOC/doc/latex/liftarm/liftarm.pdf details="Package documentation" + RELOC/doc/latex/liftarm/liftarm.tex +runfiles size=4 + RELOC/tex/latex/liftarm/liftarm.sty +catalogue-ctan /graphics/pgf/contrib/liftarm +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 2.0 + name light-latex-make category Package -revision 56513 +revision 66473 shortdesc llmk: A build tool for LaTeX documents -longdesc This program is yet another build tool specific for LaTeX -longdesc documents. Its aim is to provide a simple way to specify a -longdesc workflow of processing LaTeX documents and encourage people to -longdesc always explicitly show the right workflow for each document. -longdesc The main features of the executable llmk are all about the -longdesc above purpose. First, you can describe the workflows either in -longdesc an external file llmk.toml or in a LaTeX document source in the -longdesc form of magic comments. Further, multiple magic comment formats -longdesc can be used. Second, it is fully cross-platform. The only -longdesc requirement of the program is the texlua command; llmk provides -longdesc a uniform way to describe the workflows available for nearly -longdesc all TeX environments. Third, it behaves exactly the same in any +longdesc Light LaTeX Make (llmk) is yet another build tool specific for +longdesc LaTeX documents. Its aim is to provide a simple way to specify +longdesc a workflow of processing LaTeX documents and encourage people +longdesc to always explicitly show the right workflow for each document. +longdesc The main features of llmk are all about the above purpose. +longdesc First, you can describe the workflows either in an external +longdesc file llmk.toml or in a LaTeX document source in the form of +longdesc magic comments. Further, multiple magic comment formats can be +longdesc used. Second, it is fully cross-platform. The only requirement +longdesc of the program is the texlua command; llmk provides a uniform +longdesc way to describe the workflows available for nearly all TeX +longdesc environments. Third, it behaves exactly the same in any longdesc environment. At this point, llmk intentionally does not provide longdesc any method for user configuration. Therefore one can guarantee longdesc that for a LaTeX document with an llmk setup, the process of longdesc typesetting the document will be reproduced in any TeX longdesc environment with the program. depend light-latex-make.ARCH -containersize 10432 -containerchecksum ef43711feb7a776c094dfb0fb87d8f1d64f30bb4f5872cd47ca9f9bcbe7aaea84158b54414ea6e3cfa6a8dc58035eadee7835d175b8a6829b5c7298c33723d26 -doccontainersize 178660 -doccontainerchecksum 5e25885e1a537a435b7e4d71969046918c0221741ff9d90adce0ac03f4ef3208e18af58dd007a95c62261ce4c2506724244d4a3706a0ec9c8c527a0596c0da05 -docfiles size=65 +containersize 10728 +containerchecksum 1ede05b31d3b7acdd0f38b19e83b4258f05ddb184343dd36a46f142adca9f4081631d687411a1370be880dba5e3c6ad3f1c21108232e8b8f4fd03fdc1f3ad60e +doccontainersize 200276 +doccontainerchecksum f5bb10465cf3dd983f59b101f6c631e202ce655282319c773cd0d83c0a9a8a3b9cee7790ef1f803b0c68215b553a2668d861a51dd9ec35b2dfe4b07ef0cf3a08 +docfiles size=73 texmf-dist/doc/man/man1/llmk.1 texmf-dist/doc/man/man1/llmk.man1.pdf texmf-dist/doc/support/light-latex-make/LICENSE @@ -177964,7 +186311,7 @@ catalogue-contact-repository https://github.com/wtsnjp/llmk catalogue-ctan /support/light-latex-make catalogue-license mit catalogue-topics comp-supp compilation use-lua -catalogue-version 0.2.0 +catalogue-version 1.2.0 name light-latex-make.aarch64-linux category Package @@ -178002,15 +186349,6 @@ containerchecksum 69d48626724175f8c2937472bf26a1cd3e7e9a0a542fd611d477612893971c binfiles arch=armhf-linux size=1 bin/armhf-linux/llmk -name light-latex-make.i386-cygwin -category Package -revision 56352 -shortdesc i386-cygwin files of light-latex-make -containersize 348 -containerchecksum 72ad7e1aa102c1273155e4a26df7c42a12224cf75734c5eb5464b210520261120586fbedf45fae30324f7843029b42654f2a94006de235d93b09f9cddbe9099c -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/llmk - name light-latex-make.i386-freebsd category Package revision 56352 @@ -178056,14 +186394,14 @@ containerchecksum e965b7f7aa9807e77b6db99acce0a2b6f1b72b35342233e2c6037574aab2be binfiles arch=universal-darwin size=1 bin/universal-darwin/llmk -name light-latex-make.win32 +name light-latex-make.windows category Package -revision 56352 -shortdesc win32 files of light-latex-make -containersize 688 -containerchecksum 3fb2e03fbdff6bfc5c482afe63f561714397ff061b06ab4ade267e2b24117ba5b44fe47fe524de20d5e4ad852cf02885bef8a26ae01ebfd6e7ac57103bfd6bdf -binfiles arch=win32 size=1 - bin/win32/llmk.exe +revision 65891 +shortdesc windows files of light-latex-make +containersize 2316 +containerchecksum a61ec3bd890d50f1450f9cf60e550d243c26ab028918ff2dcd6251e35b174b9fa9607bd883ed93140e6975a7936823933b1838a5a7fa3b51c7cdbab9d5fd088c +binfiles arch=windows size=2 + bin/windows/llmk.exe name light-latex-make.x86_64-cygwin category Package @@ -178110,6 +186448,37 @@ containerchecksum e6e9f263f9f33cc1050321ee64908dd81275ee38fe45dd2ca1afd3313dcc2b binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/llmk +name ligtype +category Package +revision 63577 +shortdesc Comprehensive ligature suppression functionalities +relocated 1 +longdesc This package suppresses inappropriate ligatures following +longdesc specified rules. Both font and user kerning are applied +longdesc correctly, and f-glyphs are automatically replaced with their +longdesc short-arm variant (if available). Also there is an emphasis on +longdesc speed. By default the package applies German language ligature +longdesc suppression rules. With the help of options and macros it can +longdesc be used for other languages as well. The package requires +longdesc LuaLaTeX. +containersize 9724 +containerchecksum d28a77d7cdf47f3def3218507d384168766a2a497326560cda325303dad8dce90a5d823486fe0cbad8d254890332a30470349a113a955acf97d1cd780ecffff4 +doccontainersize 90712 +doccontainerchecksum 96c466142a9cb4c983650404ff8c803c4e8218862607ab2da95f3dd2bee2fb42dcb6a5dcf4c0f69924296ad468f3b2d0ac2ea7d7b3779721e3fc95ac4fb0317f +docfiles size=32 + RELOC/doc/lualatex/ligtype/DEPENDS.txt + RELOC/doc/lualatex/ligtype/README.md details="Readme" + RELOC/doc/lualatex/ligtype/ligtype.pdf details="Package documentation" + RELOC/doc/lualatex/ligtype/ligtype.tex +runfiles size=24 + RELOC/tex/lualatex/ligtype/ligtype.lua + RELOC/tex/lualatex/ligtype/ligtype.sty +catalogue-also rmligs +catalogue-ctan /macros/luatex/latex/ligtype +catalogue-license lppl1.3c +catalogue-topics letterspace luatex typesetting +catalogue-version 0.1b + name lilyglyphs category Package revision 56473 @@ -178353,17 +186722,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/lily-image-commands bin/armhf-linux/lily-rebuild-pdfs -name lilyglyphs.i386-cygwin -category Package -revision 31696 -shortdesc i386-cygwin files of lilyglyphs -containersize 404 -containerchecksum 65a794e629817fb861f6f7798d9c1d02a7bfc3c1cc92ca706127363bfb7b155a96d1a70857cfcf7930d854be4df68381b4f6d0f1df6e34b00e8035631d9f45c0 -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/lily-glyph-commands - bin/i386-cygwin/lily-image-commands - bin/i386-cygwin/lily-rebuild-pdfs - name lilyglyphs.i386-freebsd category Package revision 31696 @@ -178419,16 +186777,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/lily-image-commands bin/universal-darwin/lily-rebuild-pdfs -name lilyglyphs.win32 +name lilyglyphs.windows category Package -revision 31696 -shortdesc win32 files of lilyglyphs -containersize 736 -containerchecksum b27fc290cd7bd198aa814ae3513ca849377cb76db2920d3b32e007d78b64e7e8af385e7a207558525948d382b670419e5156b02ba9fc4bc5516734732de66801 -binfiles arch=win32 size=3 - bin/win32/lily-glyph-commands.exe - bin/win32/lily-image-commands.exe - bin/win32/lily-rebuild-pdfs.exe +revision 65891 +shortdesc windows files of lilyglyphs +containersize 2404 +containerchecksum 48590337bea2880abb09b6b3573f68fd55e3df17fa4fe02bd3caa9fc196ca798d508c8ff3d21ba1623b4cb2a1b9116b29aa94a0a50ec1265456f7187df52e1fe +binfiles arch=windows size=6 + bin/windows/lily-glyph-commands.exe + bin/windows/lily-image-commands.exe + bin/windows/lily-rebuild-pdfs.exe name lilyglyphs.x86_64-cygwin category Package @@ -178533,18 +186891,18 @@ catalogue-version 2.2 name limecv category Package -revision 54329 +revision 61199 shortdesc A (Xe/Lua)LaTeX document class for curriculum vitae relocated 1 longdesc limecv is a (Xe/Lua)LaTeX document class to write curriculum longdesc vitae. It is designed with the following design rules: simple, longdesc elegant and clean. To this end, it offers several environments longdesc and macros for convenience. -containersize 8180 -containerchecksum 90614eceacd921cfaaa60748ebd342eacc66f580879e0d2b03641b5c4b587e5559242c17240f248bd8ba227976d07a58553cc529bc6decfe40e8fcb3464669a0 -doccontainersize 377240 -doccontainerchecksum 53859b21cbb3786f84c5250a8decc225a5d7208cab54ade8de28026d7a47a38daa841b89bca76e2952240d05d91a63e6cbc8afe401adb721dfad9417e2369089 -docfiles size=122 +containersize 8416 +containerchecksum 14c7bb278113e8d8ec249e18fe7a142f5216984468a51a2c64926b2dea6e79d928310600cee498cb3773b0ae70e97199b4800a8c5df94431df121ccf62955b5a +doccontainersize 380648 +doccontainerchecksum 7e64c4a940dfb321da2c81ae84e709e1601068935f2531c8e6fdf514b5cbca6407485005f60e4f410a303b97557986f1962dfad976a3c3914d01309c67ae8049 +docfiles size=123 RELOC/doc/latex/limecv/LICENSE RELOC/doc/latex/limecv/README.md details="Readme" RELOC/doc/latex/limecv/examples/limecv-icon.pdf @@ -178556,12 +186914,12 @@ docfiles size=122 RELOC/doc/latex/limecv/examples/mwe-xelatex.tex RELOC/doc/latex/limecv/examples/picture.png RELOC/doc/latex/limecv/limecv.pdf details="Package documentation" -srccontainersize 19496 -srccontainerchecksum e140a18b0c7956fda5bca6d75d0d4d89c7035f6cfe5cdf7245fbba47a095323813ca45ef5b9f5dfeb75e63e92cdd48e4003abd23666a8d70d8be8f3bc9a60e6e -srcfiles size=23 +srccontainersize 20000 +srccontainerchecksum 43ab876f14fa2f920741f26252b852e5d579e9394efa1d5e00753f23365b62192293aa48850275c2aeadfebae4c2f8e0a929d4459c5feecedd7176514dbdcc9f +srcfiles size=24 RELOC/source/latex/limecv/limecv.dtx RELOC/source/latex/limecv/limecv.ins -runfiles size=10 +runfiles size=11 RELOC/tex/latex/limecv/limecv.cls catalogue-contact-bugs https://github.com/opieters/limecv/issues catalogue-contact-home https://olivierpieters.be/projects/limecv @@ -178569,11 +186927,11 @@ catalogue-contact-repository https://github.com/opieters/limecv catalogue-ctan /macros/latex/contrib/limecv catalogue-license lppl1.3c catalogue-topics cv class -catalogue-version 0.1.8 +catalogue-version 0.1.12 -name linearA +name lineara category Package -revision 15878 +revision 63169 shortdesc Linear A script fonts relocated 1 longdesc The linearA package provides a simple interface to two fonts @@ -178583,31 +186941,59 @@ longdesc "texts" using modern typographic technology. Note that the longdesc Linear A script has not been deciphered yet and probably never longdesc will be deciphered. execute addMap linearA.map -containersize 151816 -containerchecksum 5fc18101f389b2576b8e035e2f3bc79a37c11cdd64783df288f7776d1dc99ebc5c56a61d727de2dc57a9af4a4d0634b5ec6564513aea369fb1c8e4ce4eb407b5 -doccontainersize 165064 -doccontainerchecksum ca6749644b81bd4e6407acf0ea99f2de57a408b8fd332725dc8319888ae05e8e27cec2c3201c49e51f2cab22221ebabd8f980c627c7ce9f836bff2cb0a2cd575 +containersize 151824 +containerchecksum b87051ba4647ed2f0beb8e5bfe8419d8558421f509cb6eaa931f47a10488dfac4e36b3ece1cfdbf3e46eb431c3d15e7a7005f27522dbc4cfe6de52ce6127bea5 +doccontainersize 165068 +doccontainerchecksum 4c87a47d08606416e5d6605edb3a89bb3a67babcc621dd28b8ca02bfcb5ba6108e56e76fc166ff0d6a54c058459acfc8ee6b46d49309d6333d13305d00d3179a docfiles size=47 - RELOC/doc/fonts/linearA/README details="Readme" - RELOC/doc/fonts/linearA/linearA_glyphs.pdf details="Font samples" -srccontainersize 3804 -srccontainerchecksum ffbf77f9c3f97acc3bed0445dc3d7c92b9d4cd095e117a2f9ff1ba54cc1c3f96c734c1d22951fd520a194ca3f385504db06821a0797a4394079fb221d650fb7e + RELOC/doc/fonts/lineara/README details="Readme" + RELOC/doc/fonts/lineara/linearA_glyphs.pdf details="Font samples" +srccontainersize 3820 +srccontainerchecksum 6476de5673f0e0f4896b0f579bd37e31c7301916dff1de1a957044b7782c04c43b5b5add887960d1a7013648a7e352d2655bd9a8e57dd0cafd31c851cef5f21e srcfiles size=8 - RELOC/source/fonts/linearA/linearA.dtx - RELOC/source/fonts/linearA/linearA.ins + RELOC/source/fonts/lineara/linearA.dtx + RELOC/source/fonts/lineara/linearA.ins runfiles size=53 - RELOC/fonts/afm/public/linearA/LinearA.afm - RELOC/fonts/afm/public/linearA/LinearACmplxSigns.afm - RELOC/fonts/map/dvips/linearA/linearA.map - RELOC/fonts/tfm/public/linearA/LinearA.tfm - RELOC/fonts/tfm/public/linearA/LinearACmplxSigns.tfm - RELOC/fonts/type1/public/linearA/LinearA.pfb - RELOC/fonts/type1/public/linearA/LinearACmplxSigns.pfb - RELOC/tex/latex/linearA/linearA.sty + RELOC/fonts/afm/public/lineara/LinearA.afm + RELOC/fonts/afm/public/lineara/LinearACmplxSigns.afm + RELOC/fonts/map/dvips/lineara/linearA.map + RELOC/fonts/tfm/public/lineara/LinearA.tfm + RELOC/fonts/tfm/public/lineara/LinearACmplxSigns.tfm + RELOC/fonts/type1/public/lineara/LinearA.pfb + RELOC/fonts/type1/public/lineara/LinearACmplxSigns.pfb + RELOC/tex/latex/lineara/linearA.sty catalogue-ctan /fonts/archaic/linearA catalogue-license lppl catalogue-topics font font-type1 font-archaic +name linebreaker +category Package +revision 66461 +shortdesc Prevent overflow boxes with LuaLaTeX +relocated 1 +longdesc This package tries to prevent overflow lines in paragraphs or +longdesc boxes. It changes LuaTeX's \linebreak callback and re-typesets +longdesc the paragraph with increased values of \tolerance and +longdesc \emergencystretch until the overflow no longer happens. If that +longdesc doesn't help, it chooses the solution with the lowest badness. +containersize 6244 +containerchecksum abcff4d08f73b506bc63cdb7fe28f4f2000a5f2182211ded6c8037828d6327ea8239ec29327e5e8f55f3dfec526aa3a59b3c977c7efa3a88112c7aa60c128b10 +doccontainersize 51468 +doccontainerchecksum 63d6ef9f5f4aee385455bb9deb67d327b42f49948160a4cccd1dc952c6bdb225fbee9c2d00fb2dfd5c933e32284162828102d76579f8035974abd25e301b6812 +docfiles size=16 + RELOC/doc/lualatex/linebreaker/README.md details="Readme" + RELOC/doc/lualatex/linebreaker/linebreaker-doc.pdf details="Package documentation" + RELOC/doc/lualatex/linebreaker/linebreaker-doc.tex +runfiles size=6 + RELOC/tex/lualatex/linebreaker/linebreaker.lua + RELOC/tex/lualatex/linebreaker/linebreaker.sty +catalogue-contact-bugs https://github.com/michal-h21/linebreaker/issues +catalogue-contact-repository https://github.com/michal-h21/linebreaker +catalogue-ctan /macros/luatex/latex/linebreaker +catalogue-license lppl1.3 +catalogue-topics luatex micro-layout expl3 +catalogue-version 0.1b + name linegoal category Package revision 21523 @@ -178643,46 +187029,45 @@ catalogue-version 2.9 name lineno category Package -revision 57866 +revision 65586 shortdesc Line numbers on paragraphs relocated 1 longdesc Adds line numbers to selected paragraphs with reference longdesc possible through the LaTeX \ref and \pageref cross reference longdesc mechanism. Line numbering may be extended to footnote lines, longdesc using the fnlineno package. -containersize 62292 -containerchecksum be1b8112411650d579727b5f30b0f9cd2d716b43ef5039b6ebfdf6cd6f5b39d948dddb7f41531a91fc5df4bdfc51d2182d2bb99f1c22e3a88cb54d3364dcc5fc -doccontainersize 649996 -doccontainerchecksum 440a8d04ffb923991699c23cae01ac2c5bc5a050c9fe66c3893d50db2138b7b204ca649303be244a03cff46f9ab19750ea1f5233fb24c7918e631fd72baf827c -docfiles size=218 +containersize 62148 +containerchecksum c1a1ed8480634176c2b375550ddac8d50581d3d3bbd93c98ac9ede07b6289937462d99d35b59cad9bd11f64f14fbefd10043027443c7a8d8e65d370e9bd44dbc +doccontainersize 835372 +doccontainerchecksum 9bd671d949d10e3b5170ac3b2afaa9cd42639ccbe152e34a1717d881a200da290c63a7edf7832f88cbd53be700fb7e668582002e1da9f0bf934cfd5991887629 +docfiles size=286 RELOC/doc/latex/lineno/CHANGEs.txt RELOC/doc/latex/lineno/COPYING.txt - RELOC/doc/latex/lineno/README - RELOC/doc/latex/lineno/README.txt details="Readme" + RELOC/doc/latex/lineno/README.md details="Readme" RELOC/doc/latex/lineno/SRCFILEs.txt RELOC/doc/latex/lineno/fnlineno.pdf - RELOC/doc/latex/lineno/lineno.pdf details="Package documentation:" + RELOC/doc/latex/lineno/fnlineno.tex + RELOC/doc/latex/lineno/lineno.pdf details="Package documentation" + RELOC/doc/latex/lineno/lineno.tex + RELOC/doc/latex/lineno/linenoamsmathdemo.pdf + RELOC/doc/latex/lineno/linenoamsmathdemo.tex RELOC/doc/latex/lineno/lnosuppl.pdf details="Supplementary files as PDF" - RELOC/doc/latex/lineno/ulineno.pdf details="User manual:" -srccontainersize 44284 -srccontainerchecksum 919c0b2b98257ab3106bbecd3c25c35c723e9d4105cef3cdc8dec0fde81fb82b9da7f53de81971a1ffd9f7d1d8b6f90bf2ba7035b88e0ade1bf9d04227d21ed0 -srcfiles size=40 - RELOC/source/latex/lineno/fnlineno.tex - RELOC/source/latex/lineno/lineno.tex - RELOC/source/latex/lineno/lnosuppl.tex - RELOC/source/latex/lineno/ulineno.tex -runfiles size=60 + RELOC/doc/latex/lineno/lnosuppl.tex + RELOC/doc/latex/lineno/ulineno.pdf details="User manual" + RELOC/doc/latex/lineno/ulineno.tex +runfiles size=59 RELOC/tex/latex/lineno/ednmath0.sty RELOC/tex/latex/lineno/edtable.sty RELOC/tex/latex/lineno/fnlineno.sty RELOC/tex/latex/lineno/lineno.sty RELOC/tex/latex/lineno/vplref.sty catalogue-also numline edmac ledmac ednotes manyfoot poemscol -catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html +catalogue-contact-bugs https://github.com/latex-lineno/lineno/issues +catalogue-contact-repository https://github.com/latex-lineno/lineno catalogue-ctan /macros/latex/contrib/lineno -catalogue-license lppl +catalogue-license lppl1.3a catalogue-topics typesetting line-nos -catalogue-version 4.41 +catalogue-version 5.1 name ling-macros category Package @@ -178739,23 +187124,27 @@ catalogue-version 4.3 name linguisticspro category Package -revision 54512 +revision 64858 shortdesc LinguisticsPro fonts with LaTeX support relocated 1 longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the LinguisticsPro family of fonts. This family is longdesc derived from the Utopia Nova font family, by Andreas Nolda. execute addMap LinguisticsPro.map -containersize 1395864 -containerchecksum 62085ea970d1cebc752cc5dab4b84487bd99e0e99fd48a2effa44fe9ae0bb86aa91966fd81639aea7d4364d3c3d97046affcf2693d8b4be8fa016e91014604c5 -doccontainersize 42252 -doccontainerchecksum 4ece804238885fb37505222218c92c923804d032e5e150de3cfadc62f0eec73e8acc47600ddc4d5af0f7bacf9f54254b6ead43a3f4a084aeb40dfe95b53d2965 -docfiles size=14 +containersize 1377940 +containerchecksum 6bf94e8910ae03314a3ff55157e52586b5f2550c2aaca1a8989b1f02400c87363c74e00658ee953c13a44dd69cb253bda6128e66a96b865e6169310165a7f9e4 +doccontainersize 46052 +doccontainerchecksum 8f0c8937cacdec2e2ea4999dd1bb45af96a99a3707ef22b54a2bf1e0c745d663550ff0b68d80cf895e8bdfa1f279873c4725c7851af547f06155589d8e5bfde5 +docfiles size=21 + RELOC/doc/fonts/linguisticspro/COPYING.txt + RELOC/doc/fonts/linguisticspro/ChangeLog.txt + RELOC/doc/fonts/linguisticspro/LICENSE-utopia.txt RELOC/doc/fonts/linguisticspro/README details="Readme" + RELOC/doc/fonts/linguisticspro/README.txt RELOC/doc/fonts/linguisticspro/SILOpenFontLicense.txt RELOC/doc/fonts/linguisticspro/linguisticspro-samples.pdf details="Package documentation" RELOC/doc/fonts/linguisticspro/linguisticspro-samples.tex -runfiles size=697 +runfiles size=696 RELOC/fonts/enc/dvips/linguisticspro/lnpr_2dchsz.enc RELOC/fonts/enc/dvips/linguisticspro/lnpr_2io6ub.enc RELOC/fonts/enc/dvips/linguisticspro/lnpr_2mzpfv.enc @@ -179075,27 +187464,33 @@ catalogue-version 0.30 name lipsum category Package -revision 58123 -shortdesc Easy access to the Lorem Ipsum dummy text -relocated 1 -longdesc This package gives you easy access to the Lorem Ipsum dummy -longdesc text; an option is available to separate the paragraphs of the -longdesc dummy text into TeX-paragraphs. All the paragraphs are taken -longdesc with permission from http://lipsum.com/. -containersize 75536 -containerchecksum 6d93dbb16d94f7aa199e59b85096583a9e8e7a07b107bbfe1e0be7615717c29d94ecfd308c4adf462062251adb03b171a332cd688425f6854ce442c390c47396 -doccontainersize 808520 -doccontainerchecksum 6d7e7f8037cebffac9a3725b5a7b32eefcb458ebd86cbc9b0380d05d2b1926c3a70e7032629ffd4bede5102c3a36d84e1b2bd21d2b7f9b3e9c642390822fbffa -docfiles size=200 +revision 60561 +shortdesc Easy access to the Lorem Ipsum and other dummy texts +relocated 1 +longdesc This package gives you easy access to 150 paragraphs of the +longdesc Lorem Ipsum dummy text provided by https://lipsum.com, plus a +longdesc growing list of other dummy texts in different languages. +containersize 125324 +containerchecksum 24697be378aa490bf71194c8622400c11e27d5c6549caf2362250017ac97b4443986a4ad5f8d2d96aa53cfd7bcf5cd7ada0e1ddbbbfd27135e2a23bbad21563a +doccontainersize 757020 +doccontainerchecksum ce44b2d4acab295bdcb2d0edcefedea449c4dae7cc4c0d62ef73e36169b0858863003bec1575000bfb78b1ecd9e5413807a89bc464b5d173f05a43313c7a22de +docfiles size=244 + RELOC/doc/latex/lipsum/CHANGELOG.md + RELOC/doc/latex/lipsum/DEPENDS.txt + RELOC/doc/latex/lipsum/README.md RELOC/doc/latex/lipsum/README.txt details="Readme" + RELOC/doc/latex/lipsum/lipsum-cicero.txt + RELOC/doc/latex/lipsum/lipsum-cs.txt + RELOC/doc/latex/lipsum/lipsum-la.txt RELOC/doc/latex/lipsum/lipsum.pdf details="Package documentation" -srccontainersize 86992 -srccontainerchecksum b2f55edabef986f5e792509c6db58f89f2bfc816cb07968e21f49308df4fb37836798f28d84a91b6020b6003b441e697800c2087b9e3549b2dee3cd1a393c5f2 -srcfiles size=77 +srccontainersize 17004 +srccontainerchecksum 5984bb97fbecbecb5aaf26f788a6879682f6ec39c87e01c834533a779384b20ad02f1825cf5c2339b288cc61ed716eb3a76e51c45ccf80849b4434132e0c4081 +srcfiles size=16 RELOC/source/latex/lipsum/lipsum.dtx RELOC/source/latex/lipsum/lipsum.ins -runfiles size=65 +runfiles size=88 RELOC/tex/latex/lipsum/cicero.ltd.tex + RELOC/tex/latex/lipsum/lipsum-cs.ltd.tex RELOC/tex/latex/lipsum/lipsum.ltd.tex RELOC/tex/latex/lipsum/lipsum.sty catalogue-also blindtext kantlipsum @@ -179103,8 +187498,8 @@ catalogue-contact-bugs https://github.com/PhelypeOleinik/lipsum/issues catalogue-contact-repository https://github.com/PhelypeOleinik/lipsum catalogue-ctan /macros/latex/contrib/lipsum catalogue-license lppl1.3 -catalogue-topics macro-supp dummy-gen -catalogue-version 2.3 +catalogue-topics macro-supp dummy-gen multilingual expl3 +catalogue-version 2.7 name lisp-on-tex category Package @@ -179221,15 +187616,6 @@ containerchecksum b19ca72dd2069f64a48c7bdaca8c32c83569ddf7081cfdb66ce362545130cb binfiles arch=armhf-linux size=1 bin/armhf-linux/listbib -name listbib.i386-cygwin -category Package -revision 26126 -shortdesc i386-cygwin files of listbib -containersize 336 -containerchecksum 1df42825226c3f3ac8fed15a36b35b3d22c9db086978242cbcb78227c970c58eeacb3d35eedf51bf3fddeb8dfa5b5c31383f47970087998d28a02a95b69097ed -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/listbib - name listbib.i386-freebsd category Package revision 26126 @@ -179275,14 +187661,14 @@ containerchecksum bf423fa0219ca6c6f156aa9c1cf6c815234e3d72180185eaba4b786757d062 binfiles arch=universal-darwin size=1 bin/universal-darwin/listbib -name listbib.win32 +name listbib.windows category Package -revision 26126 -shortdesc win32 files of listbib -containersize 684 -containerchecksum 3560ce0556b5a8f066a8975373e68cbc9ea1d611002e32f23994acacc27e60c6a3481af035bb2c01625150417f7dc7e826360ed0fd5311613ffe7d50bdb1f32f -binfiles arch=win32 size=1 - bin/win32/listbib.exe +revision 65891 +shortdesc windows files of listbib +containersize 2308 +containerchecksum c654f00097948aaa19675e73d28976f5d80e47285c6f1961c3657b5c07c9c472edc4614ccd40d1a5d67070c6e9c924e7a224223ab84739a55ee7cd66c9a16e31 +binfiles arch=windows size=2 + bin/windows/listbib.exe name listbib.x86_64-cygwin category Package @@ -179358,7 +187744,7 @@ catalogue-version 1.2 name listings category Package -revision 55265 +revision 66222 shortdesc Typeset source code listings using LaTeX relocated 1 longdesc The package enables the user to typeset programs (programming @@ -179375,25 +187761,25 @@ longdesc the form appropriate for the current language. Short (in-line) longdesc listings are also available, using either \lstinline|...| or longdesc |...| (after defining the | token with the \lstMakeShortInline longdesc command). -containersize 146224 -containerchecksum b9e3dc1a3394305803007927e2b9d446801d59bb7b8a62d4fa757b7d42b56c27dcf9ebaf6ee1fb1e7d8e437182df9fbbbcbd7ceb8f42db7d1999cbcd6b9d6f6e -doccontainersize 2163008 -doccontainerchecksum 0a19a7148ec9f902e7eccb3d65724db899e030d326dd0291ed9fd15a540dcf4e3e61a15576fbb16ebb6736751b484356aa78785108aae44f866de97f56d34b09 -docfiles size=604 +containersize 146488 +containerchecksum df4fb8780bd7df309c2ccb7df362a160d42ac4eb0792880fd3fb2a71d001476f69c23edaee9427262a13f40f03ce7a9d34cf2536be862d8c835a746b85a80012 +doccontainersize 2750172 +doccontainerchecksum 3bc05e775a0d1d8af4af52080328474a7ad97c06c06480dd9333d6007e1d43bdcee8d8315343e6249414ae48c8060c139bb0d6da0aeff073e675c10760d5f87e +docfiles size=793 RELOC/doc/latex/listings/README details="Package Readme" RELOC/doc/latex/listings/listings-devel.pdf RELOC/doc/latex/listings/listings.pdf details="Package documentation" RELOC/doc/latex/listings/lstdrvrs.pdf details="Language drivers details" -srccontainersize 267480 -srccontainerchecksum be76355265cfb208ca069d79ae598fd317b6fe3cc1d81f0ce02e4154e3c03c2b298ec91e8e95cede3a8bf301ae1b6156cb42740e38e138c66b451f561ea49073 -srcfiles size=275 +srccontainersize 269456 +srccontainerchecksum 12525a3fcea496b6b092236c7441090a4614085bcef7fc6fa670b5f905aba37116f7e4e1575ad2880b1514a67b9fad7bdb1bbf39ad97105e857d03805546ae3d +srcfiles size=276 RELOC/source/latex/listings/Makefile RELOC/source/latex/listings/listings.dtx RELOC/source/latex/listings/listings.ins RELOC/source/latex/listings/lstdrvrs.dtx RELOC/source/latex/listings/lstdrvrs.ins RELOC/source/latex/listings/ltxdoc.cfg -runfiles size=145 +runfiles size=146 RELOC/tex/latex/listings/listings-acm.prf RELOC/tex/latex/listings/listings-bash.prf RELOC/tex/latex/listings/listings-fortran.prf @@ -179411,7 +187797,7 @@ catalogue-also listing catalogue-ctan /macros/latex/contrib/listings catalogue-license lppl1.3c catalogue-topics listing synt-hlt macro-demo -catalogue-version 1.8d +catalogue-version 1.9 name listings-ext category Package @@ -179496,15 +187882,6 @@ containerchecksum ccf346eccda0dbaaf893accd61f362fdfcafbe9dfbb34535cd8f7a2c72456b binfiles arch=armhf-linux size=1 bin/armhf-linux/listings-ext.sh -name listings-ext.i386-cygwin -category Package -revision 15093 -shortdesc i386-cygwin files of listings-ext -containersize 344 -containerchecksum ef158c9ae28ee5c32268bb332b6d14907fa3aa34e9f458b667720713f0a76e374ef1ac72d46189649a1f8129b0ad05017b8a8b683d85290f6bcee12c3bdd5bed -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/listings-ext.sh - name listings-ext.i386-freebsd category Package revision 16472 @@ -179761,27 +188138,28 @@ catalogue-version 0.2 name lithuanian category Package -revision 46039 +revision 66461 shortdesc Lithuanian language support relocated 1 -longdesc This language support package provides: Lithuanian adds for -longdesc Babel: lithuanian.ldf lithuanian.sty Lithuanian TeX fonts for -longdesc URW family map, enc, fd, tfm extra code page definitions for -longdesc inputenc: cp772, cp774, cp775, cpKBL, cpRIM +longdesc This language support package provides: extra 8-bit encoding +longdesc L7x used by fontenc: l7xenc.def, l7xenc.dfu, l7xenc.sty +longdesc Lithuanian TeX support for URW family Type1 fonts: map, fd, tfm +longdesc with L7x encoding extra code page definitions used by inputenc: +longdesc cp775.def, latin7.def execute addMap l7x-urwvn.map -containersize 67136 -containerchecksum 228fa0f588bb0293778a71a910401575e20aaa8a184d54d51dcf1bebc8bb6b0c0ea81cb1d3e0f2d36b6a0abf830dbd328caa6053fca7f40a83bb292f76b83918 -doccontainersize 55944 -doccontainerchecksum e4b01bf2174854d95f348caeb5e5b88ec436420178eb06a78cb9157bad23bcd34584e9bde451e3963f4de59e66162820f9487ca4d166b2bd898b2cef17e63ee4 +containersize 64828 +containerchecksum c2cd1b54daf74e78e6087159fa827ece77f2dc835eda81e03fce861581e812536292f3f0b70b8bb77107c0a4032d12006e870303156a3f3c7cb653020ed9b97c +doccontainersize 56116 +doccontainerchecksum ae7a5e3bea2bd62a0cdbbfbde7e0d9e06554fa4b3bb825b45febed42556fa101fd2e6c611ad9fc1cc87ed5c92540977780fde47ae78a89dd37b70f89c94b5e8d docfiles size=25 RELOC/doc/latex/lithuanian/COPYING RELOC/doc/latex/lithuanian/ChangeLog RELOC/doc/latex/lithuanian/Copyright - RELOC/doc/latex/lithuanian/README details="Readme" + RELOC/doc/latex/lithuanian/README.md details="Readme" RELOC/doc/latex/lithuanian/latin7x.pdf RELOC/doc/latex/lithuanian/testlt-urw.tex RELOC/doc/latex/lithuanian/testlt.tex -runfiles size=98 +runfiles size=87 RELOC/fonts/enc/dvips/lithuanian/latin7x.enc RELOC/fonts/map/dvips/lithuanian/l7x-urwvn.map RELOC/fonts/tfm/public/lithuanian/l7x-uagd.tfm @@ -179817,11 +188195,7 @@ runfiles size=98 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 @@ -179834,8 +188208,6 @@ runfiles size=98 RELOC/tex/latex/lithuanian/l7xutm.fd RELOC/tex/latex/lithuanian/l7xuzc.fd RELOC/tex/latex/lithuanian/latin7.def - RELOC/tex/latex/lithuanian/lithuanian.ldf - RELOC/tex/latex/lithuanian/lithuanian.sty catalogue-ctan /language/lithuanian catalogue-license lppl1.3c catalogue-topics lithuanian font-proc font-supp @@ -179891,9 +188263,36 @@ catalogue-license gpl catalogue-topics logic catalogue-version 3.1 +name llncs +category Package +revision 64299 +shortdesc Document class and bibliography style for Lecture Notes in Computer Science (LNCS) +relocated 1 +longdesc This is Springer's official macro package for typesetting +longdesc contributions to be published in Springer's Lecture Notes in +longdesc Computer Science (LNCS) and its related proceedings series +longdesc CCIS, LNBIP, LNICST, and IFIP AICT. +containersize 16476 +containerchecksum 76371faeebdde62b5444dadd7c08b5fd6fcfbc9fb57dfb5a29ad63760bcd692115e206458adfd13e2f16ac24713e128e7905194ecca369568b662c78aa6cea48 +doccontainersize 209032 +doccontainerchecksum 63b67674403e67e7f019fdfa09f3859bd1a6da5cdb93bf68321a441c9fda1db026ff64e0a3a15dad1f7b27b4fe8f7f4a086eccff88a282133d825dcdd6d11d25 +docfiles size=65 + RELOC/doc/latex/llncs/README.md details="Readme" + RELOC/doc/latex/llncs/history.txt + RELOC/doc/latex/llncs/llncsdoc.pdf details="Package documentation" + RELOC/doc/latex/llncs/llncsdoc.tex +runfiles size=19 + RELOC/bibtex/bst/llncs/splncs04.bst + RELOC/tex/latex/llncs/llncs.cls +catalogue-contact-home https://www.springer.com/gp/computer-science/lncs +catalogue-ctan /macros/latex/contrib/llncs +catalogue-license cc-by-4 +catalogue-topics journalpub +catalogue-version 2.22 + name llncsconf category Package -revision 55117 +revision 63136 shortdesc LaTeX package extending Springer's llncs class relocated 1 longdesc The package extends Springer's llncs class for adding @@ -179902,16 +188301,25 @@ longdesc accepted) as well as for creating author-archived versions that longdesc include the references to the official version hosted by longdesc Springer (as requested by the copyright transfer agreement for longdesc Springer's LNCS series). -containersize 2188 -containerchecksum 76531fdf2031c7442ce0ea5f63e6f625a976b6949e6758ad77b19a0c50b9dda01244949b32297815137cf40f4697faf3264f1f972952d89559b0c37c21493b7e -doccontainersize 126308 -doccontainerchecksum bbe6f93431219ff18bc2aafa423337fd5017aeaacb91c14897c950b7eafcfe3e124b8403cdb66bc89a34537f1b1e79dfee73cf971767024772b8a47d647b8588 -docfiles size=35 +containersize 2284 +containerchecksum ded1d0ad62120e6665653575e6641a9bacb1fdd18b168f7c4389e2d8bbca6afa8cf15bbb7cf087f2ba502f85bb492dfd5d79862e03d909227666af7d8860d47f +doccontainersize 269964 +doccontainerchecksum 1fc61aab273b9ba1ffaa95cc2716f36d61bc5d7d7c03a2470e3dff5fbee20dda933e4a38e5b39a7e165f68408f993de693ba5547b673e9faa9e5115358c9bfb6 +docfiles size=323 RELOC/doc/latex/llncsconf/CHANGELOG.md RELOC/doc/latex/llncsconf/LICENSE RELOC/doc/latex/llncsconf/README.md details="Readme" - RELOC/doc/latex/llncsconf/example.pdf details="Package documentation" - RELOC/doc/latex/llncsconf/example.tex + RELOC/doc/latex/llncsconf/example/example.tex + RELOC/doc/latex/llncsconf/example/example_accepted_crop.pdf details="Example of use" + RELOC/doc/latex/llncsconf/example/example_accepted_nocrop.pdf + RELOC/doc/latex/llncsconf/example/example_intended_crop.pdf + RELOC/doc/latex/llncsconf/example/example_intended_nocrop.pdf + RELOC/doc/latex/llncsconf/example/example_llncs_crop.pdf + RELOC/doc/latex/llncsconf/example/example_llncs_nocrop.pdf + RELOC/doc/latex/llncsconf/example/example_proceedings_crop.pdf + RELOC/doc/latex/llncsconf/example/example_proceedings_nocrop.pdf + RELOC/doc/latex/llncsconf/example/example_submitted_crop.pdf + RELOC/doc/latex/llncsconf/example/example_submitted_nocrop.pdf runfiles size=2 RELOC/tex/latex/llncsconf/llncsconf.sty catalogue-contact-bugs https://github.com/adbrucker/llncsconf/issues @@ -179919,11 +188327,11 @@ catalogue-contact-repository https://github.com/adbrucker/llncsconf catalogue-ctan /macros/latex/contrib/llncsconf catalogue-license lppl1.3c catalogue-topics journalpub archival -catalogue-version 1.1.0 +catalogue-version 1.2.0 name lm category Package -revision 58637 +revision 65956 shortdesc Latin modern fonts in outline formats relocated 1 longdesc The Latin Modern family of fonts consists of 72 text fonts and @@ -179938,15 +188346,16 @@ longdesc (qx-*.tfm); TeX'n'ANSI aka LY1 encoding (texnansi-*.tfm); T5 longdesc (Vietnamese) encoding (t5-*.tfm); and Text Companion for EC longdesc fonts aka TS1 (ts1-*.tfm). execute addMap lm.map -containersize 11944788 -containerchecksum d758e51742787410416bfa4ea4e32951484435b977c9ea3bc7ce51d919ec4d28b2ade387d3b1129f034aeb41db481bf72729fca5d24177e65d2719200798febb -doccontainersize 1630432 -doccontainerchecksum c8d6d05ee42d060505ecbdc3e4a5e1d0e6e3c5e919fb4be04162b45723abf697f629d412f359b6d205013d5716f575bfc4d6a7dc115fad05ab47d12ac0dafe5b -docfiles size=657 +containersize 11944808 +containerchecksum 3539ed5b82a1722e6aa1d0ded3b589a39d0d3f0db12069ef160e570b69f7750bc9b2997c167617ac085772377d5ce624e9d5ac2a6563d96f486fba16037c5ac5 +doccontainersize 2511620 +doccontainerchecksum 32bd34845a4f1dc011db635b036504a5488734802e9d2bb6780981e71a16cfb464ea98bd1a92a85ff8ba90159ef95b8954b05d5c8f0ac0e1ce8ff468feb7c891 +docfiles size=883 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-src.zip RELOC/doc/fonts/lm/lm-info.pdf RELOC/doc/fonts/lm/tstlmot1.pdf RELOC/doc/fonts/lm/tstlmot1.tex @@ -181037,6 +189446,7 @@ runfiles size=10645 RELOC/tex/latex/lm/ts1lmssq.fd RELOC/tex/latex/lm/ts1lmtt.fd RELOC/tex/latex/lm/ts1lmvtt.fd +catalogue-alias lmodern catalogue-contact-home http://www.gust.org.pl/projects/e-foundry/latin-modern catalogue-ctan /fonts/lm catalogue-license gfl @@ -181146,7 +189556,7 @@ catalogue-version 1.7 name lobster2 category Package -revision 56019 +revision 64442 shortdesc Lobster Two fonts, with support for all LaTeX engines relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -181155,11 +189565,11 @@ longdesc Impallari. This is a family of script fonts with many ligatures longdesc and terminal forms; for the best results, use XeLaTeX or longdesc LuaLaTeX. There are two weights and italic variants for both. execute addMap LobsterTwo.map -containersize 514092 -containerchecksum d104589256496cab2cd55625f9ea252d21971eb2bb97ec91a9515ea8fd8d749ad02d1234c16bc3bd378f2a509df510951fc2764a73d839d982b630505ef44041 -doccontainersize 100416 -doccontainerchecksum 330f73cbc97686cb1ed53dc2c66424cbdc62b5728790b7fc1256ee8b858d991fcd897fa47c9bd6c0fa9979ef13a2b47e004c61d06a52e88b487e394fc0de0b84 -docfiles size=28 +containersize 514076 +containerchecksum ff9a64e40eb1e8d19ed353e4c6e46472f48eaa057a1283e8203eafd895cc622c031a849cf2cd941a664b07c4acc0e9fa18ca65acf6420cb3d40ce09c6ab6f391 +doccontainersize 104572 +doccontainerchecksum a02034161dcd7d09ab14d907fde0b4cbc570ee7e13fc1945e18c71eaffe90e5dc039266f0ac83dd7887fa1e298add0d2be9e4259cb58f6dbfe13b7bce228ab8c +docfiles size=29 RELOC/doc/fonts/lobster2/OFL.txt RELOC/doc/fonts/lobster2/README details="Readme" RELOC/doc/fonts/lobster2/lobster2-samples.pdf details="Package documentation" @@ -181447,18 +189857,18 @@ catalogue-version 2.5 name logix category Package -revision 57457 +revision 63688 shortdesc Supplement to the Unicode math symbols relocated 1 longdesc The package provides a Unicode font with over 4,000 symbols to longdesc supplement the Unicode math symbols. It is compatible with and longdesc complements the AMS STIX2 math fonts, but focuses on new longdesc symbols and symbol variants more suited to work in logic. -containersize 2090608 -containerchecksum fc499a8c77e2d3a285888ee01837c88077906fc57ac73223f5887796e0f32bf4179b5b2df1a87d4535b59137ca12b6dc9ac1f9084dbd158b038ae622aca92eb9 -doccontainersize 1211856 -doccontainerchecksum b483c80466b883cbc56fdc5807420b01ee5c720d262908d0ec5bd9b61a51a15be5e1de90097026b1d2e87b54d19cf3dcafec33b5d8075edff46f2b4a6bfb6bb6 -docfiles size=1597 +containersize 2343812 +containerchecksum 29a2701ae91a5d7fec49e564b90b8a7e31374d2218680f4fa0c65c9df6dadae78c6599977e88cbf293fe2435d8b7403f41748abfb1cd5f9b00e94c76ff43e139 +doccontainersize 960252 +doccontainerchecksum 7b655c727fdb2775a0d980bc54198d1b2c262842fb278f94caa764204022f8da4bdfef8e40a8560359e6fef23e28aa97da4c08a44c80140ed337010d47173eed +docfiles size=949 RELOC/doc/fonts/logix/CHANGELOG RELOC/doc/fonts/logix/README details="Readme" RELOC/doc/fonts/logix/logix.math @@ -181466,7 +189876,7 @@ docfiles size=1597 RELOC/doc/fonts/logix/logix.tex RELOC/doc/fonts/logix/logix.vfc RELOC/doc/fonts/logix/logixMono.vfc -runfiles size=831 +runfiles size=979 RELOC/fonts/opentype/public/logix/logix.eot RELOC/fonts/opentype/public/logix/logix.otf RELOC/fonts/opentype/public/logix/logix.woff @@ -181481,7 +189891,7 @@ runfiles size=831 catalogue-ctan /fonts/logix catalogue-license ofl lppl1.3c catalogue-topics font font-maths font-symbol-maths font-otf font-ttf font-supp logic -catalogue-version 1.08 +catalogue-version 1.13 name logpap category Package @@ -181657,15 +190067,6 @@ containerchecksum dc1d8af1f8ffd5a4dbe56b89845f99cf1b0ea384f53f42ec84edf313340122 binfiles arch=armhf-linux size=1 bin/armhf-linux/lollipop -name lollipop.i386-cygwin -category Package -revision 41465 -shortdesc i386-cygwin files of lollipop -containersize 324 -containerchecksum 2247ebd3a3ecca18db6c8565bfa8d6172b0de35645edb640f679fe1f974efa0036a3915a176b8d7c5105999fa6fd3889c10a473ed7b013bb0b0650b912aed840 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/lollipop - name lollipop.i386-freebsd category Package revision 41465 @@ -181711,14 +190112,14 @@ containerchecksum 74dd6244a1cd92656f60bd152a099fb455e4f0381ddb3a9306dd25c7b9576a binfiles arch=universal-darwin size=1 bin/universal-darwin/lollipop -name lollipop.win32 +name lollipop.windows category Package -revision 57883 -shortdesc win32 files of lollipop -containersize 864 -containerchecksum 1866c633d511d6272a4ccd2e3e46360294d0fa555a7d2060b07d52ce732bd06e510f0a95f34e481ba39378f4878d8c2a219b7cb19508250042a4c0b4d3b2bf1b -binfiles arch=win32 size=1 - bin/win32/lollipop.exe +revision 65891 +shortdesc windows files of lollipop +containersize 2340 +containerchecksum 7095439f35de0482a4b8b32684f1654af37c1dbd67c432e4dd295ada9cf63b2bca9c9573de9344fd5215ba17aa4e8763313b631f844ab7df56d969c7a19451f9 +binfiles arch=windows size=2 + bin/windows/lollipop.exe name lollipop.x86_64-cygwin category Package @@ -181767,7 +190168,7 @@ binfiles arch=x86_64-solaris size=1 name longdivision category Package -revision 55117 +revision 59979 shortdesc Typesets long division relocated 1 longdesc This package executes the long division algorithm and typesets @@ -181784,11 +190185,11 @@ longdesc zero, or it encounters a repeated remainder. \intlongdivision longdesc stops when the dividend stops (though the dividend doesn't have longdesc to be an integer). This package depends on the xparse package longdesc from the l3packages bundle. -containersize 10680 -containerchecksum 13595c314837df4581f424d753b4afdba62f7d9c4ab4d43d1b756d18ace7cd5a53cb7783366c0e07d237333d5b5eb9e85a91d1041055707cdd7de225d748080d -doccontainersize 141716 -doccontainerchecksum 71f18b1f4f87def00c504b2dd67e8f7c2d9510f3f2459e8dbf1380948e501eb9b2ba4badaa6cfd2cb6440a0c6d0c9bb048c21664e6b37f85cd49c6a8a0a39d86 -docfiles size=43 +containersize 10532 +containerchecksum d489df0f5ad27cd8755d8387ac4b5ec0f0091e9d27611a7f4810e145dbafdd95cc4c14f6cbdd9843e1e4251fb0d31cd3332657c50d1fac4d17eeed1183aa8aa5 +doccontainersize 143596 +doccontainerchecksum dd45e2dd888c7bafe5311cb8a541c0eb7c31661da9d69223f69852b022092501f936d9823395c5b7fc7f914233ad4cea32b2803730f976e687bc7a9bc7c74069 +docfiles size=42 RELOC/doc/latex/longdivision/README.md details="Readme" RELOC/doc/latex/longdivision/longdivision_manual.pdf details="Package documentation" RELOC/doc/latex/longdivision/longdivision_manual.tex @@ -181799,7 +190200,7 @@ catalogue-contact-repository https://github.com/hoodmane/longdivision catalogue-ctan /macros/latex/contrib/longdivision catalogue-license lppl catalogue-topics maths arithmetic expl3 -catalogue-version 1.2.0 +catalogue-version 1.2.1 name longfbox category Package @@ -181908,6 +190309,39 @@ catalogue-license lppl1.3 catalogue-topics list-supp macro-supp csv-support catalogue-version 1.3 +name lparse +category Package +revision 65693 +shortdesc A Lua module for parsing key-value options +relocated 1 +longdesc The name lparse is derived from xparse. The 'x' has been +longdesc replaced by an 'l' because this package only works with LuaTeX. +longdesc 'l' stands for "Lua". Just as with xparse, it is possible to +longdesc use a special syntax consisting of single letters to express +longdesc the arguments of a macro. However, lparse is able to read +longdesc arguments regardless of the macro systemd used -- whether +longdesc LaTeX, or ConTeXt, or even plain TeX. Of course, LuaTeX must +longdesc always be used as the engine. +containersize 3104 +containerchecksum a5f16ff6e4b9ad5ba247205952a1a2b6ec26ea3f307e7e61527b8c9aad860b0d3cffa4166a4fcde56b2d54f3ae1f22bb33bb892c90f896015b0fa4cfc73a13f7 +doccontainersize 107380 +doccontainerchecksum 0c08dc7cf19169e33ad0c4695dbc2a5ba6f16bb328879d2ab9ffe3cfedccaf65499ec0865783947a7db873b20f573e4443368d39d5ad7ef959b3f24770ec9c72 +docfiles size=30 + RELOC/doc/luatex/lparse/README.md details="Readme" + RELOC/doc/luatex/lparse/lparse-doc.tex + RELOC/doc/luatex/lparse/lparse.pdf details="Package documentation" +runfiles size=4 + RELOC/tex/luatex/lparse/lparse.lua + RELOC/tex/luatex/lparse/lparse.sty + RELOC/tex/luatex/lparse/lparse.tex +catalogue-contact-announce https://github.com/Josef-Friedrich/lparse/blob/main/CHANGELOG.md +catalogue-contact-bugs https://github.com/Josef-Friedrich/lparse/issues +catalogue-contact-repository https://github.com/Josef-Friedrich/lparse +catalogue-ctan /macros/luatex/generic/lparse +catalogue-license lppl1.3c +catalogue-topics parser keyval macro-def luatex macro-gen +catalogue-version 0.1.0 + name lpform category Package revision 36918 @@ -182104,17 +190538,17 @@ catalogue-topics tut-latex bulgarian name lshort-chinese category Package -revision 56036 +revision 61100 catalogue lshort-zh-cn shortdesc Introduction to LaTeX, in Chinese relocated 1 longdesc A Chinese edition of the not so short introduction to LaTeX2e, longdesc with additional information of typesetting Chinese language. containersize 472 -containerchecksum f78920a3adac063cddd42284e325308cd124d5e0f2f1ca6f92111edec872ad1325b99331615c8643dbc11ec1165ed0b0320c9a8b1e3eda0dabfcf496ae0d47c2 -doccontainersize 1539324 -doccontainerchecksum 0f8950630220afd353d05b2f4d146ded4eb24fc163f19510a3d57ea680fd06a1dff064c35a0afb8625b32741d1ab6543cde20d5269a0914e0dcff7c42bfca327 -docfiles size=455 +containerchecksum 5e87a1c613e57157c77a9401cda424ba0544b1cfd1611e0f763b837ebd172947365a04f8734b2e7d41f84df9ca28500034b3b8f96dbc4d2f8bee59c1f0813938 +doccontainersize 1561100 +doccontainerchecksum ea00f428f8e93067a876de16cc7f8fe09f46398a209f4ec7664f83f605e674558703f05cb4ebb655a29affb3af26615731a284894d37778a5f7fad531fe2bad1 +docfiles size=460 RELOC/doc/latex/lshort-chinese/README-zh.md details="Readme (Chinese)" language="zh" RELOC/doc/latex/lshort-chinese/README.md details="Readme" RELOC/doc/latex/lshort-chinese/lshort-zh-cn.pdf details="The document itself" language="zh" @@ -182147,7 +190581,7 @@ catalogue-contact-repository https://github.com/CTeX-org/lshort-zh-cn catalogue-ctan /info/lshort/chinese catalogue-license fdl catalogue-topics tut-latex chinese-doc -catalogue-version 6.02 +catalogue-version 6.03 name lshort-czech category Package @@ -182515,22 +190949,28 @@ catalogue-version 5.01 name lshort-polish category Package -revision 55643 +revision 63289 shortdesc Introduction to LaTeX in Polish relocated 1 longdesc This is the Polish translation of A Short Introduction to longdesc LaTeX2e. -containersize 372 -containerchecksum 77927173ea8b2608567a330fb0b76663b7389026de4066b21bf4c460c4721d57badf65179df473f19fc94ba60b56c8ba9f3e99073f500f31c37dce6ba754b3f4 -doccontainersize 1116840 -doccontainerchecksum 5fab9a867d78fabec9edff0148c1134d36ddc8b19140e5fa20752fb5315b30dc3f144eed08fd2f6849581d5ea1a515f350428268fdf3d78fbc92644fc1681271 -docfiles size=372 +containersize 444 +containerchecksum c61289a35103ecfab025169d432be2b3c7f2fd4ff1eb094b345feae6c9a30bd2cee70e0402eb6c2ea330254cf00d04c02649a40d6bd011f9cc612521c88b94a6 +doccontainersize 2093244 +doccontainerchecksum abc5162a490b9646649dfdf50779ab12632eb3ddc6d1c2bae93a4bb00ef1f9387bc8d873a7b5c062b92a999c9d62b74e64b1688dd3582255f7386958649ee009 +docfiles size=564 + RELOC/doc/latex/lshort-polish/CHANGES RELOC/doc/latex/lshort-polish/README details="Readme" - RELOC/doc/latex/lshort-polish/lshort2e.pdf details="The document itself" language="pl" - RELOC/doc/latex/lshort-polish/src.zip + RELOC/doc/latex/lshort-polish/lshort-6.4PL1.src.tar.gz + RELOC/doc/latex/lshort-polish/lshort-a5-pl.pdf details="The document itself (A5 paper format)" language="pl" + RELOC/doc/latex/lshort-polish/lshort-letter-pl.pdf details="The document itself (letter format)" language="pl" + RELOC/doc/latex/lshort-polish/lshort-pl.pdf details="The document itself (A4 paper format)" language="pl" +catalogue-contact-bugs https://gitlab.com/marcin-serwin/lshort-pl/-/issues +catalogue-contact-repository https://gitlab.com/marcin-serwin/lshort-pl catalogue-ctan /info/lshort/polish -catalogue-license pd +catalogue-license gpl2+ catalogue-topics polish-doc tut-latex +catalogue-version 6.4PL1 name lshort-portuguese category Package @@ -182761,7 +191201,7 @@ catalogue-version 4.00 name lstaddons category Package -revision 56291 +revision 64967 shortdesc Add-on packages for listings: autogobble and line background relocated 1 longdesc The bundle contains a small collection of add-on packages for @@ -182769,16 +191209,16 @@ longdesc the listings package. Current packages are: lstlinebgrd: colour longdesc the background of some or all lines of a listing; and longdesc lstautogobble: set the standard "gobble" option to the indent longdesc of the first line of the code. -containersize 2224 -containerchecksum a0fdffdcc648eaa59145c2668412e02f1ca6f5617c5068b80a767e1efa0df30e9c6b458279380bf062ac8aabb0b531585f65f8c9e7bd9d2d6ca057395cb7fe9e -doccontainersize 366356 -doccontainerchecksum 823d63d53a4c7abc108d6d72244acf48a6197de00d3fca7b3f75a082c2b051091497c354429aa9aebb64682b65c6e45d5a90413f2a4248c8c47dddb0fecdf5a7 +containersize 2208 +containerchecksum ad18d38c13dd5076a9213d8a6723b069dd75e546919f106be54a26cd63c3a4186fefdc463e52cd926e85c8020460cde516d12e900c51448440bdc165d4312f19 +doccontainersize 366360 +doccontainerchecksum 38a3b1cdea124cf0cf0951fdcec168b6baa33cec75924687b0a49c1c9713cda847ace0b8bb01ba60fb8945ec2ff421678cd501fa6f5a446ce2ccdd15b2ac34d5 docfiles size=99 RELOC/doc/latex/lstaddons/README details="Readme" RELOC/doc/latex/lstaddons/lstautogobble.pdf details="lstautogobble package documentation" RELOC/doc/latex/lstaddons/lstlinebgrd.pdf details="lstlinebgrd package documentation" -srccontainersize 5572 -srccontainerchecksum 33c8822bfea19259db8792ece9d2796aed34323873dc18d5a0827844b17e6a43d9337a0f55e0f183e18cbc338f0b54d105860993462c3ccea595c7af4df38443 +srccontainersize 5576 +srccontainerchecksum 4bcd82c3b8178b1b4ab486fe8e0cb9393ccbca4612bfd7f7507213cedffe8ec92753e16f647eaf28f6a69fc0bdae655228bcae5fe5f1dad2c62c753433142601 srcfiles size=7 RELOC/source/latex/lstaddons/lstaddons.ins RELOC/source/latex/lstaddons/lstautogobble.dtx @@ -182786,9 +191226,9 @@ srcfiles size=7 runfiles size=2 RELOC/tex/latex/lstaddons/lstautogobble.sty RELOC/tex/latex/lstaddons/lstlinebgrd.sty -catalogue-contact-bugs https://sourceforge.net/p/lstaddons/tickets/ -catalogue-contact-home https://sourceforge.net/projects/lstaddons/ -catalogue-contact-repository https://sourceforge.net/p/lstaddons/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/lstaddons/issues +catalogue-contact-home https://github.com/MartinScharrer/lstaddons +catalogue-contact-repository https://github.com/MartinScharrer/lstaddons.git catalogue-ctan /macros/latex/contrib/lstaddons catalogue-license lppl1.3 catalogue-topics listing @@ -182875,6 +191315,79 @@ catalogue-license lppl1.3 catalogue-topics macro-supp expl3 catalogue-version 0.1.9 +name lt3luabridge +category Package +revision 64801 +shortdesc Execute Lua code in any TeX engine that exposes the shell +relocated 1 +longdesc This is an expl3(-generic) package for plain TeX, LaTeX, and +longdesc ConTeXt that allows you to execute Lua code in LuaTeX or any +longdesc other TeX engine that exposes the shell. +containersize 3004 +containerchecksum f0d98099ffa137b1f5dbeac08d58543f3788647ddc22be5892ad1367d557a1afe1f1e60bf5f0ce531d7d5128b8f23e73a95081ba985579b24ad883887377081c +doccontainersize 487888 +doccontainerchecksum f5181c14dcaf29bde02b38018f1b477092625ec07e442ab3334b3924b92f6e45e6c882220448b08bcd69cb9275e48be962e97ce9329db28a5b50a1217842e80b +docfiles size=131 + RELOC/doc/generic/lt3luabridge/LICENSE + RELOC/doc/generic/lt3luabridge/README.md details="Readme" + RELOC/doc/generic/lt3luabridge/docstrip.cfg + RELOC/doc/generic/lt3luabridge/example.context + RELOC/doc/generic/lt3luabridge/example.latex + RELOC/doc/generic/lt3luabridge/example.plaintex + RELOC/doc/generic/lt3luabridge/lt3luabridge.pdf details="Package documentation" +srccontainersize 4192 +srccontainerchecksum 6684ee282cb2d8bccffde61e2e8692485246d856ae774de476ac697e352bb76d503ccfccb2a649e4b50314e2ab6bda635924d87e14426e73be444e7f4166fca0 +srcfiles size=5 + RELOC/source/generic/lt3luabridge/lt3luabridge.dtx + RELOC/source/generic/lt3luabridge/lt3luabridge.ins +runfiles size=5 + RELOC/tex/generic/lt3luabridge/lt3luabridge.sty + RELOC/tex/generic/lt3luabridge/lt3luabridge.tex + RELOC/tex/generic/lt3luabridge/t-lt3luabridge.tex +catalogue-contact-announce https://github.com/witiko/lt3luabridge/releases +catalogue-contact-bugs https://github.com/witiko/lt3luabridge/issues +catalogue-contact-development https://github.com/witiko/lt3luabridge/discussions +catalogue-contact-repository https://github.com/witiko/lt3luabridge +catalogue-ctan /macros/generic/lt3luabridge +catalogue-license lppl1.3c +catalogue-topics exec-foreign expl3 +catalogue-version 2.0.2 + +name lt3rawobjects +category Package +revision 65230 +shortdesc Objects and proxies in LaTeX3 +relocated 1 +longdesc This package introduces a new mechanism to create objects like +longdesc the well known C structures. The functions exported by this +longdesc package are quite low level, and many important mechanisms like +longdesc member protection and name resolution aren't already defined +longdesc and should be introduced by intermediate packages. +containersize 3724 +containerchecksum 633da20bc0242a755041721c3e1672160cf41d924ff33ddb511debeb5c1961c0a83a07d2c7571305a7aeab4f623ff2047c8d0587a2f1b94ee2c7820d2c3116c9 +doccontainersize 536804 +doccontainerchecksum f84e47dae753654366955666f855087ed43d2efbf9b159dadb581c84eadac1f21422c593bf1fb428f47f176fc248c0e75f86d72c998253a7ffd14713536115dd +docfiles size=172 + RELOC/doc/latex/lt3rawobjects/README.md details="Readme" + RELOC/doc/latex/lt3rawobjects/lt3rawobjects.pdf details="Package documentation" +srccontainersize 11808 +srccontainerchecksum 1412f86829fa26064343fb4c8ece1b29033c16db564621f2fef854077b00dd590873ffeeb002f419dfee7a815de8b63a39c256a2f9822b80b1f013dc29454ced +srcfiles size=17 + RELOC/source/latex/lt3rawobjects/lt3rawobjects.dtx + RELOC/source/latex/lt3rawobjects/lt3rawobjects.ins +runfiles size=6 + RELOC/tex/latex/lt3rawobjects/lt3rawobjects.sty +catalogue-contact-announce https://github.com/Loara/lt3rawobjects/releases +catalogue-contact-bugs https://github.com/Loara/lt3rawobjects/issues +catalogue-contact-development https://github.com/Loara/lt3rawobjects/pulls +catalogue-contact-home https://github.com/Loara/lt3rawobjects +catalogue-contact-repository https://github.com/Loara/lt3rawobjects.git +catalogue-contact-support https://github.com/Loara/lt3rawobjects/discussions +catalogue-ctan /macros/latex/contrib/lt3rawobjects +catalogue-license gpl3+ +catalogue-topics macro-supp expl3 +catalogue-version 2.2 + name ltablex category Package revision 34923 @@ -183078,15 +191591,6 @@ containerchecksum 446b416521942f5f6ae2ec496d86546420cafd8db029359c0b61e4445c831e binfiles arch=armhf-linux size=1 bin/armhf-linux/ltxfileinfo -name ltxfileinfo.i386-cygwin -category Package -revision 29005 -shortdesc i386-cygwin files of ltxfileinfo -containersize 340 -containerchecksum 838a102b9643b368ea9a8a2c7bb2b516a4bd4ed46932ea290cd3d55670a8fa59127c3508512cc86955efb8064517007b0c7473d291da523513589ca378435166 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ltxfileinfo - name ltxfileinfo.i386-freebsd category Package revision 29005 @@ -183205,7 +191709,7 @@ catalogue-version 0.2.0 name ltximg category Package -revision 57521 +revision 59335 shortdesc Extract LaTeX environments into separate image files longdesc ltximg is a Perl script that automates the process of longdesc extracting and converting environments provided by TikZ, @@ -183215,14 +191719,15 @@ longdesc generates a file with only extracted environments and another longdesc with all extracted environments converted to \includegraphics. depend ltximg.ARCH containersize 26344 -containerchecksum 9aa5aacc687d31bc76fd81a2c26cef98fb9328b90c1d97c439f323fe7962184eab2b571431fe208823a6e42fea6c036128414474ca815517421989916a94eeee -doccontainersize 242252 -doccontainerchecksum 5fbf8faf7bfd95b4f35e755ec1507f155647376be9311b97dd7c2924c9958fb0c42351eb43728018bc95e12cdec1b2b8ef89a7a2245e532dc8a49b4c583f54b9 -docfiles size=112 +containerchecksum 0c91f46da529823a96ef441ec88d6d3c077a8bd5997bc291f55012e0d227cc24f00081f846ae127a364cba26498a74f2769d401e6d5fe0057afdb2a76a875f4a +doccontainersize 275072 +doccontainerchecksum 05f9639a0224c779276a3b7f19450c93e255c70680fd54292e1ad41b3c89aa15dc187d58a73475ed9a8f7279faa0f3a0ec15042e75a52c70d78416ec46255b44 +docfiles size=122 + texmf-dist/doc/man/man1/ltximg.1 + texmf-dist/doc/man/man1/ltximg.man1.pdf details="Manual page (PDF)" texmf-dist/doc/support/ltximg/README.md details="Readme" texmf-dist/doc/support/ltximg/ltximg-doc.pdf details="Package documentation" texmf-dist/doc/support/ltximg/ltximg-doc.tex - texmf-dist/doc/support/ltximg/ltximg.1 texmf-dist/doc/support/ltximg/ltximg.man1.pdf details="Manual page (PDF)" runfiles size=33 texmf-dist/scripts/ltximg/ltximg.pl @@ -183231,7 +191736,7 @@ catalogue-contact-support https://github.com/pablgonz/ltximg/issues catalogue-ctan /support/ltximg catalogue-license gpl3+ catalogue-topics chunks graphics subdocs -catalogue-version 2.0 +catalogue-version 2.1 name ltximg.aarch64-linux category Package @@ -183269,15 +191774,6 @@ containerchecksum 700488f3b916340e88c1743532b99a877d78f4fa42cc2c3401178c906a114e binfiles arch=armhf-linux size=1 bin/armhf-linux/ltximg -name ltximg.i386-cygwin -category Package -revision 32346 -shortdesc i386-cygwin files of ltximg -containersize 340 -containerchecksum feace8a7e90a96d84869963bde27e0f4982ad8a604ec83b9d1c2886c25914fd55c380d8e5bdc968a5ba5b81b6e45adedff09f3741b33d6e8d42b4aa5f81c634d -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ltximg - name ltximg.i386-freebsd category Package revision 32346 @@ -183323,14 +191819,14 @@ containerchecksum 0d9beaae518d307100397c2a5eb10fc52a23b5ea3181b71d020b0efb5faff3 binfiles arch=universal-darwin size=1 bin/universal-darwin/ltximg -name ltximg.win32 +name ltximg.windows category Package -revision 32346 -shortdesc win32 files of ltximg -containersize 680 -containerchecksum 136d56035fcd5b7eb708a651709eb559f21bd926cfa115f7314ea3c2636d0d1e51c3587c7ae10c8f2448aa3c77728f628d62bf80ad6025573f676e25ad5ff7a9 -binfiles arch=win32 size=1 - bin/win32/ltximg.exe +revision 65891 +shortdesc windows files of ltximg +containersize 2304 +containerchecksum 0c13ee8a96b3dc8aa7079b484fdf4818d76ae12aa0a2dafee3c84d492c49cabb354e8e676b9b4af61f49d5ba03a94cdeeffcd6e9d0975258d56694fe65f339bd +binfiles arch=windows size=2 + bin/windows/ltximg.exe name ltximg.x86_64-cygwin category Package @@ -183556,7 +192052,7 @@ catalogue-version 0.7a name lua-physical category Package -revision 56306 +revision 59138 shortdesc Functions and objects for the computation of physical quantities relocated 1 longdesc This is a pure Lua library, which provides functions and @@ -183564,15 +192060,17 @@ longdesc objects for the computation of physical quantities. The package longdesc provides units of the SI and the imperial system. In order to longdesc display the numbers with measurement uncertainties, the package longdesc is able to perform Gaussian error propagation. -containersize 359624 -containerchecksum d7118f61f0a64ccd3e67b7197240a49c841720816f9d438959413c603ecce9b332c9d253f21dbcc009839220540f046b18b4b009d3ad5f35a346d8276be47229 -doccontainersize 348632 -doccontainerchecksum e3e50f9994656b3f6049f40f0cb9ecce216869b439682560f9f51496fcb43b94f33d14e1b9f0f4a160c9af848c58bf2fa7e6d2dd1def46ea029ebfcc4410f1e5 -docfiles size=148 +containersize 359576 +containerchecksum b28768f63c2b34930a073139be3e6e90a0086a561bdcdb6aa6c8111db4e6def819c0a3a6af2b5b274d009d3c9b390c6da91416189718a67a4e1efd7eb547c500 +doccontainersize 415236 +doccontainerchecksum 52e764b0492aeb423d8c267f43436821a239e9ad019e43f7fcb881fbec31f9a56b690d792f15f954cec91ba7e3d32f70cb567994a82f3030870b44d0490fb593 +docfiles size=166 RELOC/doc/lualatex/lua-physical/LICENSE RELOC/doc/lualatex/lua-physical/README.md details="Readme" RELOC/doc/lualatex/lua-physical/lua-physical.pdf details="Package documentation" RELOC/doc/lualatex/lua-physical/lua-physical.tex + RELOC/doc/lualatex/lua-physical/lua-physical_example.pdf details="Example of use" + RELOC/doc/lualatex/lua-physical/lua-physical_example.tex RELOC/doc/lualatex/lua-physical/test/luaunit.lua RELOC/doc/lualatex/lua-physical/test/test.lua RELOC/doc/lualatex/lua-physical/test/testData.lua @@ -183596,11 +192094,11 @@ catalogue-contact-home https://github.com/tjenni/lua-physical catalogue-ctan /macros/luatex/latex/lua-physical catalogue-license mit catalogue-topics physics luatex -catalogue-version 1.0.3 +catalogue-version 1.0.5 name lua-typo category Package -revision 58744 +revision 66513 shortdesc Highlighting typographical flaws with LuaLaTeX relocated 1 longdesc This package tracks common typographic flaws in LuaLaTeX @@ -183609,11 +192107,11 @@ longdesc over two pages, consecutive lines ending with hyphens, longdesc paragraphs ending on too short lines, etc. Customisable colours longdesc are used to highlight these flaws, and the list of pages on longdesc which typographical flaws were found is printed. -containersize 6232 -containerchecksum 940664d9898524e99966b6116056bb4f811d39c58a29926afee82846dfe6c77eadfc7e8cc37a3e417401cca1cab7f16043677d84947c51f695109e3f2eb58655 -doccontainersize 180604 -doccontainerchecksum 18485d5b079306fb6d943256453f4643f33b9b6781133a2fb0f1ecc5b87d8a755bb0c60428d565a6e42c6aedd3f23f0d03aacd3af5ac4055e1950289fc99dcec -docfiles size=53 +containersize 10152 +containerchecksum 4a620826a5225ad837e0825dddf2327ed6e5d41fb48eae42c3d771165bf39a4c95df55cab43db01e0c20d155ce619e28f41d1cb9fa342db2d343e4f772db1e68 +doccontainersize 256892 +doccontainerchecksum 431943dd0f8a7b9b9d18a8ef732e8dc1866a5a056d18a9c30b85e2dd5f84f1ccdc316607ed8e74875f54e2119192413d6a6f5d666a82b612d6b9e3d5b745d298 +docfiles size=79 RELOC/doc/lualatex/lua-typo/README.md details="Readme" RELOC/doc/lualatex/lua-typo/lua-typo-demo.pdf details="Example of use" RELOC/doc/lualatex/lua-typo/lua-typo-demo.tex @@ -183621,21 +192119,22 @@ docfiles size=53 RELOC/doc/lualatex/lua-typo/lua-typo-fr.pdf details="Package documentation (French)" language="fr" RELOC/doc/lualatex/lua-typo/lua-typo.ltx RELOC/doc/lualatex/lua-typo/lua-typo.pdf details="Package documentation (English)" -srccontainersize 18612 -srccontainerchecksum 348aa0eb23bd9a94f50851a8e71633377347c1ce1942d4d84faa3b8d612ff26c2d0be192fa1a14097be6fb8fab3e363de0b1f77c2bba737a027e7ee279c55729 -srcfiles size=18 +srccontainersize 26388 +srccontainerchecksum ea0de9ac18de26bea0a40586d2585a761f5571c135c3f30a049206fc4daa96183d0bd7f39372553d288aeafcbaa700044a36e1c37ca62d02793e95fb71582e3b +srcfiles size=28 RELOC/source/lualatex/lua-typo/lua-typo.dtx -runfiles size=8 +runfiles size=19 + RELOC/tex/lualatex/lua-typo/lua-typo-2021-04-18.sty RELOC/tex/lualatex/lua-typo/lua-typo.cfg RELOC/tex/lualatex/lua-typo/lua-typo.sty catalogue-ctan /macros/luatex/latex/lua-typo catalogue-license lppl1.3c catalogue-topics luatex text-layout -catalogue-version 0.32 +catalogue-version 0.65 name lua-uca category Package -revision 56414 +revision 61023 shortdesc Unicode Collation Algorithm library for Lua relocated 1 longdesc The Lua-UCA library provides basic support for Unicode @@ -183643,18 +192142,23 @@ longdesc Collation Algorithm in Lua. It can be used to sort arrays of longdesc strings according to rules of particular languages. It can be longdesc used in other Lua projects that need to sort text in a language longdesc dependent way, like indexing processors, bibliographic -longdesc generators, etc -containersize 70984 -containerchecksum 51223bc90b7d9c8da149133b5fc019e968da2d82c089a6e5884cd9c32b5306c3f7e575708229b1e6e77ad2840fcb0d4b01fe1d3973478385579ddc4a2d473096 -doccontainersize 58416 -doccontainerchecksum 462d46a84532e483f7d70a6b16bc9b3f7bbd7623b9fa5ec237b8e5fbf5254de69bece3d7a494e87c73ded77852b72b1b5ef43b7b5b6e02f1e181f82727069352 -docfiles size=19 +longdesc generators, etc. +containersize 74192 +containerchecksum e6c703b5576c7d66372a3989618609f2fe4a2b41de78c624e15bd0905744559b2adb3f70536b9680f83897a3997a492a558e285818d38b63ee7e99798bf376c0 +doccontainersize 75516 +doccontainerchecksum a842063786a53c558bcd4bead5b6affbe9e448618d421435f49722e0a55087c28b36bc9d6bbcb874c3c794a9f5b303c62429b4386801e03f78e2f60c83cb1d1d +docfiles size=23 RELOC/doc/support/lua-uca/CHANGELOG.md + RELOC/doc/support/lua-uca/HACKING.md RELOC/doc/support/lua-uca/LICENSE RELOC/doc/support/lua-uca/README.md details="Readme" RELOC/doc/support/lua-uca/lua-uca-doc.pdf details="Package documentation" RELOC/doc/support/lua-uca/lua-uca-doc.tex -runfiles size=465 +srccontainersize 1136 +srccontainerchecksum 7bea2f473bf12fccdc21534653f6237ea3b71c57bdaf651b8f543c5447ba25b3ae3bf735c3a0e7840b31907b777aa87215b358d152c1ba29c0e372a2672b0e44 +srcfiles size=1 + RELOC/source/support/lua-uca/Makefile +runfiles size=464 RELOC/scripts/lua-uca/lua-uca-collator.lua RELOC/scripts/lua-uca/lua-uca-ducet.lua RELOC/scripts/lua-uca/lua-uca-languages.lua @@ -183665,11 +192169,11 @@ catalogue-contact-repository https://github.com/michal-h21/lua-uca catalogue-ctan /support/lualibs/lua-uca catalogue-license mit catalogue-topics typesetting luatex -catalogue-version 0.1 +catalogue-version 0.1b name lua-ul category Package -revision 58988 +revision 63469 shortdesc Underlining for LuaLaTeX relocated 1 longdesc This package provides underlining, strikethough, and @@ -183678,19 +192182,20 @@ longdesc restrictions imposed by other methods. In particular, kerning longdesc is not affected, the underlined text can use arbitrary longdesc commands, hyphenation works etc. The package requires LuaTeX longdesc version [?] 1.12.0. -containersize 6192 -containerchecksum 5af2e9d3a5c14321e10427de36cfc04a5f209fe2bec2e7a71704594fbdbf6ed57c36c1009b39f12f91e548d23d8202c345a3d49670e3305465ac5910f0c226e3 -doccontainersize 98028 -doccontainerchecksum 46c317b8a60050a292bd7cf9499dd4ed25384708f85b7f51457867305d417d1acf924f8d24ba93fa3ffbeffb00bc453e74c87fb3692627a7c30c872a3fc28fb4 -docfiles size=26 +containersize 7508 +containerchecksum a6502086f7d1c57247f9371a711ae7cd1d6112f68818e2a1e04a5a04c97c81dc0c01d7b767e6a6880e366eee9d912cf1ea1f0a17f1d43645ac15ed005d2b8855 +doccontainersize 106052 +doccontainerchecksum 87793902acca0493ba9671d1052663a4c6322ee9231bb9ede780626bcfe500242b0bde8c0374a8a493336b2890a01a00ea77e2889f544fb2321cf44f08c58e4b +docfiles size=28 RELOC/doc/lualatex/lua-ul/README details="Readme" RELOC/doc/lualatex/lua-ul/lua-ul.pdf details="Package documentation" -srccontainersize 9836 -srccontainerchecksum 3df3e88520075d96d04826d82e83f3914d21dfaf962a42312d1b4f1c51ce01e5bbfd8a12a21df468476ff4c511cabb087ffe1de62a9b10d0a6a7b3670da596eb -srcfiles size=9 +srccontainersize 11708 +srccontainerchecksum 9306925f6131bbabf018343d0ab608b501690f7ad11b8c1df6a60c8e18b26c10c940f8015beeafa112859f54d78bae5d57c8c2775fb54ad82462969c9c65e79f +srcfiles size=11 RELOC/source/lualatex/lua-ul/lua-ul.dtx -runfiles size=7 +runfiles size=10 RELOC/tex/lualatex/lua-ul/docstrip-luacode.sty + RELOC/tex/lualatex/lua-ul/lua-ul-patches-preserve-attr.lua RELOC/tex/lualatex/lua-ul/lua-ul.lua RELOC/tex/lualatex/lua-ul/lua-ul.sty RELOC/tex/lualatex/lua-ul/pre_append_to_vlist_filter.lua @@ -183698,12 +192203,12 @@ catalogue-contact-bugs https://github.com/zauguin/luaul/issues catalogue-contact-repository https://github.com/zauguin/luaul catalogue-ctan /macros/luatex/latex/lua-ul catalogue-license lppl1.3c -catalogue-topics underline luatex -catalogue-version 0.1.3 +catalogue-topics underline luatex expl3 +catalogue-version 0.2.0 name lua-uni-algos category Package -revision 55206 +revision 62204 shortdesc Unicode algorithms for LuaTeX relocated 1 longdesc Lua code working with Unicode data has to deal with quite some @@ -183721,38 +192226,38 @@ longdesc Lua modules, it is only useful in Lua(HB)TeX. Additionally, it longdesc expects an up-to-date version of the unicode-data package to be longdesc present. This package is intended for package authors only; no longdesc user-level functionality provided. -containersize 5384 -containerchecksum cdb671d19ba69f6b2c7a5f55127c8f97973c9d9c962016729dcf2ff0ee8abf649acce51bc45c5ec736f243ecb56e98de7c1d5152827023c8e19af3990ebf840a -doccontainersize 62084 -doccontainerchecksum 5ec98605457ad145e63186ae1002f6c2fffc9bba2e512a3f982540dfe27539d848cfa05a8db55f26263fbfe60521ad7795bd6b474b6d29880046e1699daca074 -docfiles size=19 +containersize 7684 +containerchecksum 01307963a88c4507a7864272f321580898e107601fc3784ef46122dd3361f4a272285836e186df8a5454a9825c608071caf79976323e84102eae6f59296f3a9f +doccontainersize 73912 +doccontainerchecksum 5f667cebc56682225d8a68668bf7e02545e6239b6fba3f8f6ab49bc34d50d537d39484b060d8239631bc4a0de42b63824af04e5e3cc33c528c0925de8419b5c5 +docfiles size=22 RELOC/doc/luatex/lua-uni-algos/README.md details="Readme" RELOC/doc/luatex/lua-uni-algos/lua-uni-algos.pdf details="Package documentation" RELOC/doc/luatex/lua-uni-algos/lua-uni-algos.tex -runfiles size=8 +runfiles size=11 RELOC/tex/luatex/lua-uni-algos/lua-uni-algos.lua RELOC/tex/luatex/lua-uni-algos/lua-uni-case.lua RELOC/tex/luatex/lua-uni-algos/lua-uni-graphemes.lua RELOC/tex/luatex/lua-uni-algos/lua-uni-normalize.lua RELOC/tex/luatex/lua-uni-algos/lua-uni-parse.lua -catalogue-contact-repository https://github.com/zauguin/lua-uni-algos +catalogue-contact-repository https://github.com/latex3/lua-uni-algos catalogue-ctan /macros/luatex/generic/lua-uni-algos catalogue-license lppl1.3 catalogue-topics luatex unicode -catalogue-version 0.2 +catalogue-version 0.4.1 name lua-visual-debug category Package -revision 57349 +revision 65464 shortdesc Visual debugging with LuaLaTeX relocated 1 longdesc The package uses lua code to provide visible indications of longdesc boxes, glues, kerns and penalties in the PDF output. The longdesc package is known to work in LaTeX and Plain TeX documents. -containersize 3476 -containerchecksum f98f686ab3d03e48e377ebec624297f858be03097ed66b6448e82869942ce87f8d1699e4dffa9fc3294a3a8a79a2f547efe0e006eb132ba77eabb714e31d8b40 -doccontainersize 289376 -doccontainerchecksum dc1deb6a514397c745001c5635d5205f03b44cefb43d6618f83a2314453928141ed9591b5ad8539db96998901981f20ffc80f89b4b7d5532abf736cb9ae0bdb3 +containersize 3500 +containerchecksum 4d75ff11873d88b0914545e2233b7f49e6caca18a73aa71b74844ff516e41399c99c1fbb7f3bfcf420bcdb91bdfd10e42f4e8f7bfee05af284cea78e25718343 +doccontainersize 289572 +doccontainerchecksum 99736a1b08c2eba032d749686d30df9384fec22ae65878162436105ff9edc4c781bee5d6407612edb53edad73cf38aa84c870c612663c5b8e2262b191c526f76 docfiles size=102 RELOC/doc/luatex/lua-visual-debug/README.md details="Readme" RELOC/doc/luatex/lua-visual-debug/lvdebug-doc.pdf details="Package documentation" @@ -183770,7 +192275,102 @@ catalogue-contact-repository https://github.com/pgundlach/lvdebug catalogue-ctan /macros/luatex/generic/lua-visual-debug catalogue-license mit catalogue-topics debug-supp luatex macro-gen -catalogue-version 0.8 +catalogue-version 0.9 + +name lua-widow-control +category Package +revision 65084 +shortdesc Automatically remove widows and orphans from any document +relocated 1 +longdesc Unmodified TeX has very few ways of preventing widows and +longdesc orphans. In documents with figures, section headings, and +longdesc equations, TeX can stretch the vertical glue between items in +longdesc order to prevent widows and orphans, but many documents have no +longdesc figures or headings. TeX can also shorten the page by 1 line, +longdesc but this will give each page a different length which can make +longdesc a document look uneven. The typical solution is to +longdesc strategically insert \looseness=1, but this requires manual +longdesc editing every time that the document is edited. +longdesc Lua-widow-control is essentially an automation of the +longdesc \looseness method: it uses Lua callbacks to find "stretchy" +longdesc paragraphs, then it lengthens them to remove widows and +longdesc orphans. Lua-widow-control is compatible with all LuaTeX and +longdesc LuaMetaTeX-based formats. All that is required is to load the +longdesc package at the start of your document. To load: Plain LuaTeX: +longdesc \input lua-widow-control LuaLaTeX: +longdesc \usepackage{lua-widow-control} ConTeXt: +longdesc \usemodule[lua-widow-control] OpTeX: \load[lua-widow-control] +containersize 19916 +containerchecksum 22046b01d285a5d113e57d4e5158c2d5558a116004f51d7502cbf80f168bb31c46c6ae09206fb00c9400eb7308f32b56fae2bfeab2a8e1b3fc6e6c3eb0566ad5 +doccontainersize 1118500 +doccontainerchecksum 5b77ffc70f98fdb815f8cdf27d78a2b48422af39cfda7c4a109c97148284a3c425dcce4161fd960a2f2ec658726310f821d068f0c52acf02e14657400b5866ac +docfiles size=363 + RELOC/doc/luatex/lua-widow-control/README.md details="Readme" + RELOC/doc/luatex/lua-widow-control/lua-widow-control.pdf details="Package documentation" + RELOC/doc/luatex/lua-widow-control/lwc-zpravodaj.pdf details="Zpravodaj article" + RELOC/doc/luatex/lua-widow-control/tb133chernoff-widows.pdf details="TUGboat article" +srccontainersize 57184 +srccontainerchecksum 5c2007b8009e40df05b328579a379d7d903e992af89471b996bd09ecb498c86d16c4c69b6721bed8e69bafe2c457122889485289ce9d4758603b8255db89f39d +srcfiles size=74 + RELOC/source/luatex/lua-widow-control/CHANGELOG.md + RELOC/source/luatex/lua-widow-control/lwc-manual-samples.tex + RELOC/source/luatex/lua-widow-control/lwc-manual.bib + RELOC/source/luatex/lua-widow-control/lwc-manual.mkxl + RELOC/source/luatex/lua-widow-control/lwc-manual.tex + RELOC/source/luatex/lua-widow-control/lwc-zpravodaj-figure.ctx + RELOC/source/luatex/lua-widow-control/lwc-zpravodaj.bib + RELOC/source/luatex/lua-widow-control/lwc-zpravodaj.ltx + RELOC/source/luatex/lua-widow-control/tb133chernoff-widows-figure.ctx + RELOC/source/luatex/lua-widow-control/tb133chernoff-widows-plot.dat + RELOC/source/luatex/lua-widow-control/tb133chernoff-widows.bib + RELOC/source/luatex/lua-widow-control/tb133chernoff-widows.ltx +runfiles size=23 + RELOC/tex/context/third/lua-widow-control/t-lua-widow-control.mkiv + RELOC/tex/context/third/lua-widow-control/t-lua-widow-control.mkxl + RELOC/tex/lualatex/lua-widow-control/lua-widow-control-2022-02-22.sty + RELOC/tex/lualatex/lua-widow-control/lua-widow-control.sty + RELOC/tex/luatex/lua-widow-control/lua-widow-control.lua + RELOC/tex/luatex/lua-widow-control/lua-widow-control.tex + RELOC/tex/optex/lua-widow-control/lua-widow-control.opm +catalogue-contact-bugs https://github.com/gucci-on-fleek/lua-widow-control/issues +catalogue-contact-repository https://github.com/gucci-on-fleek/lua-widow-control +catalogue-contact-support https://github.com/gucci-on-fleek/lua-widow-control/discussions +catalogue-ctan /macros/luatex/generic/lua-widow-control +catalogue-license other-free cc-by-sa-4 +catalogue-topics layout luatex expl3 +catalogue-version 3.0.0 + +name luaaddplot +category Package +revision 62842 +shortdesc An extension to pgfplots' \addplot macro +relocated 1 +longdesc This package is an extension to pgfplots. It extends the +longdesc \addplot macro by a facility which allows modification of data +longdesc files while they are read. With luaaddplot it is no longer +longdesc necessary to pre-process data files generated by measuring +longdesc devices with external scripts. This package can be used with +longdesc plain LuaTeX or LuaLaTeX. +containersize 1464 +containerchecksum 8834dcf95f0cd2260423ef2a65599c0ebd948c67b61b97ebca8fefd36134d995630238b6ca01b5b9aa8b6fe50bd10b0cd49a350b3e2c3dfcfea00cac56a777eb +doccontainersize 256800 +doccontainerchecksum 166ad5662521aaa4808ad1031ec922609f7a5049d9d219dbcb41ea4c7f777776794b34e356564cbf03628e6065e1eb4354366e3bc2c2bcae2b6e83344f6f810f +docfiles size=65 + RELOC/doc/luatex/luaaddplot/README.md details="Readme" + RELOC/doc/luatex/luaaddplot/luaaddplot.pdf details="Package documentation" +srccontainersize 4148 +srccontainerchecksum 11f90c6f468fd67f58bc7ed6d468873d9c12989b5a4d86563f35ffb9b62219def0d2cc36d45362cbb2fd957928b673b93e52437d26ef3e69ef7edba0b4645009 +srcfiles size=4 + RELOC/source/luatex/luaaddplot/luaaddplot.dtx + RELOC/source/luatex/luaaddplot/luaaddplot.ins +runfiles size=3 + RELOC/tex/luatex/luaaddplot/luaaddplot.lua + RELOC/tex/luatex/luaaddplot/luaaddplot.sty + RELOC/tex/luatex/luaaddplot/luaaddplot.tex +catalogue-ctan /macros/luatex/generic/luaaddplot +catalogue-license lppl1.3 +catalogue-topics graphics graphics-plot luatex +catalogue-version 1.0 name luabibentry category Package @@ -183831,6 +192431,149 @@ catalogue-license lppl1.3c mit catalogue-topics typesetting luatex catalogue-version 0.5 +name luacas +category Package +revision 65042 +shortdesc A computer algebra system for users of LuaLaTeX +relocated 1 +longdesc This package provides a portable computer algebra system +longdesc capable of symbolic computation, written entirely in Lua, +longdesc designed for use in LuaLaTeX. Features include: +longdesc arbitrary-precision integer and rational arithmetic, factoring +longdesc of univariate polynomials over the rationals and finite fields, +longdesc number theoretic algorithms, symbolic differentiation and +longdesc integration, and more. The target audience for this package are +longdesc mathematics students, instructors, and professionals who would +longdesc like some ability to perform basic symbolic computations within +longdesc LaTeX without the need for laborious and technical setup. +containersize 62092 +containerchecksum 1d7a3ba1e7fa0085893569e8f4ee5c175376edb7c3575f6892d969a4b64bf566c50d3b86088df6bcc7e8bae9c8ae91889f19a28e3112cfa57cc7919fb85e95d2 +doccontainersize 656528 +doccontainerchecksum 82e2392a227366661a09fc54c5657efe12d0bb5d9bc8ed5209b013b7d2825f5c3516df4c77d864c9cb05574a2380612215d9ec2b70b4e0df7c44b307922657cf +docfiles size=259 + RELOC/doc/lualatex/luacas/README.md details="Readme" + RELOC/doc/lualatex/luacas/appendix/latexcode.tex + RELOC/doc/lualatex/luacas/appendix/luacas.dat + RELOC/doc/lualatex/luacas/appendix/versionhistory.tex + RELOC/doc/lualatex/luacas/demotut3.dat + RELOC/doc/lualatex/luacas/intro/intro.tex + RELOC/doc/lualatex/luacas/intro/intropart.tex + RELOC/doc/lualatex/luacas/luacas.dat + RELOC/doc/lualatex/luacas/luacas.pdf details="Package documentation" + RELOC/doc/lualatex/luacas/luacas.tex + RELOC/doc/lualatex/luacas/reference/ref.tex + RELOC/doc/lualatex/luacas/reference/ref_algebra/ref_algebra.tex + RELOC/doc/lualatex/luacas/reference/ref_algebra/ref_algebra_classes/ref_algebra_classes.tex + RELOC/doc/lualatex/luacas/reference/ref_algebra/ref_algebra_methods/ref_algebra_methods.tex + RELOC/doc/lualatex/luacas/reference/ref_calculus/ref_calculus.tex + RELOC/doc/lualatex/luacas/reference/ref_calculus/ref_calculus_classes/ref_calculus_classes.tex + RELOC/doc/lualatex/luacas/reference/ref_calculus/ref_calculus_methods/ref_calculus_methods.tex + RELOC/doc/lualatex/luacas/reference/ref_core/ref_core.tex + RELOC/doc/lualatex/luacas/reference/ref_core/ref_core_classes/ref_core_classes.tex + RELOC/doc/lualatex/luacas/reference/ref_core/ref_core_methods/ref_core_methods.tex + RELOC/doc/lualatex/luacas/tutorial/tut.tex + RELOC/doc/lualatex/luacas/tutorial/tut1/tut1.tex + RELOC/doc/lualatex/luacas/tutorial/tut2/tut2.tex + RELOC/doc/lualatex/luacas/tutorial/tut3/demotut3.dat + RELOC/doc/lualatex/luacas/tutorial/tut3/tut3.tex +runfiles size=130 + RELOC/tex/lualatex/luacas/_lib/luacas-inspect.lua + RELOC/tex/lualatex/luacas/_lib/luacas-pepperfish.lua + RELOC/tex/lualatex/luacas/_lib/luacas-table.lua + RELOC/tex/lualatex/luacas/algebra/luacas-absexpression.lua + RELOC/tex/lualatex/luacas/algebra/luacas-algebra_init.lua + RELOC/tex/lualatex/luacas/algebra/luacas-equation.lua + RELOC/tex/lualatex/luacas/algebra/luacas-euclideandomain.lua + RELOC/tex/lualatex/luacas/algebra/luacas-factorialexpression.lua + RELOC/tex/lualatex/luacas/algebra/luacas-field.lua + RELOC/tex/lualatex/luacas/algebra/luacas-integer.lua + RELOC/tex/lualatex/luacas/algebra/luacas-integerquotientring.lua + RELOC/tex/lualatex/luacas/algebra/luacas-logarithm.lua + RELOC/tex/lualatex/luacas/algebra/luacas-polynomialring.lua + RELOC/tex/lualatex/luacas/algebra/luacas-rational.lua + RELOC/tex/lualatex/luacas/algebra/luacas-ring.lua + RELOC/tex/lualatex/luacas/algebra/luacas-rootexpression.lua + RELOC/tex/lualatex/luacas/algebra/luacas-sqrtexpression.lua + RELOC/tex/lualatex/luacas/algebra/luacas-trigexpression.lua + RELOC/tex/lualatex/luacas/algebra/polynomialring/luacas-berlekampfactoring.lua + RELOC/tex/lualatex/luacas/algebra/polynomialring/luacas-decomposition.lua + RELOC/tex/lualatex/luacas/algebra/polynomialring/luacas-zassenhausfactoring.lua + RELOC/tex/lualatex/luacas/calculus/luacas-calculus_init.lua + RELOC/tex/lualatex/luacas/calculus/luacas-derivativeexpression.lua + RELOC/tex/lualatex/luacas/calculus/luacas-diffexpression.lua + RELOC/tex/lualatex/luacas/calculus/luacas-integralexpression.lua + RELOC/tex/lualatex/luacas/core/binaryoperation/luacas-difference.lua + RELOC/tex/lualatex/luacas/core/binaryoperation/luacas-power.lua + RELOC/tex/lualatex/luacas/core/binaryoperation/luacas-product.lua + RELOC/tex/lualatex/luacas/core/binaryoperation/luacas-quotient.lua + RELOC/tex/lualatex/luacas/core/binaryoperation/luacas-sum.lua + RELOC/tex/lualatex/luacas/core/luacas-atomicexpression.lua + RELOC/tex/lualatex/luacas/core/luacas-binaryoperation.lua + RELOC/tex/lualatex/luacas/core/luacas-compoundexpression.lua + RELOC/tex/lualatex/luacas/core/luacas-constantexpression.lua + RELOC/tex/lualatex/luacas/core/luacas-core_init.lua + RELOC/tex/lualatex/luacas/core/luacas-expression.lua + RELOC/tex/lualatex/luacas/core/luacas-functionexpression.lua + RELOC/tex/lualatex/luacas/core/luacas-symbolexpression.lua + RELOC/tex/lualatex/luacas/luacas.sty + RELOC/tex/lualatex/luacas/test/calculus/luacas-derivatives.lua + RELOC/tex/lualatex/luacas/test/calculus/luacas-integrals.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-autosimplify.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-collect.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-equations.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-functions.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-logarithms.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-rationalexponent.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-simplify.lua + RELOC/tex/lualatex/luacas/test/expressions/luacas-substitute.lua + RELOC/tex/lualatex/luacas/test/luacas-helper.lua + RELOC/tex/lualatex/luacas/test/luacas-main.lua + RELOC/tex/lualatex/luacas/test/luacas-parser.lua + RELOC/tex/lualatex/luacas/test/polynomials/luacas-partialfractions.lua + RELOC/tex/lualatex/luacas/test/polynomials/luacas-polynomial.lua + RELOC/tex/lualatex/luacas/test/polynomials/luacas-polynomialmod.lua + RELOC/tex/lualatex/luacas/test/polynomials/luacas-roots.lua + RELOC/tex/lualatex/luacas/test/rings/luacas-conversion.lua + RELOC/tex/lualatex/luacas/test/rings/luacas-modulararithmetic.lua + RELOC/tex/lualatex/luacas/test/rings/luacas-number.lua +catalogue-contact-bugs https://github.com/cochraef/LuaLaTeX-CAS/issues +catalogue-contact-repository https://github.com/cochraef/LuaLaTeX-CAS +catalogue-ctan /macros/luatex/latex/luacas +catalogue-license lppl1.3c +catalogue-topics maths calculation luatex +catalogue-version 1.0.1 + +name luacensor +category Package +revision 62167 +shortdesc Securely redact sensitive information using Lua +relocated 1 +longdesc This package provides simple tools for creating redacted Its +longdesc tools are useful for lawyers, workers in sensitive industries, +longdesc and others who need to easily produce both unrestricted +longdesc versions of documents (for limited, secure release) and +longdesc restricted versions of documents (for general release) +longdesc Redaction is done both by hiding all characters and by slightly +longdesc varying the length of strings to prevent jigsaw identification. +longdesc It also is friendly to screen readers by adding alt-text +longdesc indicating redacted content. +containersize 4348 +containerchecksum 6dbcc3a2870106eb49955b6e67fd621019fcd759b9d68d37e86af9d4121231e50ecaab7abe7fdc7720021575b8f6a28f28c4a11edc72f6ea71f7cba2b76909c6 +doccontainersize 164092 +doccontainerchecksum 95cf6068dd5812806f3a7fb40349f8adab9099c453459789937c68d49e8238016575148254b436724b7764a0eee7caac2459b96ab214746d3c12ba1d268cef45 +docfiles size=47 + RELOC/doc/lualatex/luacensor/README details="Readme" + RELOC/doc/lualatex/luacensor/luacensor.pdf details="Package documentation" + RELOC/doc/lualatex/luacensor/luacensor.tex +runfiles size=4 + RELOC/tex/lualatex/luacensor/luacensor.sty +catalogue-contact-bugs https://github.com/ezgranet/luacensor/issues +catalogue-contact-repository https://github.com/ezgranet/luacensor +catalogue-ctan /macros/luatex/latex/luacensor +catalogue-license lppl1.3 +catalogue-topics security editorial cond-comp luatex +catalogue-version 1.1.0 + name luacode category Package revision 25193 @@ -183889,9 +192632,234 @@ catalogue-license lppl1.3 catalogue-topics colour luatex catalogue-version 1.17 +name luacomplex +category Package +revision 65833 +shortdesc Operations on complex numbers inside LaTeX documents using Lua +relocated 1 +longdesc The luacomplex package is developed to define complex numbers +longdesc and perform basic arithmetic on complex numbers in LaTeX. It +longdesc also loads the luamathspackage. It provides an easy way to +longdesc define complex numbers and perform operations on complex +longdesc numbers. There is no particular environment for performing +longdesc operations on complex numbers. The package commands can be used +longdesc in any environment (including the mathematics environment). It +longdesc is written in Lua, and the .tex file is to be compiled with the +longdesc LuaLaTeX engine. +containersize 1660 +containerchecksum 621f7f8955c309b31f19a94cfff7632591f5b67b60cdeb1ddccb1076855a49c0e9030fd7abcb21cb7c3c474d3d418e8f08e6d1d4a74fa18f96307bdf8ab96094 +doccontainersize 115644 +doccontainerchecksum abcc97af487f24e2fa0636a3bfb069419eb29071e2060c7712c22c5a4dafc97b082e72b27f3e390a74564d1950b1f7158bee90151399ec6c5175513a9c9eb706 +docfiles size=36 + RELOC/doc/lualatex/luacomplex/README.txt details="Readme" + RELOC/doc/lualatex/luacomplex/luacomplex.pdf details="Package documentation" + RELOC/doc/lualatex/luacomplex/luacomplex.tex +runfiles size=1 + RELOC/tex/lualatex/luacomplex/luacomplex.sty +catalogue-ctan /macros/luatex/latex/luacomplex +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 1.2 + +name luafindfont +category Package +revision 64936 +shortdesc Search fonts in the LuaTeX font database +longdesc This Lua script searches for fonts in the font database. +depend luafindfont.ARCH +containersize 5536 +containerchecksum a73bfe0aa1b6a907224cc98f2d5f6344249f79010ad5552c66286eb7c103d5c69851a452cb6eebf39ebd5b6e8e64062efb125bea1c6586ef5117f994a97244bd +doccontainersize 124356 +doccontainerchecksum e7196d9a2e69b5a6d5582d7ddc00ac480b16228b424cb9d568ef1ff6fbef48e5926776d5f22fa0eb5c4b09b6b29a283416206f64cf324356b35d66228bbbd3ea +docfiles size=44 + texmf-dist/doc/man/man1/luafindfont.1 + texmf-dist/doc/man/man1/luafindfont.man1.pdf + texmf-dist/doc/support/luafindfont/CHANGELOG + texmf-dist/doc/support/luafindfont/README.md details="Readme" + texmf-dist/doc/support/luafindfont/exa01.txt + texmf-dist/doc/support/luafindfont/exa02.txt + texmf-dist/doc/support/luafindfont/exa03.txt + texmf-dist/doc/support/luafindfont/exa04.txt + texmf-dist/doc/support/luafindfont/exa05.txt + texmf-dist/doc/support/luafindfont/exa06.txt + texmf-dist/doc/support/luafindfont/luafindfont-doc.pdf details="Package documentation" + texmf-dist/doc/support/luafindfont/luafindfont-doc.tex +runfiles size=5 + texmf-dist/scripts/luafindfont/luafindfont.lua +catalogue-alias findfont +catalogue-ctan /support/luafindfont +catalogue-license lppl1.3c +catalogue-topics font-sel +catalogue-version 0.11 + +name luafindfont.aarch64-linux +category Package +revision 61207 +shortdesc aarch64-linux files of luafindfont +containersize 340 +containerchecksum c32056debfbf808e61df55a99ce2d2427faa276d3ad7c856875d54a6bacb4ac3d2b350b96334624fe066f77f6662b701fe863b0415d7d4743236c32914657a3c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/luafindfont + +name luafindfont.amd64-freebsd +category Package +revision 61207 +shortdesc amd64-freebsd files of luafindfont +containersize 344 +containerchecksum 2389200a277f93bc6c4c39b25a4cdb081dde64ddfdebce9d10deda7f9756c270f4dfb9d9f61ad2cc2eee4e55e557c31f88b2385996f693ca3dd849e1566931e5 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/luafindfont + +name luafindfont.amd64-netbsd +category Package +revision 61207 +shortdesc amd64-netbsd files of luafindfont +containersize 340 +containerchecksum 4a30d6774f0b55b70eb002ae4e1a9a451ebc05d27c883a559bd11080db94161595d224e80107e0bf61c9832aa08c0b7bb689eee55d1442a2db1cdc102968bbfe +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/luafindfont + +name luafindfont.armhf-linux +category Package +revision 61207 +shortdesc armhf-linux files of luafindfont +containersize 340 +containerchecksum 6becf191cff6c47cb48cf042a65d20e4829a7dfe52928308bead7d55b994359cd6bc56be162b8bf4d4c55a33d51729463bf12b265796adeaaf0079006f74155d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/luafindfont + +name luafindfont.i386-freebsd +category Package +revision 61207 +shortdesc i386-freebsd files of luafindfont +containersize 340 +containerchecksum ff2aef8f89f374d150305280c03f3d1280649eafa1e0dc81c938f138519fd76147742ce5c1368b1488b4ef2d9e8ae97537a426970594ded02aa57e2ba32f1d4a +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/luafindfont + +name luafindfont.i386-linux +category Package +revision 61207 +shortdesc i386-linux files of luafindfont +containersize 340 +containerchecksum e49224b01a33eb84111734f6032f015fc77ffdad81c9e4ab1178c988543e30833808f1c444be44c13b8f34f166dbac6df5fbcf5f956290b62977e81a901d093d +binfiles arch=i386-linux size=1 + bin/i386-linux/luafindfont + +name luafindfont.i386-netbsd +category Package +revision 61207 +shortdesc i386-netbsd files of luafindfont +containersize 340 +containerchecksum 5d536fd9c761838977edd6fabdbcaf25deb195ff0ca03e61444e4d9538e3dc3aea867f2f685557a6863e444dd396a160b02b35b2e3d1a5f80d7bb67fab9ab0d9 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/luafindfont + +name luafindfont.i386-solaris +category Package +revision 61207 +shortdesc i386-solaris files of luafindfont +containersize 340 +containerchecksum 9867fa0f173d2fcfce142bf7d6c3b7bbb8fdde6c043a0b093542fefed26e2cc3f89c9079d066dfd7627b531ebdda9fa865cb55bd735fb17e525b5bcb050c3da6 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/luafindfont + +name luafindfont.universal-darwin +category Package +revision 61207 +shortdesc universal-darwin files of luafindfont +containersize 344 +containerchecksum 6c3e3d5ec06a063388d9c13184164723eebcc84efac45fcee21d4b0b7d34dd1210fde592b677f97ba245e1e383841461961c3e5a97486ce6f61d5397d8189c7b +binfiles arch=universal-darwin size=1 + bin/universal-darwin/luafindfont + +name luafindfont.windows +category Package +revision 65891 +shortdesc windows files of luafindfont +containersize 2308 +containerchecksum fc42d691b2a02ec2664fc49925983e03fa434403cae4038f475fed454a6642fdbfa9c73eb7501449a050079612dc07765b3da4f33eebddf8ec417443458e0783 +binfiles arch=windows size=2 + bin/windows/luafindfont.exe + +name luafindfont.x86_64-cygwin +category Package +revision 61207 +shortdesc x86_64-cygwin files of luafindfont +containersize 344 +containerchecksum c4623055015ab818072cf14fb2ed59efe5ea6cd6aba935d7e979f6715add99f4789f80d0b6d1d5f00e210df6a46d35da5bf6a132a0733be5146ae05fe8dc6db8 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/luafindfont + +name luafindfont.x86_64-darwinlegacy +category Package +revision 61207 +shortdesc x86_64-darwinlegacy files of luafindfont +containersize 348 +containerchecksum 871a4c20e067a7aed3e1c0703d513b5444de933c81b53c6ae442d9c6579135ae8219366c49bdc5808412c7245f48080560ac653be642669840f48e9c07046cd7 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/luafindfont + +name luafindfont.x86_64-linux +category Package +revision 61207 +shortdesc x86_64-linux files of luafindfont +containersize 344 +containerchecksum 997d407c45077a0cb5fffa4900b11171a44f363fc701230d8d1f1f810666f4b56b14c31f93b7ec48984c8f81fd52ad8903285c6b68e362db4acf2da584e0de74 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/luafindfont + +name luafindfont.x86_64-linuxmusl +category Package +revision 61207 +shortdesc x86_64-linuxmusl files of luafindfont +containersize 348 +containerchecksum 2a41d1382db4465c5becddcf3ba5e9e5bab5303b9a2e0eead7f697493aa647580a9a2155f145d41eb300fdff1f36f4bad9d92e97bbcf2710f47bab71fa83a41a +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/luafindfont + +name luafindfont.x86_64-solaris +category Package +revision 61207 +shortdesc x86_64-solaris files of luafindfont +containersize 340 +containerchecksum b77120bbe73ca704818c1671adc2864ce18e0a6caf313e6520f8879927db252817ae80393ef58797bd3abb49cd4ba4f9a2ce8b191b0f8b32b0b854261c7841f7 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/luafindfont + +name luagcd +category Package +revision 65396 +shortdesc Computation of gcd of integers inside LaTeX using Lua +relocated 1 +longdesc Using Lua, the luagcd package is developped to find the +longdesc greatest common divisor (gcd) of integers in LaTeX. The package +longdesc provides commands to obtain step-by-step computation of gcd of +longdesc two integers by using the Euclidean algorithm. In addition, the +longdesc package has the command to express gcd of two integers as a +longdesc linear combination. The Bezout's Identity can be verified for +longdesc any two integers using commands in the package. No particular +longdesc environment is required for the use of commands in the package. +longdesc It is written in Lua, and the TeX file has to be compiled with +longdesc the LuaLaTeX engine. +containersize 2548 +containerchecksum 16252382a588687de53735fc215e4a4b6a0036818af5a07ad1df8acb2fa63534079528082c3bf3da57c093ef994a2ee7e8d61224347ede8c5f01697b0de62e30 +doccontainersize 132448 +doccontainerchecksum 42a5d3732c3aba5e3bb2e80274aaeb33ac99e52b9a65ce4918a8dadc6972f2818a4acfa495d271c4deb64121e57c721481ea92a7b91062a7bc28ef8cdb9b7acb +docfiles size=40 + RELOC/doc/lualatex/luagcd/README.txt details="Readme" + RELOC/doc/lualatex/luagcd/luagcd.pdf details="Package documentation" + RELOC/doc/lualatex/luagcd/luagcd.tex +runfiles size=3 + RELOC/tex/lualatex/luagcd/luagcd.sty +catalogue-ctan /macros/luatex/latex/luagcd +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 1.0 + name luahbtex category TLCore -revision 57972 +revision 66186 shortdesc LuaTeX with HarfBuzz library for glyph shaping depend cm depend etex @@ -183905,156 +192873,147 @@ depend tex-ini-files depend unicode-data execute AddFormat name=luahbtex engine=luahbtex patterns=language.def,language.dat.lua options="luatex.ini" fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex containersize 460 -containerchecksum bb198606ca33912f75327b0799061a81aeb9e2315182001710929d5a7c786fc11b58a5eadcc186f2db21df01777904ada31058c0a03376c04020b213d9f7c519 -doccontainersize 30244 -doccontainerchecksum 9b7c72ad24d459b345552ee8ae05c047c61cf3e0b6eabb927e2a02bf62558f143e937463574bdb0cc60a0a4c8b2da3f86b1d9361275142519044051039275f1c +containerchecksum 30b1fcd361cff27688c65ecffbcffc65053696200abfccd543a14253b53a35de2af53b37f7ed1580510a8c63293d2d002cf4d9fd2d44f86678e2ecb09f02e4b8 +doccontainersize 30240 +doccontainerchecksum 3016c12de8386af715932819701a6da1b106c504a7d13ba9bb5a04999737709f474b50c08311c1d4c23b5532ba7c1546cb0585e5375babbcd2091adf52d05664 docfiles size=10 texmf-dist/doc/man/man1/luahbtex.1 texmf-dist/doc/man/man1/luahbtex.man1.pdf name luahbtex.aarch64-linux category TLCore -revision 58876 +revision 66547 shortdesc aarch64-linux files of luahbtex -containersize 2117792 -containerchecksum 0fad819c02ccde3b05b6d5b506138e4dd710a70c6c4b58ee81a45e4ceb2cb1f2509549f4b80b682a7a883ab122eea78d1a108fb28b7715c37247d2bffb8617ea -binfiles arch=aarch64-linux size=2019 +containersize 2200464 +containerchecksum 48760d387e3720bf6bb4ac7db074cb42d628b92c757d718ca8364931df3c9840e6d98b2a5ca4725a53b8c37d3f328df6771488f684b46ee2efc8e772ba376b62 +binfiles arch=aarch64-linux size=2080 bin/aarch64-linux/luahbtex name luahbtex.amd64-freebsd category TLCore -revision 58850 +revision 66509 shortdesc amd64-freebsd files of luahbtex -containersize 2187388 -containerchecksum cdeb0a8609c884a647b18ab17ce824816aeaa2dba8d254de3a5042135db9d24bbd52aa82957d442e0f02bb5eb367a3e9c6f177a44a9510733d03dd096575704b -binfiles arch=amd64-freebsd size=1939 +containersize 2280752 +containerchecksum cb950137b4d8d8d7abc4d2528f8ecb8379a240dcd960e42f9594970e31b3c4dcc4a42249d68739ce481155ab67e686a24fcd523fc9caaa3c6e3ec6a4b232c754 +binfiles arch=amd64-freebsd size=1985 bin/amd64-freebsd/luahbtex name luahbtex.amd64-netbsd category TLCore -revision 58866 +revision 66520 shortdesc amd64-netbsd files of luahbtex -containersize 2110640 -containerchecksum c8822a2a53baa9ec2513538720f1bee01d8f7a3ef1771d7d2305aaf53669e50dcdd75d6d9b19ab358d5381db0daff0cf67bec04378f3d03fc68a988a0c0c89b7 -binfiles arch=amd64-netbsd size=2711 +containersize 2201420 +containerchecksum edf006b8040a81f67f80d2d5ded80f7a73b60be41793b2f91335047f889ed878768a65d826238bbe307aa687eec1b94b42faddec4b429b292c194e9a336723a6 +binfiles arch=amd64-netbsd size=2836 bin/amd64-netbsd/luahbtex name luahbtex.armhf-linux category TLCore -revision 58911 +revision 66509 shortdesc armhf-linux files of luahbtex -containersize 1847732 -containerchecksum 05374239fe5f4b0656e6cdc227ab63b8c8b87b5435fa840f73ad7470f6cbd5a3614c7c14719b45611955a38506648ccc939ac7f3c802716aa09ac8565d4734df -binfiles arch=armhf-linux size=1653 +containersize 1925748 +containerchecksum 5ade4408defa3a83d5fdccd53b2eea0befdfacf480b52c32daac55ebf4fe658d5c8a3f0f9643e52547065874d3e12eaf26f2819eaacc06b6f38478ccee6e5360 +binfiles arch=armhf-linux size=1710 bin/armhf-linux/luahbtex -name luahbtex.i386-cygwin -category TLCore -revision 58851 -shortdesc i386-cygwin files of luahbtex -containersize 2047236 -containerchecksum 04a09df54da14bae9ef108c4592fd8e3a21dc7aca974891a0959ed37d16c9504a818f28ba5a48ed806cb8710a795b2e1b0f05f39c89b85a8eb3fcb84dbd7e590 -binfiles arch=i386-cygwin size=1884 - bin/i386-cygwin/luahbtex.exe - name luahbtex.i386-freebsd category TLCore -revision 58850 +revision 66509 shortdesc i386-freebsd files of luahbtex -containersize 2018016 -containerchecksum 6a2679762dabb8b8928af5b0fdddf2da1e69afd3d0e57e68b04decc07de87e7de4b299829eba33addce20876be21a0a06fb5a6f7f5706f09f3650d97747f66f4 -binfiles arch=i386-freebsd size=1794 +containersize 2102696 +containerchecksum 84c699ccba85f4f5255088794bca3331fc7859d12c464277eb089ef23bd5d9233bfd9fa8edd133140f4bc35187bf253cd441caed2975c055e21f36344f99d8e9 +binfiles arch=i386-freebsd size=1831 bin/i386-freebsd/luahbtex name luahbtex.i386-linux category TLCore -revision 58850 +revision 66511 shortdesc i386-linux files of luahbtex -containersize 2294104 -containerchecksum 1c5718a35c32d296b94a8031ea6a6afb08c098c97fbd6e356540b74b27db5233569eddafbc1cd25c43df9bfae46ef629afb49618b92bbc8077527529c12597be -binfiles arch=i386-linux size=2017 +containersize 2405804 +containerchecksum 40a8766529d9ae2e12c1fbce71c64982995a2c2875866be3ab5051b3557bee516a36b193e898d4f7544ae4982a18b94e129d92a9224bbf40cf915c2a6326288c +binfiles arch=i386-linux size=2092 bin/i386-linux/luahbtex name luahbtex.i386-netbsd category TLCore -revision 58866 +revision 66520 shortdesc i386-netbsd files of luahbtex -containersize 1956536 -containerchecksum 9529fc770fd68844f4779f516e686d4e102f916baafb25440125eb738fb541df593dec6f40bfec4795ff93b0faca59319c3a6559577b33b644db64a1d6ed6885 -binfiles arch=i386-netbsd size=2500 +containersize 2034128 +containerchecksum ab9052282a73f6e5e83312621169fbce14ce265c1476107da3d0bdf38d1a3354aa836e1ab438134f93dca6d474a4d35296401861ee22b48a450a675cc9f7943a +binfiles arch=i386-netbsd size=2610 bin/i386-netbsd/luahbtex name luahbtex.i386-solaris category TLCore -revision 58850 +revision 66509 shortdesc i386-solaris files of luahbtex -containersize 2023452 -containerchecksum d61429fdfa108a361885ccd787980866b7cce8a47622ef8931dbcc084367c4206f2542ace5d7ee070ead92839fce2db00251f2ef8b15071faadf97841370feb8 -binfiles arch=i386-solaris size=1721 +containersize 2108732 +containerchecksum 60ffbf386e0b39213b612e3675707b37611a866df2d94207f101f56d3785a4c9c80c2580a0833fb726e5e57502efd63cba60eb81140a9ac82de1d30e348eb8eb +binfiles arch=i386-solaris size=1774 bin/i386-solaris/luahbtex name luahbtex.universal-darwin category TLCore -revision 58850 +revision 66529 shortdesc universal-darwin files of luahbtex -containersize 3565996 -containerchecksum cb92dcf43b638f50205787155d8ac8102735510199435b2d55ce5fa667fac55d205f63401bdd97531aa276ce210b05d642923d019c428da2c2a5dea0fd10f868 -binfiles arch=universal-darwin size=3572 +containersize 3681308 +containerchecksum f57238d67bf6b233d93d618fa78396c00ad576e0f5869462557b225f6a5dd0a62d5056a93c4dbb4d80d617e4792cfc57494356b3de5a9d15559808eae758c9c9 +binfiles arch=universal-darwin size=3649 bin/universal-darwin/luahbtex -name luahbtex.win32 +name luahbtex.windows category TLCore -revision 58843 -shortdesc win32 files of luahbtex -containersize 1559428 -containerchecksum 7092193520820ce5a9622bf9ea75fd1ed568a9e73813716a45633ce2dbc9496b6e46f42547b1b39a0ab2e6f59f129b75887106e06a4b8188a7d18ffff3284846 -binfiles arch=win32 size=1447 - bin/win32/luahbtex.dll - bin/win32/luahbtex.exe +revision 66431 +shortdesc windows files of luahbtex +containersize 1914268 +containerchecksum 57891f36ae0d4d58f1bb9e60ba6d54ede95dfbdb58b8a5f069b98a0f2583c4d7a70482b108af619a2160c47d647474dfea4d8ea3513c66de496cdbad0858a3f8 +binfiles arch=windows size=1714 + bin/windows/luahbtex.dll + bin/windows/luahbtex.exe name luahbtex.x86_64-cygwin category TLCore -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of luahbtex -containersize 2041268 -containerchecksum 771596387e3ce36cf9eb4a53721aa13f82db1d4ec12acc1a21efbc537eda768e496cbaf41ef9bc9bd625d3fc1f8e97f82a4b3bd3c5acf89905644932b0ae02a0 -binfiles arch=x86_64-cygwin size=1814 +containersize 2099556 +containerchecksum 4bc4f47cd58cf3779252a9c858bc729869489b25bea12ef3ddd0b4dbb5178dca72d227d524805074810319510a6be4e0aae07b72564221ad61836d512c02c9ab +binfiles arch=x86_64-cygwin size=1864 bin/x86_64-cygwin/luahbtex.exe name luahbtex.x86_64-darwinlegacy category TLCore -revision 58850 +revision 66509 shortdesc x86_64-darwinlegacy files of luahbtex -containersize 1876224 -containerchecksum d3ecbe8dd7f22ad9d1be594fd25a52c11c542d035d1e647e8cc9356f4f1861035380d81902e90beb76cf7c39f30689ed5b2f77e3ffbbd8d7cd9812aa9f2ceec3 -binfiles arch=x86_64-darwinlegacy size=1663 +containersize 1927100 +containerchecksum 4fb5349bf124d23ee3bf5f5672b87c75643396d0d6f0e094e49f9a551645313e56dc43a4bf59555e57e20716bfed355835a5dbe717d8244e16bce29979d6c015 +binfiles arch=x86_64-darwinlegacy size=1704 bin/x86_64-darwinlegacy/luahbtex name luahbtex.x86_64-linux category TLCore -revision 58872 +revision 66511 shortdesc x86_64-linux files of luahbtex -containersize 2222500 -containerchecksum 145821670051bc9021c05525fa045832db6be449e51453e8d2b2413f921120f08e60d042d8d371776514143a49b48657dcd0bf74aa8c61326827cb87f22711f7 -binfiles arch=x86_64-linux size=1896 +containersize 2355816 +containerchecksum 8697cb1ed3e8604be3af02ed9b07564687e780534f0bcf2ee0973d2c973b366ebf9e07a7640ea433487e44831c6ab922f19c6f8009750d949174fc31243ced0a +binfiles arch=x86_64-linux size=1967 bin/x86_64-linux/luahbtex name luahbtex.x86_64-linuxmusl category TLCore -revision 58850 +revision 66511 shortdesc x86_64-linuxmusl files of luahbtex -containersize 2306652 -containerchecksum 996644a5500226afc679f6c9c0fdba86b919d4b759843926ca004343714c9eba991033a365fc28b186ca45650d4dc5fd38fe1dbaae49310ad44e29c1adba59c9 -binfiles arch=x86_64-linuxmusl size=2039 +containersize 2445908 +containerchecksum d9333495062d3b6194ee5ad173d73a5ff045969df0cf674b17be044ff84e6e13326f81d421392b0a97729c1121d21769d097feea50c18b65e529f739b828404c +binfiles arch=x86_64-linuxmusl size=2122 bin/x86_64-linuxmusl/luahbtex name luahbtex.x86_64-solaris category TLCore -revision 58850 +revision 66509 shortdesc x86_64-solaris files of luahbtex -containersize 2242516 -containerchecksum 74c742a555821c84ffcb9ba1fd77276cd1de5dcc4e2d80a5e18fe5d4f3784e73a57e91ab086f4427c80e1654b06651241771c2a86034984a9d4fa1b2efe083b3 -binfiles arch=x86_64-solaris size=1921 +containersize 2336832 +containerchecksum dd97190322ce1c7b0995dbd744730792ee420b471742baa169430cfd29a90b755970d9a0175a785f8e7736a64ec515688b876799bd89c4b7bbbb14b53b5fe554 +binfiles arch=x86_64-solaris size=1987 bin/x86_64-solaris/luahbtex name luahyphenrules @@ -184407,7 +193366,7 @@ catalogue-version 0.03 name luajittex category TLCore -revision 57972 +revision 66186 shortdesc LuaTeX with just-in-time (jit) compiler, with and without HarfBuzz depend cm depend etex @@ -184422,9 +193381,9 @@ depend unicode-data execute AddFormat name=luajithbtex engine=luajithbtex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex execute AddFormat name=luajittex engine=luajittex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8,luatex containersize 484 -containerchecksum 01777af9a468b6216417c5158034c3dea3cfb1c3ca7d28f1c4ca2b239fe569fbde410d17662bf9a10f5fddfd1bb6541c505d772e705832b52a1c2d6225d0fc6f +containerchecksum 21313a5786f2bea08ce55db3a7beedabaf66f3331bd0eac1f8f3d7b926f68e103b14b1a5beaa271c37b60fc56735cc180e424f91db62f6e740530a65495d8e82 doccontainersize 30360 -doccontainerchecksum a6a17f70a44655e1aba11ac1353cc13b36bee762083be76a31c04d90ae73d021659219a3a741b70f0b43888d6b6a6ab356f378fa5850a23ce7423b28a721e924 +doccontainerchecksum 7637835fae934f4fb1aea954270281a986733d0e0592204346edc290f2cd7d5200ee2fa0d9e15a27be8221c3c990a8c3d4654e314f96441a65c197d3bd259129 docfiles size=20 texmf-dist/doc/man/man1/luajithbtex.1 texmf-dist/doc/man/man1/luajithbtex.man1.pdf @@ -184433,11 +193392,11 @@ docfiles size=20 name luajittex.aarch64-linux category TLCore -revision 58876 +revision 66547 shortdesc aarch64-linux files of luajittex -containersize 3501672 -containerchecksum a3acdb8712494835cc2df59ab511573812573161d9c6a2bd060179c74eb482d44cef3fca3d869c5283d4c9176e620b22c45b303ee3b0bc2787e06ac5ecc705e2 -binfiles arch=aarch64-linux size=3855 +containersize 3598668 +containerchecksum 9c6bbb96510ced1a7206af23d374a5b61e0f901f2ddc8ae4c523dfa0cab45b6c826bc28157e0d1eff999e7be4bc182a6ebd08033a0fd094616c4a1c03d023284 +binfiles arch=aarch64-linux size=3907 bin/aarch64-linux/luajithbtex bin/aarch64-linux/luajittex bin/aarch64-linux/texluajit @@ -184445,11 +193404,11 @@ binfiles arch=aarch64-linux size=3855 name luajittex.amd64-freebsd category TLCore -revision 58850 +revision 66509 shortdesc amd64-freebsd files of luajittex -containersize 2709388 -containerchecksum dbd148f4c02ab030c356d26dbaa8aec89d381b31e77f746b9dbb256355e3b0c1d7c610eb9d66ec078f9634df28e6691b4df731d9c2dd1130c9c1ba6c410cc3e0 -binfiles arch=amd64-freebsd size=3747 +containersize 2817240 +containerchecksum a67d179a97c5186f74de57a0fb28bfbe693bdd3f0c225de232d2c888f9b46bf1a3998a77f5cfda4951889eed34903cbbb60f5a0fd393424cd7d010a46d5b2daf +binfiles arch=amd64-freebsd size=3800 bin/amd64-freebsd/luajithbtex bin/amd64-freebsd/luajittex bin/amd64-freebsd/texluajit @@ -184457,11 +193416,11 @@ binfiles arch=amd64-freebsd size=3747 name luajittex.amd64-netbsd category TLCore -revision 58866 +revision 66520 shortdesc amd64-netbsd files of luajittex -containersize 3908192 -containerchecksum 5ca6628ff1902fdb4bcfdcb96a51a5f4d39662214514b95fc0a67acccf6b45b43c8707faccbe5c2d59c7af170b77089e445c6f83fea7dd918b66f0dc3142f327 -binfiles arch=amd64-netbsd size=4877 +containersize 4021088 +containerchecksum 28fdf4e2e03623b64cccb64138679f39046bb4f8b2f1ac17cda6f4dab30c0d9604c82cc165f5e32111abdb91d82b78811ff5e2f44165d301e8f2fcb75e718751 +binfiles arch=amd64-netbsd size=5010 bin/amd64-netbsd/luajithbtex bin/amd64-netbsd/luajittex bin/amd64-netbsd/texluajit @@ -184469,36 +193428,23 @@ binfiles arch=amd64-netbsd size=4877 name luajittex.armhf-linux category TLCore -revision 58911 +revision 66509 shortdesc armhf-linux files of luajittex -containersize 2124236 -containerchecksum fa97e1e66981f2e348c4476b87d91e3615a465ec0b8bb706ce6c21413c986977a88b681401bfac4ca9004ebbb73f7ae3a7b6aa37d2550587eccd1fc994bbcc82 -binfiles arch=armhf-linux size=3131 +containersize 2207968 +containerchecksum e3ececa60d6334fac541100a4c1a41c4b155cc4b1952836c014dba366e9c22fee40e16460b303a5bcf4707c99f150df6e6999c8828981688efc21d5152c197d5 +binfiles arch=armhf-linux size=3191 bin/armhf-linux/luajithbtex bin/armhf-linux/luajittex bin/armhf-linux/texluajit bin/armhf-linux/texluajitc -name luajittex.i386-cygwin -category TLCore -revision 58851 -shortdesc i386-cygwin files of luajittex -containersize 2545892 -containerchecksum 0311edd2a17fc49c650801d9775869bea4da3f168aadf53a88716196ce9c4628392716ec4a3bdd71b8e9e060e9f0bf45d81be886418ed5b93567b39d65490bfe -binfiles arch=i386-cygwin size=3567 - bin/i386-cygwin/cygtexluajit-2.dll - bin/i386-cygwin/luajithbtex.exe - bin/i386-cygwin/luajittex.exe - bin/i386-cygwin/texluajit - bin/i386-cygwin/texluajitc - name luajittex.i386-freebsd category TLCore -revision 58850 +revision 66509 shortdesc i386-freebsd files of luajittex -containersize 2462536 -containerchecksum f89ad6e82f20e7df6aa488f232ed1505887341b1880459d442885101c349e9adb1e510ac1cabd6edd0b8d1989102c6e69c606b49eabbade5af06e32d36682e72 -binfiles arch=i386-freebsd size=3462 +containersize 2581040 +containerchecksum 8320249af3ee740368b380ca34538b4e29aba2a45cd5bd180b89047e93ea70edd67a539a79af6cc9dbda29182fcb5dc6153aba0f90415a0673bce9605ac1f6b3 +binfiles arch=i386-freebsd size=3501 bin/i386-freebsd/luajithbtex bin/i386-freebsd/luajittex bin/i386-freebsd/texluajit @@ -184506,11 +193452,11 @@ binfiles arch=i386-freebsd size=3462 name luajittex.i386-linux category TLCore -revision 58850 +revision 66511 shortdesc i386-linux files of luajittex -containersize 2686820 -containerchecksum a4f9e96407b60cad6123dcf95c86f75f351452a0910229745376c6230f913ac69d55d51f4bb91524c919471cb77188162c20cd4a5d08a13e77d6d79a902daaa8 -binfiles arch=i386-linux size=3774 +containersize 3836024 +containerchecksum 4c573ad45906b806687b1dd6d1b715f8deb19a3c865ee5f104a5bc510d399c3c494db301eba05d0468649b643cca6deda19d9d43b972faa23c5e899ed2eadd23 +binfiles arch=i386-linux size=3859 bin/i386-linux/luajithbtex bin/i386-linux/luajittex bin/i386-linux/texluajit @@ -184518,62 +193464,50 @@ binfiles arch=i386-linux size=3774 name luajittex.i386-netbsd category TLCore -revision 58866 +revision 66520 shortdesc i386-netbsd files of luajittex -containersize 3439536 -containerchecksum 5d5477b023a0cd1e6a2f4b6e7cbf6899379253f57f7efa1abd8eccf4836970d5ce35931c428852bb052beb36c0de312d7e2d60251515f5d043d0f07e6518b4bc -binfiles arch=i386-netbsd size=4464 +containersize 3589792 +containerchecksum 73daadf2f59ba0a31ac4174cd292f52e6220841e58e81c434052dcf990a33b7ad94af04310bec5deaa220c0ec0d2901fba7255e87f650d2baa66aad6d2e314c7 +binfiles arch=i386-netbsd size=4579 bin/i386-netbsd/luajithbtex bin/i386-netbsd/luajittex bin/i386-netbsd/texluajit bin/i386-netbsd/texluajitc -name luajittex.i386-solaris -category TLCore -revision 58850 -shortdesc i386-solaris files of luajittex -containersize 2417088 -containerchecksum c3f5285326c60527db1ffaede48523fd815ff310e87d0e9960861c8519ae5c15de184ed27c936dc4823d4d8a165bb673f64770a5b0400c604ebb4ba83060d3be -binfiles arch=i386-solaris size=3245 - bin/i386-solaris/luajithbtex - bin/i386-solaris/luajittex - bin/i386-solaris/texluajit - bin/i386-solaris/texluajitc - name luajittex.universal-darwin category TLCore -revision 58850 +revision 66529 shortdesc universal-darwin files of luajittex -containersize 6527340 -containerchecksum db91da103f47c3c6f09e80b88df70fe6f3690a590f212411ddc4f473a0d48e3fc32c826c6628f0fccb5f3b5323e2f3fc6a9e179741746ce38846b3c933bc4d7e -binfiles arch=universal-darwin size=6860 +containersize 6663692 +containerchecksum ccc9a255087c86ae9045fad64203c1e57c341996d1ef7abc86026888801c9ad560a50aba66ca4054c537f3c76ffee02f168362e4c667f4bb5639c569df58f7dd +binfiles arch=universal-darwin size=6941 bin/universal-darwin/luajithbtex bin/universal-darwin/luajittex bin/universal-darwin/texluajit bin/universal-darwin/texluajitc -name luajittex.win32 -category TLCore -revision 58843 -shortdesc win32 files of luajittex -containersize 2203984 -containerchecksum fefb913b87fa857317f9f9d3064d066ebbdf1697e77477ec1f839d66d37771390ed05f352e87b9219d954b7ef8a814cf98ecc8e0e8a072d7a21ed61df360c61b -binfiles arch=win32 size=3077 - bin/win32/luajit51.dll - bin/win32/luajithbtex.dll - bin/win32/luajithbtex.exe - bin/win32/luajittex.dll - bin/win32/luajittex.exe - bin/win32/texluajit.exe - bin/win32/texluajitc.exe +name luajittex.windows +category TLCore +revision 66431 +shortdesc windows files of luajittex +containersize 3870028 +containerchecksum 8a227b2d57945615ce79c2c0a242eeb2e6ef919210f5263f2f1820dd67d22605eca6db8e7a9545222e3553db8eac427d130474359f2db0cab3de9b79fb85906f +binfiles arch=windows size=3856 + bin/windows/luajit51w64.dll + bin/windows/luajithbtex.dll + bin/windows/luajithbtex.exe + bin/windows/luajittex.dll + bin/windows/luajittex.exe + bin/windows/texluajit.exe + bin/windows/texluajitc.exe name luajittex.x86_64-cygwin category TLCore -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of luajittex -containersize 2480732 -containerchecksum 6d2b6846bd276354db735e21197aa6d37df9ceedc692e953f305846292cf95187013e5868c20e16ee409f3045472abf546f6f6433d397dde6eba9d9b7ccb71f2 -binfiles arch=x86_64-cygwin size=3447 +containersize 2553560 +containerchecksum 5ced5a0bbbdd71dff7ce029ad0a8591465264a21984f42cdfc4f809b93c6af5ee0107c991a1240da90b1d8a40293b1c6ea81964c3787ff4d6e8a818a2de3500a +binfiles arch=x86_64-cygwin size=3497 bin/x86_64-cygwin/cygtexluajit-2.dll bin/x86_64-cygwin/luajithbtex.exe bin/x86_64-cygwin/luajittex.exe @@ -184582,11 +193516,11 @@ binfiles arch=x86_64-cygwin size=3447 name luajittex.x86_64-darwinlegacy category TLCore -revision 58850 +revision 66509 shortdesc x86_64-darwinlegacy files of luajittex -containersize 2246548 -containerchecksum 45718ebe3f1735bc198d022e0b56f01569bd839f7913d8ae369d19106eebaa2b7b7d87eb263da658cf623e825707c580c64d613247f2e8ef8f84b2d8f59afb61 -binfiles arch=x86_64-darwinlegacy size=3204 +containersize 2289348 +containerchecksum 7b38a0e9348629893304a741229c29071532a0e9ca9ba675e84e26f1ef42b1978a5687e42e571acfa15d7bda39c62f80d355043b174aed4a57b49d52ae9c37c5 +binfiles arch=x86_64-darwinlegacy size=3248 bin/x86_64-darwinlegacy/luajithbtex bin/x86_64-darwinlegacy/luajittex bin/x86_64-darwinlegacy/texluajit @@ -184594,11 +193528,11 @@ binfiles arch=x86_64-darwinlegacy size=3204 name luajittex.x86_64-linux category TLCore -revision 58872 +revision 66511 shortdesc x86_64-linux files of luajittex -containersize 2675100 -containerchecksum 3d14866c3af00cd3ebc5485ea04038d31b08eb5af68cf06ba23b1ebd343cdbfb5b2e49851ad066c4678ad4b6351bcc952e4603fe40e0ae51d908556d2235b436 -binfiles arch=x86_64-linux size=3585 +containersize 2813116 +containerchecksum 7c9085324dad7c17c8b8a135623ddd01875e1cb87efb129aa4f4594ce184d616d9a0baf938341f5315ceea2e2011982cdbc8b36217aaf4fec9d8d38137c4215b +binfiles arch=x86_64-linux size=3664 bin/x86_64-linux/luajithbtex bin/x86_64-linux/luajittex bin/x86_64-linux/texluajit @@ -184606,11 +193540,11 @@ binfiles arch=x86_64-linux size=3585 name luajittex.x86_64-linuxmusl category TLCore -revision 58850 +revision 66511 shortdesc x86_64-linuxmusl files of luajittex -containersize 3849324 -containerchecksum 18ba7afad0b839b9bdade94690f1d9813341029409d4635f48797583dae8b03b2cd3399609d8190d3fd4fe5d0df34b1cd1c4085829e1aedcb53f421f644100f5 -binfiles arch=x86_64-linuxmusl size=3871 +containersize 4031752 +containerchecksum a0668735f44d8058b036ab19401c34b8da18ddf0a5031329501deda5a85de2f25dad76c315193437a5c370bd9ae919dbd8bcda15aa2b090707b21ee6012d3d13 +binfiles arch=x86_64-linuxmusl size=3965 bin/x86_64-linuxmusl/luajithbtex bin/x86_64-linuxmusl/luajittex bin/x86_64-linuxmusl/texluajit @@ -184618,7 +193552,7 @@ binfiles arch=x86_64-linuxmusl size=3871 name luakeys category Package -revision 57463 +revision 65533 shortdesc A Lua module for parsing key-value options relocated 1 longdesc This package provides a Lua module that can parse key-value @@ -184628,24 +193562,26 @@ longdesc entirely by using the Lua language and does not rely on TeX. longdesc Therefore this package can only be used with the TeX engine longdesc LuaTeX. Since luakeys uses LPeg, the parsing mechanism should longdesc be pretty robust. -containersize 4904 -containerchecksum 873879c6495479db77cf0e7a0f5ac99ad2eb67088d1d4abaf55e4ec341c07103ced954310b67f5ee0bec6986793f9e68613b7a85c3a8fee8b5697e0a05f1e1c5 -doccontainersize 140576 -doccontainerchecksum 58b2550998915a20226ef4890255c8a90aad9faf248a0c2a880b086941af256d9f83edc2b29ed615da6355a5bb5d95605580824581ebd7ed191d82b92786e8ac -docfiles size=40 +containersize 14240 +containerchecksum 618719877ab11bb672c319bcc078a625bc92b4d3a783eff8414f6c9597ec8ea3225822afbeb0d1bb04e8889cc3003f4a1ed8063e1ecca410ec6f0170fa55eb00 +doccontainersize 435504 +doccontainerchecksum be88aac81b85730c0cd85ab76541b8af01ca85326a4449168062ff80690db7d90669dff794b3f5926f1344a0de03289958fd4d2cf0cd2eb4b593dd052577e01c +docfiles size=121 RELOC/doc/luatex/luakeys/README.md details="Readme" - RELOC/doc/luatex/luakeys/luakeys-debug.tex + RELOC/doc/luatex/luakeys/documentation.tex RELOC/doc/luatex/luakeys/luakeys.pdf details="Package documentation" - RELOC/doc/luatex/luakeys/luakeys.tex -runfiles size=5 +runfiles size=19 RELOC/tex/luatex/luakeys/luakeys-debug.sty + RELOC/tex/luatex/luakeys/luakeys-debug.tex RELOC/tex/luatex/luakeys/luakeys.lua + RELOC/tex/luatex/luakeys/luakeys.sty + RELOC/tex/luatex/luakeys/luakeys.tex catalogue-contact-bugs https://github.com/Josef-Friedrich/luakeys/issues catalogue-contact-repository https://github.com/Josef-Friedrich/luakeys catalogue-ctan /macros/luatex/generic/luakeys catalogue-license lppl1.3c catalogue-topics keyval luatex -catalogue-version 0.1 +catalogue-version 0.13.0 name lualatex-doc category Package @@ -184698,7 +193634,7 @@ catalogue-version 1.0 name lualatex-math category Package -revision 56541 +revision 61464 shortdesc Fixes for mathematics-related LuaLaTeX issues relocated 1 longdesc The package patches a few commands of the LaTeX2e kernel and @@ -184710,28 +193646,28 @@ longdesc package to this package since they are not directly related to longdesc Unicode mathematics typesetting. depend etoolbox depend filehook -containersize 3192 -containerchecksum a5568fa178fef7d7348a8e1b72f5671a5dc00c9c8ec59dded7da3fb62105697cb09c2cdb4f0c58fd5cc16b8966a66554cd7ba0650d757cc16377406de35d1005 -doccontainersize 198344 -doccontainerchecksum 41f38f8e1bafbb63b7a83f3087bf8aa0bfd7d946206d07bba2dc93d99049ca101869c575d3f2c8b732f9beda719bdd08127a047700052ed915bffc88001299f9 -docfiles size=52 +containersize 3332 +containerchecksum 16c945e72165acd9f4bcf20f81e6c5df9ec22f19d45cbb8f076763d2d1a1a2e230938dabbadfcc065e3a060487885ac2edb223aae22d12f6981f5fca5c0f951f +doccontainersize 201244 +doccontainerchecksum f5a8db238ae096b7b1a2eaa84643f063cd28e08b328cbcc780171a60c571e858a1cd1941a8ea9053392a8c65b965a81c8cd585ce2accb27e797e3e4e8ad3a127 +docfiles size=53 RELOC/doc/lualatex/lualatex-math/MANIFEST RELOC/doc/lualatex/lualatex-math/README details="Readme" RELOC/doc/lualatex/lualatex-math/lualatex-math.pdf details="Package documentation" language="en" -srccontainersize 9236 -srccontainerchecksum c06e83d733d9d8e380b2f688c8b21db85cd3d18be8b9cf37cc0af6b9dbf279db70d2f4d12fe879c8ce2628a1966708a117be5c72bc4dd535fa8cd431f8ed88f0 -srcfiles size=8 +srccontainersize 9532 +srccontainerchecksum e04a36a2280fbccb9572539ebc9bafba4edb7ccada25c4b3faadaa61c2f4458d9e9a90e54fa00b5ba675e59f42ed2d076b39918e5c126e2f619f2f69ff904d81 +srcfiles size=9 RELOC/source/lualatex/lualatex-math/lualatex-math.dtx RELOC/source/lualatex/lualatex-math/lualatex-math.ins -runfiles size=3 +runfiles size=4 RELOC/tex/lualatex/lualatex-math/lualatex-math.lua RELOC/tex/lualatex/lualatex-math/lualatex-math.sty catalogue-contact-bugs https://github.com/phst/lualatex-math/issues catalogue-contact-repository https://github.com/phst/lualatex-math catalogue-ctan /macros/luatex/latex/lualatex-math catalogue-license lppl1.3c -catalogue-topics maths luatex -catalogue-version 1.9 +catalogue-topics maths luatex expl3 +catalogue-version 1.12 name lualatex-truncate category Package @@ -184765,27 +193701,27 @@ catalogue-version 1.1 name lualibs category Package -revision 57277 +revision 64615 shortdesc Additional Lua functions for LuaTeX macro programmers relocated 1 longdesc Lualibs is a collection of Lua modules useful for general longdesc programming. The bundle is based on lua modules shipped with longdesc ConTeXt, and made available in this bundle for use independent longdesc of ConTeXt. -containersize 121836 -containerchecksum ccdbde1b5b9abd3478e3912ff20b1639c3504f06433eb10cb174a3a413642629ad9eb0ecb3fc7dfe3ee1e7e2dac2e552dd86de98bd89e3a65bc6736bedf181af -doccontainersize 87696 -doccontainerchecksum 4d3771a5cee5a1ef7a7a7d3d88cf44020563c8bf50328bd6cea42a8ddc731da294e6b300ed9318030b00f0ccecc0de8667382d41727dc02353e68fe635d0aa19 +containersize 131392 +containerchecksum 4c58257198d93adf140d83adc043da409e84195ec37123c9738930702efade88c85faa83173591f1862bb5db0ec3da6bd70bc01479d605365a9fc200ecbc204c +doccontainersize 87452 +doccontainerchecksum 274eae19e558c1c6b0516154a4848353746b7329bd18599c6d801ad60f8849c1275418744942baf7e25a8d6360d21fce37a931c777aa2df9bd34a8887cedd15b docfiles size=28 RELOC/doc/luatex/lualibs/LICENSE RELOC/doc/luatex/lualibs/NEWS RELOC/doc/luatex/lualibs/README.md details="Readme" RELOC/doc/luatex/lualibs/lualibs.pdf details="Package documentation" -srccontainersize 8572 -srccontainerchecksum f504562bce245c51567eb54963de87702a4651b73bce71144d2dbd91e6f9894c5d20fc43ae7a7d68c92995f6cc077bcf76875fea7309a09b288e6bdde2d55222 +srccontainersize 8612 +srccontainerchecksum b0c4f3ebfa83c976d96452a0d33f903344ccc8df1f2c7a5237fe05f8d8b99ed44f737707e24c1847b520a8c93989308214c6f06e211e2893b7b96c841b1c8ab4 srcfiles size=7 RELOC/source/luatex/lualibs/lualibs.dtx -runfiles size=189 +runfiles size=207 RELOC/tex/luatex/lualibs/lualibs-basic-merged.lua RELOC/tex/luatex/lualibs/lualibs-basic.lua RELOC/tex/luatex/lualibs/lualibs-boolean.lua @@ -184795,7 +193731,6 @@ runfiles size=189 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 @@ -184816,22 +193751,123 @@ runfiles size=189 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-sac.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-util-zip.lua RELOC/tex/luatex/lualibs/lualibs.lua catalogue-contact-repository https://github.com/latex3/lualibs catalogue-contact-support https://github.com/latex3/lualibs/issues catalogue-ctan /macros/luatex/generic/lualibs catalogue-license gpl2 catalogue-topics lua-supp luatex -catalogue-version 2.73 +catalogue-version 2.75 + +name lualinalg +category Package +revision 65834 +shortdesc A linear algebra package for LaTeX +relocated 1 +longdesc The lualinalg package is developed to perform operations on +longdesc vectors and matrices defined over the field of real or complex +longdesc numbers inside LaTeX documents. It provides flexible ways for +longdesc defining and displaying vectors and matrices. No particular +longdesc environment of LaTeX is required to use commands in the +longdesc package. The package is written in Lua, and tex file is to be +longdesc compiled with the LuaLaTeX engine. The time required for +longdesc calculations is not an issue while compiling with LuaLaTeX. +longdesc There is no need to install Lua on the user's system as TeX +longdesc distributions (TeX Live or MikTeX) come bundled with LuaLaTeX. +longdesc It may also save users' efforts to copy vectors and matrices +longdesc from other software (which may not be in LaTeX-compatible +longdesc format) and to use them in a tex file. The vectors and matrices +longdesc of reasonable size can be handled with ease. The package can be +longdesc modified or extended by writing custom Lua programs. +containersize 8152 +containerchecksum 18ff75c7153af357e5913b01cd4d9ba8fd5e4225fb503f63dea5d9d8af6b0f13189371d04dc8ced3bfa91d9e25af479391e13ea3f1f4cf30485f51536867cc17 +doccontainersize 260860 +doccontainerchecksum eb07f1a76292facef0a93d4d407da76e18c4638ef5a51f44fa71dc7a7e3ee3e368f82bb780b67820547457ec3eaae1b6327c166705966a65f71395cfad4958ef +docfiles size=107 + RELOC/doc/lualatex/lualinalg/2dvec.jpg + RELOC/doc/lualatex/lualinalg/3dvec.jpg + RELOC/doc/lualatex/lualinalg/README.txt details="Readme" + RELOC/doc/lualatex/lualinalg/lualinalg.pdf details="Package documentation" + RELOC/doc/lualatex/lualinalg/lualinalg.tex +runfiles size=13 + RELOC/tex/lualatex/lualinalg/lualinalg.sty + RELOC/tex/lualatex/lualinalg/lualinalg_complex.lua +catalogue-ctan /macros/luatex/latex/lualinalg +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 1.2 + +name luamathalign +category Package +revision 63226 +shortdesc More flexible alignment in amsmath environments +relocated 1 +longdesc Allow aligning mathematical expressions on points where where +longdesc direcly using & is not possible, especially in nested macros or +longdesc environments. +containersize 4076 +containerchecksum 61a2960d103cad9cd9776de0c08b8d2167f6272484da2a7ee067951f7bcbeaa683e046a053c1f4d35ab83c8d70fb96e9b7b55566852d2262162b90c1a63f0b80 +doccontainersize 393088 +doccontainerchecksum 96a1fd4016b189d31c966faeba0942d4b3bf24208ebc6c03281336af6d86504f552f0bb705a30e6ff108ff692de969900a229b061f7bc91c6cbae68fa42e8143 +docfiles size=99 + RELOC/doc/lualatex/luamathalign/README.md details="Readme" + RELOC/doc/lualatex/luamathalign/build.lua + RELOC/doc/lualatex/luamathalign/luamathalign.pdf details="Package documentation" +srccontainersize 5704 +srccontainerchecksum 7f4c636a013d6fe8f0771ff3d3234cc2b5f098d0369d9ca73f3aea29dd47e609ce56ba20cec0dbeb782988200b8fffbf62c1957055d074d21b98051d8c155ea1 +srcfiles size=6 + RELOC/source/lualatex/luamathalign/luamathalign.dtx +runfiles size=6 + RELOC/tex/lualatex/luamathalign/luamathalign-luacmd.lua + RELOC/tex/lualatex/luamathalign/luamathalign.lua + RELOC/tex/lualatex/luamathalign/luamathalign.sty +catalogue-contact-bugs https://github.com/zauguin/luamathalign/issues +catalogue-contact-repository https://github.com/zauguin/luamathalign +catalogue-ctan /macros/luatex/latex/luamathalign +catalogue-license lppl1.3c +catalogue-topics font-maths luatex +catalogue-version 0.3 + +name luamaths +category Package +revision 65400 +shortdesc Provide standard mathematical operations inside LaTeX documents using Lua +relocated 1 +longdesc The luamaths package is developed to perform standard +longdesc mathematical operations inside LaTeX documents using Lua. It +longdesc provides an easy way to perform standard mathematical +longdesc operations. There is no particular environment in the package +longdesc for performing mathematical operations. The package commands +longdesc can be used in any environment (including the mathematics +longdesc environment). There is no need to install Lua on users system +longdesc as TeX distributions (TeX Live or MikTeX) come bundled with +longdesc LuaLaTeX. +containersize 1160 +containerchecksum 825e0a28dbf1dbc09aa430b25fbac824de2bc2af14ed9d23970e3b1b8178548c11c9822b5c45b1035250e147a5cd1d0288f825f270bbf377c8f6e786c51f8b0d +doccontainersize 148176 +doccontainerchecksum effa366dd57fd545b4f18112ba6798e1320fecb09fb6300873a9b48c318ebe7c07d5af8b5a14ddf6926d24c0ba0a1caded6c0c368113a159c5d73633464796d6 +docfiles size=49 + RELOC/doc/lualatex/luamaths/README.txt details="Readme" + RELOC/doc/lualatex/luamaths/luamaths.bib + RELOC/doc/lualatex/luamaths/luamaths.pdf details="Package documentation" + RELOC/doc/lualatex/luamaths/luamaths.tex +runfiles size=1 + RELOC/tex/lualatex/luamaths/luamaths.sty +catalogue-ctan /macros/luatex/latex/luamaths +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 1.0 name luamesh category Package -revision 55475 +revision 63875 shortdesc Computes and draws 2D Delaunay triangulation relocated 1 longdesc The package allows to compute and draw 2D Delaunay @@ -184841,15 +193877,14 @@ longdesc (with luamplib) or by TikZ. The Delaunay triangulation longdesc algorithm is the Bowyer and Watson algorithm. Several macros longdesc are provided to draw the global mesh, the set of points, or a longdesc particular step of the algorithm. -containersize 12096 -containerchecksum 22938a5a3bc612727a5075dbf63ed60be78629a72a9f9c495f611b9e33e2da2e3d9a4df2f2bbe787319ce91e1312e4f7614f95fef071fc330694004d4089a085 -doccontainersize 226344 -doccontainerchecksum 22a8a27a6591cc74c0063c12a895a299a080302981d632048405a3adeadbd12e2f72e8eb58b94d72ab26c966ad68193a6f129dd65860a021d56edde89e5e4932 -docfiles size=162 +containersize 12872 +containerchecksum e30e6f2bef6958c2f76df6aae5ca5899b91f41fc35afdce24840e2d028222c31a0613ba3c7eef27629686137f15eac24d3b97b7e0fc33b5d91adb7b766c0279a +doccontainersize 251676 +doccontainerchecksum 286dc5fb713f06fccf7195f317791a8c775ddcaeb8cea4004fb7a77882bec36c60679ed9ef725128ff354c7230becdcc623683fb78eac9b24cf044f9cc97af1d +docfiles size=168 RELOC/doc/lualatex/luamesh/README details="Readme" RELOC/doc/lualatex/luamesh/animation-crop.pdf RELOC/doc/lualatex/luamesh/biblio.bib - RELOC/doc/lualatex/luamesh/dum.tex RELOC/doc/lualatex/luamesh/fond.mp RELOC/doc/lualatex/luamesh/fond.pdf RELOC/doc/lualatex/luamesh/luamesh-doc.pdf details="Package documentation" @@ -184861,67 +193896,143 @@ docfiles size=162 RELOC/doc/lualatex/luamesh/maillagev4.msh RELOC/doc/lualatex/luamesh/mesh.txt RELOC/doc/lualatex/luamesh/meshgarde.txt -runfiles size=27 +runfiles size=29 + RELOC/metapost/luamesh/luamesh.mp RELOC/scripts/luamesh/luamesh-polygon.lua RELOC/scripts/luamesh/luamesh-tex.lua RELOC/scripts/luamesh/luamesh.lua RELOC/tex/lualatex/luamesh/luamesh.sty +catalogue-contact-home https://plmlab.math.cnrs.fr/mchupin/luamesh catalogue-contact-repository https://plmlab.math.cnrs.fr/mchupin/luamesh catalogue-ctan /macros/luatex/latex/luamesh catalogue-license lppl1.3 catalogue-topics graphics maths pgf-tikz graphics-mpost luatex -catalogue-version 0.6 +catalogue-version 0.7 + +name luamodulartables +category Package +revision 65485 +shortdesc Generate modular addition and multiplication tables +relocated 1 +longdesc This package is developed to generate modular addition and +longdesc multiplication tables for positive integers. It provides an +longdesc easy way to generate modular addition and modular +longdesc multiplication tables for positive integers in LaTeX documents. +longdesc The commands in the package have optional arguments for the +longdesc formatting of tables. These commands can be used in an +longdesc environment similar to a tabular or array environment. The +longdesc commands can also be used with the booktabs package, which +longdesc provides nice formatting of tables in LaTeX. It is written in +longdesc Lua, and TeX file is to be compiled with LuaLaTeX engine. +containersize 1364 +containerchecksum 017f903e35bd6800a89dcb086ac592c30e0bb48078ba50dc4822f8ee949d1995523a6c02eed77ab98beef7c0d08368a252d2c6a629fb27f035c8cd8d4a749b2b +doccontainersize 269380 +doccontainerchecksum 380eaa526a3144823b0cd438b13094376ecbb009f11c7e6e90303005b71889b30a1d2e08fb85218913f530ec163b01fb193e4866f6133c16de3501299db86544 +docfiles size=117 + RELOC/doc/lualatex/luamodulartables/README.txt details="Readme" + RELOC/doc/lualatex/luamodulartables/luamodular.bib + RELOC/doc/lualatex/luamodulartables/luamodularadd.jpg + RELOC/doc/lualatex/luamodulartables/luamodularmult.jpg + RELOC/doc/lualatex/luamodulartables/luamodulartables.pdf details="Package documentation" + RELOC/doc/lualatex/luamodulartables/luamodulartables.tex +runfiles size=1 + RELOC/tex/lualatex/luamodulartables/luamodulartables.sty +catalogue-ctan /macros/luatex/latex/luamodulartables +catalogue-license lppl1.3c +catalogue-topics luatex +catalogue-version 1.0 name luamplib category Package -revision 58279 +revision 61587 shortdesc Use LuaTeX's built-in MetaPost interpreter relocated 1 longdesc The package enables the user to specify MetaPost diagrams longdesc (which may include colour specifications from the color or longdesc xcolor packages) into a document, using LuaTeX's built-in longdesc MetaPost library. The facility is only available in PDF mode. -containersize 11776 -containerchecksum 516d5f55c367bb2275268e4ba8bcf45cdc576986c866dbf435d3ccdba1eeef799db03d704d452fd49cef559bd5a1bc903839a0b04a926694e336a4e5652a07b8 -doccontainersize 152604 -doccontainerchecksum c503945573406c8176ce8f3461ab9b4fc07762e029104e582be2ae9cee46b4170916426d384b363bc30e12e83f39e0bfaf5f1998e8012b29c8133de23b39427a -docfiles size=43 +containersize 12060 +containerchecksum daa0a03eca57570f485d2b7decf564eb9f6614a5799d93b798310c20ecb2f055b6dd469c87fbafc1722cb931dc387eada416bb83d609d76a9cfc8c482298edc8 +doccontainersize 156860 +doccontainerchecksum 13b6b7322faf3fda798049bada6d1737f30cb2ce7841ea858ac798fa3f63818ae6661a4e050e4dca336dab37ba9292fa19446a9e1d07a86509c0856793716975 +docfiles size=45 RELOC/doc/luatex/luamplib/NEWS RELOC/doc/luatex/luamplib/README details="Readme" RELOC/doc/luatex/luamplib/luamplib.pdf details="Package documentation" RELOC/doc/luatex/luamplib/test-luamplib-latex.tex RELOC/doc/luatex/luamplib/test-luamplib-plain.tex -srccontainersize 26644 -srccontainerchecksum f11aca288e535861c365259a1c0e1d0a42137898282d2e6027952df827f4c52ad8a5b8553fc0cd692fc0ae5d0f0c60db58a147bd30919a1d04efad4501580b08 -srcfiles size=24 +srccontainersize 27400 +srccontainerchecksum 097a263699067a731409704d7de358c85f4509bfc6426dccd2b193b85430413c441a2c5dc011da613e1e673e6670f7d7ed847e59c58c74d6caae66b7b3c2a29d +srcfiles size=25 RELOC/source/luatex/luamplib/Makefile RELOC/source/luatex/luamplib/luamplib.dtx -runfiles size=12 +runfiles size=13 RELOC/tex/luatex/luamplib/luamplib.lua RELOC/tex/luatex/luamplib/luamplib.sty catalogue-contact-bugs https://github.com/lualatex/luamplib/issues -catalogue-contact-repository http://github.com/lualatex/luamplib +catalogue-contact-repository https://github.com/lualatex/luamplib catalogue-ctan /macros/luatex/generic/luamplib catalogue-license gpl2 catalogue-topics mp-use graphics-in-tex luatex -catalogue-version 2.20.7 +catalogue-version 2.23.0 + +name luaoptions +category Package +revision 64870 +shortdesc Option handling for LuaLaTeX packages +relocated 1 +longdesc This LuaLaTeX package provides extensive support for handling +longdesc options, on package level and locally. It allows the +longdesc declaration of sets of options, along with defaults, +longdesc expected/allowed values and limited type checking. These +longdesc options can be enforced as package options, changed at any +longdesc point during a document, or overwritten locally by optional +longdesc macro arguments. It is also possible to instantiate an Options +longdesc object as an independent Lua object, without linking it to a +longdesc package. Luaoptions can be used to enforce and prepopulate +longdesc options, or it can be used to simply handle the parsing of +longdesc optional key=value arguments into proper Lua tables. +containersize 6052 +containerchecksum 0169029e4eefcb746f48b266d590c7d9f3d4d376070c762139accf27adb8e48badce38769d22250519b3482b4752c55f66a165f4a6c59b20c3048738dcd65a72 +doccontainersize 32152 +doccontainerchecksum 8731eb75ed8dd7089a6825350c2cf335049ce80c1ff378ec26dfe32423e4278737abadf7c83bc100837b2676866d38fdff50024845dc78c1625e64f8748e140a +docfiles size=16 + RELOC/doc/lualatex/luaoptions/Contributors.md + RELOC/doc/lualatex/luaoptions/LICENSE + RELOC/doc/lualatex/luaoptions/README.md details="Readme" + RELOC/doc/lualatex/luaoptions/latexmkrc + RELOC/doc/lualatex/luaoptions/luaoptions.pdf details="Package documentation" + RELOC/doc/lualatex/luaoptions/luaoptions.tex + RELOC/doc/lualatex/luaoptions/luaoptionsbase.cls + RELOC/doc/lualatex/luaoptions/luaoptionsmanual.cls +runfiles size=6 + RELOC/tex/lualatex/luaoptions/luaoptions-lib.lua + RELOC/tex/lualatex/luaoptions/luaoptions.lua + RELOC/tex/lualatex/luaoptions/luaoptions.sty +catalogue-contact-bugs https://github.com/lualatex-tools/luaoptions/issues +catalogue-contact-repository https://github.com/lualatex-tools/luaoptions +catalogue-ctan /macros/luatex/latex/luaoptions +catalogue-license mit +catalogue-topics luatex package-supp +catalogue-version 0.8 name luaotfload category Package -revision 57443 +revision 64616 shortdesc OpenType 'loader' for Plain TeX and LaTeX longdesc The package adopts the TrueType/OpenType Font loader code longdesc provided in ConTeXt, and adapts it to use in Plain TeX and longdesc LaTeX. It works under LuaLaTeX only. depend lm depend lua-alt-getopt +depend lua-uni-algos depend lualibs depend luaotfload.ARCH -containersize 595852 -containerchecksum 5b71f8fa12e21c16d1aaac01a2f27f3220b1da0eb6aea77ae3767e25a15d03180b7bf3587eac9aaaa61658fa7359e6fb2c28e588fea80d4f7b46150f55c2fafa -doccontainersize 627576 -doccontainerchecksum f900a29ea21b654b03671cdd6166dc353bf54eb761757849da96fb74ea398d6ed9fe33f1d602e0a8e1353395cbcaac9cffb4b26c1acebc8105f119271fe8f51b -docfiles size=274 +containersize 617256 +containerchecksum 70f27796fdfe61e0337239a2962052eb2896478358fca0f271287db06a1d2de2f83cd7394d0ec6c281e9a5779ec396e2993f53b8b045ed7a09cb17f100a4a477 +doccontainersize 628076 +doccontainerchecksum 9e1c223ec2589f32640aefd2692d031b8ba324da30a814eea98768443eeb76d92d2700c320e6f96006e54635d31a655cae0a27c76931e7640748889ead4fbfb4 +docfiles size=272 texmf-dist/doc/luatex/luaotfload/COPYING texmf-dist/doc/luatex/luaotfload/NEWS texmf-dist/doc/luatex/luaotfload/README.md details="Readme" @@ -184946,13 +194057,13 @@ docfiles size=274 texmf-dist/doc/man/man5/luaotfload.conf.5 texmf-dist/doc/man/man5/luaotfload.conf.man5.pdf srccontainersize 7292 -srccontainerchecksum d422a64b7251f566829c5603957c3b2247cf112f8c3b30951ef3e9584a78b758f38e4efd0b399f35832f5e2f8e405901a13688c6a62bd86f2892ba44a01dbce0 +srccontainerchecksum 3ed04272b887f434bfe2dd166974889318597e22c57109647946f2b255efca2fb6d1ecc1f02485a1bf387e77956c64a9f42c4af237b29f9fc7a38400d8cfbef1 srcfiles size=6 texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.lua texmf-dist/source/luatex/luaotfload/fontloader-reference-load-order.tex -runfiles size=1870 +runfiles size=1908 texmf-dist/scripts/luaotfload/luaotfload-tool.lua - texmf-dist/tex/luatex/luaotfload/fontloader-2021-01-07.lua + texmf-dist/tex/luatex/luaotfload/fontloader-2022-10-03.lua texmf-dist/tex/luatex/luaotfload/fontloader-basics-chr.lua texmf-dist/tex/luatex/luaotfload/fontloader-basics-gen.lua texmf-dist/tex/luatex/luaotfload/fontloader-basics-nod.lua @@ -185009,8 +194120,8 @@ runfiles size=1870 texmf-dist/tex/luatex/luaotfload/fontloader-util-fil.lua texmf-dist/tex/luatex/luaotfload/fontloader-util-str.lua texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-bcp47.lua texmf-dist/tex/luatex/luaotfload/luaotfload-blacklist.cnf - texmf-dist/tex/luatex/luaotfload/luaotfload-case-el.lua texmf-dist/tex/luatex/luaotfload/luaotfload-case.lua texmf-dist/tex/luatex/luaotfload/luaotfload-characters.lua texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua @@ -185019,13 +194130,15 @@ runfiles size=1870 texmf-dist/tex/luatex/luaotfload/luaotfload-diagnostics.lua texmf-dist/tex/luatex/luaotfload/luaotfload-dvi.lua texmf-dist/tex/luatex/luaotfload/luaotfload-embolden.lua - texmf-dist/tex/luatex/luaotfload/luaotfload-fakesc.lua texmf-dist/tex/luatex/luaotfload/luaotfload-fallback.lua texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua texmf-dist/tex/luatex/luaotfload/luaotfload-filelist.lua texmf-dist/tex/luatex/luaotfload/luaotfload-glyphlist.lua texmf-dist/tex/luatex/luaotfload/luaotfload-harf-define.lua texmf-dist/tex/luatex/luaotfload/luaotfload-harf-plug.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-cff2.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-t2-writer.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-harf-var-ttf.lua texmf-dist/tex/luatex/luaotfload/luaotfload-init.lua texmf-dist/tex/luatex/luaotfload/luaotfload-letterspace.lua texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua @@ -185048,7 +194161,7 @@ catalogue-contact-support https://github.com/latex3/luaotfload/issues catalogue-ctan /macros/luatex/generic/luaotfload catalogue-license gpl2 catalogue-topics font-use luatex -catalogue-version 3.17 +catalogue-version 3.23 name luaotfload.aarch64-linux category Package @@ -185086,15 +194199,6 @@ containerchecksum d25da611b9a631404ba4a4ea4204fb693975f34239f523afcb9fe642a6632d binfiles arch=armhf-linux size=1 bin/armhf-linux/luaotfload-tool -name luaotfload.i386-cygwin -category Package -revision 34647 -shortdesc i386-cygwin files of luaotfload -containersize 344 -containerchecksum 0fc30716362f4947447f76c33d6be39ee42323c424fec84c90e8dd41da665f14aea780d1ed93d0c3411371fce3104a2fe570fad2ba07dbc65082c93c32a68bb7 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/luaotfload-tool - name luaotfload.i386-freebsd category Package revision 34647 @@ -185140,14 +194244,14 @@ containerchecksum 4dd3c702670e73d04eea57bf563a015a719461d388c496074cbef47b1bcd72 binfiles arch=universal-darwin size=1 bin/universal-darwin/luaotfload-tool -name luaotfload.win32 +name luaotfload.windows category Package -revision 34647 -shortdesc win32 files of luaotfload -containersize 692 -containerchecksum 63131e841af17292f1f0794688c90752864478afb827f6ce47ca11574b139b877e0f045db2bf8d25ceb4a9bb03c8228c36b81f9efae697532c01017e999d0b77 -binfiles arch=win32 size=1 - bin/win32/luaotfload-tool.exe +revision 65891 +shortdesc windows files of luaotfload +containersize 2316 +containerchecksum 5d4f16b6cb9702155b3174ff8ec4b7f6188ae9868e5ec0411499ac61edbfbb193b2aba4e4614f050c9a49e6b7bc577b924cd51d88f732cf8ecdceae463296cbb +binfiles arch=windows size=2 + bin/windows/luaotfload-tool.exe name luaotfload.x86_64-cygwin category Package @@ -185249,6 +194353,58 @@ catalogue-license mit catalogue-topics table catalogue-version 1.0 +name luapstricks +category Package +revision 65913 +shortdesc A PSTricks backend for LuaLaTeX +relocated 1 +longdesc This package enables the use of PSTricks directly in LuaLaTeX +longdesc documents, without invoking external programmes, by +longdesc implementing a PostScript interpreter in Lua. Therefore it does +longdesc not require shell escape to be enabled or special environments, +longdesc and instead allows PSTricks to be used exactly like in dvips +longdesc based documents. +containersize 27112 +containerchecksum b8c48f0d7866cb79ef6b38b46614186e309200ea9f3294d5e6e98ed0514a218ae04bbde2d82b3ddcb3ea4a0b473f1c80f2a656d2a41dda2829a73eb978320fef +doccontainersize 1524 +doccontainerchecksum 37c1e6a9c05ca3dcb88f2a5e7754c3be824083eedf71846efda896d91527d888fb4cd3d2487347ea6f930cf91e159a763cc4407f989d9bac35e1f3e7dc9515f5 +docfiles size=1 + RELOC/doc/lualatex/luapstricks/README.md details="Readme" +runfiles size=35 + RELOC/fonts/opentype/public/luapstricks/PSTricksDotFont.otf + RELOC/tex/lualatex/luapstricks/luapstricks.lua +catalogue-contact-bugs https://github.com/zauguin/luapstricks/issues +catalogue-contact-repository https://github.com/zauguin/luapstricks +catalogue-ctan /graphics/pstricks/contrib/luapstricks +catalogue-license lppl1.3 +catalogue-topics luatex pstricks +catalogue-version 0.8 + +name luaquotes +category Package +revision 65652 +shortdesc Smart setting of quotation marks +relocated 1 +longdesc This package automatically generates quotation marks and +longdesc punctuation depending on the selected language. +containersize 3384 +containerchecksum 20c0c02ec0a89e37d82d6ba10cdd9fce632189c442950f325ebc09f5cc2a1e798238ac9d3e31245e113d4909dd0b37e3a145b471f7facacb285a2a2450bc8998 +doccontainersize 65436 +doccontainerchecksum 3a9b36054a67ff69ed8dcba75a6d5bb5bd4783ec301e59f491b82954184ff7793e68120762ec95182d6dd00afa1fd4421d2f87fc8294ac39061c88f50c37d803 +docfiles size=24 + RELOC/doc/lualatex/luaquotes/README details="Readme" + RELOC/doc/lualatex/luaquotes/luaquotes-documentation.pdf details="Package documentation" + RELOC/doc/lualatex/luaquotes/luaquotes-documentation.tex +runfiles size=5 + RELOC/tex/lualatex/luaquotes/luaquotes.sty +catalogue-also csquotes +catalogue-contact-bugs https://github.com/ezgranet/luaquotes/issues +catalogue-contact-repository https://github.com/ezgranet/luaquotes +catalogue-ctan /macros/luatex/latex/luaquotes +catalogue-license lppl1.3c cc-by-sa-3 +catalogue-topics quote-marks +catalogue-version 1.4.0 + name luarandom category Package revision 49419 @@ -185274,47 +194430,74 @@ catalogue-license lppl1.3 catalogue-topics luatex random calculation catalogue-version 0.01 +name luaset +category Package +revision 65376 +shortdesc Set Operations inside LaTeX documents using Lua +relocated 1 +longdesc The luaset package is developed to define finite sets and +longdesc perform operations on them inside LaTeX documents. There is no +longdesc particular environment in the package for performing set +longdesc operations. The package commands can be used in any environment +longdesc (including the mathematics environment). It is written in Lua, +longdesc and the .tex file is to be compiled with the LuaLaTeX engine. +longdesc The time required for operations on sets is not an issue while +longdesc compiling with the LuaLaTeX engine. There is no need to install +longdesc Lua on the users system as TeX distributions (TeX Live or +longdesc MikTeX) come bundled with LuaLaTeX. +containersize 1544 +containerchecksum 5c228ea6854943859d389f3de4386834544c0bf67b62d36078d599d69af286f14263f0feec48eace283e9374caf89bfd67adfc3a98fc1cfbb87d618cc9ddb62b +doccontainersize 115012 +doccontainerchecksum 0bbe3457ecf5c872052fa215e4505840a80e026a02baf07ed0394b044784c0c37c00afdcd0fa25f610986f465276c160a9a892a45092e5065818011137c70d89 +docfiles size=36 + RELOC/doc/lualatex/luaset/README.txt details="Readme" + RELOC/doc/lualatex/luaset/luaset.pdf details="Package documentation" + RELOC/doc/lualatex/luaset/luaset.tex +runfiles size=1 + RELOC/tex/lualatex/luaset/luaset.sty +catalogue-ctan /macros/luatex/latex/luaset +catalogue-license lppl1.3c +catalogue-topics luatex maths +catalogue-version 1.0 + name luasseq category Package -revision 37877 +revision 65511 shortdesc Drawing spectral sequences in LuaLaTeX relocated 1 longdesc The package is an update of the author's sseq package, for use longdesc with LuaLaTeX. This version uses less memory, and operates longdesc faster than the original; it also offers several enhancements. -containersize 10232 -containerchecksum 400e95fd898152e8d8e989084ca9cd115516850edb6e8d102eddaaf278f29213c8a4828dde01ca202db68d6cd2b2685bda71f63ad7a92eb586a4c303d2e9d02b -doccontainersize 224504 -doccontainerchecksum 7ac8f5df74cede5734c9c47048cbb3b079155910a89ebf0c7adb169b4b61751f6255b2c07614d44a55e8dad43bb35693bf224d0f750bff28987c7c5f1a8a5bc4 -docfiles size=56 - RELOC/doc/lualatex/luasseq/README +containersize 10276 +containerchecksum b77936a1b92ec8b3889ec9ba8b356fa235da6eeca98d6a86f315723c64b4c0a7d8db2213cd9fdad4d2b38cfa8af1bc00c7861f15a9f4f1a809ec86bab8a16f77 +doccontainersize 146972 +doccontainerchecksum 82825043ea6c04a76cbf0440d9de08ee281b843342c6385f11cccf06bd11320138119fb90944f6f3fc5aa8ff9854f1934f7890809f0a8175de389ef5cd448cab +docfiles size=38 + RELOC/doc/lualatex/luasseq/README details="Readme" RELOC/doc/lualatex/luasseq/luasseq.pdf details="Package documentation" -srccontainersize 10964 -srccontainerchecksum 4946e994a3ce2712e6da73a9969cbf2634726191845332e4464ce8d446c09235e94798c878e9e060e3a7b3bc3a27c37a299b9d30f1da6368b67875b551ee9d0d -srcfiles size=11 +srccontainersize 11388 +srccontainerchecksum 3a6b4fa48956e2f448a1be96eb9d05f236c9e1b2177de13ad16aa942c9b4ef5d4d4585bdb6f5d9b1a19901375f34cbd381430c629e037be500d84cf626065500 +srcfiles size=12 RELOC/source/lualatex/luasseq/luasseq.dtx RELOC/source/lualatex/luasseq/luasseq.ins runfiles size=11 RELOC/scripts/luasseq/luasseq.lua RELOC/tex/lualatex/luasseq/luasseq.sty catalogue-ctan /macros/luatex/latex/luasseq -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics maths luatex name luatex category TLCore -revision 58822 +revision 66546 shortdesc The LuaTeX engine -longdesc LuaTeX is an extended version of pdfTeX using Lua as an +longdesc LuaTeX is a greatly 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/. +longdesc while at the same time offering substantive backward +longdesc compatibility. LuaTeX uses Unicode (as UTF-8) as its default +longdesc input encoding, and is able to use modern (OpenType and +longdesc TrueType) fonts (for both text and mathematics). depend cm depend etex depend hyph-utf8 @@ -185326,11 +194509,12 @@ depend tex-ini-files depend unicode-data execute AddFormat name=dviluatex engine=luatex options="dviluatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8 execute AddFormat name=luatex engine=luatex options="luatex.ini" patterns=language.def,language.dat.lua fmttriggers=cm,etex,hyphen-base,knuth-lib,plain,tex-ini-files,unicode-data,hyph-utf8 -containersize 12912 -containerchecksum d24bb6b9ac86d31c6b43a553f8153482f962d42dde813b41f41467ec2e7b5606f065108fda172217cee9b48e8b75237365eb6eda354d16def2bc2919cc0815a1 -doccontainersize 1880488 -doccontainerchecksum 9096aa4d630bbad43fb4eecbdcb8ceaca94709fd734fe7e9a3f09a9bc5d57209c922d1359f71e8a2d1cdbcbe127d3c09c2311b96c2d2574d5356ae9f9f6bef7e -docfiles size=698 +containersize 13712 +containerchecksum 1d802e5ce39d2ceb6e6fcd159fddf57ee16d014ca9165b1e34e23d35943bb40fc795a112aa66af33a87019b74f71e3c4e24025af00823b1980d3a3b437c53aad +doccontainersize 1950904 +doccontainerchecksum dc162ced7be4683e5d0596d200f4924e4feec0d06c253b95cb0dc62e3fc47e947749cbd322b2b71f1868d650ec82d15fb4fe9c2802d0c7faced76831c6134d49 +docfiles size=751 + texmf-dist/doc/luatex/base/NEWS texmf-dist/doc/luatex/base/graphics/luaharfbuzz.pdf texmf-dist/doc/luatex/base/luatex-backend.tex texmf-dist/doc/luatex/base/luatex-callbacks.tex @@ -185365,24 +194549,24 @@ docfiles size=698 texmf-dist/doc/man/man1/texlua.man1.pdf texmf-dist/doc/man/man1/texluac.1 texmf-dist/doc/man/man1/texluac.man1.pdf -runfiles size=37 +runfiles size=38 texmf-dist/tex/generic/config/luatex-unicode-letters.tex texmf-dist/tex/generic/config/luatexiniconfig.tex texmf-dist/web2c/texmfcnf.lua -catalogue-contact-bugs https://lists.tug.org/tex-k +catalogue-contact-bugs https://mailman.ntg.nl/mailman/listinfo/dev-luatex catalogue-contact-home http://luatex.org catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/luatexdir catalogue-contact-support https://lists.tug.org/luatex -catalogue-license gpl2 +catalogue-license gpl2+ catalogue-topics engine name luatex.aarch64-linux category TLCore -revision 58876 +revision 66547 shortdesc aarch64-linux files of luatex -containersize 1703364 -containerchecksum 5bd0ff539f27721a1cb8850bad1a444f346611f2f29283b9b6b7c379937bf1d3c47f991fa2897c97c5beebb767f0c6ab7a0c150ef8f29612e072fb8f7c51bcbf -binfiles arch=aarch64-linux size=1738 +containersize 1720732 +containerchecksum 99c1735a4de8d75222cbc561ed12591c5a162f0c753b1f8bfe3025643db9fe1f169c59bbf2612259ccba480e50fdb0ee4520096e69d90aa87bef6491b52791f3 +binfiles arch=aarch64-linux size=1743 bin/aarch64-linux/dviluatex bin/aarch64-linux/luatex bin/aarch64-linux/texlua @@ -185390,11 +194574,11 @@ binfiles arch=aarch64-linux size=1738 name luatex.amd64-freebsd category TLCore -revision 58850 +revision 66509 shortdesc amd64-freebsd files of luatex -containersize 1863900 -containerchecksum ac4a735ca2791550398146a2aed5be90d76884e80d2135a90551b2c286c1285142fbe78f980731d2afbf09366edf3655e41271f4e85cf19d3053a3fd2048a079 -binfiles arch=amd64-freebsd size=1695 +containersize 1892396 +containerchecksum 291527c0e14265163f198f9762a9286ffac9aab84d30a77cf6774af9cdb475198aca5b92f436aeb6209fedab886cd9101f26ab4af1192a6d28949e5f8620b53a +binfiles arch=amd64-freebsd size=1701 bin/amd64-freebsd/dviluatex bin/amd64-freebsd/luatex bin/amd64-freebsd/texlua @@ -185402,11 +194586,11 @@ binfiles arch=amd64-freebsd size=1695 name luatex.amd64-netbsd category TLCore -revision 58866 +revision 66520 shortdesc amd64-netbsd files of luatex -containersize 1585152 -containerchecksum b9f52544f3578062e7e9789e770837369c49fb060e32cce354e1a5b288eb8879bc2dc8e15619535f0b7230b3aab0f23c88611996416c2a920fd99b4f153f5974 -binfiles arch=amd64-netbsd size=1966 +containersize 1602732 +containerchecksum 525a27f8b3b9bab06217e51d8ab9e71c6a87de2390e1a2a54f0049044dd9d5516b8dd93348b4088282682f0c903ac1f9d726f1ea7d06c466fe02d48a40255252 +binfiles arch=amd64-netbsd size=1975 bin/amd64-netbsd/dviluatex bin/amd64-netbsd/luatex bin/amd64-netbsd/texlua @@ -185414,36 +194598,23 @@ binfiles arch=amd64-netbsd size=1966 name luatex.armhf-linux category TLCore -revision 58911 +revision 66509 shortdesc armhf-linux files of luatex -containersize 1470796 -containerchecksum 9c4c7fe24f79515985b6092ca6ced3b91474522eb436d5575e23bf80e77e9f9a4c1fc92e0c699a614b4b64224e48005fe1756e4354e2945bc99f06f26060da40 -binfiles arch=armhf-linux size=1398 +containersize 1483856 +containerchecksum 31eeeb95e608b070706308e37f3e1351229d8ba21acc586e565b2e167fdc57600511a982951b2e98dd7ce3ddb870c7fd2db7dc54fb8f95848b0408a28166d1f3 +binfiles arch=armhf-linux size=1400 bin/armhf-linux/dviluatex bin/armhf-linux/luatex bin/armhf-linux/texlua bin/armhf-linux/texluac -name luatex.i386-cygwin -category TLCore -revision 58851 -shortdesc i386-cygwin files of luatex -containersize 1753312 -containerchecksum 455b4e0bfcec5d3f545cfca62c8c7be9fc6308c0e3ea68307ef272a74d2f1e1e71ec038e7ad677872cb4a4091e1d931b44cbf5ca789b2dc56515df485b147978 -binfiles arch=i386-cygwin size=1659 - bin/i386-cygwin/cygtexlua53-5.dll - bin/i386-cygwin/dviluatex - bin/i386-cygwin/luatex.exe - bin/i386-cygwin/texlua - bin/i386-cygwin/texluac - name luatex.i386-freebsd category TLCore -revision 58850 +revision 66509 shortdesc i386-freebsd files of luatex -containersize 1712168 -containerchecksum 3468336ee4db3730ac44834e9ceb2325a759c94705f36dc8ec21a9abeacd5aecd55e0aa39dd45822d8b8d82f32468d1bdbd2159488a885282129d2c57dc0c914 -binfiles arch=i386-freebsd size=1569 +containersize 1727728 +containerchecksum d28222b82d56d1735c5a29289a7371d5d6dee2354c1a3e84a5957629927e7874119c02eb281dd2b66406431bf36555c64dc45156a425eb7eabfa2108b5458528 +binfiles arch=i386-freebsd size=1575 bin/i386-freebsd/dviluatex bin/i386-freebsd/luatex bin/i386-freebsd/texlua @@ -185451,11 +194622,11 @@ binfiles arch=i386-freebsd size=1569 name luatex.i386-linux category TLCore -revision 58850 +revision 66511 shortdesc i386-linux files of luatex -containersize 1857504 -containerchecksum a9d2dc819421bd045601782a466eb4178d69ccaeabfeb6f6e4545b1768131fc9f62905988cfc5e05cfe9a709feb6e0382f4a9b9e74f7552ca3bc9a530bcedc0a -binfiles arch=i386-linux size=1705 +containersize 1856468 +containerchecksum 43eae5ed906db297549b18104197f2baf3125ca80d50ac732ffc5f6fd979818d7e8bca758a0c6e180cb46b290130454b140fe0267d4ffe6fe3f8f2226b7fb4ee +binfiles arch=i386-linux size=1714 bin/i386-linux/dviluatex bin/i386-linux/luatex bin/i386-linux/texlua @@ -185463,11 +194634,11 @@ binfiles arch=i386-linux size=1705 name luatex.i386-netbsd category TLCore -revision 58866 +revision 66520 shortdesc i386-netbsd files of luatex -containersize 1449908 -containerchecksum a4c3b2d20ffceb9df73baf759bf26d4b823eeceb37bf96c36a17d21129035a896d6ada548591692bef9d487ffd724c61b12f8d35969f20dbd9fda9a3ec323ec3 -binfiles arch=i386-netbsd size=1807 +containersize 1460080 +containerchecksum 412ac732edd0af958a2ff7a14d636322d1d29fbb02d673e72122fd05d5bd72a8cfaefa84d28e3789b18f06d11c3a2cfc2afc90b72276f0bc4525256bd8fb33e6 +binfiles arch=i386-netbsd size=1812 bin/i386-netbsd/dviluatex bin/i386-netbsd/luatex bin/i386-netbsd/texlua @@ -185475,11 +194646,11 @@ binfiles arch=i386-netbsd size=1807 name luatex.i386-solaris category TLCore -revision 58850 +revision 66509 shortdesc i386-solaris files of luatex -containersize 1615968 -containerchecksum f064cbf4487801c49bfed01895eb489df48d3a7cddc96d0954439b62c6cd117cabf666ee0b5c5c849743106815fcd876be36985a3b174eb75d4e3bbd3a170181 -binfiles arch=i386-solaris size=1435 +containersize 1616716 +containerchecksum 3ab4fc578638c6236aa634d10034894b12701e463ff6778ec33036918d87a859dfaeb549bb412855d9b8b7bc9795708230d85f77c5fbf790d45257051f0786fd +binfiles arch=i386-solaris size=1437 bin/i386-solaris/dviluatex bin/i386-solaris/luatex bin/i386-solaris/texlua @@ -185487,59 +194658,59 @@ binfiles arch=i386-solaris size=1435 name luatex.universal-darwin category TLCore -revision 58850 +revision 66529 shortdesc universal-darwin files of luatex -containersize 3001004 -containerchecksum 1483bfc2d3b8f3fefb971e9bb163c67027d2220e9d924e351ee4cc1011c738177773ae21058205cec770a28f71301e8686e12c0599d7cb53107262dbf7029fa1 -binfiles arch=universal-darwin size=3135 +containersize 3039380 +containerchecksum 80c2bebcf88f204bbcd4cc0fec9209ff3a0fbec156df799189358a7e5acabdcedcb23231525d2dffe70611744c3fa1d76712d7b155c44befb47e0a8f0b7a8972 +binfiles arch=universal-darwin size=3147 bin/universal-darwin/dviluatex bin/universal-darwin/luatex bin/universal-darwin/texlua bin/universal-darwin/texluac -name luatex.win32 -category TLCore -revision 58843 -shortdesc win32 files of luatex -containersize 1822168 -containerchecksum 7ba65d191abcd6c6300cf4a37733776f799618bc90201d76d029898acf3d631f6d454f27aaaae2e03ef98a431f5329db9d706da7a8a5e744ad0c2596a13a35ba -binfiles arch=win32 size=1686 - bin/win32/api-ms-win-core-file-l1-2-0.dll - bin/win32/api-ms-win-core-file-l2-1-0.dll - bin/win32/api-ms-win-core-localization-l1-2-0.dll - bin/win32/api-ms-win-core-processthreads-l1-1-1.dll - bin/win32/api-ms-win-core-synch-l1-2-0.dll - bin/win32/api-ms-win-core-timezone-l1-1-0.dll - bin/win32/api-ms-win-crt-convert-l1-1-0.dll - bin/win32/api-ms-win-crt-environment-l1-1-0.dll - bin/win32/api-ms-win-crt-filesystem-l1-1-0.dll - bin/win32/api-ms-win-crt-heap-l1-1-0.dll - bin/win32/api-ms-win-crt-locale-l1-1-0.dll - bin/win32/api-ms-win-crt-math-l1-1-0.dll - bin/win32/api-ms-win-crt-multibyte-l1-1-0.dll - bin/win32/api-ms-win-crt-process-l1-1-0.dll - bin/win32/api-ms-win-crt-runtime-l1-1-0.dll - bin/win32/api-ms-win-crt-stdio-l1-1-0.dll - bin/win32/api-ms-win-crt-string-l1-1-0.dll - bin/win32/api-ms-win-crt-time-l1-1-0.dll - bin/win32/api-ms-win-crt-utility-l1-1-0.dll - bin/win32/dviluatex.exe - bin/win32/lua53.dll - bin/win32/luatex.dll - bin/win32/luatex.exe - bin/win32/pdfddeservername.txt - bin/win32/texlua.exe - bin/win32/texluac.exe - bin/win32/ucrtbase.dll - bin/win32/vcruntime140.dll +name luatex.windows +category TLCore +revision 66431 +shortdesc windows files of luatex +containersize 2090604 +containerchecksum 7227e2e4c36a93e5350d0a53a0ed02f045cd18be5f8d0dc2b06b7cd19dcc8dda72f81d3dd91eb874fb296a978be220ee2d2d808ef244182a735b0eed4669f91f +binfiles arch=windows size=1914 + bin/windows/api-ms-win-core-file-l1-2-0.dll + bin/windows/api-ms-win-core-file-l2-1-0.dll + bin/windows/api-ms-win-core-localization-l1-2-0.dll + bin/windows/api-ms-win-core-processthreads-l1-1-1.dll + bin/windows/api-ms-win-core-synch-l1-2-0.dll + bin/windows/api-ms-win-core-timezone-l1-1-0.dll + bin/windows/api-ms-win-crt-convert-l1-1-0.dll + bin/windows/api-ms-win-crt-environment-l1-1-0.dll + bin/windows/api-ms-win-crt-filesystem-l1-1-0.dll + bin/windows/api-ms-win-crt-heap-l1-1-0.dll + bin/windows/api-ms-win-crt-locale-l1-1-0.dll + bin/windows/api-ms-win-crt-math-l1-1-0.dll + bin/windows/api-ms-win-crt-multibyte-l1-1-0.dll + bin/windows/api-ms-win-crt-process-l1-1-0.dll + bin/windows/api-ms-win-crt-runtime-l1-1-0.dll + bin/windows/api-ms-win-crt-stdio-l1-1-0.dll + bin/windows/api-ms-win-crt-string-l1-1-0.dll + bin/windows/api-ms-win-crt-time-l1-1-0.dll + bin/windows/api-ms-win-crt-utility-l1-1-0.dll + bin/windows/dviluatex.exe + bin/windows/lua53w64.dll + bin/windows/luatex.dll + bin/windows/luatex.exe + bin/windows/pdfddeservername.txt + bin/windows/texlua.exe + bin/windows/texluac.exe + bin/windows/ucrtbase.dll + bin/windows/vcruntime140.dll name luatex.x86_64-cygwin category TLCore -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of luatex -containersize 1724596 -containerchecksum caf6bfe8307fa75e2f7a467f877b339d5ea307da9b0e1fb8f59f86c01ab4280a426eb22baaf54800632751c54518e391cf7a1b04b9847d5865f7b03b9e7b89a6 -binfiles arch=x86_64-cygwin size=1601 +containersize 1746204 +containerchecksum c60744c0736082932cfbf735a48b4c4703d997a9ccd70d7f4b67f257930c2a38144a53de4111f3afd156b55651336eb51f0dcc2058ed661a33596c8c2e4c991d +binfiles arch=x86_64-cygwin size=1602 bin/x86_64-cygwin/cygtexlua53-5.dll bin/x86_64-cygwin/dviluatex bin/x86_64-cygwin/luatex.exe @@ -185548,11 +194719,11 @@ binfiles arch=x86_64-cygwin size=1601 name luatex.x86_64-darwinlegacy category TLCore -revision 58850 +revision 66509 shortdesc x86_64-darwinlegacy files of luatex -containersize 1609560 -containerchecksum 4393d7f7cb6c005a50b2d985b623a6e1cce95833b597ff81eb5c7ae5355fb1010ffff1e340595ec1b93b4bf773263221cc1a4bbf5a8015b3cb4e47bb0ff1bf81 -binfiles arch=x86_64-darwinlegacy size=1469 +containersize 1599084 +containerchecksum ac589238457e6ce45612d79da14095bfee16c27cbbb7642444177e79caad26d0a048963c0c96367cf58e0a95b0d2c585b4840e4a9de21fef4ca6955469ed4510 +binfiles arch=x86_64-darwinlegacy size=1471 bin/x86_64-darwinlegacy/dviluatex bin/x86_64-darwinlegacy/luatex bin/x86_64-darwinlegacy/texlua @@ -185560,11 +194731,11 @@ binfiles arch=x86_64-darwinlegacy size=1469 name luatex.x86_64-linux category TLCore -revision 58872 +revision 66511 shortdesc x86_64-linux files of luatex -containersize 1793456 -containerchecksum 1fcac1a8e873fcad2833196c1bf828a526727686c937dda479751be53081eae5fbfa9b9d41357a9a9d051439a72802151cfc37e9cee9d5fdc89314bf40f1e38f -binfiles arch=x86_64-linux size=1608 +containersize 1813540 +containerchecksum 314785ac2e7f5b5714f974bb84ffcd809ad76a2649f76f3341297e4177967ec542dd5a062e13d23c659353e3619f3118a09e388495b54b6e99fc07c9783208ca +binfiles arch=x86_64-linux size=1615 bin/x86_64-linux/dviluatex bin/x86_64-linux/luatex bin/x86_64-linux/texlua @@ -185572,11 +194743,11 @@ binfiles arch=x86_64-linux size=1608 name luatex.x86_64-linuxmusl category TLCore -revision 58850 +revision 66511 shortdesc x86_64-linuxmusl files of luatex -containersize 1889936 -containerchecksum a6ba5d503b50cedc1f8232c111183662457bf66d3225068387d67145725b39c541d1e6f4ff326446d3effe5660bc82c07366cdee37aeed88b0370fdd97bc6220 -binfiles arch=x86_64-linuxmusl size=2262 +containersize 1917108 +containerchecksum b1699eb3e667c56518d08f49dde6bc6a78e9cf4514896e0bb67be95e0fb7bb32a0c74653987e2e5509189f245d6d5a0547c72763b6effc580974188d1015871a +binfiles arch=x86_64-linuxmusl size=1762 bin/x86_64-linuxmusl/dviluatex bin/x86_64-linuxmusl/luatex bin/x86_64-linuxmusl/texlua @@ -185584,11 +194755,11 @@ binfiles arch=x86_64-linuxmusl size=2262 name luatex.x86_64-solaris category TLCore -revision 58850 +revision 66509 shortdesc x86_64-solaris files of luatex -containersize 1798608 -containerchecksum 2a3f5d95bcd70c827a9783861e6490d6e7e0c4c0cdc407f6200d8080a0480247c3c61c86f4ef71762491ce2c67e191c7dc3851808aba3954b8e0d5f712210167 -binfiles arch=x86_64-solaris size=1610 +containersize 1804800 +containerchecksum db29766277fa53aafaa367b19f74389a10d83da377908090e01355bd7bbc95cad8e4c0d9ef4ad71ba552a4bae7e8d4e16d7883d7338e98a89c18166572d4e1da +binfiles arch=x86_64-solaris size=1615 bin/x86_64-solaris/dviluatex bin/x86_64-solaris/luatex bin/x86_64-solaris/texlua @@ -185663,18 +194834,18 @@ catalogue-version 1.3 name luatexja category Package -revision 58542 +revision 65790 shortdesc Typeset Japanese with Lua(La)TeX relocated 1 longdesc The package offers support for typesetting Japanese documents longdesc with LuaTeX. Either of the Plain and LaTeX2e formats may be longdesc used with the package. depend luatexbase -containersize 189656 -containerchecksum be42a930c9b89695ac5e69edc2ac28c8f9956f616012826932e56af54f3aada99a02de72c87f4a285e3553220be1583bb60d98e3741abd3d12d167d26b778047 -doccontainersize 3199480 -doccontainerchecksum 667bb90edc5d4f4d706e3f0ca32cecd2c3f63e5b7a10debe1adf3824ff745f743b4dabacd6eac970b328096018b03186c10789adc61daa0d91c4fd979aa5b98c -docfiles size=960 +containersize 192340 +containerchecksum aefbb04f83fcb47060bf540343d48adbad8c06fcadf23a75efa2a0d41149b75ab4dc0eaaba9ee910e6eadbebbf33beec47d751f8c188c4ecbb5adb149e80607e +doccontainersize 3263832 +doccontainerchecksum b4dee5a78aa3bc50989bd0ec78eb5cc281104023bc972303a9cdfc3a936e640eb4f1673c033289143fca77faa0fcff06e91097087a21a5ceac49fc6b2125a28d +docfiles size=982 RELOC/doc/luatex/luatexja/COPYING RELOC/doc/luatex/luatexja/README details="Readme" RELOC/doc/luatex/luatexja/jfm-test.lua @@ -185691,9 +194862,9 @@ docfiles size=960 RELOC/doc/luatex/luatexja/luatexja-ruby.tex RELOC/doc/luatex/luatexja/luatexja.dtx RELOC/doc/luatex/luatexja/luatexja.ins -srccontainersize 83292 -srccontainerchecksum 8472ba4ca610b6579549435da7bf3bee4680a2ef44ed9c2073cbbdc4112f4f1604d30d62e91a894769e98cd1c3d8baddfddf406cde79bbd8539e441c9d2b3e01 -srcfiles size=118 +srccontainersize 83900 +srccontainerchecksum 3d912d72ae0f9aba3b6cefe21ef74ff8934c6954bd2b5ccee96c66a6038b5b336927d567fcf4fef1594660e6facb8cda739499fff2d187a270b15698c49c036e +srcfiles size=119 RELOC/source/luatex/luatexja/ltjclasses.dtx RELOC/source/luatex/luatexja/ltjclasses.ins RELOC/source/luatex/luatexja/ltjltxdoc.dtx @@ -185715,8 +194886,9 @@ srcfiles size=118 RELOC/source/luatex/luatexja/tool/otf-KozMinPr6N-Regular.txt RELOC/source/luatex/luatexja/tool/table_ivd_aj1.lua RELOC/source/luatex/luatexja/tool/table_jisx0208.tex + RELOC/source/luatex/luatexja/tool/test_exist_nodelib.tex RELOC/source/luatex/luatexja/tool/unicodeBlocks.tex -runfiles size=407 +runfiles size=413 RELOC/tex/luatex/luatexja/addons/luatexja-adjust.sty RELOC/tex/luatex/luatexja/addons/luatexja-ajmacros.sty RELOC/tex/luatex/luatexja/addons/luatexja-fontspec-27c.sty @@ -185815,12 +194987,12 @@ catalogue-contact-home https://osdn.net/projects/luatex-ja/wiki/FrontPage(en) catalogue-contact-repository https://osdn.net/projects/luatex-ja/scm/git/luatexja/ catalogue-ctan /macros/luatex/generic/luatexja catalogue-license bsd -catalogue-topics japanese luatex class -catalogue-version 20210319.0 +catalogue-topics japanese luatex class macro-gen +catalogue-version 20230211.0 name luatexko category Package -revision 58928 +revision 64893 shortdesc Typeset Korean with Lua(La)TeX relocated 1 longdesc This is a Lua(La)TeX macro package that supports typesetting @@ -185831,16 +195003,16 @@ longdesc package rather than other Hangul macros operating on other longdesc engines. LuaTeX version 1.10+ and luaotfload version 2.96+ are longdesc required for this package to run. This package also requires longdesc the cjk-ko package for its full functionality. -containersize 22400 -containerchecksum be50a22424571de2bfc5ece11883903833df1bbc9c120122111900b90b47d7766fbad09a5c2307629f5b6710bee75bf30b7fb780def188fcee2e1a6d4c457dad -doccontainersize 336848 -doccontainerchecksum f0ce1f5e7444238ac33ff52e96272ea1dfa3074680b5a9ad49ed191d3972c03d1028556891149dec71a1f8393c3935ed970aed8c59152104eb459acf774ec88e -docfiles size=93 +containersize 23448 +containerchecksum 1d1d9b828dfa55a6460bc71ee6b61cc434d8df0e0749878e84c2939c2bcccadaccd3f6b9c2146eae10bbad495da2375093084e60c9b5277c0b8542b4588b3f8c +doccontainersize 350116 +doccontainerchecksum a516a7fa5536e3de9b6fcd54c2e9c28a078849bb0ea6d1344d54cf27131a9c82f96559ea031043715a6b54f04d49d5bf42da80c5c44beeddf1a3a5f6e3902e42 +docfiles size=96 RELOC/doc/luatex/luatexko/ChangeLog RELOC/doc/luatex/luatexko/README details="Readme" RELOC/doc/luatex/luatexko/luatexko-doc.pdf details="Package documentation" RELOC/doc/luatex/luatexko/luatexko-doc.tex -runfiles size=28 +runfiles size=30 RELOC/tex/luatex/luatexko/luatexko-normalize.lua RELOC/tex/luatex/luatexko/luatexko-uhc2utf8.lua RELOC/tex/luatex/luatexko/luatexko.lua @@ -185850,7 +195022,7 @@ catalogue-contact-repository https://github.com/dohyunkim/luatexko catalogue-ctan /macros/luatex/generic/luatexko catalogue-license lppl1.3c catalogue-topics luatex korean -catalogue-version 3.1 +catalogue-version 3.5 name luatextra category Package @@ -185922,9 +195094,37 @@ catalogue-license lppl1.2 catalogue-topics notes editorial luatex use-lua catalogue-version 0.5 +name luatruthtable +category Package +revision 64508 +shortdesc Generate truth tables of boolean values in LuaLaTeX +relocated 1 +longdesc This package provides an easy way for generating truth tables +longdesc of boolean values in LuaLaTeX. The time required for operations +longdesc is no issue while compiling with LuaLaTeX. The package supports +longdesc nesting of commands for multiple operations. It can be modified +longdesc or extended by writing custom lua programs. There is no need to +longdesc install lua on users system as TeX distributions (TeX Live or +longdesc MikTeX) come bundled with LuaLaTeX. +containersize 2236 +containerchecksum 250c01ceab5b63b60fa468e7bdf03e69cd902e0c13ed0b5a426685cf6f370d30d31881f23184c1cac8e75b380f0211357e7febc2de1e490bb2ec1ef1e5dd05dc +doccontainersize 95932 +doccontainerchecksum 4c93afcdb76b38ef2e4bb9bc39e4cf5c9d30d3a98b8cbcc8e6259d6587cc8ae2ad489c170a3dacf49f026ff3e90f522e2e7ebc86c5d05eb783bfb35e6d8c75c4 +docfiles size=37 + RELOC/doc/lualatex/luatruthtable/README.txt details="Readme" + RELOC/doc/lualatex/luatruthtable/luatruthtable.bib + RELOC/doc/lualatex/luatruthtable/luatruthtable.pdf details="Package documentation" + RELOC/doc/lualatex/luatruthtable/luatruthtable.tex +runfiles size=2 + RELOC/tex/lualatex/luatruthtable/luatruthtable.sty +catalogue-ctan /macros/luatex/latex/luatruthtable +catalogue-license lppl1.3c +catalogue-topics maths logic luatex +catalogue-version 1.1 + name luavlna category Package -revision 58087 +revision 64142 shortdesc Prevent line breaks after single letter words, units, or academic titles relocated 1 longdesc In some languages, like Czech or Polish, there should be no @@ -185940,10 +195140,10 @@ longdesc units. The package supports both plain LuaTeX and LuaLaTeX. longdesc BTW: "vlna" is the Czech word for "wave" or "curl" and also longdesc denotes the tilde which, in TeX, is used for "unbreakable longdesc spaces". -containersize 7628 -containerchecksum ccef03e521ab96c6ba786bc6d2651c1178935902c6889fbb98156f04105498292b500c824474551bafe23ab76967c212730cdd781d8cb7f86cf8c8aa1aa64d56 -doccontainersize 95132 -doccontainerchecksum 7f484b73c1ed198a325a7835d647b4be21db1fdbf4065988d2f45f0a07bd6ca1697509186be4b911080bc8e5e753262a2a62f1f89cbf8e95aedf3cc1e21844b9 +containersize 7636 +containerchecksum 58c16981ec1515c74a2ffd7632f16d0fb28b9fe32e6e954b49be602c721110e3537a66059b149a4d5c9b652ee717ee1c736ea03d2e4df3803c1b6c4465c50bf1 +doccontainersize 95244 +doccontainerchecksum a8d808e891ee8eb4958061912d0cd7b8c89da3d352ae984b08c92f56ae1222209132e8612172392787bc27e2e62a8a487e48fe1c728c545d8afef5fb7f23747e docfiles size=27 RELOC/doc/luatex/luavlna/README.md details="Readme" RELOC/doc/luatex/luavlna/luavlna-doc.pdf details="Package documentation" @@ -185965,26 +195165,26 @@ catalogue-contact-repository https://github.com/michal-h21/luavlna catalogue-ctan /macros/luatex/generic/luavlna catalogue-license lppl1.3 catalogue-topics typesetting czech slovak polish luatex -catalogue-version 0.1i +catalogue-version 0.1j name luaxml category Package -revision 57183 +revision 60709 shortdesc Lua library for reading and serialising XML files relocated 1 longdesc LuaXML is a pure Lua library for reading and serializing XML longdesc files. The current release is aimed mainly at support for the longdesc odsfile package. The documentation was created by automatic longdesc conversion of original documentation in the source code. -containersize 30800 -containerchecksum 53c98fe9b23a51e57244d73e5a4c572a14f130da4ee34c441d953d4ec0f3f18900df9f522d7710fc2b1ad25dda672c8d4c49e29e2a0b764c8df542fac024c40a -doccontainersize 112252 -doccontainerchecksum 9985335dfb4b95482f685af3df692b8763815cf38439743dac4d993fe215a27fbbc08e1193f46a19535ef3a210540b57ba10f1a6fb0f66b4c6e5789354cfb4a0 -docfiles size=35 +containersize 32276 +containerchecksum ebcf0216dfc05291cd1f44096785fa10b4d8f341d0c45c03a4818aaf0ffae1b8a9ee4edc0ab26d1732d651218aaa936099a81c2d732b1ff25b956339f45df8b8 +doccontainersize 123428 +doccontainerchecksum 8f42b46c552b5771058f442e2b962d49c13f31c0b58076770131d6e8bb048cd706db9e7380a43cfaeae815bb02e83709e9165a1057ac9471bcc0fa2ab322cb45 +docfiles size=38 RELOC/doc/luatex/luaxml/README details="Readme" RELOC/doc/luatex/luaxml/luaxml.pdf details="Package documentation" RELOC/doc/luatex/luaxml/luaxml.tex -runfiles size=35 +runfiles size=36 RELOC/tex/luatex/luaxml/luaxml-cssquery.lua RELOC/tex/luatex/luaxml/luaxml-domobject.lua RELOC/tex/luatex/luaxml/luaxml-entities.lua @@ -186000,11 +195200,36 @@ catalogue-contact-repository https://github.com/michal-h21/LuaXML catalogue-ctan /macros/luatex/generic/luaxml catalogue-license other-free catalogue-topics foreign-import luatex use-lua -catalogue-version 0.1n +catalogue-version 0.1q + +name lutabulartools +category Package +revision 65153 +shortdesc Some useful LuaLaTeX-based tabular tools +relocated 1 +longdesc This package provides some useful commands for tabular matter. +longdesc It uses LuaLaTeX and offers the ability to combine the +longdesc facilities of multirow and makecell with an easy to use syntax. +longdesc It also adds some enhanced rules for the booktabs package. +containersize 8508 +containerchecksum fdc4a042872d42e1b951a2732982f5c9c5b1014a322f23a4d68fb3b5aa6c647dd881b779f37566d10c48154c3d570697efdf336fe3da09b2a3a776911edfda51 +doccontainersize 89924 +doccontainerchecksum 7a2aa7272072c26a7063934cc2015eeaa002f1bb1ceae4f3ceb99ca10d6e67be816de6492a84b6185f9b61e3ed5e06c00b9319e9a75ae20cc455d9732856bc38 +docfiles size=35 + RELOC/doc/luatex/lutabulartools/README.md details="Readme" + RELOC/doc/luatex/lutabulartools/lutabulartools.pdf details="Package documentation" + RELOC/doc/luatex/lutabulartools/lutabulartools.tex +runfiles size=8 + RELOC/tex/luatex/lutabulartools/lutabulartools.lua + RELOC/tex/luatex/lutabulartools/lutabulartools.sty +catalogue-contact-repository https://github.com/kalekje/lutabulartools +catalogue-ctan /macros/luatex/generic/lutabulartools +catalogue-license mit +catalogue-topics luatex table name lwarp category Package -revision 58837 +revision 66259 shortdesc Converts LaTeX to HTML longdesc This package converts LaTeX to HTML by using LaTeX to process longdesc the user's document and generate HTML tags. External utility @@ -186024,20 +195249,20 @@ longdesc utilities, and Perl. Detailed installation instructions are longdesc included for each of the major operating systems and TeX longdesc distributions. A quick-start tutorial is provided. depend lwarp.ARCH -containersize 204312 -containerchecksum c56c2d5a4665ecdc95510de3408026d4566e9cffe9089b91d3ae117d723ef7d788d94b44dc9a84c7b2c39e8c09692d6a5e9a01c9ac6a0cb3f71f3247798458c4 -doccontainersize 3057740 -doccontainerchecksum 976f21f5595e4673405c27d7c6b9161691692135905c3ef07982f89917660cf04d33337e11e5906517fdc4735bb8f33c8fb455ae527ebc673c49a9d3652e83f2 -docfiles size=780 +containersize 212948 +containerchecksum 2001aeb9c76b008488cededa297bfd8802cc2f4961c6f1432ed4118de204d9e8a0769b3b540ac922e786e2e6723964cdf2975f1e59ed7006029062129996e4f4 +doccontainersize 3256024 +doccontainerchecksum 704b3f89973e2fa158252e48f3804b4de5f45bd1ae03954d0eb0f598a4c1c05d6378229dec906caffaf5dfd1ea57dbd53afc77d3d1abd96c3d1be7f146b7ebfc +docfiles size=832 texmf-dist/doc/latex/lwarp/README.txt details="Readme" texmf-dist/doc/latex/lwarp/lwarp.pdf details="Package documentation" texmf-dist/doc/latex/lwarp/lwarp_tutorial.txt details="Quick-start tutorial" -srccontainersize 439180 -srccontainerchecksum db21fa84855166d966f1c1efebe0f5ffd6c2af3afc1d07fb523f6891f851c619ebaaa090e3de7b6e964e073c0553596fdbb637df7247c1d48f7489daefaea9d3 -srcfiles size=671 +srccontainersize 460028 +srccontainerchecksum 96623669ff327e7548a4c08534f454b49d9b70f038d37bd726d8c15be8beb63b1443b43219dedcad15a9415304533489c86871c1fa7cddb6878f93c7c1ca8cb5 +srcfiles size=706 texmf-dist/source/latex/lwarp/lwarp.dtx texmf-dist/source/latex/lwarp/lwarp.ins -runfiles size=779 +runfiles size=805 texmf-dist/scripts/lwarp/lwarpmk.lua texmf-dist/tex/latex/lwarp/lwarp-2in1.sty texmf-dist/tex/latex/lwarp/lwarp-2up.sty @@ -186085,6 +195310,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-backref.sty texmf-dist/tex/latex/lwarp/lwarp-balance.sty texmf-dist/tex/latex/lwarp/lwarp-bbding.sty + texmf-dist/tex/latex/lwarp/lwarp-beamerarticle.sty texmf-dist/tex/latex/lwarp/lwarp-biblatex.sty texmf-dist/tex/latex/lwarp/lwarp-bibunits.sty texmf-dist/tex/latex/lwarp/lwarp-bigdelim.sty @@ -186113,6 +195339,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-caption3.sty texmf-dist/tex/latex/lwarp/lwarp-cases.sty texmf-dist/tex/latex/lwarp/lwarp-ccicons.sty + texmf-dist/tex/latex/lwarp/lwarp-centerlastline.sty texmf-dist/tex/latex/lwarp/lwarp-centernot.sty texmf-dist/tex/latex/lwarp/lwarp-changebar.sty texmf-dist/tex/latex/lwarp/lwarp-changelayout.sty @@ -186141,6 +195368,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-newpxtxmath.sty texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-nonunicode.sty texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-overlaysymbols.sty + texmf-dist/tex/latex/lwarp/lwarp-common-mathjax-siunitx.sty texmf-dist/tex/latex/lwarp/lwarp-common-multimedia.sty texmf-dist/tex/latex/lwarp/lwarp-continue.sty texmf-dist/tex/latex/lwarp/lwarp-copyrightbox.sty @@ -186152,6 +195380,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-dblfnote.sty texmf-dist/tex/latex/lwarp/lwarp-dcolumn.sty texmf-dist/tex/latex/lwarp/lwarp-decimal.sty + texmf-dist/tex/latex/lwarp/lwarp-decorule.sty texmf-dist/tex/latex/lwarp/lwarp-diagbox.sty texmf-dist/tex/latex/lwarp/lwarp-dingbat.sty texmf-dist/tex/latex/lwarp/lwarp-dotlessi.sty @@ -186192,6 +195421,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-extramarks.sty texmf-dist/tex/latex/lwarp/lwarp-fancybox.sty texmf-dist/tex/latex/lwarp/lwarp-fancyhdr.sty + texmf-dist/tex/latex/lwarp/lwarp-fancypar.sty texmf-dist/tex/latex/lwarp/lwarp-fancyref.sty texmf-dist/tex/latex/lwarp/lwarp-fancytabs.sty texmf-dist/tex/latex/lwarp/lwarp-fancyvrb.sty @@ -186232,6 +195462,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-fouridx.sty texmf-dist/tex/latex/lwarp/lwarp-fourier.sty texmf-dist/tex/latex/lwarp/lwarp-framed.sty + texmf-dist/tex/latex/lwarp/lwarp-froufrou.sty texmf-dist/tex/latex/lwarp/lwarp-ftcap.sty texmf-dist/tex/latex/lwarp/lwarp-ftnright.sty texmf-dist/tex/latex/lwarp/lwarp-fullminipage.sty @@ -186289,9 +195520,12 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-libertinust1math.sty texmf-dist/tex/latex/lwarp/lwarp-lineno.sty texmf-dist/tex/latex/lwarp/lwarp-lips.sty + texmf-dist/tex/latex/lwarp/lwarp-lipsum.sty texmf-dist/tex/latex/lwarp/lwarp-listings.sty texmf-dist/tex/latex/lwarp/lwarp-listliketab.sty texmf-dist/tex/latex/lwarp/lwarp-lltjext.sty + texmf-dist/tex/latex/lwarp/lwarp-lltjp-siunitx.sty + texmf-dist/tex/latex/lwarp/lwarp-lltjp-tascmac.sty texmf-dist/tex/latex/lwarp/lwarp-longtable.sty texmf-dist/tex/latex/lwarp/lwarp-lpic.sty texmf-dist/tex/latex/lwarp/lwarp-lscape.sty @@ -186357,6 +195591,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-multirow.sty texmf-dist/tex/latex/lwarp/lwarp-multitoc.sty texmf-dist/tex/latex/lwarp/lwarp-musicography.sty + texmf-dist/tex/latex/lwarp/lwarp-mwe.sty texmf-dist/tex/latex/lwarp/lwarp-nameauth.sty texmf-dist/tex/latex/lwarp/lwarp-nameref.sty texmf-dist/tex/latex/lwarp/lwarp-natbib.sty @@ -186395,6 +195630,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-parskip.sty texmf-dist/tex/latex/lwarp/lwarp-patch-komascript.sty texmf-dist/tex/latex/lwarp/lwarp-patch-memoir.sty + texmf-dist/tex/latex/lwarp/lwarp-pbalance.sty texmf-dist/tex/latex/lwarp/lwarp-pbox.sty texmf-dist/tex/latex/lwarp/lwarp-pdfcol.sty texmf-dist/tex/latex/lwarp/lwarp-pdfcolfoot.sty @@ -186479,11 +195715,13 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-shapepar.sty texmf-dist/tex/latex/lwarp/lwarp-showidx.sty texmf-dist/tex/latex/lwarp/lwarp-showkeys.sty + texmf-dist/tex/latex/lwarp/lwarp-showlabels.sty texmf-dist/tex/latex/lwarp/lwarp-showtags.sty texmf-dist/tex/latex/lwarp/lwarp-shuffle.sty texmf-dist/tex/latex/lwarp/lwarp-sidecap.sty texmf-dist/tex/latex/lwarp/lwarp-sidenotes.sty texmf-dist/tex/latex/lwarp/lwarp-simplebnf.sty + texmf-dist/tex/latex/lwarp/lwarp-siunitx-v2.sty texmf-dist/tex/latex/lwarp/lwarp-siunitx.sty texmf-dist/tex/latex/lwarp/lwarp-skmath.sty texmf-dist/tex/latex/lwarp/lwarp-slantsc.sty @@ -186511,12 +195749,16 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-supertabular.sty texmf-dist/tex/latex/lwarp/lwarp-svg.sty texmf-dist/tex/latex/lwarp/lwarp-swfigure.sty + texmf-dist/tex/latex/lwarp/lwarp-sympytex.sty texmf-dist/tex/latex/lwarp/lwarp-syntonly.sty texmf-dist/tex/latex/lwarp/lwarp-tabfigures.sty texmf-dist/tex/latex/lwarp/lwarp-tablefootnote.sty texmf-dist/tex/latex/lwarp/lwarp-tabls.sty texmf-dist/tex/latex/lwarp/lwarp-tabularx.sty texmf-dist/tex/latex/lwarp/lwarp-tabulary.sty + texmf-dist/tex/latex/lwarp/lwarp-tagpdf-base.sty + texmf-dist/tex/latex/lwarp/lwarp-tagpdf-mc-code-generic.sty + texmf-dist/tex/latex/lwarp/lwarp-tagpdf-mc-code-lua.sty texmf-dist/tex/latex/lwarp/lwarp-tagpdf.sty texmf-dist/tex/latex/lwarp/lwarp-tascmac.sty texmf-dist/tex/latex/lwarp/lwarp-tcolorbox.sty @@ -186589,6 +195831,7 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp-widows-and-orphans.sty texmf-dist/tex/latex/lwarp/lwarp-witharrows.sty texmf-dist/tex/latex/lwarp/lwarp-wrapfig.sty + texmf-dist/tex/latex/lwarp/lwarp-wrapfig2.sty texmf-dist/tex/latex/lwarp/lwarp-xbmks.sty texmf-dist/tex/latex/lwarp/lwarp-xcolor.sty texmf-dist/tex/latex/lwarp/lwarp-xechangebar.sty @@ -186614,11 +195857,11 @@ runfiles size=779 texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.eps texmf-dist/tex/latex/lwarp/lwarp_baseline_marker.png catalogue-also latex2html -catalogue-contact-home http://bdtechconcepts.com/ +catalogue-contact-home https://bdtechconcepts.com/ catalogue-ctan /macros/latex/contrib/lwarp catalogue-license lppl1.3 catalogue-topics cvt-html -catalogue-version 0.896 +catalogue-version 0.911 name lwarp.aarch64-linux category Package @@ -186656,15 +195899,6 @@ containerchecksum 3a990691d24fac32523b0611350b12b10e80646a9e313ae5fb35bcf7322f9a binfiles arch=armhf-linux size=1 bin/armhf-linux/lwarpmk -name lwarp.i386-cygwin -category Package -revision 43292 -shortdesc i386-cygwin files of lwarp -containersize 340 -containerchecksum 2ef0e651a6a23f5242851471e93846135c666ad3782e6e909a6e9aac4e0a328ad10a3df0202883bd95a0fcf83af9e74824d7ca19abd28786624d20c106a4265a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/lwarpmk - name lwarp.i386-freebsd category Package revision 43292 @@ -186710,14 +195944,14 @@ containerchecksum 871bfa4606f0a57c88f3faddd0d3dd60d107c99e8d395b08087bf3ef44164e binfiles arch=universal-darwin size=1 bin/universal-darwin/lwarpmk -name lwarp.win32 +name lwarp.windows category Package -revision 43292 -shortdesc win32 files of lwarp -containersize 684 -containerchecksum 2ce2508febb001d0c1a7a4c1224161b001571a6fa7145b47bf4ed9e4c1280e195c9bdd241048630ddeaaf19f6c8efc894e31b3a14cceb6a339be94590d0fe15d -binfiles arch=win32 size=1 - bin/win32/lwarpmk.exe +revision 65891 +shortdesc windows files of lwarp +containersize 2308 +containerchecksum afc706f61d4d9c631d07edf7048951c220c29d284bccae95dbddd4a8121123fb5576d111e6bb4d16b12eaba6be2eb3e549f5b5e4d787ad0957ddea888371ad44 +binfiles arch=windows size=2 + bin/windows/lwarpmk.exe name lwarp.x86_64-cygwin category Package @@ -186894,7 +196128,7 @@ catalogue-version 2.0b name ly1 category Package -revision 47848 +revision 63565 shortdesc Support for LY1 LaTeX encoding relocated 1 longdesc The Y&Y 'texnansi' (TeX and ANSI, for Microsoft interpretations @@ -186903,12 +196137,12 @@ longdesc the company; it is known in the LaTeX scheme of things as LY1 longdesc encoding. This bundle includes metrics and LaTeX macros to use longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1 longdesc fonts in LaTeX using LY1 encoding. -containersize 54896 -containerchecksum 8b170d04aef1c95b345440b60e5aca56442374d897e4a64ea4fefff4506e133d4c06350b5ea86a81eb9a015a1fe32b2bd8c433401a9bf6433e279cc700d0b8ae -doccontainersize 3632 -doccontainerchecksum c1bbaff6124984b0c582cb86e3e8f729e2b2c256808dc621de2c12da94c7b67c673c70fbd3d17c723292a90c60638e32fd79ece9915648347a7469caea040d7b +containersize 54900 +containerchecksum 79ec3f1971587a3266d3351cf4d97e44d7871ace695c7f229b92c819f1334c2032a3c906a2e7e74e98fea5f01ef4dabac9c2dbdbecf68f0d5512c637288e8297 +doccontainersize 3652 +doccontainerchecksum c1a39c96000fa3e929ab6518acb71c26bb06179cf06af4f4eb1f2bde0d21816e108c6a89dfa2f7dd71f95887a37d532bb2914a03732dfe4080541ffa204e8e43 docfiles size=2 - RELOC/doc/fonts/ly1/README details="Outline of usage" + RELOC/doc/latex/ly1/README.md details="Outline of usage" runfiles size=104 RELOC/fonts/enc/dvips/ly1/texnansi.enc RELOC/fonts/map/dvips/ly1/pag8y.map @@ -186983,23 +196217,23 @@ runfiles size=104 RELOC/tex/plain/ly1/texnansi.tex catalogue-ctan /fonts/psfonts/ly1 catalogue-license lppl -catalogue-topics font-supp +catalogue-topics font-supp fontenc name lyluatex category Package -revision 51252 +revision 66278 shortdesc Commands to include lilypond scores within a (Lua)LaTeX document relocated 1 longdesc This package provides macros for the inclusion of LilyPond longdesc scores within LuaLaTeX. It calls LilyPond to compile scores, longdesc then includes the produced files. Dependencies: currfile, -longdesc environ, graphicx, luaotfload, luatexbase, metalogo, minibox, -longdesc pdfpages, xkeyval. -containersize 17864 -containerchecksum 8ef105cf148927c99a20e792fb2259320d0e28f4140621561c9314afeb51f71a15013841e1497d0246df8305688e7211974bfe6a618b188d813481c9526f44ff -doccontainersize 865844 -doccontainerchecksum d8768ee9ae861477a13dd837629d870d34b0d1fc0b1f0709a90255f1ce230ceb3ebb782c9a6272f72e32c3371b2a1d16577033c53e2d6d1b1cd09adb19b62e41 -docfiles size=439 +longdesc environ, graphicx, luaotfload, luaoptions, luatexbase, +longdesc metalogo, minibox, pdfpages, xkeyval. +containersize 14580 +containerchecksum 8c6b3484efcc49f1b9938a6d24f123ba0d66615f4fa44c9055043a07e8ba56eee88103efa4c67441c6c8a8e0b12596b36671eb1fdd719adb88c10aff2f7b334f +doccontainersize 834196 +doccontainerchecksum 6f4f2d0b6ebba019542bebf22afbd4e871989cfc864474cf406ae9ad10d2eef1e69af9013e8d85d660538d955086406775d4d3b64572bcb3fec0334c60f41fae +docfiles size=528 RELOC/doc/support/lyluatex/Contributors.md RELOC/doc/support/lyluatex/LICENSE RELOC/doc/support/lyluatex/README.md details="Readme" @@ -187010,9 +196244,7 @@ docfiles size=439 RELOC/doc/support/lyluatex/lyluatex.tex RELOC/doc/support/lyluatex/lyluatexbase.cls RELOC/doc/support/lyluatex/lyluatexmanual.cls -runfiles size=19 - RELOC/scripts/lyluatex/lyluatex-lib.lua - RELOC/scripts/lyluatex/lyluatex-options.lua +runfiles size=14 RELOC/scripts/lyluatex/lyluatex.lua RELOC/tex/luatex/lyluatex/lyluatex.sty catalogue-contact-bugs https://github.com/jperon/lyluatex/issues @@ -187020,11 +196252,11 @@ catalogue-contact-repository https://github.com/jperon/lyluatex catalogue-ctan /support/lyluatex catalogue-license mit catalogue-topics luatex music music-extinp -catalogue-version 1.0f +catalogue-version 1.1.3 name m-tx category Package -revision 52851 +revision 64182 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 @@ -187032,10 +196264,10 @@ longdesc to the development of M-Tx was to provide lyrics for music to longdesc be typeset. In fact, pmx now provides a lyrics interface, but longdesc M-Tx continues in use by those who prefer its language. depend m-tx.ARCH -containersize 4544 -containerchecksum c99b0a658d46c58e47f58c0494a4f32b5997ed304bb35b58a5732549ea17b366299aba4504982bb4a1e2743800b4bc02028e402e03cf363178bf1ac262802e9b +containersize 4524 +containerchecksum b56bc4432bcd340f3e92f5043c38bde7f14b5f2d32b9433fa21c73c20f7ebb981714175aa6f4f871636efb62a52cd24aa639e87a320039313b16db1b027ee2f5 doccontainersize 739512 -doccontainerchecksum ebf3e4035460439abd3ac91202e28c0f6926181c34bcfd1f1b3115ff6ec90bd2d0cb9a5043d81ee8434d8b260f3a8b437585d3e81b7161b145c8c112d5643cb1 +doccontainerchecksum 316fbc2b37b903cae8da6bb9f44b8afad0e3e577c6fd84664e1724ffe318bbdbf9609dcadd5cde6a14cc5acbc134f69bd7a87dd90d9da7d4442a5f913b8132f5 docfiles size=259 texmf-dist/doc/generic/m-tx/Makefile texmf-dist/doc/generic/m-tx/README details="Readme" @@ -187109,171 +196341,193 @@ catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html catalogue-ctan /support/m-tx catalogue-license mit catalogue-topics music -catalogue-version 0.63c +catalogue-version 0.63d name m-tx.aarch64-linux category Package -revision 53999 +revision 65927 shortdesc aarch64-linux files of m-tx -containersize 43740 -containerchecksum 4d8f574991803b81e70bb485e9412128abfe610ced7a72763d90951fe52e901b6b3d14c0a066b27efdd8863aebe21231a98e2694dcffecbb73a83300dbf10bc8 +containersize 43760 +containerchecksum d5cdcc4f7de44eb98948c442bfabbd05af6580a37e1f009260009dce6124a9bfeabba14d860c8c79e6eb1ad054ec48dc161e2fb63532384300eea0da48b166b9 binfiles arch=aarch64-linux size=33 bin/aarch64-linux/m-tx bin/aarch64-linux/prepmx name m-tx.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of m-tx -containersize 42740 -containerchecksum 2a9a26fea2e021045e73b2e09aea7996af68dd69f0302621ad6ee3dfccf64ae48a482f213658c9b01d7bfe6f829d3cbf5bdc448c1262ade6fff14a48ea160abb +containersize 42800 +containerchecksum e06a011730e9cbb78e8cb7542c59edca33c2ef7df3197e46004455eb7e562793cbe2df75d7818b62b283eb20570fcc4e0a95d9db11651ecd578629dcc806fdda binfiles arch=amd64-freebsd size=32 bin/amd64-freebsd/m-tx bin/amd64-freebsd/prepmx name m-tx.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of m-tx -containersize 39828 -containerchecksum 2b7b2dad917a1aa3a68f5ea516bd041a13f1daf00189bcccfdf9da514c1b90dd797469f6b9ada4197a8ec7d2ea2b56fa8c392dbdda73e83e13386ff81e4fa39e +containersize 39840 +containerchecksum 89993eb94d54e0e0f8dc004bf4af7aa89386449c3d406bd585d2e00dbf4a3a10fbd5c7bcdeca526a373610baf20eaf5e8cef349813d38b162f8a88511c9f784b binfiles arch=amd64-netbsd size=37 bin/amd64-netbsd/m-tx bin/amd64-netbsd/prepmx name m-tx.armhf-linux category Package -revision 57957 +revision 65877 shortdesc armhf-linux files of m-tx -containersize 35448 -containerchecksum ef98797d6f27ce4e6cee21c6313ac74930ab4796df30b6d8fb023e54223a6cb9621b18366722eeee8fe379495bb3d813e934b086402f52712ad5690428cf5f35 +containersize 35440 +containerchecksum 3aae601feb44ff9a0e53c04d46d854750529125904386610e6caea29172934a3b76f5cc4f1385aaeee85652619e3e5deeeeb8cdd9ff956560f6db9b9c4aa1cb1 binfiles arch=armhf-linux size=28 bin/armhf-linux/m-tx bin/armhf-linux/prepmx -name m-tx.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of m-tx -containersize 42272 -containerchecksum 1fed8ddffc011c422d3c31c12a9cbdd4e62c892b491e753a56679d885f34c7f6e5d7d9ee820f1505e4df3cd6caeea8a88cc6a6197fc06346d10a39625bf32e89 -binfiles arch=i386-cygwin size=33 - bin/i386-cygwin/m-tx - bin/i386-cygwin/prepmx.exe - name m-tx.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of m-tx -containersize 39436 -containerchecksum 0e12e13f8072b0e0c5e8fe874cfc6a6de1ef2a4e83c39f21897432356bf94bcdfe353bfea5af9ff0231bb670f80a2cfe9a4e847655374db08f2a68df3cc8d9da +containersize 39816 +containerchecksum 4ae3f2acb86bca5e0cb21d46ac620358901b046fc8ddc80759181115f354938cf4191e2f44d615d98dd5811704fe2346447b41aec25187e654b770ad3e101ae0 binfiles arch=i386-freebsd size=30 bin/i386-freebsd/m-tx bin/i386-freebsd/prepmx name m-tx.i386-linux category Package -revision 50281 +revision 65877 shortdesc i386-linux files of m-tx -containersize 46916 -containerchecksum 889b67c4b63b96398e4db51ec137522f873e853898503e9186b3f9af23a7cae2a4e81a22681cf99e39b47b625f0122128e83137855bb5dfe4f1d4d907d79413c -binfiles arch=i386-linux size=34 +containersize 48232 +containerchecksum 36a70c0663813e07e3a2f087efe88476eb8e86e0a767ee936d59dc63445c13deeefe7a0ee1ff9e60adaffbbc44b7ac36486f4d70b29f5ed3d9a8b18aa32b58d4 +binfiles arch=i386-linux size=36 bin/i386-linux/m-tx bin/i386-linux/prepmx name m-tx.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of m-tx -containersize 37652 -containerchecksum 4fe34ebdf94164552e17e0f753a9895447fb0a3e4fc95bb1106b17bb559b221675a74b60e4e7dcf3a3190922df096c2e6e0abb9c3fc68b829b6ccfd9b8e46162 +containersize 37668 +containerchecksum 19682950a46100e5e47f20dceb203a3dbedde95a1733d9e83975a8f43552d7ea5e034b4dcac3191d0e1c87e922b849a27c8348a708779781b5b80a15c2a2a4ee binfiles arch=i386-netbsd size=35 bin/i386-netbsd/m-tx bin/i386-netbsd/prepmx name m-tx.i386-solaris category Package -revision 48732 +revision 65877 shortdesc i386-solaris files of m-tx -containersize 42976 -containerchecksum ec7852ea1a6158f088871872f079baa5bd70e4472cc267de8bc5c7fa19d572829866e10a2a4a3578d93f05ef1b3472ca3ebc083621ea276635fbece43a7e08a1 +containersize 43428 +containerchecksum a2434e0888ad96efd697ec8645df0268e63aedc86a057d31062a93e5010678b61a77c761514ce5ecfc285bec5f4f6573a274feef68dfc10dbd790743c3833ba3 binfiles arch=i386-solaris size=31 bin/i386-solaris/m-tx bin/i386-solaris/prepmx name m-tx.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of m-tx -containersize 87172 -containerchecksum 4e2bd03f25c8a2ba3b4f2ecf3d6c59e72bd451432e3210da689aa794689d2e0a1a0fb650efd0d347b99ee5e0ec20d365bfdd16c8e9ef0dbf648a9f14cf7fbdb7 +containersize 86628 +containerchecksum 02a4480241cec2e24cbc088ca93864d97ee12ee00bafc0b7abcfb1cca6c145100fbc5e296b35e6cde6880e99eca0df23e65e485987af312603c424cd7f6ddf3a binfiles arch=universal-darwin size=84 bin/universal-darwin/m-tx bin/universal-darwin/prepmx -name m-tx.win32 +name m-tx.windows category Package -revision 53994 -shortdesc win32 files of m-tx -containersize 41252 -containerchecksum 5df8e5149bb8ed955f1380952a8176d38b2b9dda495afe722743ab68c7ab8346c275456df9fd4d53e655b6b48ec443eee3f424238e7bdaab49295e67cdd72d5d -binfiles arch=win32 size=29 - bin/win32/m-tx.exe - bin/win32/prepmx.exe +revision 65891 +shortdesc windows files of m-tx +containersize 46548 +containerchecksum b996791a38ebfc9004c3ce2d25bc4c31496283056d69b7a7241a286c91e9fc9836a9451e2366412f1f3ce7f3c9f9224054e4cbb6f38fa16cd70cd1a179e84ed8 +binfiles arch=windows size=34 + bin/windows/m-tx.exe + bin/windows/prepmx.exe name m-tx.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of m-tx -containersize 43960 -containerchecksum 5c9fc4e3d78d4325278f0fb40f3e3941c96733bda537aa37ae410ca14c0ace4c533af4b0d9949bad682d6d0b23aa06a445c7ffb21b5bcf08c4067e5c47a9016d -binfiles arch=x86_64-cygwin size=31 +containersize 44636 +containerchecksum 9e120b4c01e63556795b5757f1bd035b5ea28f4f0239a80b26a48965a3cac2737f685d0b6eb5da6d7203d0fce07613e39a92d4e07b6e7263c904c81500fb294f +binfiles arch=x86_64-cygwin size=32 bin/x86_64-cygwin/m-tx bin/x86_64-cygwin/prepmx.exe name m-tx.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of m-tx -containersize 43244 -containerchecksum ecdfb017560ea32df6d1f0b0b5ebcd7f6b8ef56ee09ec31921b76c7e83412ad99d4f370d0fdbde2895ec8497ab2368662d531ac4d54ed4506a9f27d45e6b3c1f +containersize 43224 +containerchecksum 45f4df6fb7c7893f696cae5b6521d98b8bd7c586e89da091b28b734ab39403e4f20879d2e063f60b58f97c7c5b7a121d2410110ddc275a2fa41a5b84d57d197f binfiles arch=x86_64-darwinlegacy size=32 bin/x86_64-darwinlegacy/m-tx bin/x86_64-darwinlegacy/prepmx name m-tx.x86_64-linux category Package -revision 50281 +revision 65877 shortdesc x86_64-linux files of m-tx -containersize 43488 -containerchecksum 6ec3b3b05be7d8aa20b975085dc0834e0fbac26f937b03317ff39bec4928f95add0ee49a2b21ffd876e7e7d902858052d4abd5ef480d313f87739d9fd1a26ff5 -binfiles arch=x86_64-linux size=33 +containersize 43816 +containerchecksum 5ad966dfd2519770017fb873cbba9618840f8436acea11781b6d24901320ee306632e97606e7903aeb0e7052affbbd0a65118feb8ed8b35524ce13b1a1aedbe8 +binfiles arch=x86_64-linux size=32 bin/x86_64-linux/m-tx bin/x86_64-linux/prepmx name m-tx.x86_64-linuxmusl category Package -revision 54264 +revision 65877 shortdesc x86_64-linuxmusl files of m-tx -containersize 46492 -containerchecksum 270bcdd0b4f4fb4314e20d2aae075127491e65b88d8ac85fc80aea44a1ee523c0f446c18affdf0575934ee1c9b26201e62a1e69fa279d09ab9cdaa1737247d51 +containersize 46004 +containerchecksum fa607cea0ab7e01cb633d2f2f2d15a069839485c7a61a372d422041cf373fc6e3dc147cd2d1154043ddf1038677094050cd3fdc98dc7b6f3c7d6932eb584f23f binfiles arch=x86_64-linuxmusl size=33 bin/x86_64-linuxmusl/m-tx bin/x86_64-linuxmusl/prepmx name m-tx.x86_64-solaris category Package -revision 48732 +revision 65877 shortdesc x86_64-solaris files of m-tx -containersize 47196 -containerchecksum 48b9e1e4709685ac7418311dece129bc47b199da1b7f634076afbb633301c23181a5ed308ce72b9237b1ef074ab6646584451c06a88b0d94e30902e47acb77ee -binfiles arch=x86_64-solaris size=35 +containersize 47656 +containerchecksum 46a823ca76468812894fafefe29fd1996d3a8af8ed05e9155af8eb1d53dd846e1c09975b5f837666e56d0ca15dcfe331b1b4630b392663a3bacfb4f3c8d576fb +binfiles arch=x86_64-solaris size=36 bin/x86_64-solaris/m-tx bin/x86_64-solaris/prepmx +name macrolist +category Package +revision 60139 +shortdesc List operations for LaTeX2e +relocated 1 +longdesc This package provides a list data structure and common list +longdesc functions such as \macrolistadd, \macrolistremove, +longdesc \macrolistforeach, as well as \macrolistremovelast (similar to +longdesc C++'s pop_back) and \macrolistjoin (similar to Javascript's +longdesc arr.join). Unlike most programming languages, the lists in this +longdesc package are 1-indexed, meaning the first element is numbered 1, +longdesc the second element numbered 2, and so on. +containersize 2340 +containerchecksum d722a58921aa7f6c5a887c022027df5d04c905f9c1cd7a95df31e1e3d9ad8c583028436eeb35217cb186aee6ea21efff09d3f52fa5284963789ccaeedc3342e7 +doccontainersize 190676 +doccontainerchecksum 21893f581ee47e136a47c56deaee6f9c4e6c5e4380027e22bfb62cf6258502ecb1a647f11dd5468b8687c033e0cc708397efc2499307db320963598228dd3b4b +docfiles size=49 + RELOC/doc/latex/macrolist/README.md details="Readme" + RELOC/doc/latex/macrolist/macrolist.pdf details="Package documentation" +srccontainersize 4528 +srccontainerchecksum ee930f3a9d8a909c9c139f47b9022badf50ead0fb95a87a38dc2850e1bf7ea38d346ac362e1aeeb8c2dfb661ce5dca0c3cb78fadaadc0524b080d73d3241d0fd +srcfiles size=5 + RELOC/source/latex/macrolist/macrolist.dtx + RELOC/source/latex/macrolist/macrolist.ins +runfiles size=3 + RELOC/tex/latex/macrolist/macrolist.sty +catalogue-contact-repository https://github.com/chennisden/macrolist +catalogue-ctan /macros/latex/contrib/macrolist +catalogue-license lppl1.3 +catalogue-topics list macro-supp +catalogue-version 2.1.0 + name macros2e category Package -revision 56291 +revision 64967 shortdesc A list of internal LaTeX2e macros relocated 1 longdesc This document lists the internal macros defined by the LaTeX2e @@ -187282,10 +196536,10 @@ longdesc macros are hyper-linked to their description in source2e. For longdesc this to work both PDFs must be inside the same directory. This longdesc document is not yet complete in content and format and may miss longdesc some macros. -containersize 820 -containerchecksum 4e187cb2c5d6a2c165e7f74d8234dd5a609ea1462dad0a268bf17c6e21acf22d9c6f54a53930dd6678b1375cb8878fecea22f4f132a8892aed7387d29fc239c6 +containersize 816 +containerchecksum 4b11fe67e0a57f98bec13e9ce928664dbeee189a2eb303312632a881ba4f321fb5acdfbec9d14544782b86a961add6154a21c731f58e889ea58e98459de05c39 doccontainersize 185624 -doccontainerchecksum ff2e1118b718e17a4716a84bea265acfe47f2178ab6c0a44d39e0320ffd6f0dcce7dffa37eddf14a7ea41dd4b3431ff7c102f6c3c6092e9562fc60de19b6d89e +doccontainerchecksum 71db4e3a595508119b1a8059c25b7a38e3252398186386519e7edc28b3a75cb6d6954f274795b9ef88e360b1e0998e4da2a29ba1f5ebf464e535ea90c498e8a2 docfiles size=55 RELOC/doc/latex/macros2e/Makefile RELOC/doc/latex/macros2e/README details="Readme" @@ -187293,9 +196547,9 @@ docfiles size=55 RELOC/doc/latex/macros2e/macros2e.tex runfiles size=1 RELOC/tex/latex/macros2e/extlabels.sty -catalogue-contact-bugs https://sourceforge.net/p/macros2e/tickets/ -catalogue-contact-home https://sourceforge.net/p/macros2e/ -catalogue-contact-repository https://sourceforge.net/p/macros2e/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/macros2e/issues +catalogue-contact-home https://github.com/MartinScharrer/macros2e +catalogue-contact-repository https://github.com/MartinScharrer/macros2e.git catalogue-ctan /info/macros2e catalogue-license lppl1.3c catalogue-topics latex-doc @@ -187411,6 +196665,36 @@ catalogue-license lppl1.3c catalogue-topics debug-supp catalogue-version 1.7 +name magicwatermark +category Package +revision 63656 +shortdesc An easy and flexible way to set watermarks +relocated 1 +longdesc This package can flexibly set and clear watermarks. It is based +longdesc on everypage and TikZ, encapsulated by LaTeX3. All watermark +longdesc content is placed inside a TikZ node in the center of the page. +containersize 2380 +containerchecksum 87dc295ac046213ed1a0b3c1b2b415edb3f65cd1e213b101ed3125df663fc4261fd54c07343ece9dcb4e345f134e7d9caff2791e0b8ff507b8d006d5c2dd1430 +doccontainersize 217856 +doccontainerchecksum 76504a77b18c8fd21d27cb26092edbca6e1e9470c006bd486ab4412116f30b833f3a92cac216c73318372da4fe3ccc7342effed2cfcafd09fb8efb1770582d5f +docfiles size=58 + RELOC/doc/latex/magicwatermark/README.md details="Readme" + RELOC/doc/latex/magicwatermark/magicwatermark-en.pdf details="Package documentation (English)" + RELOC/doc/latex/magicwatermark/magicwatermark-en.tex + RELOC/doc/latex/magicwatermark/magicwatermark.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 4688 +srccontainerchecksum 4f42f8459f7ae28a4799473b57f0cbeea59de0f6b1cb065a0e2f27a8ab5698512bf3845b275e488c7157d3504d79680e679c88fbd510bce485a89b72671fc98c +srcfiles size=5 + RELOC/source/latex/magicwatermark/magicwatermark.dtx +runfiles size=2 + RELOC/tex/latex/magicwatermark/magicwatermark.sty +catalogue-contact-bugs https://github.com/ljguo1020/magicwatermark/issues +catalogue-contact-repository https://github.com/ljguo1020/magicwatermark +catalogue-ctan /macros/latex/contrib/magicwatermark +catalogue-license lppl1.3c +catalogue-topics watermark background pgf-tikz expl3 +catalogue-version 1.0.1 + name magra category Package revision 57373 @@ -187611,41 +196895,47 @@ catalogue-version 1.0 name make4ht category Package -revision 58563 +revision 66130 shortdesc A build system for tex4ht longdesc make4ht is a simple build system for tex4ht, a TeX to XML longdesc converter. It provides a command line tool that drives the longdesc conversion process. It also provides a library which can be longdesc used to create customized conversion tools. depend make4ht.ARCH -containersize 46796 -containerchecksum dee613984e389d3d5e85c64bbe99390eb533551b3d03d3f9993cd8d92fb5dc7495456e51281ab204670a0f42139111b27b45c132075eda47c5604e50f335919a -doccontainersize 158628 -doccontainerchecksum f153c737e87821a478fbc9712b320647842b3851094c851b4619ebf1e658ca944adeb2f19d197b57aaa649be70cabab9988ba33914a10c3708c75ee5370b2eac -docfiles size=64 +depend tex4ht +containersize 55576 +containerchecksum 9eddfced4137652653744256bd4ef342a1b5462a2bbe1852c7fc264b08646b0757d24ae2d12711c66905f810a8f0749ae7f6d7f32983d3aa96fad63e9e104a00 +doccontainersize 179688 +doccontainerchecksum 2552e84307b92538639481b64690b2d4853f03e795b11daa61f88a1a15896f24982dcd563c181497a287744eabc5a4c3e18a2a705bbfcd9099383b1858a02081 +docfiles size=74 texmf-dist/doc/support/make4ht/README details="Readme" texmf-dist/doc/support/make4ht/changelog.tex texmf-dist/doc/support/make4ht/make4ht-doc.pdf details="Package documentation" texmf-dist/doc/support/make4ht/make4ht-doc.tex texmf-dist/doc/support/make4ht/readme.tex -runfiles size=81 +runfiles size=95 texmf-dist/scripts/make4ht/domfilters/make4ht-aeneas.lua texmf-dist/scripts/make4ht/domfilters/make4ht-booktabs.lua texmf-dist/scripts/make4ht/domfilters/make4ht-collapsetoc.lua texmf-dist/scripts/make4ht/domfilters/make4ht-fixinlines.lua texmf-dist/scripts/make4ht/domfilters/make4ht-idcolons.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-inlinecss.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-itemparagraphs.lua texmf-dist/scripts/make4ht/domfilters/make4ht-joincharacters.lua texmf-dist/scripts/make4ht/domfilters/make4ht-joincolors.lua texmf-dist/scripts/make4ht/domfilters/make4ht-mathmlfixes.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-odtfonts.lua texmf-dist/scripts/make4ht/domfilters/make4ht-odtimagesize.lua texmf-dist/scripts/make4ht/domfilters/make4ht-odtpartable.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-odtsvg.lua + texmf-dist/scripts/make4ht/domfilters/make4ht-sectionid.lua texmf-dist/scripts/make4ht/domfilters/make4ht-t4htlinks.lua texmf-dist/scripts/make4ht/domfilters/make4ht-tablerows.lua - texmf-dist/scripts/make4ht/extensions/make4ht-ext-build_changed.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-common_domfilters.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-common_filters.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-detect_engine.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-dvisvgm_hashes.lua + texmf-dist/scripts/make4ht/extensions/make4ht-ext-inlinecss.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-join_colors.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-latexmk_build.lua texmf-dist/scripts/make4ht/extensions/make4ht-ext-mathjaxnode.lua @@ -187685,15 +196975,15 @@ runfiles size=81 texmf-dist/scripts/make4ht/make4ht-indexing.lua texmf-dist/scripts/make4ht/make4ht-lib.lua texmf-dist/scripts/make4ht/make4ht-logging.lua - texmf-dist/scripts/make4ht/make4ht-odtfilter.lua texmf-dist/scripts/make4ht/make4ht-xtpipes.lua texmf-dist/scripts/make4ht/mkparams.lua texmf-dist/scripts/make4ht/mkutils.lua +catalogue-also tex4ht tex4ebook catalogue-contact-repository https://github.com/michal-h21/make4ht catalogue-ctan /support/make4ht catalogue-license lppl1.3 catalogue-topics cvt-html -catalogue-version 0.3g +catalogue-version 0.3m name make4ht.aarch64-linux category Package @@ -187731,15 +197021,6 @@ containerchecksum 92d2ae6412b862dbf491e3790f3b5163ed18a91bf98eac1b14735e83bbfecc binfiles arch=armhf-linux size=1 bin/armhf-linux/make4ht -name make4ht.i386-cygwin -category Package -revision 37750 -shortdesc i386-cygwin files of make4ht -containersize 336 -containerchecksum f45b35e91a9ab26c9b0350a81e02ec928b95e8d25aca6ed084dde6097ae89a9359fdc4d3fa24ccc82e4fdd67aa6685ffa8ea671b58d7a7e9286906e5ff8820e6 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/make4ht - name make4ht.i386-freebsd category Package revision 37750 @@ -187785,14 +197066,14 @@ containerchecksum 043055395f7c9be34b322b67fc737f7da96acddf4e45d0a3a732d4be79949e binfiles arch=universal-darwin size=1 bin/universal-darwin/make4ht -name make4ht.win32 +name make4ht.windows category Package -revision 37750 -shortdesc win32 files of make4ht -containersize 680 -containerchecksum 33360e5e61ecfbea02edbc76021b2c74fa464cc8ab1a8af304314d95a7f3e27e6c5e74b3088162bafd76275ee29aee0bc57a17e0f5a1c8aa6774cb3e3be3ca25 -binfiles arch=win32 size=1 - bin/win32/make4ht.exe +revision 65891 +shortdesc windows files of make4ht +containersize 2308 +containerchecksum d28ff43b3be23f150d2746b868bb95b6b0f0637c008e48e777d510059d129ec688877bff6778d4d89489ba01979d22c3d7a2e98ba012f26caa78d8437e12e52b +binfiles arch=windows size=2 + bin/windows/make4ht.exe name make4ht.x86_64-cygwin category Package @@ -188139,15 +197420,6 @@ containerchecksum f3faf72357ebd72adf7e204f03cf75ba3d9007ace1bb476de0807aa2aefbef binfiles arch=armhf-linux size=1 bin/armhf-linux/makedtx -name makedtx.i386-cygwin -category Package -revision 38769 -shortdesc i386-cygwin files of makedtx -containersize 340 -containerchecksum 946cd60df793ed893925bbc81d4f416c79ad8d11f56368f2eac94f1a41a2c6a30ecb7722f972ed05b05d4efe70ba025e7eb44bfbc50b3e3cb470f80e8fdc2bba -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/makedtx - name makedtx.i386-freebsd category Package revision 38769 @@ -188193,14 +197465,14 @@ containerchecksum 2157c4bf2d3ae32482c6418ce05aa805abc9755dee43391090023c9e54b6b9 binfiles arch=universal-darwin size=1 bin/universal-darwin/makedtx -name makedtx.win32 +name makedtx.windows category Package -revision 38769 -shortdesc win32 files of makedtx -containersize 684 -containerchecksum 106f9a088b5d507c8771039ef2c89fde62e404d55e417c284532a6ba5a5fe46e50a25a1237b152ef2fdf8cd8f3f1b03bd399d6dde8af3bda7c9538bf13bce62a -binfiles arch=win32 size=1 - bin/win32/makedtx.exe +revision 65891 +shortdesc windows files of makedtx +containersize 2308 +containerchecksum 1a26aea58583a61ded0f46a4e7f57859a09b7acfa5ad58568fb7618621d09081c11294ab8d4ddeee354549e192d475bc5b17902b3f5a6103a3c06a6922a13ff6 +binfiles arch=windows size=2 + bin/windows/makedtx.exe name makedtx.x86_64-cygwin category Package @@ -188273,16 +197545,16 @@ catalogue-topics glossary name makeindex category Package -revision 52851 +revision 62517 catalogue makeindexk shortdesc Makeindex development sources longdesc The package contains the development sources of makeindex, as longdesc derived from the texlive subversion repository. depend makeindex.ARCH -containersize 4628 -containerchecksum 7f4df4944bc738e92ccd7fe54e1448a9ead71077d25359d6b97d18ed9df4dde2e6db31bbb183c646ea902e24b5cb15581ef12eaecfe90ba08361dd191e5220d2 -doccontainersize 466032 -doccontainerchecksum 492d0bb6f44ebc0440998f55b51ec5bce5ad564918296f85245ab10bd9ef67f8a2e441560ed7aeba8af2cdb0a923f225dd867454ee83889252da6be36f89ab16 +containersize 4608 +containerchecksum 5967ba4123fd4c708ce841d29211fdb66c28518f4b418903be0ddf2a49964f706af96b250eec814c547e0703460c1273ce72a7acf3ea9fe28cc1c7073af29d3c +doccontainersize 466380 +doccontainerchecksum 40b9ee1ebf7dba9a4bb4bb3077cdb1e88b07f276a9d0ae9c2817bd76a2f742ec9237d1b6d9658694fc5fc4e8f82591194862637bd83ea8e106c0541591d343ee docfiles size=131 texmf-dist/doc/man/man1/makeindex.1 texmf-dist/doc/man/man1/makeindex.man1.pdf @@ -188306,163 +197578,194 @@ catalogue-topics index name makeindex.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of makeindex -containersize 47248 -containerchecksum 2a3915b88266bc9ec1b7772ddef055ea97088f6b70b8b71238621b683eabd6d1fe90ac80961fffbdad6759a473562637bcf73beee00478c7d5eab7a5ae1326c8 +containersize 47848 +containerchecksum 6eae8f15e7b4e42df33ca062b2a0cbc2d52d2b68dd7406ecae5b6326502e87f54a659c5c7d90607bf190b2c9d390c850778dd0947a012c1a395ac4d5fc5acafc binfiles arch=aarch64-linux size=39 bin/aarch64-linux/makeindex bin/aarch64-linux/mkindex name makeindex.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of makeindex -containersize 49052 -containerchecksum 1539d603326f9294cc1f86a543be08d6141577326ec2940def62e2fadc6a2a07ac0cf747c485432f8aaf20116590adeb9a49d16109f6fa8a6db9703c9e82de1e +containersize 49180 +containerchecksum 78673146e5dab6c5a73265857f68b376e88422b7bb4784cdf8da406f7e4bf287b3e893cc617604ba338ca957a244e30641e969bf8a852e008979686178ab450e binfiles arch=amd64-freebsd size=38 bin/amd64-freebsd/makeindex bin/amd64-freebsd/mkindex name makeindex.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of makeindex -containersize 44276 -containerchecksum c62fe96fde4a2941c6bf152550928bb1a845ac73059276bc2b02f575e0cebc99647ddefd9fbd5154f3059fbe0ac902beb271eba9aafd2aa6b9151815e2586375 +containersize 44576 +containerchecksum 68ec38df071aeb59de4354b961c33405855dbc1563da025af87112ae425f163fc61aac5e9214ef6b2f3932c5e5f39de12845eeaaa7eb3a79d45f1fc7938ed715 binfiles arch=amd64-netbsd size=43 bin/amd64-netbsd/makeindex bin/amd64-netbsd/mkindex name makeindex.armhf-linux category Package -revision 57957 +revision 65877 shortdesc armhf-linux files of makeindex -containersize 40056 -containerchecksum 970482c8ffbe6849188aaeff04578f93821fd8bab1d4009a1483e21a54e9c1017e0743d6e4080fb80e141796e7b5f68bd0c6387a9687aca9c51fabad7259d562 +containersize 40712 +containerchecksum c19b05ed04379c7f2c7099a5e2fed097a77e7dbc3490a8c16806e2d74f4d267d8f470b7c49adee9310981550809fa0ab211a013c2b99a19b85c850b870ee5363 binfiles arch=armhf-linux size=33 bin/armhf-linux/makeindex bin/armhf-linux/mkindex -name makeindex.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of makeindex -containersize 19036 -containerchecksum 55e75fe0fee829041d03db21d222fd122ae58442189fa6004259b0f5442256a09beaddf34e4f175b70935cde6c66c74c159b6814215ff2e70dad8f69546c735e -binfiles arch=i386-cygwin size=21 - bin/i386-cygwin/makeindex.exe - bin/i386-cygwin/mkindex - name makeindex.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of makeindex -containersize 41860 -containerchecksum babca9dede68889c6345a3454dffeabda56d81bfbe51778e26a7afda93d129aada0233ab8adfdf74884c0ca54801a003e81f2515395d5e3e43f413627a0840d0 -binfiles arch=i386-freebsd size=33 +containersize 42864 +containerchecksum 309cd857adadebced05d6a3b1e6d414b245e4d5f872ebf299f60411fad122c19b8911c64f09ee863965556f088bb223aa791109adf65ec137591f16f66f89dd5 +binfiles arch=i386-freebsd size=34 bin/i386-freebsd/makeindex bin/i386-freebsd/mkindex name makeindex.i386-linux category Package -revision 57878 +revision 65877 shortdesc i386-linux files of makeindex -containersize 50576 -containerchecksum 07a030907cb7e4e795753e525be3699b5fff5ade2cf40178147fe23c1df2da65893bd641fbe1f3dd9daf3251525febd019653febb2991bf0fe133339827e06d2 -binfiles arch=i386-linux size=40 +containersize 51708 +containerchecksum 7fe43beb66ac83464162bda099735b8e8195c3fa128217a25f6f0952e0f24a43cdc7ea2c130bf2f4ff1d6bb1c23bdbfec68bebcfaa231ddd1468092fbfa9fd1c +binfiles arch=i386-linux size=42 bin/i386-linux/makeindex bin/i386-linux/mkindex name makeindex.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of makeindex -containersize 38944 -containerchecksum b453e5302fdb34ed8ad2258ed62f1e3c970f63c1edea8e146295545cacdfd40ca6071fc6bc29c0e843852b7bf841556d9dba484dd8e71145ab7f54103a285ca9 +containersize 39276 +containerchecksum 1bd94c053789099e64e848f4edb4296c41ffafa2b21225384da8c1a8f5fc9b6981c1bd04a7637a4c2d3152bf322ea69b2dcd4c0f9525e5c880b9d061a05433a9 binfiles arch=i386-netbsd size=41 bin/i386-netbsd/makeindex bin/i386-netbsd/mkindex name makeindex.i386-solaris category Package -revision 57938 +revision 65877 shortdesc i386-solaris files of makeindex -containersize 45984 -containerchecksum d8cf16ab7dcd0cb73be36ec1f7b772ec13af7e33719b4588a267484f89dbaf9c083e075c5f80a3f24d004d0dd4ef912600c7709a0699b511ddbaa34b00872021 +containersize 46412 +containerchecksum 6caf76055326e86cd23fe869e54862dac626f98af8d70dfd2d3a4858be0521d305e451aa72ad0b062a7d19b880991dd67367c6ddd23458aa66e317344ce371d9 binfiles arch=i386-solaris size=35 bin/i386-solaris/makeindex bin/i386-solaris/mkindex name makeindex.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of makeindex -containersize 92848 -containerchecksum 343c2db9a3c8a17e1f009ec17833ff6fd647cf068e41558c3e40a321f0d6392f0248223b76bab9ba75a9e18f230dc783b1594abe2298f304d53ec69a53c546d1 +containersize 94216 +containerchecksum 344a009d9933ca858a98e95512297b8dff799d90fccb616ccba19be1f2c66e8f32e357a94828ac399a9f8e2006af2391ca8ed8c741091f46a0b81ff42dab285c binfiles arch=universal-darwin size=88 bin/universal-darwin/makeindex bin/universal-darwin/mkindex -name makeindex.win32 +name makeindex.windows category Package -revision 58783 -shortdesc win32 files of makeindex -containersize 18204 -containerchecksum eef29348200f32e1177f31e3689dfc912bfb8cb180a4892831b721b8006109cb354c863d0f7356e48a3a7ee9ebfd43e1c9bec09fe1ed07a122626bfd25fe7dda -binfiles arch=win32 size=21 - bin/win32/makeindex.exe +revision 65891 +shortdesc windows files of makeindex +containersize 20712 +containerchecksum c1c8095a54fdd8017043abff3db31f04a8ba22ec6594e4015e2324e901e546fd516f9d396599517c48d7fc9a0c2148507b638cb0650964cd7ecc3daf6253a538 +binfiles arch=windows size=23 + bin/windows/makeindex.exe name makeindex.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of makeindex -containersize 21556 -containerchecksum b9ffaacc974087dabe6893c2c67ac8b1f4a1be675fcef0e015236fd5090910b12ec6c9bc0e45a1b4410c56bd1fc764c818066cf8740c83c76871b26fb55acb5a +containersize 22396 +containerchecksum e62f440bd6828b122e4200172547416c7ea3d8ed486e2c178401153fa495f93691a05ab083c30fe44c28fde003252d81c1d969335a3c57494c8901b85c0b7188 binfiles arch=x86_64-cygwin size=21 bin/x86_64-cygwin/makeindex.exe bin/x86_64-cygwin/mkindex name makeindex.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of makeindex -containersize 46448 -containerchecksum 54d4c80b93587c54d7cfa6e5789a0665d2af629a58ed0fabe958420a005c6a679f00c1b669b603d00c10360e8261daf727ec79d4b4a036ebf13ad2ba1ead075d -binfiles arch=x86_64-darwinlegacy size=35 +containersize 46652 +containerchecksum 6dda40261b1e837bcbd6a12316f6a32f141e91a7f23ad742a9eabf43939742023a4cfc9412ca756cb574d30a0b352e637408f4b45cb449e7c82280dd0147384f +binfiles arch=x86_64-darwinlegacy size=36 bin/x86_64-darwinlegacy/makeindex bin/x86_64-darwinlegacy/mkindex name makeindex.x86_64-linux category Package -revision 57878 +revision 65877 shortdesc x86_64-linux files of makeindex -containersize 49692 -containerchecksum ed7ef6cbba976d17d86d0650cff630633cda8f2ffcc434adf944f60b802d8a334c71eefb7a160a22e31d98df848c44989e3e09e08658f63f2727fef3da4fdeb2 -binfiles arch=x86_64-linux size=37 +containersize 50628 +containerchecksum 192b3336fb74285ff9fe2faaf5200a033fb509c27e58cfb78a54ec6be17b222c573b658aab5ed13e987b57ab18d32af8db468d9d14703286647965243a74053c +binfiles arch=x86_64-linux size=38 bin/x86_64-linux/makeindex bin/x86_64-linux/mkindex name makeindex.x86_64-linuxmusl category Package -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of makeindex -containersize 51364 -containerchecksum 2dc913ea2a2535ef51b0b250369d40f50ff74edd8220c4d486e7e93fb6a7a50105a05482a75e0cb76af7abbbba1784a5b317135692dde99eea3c1e5688b22438 +containersize 51900 +containerchecksum de232dad92a800d34bafff68bf055adea1757ef23127f7ce3263f2a9c3984a4ea595ac5b6058df4ea9420532562a25834cb8fec8402564db9d9f2d93a309dbb9 binfiles arch=x86_64-linuxmusl size=38 bin/x86_64-linuxmusl/makeindex bin/x86_64-linuxmusl/mkindex name makeindex.x86_64-solaris category Package -revision 57938 +revision 65877 shortdesc x86_64-solaris files of makeindex -containersize 51588 -containerchecksum 23f7c5ddecb55f41db38bbfb914447349d4b950a04576d6d08ccd54217ef74ef2d3e0a0c46830f96f73791c6e71085a5694e0ac45de4798e4aa8c3a25472772e -binfiles arch=x86_64-solaris size=39 +containersize 51944 +containerchecksum f39318355ed9640daa5988b20fe7fe46b2243ea3a107069d941a7d570ffc8a594c993007e33ae7429ae72547203825da8b38fc6e95ec426baafe3d8f55806632 +binfiles arch=x86_64-solaris size=40 bin/x86_64-solaris/makeindex bin/x86_64-solaris/mkindex +name makelabels +category Package +revision 60255 +shortdesc Add a '\makelabels' feature to KOMA-Script letter classes and package +relocated 1 +longdesc The standard letter class letter has a label feature. You can +longdesc activate it using \makelabels. While in Germany window +longdesc envelopes are common, printing labels is not common, and +longdesc scrlttr2 has never supported label printing. Using +longdesc makelabels.lco does implement a \makelabels feature similar to +longdesc the standard letter classes. Currently there are (almost) no +longdesc configuration features for makelabels.lco. But you may use the +longdesc envlab package after loading makelabels.lco to get various +longdesc configuration features. +containersize 3120 +containerchecksum 4f58301507896c2e719f2607e1e456aeb25cc78913ed02d9eaa12489aeb643e73bccaafd1f219c1c8b485d77aa64e99d64166b63e8a2c7a7c3c8cfb77ac23bc6 +doccontainersize 712740 +doccontainerchecksum da01e167d1be1d4831c1bd0aca43472aae12a8204ab844f9964e60f57cf22312532c52cae85964f10780aaa0e4f84015f6ceee8ebfa042b184fb1ecc7c174585 +docfiles size=194 + RELOC/doc/latex/makelabels/LICENSE.md + RELOC/doc/latex/makelabels/README.md details="Readme" + RELOC/doc/latex/makelabels/makelabels-envlab-example.pdf details="Example of use (2)" + RELOC/doc/latex/makelabels/makelabels-envlab-example.tex + RELOC/doc/latex/makelabels/makelabels-example.pdf details="Example of use (1)" + RELOC/doc/latex/makelabels/makelabels-example.tex + RELOC/doc/latex/makelabels/makelabels.pdf details="Package documentation" +srccontainersize 7476 +srccontainerchecksum 588029533fc25c2501cb8a72cd4226c878a0c419e42d6e4269b68224d9992d298a01019c59c794eb1c9cca14b3efaf758f5c97b6ef90451a6e6d1fb56233a5ad +srcfiles size=7 + RELOC/source/latex/makelabels/makelabels.dtx +runfiles size=3 + RELOC/tex/latex/makelabels/makelabels.lco +catalogue-contact-announce https://github.com/komascript/makelabels/releases +catalogue-contact-bugs https://github.com/komascript/makelabels/issues +catalogue-contact-home https://github.com/komascript/makelabels +catalogue-contact-repository https://github.com/komascript/makelabels.git +catalogue-ctan /macros/latex/contrib/makelabels +catalogue-license lppl1.3c +catalogue-topics letter labels +catalogue-version 1.0 + name makeplot category Package revision 15878 @@ -188590,7 +197893,7 @@ catalogue-version 2.1 name mandi category Package -revision 49720 +revision 61764 shortdesc Macros for introductory physics and astronomy relocated 1 longdesc The package contains commands for students and teachers of @@ -188598,26 +197901,33 @@ longdesc introductory physics. Commands for physical quantities longdesc intelligently handle SI units so the user need not do so. There longdesc are other features that should make LaTeX easy for introductory longdesc physics students. -containersize 15460 -containerchecksum a22c6cd667b7a256cdb0d1f975d214890811ad047d3eddc96e1289fd22a8ce9035183c5c1f6a876d7bab85bf8bba9626d36c2edbc8abbd060c0ebafca6b84932 -doccontainersize 1321444 -doccontainerchecksum 60cc9d6215525424b3e05af173a533d3781d1eed50d1e89e3d31f80274ab2b91033d45254eb419ec9a9a4e7553f50ac9c737ac82daea8dfbf29ba077d69ce5b2 -docfiles size=331 - RELOC/doc/latex/mandi/README details="Readme" +containersize 11988 +containerchecksum 9bac7973ac229756b5263ee0e8a8a4381bf64400a1ee58b0abafa6765e1cea6dae0b660243e1dfa87a8072f1caf1851c11c88db81dae1b231ec6def9f965991a +doccontainersize 483900 +doccontainerchecksum 4debcb2b892563755cd0779db9c1784f7feba4d0e35118cdb00569bc4eaddf23423f1236f0cf28adb1c399e220b5f348ef898b0e7f1c59e031891056b9148fdb +docfiles size=125 + RELOC/doc/latex/mandi/README.md details="Readme" RELOC/doc/latex/mandi/mandi.pdf details="Package documentation" RELOC/doc/latex/mandi/vdemo.py -srccontainersize 49568 -srccontainerchecksum 2b05284ec86ac90ae6e136c96b2eeb0215ce3cb7d9b9f85aa14f047c596e7b47c8c618ec5d4ee0a99d624b737fbc8a3f026895bc9a8b2d465fb3dd7fa2ea806e -srcfiles size=86 +srccontainersize 30480 +srccontainerchecksum 1cf1912cd6db652bd927378970a1740153906f0c14e92da47a428c564c04f66f3496be8f639fcf3f0f0caab48fff0909ae72dd81085f2bd8a92d5ae08fce07a0 +srcfiles size=48 RELOC/source/latex/mandi/mandi.dtx RELOC/source/latex/mandi/mandi.ins -runfiles size=24 + RELOC/source/latex/mandi/mandiexp.dtx + RELOC/source/latex/mandi/mandistudent.dtx +runfiles size=17 RELOC/tex/latex/mandi/mandi.sty + RELOC/tex/latex/mandi/mandiexp.sty + RELOC/tex/latex/mandi/mandistudent.sty catalogue-also siunitx +catalogue-contact-bugs https://github.com/heafnerj/mandi/issues +catalogue-contact-home https://github.com/heafnerj/mandi +catalogue-contact-repository https://github.com/heafnerj/mandi catalogue-ctan /macros/latex/contrib/mandi catalogue-license lppl1.3 catalogue-topics physics -catalogue-version 2.7.5 +catalogue-version 3.1.0 name manfnt category Package @@ -188725,7 +198035,7 @@ catalogue-topics index-multi name marathi category Package -revision 58760 +revision 61719 shortdesc Typeset Marathi language using XeLaTeX or LuaLaTeX relocated 1 longdesc luaa-laattek v jhii-laattek hyaaNcyaash mraatthiicaa sulbh @@ -188737,18 +198047,18 @@ longdesc typesetting Marathi language with LuaLaTeX and XeLaTeX. This longdesc package will provide localizations needed for the Marathi longdesc language. Currently the package localizes package blindtext and longdesc package expex. -containersize 5244 -containerchecksum d3ee0acee2b3a7f7521e3af6406ee747e1af4ccb8b4f53701d753e174f5784df6bbd64d662f25254ada8de9bbc147bedc42d332f0b1643f19cb7c914d0389000 -doccontainersize 189576 -doccontainerchecksum efd2f3ad9a08022009823700d9afd0f0928f304a363ce2ffbd5485448b40e426efaba8187a6b3cd144ba6ba82476f9efee8c71e8fe00f6c6d9d3faa405ed22ae -docfiles size=62 +containersize 5456 +containerchecksum 5ff1e45d4434c68f09fd011fb0d0bf7652002a9ef6c36035e953a5bb9871baec4dc1998b0c0ec1749ef93cbca8bd40512457d962bf0e9f3bb4c0d36fbeb6f301 +doccontainersize 154916 +doccontainerchecksum 8ef83a4eef0d877473a24ad3d5efb9e4d374dd1c2e00b210251ce145d889d8cf8eec7ff368d94db888b134104770901877fb4e943bf758f921b341bb7bfb5f3c +docfiles size=53 RELOC/doc/latex/marathi/COPYING RELOC/doc/latex/marathi/LICENSE.md RELOC/doc/latex/marathi/README.txt details="Readme" RELOC/doc/latex/marathi/marathi.pdf details="Package documentation" language="mr" -srccontainersize 17656 -srccontainerchecksum f02b1245d7ee3d5516e66f4176bb30ee44fdd47daa4189a2b8cf62359ba12d2cfde331ef901a64f54efbb739bbc9b555d7d94ff755ded64961769f63407291be -srcfiles size=19 +srccontainersize 17940 +srccontainerchecksum 6cd0135286dbc64b59628e7af8e84e3c4277705bca226155ca899f9ad438751cf5f5da73dfcaa500fdc1d4779f707f8290922098409c69216a5c66e2bdbb73e5 +srcfiles size=20 RELOC/source/latex/marathi/marathi.dtx RELOC/source/latex/marathi/marathi.ins runfiles size=15 @@ -188759,16 +198069,18 @@ runfiles size=15 RELOC/tex/latex/marathi/namuna-letter.tex RELOC/tex/latex/marathi/namuna-para.tex RELOC/tex/latex/marathi/namuna-report.tex -catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/marathi/-/issues -catalogue-contact-repository https://gitlab.com/niranjanvikastambe/marathi/ +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=marathi +catalogue-contact-home https://puszcza.gnu.org.ua/projects/marathi +catalogue-contact-repository https://git.gnu.org.ua/marathi.git +catalogue-contact-support mailto:marathi-latex@gnu.org.ua catalogue-ctan /language/marathi -catalogue-license gpl3+ other-free +catalogue-license gpl3+ other-free fdl catalogue-topics indic marathi -catalogue-version 1.6.2 +catalogue-version 1.7 name marcellus category Package -revision 56016 +revision 64451 shortdesc Marcellus fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -188778,10 +198090,10 @@ longdesc classic Roman inscription letterforms. There is currently just longdesc a regular weight and small-caps. The regular weight will be longdesc silently substituted for bold. execute addMap marcellus.map -containersize 178120 -containerchecksum 2958f2c7aaf431dd220ead4c6026ee501d46da5a98274a14b15215e00bd0d43e49bffdde0a66149c8c1d0a6535b3661d728537fd24ada2ef3e286d485856f755 -doccontainersize 19864 -doccontainerchecksum 2e28359a2e08837e2bc6c1076caf5e45b59e69bfe0d6ebf8763780642e1454a481b1cdd635f8dc804b8e75ed3251567bd895ec3eaf9d523454b65a5179393d6c +containersize 178108 +containerchecksum b6ba86cea7e275ae2cb6f35468300035fec789b85280307e65784bca9844aa8c834aa23e9f7e59de75d53879dbc609e64c084adcb1c38811483eeab15543f95f +doccontainersize 19872 +doccontainerchecksum 5267a43751ac7a0aadfba28ec4427da7c1afbafac2425f09582a736520ab4bbd769e08ef02b86816225cd76bedcbb23f6cfd3e77352c9e4008f9443b826b48e9 docfiles size=9 RELOC/doc/fonts/marcellus/OFL.txt RELOC/doc/fonts/marcellus/README details="Readme" @@ -188963,8 +198275,8 @@ catalogue-version 1.4b name markdown category Package -revision 56414 -shortdesc A package for converting and rendering markdown documents inside TeX +revision 66257 +shortdesc Converting and rendering markdown documents inside TeX relocated 1 longdesc The package provides facilities for the conversion of markdown longdesc markup to plain TeX. These are provided both in form of a Lua @@ -188976,42 +198288,49 @@ longdesc down and rewritten for the needs of the package. Lunamark longdesc provides speedy markdown parsing for the rest of the package. longdesc On top of Lunamark sits code for the plain TeX, LaTeX, and longdesc ConTeXt formats by Vit Novotny. -containersize 31764 -containerchecksum 892bdc84562db375dcd5824f43e93466ca1b833de08ffa247e5e2fc477f6f92832e51feeef8056aac2d5d895e080eb1bff674fffaa0a3d2da8aca3fcb51f0ae1 -doccontainersize 471476 -doccontainerchecksum b00203a7abce01e87a9e54b170bc68bd19bfa5ec346d37ca8805150013d1327b038be185753a0471574b88c1a4d572bfdb7e2ff6bd7cbfea74aef02b489314af -docfiles size=252 - RELOC/doc/context/third/markdown/examples/context.tex +containersize 51440 +containerchecksum d5aefb6d89a2faa4e74c5ca954c97d2e7b235139a5900cb667080c18e1bf087ee53897914ffe5ea40afcaa0ed9ad354bbc373026db859a8272190472df34c996 +doccontainersize 1123892 +doccontainerchecksum 8d80e89218223bff6504832070d7080886ff9f2d5b2489f71d7c21cf92e1fcf52f20f225018c821d6d712144026c9aa1f376bc7e78ee3c2bfae7b1542621c560 +docfiles size=507 + RELOC/doc/context/third/markdown/examples/context-mkii.tex + RELOC/doc/context/third/markdown/examples/context-mkiv.tex RELOC/doc/context/third/markdown/examples/example.md RELOC/doc/context/third/markdown/examples/scientists.csv + RELOC/doc/generic/markdown/CHANGES.md RELOC/doc/generic/markdown/README.md details="Readme" + RELOC/doc/generic/markdown/VERSION RELOC/doc/generic/markdown/markdown.css RELOC/doc/generic/markdown/markdown.html details="User Manual (HTML)" - RELOC/doc/generic/markdown/markdown.md RELOC/doc/generic/markdown/markdown.pdf details="Technical documentation" + RELOC/doc/generic/markdown/markdown.png RELOC/doc/latex/markdown/examples/example.md RELOC/doc/latex/markdown/examples/latex.tex RELOC/doc/latex/markdown/examples/scientists.csv -srccontainersize 69336 -srccontainerchecksum b8936aae408dec7c7a5d286e0c0f52f8d3d36fbe6ac70da50a3921ea4338689d8f9633f9b22bef36a428ca8cbbd4fc0ecadb98ac9070f3afed02d8ee9ff67163 -srcfiles size=121 +srccontainersize 107860 +srccontainerchecksum 1571aed1bbc530a4980468c81250b8d9f3f33e4043f43a927d7698e7406eb207aa07d7f24084777b397ea59d35058e78c78e1f04a7ff84023d7fa7b1aa0caac0 +srcfiles size=191 RELOC/source/generic/markdown/docstrip.cfg RELOC/source/generic/markdown/markdown.dtx RELOC/source/generic/markdown/markdown.ins -runfiles size=50 +runfiles size=85 RELOC/scripts/markdown/markdown-cli.lua RELOC/tex/context/third/markdown/t-markdown.tex RELOC/tex/generic/markdown/markdown.tex RELOC/tex/latex/markdown/markdown.sty + RELOC/tex/latex/markdown/markdownthemewitiko_dot.sty + RELOC/tex/latex/markdown/markdownthemewitiko_graphicx_http.sty + RELOC/tex/latex/markdown/markdownthemewitiko_tilde.sty + RELOC/tex/luatex/markdown/markdown-tinyyaml.lua RELOC/tex/luatex/markdown/markdown.lua catalogue-contact-announce https://github.com/Witiko/markdown/releases catalogue-contact-bugs https://github.com/Witiko/markdown/issues catalogue-contact-development https://github.com/Witiko/markdown/pulls catalogue-contact-repository https://github.com/Witiko/markdown catalogue-ctan /macros/generic/markdown -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics markup -catalogue-version 2.9.0 +catalogue-version 2.21.0-0-gee15b88 name marvosym category Package @@ -189063,16 +198382,16 @@ catalogue-version 2.2a name matapli category Package -revision 58635 +revision 62632 shortdesc Class for the french journal "MATAPLI" relocated 1 longdesc This is a class for the french journal "MATAPLI" of the Societe longdesc de Mathematiques Appliquees et Industrielles (SMAI). -containersize 8696 -containerchecksum 540a0ee0f38d910995437efabff5b4775a5ce496275407dadb99a24d969a90bef7127abeab535f00db5009db0e90d3ecaa85651f735db027ef87ea93051421a3 -doccontainersize 4771004 -doccontainerchecksum 907b09780665470c0055594b3908fb875a9af575195f603e343e877a47a8e8d35d492cf2e03bf1ec9f62bdbecc973384c27bad09ca0ecff5636f16c4cfdf6b2b -docfiles size=1946 +containersize 8724 +containerchecksum b8330a2fbbcb2b6c65a1f056fdf572cf14b6c3b8aff3abf91cd40a150a12feb37cb4a43b41e8239fbe00bb4a2168894c375f0bb35c7dbe2f1d8de0d5ae2ae476 +doccontainersize 4769908 +doccontainerchecksum 6c24ac9fc5b1968ee8c675c7aef8c8fcd3ce813e407886a412419a4a894942d6928d49cfebaf1d7ac7be7cc5c08847e8ba2c70390e3ea7973b0882a51d039ae1 +docfiles size=1928 RELOC/doc/latex/matapli/README.md details="Readme" RELOC/doc/latex/matapli/auto/bibliomatapli.el RELOC/doc/latex/matapli/auto/matapli-doc.el @@ -189093,8 +198412,6 @@ docfiles size=1946 RELOC/doc/latex/matapli/examples/modeleauteur/modele.tex RELOC/doc/latex/matapli/examples/modeleauteur/portrait.png RELOC/doc/latex/matapli/fond-doc.pdf - RELOC/doc/latex/matapli/matapli-doc.fdb_latexmk - RELOC/doc/latex/matapli/matapli-doc.fls RELOC/doc/latex/matapli/matapli-doc.pdf details="Package documentation" language="fr" RELOC/doc/latex/matapli/matapli-doc.tex RELOC/doc/latex/matapli/matapli-title.pdf @@ -189103,9 +198420,9 @@ runfiles size=9 RELOC/tex/latex/matapli/matapli.cls catalogue-contact-home https://plmlab.math.cnrs.fr/mchupin/matapli catalogue-ctan /macros/latex/contrib/matapli -catalogue-license lppl1.3 -catalogue-topics journalpub class french -catalogue-version 1.1 +catalogue-license lppl1.3c +catalogue-topics journalpub class french expl3 +catalogue-version 1.2.0 name matc3 category Package @@ -189227,15 +198544,6 @@ containerchecksum 86b65ed214282101fb7b758c1294c443025f9cdb1dd28fbc48c6e060f49302 binfiles arch=armhf-linux size=1 bin/armhf-linux/match_parens -name match_parens.i386-cygwin -category Package -revision 23500 -shortdesc i386-cygwin files of match_parens -containersize 340 -containerchecksum 39d00a097e175bf590ee6cc75072dd75790f89de8066631d3999ec416b5ec6151f10c4820b6323a7c7130d06e6a116ee444565dd04a9afb3ed9ce385d72f75b2 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/match_parens - name match_parens.i386-freebsd category Package revision 23500 @@ -189281,14 +198589,14 @@ containerchecksum 2a2a613fcc328c18b4604a87769c16e7e02db6463bb545b89ccc58a88149ab binfiles arch=universal-darwin size=1 bin/universal-darwin/match_parens -name match_parens.win32 +name match_parens.windows category Package -revision 23500 -shortdesc win32 files of match_parens -containersize 692 -containerchecksum 20f124eca830bd518fc6c37085099f895b5f0e36ba514dfc3f51c09f1c3957f45a09dacd349a2c77712193457da475004664b8068dcdb10c7bc8e61164882f7e -binfiles arch=win32 size=1 - bin/win32/match_parens.exe +revision 65891 +shortdesc windows files of match_parens +containersize 2312 +containerchecksum 59099313d036a16c765c18d8865e24d3b997cb3783757d420d456cb5248f22d937570f86b760043ec8eea47067375ec5ca28e5c160ec1104a1dbde943b127b01 +binfiles arch=windows size=2 + bin/windows/match_parens.exe name match_parens.x86_64-cygwin category Package @@ -189593,7 +198901,7 @@ catalogue-topics font font-type1 font-symbol-maths name mathalpha category Package -revision 52305 +revision 61089 shortdesc General package for loading maths alphabets in LaTeX relocated 1 longdesc Package mathalfa was renamed to mathalpha. For backward @@ -189602,26 +198910,26 @@ longdesc LaTeX documents. The package provides means of loading maths longdesc alphabets (such as are normally addressed via macros \mathcal, longdesc \mathbb, \mathfrak and \mathscr), offering various features longdesc normally missing in existing packages for this job. -containersize 4368 -containerchecksum c6b653e5a0b7788ac36ea9ef6ce07dd4fd19a75a82c4115cac5921849477839387b0cccac469dd74b9f4221315ca741c49304eb76213ecacb97dc7e218ac4cc9 -doccontainersize 992992 -doccontainerchecksum 5a1d993f73d3684ccd8a855cf8e016d35aa29c34fecea0f01f147a0cb108b355108faf43734c83bdb74f59287a7963b4b418894e0a5c0ec4ffd884f3f4ef1d0e -docfiles size=248 +containersize 7156 +containerchecksum 9c56ad5cabba0fc7ff7403882cd46161be0b4d7bcaf632e48eab5170b1350a1c780a9f98ed535466ae7c17a387a461fa4663ffd3c4fac5cb01ecb77bccdcfec6 +doccontainersize 1888792 +doccontainerchecksum 5de9923e39ccf9b55f10f0b97067d001ead5598423174808d2a7636c96f8fbd2e8a8e6c0d66140f62d51b9263a736cb6106cf6db0e16e62ee5d9f3887baa3159 +docfiles size=474 RELOC/doc/latex/mathalpha/README details="Readme" RELOC/doc/latex/mathalpha/mathalpha-doc.pdf details="Package documentation" RELOC/doc/latex/mathalpha/mathalpha-doc.tex -runfiles size=8 +runfiles size=16 RELOC/tex/latex/mathalpha/mathalfa.sty RELOC/tex/latex/mathalpha/mathalpha.sty catalogue-alias mathalfa catalogue-ctan /macros/latex/contrib/mathalpha -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics maths -catalogue-version 1.13 +catalogue-version 1.143 name mathastext category Package -revision 52840 +revision 64930 shortdesc Use the text font in maths mode relocated 1 longdesc The package uses a text font (usually the document's text font) @@ -189633,39 +198941,35 @@ longdesc little worry that no specially designed accompanying maths longdesc fonts are available. The package also offers a simple mechanism longdesc for using many different choices of (text hence, now, maths) longdesc font in the same document. Of course, using one font for two -longdesc purposes helps produce smaller PDF files. The package, if -longdesc running under LuaTeX, requires the TeX live 2013 distribution -longdesc (or later). -containersize 15984 -containerchecksum a8c0ac4c041b52032e1bfba14eeb6ad42206428a8cc576597d7b509d652c818b2568f043a6edef0bd491057c661e30d9e61575d1fe0c8414e45f08d9629b4e19 -doccontainersize 530004 -doccontainerchecksum b2b1deeb2cb3a966d64a1e367de2ae6f932b5cca714a15ed113def4b00d3046fadfa4724dfe21028fe82bcd5d76a1c73196a2c599a0f6a56ec113fd4421c3456 -docfiles size=148 +longdesc purposes helps produce smaller PDF files. +containersize 17188 +containerchecksum 28288f54a92726e0b5d741fbc78c1e6f87d9892b28bef5c2aa7285762bd265048c801f55e8590b18de43be82fd353f23d18e55a8d9491ed446c058373f736bda +doccontainersize 584908 +doccontainerchecksum 758c42dfbc5950d37804e9c5cf1f6b6cadf1c838c1687a7cc4f9a0e0193e75f6630e0568767953a45f73bc04b22332ab62adff9f4262f106e9a341cba6207dd6 +docfiles size=159 RELOC/doc/latex/mathastext/ChangeLog.md - RELOC/doc/latex/mathastext/INSTALL.txt RELOC/doc/latex/mathastext/README.md details="Readme" RELOC/doc/latex/mathastext/mathastext.pdf details="Package documentation" RELOC/doc/latex/mathastext/mathastext.tex - RELOC/doc/latex/mathastext/mathastexttestalphabets.pdf details="Output of test script" RELOC/doc/latex/mathastext/mathastexttestalphabets.tex RELOC/doc/latex/mathastext/mathastexttestmathversions.tex RELOC/doc/latex/mathastext/mathastexttestunicodelinux.tex RELOC/doc/latex/mathastext/mathastexttestunicodemacos.tex -srccontainersize 94384 -srccontainerchecksum f22a88f5ba02bb077fa0e3128a27e78b736e07702d611a059867646d5c6b4cbb6548c1f0f0e968735c3f887038f51c351a98aa6d60ec557c246ec523afdc735d -srcfiles size=95 +srccontainersize 105248 +srccontainerchecksum b184975082833620ce3af3aed8fbfbfd616648753abb0a82dbc602a1077455a024ab916daface8eddf54f9dc1d1ce7727a8959ec7990305ca48f7864915fca94 +srcfiles size=106 RELOC/source/latex/mathastext/mathastext.dtx -runfiles size=24 +runfiles size=27 RELOC/tex/latex/mathastext/mathastext.sty catalogue-contact-home http://jf.burnol.free.fr/mathastext.html catalogue-ctan /macros/latex/contrib/mathastext catalogue-license lppl1.3 catalogue-topics maths font-supp-maths font-sel -catalogue-version 1.3w +catalogue-version 1.3y name mathcommand category Package -revision 53044 +revision 59512 shortdesc \newcommand-like commands for defining math macros relocated 1 longdesc This package provides functionalities for defining macros that @@ -189676,25 +198980,25 @@ longdesc facilities for defining macros with similar code. The primary longdesc objective of this package is to be used together with the longdesc knowledge package for a proper handling of mathematical longdesc notations. -containersize 4380 -containerchecksum 733c1581550772bdeda24b12154709a09f4427776392e86214d273c2eee1df7a80fea4285d21410f44195af30682aafdecff9f678ac43ad5f78a90605f76d332 -doccontainersize 453780 -doccontainerchecksum eed721d4b0da17c2ae997c7b1c46f19531108db0ecfbb334b648d5931eb2e86eb99465c52093e2adee7150dac3d5c8dc4b9df45ae68f47d0a238c875b33beed1 +containersize 4748 +containerchecksum 4be34084705419757f92b8f31be35a606689c25786bc5b95a0531d572ce21601881cbd7548b7d380241089d4473fbfb70debeab9b30633671b3494d66bfbb9f6 +doccontainersize 452340 +doccontainerchecksum 80191b36dd3e34193c2aff764b7ffcf274a4d9fc41b1d19fc92ac807e03809069efbcace953fdbddd481db7d6604a859eab44a2c93024ecd59968c9e24e2630f docfiles size=113 RELOC/doc/latex/mathcommand/README.md details="Readme" RELOC/doc/latex/mathcommand/makefile RELOC/doc/latex/mathcommand/mathcommand.pdf details="Package documentation" -srccontainersize 11588 -srccontainerchecksum 9d7b9156f28db730c20d1b0e22ea3ff5b90bf34d8d500248f67dd1ef6c12b7eae8e570db065e85f77e61e828277d202e4f73eceedfb79c756a80e2413b14f6de +srccontainersize 12088 +srccontainerchecksum 99fb6c9f81e72c3b78807ff1d073ff4c6e193a163c3aa6aaa2e45d94ca246933733b1b35a671557cf40fdb33184af6ea28fa8a590b0339db373820ad9c38d514 srcfiles size=14 RELOC/source/latex/mathcommand/mathcommand.dtx RELOC/source/latex/mathcommand/mathcommand.ins -runfiles size=6 +runfiles size=7 RELOC/tex/latex/mathcommand/mathcommand.sty catalogue-ctan /macros/latex/contrib/mathcommand -catalogue-license lppl1.2 +catalogue-license lppl1.3 catalogue-topics maths macro-def macro-iterate expl3 -catalogue-version 1.03 +catalogue-version 1.04 name mathcomp category Package @@ -191125,41 +200429,47 @@ catalogue-version 1.01 name mathfont category Package -revision 53035 +revision 65205 shortdesc Use TrueType and OpenType fonts in math mode relocated 1 -longdesc This package provides a flexible interface for changing the -longdesc font of math mode characters. The package allows the user to -longdesc specify a default unicode font for each of six basic classes of -longdesc Latin and Greek characters, and it provides additional support -longdesc for unicode alphanumeric symbols. Crucially, mathfont is -longdesc compatible with both LuaLaTeX and XeLaTeX, and it provides -longdesc several font-loading commands that allow the user to change -longdesc fonts locally or for individual symbols within math mode. -containersize 11396 -containerchecksum 5951daaa320cedea9d40ce0af8b13f9e15e926bcc14cc31f64bfc92bbd22e5a600e1c696f0e7bbbd1cf6a31141c6d3a985433a8000df7c0eee0139c40393667f -doccontainersize 835060 -doccontainerchecksum a09ec87af77663740e5cfcd271e7ebae1cacbee24a31093912a7ef3925827bf35800db424d3a88a40338fb1f1e63d033071b8cd3449493d6d3a64ada760289b1 -docfiles size=226 +longdesc The mathfont package adapts unicode text fonts for math mode. +longdesc The package allows the user to specify a default unicode font +longdesc for different classes of math symbols, and it provides tools to +longdesc change the font locally for math alphabet characters. When +longdesc typesetting with LuaTeX, mathfont adds resizable delimiters, +longdesc big operators, and a MathConstants table to text fonts. +containersize 21356 +containerchecksum 92f3ab48fb76f9cc09d0de10cc485783fcaef69cbc8dc8932fa1d006ca946a3b2ad0a3d6ad404e8cc66ae920632810832825ec11ea9c6e77263d86a904d78634 +doccontainersize 872300 +doccontainerchecksum 6b769ddb7b70ddfcc5dc8ce8b87617a08a6cc3e76b05f9cbb468d4dff9046cf81c258601bb81d3b2253e88e29315de24787d4ad7262ac996a80efdfa2544d07e +docfiles size=252 RELOC/doc/latex/mathfont/README.txt details="Readme" RELOC/doc/latex/mathfont/mathfont_code.pdf details="Code implementation" RELOC/doc/latex/mathfont/mathfont_doc_patch.tex + RELOC/doc/latex/mathfont/mathfont_equations.tex + RELOC/doc/latex/mathfont/mathfont_example_cormorant.pdf details="Cormorant example" + RELOC/doc/latex/mathfont/mathfont_example_cormorant.tex + RELOC/doc/latex/mathfont/mathfont_example_kelvinch.pdf details="Kelvinch example" + RELOC/doc/latex/mathfont/mathfont_example_kelvinch.tex + RELOC/doc/latex/mathfont/mathfont_example_roboto.pdf details="Roboto example" + RELOC/doc/latex/mathfont/mathfont_example_roboto.tex + RELOC/doc/latex/mathfont/mathfont_example_typey.pdf details="Typey example" + RELOC/doc/latex/mathfont/mathfont_example_typey.tex RELOC/doc/latex/mathfont/mathfont_heading.tex - RELOC/doc/latex/mathfont/mathfont_index_warning.tex RELOC/doc/latex/mathfont/mathfont_symbol_list.pdf details="Symbol list" RELOC/doc/latex/mathfont/mathfont_symbol_list.tex RELOC/doc/latex/mathfont/mathfont_user_guide.pdf details="User guide" RELOC/doc/latex/mathfont/mathfont_user_guide.tex -srccontainersize 35344 -srccontainerchecksum 8120ed30e7911dd224586f66ac93bd96ef3b87684239a69c21868968d112532c49d2d0a356e05ec17e1fd05433898c83b20dc3e8d8a51539d46a4ae53998fba6 -srcfiles size=45 +srccontainersize 62100 +srccontainerchecksum 762ac9d2686c3dad154dd5ef0725635739203d2ba99315bd7f04c429e2d5f9bbcbb42e21e76e1c4aef7c8e5b83587089ec232a0d5e903d1c54faa4ef5185f4f1 +srcfiles size=78 RELOC/source/latex/mathfont/mathfont_code.dtx -runfiles size=21 +runfiles size=35 RELOC/tex/latex/mathfont/mathfont.sty catalogue-ctan /macros/latex/contrib/mathfont catalogue-license lppl1.3c catalogue-topics font-mgmt font-use maths -catalogue-version 1.6 +catalogue-version 2.2a name mathlig category Package @@ -191403,6 +200713,46 @@ catalogue-license lppl1.2 catalogue-topics font-index catalogue-version 3.4 +name mathsemantics +category Package +revision 63241 +shortdesc Semantic math commands in LaTeX +relocated 1 +longdesc This LaTeX package provides both syntactic and semantic helpers +longdesc to typeset mathematics in LaTeX. The syntactic layer eases +longdesc typesetting of formulae in general, while the semantic layer +longdesc provides commands like \inner{x}{y} to unify typesetting of +longdesc inner products. These not only unify typesetting of math +longdesc formulae but also allow to easily adapt notation if a user +longdesc prefers to. The semantic layer is split into topics. +containersize 7804 +containerchecksum e8cd9b91b758317d310265c41f565481a9a18c9a345ea3c8b3f771de637f0a144d131cda93b7771ee7b28563fe1e6d42a410cbc7c9fe08532a5821ca84d5a101 +doccontainersize 642040 +doccontainerchecksum 3f0b2120c9551e498d71ace121985553d1d40f2b242887fe0e6e31a9e25dd62d32fd44d3bd1b50233cbebbbe70201162dca838ede7409512a91d5e522149b479 +docfiles size=171 + RELOC/doc/latex/mathsemantics/Contributing.md + RELOC/doc/latex/mathsemantics/LICENSE + RELOC/doc/latex/mathsemantics/README.md details="Readme" + RELOC/doc/latex/mathsemantics/mathsemantics-documentation-local.sty + RELOC/doc/latex/mathsemantics/mathsemantics-documentation.pdf details="Package documentation" + RELOC/doc/latex/mathsemantics/mathsemantics-documentation.tex +runfiles size=14 + RELOC/tex/latex/mathsemantics/mathsemantics-abbreviations.sty + RELOC/tex/latex/mathsemantics/mathsemantics-commons.sty + RELOC/tex/latex/mathsemantics/mathsemantics-manifolds.sty + RELOC/tex/latex/mathsemantics/mathsemantics-names.sty + RELOC/tex/latex/mathsemantics/mathsemantics-optimization.sty + RELOC/tex/latex/mathsemantics/mathsemantics-semantic.sty + RELOC/tex/latex/mathsemantics/mathsemantics-syntax.sty + RELOC/tex/latex/mathsemantics/mathsemantics.sty +catalogue-contact-bugs https://github.com/kellertuer/MathSemantics.sty/issues +catalogue-contact-repository https://github.com/kellertuer/MathSemantics.sty +catalogue-contact-support https://github.com/kellertuer/MathSemantics.sty/discussions +catalogue-ctan /macros/latex/contrib/mathsemantics +catalogue-license mit +catalogue-topics maths +catalogue-version 1.0.0 + name mathspec category Package revision 42773 @@ -191510,15 +200860,6 @@ containerchecksum 2294bc1a888efa5d855dc81db3483f8dc0b646a04a8f210de889886f2d17da binfiles arch=armhf-linux size=1 bin/armhf-linux/mathspic -name mathspic.i386-cygwin -category Package -revision 23661 -shortdesc i386-cygwin files of mathspic -containersize 340 -containerchecksum d7b1d85cdb2c845c6192077e237f5a30590cc0c2eea3bc7c9a3f0f9ee49074110e84561380ecad7ba1e0e23c49ba80e581de75025e3d8ac4b6009fdd4d781c6c -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mathspic - name mathspic.i386-freebsd category Package revision 23661 @@ -191564,14 +200905,14 @@ containerchecksum 802f9cbff001050906c1e2f4bc7d99f254da1f20c40b918fa02959830ab880 binfiles arch=universal-darwin size=1 bin/universal-darwin/mathspic -name mathspic.win32 +name mathspic.windows category Package -revision 44131 -shortdesc win32 files of mathspic -containersize 680 -containerchecksum e593037252e9bc51914c6e7224794b929d3d70eed023ead8ba37167aab63b47b9b0ca6e18f24a85e59db0532b797813871092af3eea419f559710e273249b170 -binfiles arch=win32 size=1 - bin/win32/mathspic.exe +revision 65891 +shortdesc windows files of mathspic +containersize 2308 +containerchecksum 10f2bfa918e3fc45e4bd5091136d492ae65ab1188843200d50674e53969f9cd0f2bb9363fda40688502bf3caeb7529271889076b35170ac8cc1c81a1e83cb4d0 +binfiles arch=windows size=2 + bin/windows/mathspic.exe name mathspic.x86_64-cygwin category Package @@ -191620,7 +200961,7 @@ binfiles arch=x86_64-solaris size=1 name mathtools category Package -revision 58856 +revision 63767 shortdesc Mathematical tools to use with amsmath relocated 1 longdesc Mathtools provides a series of packages designed to enhance the @@ -191639,24 +200980,26 @@ longdesc for specifying the column alignment; More building blocks: longdesc multlined, cases-like environments, new gathered environments; longdesc Maths versions of \makebox, \llap, \rlap etc.; Cramped math longdesc styles; and more... Mathtools requires mhsetup. -containersize 20024 -containerchecksum ceb283012776179cdec04899c28cd55c76811d9ece89b3ea188ae47619296db94983f8b768dbd0cf0909c9e7da4b0f1b1bae7e3de4a96193249ed57fc987683a -doccontainersize 986072 -doccontainerchecksum c4ae884edb6c26c832d920b8f04b31641359fcba68e208b9f0eafaf37ba3ab7f465a39869b9890d0b8431861062414be52d9233836ea60a6255731a17374bc9a -docfiles size=248 +containersize 20472 +containerchecksum 767b804aeec1ee62667529a523a22e38a4a20dbb7a3a4f74476d25f5cceed38b001b21fc2e8eeec6313e25ee3066ee05b47e1fad3ecce228d6ee13e2d78f6dd4 +doccontainersize 1045232 +doccontainerchecksum 2c974611ef592de5528f019e8854bf81bec20d489d25cae3c3a90aa1c8f6e63a01c5823363d7803b7cd229cd6300f5c551e5989edff870369711a4070d2c7477 +docfiles size=270 RELOC/doc/latex/mathtools/README.md details="Package README" RELOC/doc/latex/mathtools/empheq.pdf RELOC/doc/latex/mathtools/mathtools.pdf details="Package documentation" RELOC/doc/latex/mathtools/mhsetup.pdf -srccontainersize 87984 -srccontainerchecksum 46a21e495a34fc85d59d7952f3089e59f28d5aaa85e980c49c6b61df49c6e7582d98c2da1092be80a2a6191f6186395ad8d7086d3638176933843a6592c2c8c2 -srcfiles size=107 + RELOC/doc/latex/mathtools/test.pdf +srccontainersize 90564 +srccontainerchecksum 7b8dc2c58a2d65fe5716381a5bc1020b1de11bfc043207053198323e315fb4f4c42057f53c42340fada0d7299037cb79ebe98f30406e493dfb1eb06399daabc3 +srcfiles size=111 RELOC/source/latex/mathtools/empheq.dtx RELOC/source/latex/mathtools/empheq.ins RELOC/source/latex/mathtools/mathtools.dtx RELOC/source/latex/mathtools/mathtools.ins RELOC/source/latex/mathtools/mhsetup.dtx -runfiles size=29 + RELOC/source/latex/mathtools/mhsetup.ins +runfiles size=30 RELOC/tex/latex/mathtools/empheq.sty RELOC/tex/latex/mathtools/mathtools.sty RELOC/tex/latex/mathtools/mhsetup.sty @@ -191665,7 +201008,7 @@ catalogue-contact-repository https://github.com/latex3/mathtools catalogue-ctan /macros/latex/contrib/mathtools catalogue-license lppl1.3c catalogue-topics maths -catalogue-version 1.27 +catalogue-version 1.29 name matlab-prettifier category Package @@ -191697,7 +201040,7 @@ catalogue-version 0.3 name matrix-skeleton category Package -revision 54080 +revision 65013 shortdesc A PGF/TikZ library that simplifies working with multiple matrix nodes relocated 1 longdesc The package provides a PGF/TikZ library that simplifies working @@ -191705,57 +201048,56 @@ longdesc with multiple matrix nodes. To do so, it correctly aligns longdesc groups of nodes with the content of the whole matrix. longdesc Furthermore, matrix.skeleton provides rows and columns for easy longdesc styling. -containersize 3504 -containerchecksum 19c2f1b0fedee30735177dd509d312f128f44943ff6ad15574faa9ff2a9bd0c26ba7d5cfbbd11f3caf69d8c12a4ac3adac6ff83232d2ecde6858a860e8140d47 -doccontainersize 145316 -doccontainerchecksum 645a4e02d88f9f4e6dde2bf4d8cc4d5d0cb4ad321f54089874e1dac44cbef13602356f5bcff68b982bcada21ac985abbe4a78e2d93e3053c511eba6e95569e2d -docfiles size=44 +containersize 3544 +containerchecksum 55a7bc16ea6afd1e9e623b2fe9e8eea8e7db2a98be58432a296500a246dba7556bb5f79c062b72c0ae957822760ee2494cc3bb2ceba7ab54860f96e87dea53ec +doccontainersize 152732 +doccontainerchecksum acf72a0c4e065137df6a803891fc804579e799d5aa3ec2d509f26284e64bb86e52c4c4f287dd87e5d0c1f3f73ef9a13e2af2459223f3441dda2b74588f7f6ec2 +docfiles size=48 RELOC/doc/latex/matrix-skeleton/LICENSE RELOC/doc/latex/matrix-skeleton/README.md details="Readme" RELOC/doc/latex/matrix-skeleton/example.pdf RELOC/doc/latex/matrix-skeleton/example.tex - RELOC/doc/latex/matrix-skeleton/manual.pdf details="Package documentation" - RELOC/doc/latex/matrix-skeleton/manual.tex + RELOC/doc/latex/matrix-skeleton/matrix.skeleton.pdf details="Package documentation" + RELOC/doc/latex/matrix-skeleton/matrix.skeleton.tex runfiles size=7 RELOC/tex/latex/matrix-skeleton/pgflibrarymatrix.skeleton.code.tex RELOC/tex/latex/matrix-skeleton/tikzlibrarymatrix.skeleton.code.tex catalogue-contact-bugs https://github.com/dudebout/matrix.skeleton/issues -catalogue-contact-home https://github.com/dudebout/matrix.skeleton catalogue-contact-repository https://github.com/dudebout/matrix.skeleton catalogue-ctan /graphics/pgf/contrib/matrix-skeleton catalogue-license isc catalogue-topics pgf-tikz maths -catalogue-version 1.0 +catalogue-version 1.1 name mattens category Package -revision 17582 +revision 62326 shortdesc Matrices/tensor typesetting relocated 1 longdesc The mattens package contains the definitions to typeset longdesc matrices, vectors and tensors as used in the engineering longdesc community for the representation of common vectors and tensors longdesc such as forces, velocities, moments of inertia, etc. -containersize 2844 -containerchecksum 9ae7b4d3e3386a5c9b94a30eafc02d00c9a6376ed356755ba283f7b9b43fc27d3b9dc2994d808360b77d23f39014e230434f404bcf6dc20bc974d9efae97a3dc -doccontainersize 708948 -doccontainerchecksum d67ce30be2e20c5182460b8e567d955c41b364383acd350cba1c07b52576d78016a865148ed871ce7ef3f937eb045201e64e5d5f52fd5b173fe93cf84def2119 -docfiles size=191 +containersize 2820 +containerchecksum 3b58af4da3a0c8abb4499a28e993dc3bf128fc24188bc906d3bed69ba3040aca66d341122cb0e57adb18ccb4320736d7b27423ec8f6f6dacce4fb7bf4bfc5d08 +doccontainersize 975600 +doccontainerchecksum 6139624ff7f8b5063e69c07738e07ae8a1bd1dd48c155b73d17466d4ee5aae25d377e7b7c0726e84e89010d99731d337187ea017f934889843360533c7218c77 +docfiles size=250 RELOC/doc/latex/mattens/README details="Readme" RELOC/doc/latex/mattens/mattens.pdf details="Package documentation" RELOC/doc/latex/mattens/mattens_sample.pdf details="Sample of use" - RELOC/doc/latex/mattens/mattens_sample_src.zip -srccontainersize 14384 -srccontainerchecksum d199c5fe62172d98e7184a2689c3415944128251b75ee45e0629da5200cbb7b954cef1243a165ce2713582afcdac30dcd9f1445ffcaa18a69ece0aa79391d852 -srcfiles size=15 + RELOC/doc/latex/mattens/mattens_sample.zip +srccontainersize 12372 +srccontainerchecksum d8b01f5c5d7c730e412eb1fc9beb7ffdc60b4b6021968803f24362cf558660074e3d94050878f09513221b6d670ab195b1c2020109e03c9c53c9d485355fe740 +srcfiles size=13 RELOC/source/latex/mattens/mattens.dtx RELOC/source/latex/mattens/mattens.ins runfiles size=3 RELOC/tex/latex/mattens/mattens.sty catalogue-ctan /macros/latex/contrib/mattens -catalogue-license lppl +catalogue-license lppl1.3c catalogue-topics maths engineering -catalogue-version 1.3 +catalogue-version 1.3b name maybemath category Package @@ -191788,6 +201130,33 @@ catalogue-ctan /macros/latex/contrib/maybemath catalogue-license lppl catalogue-topics maths font-sel +name maze +category Package +revision 65508 +shortdesc Generate random mazes +relocated 1 +longdesc This package can generate random square mazes of a specified +longdesc size. The mazes generated by this package are natural and their +longdesc solution is not too obvious. The output it based on the picture +longdesc environment. +containersize 1376 +containerchecksum e09c0b0d00301dc1d90f66e774f6fe0ffb1c4305498f9aa4b41bbf0460940a2570e40bd8359e30d1d521418111ee9c6e6c8e61a6a2efbdaa484d3f8436f44fd4 +doccontainersize 182560 +doccontainerchecksum cfa47a5d16d4533fdcfdf4ad19c5560fc897da669c4b9bc5a5f7723a6082fcf1b29fbe410117bab9249a526d7c720cab400afec1945b24868f7b73e46690a2ea +docfiles size=48 + RELOC/doc/latex/maze/README.md details="Readme" + RELOC/doc/latex/maze/maze.pdf details="Package documentation" + RELOC/doc/latex/maze/maze.tex + RELOC/doc/latex/maze/mazes-picture.png +runfiles size=1 + RELOC/tex/latex/maze/maze.sty +catalogue-contact-development https://github.com/Quantum-Phantom +catalogue-contact-repository https://github.com/Quantum-Phantom/expl3maze/tree/v1.2 +catalogue-ctan /macros/latex/contrib/maze +catalogue-license lppl1.3c +catalogue-topics games expl3 +catalogue-version 1.2 + name mcaption category Package revision 15878 @@ -191844,7 +201213,7 @@ catalogue-topics covers name mcexam category Package -revision 46155 +revision 60481 shortdesc Create randomized Multiple Choice questions relocated 1 longdesc This LaTeX package automatically randomly permutes the order of @@ -191858,55 +201227,50 @@ longdesc processes the results of the exam and calculates the grades. longdesc The following other LaTeX packages are required: enumitem, longdesc environ, etoolbox, longtable, newfile, pgffor (from the longdesc PGF/TikZ bundle), xkeyval, and xstring. -containersize 11424 -containerchecksum 37637616c9ccbe4e20ebae6b479e076fe87b6bd5f3bbf9124c79b93cef6e992d82bbb4fcfbbec3e4a7dcc187d66742c410c4a6280328c80765495685b4fa2cac -doccontainersize 241840 -doccontainerchecksum 5d1eddfdca3ebb7fbe28d93ed6e7332147857d7523d3b64e908aa56ef71d9bb2546d05c150737a3401b5ac7f76110a421513db2d8fba906173afbde9e012f7f8 -docfiles size=71 +containersize 11396 +containerchecksum 3c75869bd0e65798fa451d971ff441f3a42daa0647c31458631c388cd14cbb36fe4f4dc9178e59fdb307de590d201e8716b1a86dc9b995aa184090cbdc95c9d2 +doccontainersize 232948 +doccontainerchecksum 30a7f5cf9b01e8619c95d63ebc2e3dce27beece3a4da6ed4d68843c171257f37d7883969edc94766e065c5bbdd78a2731d38666d2073fd5d77873d5a88b3f820 +docfiles size=68 RELOC/doc/latex/mcexam/README.md details="Readme" RELOC/doc/latex/mcexam/mcexam.pdf details="Package documentation" RELOC/doc/latex/mcexam/mcexam.tex - RELOC/doc/latex/mcexam/mcexam_example.r RELOC/doc/latex/mcexam/mcexam_example.tex + RELOC/doc/latex/mcexam/mcexam_example_dataset.r runfiles size=18 RELOC/tex/latex/mcexam/mcexam.sty catalogue-also esami catalogue-ctan /macros/latex/contrib/mcexam catalogue-license lppl1.3c -catalogue-topics exam -catalogue-version 0.4 +catalogue-topics exam random +catalogue-version 0.5 name mcf2graph category Package -revision 59086 -shortdesc Draw chemical structure diagrams with Metafont/MetaPost +revision 65666 +shortdesc Draw chemical structure diagrams with MetaPost relocated 1 longdesc The Molecular Coding Format (MCF) is a linear notation for longdesc describing chemical structure diagrams. This package converts -longdesc MCF to graphic files using Metafont / MetaPost. -containersize 23336 -containerchecksum 117e5b4e716ff374220c58c940577790c9275be0261bb9423e34a88ae1089f8d6e78aea16e9ee35f9a3d29d21662a4319fd45bd54b0382877b795b2222e7f8b5 -doccontainersize 909748 -doccontainerchecksum d468ca257179f947831ee70e9575de2f7d750cc358ce103b22b2e2eed1725de1d6c1991f5e51be904c690f0b241761d6e7829c3ec171edb767d5525500231264 -docfiles size=265 +longdesc MCF to graphic files using MetaPost. +containersize 444 +containerchecksum 35567c70e718f97974419280f8e68e4226203f1100e450896198ca7cdc8e6b006a1b428f44c2379bfafeb8fcd884845b1dd7c2e54b2a3f9317af054ed7902b06 +doccontainersize 858520 +doccontainerchecksum 1b8a718afe98fd358cf4fd74acd7e2a1bedd8852adb80efca97e3dac598a5fb6deaa977ba19c137ba086ecef9a50af1408d7bd16924c8137f76909cabc1efb7b +docfiles size=289 RELOC/doc/metapost/mcf2graph/CHANGELOG RELOC/doc/metapost/mcf2graph/README details="Readme" - RELOC/doc/metapost/mcf2graph/mcf_data_base.mcf - RELOC/doc/metapost/mcf2graph/mcf_exa_soc.mf + RELOC/doc/metapost/mcf2graph/mcf2graph.mp + RELOC/doc/metapost/mcf2graph/mcf_exa_soc.mp RELOC/doc/metapost/mcf2graph/mcf_example.pdf details="Molecular Coding Format Examples" RELOC/doc/metapost/mcf2graph/mcf_example.tex - RELOC/doc/metapost/mcf2graph/mcf_man_soc.mf + RELOC/doc/metapost/mcf2graph/mcf_library.mcf RELOC/doc/metapost/mcf2graph/mcf_manual.pdf details="Package documentation" RELOC/doc/metapost/mcf2graph/mcf_manual.tex - RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.pdf details="MCF Example for LuaLaTeX" - RELOC/doc/metapost/mcf2graph/mcf_mplib_exa.tex -runfiles size=27 - RELOC/metapost/mcf2graph/mcf2graph.mf - RELOC/tex/latex/mcf2graph/mcf_setup.sty catalogue-ctan /graphics/mcf2graph catalogue-license mit catalogue-topics graphics graphics-mpost chemistry -catalogue-version 4.64 +catalogue-version 4.92 name mcite category Package @@ -192283,9 +201647,33 @@ catalogue-license gpl catalogue-topics list-supp notes footnote syntax maths macro-supp table verbatim catalogue-version 1.05.4 +name mecaso +category Package +revision 60346 +shortdesc Formulas frequently used in rigid body mechanics +relocated 1 +longdesc This package provides a number of formulas frequently used in +longdesc rigid body mechanics. Since most of these formulas are long and +longdesc tedious to write, this package wraps them up in short commands. +containersize 2832 +containerchecksum b240bfbeda5a18fd24625444403f508e3dffc5b3631a8ff6e88db6aebcc97da3eaa2ebb3ebb0d15b0c1bca0d7f62a72511a00c0ca1870f6d0d3e90398bbc5754 +doccontainersize 221844 +doccontainerchecksum 42744543f456f1c77a30be81b4dc47f69b220d2d0abd8cf7f05ec7136bda9f55f98e63a48cb9b2fb65d6fdb3270bce7a31cbcbece15527d4141bac301dd55963 +docfiles size=70 + RELOC/doc/latex/mecaso/README.md details="Readme" + RELOC/doc/latex/mecaso/mecaso.pdf details="Package documentation" language="fr" + RELOC/doc/latex/mecaso/mecaso.tex +runfiles size=3 + RELOC/tex/latex/mecaso/mecaso.sty +catalogue-contact-repository https://github.com/YDFTW/mecaso +catalogue-ctan /macros/latex/contrib/mecaso +catalogue-license gpl3+ +catalogue-topics physics +catalogue-version 1.0 + name media4svg category Package -revision 57528 +revision 64686 shortdesc Multimedia inclusion for the dvisvgm backend relocated 1 longdesc This package implements an interface for embedding video and @@ -192297,11 +201685,11 @@ longdesc engines can be used. The dvisvgm utility, which is part of all longdesc major TeX distributions, converts the intermediate DVI to SVG. longdesc By default, media files are embedded into the SVG output to longdesc make self-sufficient SVG files. -containersize 7648 -containerchecksum 8d8d7ec31396da81dec9b089c02fa496cb1d07106bbe96e78c762b83f27b7109d6517b85250d7d8440b1f169d1b1bc2f3d64cf56723e20da9af72f6573740158 -doccontainersize 125992 -doccontainerchecksum ebbee7e14288fa3ac50d77e40056cbcdf53d5228e2accbea579cbd004508b12e562a3a1d2e6e6c5b20b42267335c9ba6d81a34a04a5f2fe8e9826f93de97e298 -docfiles size=95 +containersize 8788 +containerchecksum b5f9ffdd5fa9c28b2d4fa71bf7e6b207ca1632d98ee7a9018f2eb84cc602edcb6434917c2cacd2bd51b7f34c893c099e94e9518905700218f03da224a3df2fbc +doccontainersize 170632 +doccontainerchecksum 50fc60d4bd74cf3c009501d37f02c9cbc98b11a5b498a55edce56801fe3e6b4e247c038525c9c76df108df0d991d797935ba131cf8b74dc27439f75b4a3890f4 +docfiles size=110 RELOC/doc/latex/media4svg/ChangeLog RELOC/doc/latex/media4svg/README.txt RELOC/doc/latex/media4svg/example/beamer-example-1.svg details="Example of use" @@ -192309,18 +201697,19 @@ docfiles size=95 RELOC/doc/latex/media4svg/example/beamer-example-3.svg RELOC/doc/latex/media4svg/example/beamer-example-4.svg RELOC/doc/latex/media4svg/example/beamer-example.tex -runfiles size=8 + RELOC/doc/latex/media4svg/example/random.mp4 +runfiles size=9 RELOC/tex/latex/media4svg/media4svg.lua RELOC/tex/latex/media4svg/media4svg.sty catalogue-contact-repository https://gitlab.com/agrahn/media4svg catalogue-ctan /macros/latex/contrib/media4svg catalogue-license lppl catalogue-topics multimedia expl3 -catalogue-version 0.5 +catalogue-version 0.13 name media9 category Package -revision 58025 +revision 64047 shortdesc Multimedia inclusion package with Adobe Reader-9/X compatibility relocated 1 longdesc The package provides an interface to embed interactive Flash @@ -192333,16 +201722,16 @@ longdesc Player supports the efficient H.264 codec for video longdesc compression. The package is based on the RichMedia Annotation, longdesc an Adobe addition to the PDF specification. It replaces the now longdesc obsolete movie15 package. -containersize 1894400 -containerchecksum 8074b787eb47d82d9ea38ec1e3261deca554902fdc4acfa140de33db4ed2b6de1b0f9af761f27cfcb1ad90df6a02e6b0e697e2ebcebe718eed6d95ed1c296ba1 -doccontainersize 3717032 -doccontainerchecksum 2a28cb6f7b10eb19767ca75e51d16406319fc22967af38b170669f46627d0978065917a028d1f0ac480680175ba0464e27c367fe2181ad36c0cd057cb1beb286 -docfiles size=918 +containersize 1895928 +containerchecksum 3eab7f0687395941f6805db51fff943b6bc795a8a5cf2fb2ed9f03f0103b4fef0bfebdf449701a051b72d8f18a8e332ec02f1893812e4be6d31a56980d50a1e4 +doccontainersize 3637360 +doccontainerchecksum e3f97ec8b1fbb345e42f641eb37f6210d4ebc2e791f6ca21af6c7ac7c7f86c149fa874cafe6a2eb1d47508e2a72aded6ea40b381393ae79e9baab5ecded73c6c +docfiles size=899 RELOC/doc/latex/media9/ChangeLog RELOC/doc/latex/media9/README.txt RELOC/doc/latex/media9/media9.pdf details="Package documentation" -srccontainersize 1776784 -srccontainerchecksum 954dac82dc95330b16055b5096b03c784363f34833b6a30d19b785b621289408b8dbd574e8d77e59ad57216af20b65071e55e1c228ee1dbdfcb1d5fb2b9d0410 +srccontainersize 1776700 +srccontainerchecksum 907343fbe326e491f543f104ea9335d6c69848b3d4a69469587bc5d417e3a58e2d18567a0377c71a28e8e7ee6d94959ee8a7e632819773692d34b6cc47a3cb09 srcfiles size=555 RELOC/source/latex/media9/files/3dsystem.fig RELOC/source/latex/media9/files/3dsystem.pdf @@ -192380,7 +201769,7 @@ srcfiles size=555 RELOC/source/latex/media9/players/StrobeMediaPlayback-license RELOC/source/latex/media9/players/VPlayer.mxml RELOC/source/latex/media9/players/VPlayer9.mxml -runfiles size=503 +runfiles size=535 RELOC/tex/latex/media9/javascript/3Dmenu.js RELOC/tex/latex/media9/javascript/3Dspintool.js RELOC/tex/latex/media9/javascript/animation.js @@ -192396,8 +201785,8 @@ runfiles size=503 catalogue-contact-repository https://gitlab.com/agrahn/media9 catalogue-ctan /macros/latex/contrib/media9 catalogue-license lppl -catalogue-topics multimedia -catalogue-version 1.15 +catalogue-topics multimedia expl3 +catalogue-version 1.25 name medstarbeamer category Package @@ -192461,7 +201850,7 @@ catalogue-version 1.6 name membranecomputing category Package -revision 55918 +revision 64627 shortdesc Membrane Computing notation relocated 1 longdesc This is a LaTeX package for the Membrane Computing community. @@ -192469,11 +201858,11 @@ longdesc It comprises the definition of P systems, rules and some longdesc concepts related to languages and computational complexity longdesc usually needed for Membrane Computing research. The package longdesc depends on ifthen and xstring. -containersize 4576 -containerchecksum 78cca23fdfcbce0fb0105559966c88fe9337148035721c803174c828b94a11ca74978125f94e06904e293d680e071a97c48405d490d785a155aba98be71a5dc2 -doccontainersize 273336 -doccontainerchecksum b41ea7869fa0c1bcd2bcb4ccc305b6af1ba3c8dc539cf5d21bc48fc7123d70e1c6945ef06f18eb8b64d01748bffb64fda0f6596e7683104692698fab496fcff1 -docfiles size=73 +containersize 4892 +containerchecksum 831c579f8d66e265125e3a730338d01fe98d87241f2b52c7060ba3f852667a30afe256f37327497ea21e77cbbbee0017f23bd1f51c59f6445b4552e7cfb52ba5 +doccontainersize 283224 +doccontainerchecksum 5b6479efc72f8e06e54d17c5a3ca4e63f0fe942bec8f0a1504365a97b59ea260891f959939165879aab0d23887b98b2ebce8fab4789959d1c2de3b37c3162aa0 +docfiles size=75 RELOC/doc/latex/membranecomputing/README.md details="Readme" RELOC/doc/latex/membranecomputing/membranecomputing.pdf details="Package documentation" RELOC/doc/latex/membranecomputing/membranecomputing.tex @@ -192482,7 +201871,7 @@ runfiles size=7 catalogue-ctan /macros/latex/contrib/membranecomputing catalogue-license lppl1.3 catalogue-topics comp-sci comp-theory -catalogue-version 0.1 +catalogue-version 0.2.1 name memdesign category Package @@ -192534,7 +201923,7 @@ catalogue-version 0.1 name memoir category Package -revision 58666 +revision 65040 shortdesc Typeset fiction, non-fiction and mathematical books relocated 1 longdesc The memoir class is for typesetting poetry, fiction, @@ -192549,11 +201938,11 @@ longdesc document written with the memoir class, should also use the longdesc memhfixc package (part of this bundle). Note, however, that any longdesc current version of hyperref actually loads the package longdesc automatically if it detects that it is running under memoir. -containersize 74988 -containerchecksum a09bd87ce8253d6af82c0e8816635c1c1b4986ef51f72f671cdc9a74b7088b41889039b9af174620013d8ef2017a3db660c9fde7c56c0fcf4618bb419ea6e220 -doccontainersize 3108176 -doccontainerchecksum f17446fad66433a0e10287c5c040e6ecb45222c3061dab28d4b2a5541ba1527673e0040e267c8af0bf0e63c45d1d42ebe0e336411e11b8b963caf1147cb5829f -docfiles size=1142 +containersize 75292 +containerchecksum 925a0aa087b4cbe6e0f3815a067a65bc551bd4a1adcc19ade2e4293c3d7e9d6957684feb5140aab1d6f93c7a815a68f3256f86764fe4e57b4428f02df88d6ac1 +doccontainersize 3136720 +doccontainerchecksum 5b80fe697420ebceaf793e80aaa3e8779c8408ae3b0aacd63552e6d23ba8f8b132e670821efd1c2244f3a8792899f59e8b85941ad5b9981780cbe4a6d17942a3 +docfiles size=1155 RELOC/doc/latex/memoir/Makeidxglo RELOC/doc/latex/memoir/README details="Readme" RELOC/doc/latex/memoir/anvil2.mps @@ -192568,14 +201957,14 @@ docfiles size=1142 RELOC/doc/latex/memoir/setpage-example.pdf RELOC/doc/latex/memoir/titlepages.sty RELOC/doc/latex/memoir/trims-example.tex -srccontainersize 241692 -srccontainerchecksum 60415bbbbb1e3a42227b24f74617d0a572346ef30cacc366ae07dd887eb8606636e25f6a3ef8ada6f35fc3e5aa7c5e2f57e383d0f6578044cbaf2688daac9576 -srcfiles size=319 +srccontainersize 242732 +srccontainerchecksum 7b2eefb8c2d148acf89e2e63bb055550f39ac9eb9aa8d99b803b2aac58756d6e11c0cdc9e30e3bdf8246ce1790cbf5da63223c99cb8f94f1ac8dbf3f91d7bcae +srcfiles size=321 RELOC/source/latex/memoir/memoir.dtx RELOC/source/latex/memoir/memoir.ins RELOC/source/latex/memoir/mempatch.dtx RELOC/source/latex/memoir/mempatch.ins -runfiles size=120 +runfiles size=123 RELOC/makeindex/memoir/basic.gst RELOC/tex/latex/memoir/mem10.clo RELOC/tex/latex/memoir/mem11.clo @@ -192595,7 +201984,31 @@ catalogue-also memdesign catalogue-ctan /macros/latex/contrib/memoir catalogue-license lppl1.3 catalogue-topics book-pub class -catalogue-version 3.7o +catalogue-version 3.7.19 + +name memoirchapterstyles +category Package +revision 59766 +shortdesc Chapter styles in memoir class +relocated 1 +longdesc A showcase of chapter styles available to users of memoir: the +longdesc six provided in the class itself, plus many from elsewhere (by +longdesc the present author and others). The package's resources apply +longdesc only to memoir, but the package draws from a number of sources +longdesc relating to standard classes, including the fncychap package, +longdesc and Vincent Zoonekynd's tutorial on headings. +containersize 572 +containerchecksum 0a109f84bc4d908b1d32bfe3ea0591c81f3de757cc5a5cc1aff3e60b1d2fbfec2e8b760fc0d07faf1fec62348933149a03c8c6147fbc5ffddae30b74a131a100 +doccontainersize 755384 +doccontainerchecksum 2f8a20d21dc1db21017435cd58c4ae3ff744b5f5605aafcfef6dfbedb1461a8fbee456ffb8ac1399416f7ae6b8ebec5d59b5d50886182ba5116e22e3768fd530 +docfiles size=461 + RELOC/doc/latex/memoirchapterstyles/MemoirChapStyles.pdf details="The document itself" + RELOC/doc/latex/memoirchapterstyles/MemoirChapStyles.tex + RELOC/doc/latex/memoirchapterstyles/README details="Readme" +catalogue-ctan /info/latex-samples/MemoirChapStyles +catalogue-license lppl +catalogue-topics use-sample +catalogue-version 1.7e name memory category Package @@ -192654,25 +202067,27 @@ catalogue-version 0.1.1 name mendex-doc category Package -revision 50268 +revision 62914 shortdesc Documentation for Mendex index processor relocated 1 longdesc This package provides documentation for Mendex (Japanese index longdesc processor). The source code of the program is not included, it longdesc can be obtained from TeX Live subversion repository. -containersize 492 -containerchecksum 2a4b24f7340194fa80160681fb038369e45c1e6783765860d3f57be944c4b79533febc82cdbc65f89b9ad99308cb4ecae4baad37205d0f375f244e5211a87df6 -doccontainersize 184476 -doccontainerchecksum e8c8e773169a262e9f19bb9ab704c05968440aa0ea5928e329c79851e9e23fec5f78a108188fd2512becf7d78ea1e9f388ffa80b0795bbb4ff8cb81893b4e869 -docfiles size=51 +containersize 1368 +containerchecksum 76f59e31e7d2a4240ab7b258745a7c94b8d78f8e308ad2bcf0ab85fc2d4b0ad77f7e1268014960cd29913bc3a81fdf2d6bbf6a8ab0b0845f2587c3134efb20c0 +doccontainersize 239468 +doccontainerchecksum 1a56d1ceab9536869e6d7da57146bc126f45893bfa998ab42eaddca7c48a9ee9d5b69abb31cf02cb6590d7acab68029f5eacb8547de6e877ed893c5f51acd923 +docfiles size=69 RELOC/doc/support/mendex-doc/LICENSE RELOC/doc/support/mendex-doc/README.md details="Readme" RELOC/doc/support/mendex-doc/mendex.pdf details="Package documentation" language="ja" RELOC/doc/support/mendex-doc/mendex.tex -srccontainersize 644 -srccontainerchecksum b526ed09c503619dc128721e9ae439b89b5b143ae18d388fa387cb7407533e47f0bcaecb6967380f3ebc067f9e310f596f0302fca5438212734730d3ca7931cf +srccontainersize 800 +srccontainerchecksum e22c3a7573e8f57d8324d7ca74b3c6b4c716dfa0ea6f43ba3e6eaa63aecf0fe0591ccf9cc4b18984ed2730fc5b9e0b84287bca677717f81c583e0c3c3e0c564c srcfiles size=1 RELOC/source/latex/mendex-doc/Makefile +runfiles size=1 + RELOC/makeindex/mendex-doc/jpbase.ist catalogue-contact-repository https://github.com/texjporg/mendex-doc catalogue-ctan /info/mendex-doc catalogue-license bsd3 @@ -192794,32 +202209,33 @@ catalogue-version 0.1 name menukeys category Package -revision 57172 +revision 64314 shortdesc Format menu sequences, paths and keystrokes from lists relocated 1 longdesc This package is designed to format menu sequences, paths and longdesc keyboard shortcuts automatically. There are several predefined longdesc styles and one can define one's own styles in a flexible way. -containersize 6072 -containerchecksum 4e046853dcf7daa04a1375e19f35219b65177479807420d8bdb2e4449324b9fd38a17535e170b46a64de7a975fd0ca39c3150014ccfcc80f544f57475483727e -doccontainersize 573880 -doccontainerchecksum 9ee80a77fabaabb1b29826e2d54dfcacdff7b758bcda83559d694a76cee579d4815e346c314d224001844c64cad40f04980d7dc09a45918a664f8cf76723b91d -docfiles size=143 +containersize 6240 +containerchecksum 624bc3f2c0cbcf4cceacd555619b5e3932c7c8623e44f4b313390af47143908d019fa7e83d28f8ce94a5e44df40aa73d6823edc931bf8b289d20fc2bf42616b6 +doccontainersize 606780 +doccontainerchecksum 5edf9b9e2accb846aa352046e37af630d997480a3483c53796e56066c1df00798b7615d13bf69d822ed9caa300f6abf624174cf7136caff8fd14c5d23ce2b68c +docfiles size=153 RELOC/doc/latex/menukeys/README details="Readme" RELOC/doc/latex/menukeys/menukeys.pdf details="Package documentation" -srccontainersize 18496 -srccontainerchecksum e4c6817611e5dd8f33e0e9f5771ae6f7c04b76d49002e6fcc466090cf5423ad4335d2d5d144817c6a03518f338256ca383e0b0df88947087c98f60f07f3dbe6e +srccontainersize 18728 +srccontainerchecksum 724478484b110022c6bb591d92829042299226595fe9974a41efe9c6fa9b67c4a1c617690a2518e6bacd1f903bb020c1f815f4c3186ba2ceb185f624a869fabe srcfiles size=21 RELOC/source/latex/menukeys/menukeys.dtx RELOC/source/latex/menukeys/menukeys.ins -runfiles size=8 +runfiles size=16 + RELOC/tex/latex/menukeys/menukeys-2020-12-19.sty RELOC/tex/latex/menukeys/menukeys.sty catalogue-contact-bugs https://github.com/tweh/menukeys/issues catalogue-contact-repository https://github.com/tweh/menukeys catalogue-ctan /macros/latex/contrib/menukeys catalogue-license lppl1.3c catalogue-topics doc-supp -catalogue-version 1.6.1 +catalogue-version 1.6.2 name mercatormap category Package @@ -192869,7 +202285,7 @@ catalogue-version 1.02 name merriweather category Package -revision 56365 +revision 64452 shortdesc Merriweather and MerriweatherSans fonts, with LaTeX support relocated 1 longdesc This package provides the Merriweather and MerriweatherSans @@ -192881,10 +202297,10 @@ longdesc closely harmonizes with the weights and styles of the serif longdesc family. There are four weights and italics for each. execute addMap merriweather.map containersize 5423704 -containerchecksum 72f7dd8c8a8055a4ef953e459188bf2385e6e63943d425bbb69b128e3c0a5277362bb3ebddf38225c20e480ab2a6d8d7b413a0db1d4ad7003f855ee6430266e4 -doccontainersize 75472 -doccontainerchecksum d67a277eaa4e4783d9014ce5d8fe67f7c7cc17e04474150b1c5a9df13d894ef7ddecd599464a68aad95ac17393b1a3ed0bec6fcab5aee0b7c53c89c8674032fd -docfiles size=23 +containerchecksum 363cf63b7211464fba6fd7686dc7d1ab6914c64d724128eeaec90b3dac39002c0653a2c54ff6932c8ce1f16577cf27b1e4665a3e1dbe92bbb81e0a15419ae36d +doccontainersize 413188 +doccontainerchecksum 8762dfd5b3f3443177e0900c434c74d4b8ccca6c8817b1d8353c41ee8310b2299e2fa67113881bb47dd6def3295663aeeefafb15d7b808def000b6e253ac2d3f +docfiles size=104 RELOC/doc/fonts/merriweather/OFL.txt RELOC/doc/fonts/merriweather/README details="Readme" RELOC/doc/fonts/merriweather/merriweather-samples.pdf details="Font samples" @@ -194211,28 +203627,63 @@ catalogue-ctan /fonts/merriweather catalogue-license ofl lppl catalogue-topics font font-body font-proportional font-serif font-sans font-ttf font-type1 font-supp font-t1enc +name messagepassing +category Package +revision 63116 +shortdesc Draw diagrams to represent communication protocols +relocated 1 +longdesc This package provides an environment to easily draw diagrams to +longdesc represent communication protocols using message passing among +longdesc processes. Processes are represented as horizontal or vertical +longdesc lines, and communications as arrows between lines. The package +longdesc also provides multiple macros to decorate those diagrams, for +longdesc instance to annotate the diagram, to add crashes to the +longdesc processes, checkpoints, ... +containersize 2644 +containerchecksum 31586e42be48650fd7b7057a4cdb54b7f6851c35e450cfb436dbf12d23617821c5c6e2f66a8abf2e181521c55d64fb9ad93cb195cf0d01559d6405ccc34af26d +doccontainersize 268036 +doccontainerchecksum ac1b2ce7ca296eec4768d191547af66e3233d3ed34e68e746e870a894757df1de82b3bed6ed510fd0dbc8e5e9194e2ee024860112408b8e6b29e2bf230209a57 +docfiles size=67 + RELOC/doc/latex/messagepassing/README.md details="Readme" + RELOC/doc/latex/messagepassing/messagepassing.pdf details="Package documentation" +srccontainersize 8532 +srccontainerchecksum 7931c0b26a779915f94531bb0b3af6fb31b35cc2401e3dc539b673e15bcc21131d88102b3b6f77d8a27d70eabc897a6fbf99dcffe8adc02f6a82673c0c29a69a +srcfiles size=9 + RELOC/source/latex/messagepassing/messagepassing.dtx + RELOC/source/latex/messagepassing/messagepassing.ins +runfiles size=2 + RELOC/tex/latex/messagepassing/messagepassing.sty +catalogue-contact-repository https://framagit.org/Bromind/LaTeX-packages/-/tree/master +catalogue-ctan /graphics/pgf/contrib/messagepassing +catalogue-license lppl1.3 +catalogue-topics diagram pgf-tikz +catalogue-version 1.0 + name metafont category Package -revision 57972 +revision 66186 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. +longdesc The program takes a programmatic specification of a font, and +longdesc produces a bitmap font (whose properties are defined by a set +longdesc of parameters of the target device), and metrics for use by +longdesc TeX. The bitmap output may be converted into a format directly +longdesc usable by a device driver, etc., by the tools provided in the +longdesc parallel mfware distribution. Third parties have developed +longdesc tools to convert the bitmap output to outline fonts. The +longdesc distribution includes the source of Knuth's Metafont book; this +longdesc source is there to read, as an example of writing TeX -- it +longdesc should not be processed without Knuth's direct permission. The +longdesc mailing list tex-fonts@math.utah.edu is the best for general +longdesc discussion of Metafont usage; the tex-k@tug.org list is best +longdesc for bug reports about building the software, etc. depend kpathsea depend metafont.ARCH depend modes execute AddFormat name=mf engine=mf-nowin options="-translate-file=cp227.tcx mf.ini" fmttriggers=modes -containersize 8756 -containerchecksum 7ea3271c2a9682ae5ee29a05a95e794f4a6dc5a6244a6c243e856aaa857310127d5593b0643d4ca53eae7feb9c205574f5ea216b7c3c0b731e7f98be99bf1588 -doccontainersize 53068 -doccontainerchecksum 95e7221ac9e3438d4cae336296e7db855df9a7e49ebaaec5dfea294565824938f3d6544459cee9ecbf17312daad4e44c92a7a9a65269feebd2b819f226f305bc +containersize 8824 +containerchecksum 2ba715c32631b3ce24aba65e7e1df90a7beabc52b855f5e81cd383f94399e439a344f8a8a21f38648d34d546ca8f1890a74922836557cae5cd05ac945013d71e +doccontainersize 53096 +doccontainerchecksum 48b1def32bfba5ab1123712fe41d69f979e33a77456801c21f030de8a39b37fcae179db44a517d7b194d7e6e6eb93d770e179ca49db9014cd433c86ef91b07d0 docfiles size=36 texmf-dist/doc/man/man1/inimf.1 texmf-dist/doc/man/man1/inimf.man1.pdf @@ -194252,7 +203703,7 @@ runfiles size=13 catalogue-alias mf catalogue-also metapost catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/mf catalogue-license knuth @@ -194281,21 +203732,21 @@ catalogue-topics mf-doc name metafont.aarch64-linux category Package -revision 58389 +revision 65927 shortdesc aarch64-linux files of metafont -containersize 186824 -containerchecksum 01d0faaa24ac5eb640eeda8dbe22aad78d1f8c9aa597db6db3f8ef63f570d1efdfadec9e79bbd2ae957fd09be0b87ae2321f5b775887502e2d13306101e94b02 -binfiles arch=aarch64-linux size=204 +containersize 187392 +containerchecksum 67a5bf727f3291c6e7fdbf212220479a2eb6f6281a9f2af16ea3b487957736347530631a295c6f52b6e3de33cbfe53d0c22ccf79c0787b76f3785533692a3d57 +binfiles arch=aarch64-linux size=206 bin/aarch64-linux/inimf bin/aarch64-linux/mf bin/aarch64-linux/mf-nowin name metafont.amd64-freebsd category Package -revision 58388 +revision 65877 shortdesc amd64-freebsd files of metafont -containersize 261676 -containerchecksum 68e8bd012cdae17df637fe68bda9a6f49d185d0befa3ea9a3c4082afe1092df67e95bb6d20463189ebd51de24ea6486ddb670b957dc3ab46096344f360a360e3 +containersize 262084 +containerchecksum eeb1fd438e18541c190c331d206f3488e8f65a30b517381127a6f55d4a1b2f97cb247d6726001c3226322a91672d80917ec02508762cfe69ca8b7c5738e81470 binfiles arch=amd64-freebsd size=259 bin/amd64-freebsd/inimf bin/amd64-freebsd/mf @@ -194303,65 +203754,54 @@ binfiles arch=amd64-freebsd size=259 name metafont.amd64-netbsd category Package -revision 58386 +revision 65923 shortdesc amd64-netbsd files of metafont -containersize 196360 -containerchecksum b5aec84ed3060d4a1c00499c9c7e20b46eb7ba5fa60b5b2d2f4daa32f1ad773d8aaa5606d5cc5fd82808f5d12f388d23a11046e6d36bea6c52f9800aa699ac6d -binfiles arch=amd64-netbsd size=225 +containersize 196168 +containerchecksum 29225bdf511f129f4f066e68315101403833f88d85a3e3f3ab8fbb7fa47b5e8faaca4556904868422aad5879ee650f9fd340f0b184ac05727c8a8646a85548dd +binfiles arch=amd64-netbsd size=226 bin/amd64-netbsd/inimf bin/amd64-netbsd/mf bin/amd64-netbsd/mf-nowin name metafont.armhf-linux category Package -revision 58428 +revision 65877 shortdesc armhf-linux files of metafont -containersize 146644 -containerchecksum 509bcf02ab3b32f96c0ea7eb073c2d00d2b45e19e814b916be0e2f6fe4a30a91025bc7cf5667053ba77628904b65306a3f5fc13ec7cadab5b8625d223413bd2c +containersize 146900 +containerchecksum 550d803749ea3966bc03fd2fc8bf3612f53124d3f1c596cd9af401086082839b14258f8e7638d710b7596ecdfc6f066b2cbb8005b0541803db8db7e1ef118e62 binfiles arch=armhf-linux size=154 bin/armhf-linux/inimf bin/armhf-linux/mf bin/armhf-linux/mf-nowin -name metafont.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of metafont -containersize 151520 -containerchecksum 43ac81eb202806a33941b61c03d7ce46a12b9fe56aaeb28f04c24a9a0edfd087def951ecdbf63456847f8e3eb62fcdf685e40ab2fbe7ebbdfe96b63a164e3455 -binfiles arch=i386-cygwin size=183 - bin/i386-cygwin/inimf - bin/i386-cygwin/mf-nowin.exe - bin/i386-cygwin/mf.exe - name metafont.i386-freebsd category Package -revision 58388 +revision 65877 shortdesc i386-freebsd files of metafont -containersize 194796 -containerchecksum a002b74e97c4370718923872990916c292d0b8c17bdf149b90950af06bc419caa04f5785a80f77101492fb59b9fc27f42a3979d670b1ebd1e32b4e45f1054f6b -binfiles arch=i386-freebsd size=229 +containersize 197636 +containerchecksum 9b760e812a4923ca019b3b91eeaad3bfd01303728d5ffa58f286e6d464c7935be026231268c9c7c1d0e8264322ea498f0d2f6c92196022b422952336c1e3a516 +binfiles arch=i386-freebsd size=230 bin/i386-freebsd/inimf bin/i386-freebsd/mf bin/i386-freebsd/mf-nowin name metafont.i386-linux category Package -revision 58378 +revision 65877 shortdesc i386-linux files of metafont -containersize 184444 -containerchecksum 5859719634bf2e86978239f33f2540ccd6eba039406772aebcd6ef6624add38a357af35f4241a747f36935d1e984bb539af42f54fd62b741a5947d16a59924b6 -binfiles arch=i386-linux size=188 +containersize 185356 +containerchecksum 305a1eab23f02aafc17ae07b7438e37f60dc9935f5015c726882c6498c2f0fc1d174ceae982068f85bfcd0a553d0b0050a7f122af25fddb6711fd620ea42e08b +binfiles arch=i386-linux size=191 bin/i386-linux/inimf bin/i386-linux/mf bin/i386-linux/mf-nowin name metafont.i386-netbsd category Package -revision 58386 +revision 65923 shortdesc i386-netbsd files of metafont -containersize 150540 -containerchecksum 605d5e82beafc5367cb218efd0a7252c8c9e8e2cb367021f9c9cdb71030aac6148ccc7819969c885278f09bdd92eae23abffbadba19188501f2bea9745504ac3 +containersize 150932 +containerchecksum 741108f9523ab638fb29b50d3c43a7f79c28becb29a036dc944319b918a7c9f47687ae4c448f875a95e746ab2b989a022d3910a36b922cee62cee1dc63248142 binfiles arch=i386-netbsd size=203 bin/i386-netbsd/inimf bin/i386-netbsd/mf @@ -194369,10 +203809,10 @@ binfiles arch=i386-netbsd size=203 name metafont.i386-solaris category Package -revision 58388 +revision 65877 shortdesc i386-solaris files of metafont -containersize 184368 -containerchecksum bc2266b6f6ed701b36cf4dc2cb718f5b7ad4cd47275376ad47f4656ad4b4497915644d0dc9234cb42cb618e254a64167147932f2911fbf56b1be49a6dab2ad18 +containersize 185112 +containerchecksum b1cc461b256b19b913a9399984a5f0414202671f7175996c974a59485a04c9dc7078301963eebf949a0cbff51d1fe118aa0b98b869079aa74c446e19b032a1da binfiles arch=i386-solaris size=170 bin/i386-solaris/inimf bin/i386-solaris/mf @@ -194380,32 +203820,32 @@ binfiles arch=i386-solaris size=170 name metafont.universal-darwin category Package -revision 58418 +revision 65895 shortdesc universal-darwin files of metafont -containersize 470728 -containerchecksum 13c0eac887c148626767b2883ba0fe2092fb1131ca13d350387ffed26519522774643e7fb4dc0383042bca1396fcd0b652414923e74d582308646d8a269a0acb -binfiles arch=universal-darwin size=559 +containersize 472616 +containerchecksum 3843e03c8bd877847c26916f3f16b942c0776a551405c1c4533a025111e5f9f0515a9e043292ac91486c5ae293fae06870fb02b2edefb66421347ce7f6e51aa7 +binfiles arch=universal-darwin size=567 bin/universal-darwin/inimf bin/universal-darwin/mf bin/universal-darwin/mf-nowin -name metafont.win32 +name metafont.windows category Package -revision 59028 -shortdesc win32 files of metafont -containersize 145580 -containerchecksum 02f3040ba336fff7fb78870c6557174932b1d1104f6e5b7c62bed67f5e27192010c50b8e277e8b4f500857102963d6fbc103d026f0612fdaf4d8162008b88994 -binfiles arch=win32 size=138 - bin/win32/inimf.exe - bin/win32/mf-nowin.exe - bin/win32/mf.exe +revision 65891 +shortdesc windows files of metafont +containersize 187208 +containerchecksum ecdd03ca2bb4347526b7675d75ac931fd0e3bca5d415d8df0909ece8ee56b4cf2bd84ae7d6ae103449581959f7b57614b63adcf9c2fcc4beeca4c1e37c7c785c +binfiles arch=windows size=161 + bin/windows/inimf.exe + bin/windows/mf-nowin.exe + bin/windows/mf.exe name metafont.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of metafont -containersize 179188 -containerchecksum 621651ef4c7c688abbb8bc2ce7d516248f1d0fdbaed7eb5cbe5aebe20a6719addb700ea9a5562ab65d2920d650701ed2b5b868fa7205d6d7113d4d94689a85f8 +containersize 187276 +containerchecksum dbb208e483a69797b67351521ce66ada85eefabcb9dd0d0d28a0d357e3d2d423b8870625d97bb9ab38e2158611218cf77c6e2a8ca23c56073c18d2f53b1a6e0a binfiles arch=x86_64-cygwin size=187 bin/x86_64-cygwin/inimf bin/x86_64-cygwin/mf-nowin.exe @@ -194413,10 +203853,10 @@ binfiles arch=x86_64-cygwin size=187 name metafont.x86_64-darwinlegacy category Package -revision 58388 +revision 65877 shortdesc x86_64-darwinlegacy files of metafont -containersize 154696 -containerchecksum d0a74b1a7ac5ea554fda3d2b15349ff1b8eadcfd820ca22bf4628afcc3235c3b896e74ca838c73f332edcbb7a083db2bca87f1c582267e20a45aeec15f4ac037 +containersize 154700 +containerchecksum b72e72d267d4c03540496a3d6e15e856fc767570920463df8d6e1ad2247ccf49a8a20a1d4634f9ae5127e615cc97a590bb9b388c03362169c26c6c491c4409dc binfiles arch=x86_64-darwinlegacy size=167 bin/x86_64-darwinlegacy/inimf bin/x86_64-darwinlegacy/mf @@ -194424,32 +203864,32 @@ binfiles arch=x86_64-darwinlegacy size=167 name metafont.x86_64-linux category Package -revision 58378 +revision 65877 shortdesc x86_64-linux files of metafont -containersize 194472 -containerchecksum caae8df4c587d0ec9585f295af4f390d6847624503ca1e6470b8ea6af6500ec5e80e6012e6ce84be658ac70a97c80daf7f3500f0500b66ab72afc760cab99037 -binfiles arch=x86_64-linux size=171 +containersize 188152 +containerchecksum b7d91612ecf567f38ea2fc265b8e3c965a04c61a215e74dddc89631b01d49e514365c1671e844abc238d9fcf2882164092bdcde2a37195ade7283a8b5b6e6823 +binfiles arch=x86_64-linux size=176 bin/x86_64-linux/inimf bin/x86_64-linux/mf bin/x86_64-linux/mf-nowin name metafont.x86_64-linuxmusl category Package -revision 58378 +revision 65877 shortdesc x86_64-linuxmusl files of metafont -containersize 202044 -containerchecksum 5a3183389d6bda39b500179e93daafe8ada82d9f8e2b25bd356568b47e03cd870909e57de6c9e5d75a6ae12e253e722eae8b30e1102b2ad141bdc3a9821fdf72 -binfiles arch=x86_64-linuxmusl size=191 +containersize 212324 +containerchecksum 52d0dc5ce2d256fedcf183837dcdc233f35680a84c19f4298d105c30c39ede0fb2aecf9d3ad7734df569da89d0ce564d47202e6169fd430217707e0d2df0c114 +binfiles arch=x86_64-linuxmusl size=188 bin/x86_64-linuxmusl/inimf bin/x86_64-linuxmusl/mf bin/x86_64-linuxmusl/mf-nowin name metafont.x86_64-solaris category Package -revision 58388 +revision 65877 shortdesc x86_64-solaris files of metafont -containersize 219420 -containerchecksum d7a5245fe82d4b63a86f85a8012ed7e62d60569207dafe6fa6f25a27d66ff463ba69f6ea81fc9b4df31a83e83a2cf1e15fc0ebc03819a20c33e71444ce09e9a3 +containersize 218740 +containerchecksum 09bfb34569e9d69a02667c7a3bdd8344d1806b659a8d93a130a3cacbc05bfffadad73ff6bf0dc4a78c31304266cfa32350a7de9d3383f39b23be4659887ae56e binfiles arch=x86_64-solaris size=194 bin/x86_64-solaris/inimf bin/x86_64-solaris/mf @@ -194522,7 +203962,7 @@ catalogue-version 0.12 name metalogox category Package -revision 49774 +revision 65448 shortdesc Adjust TeX logos, with font detection relocated 1 longdesc This package extends the metalogo package to automatically @@ -194531,15 +203971,15 @@ longdesc XeLaTeX, and LuaLaTeX, depending on the font detected or the longdesc option given to metalogox. Most of the serif and sans fonts longdesc listed at The LaTeX Font Catalogue are supported. The package longdesc depends on metalogo, xparse, and etoolbox. -containersize 4232 -containerchecksum d2f6bb89071ae56b0083e5b38a629e6089d5d2c73fc9206181b2aa3071e0a4a350a3f5266997063a011d41e4d369745ec5f246d8f3b723c00c8dfa84452e7cea -doccontainersize 426460 -doccontainerchecksum d55aa00226b6c7773cb275d33ed698e2617b82af5a2b060b58af7468e8be2d9c65bb8b052b66c28a94551fd51867a34e2c6b9d0147161e3df9cd05a03567a59f -docfiles size=106 +containersize 4208 +containerchecksum 14de5e149673db96124b7c3542ccfa253a193e6ea00320665ca6cd024fb055d9bc5e6de770f63d5f7123a85ecb604eaa76e6637f7450b08ce4835fa7a097bb6b +doccontainersize 380028 +doccontainerchecksum 0ade0e0562ec5deb0e30e442c3909c27a18a78a9bf6fbe21589cd4d8a615be0c59f27bcab76f6cec6d897c26522c2e5442a9684eeebcfd5ec45a790ba8011165 +docfiles size=96 RELOC/doc/latex/metalogox/README.txt details="Readme" RELOC/doc/latex/metalogox/metalogox.pdf details="Package documentation" -srccontainersize 8896 -srccontainerchecksum b6354ba439f3514a491c271294436f01aac26f77225455d1fb1a91d55a5353d63f2de6d3814bec21c0f043c95186411353c87992387f2e174d9cb03057ef0560 +srccontainersize 8644 +srccontainerchecksum 6b4de632d4ee28b93f92c270da26badb00eacc425761a3a0a3ee0c296af44f0d152f04f2ed5521729725e1a223d20943a4a7a2d73e1c03e31fe316b5ddfefc11 srcfiles size=12 RELOC/source/latex/metalogox/metalogox.dtx RELOC/source/latex/metalogox/metalogox.ins @@ -194550,7 +203990,7 @@ catalogue-contact-home http://bdtechconcepts.com/ catalogue-ctan /macros/latex/contrib/metalogox catalogue-license lppl1.3 catalogue-topics logo -catalogue-version 1.00 +catalogue-version 1.01 name metanorma category Package @@ -194666,7 +204106,7 @@ catalogue-version 0.91 name metapost category Package -revision 57972 +revision 66264 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 @@ -194674,11 +204114,11 @@ longdesc PostScript or SVG, rather than the bitmaps Metafont creates. depend kpathsea depend metapost.ARCH execute addMap troff-updmap.map -containersize 73764 -containerchecksum 3a3e14f2be0ff7eefe322d4cbf961e62376ec1815a5aece95dc028ce6e75978d272ae04f972aa686ffc7eda27a9c1978f9d4201d33e143fa3cb657f57b260d47 -doccontainersize 2436544 -doccontainerchecksum a0962cc5094703f577bff3c1b93592d93684f9b3b3045356db3461cbf52ba853608dd3af1432d42e55e2f13cf7ad98c41232f06556f42006c3498e23c87b7f82 -docfiles size=829 +containersize 73768 +containerchecksum aab95d361bd62caa5e0eac5aedcc20a35357052ca0b31f16db5abb6d815e63f8366f055d7251018277bf57299885afc6c92fad32683d8d1b4d59c81da6cb9838 +doccontainersize 2447120 +doccontainerchecksum 1058be2aa15a7fef8e751821f308d663a8a115bd95754572fb04ff99018855592c60ed569bbbd3dcfae2b6cc4c27f8dac6372d6326a827847298fb5467678f25 +docfiles size=839 texmf-dist/doc/man/man1/dvitomp.1 texmf-dist/doc/man/man1/dvitomp.man1.pdf texmf-dist/doc/man/man1/mpost.1 @@ -194842,7 +204282,7 @@ runfiles size=112 texmf-dist/tex/generic/metapost/mpsproof.tex catalogue-alias mp mpost catalogue-also asymptote -catalogue-contact-home http://tug.org/metapost +catalogue-contact-home https://tug.org/metapost catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/mplibdir catalogue-contact-support https://lists.tug.org/metapost catalogue-license lgpl @@ -194907,11 +204347,11 @@ catalogue-topics demo-code name metapost.aarch64-linux category Package -revision 58876 +revision 65927 shortdesc aarch64-linux files of metapost -containersize 831884 -containerchecksum 29fb7c01eece6d47bef6f777105fb6474ba2e98deaa51c7307525f35d76922875942b4cb36582060ff544d104f28290164de64b3af50b406d4a9fa9349458a38 -binfiles arch=aarch64-linux size=551 +containersize 834836 +containerchecksum 08ad5e4eb3e23c34563df5879c4a9fb2dd66d72d440219d0d7518cc14fced677a17098aba7dd3a29c9d0b5f1e89d5d50a9829962ca9bb32c680154694e0ce6a3 +binfiles arch=aarch64-linux size=550 bin/aarch64-linux/dvitomp bin/aarch64-linux/mfplain bin/aarch64-linux/mpost @@ -194919,11 +204359,11 @@ binfiles arch=aarch64-linux size=551 name metapost.amd64-freebsd category Package -revision 58850 +revision 65877 shortdesc amd64-freebsd files of metapost -containersize 987556 -containerchecksum cfd8230fdb6fbfddd348065cf020e2b54f07b2a485fcf8092b9fae5666551e3e8c70bfe60c8f2bd76c42c64f2650d3696a0825db8676847012d7303a46a7eb0a -binfiles arch=amd64-freebsd size=680 +containersize 993780 +containerchecksum 2dca3886112e96c9f092cfb579a6699016500156a8c06e83bd1e1db8b4eda7576d42663a267ff752ac756aa74e0528e2fae8fbe6d82c3ebaca87651fff82b0b6 +binfiles arch=amd64-freebsd size=679 bin/amd64-freebsd/dvitomp bin/amd64-freebsd/mfplain bin/amd64-freebsd/mpost @@ -194931,11 +204371,11 @@ binfiles arch=amd64-freebsd size=680 name metapost.amd64-netbsd category Package -revision 58866 +revision 65923 shortdesc amd64-netbsd files of metapost -containersize 780768 -containerchecksum 404defab0b99f028135ff18b5291a8183149a9c1799abf627b3fddc3cfb412957bf2a0c4b6150064c6451aebcb989d03f206b89ac896fdd69b4faa6f399458a9 -binfiles arch=amd64-netbsd size=1297 +containersize 792088 +containerchecksum 9eb00435ec60e16f74a80308aa5adf9afb07ed3aeca2dd519891ccb58b2c82c22231502d4b86adc9f229b22f2fabdcb8b391e516b2d5b801881e2612e5f45b3d +binfiles arch=amd64-netbsd size=1301 bin/amd64-netbsd/dvitomp bin/amd64-netbsd/mfplain bin/amd64-netbsd/mpost @@ -194943,35 +204383,23 @@ binfiles arch=amd64-netbsd size=1297 name metapost.armhf-linux category Package -revision 58911 +revision 65877 shortdesc armhf-linux files of metapost -containersize 729772 -containerchecksum 13e6f079bfc7616c5433b8e36a9a492231459cf066d690f71bd237d6a756b06aff78803ca45845086ce754283f087b1bf070e28a499615e8d2ec10051745f3c7 +containersize 727296 +containerchecksum 7fa785d462435cdd1c9a2d11beba0f851e0c95c8f6238595d8ebf9e12bb8b6c60fbc7af51728abf70bb91c133b21bde0a4e1322f38d49b4a2fe614f60374e3b2 binfiles arch=armhf-linux size=478 bin/armhf-linux/dvitomp bin/armhf-linux/mfplain bin/armhf-linux/mpost bin/armhf-linux/r-mpost -name metapost.i386-cygwin -category Package -revision 58851 -shortdesc i386-cygwin files of metapost -containersize 871516 -containerchecksum c34747038a074674de93516df1dcef5b712ecbbc6e36af0c6c56a31ac9de4f88fac0f92ad36332d25f890622b72baa080639a0a120925296e7fb2dede973d2a9 -binfiles arch=i386-cygwin size=621 - bin/i386-cygwin/dvitomp - bin/i386-cygwin/mfplain - bin/i386-cygwin/mpost.exe - bin/i386-cygwin/r-mpost - name metapost.i386-freebsd category Package -revision 58850 +revision 65877 shortdesc i386-freebsd files of metapost -containersize 863876 -containerchecksum a744a84c3cf5a6270d915b2da2d7c7254d07d9ef4fb791f6b01942f58b58688ac694c4c2c0c75b6b5a3b8bcdee682e3420f93764725212e96a79db00cf01a314 -binfiles arch=i386-freebsd size=582 +containersize 865116 +containerchecksum f9ba4a6cf36669e730f318452db9a063d77fced56f99d9824b9f090b3fd225cb97126276a657f2caaa0528352bab131926a0bd8b7396f931af604d1543f250b9 +binfiles arch=i386-freebsd size=581 bin/i386-freebsd/dvitomp bin/i386-freebsd/mfplain bin/i386-freebsd/mpost @@ -194979,11 +204407,11 @@ binfiles arch=i386-freebsd size=582 name metapost.i386-linux category Package -revision 58850 +revision 65877 shortdesc i386-linux files of metapost -containersize 966164 -containerchecksum 1d9e2ce8977239125da8d9561caa096918d757dac51f86687ff42fe92fedfebd3f1e6b995af8ef1caff0fc9ff16fd6870eadfb779dee5aaf0d6522058b77b91c -binfiles arch=i386-linux size=675 +containersize 976524 +containerchecksum 002c05c51c426dfdd29de4f73e467e5a10aa343f42999c13d1ae7b7dcfe27699bc10598799fb1b043111998f25ad4ee5b77d8b1ad19e579e4cdd5fa04b46dd95 +binfiles arch=i386-linux size=673 bin/i386-linux/dvitomp bin/i386-linux/mfplain bin/i386-linux/mpost @@ -194991,11 +204419,11 @@ binfiles arch=i386-linux size=675 name metapost.i386-netbsd category Package -revision 58866 +revision 65923 shortdesc i386-netbsd files of metapost -containersize 702696 -containerchecksum 4394f3f772507d89eed3441ddd6e0a8d1b3967386d6255adb50a2d18ff912f06e9de38fd755c5a8d2d084fbbcb4a5bc7b435e0678c16d1b6de5c471d81e300a9 -binfiles arch=i386-netbsd size=1146 +containersize 706236 +containerchecksum c58d9ce7be58bcfe4fd512a3e1e7f0490109e73f13145d123c81747e2bff83e4762657bb023707b2c3c080636c74753bb42fad5f13fdbaa900def64250f2653e +binfiles arch=i386-netbsd size=1148 bin/i386-netbsd/dvitomp bin/i386-netbsd/mfplain bin/i386-netbsd/mpost @@ -195003,10 +204431,10 @@ binfiles arch=i386-netbsd size=1146 name metapost.i386-solaris category Package -revision 58850 +revision 65877 shortdesc i386-solaris files of metapost -containersize 842504 -containerchecksum 83f89de73e0be66d0d92a25185704563e718f3ecdd3afedbd9810cef58a2dbd90f61cd0c528acc7009232d06e4d8331a47656cbc22b5fab648587372ca0c3a99 +containersize 840412 +containerchecksum e5658cefa1ec6ef9d00ea4dee9c04ecf34d9c6e6db9e43306e87da5b7ddde4906a743690be61f0921a50f7811ea1082a412eb1a543439cd8a65e944d6d81feda binfiles arch=i386-solaris size=520 bin/i386-solaris/dvitomp bin/i386-solaris/mfplain @@ -195015,36 +204443,36 @@ binfiles arch=i386-solaris size=520 name metapost.universal-darwin category Package -revision 58850 +revision 65895 shortdesc universal-darwin files of metapost -containersize 1699136 -containerchecksum da40f655c07d0337b4638e9c46d34cd28907080fd8f0a47e396d71b6b377163fed0354400ef31434db533012d0d6468313db52f646f9c187ba2e7ac0dee52d99 +containersize 1709596 +containerchecksum e7da7841c4dbea3bcf8131fdca5e03de0a5c54a5821f44170f8a90eff00b3f52cb81e895b779f3261c9ca7b18baf362fbffe2dc84dd86bb7301fb73283acc54a binfiles arch=universal-darwin size=1206 bin/universal-darwin/dvitomp bin/universal-darwin/mfplain bin/universal-darwin/mpost bin/universal-darwin/r-mpost -name metapost.win32 +name metapost.windows category Package -revision 58843 -shortdesc win32 files of metapost -containersize 820588 -containerchecksum 2c4b82447244533009e26e2de54cb04cd8688d541579b1b3e04d16924c4dbc56a93b3bd42b95f0b540bbb93f67bc3f36a690e52ee9b1794c9f57fea7ec1fc675 -binfiles arch=win32 size=518 - bin/win32/dvitomp.exe - bin/win32/mfplain.exe - bin/win32/mpost.dll - bin/win32/mpost.exe - bin/win32/r-mpost.exe +revision 65891 +shortdesc windows files of metapost +containersize 938396 +containerchecksum 974ab50cee8faff5820641dcf4ac6a29770a6b95b5ce7d54b7602a43b79d69b0045945210ce94626050ee380b597d62facd22339ad69a97bceb297f1fd3a2e2f +binfiles arch=windows size=622 + bin/windows/dvitomp.exe + bin/windows/mfplain.exe + bin/windows/mpost.dll + bin/windows/mpost.exe + bin/windows/r-mpost.exe name metapost.x86_64-cygwin category Package -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of metapost -containersize 893304 -containerchecksum a5a633a321164a7dd6ad7f0bc8992ba628f6b3502c934fc04c36bf06c45fd2445aacba02f4b36c4145ce2795ddbaf3bc2c42e9cfa974ee242f8935af537a4342 -binfiles arch=x86_64-cygwin size=584 +containersize 892044 +containerchecksum 15a69b0ecfd8079780795b9c8f9ea055b90f59b0995a2b6bb6b119e87763c25c25a478c2d9ff90c0e017ef8160010f7eef751ae69b99f0d2c2684239c4228503 +binfiles arch=x86_64-cygwin size=580 bin/x86_64-cygwin/dvitomp bin/x86_64-cygwin/mfplain bin/x86_64-cygwin/mpost.exe @@ -195052,11 +204480,11 @@ binfiles arch=x86_64-cygwin size=584 name metapost.x86_64-darwinlegacy category Package -revision 58850 +revision 65877 shortdesc x86_64-darwinlegacy files of metapost -containersize 828068 -containerchecksum 0ee0e3e2e1901e062fff74b16ad70e39641b919ba084862a0d91fb1c841d833788a16113860e0b1d7c07c8a8dd6a35d026eb04a0dcdb46b974a6d52022fd45d9 -binfiles arch=x86_64-darwinlegacy size=528 +containersize 828832 +containerchecksum 8635eff597a2341dbc58746fb76e3ad71c3e2def8f9bcbaf299e748b1d7b73ca4e1a618764d0b4c095d1cb3263d2296428cbd1813c2b84a353800aa82b8b01ad +binfiles arch=x86_64-darwinlegacy size=527 bin/x86_64-darwinlegacy/dvitomp bin/x86_64-darwinlegacy/mfplain bin/x86_64-darwinlegacy/mpost @@ -195064,11 +204492,11 @@ binfiles arch=x86_64-darwinlegacy size=528 name metapost.x86_64-linux category Package -revision 58872 +revision 65877 shortdesc x86_64-linux files of metapost -containersize 922688 -containerchecksum 4670a71a3d5a60865b6269f6a468a0d2280292faea9d115195cfbc32a677dad231d61200c5713420588b35549de8b2d542ce41c352f6f26303e44ecc48a90a90 -binfiles arch=x86_64-linux size=597 +containersize 920120 +containerchecksum 40ad5a4fa38f16bc501e237c04f1b8875df56103a403f93dcec01efc3161f4158fa08c25960942d76ed474b45adbfea0408868aed7106c28bfc62fc9c9291454 +binfiles arch=x86_64-linux size=588 bin/x86_64-linux/dvitomp bin/x86_64-linux/mfplain bin/x86_64-linux/mpost @@ -195076,11 +204504,11 @@ binfiles arch=x86_64-linux size=597 name metapost.x86_64-linuxmusl category Package -revision 58850 +revision 65877 shortdesc x86_64-linuxmusl files of metapost -containersize 958152 -containerchecksum 88dbc693904da380426bfc94c3e289aba2dd8927a1d6fd2d2ba5f65ebae7f4283150fa52547143ff3b85efc09863878d4bce3c5482f32fc49082dce481dae3af -binfiles arch=x86_64-linuxmusl size=623 +containersize 956604 +containerchecksum 17f6c0fb3863bc7f0bbd12963b775af5403f32ac5d3313730e010e32881939badd4037e66cd56fbcb01796d450197d43b4d6fb972c226d6a590fb35af3d4912b +binfiles arch=x86_64-linuxmusl size=616 bin/x86_64-linuxmusl/dvitomp bin/x86_64-linuxmusl/mfplain bin/x86_64-linuxmusl/mpost @@ -195088,10 +204516,10 @@ binfiles arch=x86_64-linuxmusl size=623 name metapost.x86_64-solaris category Package -revision 58850 +revision 65877 shortdesc x86_64-solaris files of metapost -containersize 930088 -containerchecksum 6307988d06e5d794e6a4ceba2c48149fda6f6b72724f46f7d6f86627324d06f6d69148e3abedc0730a83d8266dad935138af201a5d3786dc5235e2a7922eea50 +containersize 932400 +containerchecksum 8c2f2a2388258212b8e729ae716da57eb17480ae965ed6337a35a004c1d6b39d100f906107716b0c8a57eabd1d9bfdf346cceda8310d7373e4d2ae344992ff19 binfiles arch=x86_64-solaris size=599 bin/x86_64-solaris/dvitomp bin/x86_64-solaris/mfplain @@ -195500,17 +204928,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/pdfmex bin/armhf-linux/utf8mex -name mex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of mex -containersize 356 -containerchecksum da498969dd082b214abd76c6bce40e7613786a0e3f759862653600739cec2dbb49dc63f673ac796dd1c2a54ce89b1edb1c17e76c9ced48f135273e25ee6ecbe1 -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/mex - bin/i386-cygwin/pdfmex - bin/i386-cygwin/utf8mex - name mex.i386-freebsd category Package revision 16472 @@ -195566,16 +204983,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/pdfmex bin/universal-darwin/utf8mex -name mex.win32 +name mex.windows category Package -revision 57883 -shortdesc win32 files of mex -containersize 896 -containerchecksum fc68398cd6c2f50674d961ff4f39071c22cc74f73b7002c075ceead17e3e6c89bdb95f1bbeb1aa389384f871430073362fa1a2cf2c8fd7a10a5ddc69d57a75b9 -binfiles arch=win32 size=3 - bin/win32/mex.exe - bin/win32/pdfmex.exe - bin/win32/utf8mex.exe +revision 65891 +shortdesc windows files of mex +containersize 2416 +containerchecksum 627b1885577c23e6368c0ba02749fd237c0f1e044ed4d683088ee6c23ff012ef9accd467b9405ce2c8687f0a950b24ae557108929343c796d682b7ce6ea8cae2 +binfiles arch=windows size=6 + bin/windows/mex.exe + bin/windows/pdfmex.exe + bin/windows/utf8mex.exe name mex.x86_64-cygwin category Package @@ -195634,7 +205051,7 @@ binfiles arch=x86_64-solaris size=3 name mf2pt1 category Package -revision 57018 +revision 61217 shortdesc Convert stylized Metafont to PostScript Type 1 longdesc mf2pt1 is a Perl script that facilitates producing PostScript longdesc Type 1 fonts from a Metafont source file. It is not, as the @@ -195645,24 +205062,24 @@ longdesc will produce valid Type 1 output with more accurate control longdesc points than can be reverse-engineered by TeXtrace, mftrace, and longdesc other programs which convert bitmaps to outline fonts. depend mf2pt1.ARCH -containersize 14288 -containerchecksum 87df5858f4a383f4915d469479460d55a6975a841d31b9993c9e3c9af422965d5eb869eac82c2dda968c17160e96c794ce85760c56d3d931d09fd13425d3c508 -doccontainersize 198696 -doccontainerchecksum 5320e1d724fde19f8c0c1b85902e57609e938243baadd00edb8294867a1df792ac2f72bcd1bf7350f4a9efab1563c9fea4361e423079b1f75ab9ecdbf2da4b90 +containersize 15184 +containerchecksum ca93a3ae439f9cd8029720bd1d90fbe75a403e7ab4ebcbe1ba1e5a7a28aa9269197f90a4aee849fea59d734d5dc38f04eedc140ff1be64fd805a10ab5510a2f5 +doccontainersize 201308 +doccontainerchecksum 6c10831fdcc48d25645be675fbf5da29da945bd79032c60e73e04a39d61c287a64e7b884381ac0b08e48f5dc9b6dec27efea874f6e13d6e4a5e3f32c22fa3ce2 docfiles size=67 texmf-dist/doc/info/mf2pt1.info texmf-dist/doc/support/mf2pt1/ChangeLog texmf-dist/doc/support/mf2pt1/README details="Readme" texmf-dist/doc/support/mf2pt1/mf2pt1.pdf details="Package documentation" texmf-dist/doc/support/mf2pt1/mf2pt1.texi -runfiles size=14 +runfiles size=15 texmf-dist/metapost/mf2pt1/mf2pt1.mp texmf-dist/scripts/mf2pt1/mf2pt1.pl catalogue-also metatype1 catalogue-ctan /support/mf2pt1 catalogue-license lppl1.3c catalogue-topics font-proc -catalogue-version 2.6 +catalogue-version 2.7 name mf2pt1.aarch64-linux category Package @@ -195700,15 +205117,6 @@ containerchecksum efd149c6640881e5c07e22fd3f3690a742a607ccc1d59fd193858bfd9eee3f binfiles arch=armhf-linux size=1 bin/armhf-linux/mf2pt1 -name mf2pt1.i386-cygwin -category Package -revision 23406 -shortdesc i386-cygwin files of mf2pt1 -containersize 340 -containerchecksum fc4327f7979a5d66765f0d4d8dbbb29adc053b525b6cee79e461379302b0cddcce4508dca032b114da9ea7041c37fa8d1d46341d2b63acda58074591e5266069 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mf2pt1 - name mf2pt1.i386-freebsd category Package revision 23406 @@ -195754,14 +205162,14 @@ containerchecksum c261262f8bed37cc1a0414251ce3231b98979ff8d47c8e715e17ba723c6f8d binfiles arch=universal-darwin size=1 bin/universal-darwin/mf2pt1 -name mf2pt1.win32 +name mf2pt1.windows category Package -revision 23406 -shortdesc win32 files of mf2pt1 -containersize 680 -containerchecksum 8ee608dab95f6167950f745c50c158052ba747176db263ce83c9769c1179bb7d1b70ae6a8b172d7289904bbe73a13502ff0795082bad42448675776f8552e5c6 -binfiles arch=win32 size=1 - bin/win32/mf2pt1.exe +revision 65891 +shortdesc windows files of mf2pt1 +containersize 2304 +containerchecksum 9d2b6e01a4943ec1afaf40ed40650546a913e11d79560a7583889e46599f071b022031aaff67b7c1bd20c5f1d147ca406bec68593374fbb414eb57f387be1c14 +binfiles arch=windows size=2 + bin/windows/mf2pt1.exe name mf2pt1.x86_64-cygwin category Package @@ -195810,7 +205218,7 @@ binfiles arch=x86_64-solaris size=1 name mfirstuc category Package -revision 45803 +revision 64743 shortdesc Uppercase the first letter of a word relocated 1 longdesc The package provides commands \makefirstuc that uppercases the @@ -195821,11 +205229,11 @@ longdesc \capitalisewords{phrase} which applies \makefirstuc to each longdesc word in the phrase, where the words are separated by regular longdesc spaces. (Exceptions can be made for words that shouldn't be longdesc converted.) -containersize 4316 -containerchecksum de7ca64b5a32f697ec1efb477c2230ac418799e72f298ee6ac80409952affb35ef6152fb366e822ba1b01e39afe4483d5437c4e9aa22130a90bef79f87ab77a5 -doccontainersize 661840 -doccontainerchecksum 1a2705a13325a97199095fbdb900b94e94f308311d7609ddfbb75efb7afeb1a2634a0f543da517a03d68e974d2b917f94a1b6a7b3d31965d7087ac585b6b0df5 -docfiles size=195 +containersize 5756 +containerchecksum 2fde98490744da1823c5d90b8fabaa9c02d33f3f974fc7f0f6b8ddae4d8ec86f563a4fb491644d53a13b8632fbca2c7768970eea018c6112dc76d21307d89166 +doccontainersize 779396 +doccontainerchecksum 43fd4ec0bc778fc110c0002ebd8a1fd25374d9167c8b64857b29bc3642870c89f02deb406378bfa0fbc46825af6fc6622a1029880189f37d58efea74a983f5a3 +docfiles size=266 RELOC/doc/latex/mfirstuc/CHANGES RELOC/doc/latex/mfirstuc/README details="Readme" RELOC/doc/latex/mfirstuc/mfirstuc-code.pdf details="Package code and documentation (PDF)" @@ -195834,19 +205242,20 @@ docfiles size=195 RELOC/doc/latex/mfirstuc/mfirstuc-manual.tex RELOC/doc/latex/mfirstuc/sample-mfirstuc.pdf RELOC/doc/latex/mfirstuc/sample-mfirstuc.tex -srccontainersize 8392 -srccontainerchecksum 021d1e945d7033ed18d3df4a3a0756c9048e7a576bd5d64f1fa2f963292a9aadf0c5bea95b29e3468117ea4f02e4b83785517516d87a31bd85bfb6fa0133e734 -srcfiles size=10 +srccontainersize 11528 +srccontainerchecksum cd46a05b9b90c3e703c5970ac46b8fd59d94dcdb83dfd38a1038bb2197ebd0b8a89ef9582dabf1ee8665abba4905548706fcc08ced7966fadaedb333bae968db +srcfiles size=17 RELOC/source/latex/mfirstuc/mfirstuc.dtx RELOC/source/latex/mfirstuc/mfirstuc.ins -runfiles size=6 - RELOC/scripts/mfirstuc/mfirstuc.perl +runfiles size=11 + RELOC/scripts/mfirstuc/mfirstuc.l2h + RELOC/tex/latex/mfirstuc/mfirstuc-2021-10-15.sty RELOC/tex/latex/mfirstuc/mfirstuc-english.sty RELOC/tex/latex/mfirstuc/mfirstuc.sty catalogue-ctan /macros/latex/contrib/mfirstuc catalogue-license lppl1.3 catalogue-topics text-manip macro-supp -catalogue-version 2.06 +catalogue-version 2.08 name mflogo category Package @@ -195923,7 +205332,7 @@ catalogue-version 1.002 name mflua category TLCore -revision 54074 +revision 62774 shortdesc configuration and base files for MFLua longdesc For information on this Lua-enabled Metafont, see, for example: longdesc tug.org/TUGboat/tb32-2/tb101scarso.pdf. @@ -195931,8 +205340,8 @@ depend luatex depend metafont depend mflua.ARCH execute AddFormat name=mflua engine=mflua-nowin options="mf.ini" fmttriggers=luatex,metafont mode=disabled -containersize 31672 -containerchecksum ec89212e9a1518f5502f93114377f07e88af787f15c64fc61f40f22a679384f8825384c694dd365d5a74bc5d9417dcf3932c634279550603374bb43df1a7a0e6 +containersize 31676 +containerchecksum fa735fa117e7bd433339efbb709caa5fc25007088500dd5e4f6999cc417d188fd43435f74d526186880ac857f9bfc52e1fb7f1055974cea959e28536150b1a19 runfiles size=48 texmf-dist/metafont/mflua/mflua.ini texmf-dist/metafont/mflua/mfluajit.ini @@ -195945,11 +205354,11 @@ runfiles size=48 name mflua.aarch64-linux category TLCore -revision 58389 +revision 65927 shortdesc aarch64-linux files of mflua -containersize 786332 -containerchecksum e5aa57daa1bd8cefe075ce2ca0d232c959d18ffac360e6bd95e151ca1ccf7839eb2d1e608ad2473afeb2b27d033bb819d285a4e2a58d22f8503f2a87a189c86d -binfiles arch=aarch64-linux size=825 +containersize 821432 +containerchecksum 594376f0bfb5e142daaf37a3d4bc8c870e92e13583e3412a29ee312ed70c62f5ca6e9029258c4c8f4cebd75827c5c5eafebf904ac0b71ff5cf0715cad81e6e9f +binfiles arch=aarch64-linux size=857 bin/aarch64-linux/mflua bin/aarch64-linux/mflua-nowin bin/aarch64-linux/mfluajit @@ -195957,11 +205366,11 @@ binfiles arch=aarch64-linux size=825 name mflua.amd64-freebsd category TLCore -revision 58388 +revision 65877 shortdesc amd64-freebsd files of mflua -containersize 913488 -containerchecksum 5d4ba9fc28b102835ffb676aa101a3f36cdcd09a476b107f9a39a74de37e39faad1685dc9ebdec9633629fe709c3e9ed452cc32fd4658a5390606ee6bcfa3c74 -binfiles arch=amd64-freebsd size=867 +containersize 970548 +containerchecksum 126415397e84e0ef3eedfa0d1735550c1b438694ff79d576efe016fbf96b1408df0e8473a463f466ad7cc989d19adf9a3749f1833181655e699f77f789ebf169 +binfiles arch=amd64-freebsd size=908 bin/amd64-freebsd/mflua bin/amd64-freebsd/mflua-nowin bin/amd64-freebsd/mfluajit @@ -195969,11 +205378,11 @@ binfiles arch=amd64-freebsd size=867 name mflua.amd64-netbsd category TLCore -revision 58386 +revision 65923 shortdesc amd64-netbsd files of mflua -containersize 753884 -containerchecksum 409b77824ca85bf35963120befa7a1c6597a9929390161dfc40b123c26c02f40625de8f32a39f31a4fadbabadec55c7df64280b57b35fd2f418418da8a7ebcff -binfiles arch=amd64-netbsd size=1024 +containersize 787104 +containerchecksum 9a7dbffc7cf2116ccbaf088c3d5965b90382eea1703be174cd3947466c8bb7a6c2c7fb426b48f24c9fd358c8388d4a48754834583c3a691afd9c0a434edd14ab +binfiles arch=amd64-netbsd size=1072 bin/amd64-netbsd/mflua bin/amd64-netbsd/mflua-nowin bin/amd64-netbsd/mfluajit @@ -195981,35 +205390,23 @@ binfiles arch=amd64-netbsd size=1024 name mflua.armhf-linux category TLCore -revision 58502 +revision 65877 shortdesc armhf-linux files of mflua -containersize 639464 -containerchecksum 0a999e5724a0d75805ecb8497ba8aa07672b81dc8c2e67aa9191b73aecfd9740b7eec2a275ae13e3e6b57ec86813ac3e9e730763dd26278fea797e7771f0fc6d -binfiles arch=armhf-linux size=637 +containersize 669916 +containerchecksum 540d610d3ff2f48a3dfbd5426f8028df78cdb97e62b48aa1e120026b3c2ab4dba8db9fd091733a61d247ddf22fc9f42323b3e3932a855d417a9342e19b002da0 +binfiles arch=armhf-linux size=663 bin/armhf-linux/mflua bin/armhf-linux/mflua-nowin bin/armhf-linux/mfluajit bin/armhf-linux/mfluajit-nowin -name mflua.i386-cygwin -category TLCore -revision 58498 -shortdesc i386-cygwin files of mflua -containersize 460172 -containerchecksum 1112fab77d8d7489d5c71f1ec1c602f4525cd82addce4a595ad14a97653c736e03c2e0d06d48da5a4fe4c51c9b0173c75704c88cad882f426c7ebf27a0285b36 -binfiles arch=i386-cygwin size=616 - bin/i386-cygwin/mflua-nowin - bin/i386-cygwin/mflua.exe - bin/i386-cygwin/mfluajit-nowin - bin/i386-cygwin/mfluajit.exe - name mflua.i386-freebsd category TLCore -revision 58388 +revision 65877 shortdesc i386-freebsd files of mflua -containersize 819272 -containerchecksum 32a4ee7a74cef3d43ea50f56c4da81de2446438d7fee8c2b995dc946c30a4b69f182662e473c55a642aa2f533f348ac59b2b356fd3a77c55d93cd460d277c2ab -binfiles arch=i386-freebsd size=780 +containersize 872944 +containerchecksum 1787ad025ccd55213fe634ab9c7fc8e648d917da6f404c5c4d7a8742027e9c2b8143ef5c1d389d8083423453d797e725d20a5b8897a6af1adeca0da4edaf9bba +binfiles arch=i386-freebsd size=818 bin/i386-freebsd/mflua bin/i386-freebsd/mflua-nowin bin/i386-freebsd/mfluajit @@ -196017,11 +205414,11 @@ binfiles arch=i386-freebsd size=780 name mflua.i386-linux category TLCore -revision 58535 +revision 65877 shortdesc i386-linux files of mflua -containersize 852200 -containerchecksum 824c0e3953e70b0371c3166093630e8914019fa6bbd0a99027e900996b43934a70ffa6fe32c4ee08e3e93e592b3c198b87d9f9f62cb3032baffdf65a0137e552 -binfiles arch=i386-linux size=823 +containersize 906188 +containerchecksum 515529aa2617b55dfd96020ec68b506162ac5239b41c7c43d65a965b64cda942183fe5f6ea5c851c8093a637f9aa0b18413bec7b632250cd988550242cd2e917 +binfiles arch=i386-linux size=866 bin/i386-linux/mflua bin/i386-linux/mflua-nowin bin/i386-linux/mfluajit @@ -196029,11 +205426,11 @@ binfiles arch=i386-linux size=823 name mflua.i386-netbsd category TLCore -revision 58386 +revision 65923 shortdesc i386-netbsd files of mflua -containersize 694840 -containerchecksum 31012c59e1099ae530c8fbfe8f4e86819b8adb1c1ed7e33a1615b4033eb6fbfb63163e58be582129d5927f41fa2f22c99da40b751efd0d0b0aca734363e95d7c -binfiles arch=i386-netbsd size=922 +containersize 724796 +containerchecksum d697e6d6d91219bb254074375800cfe46e9d9550c6d2f597c99f0d0bd4facfc48656d42c1f8952a688cc9a95e34c971e5688f26eccd5ba80ee8740eb8f5ffa2a +binfiles arch=i386-netbsd size=964 bin/i386-netbsd/mflua bin/i386-netbsd/mflua-nowin bin/i386-netbsd/mfluajit @@ -196041,47 +205438,45 @@ binfiles arch=i386-netbsd size=922 name mflua.i386-solaris category TLCore -revision 58388 +revision 65877 shortdesc i386-solaris files of mflua -containersize 741596 -containerchecksum 14163c729653855b98360a993e3d4c261884e1db119b0a9302b2e7f6015cff27169eac05252756df9abd2a9700426ad3c5710bbd08c84e8c0a9fa18a96e5ce9a -binfiles arch=i386-solaris size=657 +containersize 489696 +containerchecksum 1b4403492ce1fcca7527f5da6aeaba1995547b72a4bcb30eade60b4bd6ed1bbb1c1f76bfa3c88439f6af4e41c2ea0873cc3898b898a9059a4aaba81211564133 +binfiles arch=i386-solaris size=308 bin/i386-solaris/mflua bin/i386-solaris/mflua-nowin - bin/i386-solaris/mfluajit - bin/i386-solaris/mfluajit-nowin name mflua.universal-darwin category TLCore -revision 58418 +revision 65895 shortdesc universal-darwin files of mflua -containersize 1480588 -containerchecksum a38c0943b6188548281af5f25a90b5b4f65f26c36cc9ce5aa64ae3ee8a2645c942982b43ff744f7e10c60784d67a161100c2a4d73844f9de71fb4263446e66a5 -binfiles arch=universal-darwin size=1539 +containersize 1567720 +containerchecksum 94a8279e1da804817e1ea1728010de9247d92541dd7f64e7838a7050dc9c184cea2bbb2668141f677d30f4c594407312669bfbf16de3dcb5d2aa6c4948edd208 +binfiles arch=universal-darwin size=1620 bin/universal-darwin/mflua bin/universal-darwin/mflua-nowin bin/universal-darwin/mfluajit bin/universal-darwin/mfluajit-nowin -name mflua.win32 +name mflua.windows category TLCore -revision 59028 -shortdesc win32 files of mflua -containersize 1040948 -containerchecksum db35f4dd287edfc167a6977011de82462004e1c4d044c22e5a2d93490f78493a854b7e9576b4df5c48969fdd4c87180df2140c27cb961aec4aed7404f0b89850 -binfiles arch=win32 size=1410 - bin/win32/mflua-nowin.exe - bin/win32/mflua.exe - bin/win32/mfluajit-nowin.exe - bin/win32/mfluajit.exe +revision 65891 +shortdesc windows files of mflua +containersize 1242040 +containerchecksum 4820d5929c357cb00f54b15aa5c3b54c4a1955ce926f65905c2b5d0c6067198fb72b0004627afc70b2541c0600e85454818f5005ff15bc4aa911d53bdd709114 +binfiles arch=windows size=1780 + bin/windows/mflua-nowin.exe + bin/windows/mflua.exe + bin/windows/mfluajit-nowin.exe + bin/windows/mfluajit.exe name mflua.x86_64-cygwin category TLCore -revision 58498 +revision 66544 shortdesc x86_64-cygwin files of mflua -containersize 485588 -containerchecksum 8afa5ee07b5de0913be34f7b4d127ef097288a90e3eb314ca57266d626d9601dfdaea589947cafe31748bc9646e694d9d482e917118946adb6cfe09bb50a39fd -binfiles arch=x86_64-cygwin size=582 +containersize 521696 +containerchecksum ebf15ae8805a32c05ec6be628de1768de80b85bec7852db672807eaa8cc16ecd87cac8ec25da1e28a5fb5f43fe56ea7e1967e15d63650e57fe679b140a5c53e7 +binfiles arch=x86_64-cygwin size=614 bin/x86_64-cygwin/mflua-nowin bin/x86_64-cygwin/mflua.exe bin/x86_64-cygwin/mfluajit-nowin @@ -196089,11 +205484,11 @@ binfiles arch=x86_64-cygwin size=582 name mflua.x86_64-darwinlegacy category TLCore -revision 58388 +revision 65877 shortdesc x86_64-darwinlegacy files of mflua -containersize 722036 -containerchecksum 6c9a5e44449f195c20c6de51158ef806064f6d0288562d9829bc22830cef8371be4ffcfb9513d1053344c746a8b5d774a0816a50637c87914126cfb5deeda82b -binfiles arch=x86_64-darwinlegacy size=664 +containersize 757756 +containerchecksum 835ab6bc96d7339f7a22f07b51d0a6a70329a522bccfd81397a9580a972c30f8fa2cb1e020cf05beadcf91b44ef95c24238b6b51be89ae6115613da0b4dced70 +binfiles arch=x86_64-darwinlegacy size=695 bin/x86_64-darwinlegacy/mflua bin/x86_64-darwinlegacy/mflua-nowin bin/x86_64-darwinlegacy/mfluajit @@ -196101,11 +205496,11 @@ binfiles arch=x86_64-darwinlegacy size=664 name mflua.x86_64-linux category TLCore -revision 58535 +revision 65877 shortdesc x86_64-linux files of mflua -containersize 835968 -containerchecksum 1d4568f0b1de06afaa9312c4e189771104821c26f0e04bf75511e222958f21aade2181f9dc91788da874d41a45d9a79e7c49686a2f6a9b8d30d49b62a15239fb -binfiles arch=x86_64-linux size=771 +containersize 877052 +containerchecksum f9f669ade30a930d75d9226b8f9ad952f53cdd4ca32f4296b5b31d9c2400e747d5805374ea357c053fe51446d8fd46ec2b9cfb762853ccb1caf1cefb31d33fd5 +binfiles arch=x86_64-linux size=797 bin/x86_64-linux/mflua bin/x86_64-linux/mflua-nowin bin/x86_64-linux/mfluajit @@ -196113,11 +205508,11 @@ binfiles arch=x86_64-linux size=771 name mflua.x86_64-linuxmusl category TLCore -revision 58378 +revision 65877 shortdesc x86_64-linuxmusl files of mflua -containersize 868284 -containerchecksum 398dc1552d3e9f1efba3d277b610fa4cdefb8cd7d6054addff4c8c848dfe721819bd4687c4c67f3e97eacd35843863ffb46cdf000355deb942e3ca2022a66686 -binfiles arch=x86_64-linuxmusl size=839 +containersize 915136 +containerchecksum 38dcf20d7ed6581443160e296dca1e9dc87574eb85c2f7afff35f3b9eac1f5d3a85ab23c26e0ca0d4217d59529ce46be3482d5c0b0280253f7bdcdaaff434c7e +binfiles arch=x86_64-linuxmusl size=863 bin/x86_64-linuxmusl/mflua bin/x86_64-linuxmusl/mflua-nowin bin/x86_64-linuxmusl/mfluajit @@ -196125,11 +205520,11 @@ binfiles arch=x86_64-linuxmusl size=839 name mflua.x86_64-solaris category TLCore -revision 58388 +revision 65877 shortdesc x86_64-solaris files of mflua -containersize 524852 -containerchecksum fc89d33e029b2b487ff277e9d536b12b90b22bd0a80921912bea33aaf6f403148297b2af7361a167662d203e4350c83f25d54fbdf9868b5fb1a67b4ed696ffc1 -binfiles arch=x86_64-solaris size=349 +containersize 556400 +containerchecksum db0ccc4afafa1533319b63d35f13b4514f68a4e652b88df8af6cf942e5830a51a340270de3235075e717a75a96b48d3d6c5ac8a7e3179bbc56abc9b395d0b1e7 +binfiles arch=x86_64-solaris size=367 bin/x86_64-solaris/mflua bin/x86_64-solaris/mflua-nowin @@ -196299,15 +205694,15 @@ catalogue-version 1.0a name mfware category TLCore -revision 57972 +revision 66186 shortdesc Supporting tools for use with Metafont longdesc A collection of programs (as web source) for processing the longdesc output of Metafont. depend mfware.ARCH -containersize 3184 -containerchecksum 77b679b6b81515451da4b6068b5e7ee793faf8bb209b3a68356aa131e0fcf27ffed912ee72a3bb8f347e7db2893115de5843351dcdcb6a3ac49a7e88eacacd56 -doccontainersize 100704 -doccontainerchecksum 3655d6796318db16f26dfa3031a0339608cc9e6d7d18698628be0ff1cc9234c95d4914a2fd047d775b83bfb9fe3a2091e52e4a8b96dbca86ee901fce0e99fd5b +containersize 3180 +containerchecksum f14b1f8876f8a4f2ba8954459c2a3739e0537d800fc1fde11aaaaa61400c18b9419edd3c7884ecac499da3efbd5219244c06ccab1efe17674b5458b464abd3ea +doccontainersize 101516 +doccontainerchecksum ec469dc655be20598ae40cdccd8360252cb216039cfcdfaab5f45d0276fee272a463f19db7f98f6d35b3e6930098536fe8eb4a453161646aa0ed33dd3f8773db docfiles size=42 texmf-dist/doc/man/man1/gftodvi.1 texmf-dist/doc/man/man1/gftodvi.man1.pdf @@ -196327,7 +205722,7 @@ runfiles size=4 texmf-dist/mft/base/mplain.mft texmf-dist/mft/base/plain.mft catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/mfware catalogue-license pd @@ -196335,11 +205730,11 @@ catalogue-topics collection name mfware.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of mfware -containersize 119088 -containerchecksum afae28685f8a18d32ba28ecbf670a59ccfbaca49b06fa25a6b9b4522c7f7ee7bba66047746a1fea77fa73cc005e0012d6b8d528bc8e2989639fa97278a9bde39 -binfiles arch=aarch64-linux size=159 +containersize 118132 +containerchecksum e577f545cb2ca20aa847cdf568c0f3a72b5b324a46216dc10e715bb55716a64832da418b6769a00161030f73d30da6ee5120f19fb285845093812e2169316b2e +binfiles arch=aarch64-linux size=158 bin/aarch64-linux/gftodvi bin/aarch64-linux/gftopk bin/aarch64-linux/gftype @@ -196349,11 +205744,11 @@ binfiles arch=aarch64-linux size=159 name mfware.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of mfware -containersize 135224 -containerchecksum a70189597a637305dbbee42507988ef3e4f8c2c737b9b94d35b0b020803268784839629b1176b55d94cd8f082d04eeca1197234835e59e1154aa99a2c142f062 -binfiles arch=amd64-freebsd size=161 +containersize 133368 +containerchecksum 1f7edd39833334eb158274d22b018d7a39a92998e1691f7db1e9b8c8920cc631096e3e3e4530aa3f099ae07701d3d36095830b34fcde0f4a77abb724e176f355 +binfiles arch=amd64-freebsd size=163 bin/amd64-freebsd/gftodvi bin/amd64-freebsd/gftopk bin/amd64-freebsd/gftype @@ -196363,10 +205758,10 @@ binfiles arch=amd64-freebsd size=161 name mfware.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of mfware -containersize 120460 -containerchecksum cd019748ce1177f92c0e0fce81831b0e3ce4c3097ba4e8d523b74938f26cd5efb982f4ff858c3078e2679126d821d31f5f24c6ebcedd186ca87aadc28f0f5df2 +containersize 121912 +containerchecksum 958b2d3f034aa682c8c2ecbea43eb44b571b384b72cddc58a89e92344bfa49d63ff50f652b1e376bdb331c920c307b41615f138a3aaeae29a51b869c6f00408a binfiles arch=amd64-netbsd size=187 bin/amd64-netbsd/gftodvi bin/amd64-netbsd/gftopk @@ -196377,10 +205772,10 @@ binfiles arch=amd64-netbsd size=187 name mfware.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of mfware -containersize 90996 -containerchecksum 6c762c8b1a9ff99c0c8859a7f4c8a352168dbe770e371cb362ecc5626cd22b11826cabc5cc9936bfa41e9e42b24c8a327fd0a3d0db7023b5f82c8dfb87929241 +containersize 91280 +containerchecksum 006666b10a27a794deb528320667afb786656883a27fac24967d56129449c46053412056657bbf5c759e7e9092df99ac2bbeaf21ba390c43951726da876c3fc8 binfiles arch=armhf-linux size=126 bin/armhf-linux/gftodvi bin/armhf-linux/gftopk @@ -196389,27 +205784,13 @@ binfiles arch=armhf-linux size=126 bin/armhf-linux/pktogf bin/armhf-linux/pktype -name mfware.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of mfware -containersize 52664 -containerchecksum f5fd6672ba075ade21dc61991620120f8e2223df4097bae5307ac28e4f95fa7b1691a5714a0f270e5d59e4fcb767c4e5af05636340f9790bc87da2eff96fd8ad -binfiles arch=i386-cygwin size=49 - bin/i386-cygwin/gftodvi.exe - bin/i386-cygwin/gftopk.exe - bin/i386-cygwin/gftype.exe - bin/i386-cygwin/mft.exe - bin/i386-cygwin/pktogf.exe - bin/i386-cygwin/pktype.exe - name mfware.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of mfware -containersize 114768 -containerchecksum 1d972b87753a78079e9c6735598b0e02c92fffe905d8e76b57f2c3a4e07162589836b2ef08bbe7a963195113456c70ab7719e70180bd55cf021874f60f45b601 -binfiles arch=i386-freebsd size=141 +containersize 116048 +containerchecksum d67035ba3a05295ede714b8897d65e039570cd3d52844e5f5f330247584840ec4bdc707e79ef3e2b8bd62c1d914de40d41a1d309019fb9889237cfbd9792702e +binfiles arch=i386-freebsd size=144 bin/i386-freebsd/gftodvi bin/i386-freebsd/gftopk bin/i386-freebsd/gftype @@ -196419,11 +205800,11 @@ binfiles arch=i386-freebsd size=141 name mfware.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of mfware -containersize 115812 -containerchecksum f00307746010afda98e58c617da7fa09cab27618c83f89addefeb338fbe006db4d619e6cefd726a563a0670d78a98393381ce563f9744e0007e88a7dd421b94f -binfiles arch=i386-linux size=165 +containersize 115968 +containerchecksum b7eaa6fbfc69ccf7147b2650be6e21d1cd418bfbdb84c4c72ea41de28ca05ba6d9f84b7ec13a02968f1d5a9dc160963180224f92d1a3bebb4f0bd38e9dc6e1f2 +binfiles arch=i386-linux size=169 bin/i386-linux/gftodvi bin/i386-linux/gftopk bin/i386-linux/gftype @@ -196433,11 +205814,11 @@ binfiles arch=i386-linux size=165 name mfware.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of mfware -containersize 104948 -containerchecksum 91cfa310c949ef6722f9fafeb88b68d1946acc9bfd51550a7de734459f17fee045c168b56eb98c09bc4f9fec3f3cd539d7495fe2264eeccbea17f854ddff6b1b -binfiles arch=i386-netbsd size=172 +containersize 104848 +containerchecksum af14f032372b6655f9a2c671b9459d0df8e29a60596dc70f055b737ba231de2b4e2f011aef91b881877c2c8ae56a9777996a897472f71e5bf688724a60dba4cf +binfiles arch=i386-netbsd size=175 bin/i386-netbsd/gftodvi bin/i386-netbsd/gftopk bin/i386-netbsd/gftype @@ -196447,10 +205828,10 @@ binfiles arch=i386-netbsd size=172 name mfware.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of mfware -containersize 124616 -containerchecksum 7ab7eb4b878213da4d6827d9f1b6113152f487ce12a5f6c7f5b98895773da1249c34001e10d80fd806701461f230db6d8c85de79577fe021b996dd4a1de00eb4 +containersize 125168 +containerchecksum 72673ef3104ca396d0c286b008754f0e5ede795a840692b65c3c6324318bd1087a7338838c3efd44a40c94ccce63bcd0ce4ed3eabdb72a71b626c5326ee6b025 binfiles arch=i386-solaris size=147 bin/i386-solaris/gftodvi bin/i386-solaris/gftopk @@ -196461,11 +205842,11 @@ binfiles arch=i386-solaris size=147 name mfware.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of mfware -containersize 247192 -containerchecksum e13417063ef5cc0c5d195679a12d4d272da0b7ca28695efea31518b189b9ddffbd66dd21a730d274b6766201fcd76315b7635fc99bf1bac4bf4095b0877ce297 -binfiles arch=universal-darwin size=423 +containersize 248140 +containerchecksum 7b2b004f21402f207b23e49df00fdcbf707138eedb372fb73fe8b5d6df735b48be555c65d9088f7b31b247539a3c2a56d35cd321123e46ded5ebf83730af04a1 +binfiles arch=universal-darwin size=435 bin/universal-darwin/gftodvi bin/universal-darwin/gftopk bin/universal-darwin/gftype @@ -196473,27 +205854,27 @@ binfiles arch=universal-darwin size=423 bin/universal-darwin/pktogf bin/universal-darwin/pktype -name mfware.win32 +name mfware.windows category TLCore -revision 58783 -shortdesc win32 files of mfware -containersize 58956 -containerchecksum 773d29f9c0c09e2d05aaf4588aa56da6a7cee9210bb952a6477d7ac3b40549df25af8d42f6807d508ce4242811b3dad04cad9f3d164678741dc140f2e3f96c54 -binfiles arch=win32 size=45 - bin/win32/gftodvi.exe - bin/win32/gftopk.exe - bin/win32/gftype.exe - bin/win32/mft.exe - bin/win32/pktogf.exe - bin/win32/pktype.exe +revision 65891 +shortdesc windows files of mfware +containersize 67748 +containerchecksum f8f4032f0ebd5264758e4b6fa38115eb09122739d5e0179cdf168838abd80f6bf5e1aa1af6ed9824ed681505ae3744780267da7224c16bcd6cfc9dc4adf5d060 +binfiles arch=windows size=49 + bin/windows/gftodvi.exe + bin/windows/gftopk.exe + bin/windows/gftype.exe + bin/windows/mft.exe + bin/windows/pktogf.exe + bin/windows/pktype.exe name mfware.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of mfware -containersize 63536 -containerchecksum 3310945a93bedf353071895df91c22ec620a1cf62299cc84bf77cfff09d7ca4a234d27f3b5101078ca42a1a956b924b71b329cf2c6b021d5a8464fbd61d1eb26 -binfiles arch=x86_64-cygwin size=49 +containersize 64068 +containerchecksum f96f238b9d8907d21dec7b1c1b914b6c6457e0d1380069bec73c7afaf905fe9ce2333fce9952563e5e1591eb4c0796ff96555170207099ca2cc1c24fc3c35c54 +binfiles arch=x86_64-cygwin size=50 bin/x86_64-cygwin/gftodvi.exe bin/x86_64-cygwin/gftopk.exe bin/x86_64-cygwin/gftype.exe @@ -196503,10 +205884,10 @@ binfiles arch=x86_64-cygwin size=49 name mfware.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of mfware -containersize 116748 -containerchecksum bfcaa691b101d693c7181bee1b4533a28e47b8198e590000af779a39a013492daad216fb164a83aaa4e65119804ba3b9b2d5ad4a19704069a7d2fe2ac307f8ea +containersize 116880 +containerchecksum 9115bee7aa57879dad18dd4b4bf5c4312d9bcc71d1f1b98f5dd9ac5c11a09d4663f38e22945a5b6a2f44cbbc483f01f36fce231a8f3b298a2389349b872ec442 binfiles arch=x86_64-darwinlegacy size=150 bin/x86_64-darwinlegacy/gftodvi bin/x86_64-darwinlegacy/gftopk @@ -196517,11 +205898,11 @@ binfiles arch=x86_64-darwinlegacy size=150 name mfware.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of mfware -containersize 123480 -containerchecksum 0e9c681da6fba2cc456d9ba30dd90065307434657a9728f467677d4d142dbd7efc24a9432c00511bb782955cf09c71589f85dcd1ae018da3910cbc1c635bb807 -binfiles arch=x86_64-linux size=146 +containersize 121284 +containerchecksum 501d03ec9b126dfbf46a8bb52852e4a3339cd8868bc819c3b81cbf2feaa59fd06b3ac73b38d9b58f936902a95f40eb3891a900fd335ba78e04ab8a1c2481247f +binfiles arch=x86_64-linux size=153 bin/x86_64-linux/gftodvi bin/x86_64-linux/gftopk bin/x86_64-linux/gftype @@ -196531,11 +205912,11 @@ binfiles arch=x86_64-linux size=146 name mfware.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of mfware -containersize 127072 -containerchecksum e158c6346fb8ebb5e9b44206740b033c530c130dd2fd60f072cf8373fd8e3fb99061e71ecb1ac5517e235fb831ee531afca116d14e7525bef1675e207f26c4ed -binfiles arch=x86_64-linuxmusl size=161 +containersize 129292 +containerchecksum f47b0a447e86f279ea4c6597224c1646edf5a0d79c7723df14b2d28be8c6b81b63c4930d48fa99dad6296aed0c075bd38fe2abcbcae6fa939e5c593c06091d3b +binfiles arch=x86_64-linuxmusl size=159 bin/x86_64-linuxmusl/gftodvi bin/x86_64-linuxmusl/gftopk bin/x86_64-linuxmusl/gftype @@ -196545,10 +205926,10 @@ binfiles arch=x86_64-linuxmusl size=161 name mfware.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of mfware -containersize 143948 -containerchecksum 0bbd4fefdf8aaaaa6f177b6d1014014d8c03bb7fe9be888b959f831f338217c8b7997220bda9b73bf659e1f9a5a9b8ae4bf6695d208b524aa78d139171115583 +containersize 145120 +containerchecksum 33bdca49ca352f43bef33b9234c01ed307bd3bacf29fad02e40fce6650f8b565eede98d7c603847cb2638fc8426f11b8b13a34b64af22fa1a28838587cb67328 binfiles arch=x86_64-solaris size=171 bin/x86_64-solaris/gftodvi bin/x86_64-solaris/gftopk @@ -196559,7 +205940,7 @@ binfiles arch=x86_64-solaris size=171 name mgltex category Package -revision 41676 +revision 63255 shortdesc High-quality graphics from MGL scripts embedded in LaTeX documents relocated 1 longdesc This package allows you to create high-quality @@ -196575,34 +205956,30 @@ longdesc publication-ready scientific graphics. Although it defines longdesc interfaces for many programming languages, it also implements longdesc its own scripting language, called MGL, which can be used longdesc independently. -containersize 6364 -containerchecksum f9d98f3e964ecefaf420ecdbdf7187300613bd22df092714ba5b5e945b47c2b24b95dbdb22abb92725a7fdc1ca1fcc88cd14cef1cd1f241c02ce26328951d751 -doccontainersize 1747732 -doccontainerchecksum 3a987e0ac6ad678887e9a2aabb18d772a3bbe4d1d10d53184887f95191961b692d231c1a7942c3383a5468098432807030a0d3877c5f3b0e271d8b7efb1366df -docfiles size=521 +containersize 6348 +containerchecksum 920784d4332e4e1635e089878a55848ef4ad82a7b23e24a1bc81f71a08bb7af411ea54710533bf1f429e506c4ca5e94855c73d890929dc558274e108155e1a71 +doccontainersize 6576 +doccontainerchecksum a8954ba22a30368ce01329b930486c02b317375636d85c7fdb7f14cf032173ab3f7a28ff6261d20cebdb8995560d4c7f41c03ed6285cfcaa555d405a06891432 +docfiles size=17 RELOC/doc/latex/mgltex/README details="Readme" - RELOC/doc/latex/mgltex/Recompilation_decision.eps - RELOC/doc/latex/mgltex/Recompilation_decision.pdf + RELOC/doc/latex/mgltex/README.TEXLIVE RELOC/doc/latex/mgltex/Recompilation_decision.svg - RELOC/doc/latex/mgltex/mgltex.pdf details="Package documentation" - RELOC/doc/latex/mgltex/sample.pdf - RELOC/doc/latex/mgltex/sample.tex -srccontainersize 31240 -srccontainerchecksum 3467c64e09fd1d988619e93df1e2313639d2b8c95faac62db5d17d615d56e868c06be917624957efd7528b50cd16cdabeea1cf0647c347061632c57fe99543b9 +srccontainersize 31244 +srccontainerchecksum 63b874341f2e18f88862ec5e6cf7064e9d4219070d274f0daa2dbacf8eb0eee5b4206167bd86520d10ffa0316d7ffe93615604932924b4cc04936db352073d1c srcfiles size=40 RELOC/source/latex/mgltex/mgltex.dtx RELOC/source/latex/mgltex/mgltex.ins runfiles size=7 RELOC/tex/latex/mgltex/mgltex.sty catalogue-ctan /graphics/mgltex -catalogue-license gpl3 +catalogue-license gpl3 cc-by-sa-3 catalogue-topics maths graphics-plot graphics-plotfn catalogue-version 4.2 name mhchem category Package -revision 52662 -shortdesc Typeset chemical formulae/equations and Risk and Safety phrases +revision 61456 +shortdesc Typeset chemical formulae/equations and H and P statements relocated 1 longdesc The bundle provides three packages: The mhchem package provides longdesc commands for typesetting chemical molecular formulae and @@ -196618,18 +205995,43 @@ depend graphics depend l3kernel depend l3packages depend tools -containersize 51516 -containerchecksum 32c9a82b2c4f6c2ca5a48d3f781206e4384df91a13d2ee8f7f5ad0ee5ff454e6c70c545eb576b4d8431cda581ed1f8ccd57dbd22d281d764c4872fef28c6626f -doccontainersize 285504 -doccontainerchecksum 5911b5548fa03abf787ca009b08553e3e575bb0d6601f36d878d7541e5e5cea0fcfceb5c3c69e6459f3aa6b791f8090bc244edb35c116112230bc5928b15f901 -docfiles size=88 +containersize 187492 +containerchecksum fffeb1ce083d8eb3da6543409e5cc735c9699f9145114c8325c336b93d2dab2a9976fc448c6324318407c3af888cb91cc7764fcf3bd24369e4940f00dda66429 +doccontainersize 426852 +doccontainerchecksum cd4c41a329489149b3f2bc79dd50e0517707681f452888394870459d10888095a0cbb7b7c18500f04264c6c85f791d9af9d799b1b4e221e991af32690e7405ba +docfiles size=120 RELOC/doc/latex/mhchem/README details="Readme" RELOC/doc/latex/mhchem/lppl-1-3c.txt RELOC/doc/latex/mhchem/manifest.txt RELOC/doc/latex/mhchem/mhchem.pdf details="Package documentation" RELOC/doc/latex/mhchem/mhchem.tex -runfiles size=109 +runfiles size=579 + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-bg.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-cs.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-da.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-de.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-el.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-en.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-es.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-et.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-fi.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-fr.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-ga.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-hr.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-hu.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-it.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-lt.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-lv.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-mt.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-nl.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-pl.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-pt.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-ro.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-sk.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-sl.inc.sty + RELOC/tex/latex/mhchem/hpstatement.inc/hpstatement-sv.inc.sty RELOC/tex/latex/mhchem/hpstatement.sty + RELOC/tex/latex/mhchem/mhchem.4ht RELOC/tex/latex/mhchem/mhchem.sty RELOC/tex/latex/mhchem/rsphrase.sty catalogue-also r-und-s @@ -196639,29 +206041,33 @@ catalogue-topics safety-notice chemistry name mhequ category Package -revision 38224 +revision 64978 shortdesc Multicolumn equations, tags, labels, sub-numbering relocated 1 -longdesc MHequ simplifies creating multi-column equation environments, -longdesc and tagging the equations therein. It supports sub-numbers of -longdesc blocks of equations (like (1.2a), (1.2b), etc) and references -longdesc to each equation individually (1.2a) or to the whole block -longdesc (1.2). The labels can be shown in draft mode. Comments in the -longdesc package itself describe usage. -containersize 4264 -containerchecksum 90f7dabe6486f6566ad6f835838ddf58a6568364ca2b5a82ea9cb96f283c5025c1f93fb50bac98405e8200de32b2c27e592e401a44fab691331fe4f77d27a202 -doccontainersize 100304 -doccontainerchecksum 0d7a258a96604328231c1784f218ef3351f9ef02a0a9a9da42db36c89324ab5f74559f3ea91c12553ec5a39d14b3a5f282f61ab9e001994e22e266ce394df26c -docfiles size=27 +longdesc The mhequ style file simplifies creating multi-column equation +longdesc environments and tagging equations therein. It supports +longdesc sub-numbering of blocks of equations (like (1.2a), (1.2b), etc) +longdesc and references to each equation individually (1.2a) or to the +longdesc whole block (1.2). The labels can be shown in draft mode. The +longdesc default behaviour is to show an equation number if and only if +longdesc the equation actually has a label, which reduces visual +longdesc clutter. Comments in the package itself describe its usage, +longdesc which should also be self-evident from the provided example +longdesc file. +containersize 4352 +containerchecksum bf1e2b11a9b4930a9ac364ad1b6e6f6097f346494196ef64fcb76dce00c9d3c3d145e852ddf321c0c8ee7444d52656e2db27e6a80c97b4c18c5fae283b8fd88a +doccontainersize 119848 +doccontainerchecksum aee8ac5b73692b37a9f0541c07787eef3dc173996c92aca250c35227f095416dace1e18be9fe6f2ae955610dcca9fea031a6b787fd2185138d7668d0cd269caa +docfiles size=33 RELOC/doc/latex/mhequ/README details="Readme" - RELOC/doc/latex/mhequ/example.pdf details="Examples of package use" - RELOC/doc/latex/mhequ/example.tex + RELOC/doc/latex/mhequ/mhequ-example.pdf details="Examples of package use" + RELOC/doc/latex/mhequ/mhequ-example.tex runfiles size=3 RELOC/tex/latex/mhequ/mhequ.sty catalogue-ctan /macros/latex/contrib/mhequ catalogue-license pd catalogue-topics maths -catalogue-version 1.7 +catalogue-version 1.72 name mi-solns category Package @@ -196758,7 +206164,7 @@ catalogue-version 1.1 name microtype category Package -revision 58394 +revision 66587 shortdesc Subliminal refinements towards typographical perfection relocated 1 longdesc The package provides a LaTeX interface to the micro-typographic @@ -196781,34 +206187,37 @@ longdesc available with pdfTeX or LuaTeX. The alternative package longdesc 'letterspace', which also works with plain TeX, provides the longdesc user commands for letterspacing only, omitting support for all longdesc other extensions. -containersize 46524 -containerchecksum 07f2e8f56fe2d18efc0b07fd1493303ac3f3f347550bf8644c2c6782f510eb57683a313bebcf63647664bf3dde6a7ecb1127a14d79d1ed3d0ff9f4d7651cdc76 -doccontainersize 1753892 -doccontainerchecksum 7804243348e470dd5fc5bf087daf8292664e378161faabef20d1be8dfbd461b7654fc55fbdba7674d18d4a4d058572968fc3ee05e036b68a67a43d366923cfc3 -docfiles size=446 +containersize 57304 +containerchecksum c80e6bb2c13432ecae2be22622e3bbfe82342ca138f61870cb8f3c2d7ec93f431bee5ae0a9619d4ad6a842b0752ecb73131452d6ac5c5fba7732ad4d5c979fa6 +doccontainersize 2625520 +doccontainerchecksum 6f7eb5d18fc2864c0bff52f7af82b3284766cef64d2ba8f4aa9f2f6d26af3e47e3be9d486f29e646e92ca597cc1129dacb5d1c03dbe155503ae046e4badbecf7 +docfiles size=689 RELOC/doc/latex/microtype/README.md details="Package README" - RELOC/doc/latex/microtype/microtype.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/microtype/microtype-code.pdf details="Implementation details" + RELOC/doc/latex/microtype/microtype.pdf details="User manual" RELOC/doc/latex/microtype/test-microtype.tex -srccontainersize 145968 -srccontainerchecksum e7dbf9965a74255e64c8e1f4743fb6acb66ea19b493fc3ae095932bc66ab71e75f090c74a800b4b05c6cc6d20bbfb07376812f3782697737d7166607aa70a347 -srcfiles size=176 +srccontainersize 173376 +srccontainerchecksum 77d5f0e22a97ac0291e891df206618460a2672fc36c79a91db2b5212092d65acb0e1cbe0ecf82e0a31704baef207a48f817b5fa65abc4d6e6c031acdd85ed602 +srcfiles size=210 RELOC/source/latex/microtype/microtype-utf.dtx RELOC/source/latex/microtype/microtype.dtx RELOC/source/latex/microtype/microtype.ins -runfiles size=107 +runfiles size=128 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-show.sty RELOC/tex/latex/microtype/microtype-xetex.def RELOC/tex/latex/microtype/microtype.cfg RELOC/tex/latex/microtype/microtype.lua RELOC/tex/latex/microtype/microtype.sty RELOC/tex/latex/microtype/mt-CharisSIL.cfg RELOC/tex/latex/microtype/mt-EBGaramond.cfg - RELOC/tex/latex/microtype/mt-FontAwesome.cfg RELOC/tex/latex/microtype/mt-LatinModernRoman.cfg - RELOC/tex/latex/microtype/mt-Lato.cfg + RELOC/tex/latex/microtype/mt-NewComputerModern.cfg RELOC/tex/latex/microtype/mt-Palatino.cfg + RELOC/tex/latex/microtype/mt-TU-basic.cfg + RELOC/tex/latex/microtype/mt-TU-empty.cfg RELOC/tex/latex/microtype/mt-bch.cfg RELOC/tex/latex/microtype/mt-blg.cfg RELOC/tex/latex/microtype/mt-cmr.cfg @@ -196824,10 +206233,12 @@ runfiles size=107 RELOC/tex/latex/microtype/mt-ugm.cfg RELOC/tex/latex/microtype/mt-zpeu.cfg catalogue-also pdfcprot +catalogue-contact-bugs https://github.com/schlcht/microtype/issues +catalogue-contact-repository https://github.com/schlcht/microtype/ catalogue-ctan /macros/latex/contrib/microtype catalogue-license lppl1.3c catalogue-topics micro-layout letterspace -catalogue-version 2.8c +catalogue-version 3.1a name microtype-de category Package @@ -197044,23 +206455,23 @@ catalogue-version 1.02 name mindflow category Package -revision 58475 +revision 65236 shortdesc Write your ideas in a clear way relocated 1 -longdesc This package provides an environment that is separated from the -longdesc main text and has its own line numbers, for writing ideas or -longdesc annotations. -containersize 1840 -containerchecksum 05338ac445658a80d5e204b742f3eca75fc460db578227c2418bbd5382fb23afc1fa8ba8658578659a2a617f8c843a4c116cd6159ab05bf6c7fc7283492e9c95 -doccontainersize 204960 -doccontainerchecksum d887f56208e8ad5c79223a607c48f5deafe8578cde6aaee46761424f251f066d0b9ad59a8a0f073965d418c0a43d08ad5a5a5f10efd9007e9d16d1080ec2ae4b +longdesc This package provides an environment that has its own line +longdesc numbers or markers and can be well distinguished from the main +longdesc text, for writing your ideas or annotations. +containersize 2536 +containerchecksum 35d1b4fd39bb64fb1e9c89ebaf33d54051f0f550967362dee15294aeac0066f92b0437e688b5065795dc19a680a9f26c99cb1647c3ddacbe0054ecf553c2f9eb +doccontainersize 202452 +doccontainerchecksum 4ad9f6c4e024f782dd1f0ec2e4847c45690c4c39410395cc4fb122f340b2dba0dbea5664f65640d2fc53ea301bba9e5758c7e29f3556511e307b6c0c2c46653e docfiles size=55 RELOC/doc/latex/mindflow/LICENSE RELOC/doc/latex/mindflow/README.md details="Readme" RELOC/doc/latex/mindflow/mindflow.pdf details="Package documentation" -srccontainersize 3712 -srccontainerchecksum 68b7ac026334ec4fd095476bae34fa6c8f91ccd3c1c7b3faa80026d6baa78559ee50cad511e059897d753311ff469d8592ea04bed9674c3b15382ad066d10ff7 -srcfiles size=4 +srccontainersize 6520 +srccontainerchecksum 1a267ca0f437c707ba05b65aa4355ad721aa2de26518143aae4e752ce1dc69d12f6e4b42b670c032d82ae15f5a6753cbc29f56bc44f4bb48d63ff6dc0afb9e1c +srcfiles size=7 RELOC/source/latex/mindflow/mindflow.dtx RELOC/source/latex/mindflow/mindflow.ins runfiles size=2 @@ -197163,31 +206574,229 @@ catalogue-license lppl1.3 catalogue-topics arithmetic calculation random catalogue-version 0.96 +name minim +category Package +revision 66395 +shortdesc A modern plain format for the LuaTeX engine +relocated 1 +longdesc This is a modern plain format for the LuaTeX engine, adding +longdesc improved low-level support for many LuaTeX extensions and newer +longdesc PDF features. While it can be used as drop-in replacement for +longdesc plain TeX, it probably is most useful as a basis for your own +longdesc formats. Most features included in the format are provided by +longdesc separate packages that can be used on their own; see the +longdesc packages minim-mp for mplib (MetaPost) support minim-math for +longdesc unicode mathematics minim-pdf for creating Tagged PDF minim-xmp +longdesc for XMP (metadata) inclusion This package contains only their +longdesc shared lowest-level programming interface, along with their +longdesc combined format. +containersize 25084 +containerchecksum aa4fa8895768847790ed819a799ed3f406a823f6765c2b3ced5d301327e02c59a49b6956222ece0b8cf6a112be6c1df8439ae14c0479db83e3970ef098d17d15 +doccontainersize 301824 +doccontainerchecksum 54497cf13aa9ceedc9697dc4f1b79bd8e0c99609fabf14c5a68633cc810d2ef47bf31460531fd9cf7448106d85b30c8fde88a596495b9408a707d5eddfe60241 +docfiles size=88 + RELOC/doc/luatex/minim/EUPL-1.2-EN.txt + RELOC/doc/luatex/minim/README details="Readme" + RELOC/doc/luatex/minim/minim-alloc.doc + RELOC/doc/luatex/minim/minim.doc + RELOC/doc/luatex/minim/minim.pdf details="Package documentation" +runfiles size=30 + RELOC/tex/luatex/minim/minim-alloc.lua + RELOC/tex/luatex/minim/minim-alloc.tex + RELOC/tex/luatex/minim/minim-callbacks.lua + RELOC/tex/luatex/minim/minim-doc.sty + RELOC/tex/luatex/minim/minim-etex.tex + RELOC/tex/luatex/minim/minim-hooks.lua + RELOC/tex/luatex/minim/minim-hooks.tex + RELOC/tex/luatex/minim/minim-lmodern.tex + RELOC/tex/luatex/minim/minim-pdfresources.lua + RELOC/tex/luatex/minim/minim-pdfresources.tex + RELOC/tex/luatex/minim/minim-plain.tex + RELOC/tex/luatex/minim/minim.ini + RELOC/tex/luatex/minim/minim.tex +catalogue-also optex +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /macros/luatex/generic/minim +catalogue-license other-free +catalogue-topics luatex format +catalogue-version 2023/1.2 + +name minim-hatching +category Package +revision 62395 +shortdesc Create tiling patterns with the minim-mp MetaPost processor +relocated 1 +longdesc This is a small proof-of-concept library of tiling patterns for +longdesc use with the minim-mp MetaPost processor. +containersize 2232 +containerchecksum 3d6720c4bbce847f1ca08279593398d162c80c14034ba6b8d168517ab30af883ce4fcc6cb0cea4dac0b0720be8fb8f67ddd131a026ed6ca5ea46182af1c41110 +doccontainersize 26048 +doccontainerchecksum 895a0b7731af0ea67e581ff4cc0208aca12d04ca862a15bc897d6e104a1bd9d7ef27f3a8c2a24c8533f16d0ceae1eab05a3dd923ae829529a223ba76d94485c1 +docfiles size=19 + RELOC/doc/latex/minim-hatching/EUPL-1.2-EN.txt + RELOC/doc/latex/minim-hatching/README details="Readme" + RELOC/doc/latex/minim-hatching/minim-hatching-doc.mp + RELOC/doc/latex/minim-hatching/minim-hatching-doc.pdf details="Package documentation" +runfiles size=2 + RELOC/metapost/minim-hatching/minim-hatching.mp +catalogue-also minim hatching +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /graphics/minim-hatching +catalogue-license other-free +catalogue-topics luatex graphics-subpic +catalogue-version 2022/1.1 + +name minim-math +category Package +revision 66395 +shortdesc Extensive maths for LuaTeX +relocated 1 +longdesc This package provides a simple and highly configurable way to +longdesc use Unicode and OpenType mathematics with simple LuaTeX, taking +longdesc advantage of most of the engine's new capabilities in +longdesc mathematical typesetting. Also included are the proper settings +longdesc and definitions for almost all Unicode mathematical characters. +containersize 33840 +containerchecksum 09453d949eea58e79de16b1bc1747dabca46286990a4a2294254c5acacb90886768ee6a4bc8d87fc46bc9b3f75b981da2a457ae1e65d380fbbf25849cd50fe45 +doccontainersize 98848 +doccontainerchecksum 7659114393c14ae475925c8d5e87c547771cc6fb9942962cd57c4deb9d1ffe54e34299164f4993aa7c657d660779f79f7ae83812345d851b6422583228fca4a0 +docfiles size=37 + RELOC/doc/luatex/minim-math/EUPL-1.2-EN.txt + RELOC/doc/luatex/minim-math/README details="Readme" + RELOC/doc/luatex/minim-math/minim-math.doc + RELOC/doc/luatex/minim-math/minim-math.pdf details="Package documentation" +runfiles size=93 + RELOC/tex/luatex/minim-math/minim-math-table.lua + RELOC/tex/luatex/minim-math/minim-math.lua + RELOC/tex/luatex/minim-math/minim-math.tex +catalogue-also minim +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /macros/luatex/generic/minim-math +catalogue-license other-free +catalogue-topics luatex maths +catalogue-version 2023/1.2 + +name minim-mp +category Package +revision 66395 +shortdesc Low-level mplib integration for LuaTeX +relocated 1 +longdesc This package offers low-level mplib integration for plain +longdesc LuaTeX and is designed with the purpose of being easy to +longdesc extend. The use of multiple simultaneous MetaPost instances is +longdesc supported, as well as running TeX or lua code from within +longdesc MetaPost. With the included minim-mp format file, you can even +longdesc use LuaTeX as a stand-alone MetaPost compiler. +containersize 14884 +containerchecksum 7f4735c96acc294ba0010fa36f8c83597bc9bb715edc8bf71337c45f47b65156a6edfacb20bac8fc587e3adba6b30e54921ec531927c405f21e97026b9b01551 +doccontainersize 93600 +doccontainerchecksum 4b4a104127dafde1f3596c844060e6d3701c49f934a8556d7aa58db736e067571a1e501eb5e1c950c8f6c5ab108454b1b6583eb28e918f9fe72c7aa3c271c307 +docfiles size=35 + RELOC/doc/luatex/minim-mp/EUPL-1.2-EN.txt + RELOC/doc/luatex/minim-mp/README details="Readme" + RELOC/doc/luatex/minim-mp/minim-mp.doc + RELOC/doc/luatex/minim-mp/minim-mp.pdf details="Package documentation" +runfiles size=16 + RELOC/metapost/minim-mp/minim.mp + RELOC/tex/luatex/minim-mp/minim-lamp.ini + RELOC/tex/luatex/minim-mp/minim-mp.ini + RELOC/tex/luatex/minim-mp/minim-mp.lua + RELOC/tex/luatex/minim-mp/minim-mp.tex +catalogue-also minim +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /macros/luatex/generic/minim-mp +catalogue-license other-free +catalogue-topics luatex mp-supp mp-use +catalogue-version 2023/1.2 + +name minim-pdf +category Package +revision 66395 +shortdesc Low-level PDF integration for LuaTeX +relocated 1 +longdesc This package adds low-level support to plain LuaTeX for marking +longdesc up the structure of a PDF document. The implementation is +longdesc rather basic, but should allow you to make your PDFs fully +longdesc PDF/A-compliant. +containersize 14744 +containerchecksum fa933150205df9d268bcb5cdd87820d09099fc79ab88c119d7b4afd79909b51d079f79e9a2c08dcb9867385187c3ba6f3cb8ad8807bb4ccea2461d82be17a638 +doccontainersize 107524 +doccontainerchecksum 65c19952eb3455e42146182413da9e8fe5178ed7173250eec19335ab53852db7e90febc693564b9c27866b0ce007ba3f8da5fadbe3f1d904b7fd003465f3c327 +docfiles size=39 + RELOC/doc/luatex/minim-pdf/EUPL-1.2-EN.txt + RELOC/doc/luatex/minim-pdf/README details="Readme" + RELOC/doc/luatex/minim-pdf/minim-pdf.doc + RELOC/doc/luatex/minim-pdf/minim-pdf.pdf details="Package documentation" +runfiles size=16 + RELOC/tex/luatex/minim-pdf/minim-languagecodes.lua + RELOC/tex/luatex/minim-pdf/minim-pdf.lua + RELOC/tex/luatex/minim-pdf/minim-pdf.tex +catalogue-also minim +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /macros/luatex/generic/minim-pdf +catalogue-license other-free +catalogue-topics luatex tagged-pdf pdf-feat +catalogue-version 2023/1.2 + +name minim-xmp +category Package +revision 66395 +shortdesc Embed XMP metadata in PDF with LuaTeX +relocated 1 +longdesc This package enables the inclusion of XMP (eXtensible Metadata +longdesc Platform) data in the pdf output generated by (plain) LuaTeX. +longdesc The use of XMP is required by PDF standards such as PDF/A. +containersize 6372 +containerchecksum 7bf28af02859edf70dfd357c580ee5c72beab027c954b09c946ee62d460de578f20e6f8ba56499e3220ca67cd0d37aa49d7656630e7b021e7d034c061d877e75 +doccontainersize 61752 +doccontainerchecksum 6fa8167f4db4fe0a2be03cda34cf881b79797c8f9d750764e04b069572482bbeb34e1be44aaab9f069f5f3476c1ac724a765b30e7d4842cb28cdb129e0bb3914 +docfiles size=26 + RELOC/doc/luatex/minim-xmp/EUPL-1.2-EN.txt + RELOC/doc/luatex/minim-xmp/README details="Readme" + RELOC/doc/luatex/minim-xmp/minim-xmp.doc + RELOC/doc/luatex/minim-xmp/minim-xmp.pdf details="Package documentation" +runfiles size=7 + RELOC/tex/luatex/minim-xmp/minim-xmp.lua + RELOC/tex/luatex/minim-xmp/minim-xmp.tex +catalogue-also minim hyperxmp +catalogue-contact-repository https://gitlab.com/renkema/minim +catalogue-ctan /macros/luatex/generic/minim-xmp +catalogue-license other-free +catalogue-topics luatex pdf-feat +catalogue-version 2023/1.2 + name minimalist category Package -revision 58395 +revision 66434 shortdesc Write your articles or books in a simple and clear way relocated 1 longdesc This package offers you a LaTeX style file and two classes to longdesc typeset articles or books in a simple and clear way. These -longdesc classes currently have native support for English and French -longdesc typesetting. They compile with any major TeX engine. You may -longdesc also wish to consider the packages einfart and simplivre, which -longdesc are enhanced versions of the classes provided here. They have -longdesc unicode support, thus can only be used with either XeLaTeX or -longdesc LuaLaTeX. Currently they have native support for English, -longdesc French, and Chinese typesetting, and also use more beautiful +longdesc classes currently have native support for English, French, +longdesc German, Italian, Portuguese (European and Brazilian), and +longdesc Spanish typesetting. They compile with any major TeX engine. +longdesc You may also wish to consider the packages einfart and +longdesc simplivre, which are enhanced versions of the classes provided +longdesc here. They have unicode support, thus can only be used with +longdesc either XeLaTeX or LuaLaTeX. Currently they have native support +longdesc for Chinese (both simplified and traditional), English, French, +longdesc German, Italian, Japanese, Portuguese (European and Brazilian), +longdesc Russian and Spanish typesetting, and also use more beautiful longdesc fonts. -containersize 6420 -containerchecksum 4ce14a43f724cb6dea4106e6a25b345cca94208724828383add74386943a1769bb5fb756424290cf2b49baeb4cb93658982d38c43ecbe6fc338bdf534905f4c5 -doccontainersize 53552 -doccontainerchecksum d10d1a10e2bf8bcc6cde857af2e94a0dfe7edc4c1c1013646273f0add9cae841b92a47313dfe6ebbaabf70132ddd9ee67c3588a606d084357ca937031289df7f -docfiles size=21 +depend projlib +containersize 12040 +containerchecksum 26ca2e0ba04054db29877e09c6716950ba5b47cbc2cb804ccafd403e1df1be38bc6289e43f58fbf33a88d238244f1dbadf27218bed5f96eeb2110660add806c6 +doccontainersize 7444 +doccontainerchecksum 71ddcf986c610f52e13f08889b7c520a2d81f1016c076318fb3343822e3b36e70d1fb5bc59add6428cd643f51d09f2a987ce0dc109b91a8c5bd087bb37f0e163 +docfiles size=7 + RELOC/doc/latex/minimalist/DEPENDS.txt RELOC/doc/latex/minimalist/LICENSE RELOC/doc/latex/minimalist/README.md details="Readme" - RELOC/doc/latex/minimalist/minimalist-doc.pdf details="Package documentation" - RELOC/doc/latex/minimalist/minimalist-doc.tex -runfiles size=8 +runfiles size=49 + RELOC/tex/latex/minimalist/minimalist-classical.sty + RELOC/tex/latex/minimalist/minimalist-flow.sty + RELOC/tex/latex/minimalist/minimalist-plain.sty + RELOC/tex/latex/minimalist/minimalist-stream.sty RELOC/tex/latex/minimalist/minimalist.sty RELOC/tex/latex/minimalist/minimart.cls RELOC/tex/latex/minimalist/minimbook.cls @@ -197195,7 +206804,7 @@ catalogue-also einfart simplivre catalogue-contact-repository https://github.com/Jinwen-XU/minimalist catalogue-ctan /macros/latex/contrib/minimalist catalogue-license lppl1.3c -catalogue-topics class article-like book-pub +catalogue-topics class article-like book-pub multilingual expl3 name minipage-marginpar category Package @@ -197260,7 +206869,7 @@ catalogue-topics graphics-use name minitoc category Package -revision 48196 +revision 61719 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 @@ -197273,10 +206882,10 @@ longdesc sectlots. The package has provision for language-specific longdesc configuration of its own "fixed names", using .mld files longdesc (analagous to babel .ldf files that do that job for LaTeX"s own longdesc fixed names). -containersize 41924 -containerchecksum c5af65f4c1d7c19ac5bca84a6a8b465a6d00805164e0224ad3adfa473dbff8604d1ec39958568b3ab611364bf09aa671d277a7458595eac130b121b0972ee32c +containersize 41912 +containerchecksum e2d2503ac4888198c56e9007b20f489a04e31fcd29c946c5504b7d193506fb58e2577c6085be5d9d17c6f5b21ff77208810385c73688468f3988f0b651fb81a4 doccontainersize 6354096 -doccontainerchecksum c193a77791f3304b09ae58faf19490bd68bf129c8ec435c378d3ebce6ecb47c284ab1e1412d10e43dd2e4d5ef60a9fc26088d8c35054f6099fa2675076adb6ce +doccontainerchecksum 15955f17dfe2916081156e1464299b598f1bba780518516f6bee7da55cd1c45e2fc90c27402ba9d8ab4a994ba5ea1675ca9593699792a08407cda5b3a2230908 docfiles size=2364 RELOC/doc/latex/minitoc/INSTALL RELOC/doc/latex/minitoc/README.md details="Readme" language="en" @@ -197606,8 +207215,8 @@ runfiles size=267 RELOC/tex/latex/minitoc/xalx.mld RELOC/tex/latex/minitoc/xalx2.mld RELOC/tex/latex/minitoc/xalx3.mld -catalogue-contact-repository https://github.com/minitoc/minitoc -catalogue-contact-support https://github.com/minitoc/minitoc/issues +catalogue-contact-repository https://github.com/LaTeX-Package-Repositories/minitoc +catalogue-contact-support https://github.com/LaTeX-Package-Repositories/minitoc/issues catalogue-ctan /macros/latex/contrib/minitoc catalogue-license lppl1.3 catalogue-topics toc-etc @@ -197644,24 +207253,39 @@ catalogue-version 1.1 name minted category Package -revision 44855 +revision 65252 shortdesc Highlighted source code for LaTeX relocated 1 longdesc The package that facilitates expressive syntax highlighting in longdesc LaTeX using the powerful Pygments library. The package also longdesc provides options to customize the highlighted source code longdesc output using fancyvrb. -containersize 9496 -containerchecksum 5923b5e87e8bb2cf148a480035b906aab4b03b903308e8e9609f98376f82e23fedd529abca37bb4e9211719160abd9d4488f5c73a0283f67c7f11ee3e1f1d5fb -doccontainersize 803632 -doccontainerchecksum 0187a04f9e42c1bf3e5d961c28b977e527dfc1b57c0f823eda047d5e6c888f3f8da1fed691c8e3128d09b3740deb1b324baa607b9abc20a4fe47ea0a29915e90 -docfiles size=200 - RELOC/doc/latex/minted/Makefile +depend catchfile +depend etoolbox +depend fancyvrb +depend float +depend framed +depend fvextra +depend graphics +depend ifplatform +depend kvoptions +depend lineno +depend pdftexcmds +depend tools +depend upquote +depend xcolor +depend xstring +containersize 10028 +containerchecksum faf543c7f48371cca2a4af7d1e4e1e9b16c13673908417ec982d773dac561ab9e467f79bed230f5c0e359fc82c5cfff1f83e18cb6261279943d1e5a2f117ea2f +doccontainersize 837736 +doccontainerchecksum 41640837e53d5b9cdce55a8f29707fe4f654da19813efbc1770df39b8f00aabdf600032dd504a8cebe23b4ef91e226014a94e031c52d0458f0684c5a53bd276a +docfiles size=211 RELOC/doc/latex/minted/README details="Readme" RELOC/doc/latex/minted/minted.pdf details="Package documentation" -srccontainersize 44376 -srccontainerchecksum 1595aac2da1fc9c7b9e50c92fd12eda866fc35e884e335b1f4883188a4b0f9603a39cffa252cc1bb11ffd4a67e16a80b05c5ecf2cd7440c50f0605e5fc44e302 -srcfiles size=49 +srccontainersize 46460 +srccontainerchecksum 384af78dba5447f7169804597afba5b42f8860cabe691e2490d90248ed798880d11471e8cad7ede8a4b1dbaf7b9684dea05ae54719c7637b8f5b6d953fd0ba98 +srcfiles size=52 + RELOC/source/latex/minted/Makefile RELOC/source/latex/minted/minted.dtx RELOC/source/latex/minted/minted.ins runfiles size=15 @@ -197671,12 +207295,12 @@ catalogue-also texments verbments catalogue-contact-repository https://github.com/gpoore/minted catalogue-ctan /macros/latex/contrib/minted catalogue-license lppl1.3 -catalogue-topics listing -catalogue-version 2.5 +catalogue-topics listing synt-hlt +catalogue-version 2.7 name mintspirit category Package -revision 32069 +revision 64461 shortdesc LaTeX support for MintSpirit font families relocated 1 longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -197685,10 +207309,10 @@ longdesc designed by Hirwen Harendal. MintSpirit was originally designed longdesc for use as a system font on a Linux Mint system. The No. 2 longdesc variant provides more conventional shapes for some glyphs. execute addMap mintspirit.map -containersize 1105488 -containerchecksum 0155fde1eddb9558959c260334ab1d5489ca5415b1f7afb687308feb67f6951932bdfcc2e59e6cd3a4b34449f129dc1eb53730b75d60347bf7e2647a18cbadb1 -doccontainersize 308404 -doccontainerchecksum 54211f0e40fcd0e3c248be16b647462cbe3e3953fbc6ab050634e6a9455b5d52157b77a49fa96c707e3a65c088a92e7e24e86359cfdfa141d48a0ba5b2bfb682 +containersize 1105472 +containerchecksum 18167b9d0b5c167e2679cfb135812e3cbc20a90a182acb3eef15a54f4029298ebb39f6db626b5cbd8368389c9f0656f7575eb4f1970fd242d77d976762ca8d5b +doccontainersize 308412 +doccontainerchecksum 8a7855b5cd117a5a11eda118b8a4b08eff4183a427655c501c5e3c40e1e9617397d58e6622058187a48d04948fad9164b866e58c76080404d7bdf4ff9fbc4d9b docfiles size=84 RELOC/doc/fonts/mintspirit/MintSpirit-Cat.pdf RELOC/doc/fonts/mintspirit/OFL.txt @@ -198248,8 +207872,8 @@ runfiles size=1255 RELOC/tex/latex/mintspirit/mintspirit2.sty catalogue-contact-home http://arkandis.tuxfamily.org/adffonts.html catalogue-ctan /fonts/mintspirit -catalogue-license ofl -catalogue-topics font font-sans font-otf font-type1 +catalogue-license ofl lppl +catalogue-topics font font-body font-sans font-proportional font-otf font-type1 font-supp font-t1enc name minutes category Package @@ -198292,38 +207916,38 @@ catalogue-version 1.8f name mismath category Package -revision 56949 +revision 66391 shortdesc Miscellaneous mathematical macros relocated 1 longdesc The package provides some mathematical macros to typeset: -longdesc mathematical constants e, i, pi in upright shape -longdesc (automatically) as recommended by ISO 80000-2, vectors with -longdesc beautiful arrows and adjusted norm, some standard operator -longdesc names, improved spacings in mathematical formulas, systems of -longdesc equations and small matrices, displaymath in double columns for -longdesc long calculations. -containersize 2784 -containerchecksum 68bfec9f2b2d88d248416c43368831f76a8b5700252cd2adb4b7dbc0ca05d66243d1e8c8f587bc39da32f3f0db00be60a7f07047af2484ec9227055325a62922 -doccontainersize 531316 -doccontainerchecksum 70d308ce935a64573b9b9e96b0cb158518a61748c05ab79d9abb0445043ee3343b18d5babe5c3436f42d1e277cb374fbf40c470e85ab99dcf8da841bf0918bd8 -docfiles size=131 +longdesc mathematical constants e, i, p in upright shape (automatically) +longdesc as recommended by ISO 80000-2, vectors with beautiful arrows +longdesc and adjusted norm, some standard operator names, improved +longdesc spacings in mathematical formulas, systems of equations and +longdesc small matrices, displaymath in double columns for long +longdesc calculations. +containersize 3740 +containerchecksum e0d0362d551ed3c5c97abf2313bf6a39edfdf2c41069b8ccdf034d55d1b3eb4905c1befc1d160e987fa1c23a74038af4992197ba8636d4ffaa669a23ca9e4f10 +doccontainersize 237072 +doccontainerchecksum 1bf85476e5be486586593059e2397f2523cc5f802fa145c7c308a8a0ebaa563a25a2e7ad3ce8eac956612017af1166125dba92d862d8817e8534dbe428b61d63 +docfiles size=67 RELOC/doc/latex/mismath/README.md details="Readme" RELOC/doc/latex/mismath/mismath.pdf details="Package documentation" -srccontainersize 14616 -srccontainerchecksum 938131fb63838e1ab7e2cae20d037c3cc24d22e152cad295c227e7fe12a3b4cfb2ccdaa0a1b3753c63071d253ebbb8f26c2ed7fa1056d4de517317c3fb3bee34 -srcfiles size=12 +srccontainersize 19892 +srccontainerchecksum 9d98fde480d86cc406e7e2af792143cf63abb9b99f57bc459a06c3062612810111cbf67bf328846ead6ac367dc5ef992e9f7b885f8c04c3b550c276b9536bfda +srcfiles size=17 RELOC/source/latex/mismath/mismath.dtx RELOC/source/latex/mismath/mismath.ins -runfiles size=2 +runfiles size=3 RELOC/tex/latex/mismath/mismath.sty catalogue-ctan /macros/latex/contrib/mismath catalogue-license lppl1.3 catalogue-topics maths -catalogue-version 1.8 +catalogue-version 2.7 name missaali category Package -revision 58771 +revision 61719 shortdesc A late medieval OpenType textura font relocated 1 longdesc This package contains the free OpenType Textura font Missaali @@ -198340,10 +207964,10 @@ longdesc of Lombardic initials. As modern typesetting algorithms are not longdesc intended for creating 15th century style layout, the package longdesc contains a XeLaTeX style file that makes it easier to achieve longdesc the classic incunabula look. -containersize 85812 -containerchecksum a077053382e5ea428b274239732f8bac2a4b943e19d40110df76d19499768e12f47c37f7b9d132cbe2023821fe82d4667b414b9114cdfb23df9534bdab2b5214 -doccontainersize 14130560 -doccontainerchecksum 2ba1713de8741c0c01eac1e35ebfbf544baeb2e92ffc587960c969e0ca01a141fcf983e99796e239cfe639ab4ab686875393f12649f0528024c0779a8f549893 +containersize 85820 +containerchecksum 552f53302060b3f4c764a669feea4fe1dbadfa3abf53c226f9fde2d0e876bc8992ff2dbd4be6cd3e261ab0e01ed4d1ad2b5a38c2cfb780c4fc099a79ae52b46f +doccontainersize 14130568 +doccontainerchecksum c80c201b7d3fa5808bc337415e86fe7e009ceccaf8020e587fae72f7024452f7c02b65ce48b2e8543c9796e8b3ea6431e0b8a5f1dc25b5adbd6f2ae7146e75a4 docfiles size=3752 RELOC/doc/fonts/missaali/MANIFEST-Missaali.txt RELOC/doc/fonts/missaali/Missaali.glyphs @@ -198366,7 +207990,7 @@ runfiles size=39 RELOC/tex/latex/missaali/missaali.sty catalogue-ctan /fonts/missaali catalogue-license ofl lppl1.3 -catalogue-topics font-otf font-archaic +catalogue-topics font-otf font-gothic font-medieval catalogue-version 2.0 name mkgrkindex @@ -198432,15 +208056,6 @@ containerchecksum 8856521f8102263a9ab485ce3f9397752576780ee50f466f4d9690cecefc3b binfiles arch=armhf-linux size=1 bin/armhf-linux/mkgrkindex -name mkgrkindex.i386-cygwin -category Package -revision 14431 -shortdesc i386-cygwin files of mkgrkindex -containersize 340 -containerchecksum 1b49e4391a305be8be23e101931d1e09a6c81e1540075c30defd0b1c75515c10109ecba1f70c21da385d1fa4aa63da6b82c19409dc51b30dd4b146a405d0f35b -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mkgrkindex - name mkgrkindex.i386-freebsd category Package revision 16472 @@ -198486,14 +208101,14 @@ containerchecksum dd98579cffdabe6cb99aea06e3fcd1471b7fc87f75626f19e08c83797486ed binfiles arch=universal-darwin size=1 bin/universal-darwin/mkgrkindex -name mkgrkindex.win32 +name mkgrkindex.windows category Package -revision 15404 -shortdesc win32 files of mkgrkindex -containersize 688 -containerchecksum 4734cda199a26b57fc7a34e677fb2f77d9cfb5df82a6bbf6f8d3aa1ccda733c5c7895ada151d79162bf8d851e6f6d24088d82e6b5f975fb43889d66547b7d4ae -binfiles arch=win32 size=1 - bin/win32/mkgrkindex.exe +revision 65891 +shortdesc windows files of mkgrkindex +containersize 2308 +containerchecksum 4a36ce2ba70cbb9a1c2f0845a0da2d41901fdc365e3377cd6d9b8fe4a078467953ba4bebb47638caee82781e015fff6ec9c79d3f449e65a5e6fa9b95e17474b5 +binfiles arch=windows size=2 + bin/windows/mkgrkindex.exe name mkgrkindex.x86_64-cygwin category Package @@ -198616,15 +208231,6 @@ containerchecksum 2378ecad1af32d83af57b71ee47235bf954d2185d44c0575f411939afc770a binfiles arch=armhf-linux size=1 bin/armhf-linux/mkjobtexmf -name mkjobtexmf.i386-cygwin -category Package -revision 25941 -shortdesc i386-cygwin files of mkjobtexmf -containersize 340 -containerchecksum d33a99fc7b4ec27d5436b40df185fed95e8d0d465ad5f414d4ac9e1c9f2f34c3653077c09b391b3135a5f75d9da44ea4c5177b965b81bbc57d89c415732cdf1d -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mkjobtexmf - name mkjobtexmf.i386-freebsd category Package revision 16472 @@ -198670,14 +208276,14 @@ containerchecksum 4365332ed54bd84874ff467c567d931e2b0de3fc20c358e5d57d966d8fcaa6 binfiles arch=universal-darwin size=1 bin/universal-darwin/mkjobtexmf -name mkjobtexmf.win32 +name mkjobtexmf.windows category Package -revision 15404 -shortdesc win32 files of mkjobtexmf -containersize 688 -containerchecksum 5daa699bb75b1b46da97c415dc57b7999a9f3e6e7f1abe2c3e7a9d254a604368dba8ff7b2b69dc91fa12777fdc3f4f2c1da2b426d535137109b26816f5dd6c6b -binfiles arch=win32 size=1 - bin/win32/mkjobtexmf.exe +revision 65891 +shortdesc windows files of mkjobtexmf +containersize 2308 +containerchecksum 4781f20ed088968702bea6b6675e7c84f2f5f53f02f23a37369c623219390437d6f8ce4ec953949820c23f3ca9cc8b2f130a388ef8aaba72b304c7350989824b +binfiles arch=windows size=2 + bin/windows/mkjobtexmf.exe name mkjobtexmf.x86_64-cygwin category Package @@ -198814,15 +208420,6 @@ containerchecksum 0e5cbe8de9409ab34e5d7d72cd1a92def6ca2088b14d0bc759a4db7b305103 binfiles arch=armhf-linux size=1 bin/armhf-linux/mkpic -name mkpic.i386-cygwin -category Package -revision 33688 -shortdesc i386-cygwin files of mkpic -containersize 336 -containerchecksum b429cd618fc1c9ad1578765a14569ddef5c5e03873a0ad81a95af9c41edc4352e1657a709a53fa540b863489c4ba6d5dc6426fc2a4adaffa01c8e15a5a9ca490 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mkpic - name mkpic.i386-freebsd category Package revision 33688 @@ -198868,14 +208465,14 @@ containerchecksum c1319ed3dc6bd9fa6fad24ae78b4163e327ac6ec4aed22bb62f8a717f1382e binfiles arch=universal-darwin size=1 bin/universal-darwin/mkpic -name mkpic.win32 +name mkpic.windows category Package -revision 33688 -shortdesc win32 files of mkpic -containersize 680 -containerchecksum 5116dc2bb077972e22e517f967b44290161fe08957f4948d202b6d530d08f4d3a19e20998ff150af7510c1f830c64f497353daf095d8d2de5437b0eb1397f8e2 -binfiles arch=win32 size=1 - bin/win32/mkpic.exe +revision 65891 +shortdesc windows files of mkpic +containersize 2304 +containerchecksum 6377614844864544a04523bde32cb96a72462b3c8c8a0dbe91ee5cbfb6f1b5142ca3264bc6cecfb3e1a60113a009fa005b4eb2d8559a37a1fbc4c3a39fa5671a +binfiles arch=windows size=2 + bin/windows/mkpic.exe name mkpic.x86_64-cygwin category Package @@ -198946,7 +208543,7 @@ catalogue-topics gen-paper humanities name mlacls category Package -revision 56878 +revision 60508 shortdesc LaTeX class for MLA papers relocated 1 longdesc In the United States, secondary and undergraduate students are @@ -198955,11 +208552,11 @@ longdesc Modern Language Association (MLA) for typewritten essays, longdesc research papers and writings. This package provides a simple, longdesc straightforward LaTeX class for composing papers almost longdesc perfectly adherent to the MLA style guide. -containersize 2940 -containerchecksum 08ca934862fed7674f4b8a77ffbc1e42a043777e6baf8b1cf52ce6cde912899bf92d74df52bb35dc6cde64711b8d375266695d1eb4cb301204d90ad27fbc2a86 -doccontainersize 3028736 -doccontainerchecksum 687c4beca93574ee7687d7586eda818d94538782acb9b7cca98ddfae6921af5c53ade7b87a72006d8271bb517d02c7a5575043ad8c94e4894d53c58e2c6f6d0f -docfiles size=1381 +containersize 2920 +containerchecksum 44bb40283c118c638c3cd1b6b7595b6922225ff99dbce4b35c5579377c983c860e275bb7ddd76ce666d1907f59ec6e3dde78491764d4712addd3e5441b4832ec +doccontainersize 3038136 +doccontainerchecksum 926a815427e1f66fc67357e962a7ccef39de82b082e045041b8c44d9ea444005b176ae7251b39763e03ebfc7babff0313f4b3f450e76cea5c4e21efc2171be96 +docfiles size=1397 RELOC/doc/latex/mlacls/BUGS.md RELOC/doc/latex/mlacls/LICENSE RELOC/doc/latex/mlacls/README.md details="Readme" @@ -198968,8 +208565,8 @@ docfiles size=1381 RELOC/doc/latex/mlacls/mla-example.pdf RELOC/doc/latex/mlacls/mla-example.tex RELOC/doc/latex/mlacls/mla.pdf details="Package documentation" -srccontainersize 10056 -srccontainerchecksum 46d2f1929f334932409e3a9e04a698424ebba99337c4ce48d4dd2c8d63f828ad9c7b81dc4e550e69ef5ba2d17d359a0e1e4360db7175ecca63456aa1c1213c56 +srccontainersize 10080 +srccontainerchecksum 884fc51a22c9e3fc996516c49e250bb08b4d5f5f7c19ff6830b45640d62578d3328b4d5179f750eec2d8086eebe96284d7347f223778674e9250625c36d1dc6a srcfiles size=10 RELOC/source/latex/mlacls/mla.dtx RELOC/source/latex/mlacls/mla.ins @@ -198981,7 +208578,7 @@ catalogue-contact-repository https://gitlab.com/ssterling/mlacls catalogue-ctan /macros/latex/contrib/mlacls catalogue-license lppl1.3c catalogue-topics class gen-paper humanities -catalogue-version 0.9 +catalogue-version 1.0 name mleftright category Package @@ -199818,7 +209415,7 @@ catalogue-version 1.2 name mltex category Package -revision 57186 +revision 62145 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 @@ -199846,10 +209443,10 @@ depend tex-ini-files depend unicode-data execute AddFormat name=mllatex engine=pdftex patterns=language.dat options="-translate-file=cp227.tcx -mltex *mllatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig execute AddFormat name=mltex engine=pdftex options="-translate-file=cp227.tcx -mltex mltex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain -containersize 6448 -containerchecksum 0b3fe440055cc4c943fe8cdee93997718a3625782c5b2962cb514011f2038ad14518f7cffc55dee41f0a57f7401b8f2f493631a2b9cbeb806ae75ae80269f3b5 +containersize 6452 +containerchecksum e04f33b83474e58c4725abbba21ae56659920ad2929faba7f25b47befeeb7e207e36888e1dbf7260ecc95c126e1732f6f5dced3d277db7c3889f2b08590b04dc doccontainersize 8676 -doccontainerchecksum a3b962871878f3f34c2d419fa9ae1c27518f3901212796d32649b5524f49fa103a71f46403726b9568ac358ab98afe7b23356a0f2d2d8592c0b84cfc186d5f53 +doccontainerchecksum e9d5a1cfdc6183bf99ef369b447c73e9ec5926952a80a75708db4fc6343ffc1a10d599276c13f295005f7c8c56e2e35ad9edc9dee3ee06928fa8c7b267d82bbf docfiles size=9 texmf-dist/doc/latex/mltex/README texmf-dist/doc/latex/mltex/mltex.txt @@ -199907,16 +209504,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/mllatex bin/armhf-linux/mltex -name mltex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of mltex -containersize 340 -containerchecksum a103fdc8ab5c92ee88226a6d659a9c80fffde6e57bc1e584964c5f1211675da49139b60d27ac3e7113afad8c33af59e7948dbbd809264a237095e85cfba2bb44 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/mllatex - bin/i386-cygwin/mltex - name mltex.i386-freebsd category Package revision 16472 @@ -199967,15 +209554,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/mllatex bin/universal-darwin/mltex -name mltex.win32 +name mltex.windows category Package -revision 57883 -shortdesc win32 files of mltex -containersize 884 -containerchecksum ba207d5305ff301280f82b826b6a91f58cbf59a64276a141961c07c69363dbe5935e63912a72cfd39ff7fe32b96efd24f0116943331b6f52ef1c5f4d945dbb6f -binfiles arch=win32 size=2 - bin/win32/mllatex.exe - bin/win32/mltex.exe +revision 65891 +shortdesc windows files of mltex +containersize 2380 +containerchecksum 82805393c0d09f7a6a7a572faab22ec2edc8a8b051f4bf8a60872423bbef18acda694c71d4bf83b70b3df601aab7f273d5312ae6b55411b396406a79b5644233 +binfiles arch=windows size=4 + bin/windows/mllatex.exe + bin/windows/mltex.exe name mltex.x86_64-cygwin category Package @@ -200135,22 +209722,22 @@ catalogue-version 1.03 name mnotes category Package -revision 35521 +revision 63406 shortdesc Margin annotation for collaborative writing relocated 1 longdesc The package provides a flexible mechanism for annotating, and longdesc commenting upon, collaboratively-written documents. -containersize 2008 -containerchecksum f95e4cbe33ec00e62aab2b3b9cdddaeceb762ccc34b736b8e2c0d658b3e871134d0a0b8805470f8c4e148057c513dad9cbbf6c1d5076843b2b2fdce03c84dd09 -doccontainersize 211560 -doccontainerchecksum 58c3d8def0ee368f1cb87567aab160b4af10de7137de1901f4c6428531f1d080146ee5cb7f0be73a09216d0aa5580bf4baa8cbcca4c7801a322731f88cadf2ec -docfiles size=54 - RELOC/doc/latex/mnotes/Makefile +containersize 2160 +containerchecksum 834350f6b4bcaa9b84c18d526072ebcbb260c501b08fb81fd40d3d4ebe015392ec94f6dfcb0fd751716f213afbb4615bfa3e1c729eca416c9d499d0eb784686c +doccontainersize 212872 +doccontainerchecksum 198f7b4e402a71e6617a1c7a92a54fd2a742c8c1748bfa17f71102a833b1fbb656dd5b85f7f7a58bfe05588525e07cf978278d6758448c4dd69d48275eb0be01 +docfiles size=53 RELOC/doc/latex/mnotes/README details="Readme" RELOC/doc/latex/mnotes/mnotes.pdf details="Readme" -srccontainersize 5448 -srccontainerchecksum 4c0a9077711c44601ab9933cfd46b1ed8c5bb1866fb40ac0707100ed9173bdc67d59f7aab91972e6150ed65e385583dfd9851479c8f0cd651f61a6ab6fe39946 -srcfiles size=5 +srccontainersize 6476 +srccontainerchecksum db27a6007ca0bc687bef6298246d5a3a72c232c8728f3dfc8d0f8c8fd62990d98d9e13b57916ac1a4562cc521610f2625f90172b76afcd4b5600e7c571b9a1ef +srcfiles size=7 + RELOC/source/latex/mnotes/Makefile RELOC/source/latex/mnotes/mnotes.dtx RELOC/source/latex/mnotes/mnotes.ins runfiles size=2 @@ -200158,7 +209745,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/mnotes catalogue-license lppl1.3 catalogue-topics marginal -catalogue-version 0.8 +catalogue-version 0.9 name mnras category Package @@ -200528,7 +210115,7 @@ catalogue-version 1.0.1 name moderncv category Package -revision 57496 +revision 62128 shortdesc A modern curriculum vitae class relocated 1 longdesc The class provides facilities for typesetting modern @@ -200546,11 +210133,11 @@ depend microtype depend tools depend url depend xcolor -containersize 30884 -containerchecksum 5afe854478a689c648695480bcece97a3c940e1be7cd0e32f3e1ddb1240e823ffae82f53a5b6a127c62f30a1e339f5dcaf9f7ac8b5da361fd3de80feca719614 -doccontainersize 245668 -doccontainerchecksum 032a9ccb6e91fea7db129146292f3e59866019729f056e4f9e6bcf8db42a0d81a181b214240689fc6643d49a63580e2e8c61e0b9a47562f04af0d24f14bd37b3 -docfiles size=116 +containersize 34180 +containerchecksum 988cc5f400af4ecdfc0730a63d7f2a13fde81b9120f198622a5e2d145ca94e1d5bc952e261ef2f4cacefda8a23626119975fd1e00b44f4a66b1fbb7f4c011d40 +doccontainersize 246664 +doccontainerchecksum 9527fa84fffc4eb2ac92dab59cf0e5ae87a6f5befd4ed05acdd85cc7050dcc669f8b814ef928e69bb1c1e8bb3bd774aca1f85acf6b750a1c9555a3165eba0281 +docfiles size=117 RELOC/doc/latex/moderncv/CHANGELOG RELOC/doc/latex/moderncv/KNOWN_BUGS RELOC/doc/latex/moderncv/LICENSE.txt @@ -200561,7 +210148,7 @@ docfiles size=116 RELOC/doc/latex/moderncv/picture.jpg RELOC/doc/latex/moderncv/publications.bib RELOC/doc/latex/moderncv/template.tex -runfiles size=81 +runfiles size=87 RELOC/tex/latex/moderncv/moderncv.cls RELOC/tex/latex/moderncv/moderncvbodyi.sty RELOC/tex/latex/moderncv/moderncvbodyii.sty @@ -200586,9 +210173,12 @@ runfiles size=81 RELOC/tex/latex/moderncv/moderncvheadiv.sty RELOC/tex/latex/moderncv/moderncvheadv.sty RELOC/tex/latex/moderncv/moderncvheadvi.sty + RELOC/tex/latex/moderncv/moderncviconsacademic.sty RELOC/tex/latex/moderncv/moderncviconsawesome.sty RELOC/tex/latex/moderncv/moderncviconsletters.sty RELOC/tex/latex/moderncv/moderncviconsmarvosym.sty + RELOC/tex/latex/moderncv/moderncviconssymbols.sty + RELOC/tex/latex/moderncv/moderncviconstikz.sty RELOC/tex/latex/moderncv/moderncvskillmatrix.sty RELOC/tex/latex/moderncv/moderncvstylebanking.sty RELOC/tex/latex/moderncv/moderncvstylecasual.sty @@ -200603,8 +210193,8 @@ catalogue-contact-home https://github.com/moderncv/moderncv catalogue-contact-repository https://github.com/moderncv/moderncv.git catalogue-ctan /macros/latex/contrib/moderncv catalogue-license lppl1.3c -catalogue-topics cv class -catalogue-version 2.1.0 +catalogue-topics cv class doc-templ +catalogue-version 2.3.1 name modernposter category Package @@ -200668,7 +210258,7 @@ catalogue-version 0.11 name modes category Package -revision 56303 +revision 61719 shortdesc A collection of Metafont mode_def's relocated 1 longdesc The modes file collects all known Metafont modes for printing @@ -200680,9 +210270,9 @@ longdesc definitions that make \specials identifying the mode in longdesc Metafont's GF output, and put coding information and other longdesc Xerox-world information in the TFM file. containersize 27320 -containerchecksum 09318fcdb58e5175882fd7a2750ae71322d0be227a2131e05c8b9d20879260c9ac906a735582c1fc8229f3ad4e7df7b71d6a2a6ba9b82c653463947d59f9116f -doccontainersize 275948 -doccontainerchecksum dd7d78b8b355d7d056d288c0026d83115878abf91ceb183b48a3505620f0be4c8ef04ed0259a8f5a079c6191f33fc1331e9a3b1660b9312d165914b9176524e8 +containerchecksum 86931543910145093d3141fd40512ef6c1a99901a757d178d8ba592761c25638383f9511f4937af657c414642341c05ad6278d871e5d397117e03cf86706a9ac +doccontainersize 275952 +doccontainerchecksum 4ba301dce255d22c23cd732e6c1b1e887a96918d594a06f8386563b0ca46fce015c0cdf17aecb2fb13211360a7db24843ec99664b048a53ed0ac76a1a4188c76 docfiles size=78 RELOC/doc/fonts/modes/ChangeLog RELOC/doc/fonts/modes/GNUmakefile @@ -200693,7 +210283,7 @@ docfiles size=78 RELOC/doc/fonts/modes/modes.pdf details="Package documentation" runfiles size=24 RELOC/fonts/source/public/modes/modes.mf -catalogue-contact-support https://mail.math.utah.edu/mailman/listinfo/tex-fonts +catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /fonts/modes catalogue-license pd catalogue-topics font-devel @@ -205273,28 +214863,28 @@ catalogue-version 1.03 name moodle category Package -revision 57683 +revision 65672 shortdesc Generating Moodle quizzes via LaTeX relocated 1 longdesc A package for writing Moodle quizzes in LaTeX. In addition to longdesc typesetting the quizzes for proofreading, the package compiles longdesc an XML file to be uploaded to a Moodle server. -containersize 29392 -containerchecksum b2f992d02b16711eb5a79247d0f0b7b590ab21f419f181dcfec33006e08181f035c502f3a4d473fd211ed391f5d6225f2a91946649911db7af851f97d1ba2da3 -doccontainersize 313796 -doccontainerchecksum 9c609a686d13a8577f672988fa037ec48cc46b4006f7d42070c1411978cce615ace296a10d9a1140671c9972362a4ddcda5ceb80ab35e8b9c0628d90032b53a7 -docfiles size=287 +containersize 37152 +containerchecksum 0a297097f864ed3dc8c9d263a6a3aa8930732679a585aa34e2e5b31852bdfc3cff40118d3b67566816dfeda0f74282a476ad8b5ad793d2c433cf44f41f7c91bf +doccontainersize 421500 +doccontainerchecksum ee40b07bc0ff2ff75f18eeb9ea68dec0a624a1b75b81ac00ea9c5caae3f6232213e1a5ff7028be28372cfc43685f4004059d972176eaa2b18688f16f8ef2ba09 +docfiles size=351 RELOC/doc/latex/moodle/LICENSE RELOC/doc/latex/moodle/README.md details="Readme" RELOC/doc/latex/moodle/moodle.pdf details="Package documentation" + RELOC/doc/latex/moodle/test/check_babel.tex + RELOC/doc/latex/moodle/test/check_polyglossia.tex RELOC/doc/latex/moodle/test/fig/11.PNG RELOC/doc/latex/moodle/test/fig/22.pdf RELOC/doc/latex/moodle/test/fig/3.gif RELOC/doc/latex/moodle/test/fig/4.jpg RELOC/doc/latex/moodle/test/fig/5.jpeg - RELOC/doc/latex/moodle/test/fig/MoodlE_logo.SVG - RELOC/doc/latex/moodle/test/fig/NoodlE_logo.png - RELOC/doc/latex/moodle/test/fig/NoodlE_logo.svg + RELOC/doc/latex/moodle/test/fig/NoodlE_logo.SVG RELOC/doc/latex/moodle/test/latin1ref/test_allornothing-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_autopoints-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_calculated_python-moodle.ref @@ -205305,6 +214895,7 @@ docfiles size=287 RELOC/doc/latex/moodle/test/latin1ref/test_cloze_shortanswer-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_commands-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_description-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_diacritics_and_ligatures-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_environments-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_escaping_right_braces_in_cloze-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_essay-moodle.ref @@ -205315,28 +214906,32 @@ docfiles size=287 RELOC/doc/latex/moodle/test/latin1ref/test_generalfeedback-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_german-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_handout-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_horizontal_spacing-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_htmlonly-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_via_tikz-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_via_tikz_and_svg-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_includegraphics_with_svg-moodle.ref - RELOC/doc/latex/moodle/test/latin1ref/test_macros-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_matching-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_math-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_mathenv-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_minted-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_multi-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_multiple_categories-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_numerical-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_paragraph_breaks-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_penalty-moodle.ref - RELOC/doc/latex/moodle/test/latin1ref/test_point_points-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_points-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_punctuation_and_symbols-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_samepage-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_sanction-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_shortanswer-moodle.ref - RELOC/doc/latex/moodle/test/latin1ref/test_special_characters-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_tags-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_tikz-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_tikz_with_svg-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_tolerance-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_truefalse-moodle.ref + RELOC/doc/latex/moodle/test/latin1ref/test_turkish-moodle.ref RELOC/doc/latex/moodle/test/latin1ref/test_verbatim-moodle.ref RELOC/doc/latex/moodle/test/makefile RELOC/doc/latex/moodle/test/test_allornothing.tex @@ -205350,6 +214945,7 @@ docfiles size=287 RELOC/doc/latex/moodle/test/test_cloze_shortanswer.tex RELOC/doc/latex/moodle/test/test_commands.tex RELOC/doc/latex/moodle/test/test_description.tex + RELOC/doc/latex/moodle/test/test_diacritics_and_ligatures.tex RELOC/doc/latex/moodle/test/test_environments.tex RELOC/doc/latex/moodle/test/test_escaping_right_braces_in_cloze.tex RELOC/doc/latex/moodle/test/test_essay.tex @@ -205360,28 +214956,32 @@ docfiles size=287 RELOC/doc/latex/moodle/test/test_generalfeedback.tex RELOC/doc/latex/moodle/test/test_german.tex RELOC/doc/latex/moodle/test/test_handout.tex + RELOC/doc/latex/moodle/test/test_horizontal_spacing.tex RELOC/doc/latex/moodle/test/test_htmlonly.tex RELOC/doc/latex/moodle/test/test_includegraphics.tex RELOC/doc/latex/moodle/test/test_includegraphics_via_tikz.tex RELOC/doc/latex/moodle/test/test_includegraphics_via_tikz_and_svg.tex RELOC/doc/latex/moodle/test/test_includegraphics_with_svg.tex - RELOC/doc/latex/moodle/test/test_macros.tex RELOC/doc/latex/moodle/test/test_matching.tex RELOC/doc/latex/moodle/test/test_math.tex RELOC/doc/latex/moodle/test/test_mathenv.tex RELOC/doc/latex/moodle/test/test_minted.tex RELOC/doc/latex/moodle/test/test_multi.tex RELOC/doc/latex/moodle/test/test_multiple_categories.tex + RELOC/doc/latex/moodle/test/test_numerical.tex RELOC/doc/latex/moodle/test/test_paragraph_breaks.tex RELOC/doc/latex/moodle/test/test_penalty.tex - RELOC/doc/latex/moodle/test/test_point_points.tex + RELOC/doc/latex/moodle/test/test_points.tex + RELOC/doc/latex/moodle/test/test_punctuation_and_symbols.tex + RELOC/doc/latex/moodle/test/test_samepage.tex + RELOC/doc/latex/moodle/test/test_sanction.tex RELOC/doc/latex/moodle/test/test_shortanswer.tex - RELOC/doc/latex/moodle/test/test_special_characters.tex RELOC/doc/latex/moodle/test/test_tags.tex RELOC/doc/latex/moodle/test/test_tikz.tex RELOC/doc/latex/moodle/test/test_tikz_with_svg.tex RELOC/doc/latex/moodle/test/test_tolerance.tex RELOC/doc/latex/moodle/test/test_truefalse.tex + RELOC/doc/latex/moodle/test/test_turkish.tex RELOC/doc/latex/moodle/test/test_verbatim.tex RELOC/doc/latex/moodle/test/utf8ref/test_allornothing-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_autopoints-moodle.ref @@ -205394,6 +214994,7 @@ docfiles size=287 RELOC/doc/latex/moodle/test/utf8ref/test_cloze_shortanswer-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_commands-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_description-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_diacritics_and_ligatures-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_environments-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_escaping_right_braces_in_cloze-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_essay-moodle.ref @@ -205404,36 +215005,40 @@ docfiles size=287 RELOC/doc/latex/moodle/test/utf8ref/test_generalfeedback-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_german-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_handout-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_horizontal_spacing-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_htmlonly-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_via_tikz-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_via_tikz_and_svg-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_includegraphics_with_svg-moodle.ref - RELOC/doc/latex/moodle/test/utf8ref/test_macros-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_matching-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_math-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_mathenv-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_minted-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_multi-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_multiple_categories-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_numerical-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_paragraph_breaks-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_penalty-moodle.ref - RELOC/doc/latex/moodle/test/utf8ref/test_point_points-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_points-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_punctuation_and_symbols-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_samepage-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_sanction-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_shortanswer-moodle.ref - RELOC/doc/latex/moodle/test/utf8ref/test_special_characters-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_tags-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_tikz-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_tikz_with_svg-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_tolerance-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_truefalse-moodle.ref + RELOC/doc/latex/moodle/test/utf8ref/test_turkish-moodle.ref RELOC/doc/latex/moodle/test/utf8ref/test_verbatim-moodle.ref -srccontainersize 60312 -srccontainerchecksum 3dde72eb7b513695ad3d59dc51bb8f5ba93ed3c2d6d8e90bcbd65e6ec3f86c3ef392eda8537f7a096badf0fa97080b5fb2d61831b38339946b0f4b734ac419b5 -srcfiles size=70 +srccontainersize 75824 +srccontainerchecksum 02754bd2d6ec9ca07e07b3768855cf100d09de057ad7b3605dd7a97574c7f8024028ca882b3b6a1cfa25e49ec40400690ed7e7e1404f0836a9d6158cfec30bca +srcfiles size=93 RELOC/source/latex/moodle/makefile RELOC/source/latex/moodle/moodle.dtx RELOC/source/latex/moodle/moodle.ins -runfiles size=39 +runfiles size=54 RELOC/tex/latex/moodle/moodle.sty catalogue-contact-bugs https://framagit.org/mattgk/moodle/-/issues catalogue-contact-development https://framagit.org/mattgk/moodle @@ -205441,7 +215046,7 @@ catalogue-contact-repository https://framagit.org/mattgk/moodle/-/tree/master catalogue-ctan /macros/latex/contrib/moodle catalogue-license lppl1.3 catalogue-topics exam -catalogue-version 0.9 +catalogue-version 1.0 name moreenum category Package @@ -206390,7 +215995,7 @@ catalogue-version 1.5 name mptopdf category Package -revision 57347 +revision 65952 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 @@ -206403,17 +216008,16 @@ longdesc in macros/pdftex/graphics. depend mptopdf.ARCH depend plain execute AddFormat name=mptopdf engine=pdftex options="-translate-file=cp227.tcx mptopdf.tex" fmttriggers=plain -containersize 38596 -containerchecksum 69181f1facef413b4e2317180f8dba551fe40bb06e6af8d9378319d8cd3fdec985241e632f19888f32b70f16a40d11c66581f7e3c409bc38b7cfad3733cba2fd -doccontainersize 13628 -doccontainerchecksum f0cbd95500324a6b5ca835d62065c83028241e0ce5fa35a313458dc30e6726a21a6d1c267669627061d23f2dd7d7397f471581021e03c817c281cb6efa1d2769 +containersize 37184 +containerchecksum 50f4acccc6db126ed7770fbe33e3925659797387d6d4a856286a32ff0444a234e3575b9be4679c90e60b502ca612f02d8de3a39c3beeff122404e5cbf9168819 +doccontainersize 13756 +doccontainerchecksum aba8f16aed39b0b8dde19eae496f7f811475a2a4ad07b420e9783b305412da8b0bec15569fa0325751f5ba101ab12ba6bf3f83d93cb50328adb5bb222fff8ba0 docfiles size=6 texmf-dist/doc/context/scripts/mkii/mptopdf.man texmf-dist/doc/man/man1/mptopdf.1 texmf-dist/doc/man/man1/mptopdf.man1.pdf -runfiles size=43 +runfiles size=41 texmf-dist/scripts/context/perl/mptopdf.pl - texmf-dist/scripts/context/stubs/mswin/mptopdf.exe texmf-dist/tex/context/base/mkii/supp-mis.mkii texmf-dist/tex/context/base/mkii/supp-mpe.mkii texmf-dist/tex/context/base/mkii/supp-pdf.mkii @@ -206456,15 +216060,6 @@ containerchecksum 100e4342c0287220352c5017750a63a1e225f58ba95dc166ea5d52fcdad04b binfiles arch=armhf-linux size=1 bin/armhf-linux/mptopdf -name mptopdf.i386-cygwin -category Package -revision 18674 -shortdesc i386-cygwin files of mptopdf -containersize 348 -containerchecksum 8cdcccc74b9d816f9089d58f1a51ceba6b452619ca267d0491604b1e50fb06c09d6e7aa618b6dd4f39d2ec2b20239b0551c6f4e9941935ebeaa15493bf2aeb0a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/mptopdf - name mptopdf.i386-freebsd category Package revision 18674 @@ -206510,14 +216105,14 @@ containerchecksum e1db87239f7a3bb48c7c65646f4a0da75c369c402a29ba28441eb35610a0a1 binfiles arch=universal-darwin size=1 bin/universal-darwin/mptopdf -name mptopdf.win32 +name mptopdf.windows category Package -revision 29958 -shortdesc win32 files of mptopdf -containersize 684 -containerchecksum c9084f24dd7e08d0e78a86baf006df23ff668a046b26d8a68971f561e677b7bbffeffb5a0f21a6ac248b87b65bef758f87ba27f803a7a53e1d1de6bbb88729a2 -binfiles arch=win32 size=1 - bin/win32/mptopdf.exe +revision 65891 +shortdesc windows files of mptopdf +containersize 2304 +containerchecksum 35eb0ca823410a804b5a618b22cec4bf680a884c62b4a4c5778f0294d79399f07a56eeaeaaaa562e5d98eae5c54c961b400f9b2c61ba3744b0a19c368cea44e3 +binfiles arch=windows size=2 + bin/windows/mptopdf.exe name mptopdf.x86_64-cygwin category Package @@ -206566,26 +216161,26 @@ binfiles arch=x86_64-solaris size=1 name mptrees category Package -revision 44453 +revision 60929 shortdesc Probability trees with MetaPost relocated 1 longdesc This package provides MetaPost tools for drawing simple longdesc probability trees. One command and several parameters to longdesc control the output are provided. -containersize 3572 -containerchecksum c495bed58639226b0552dff1d2e7c5e97a60ad4fb20cef65cfd873feaeffef4e0b7672a33d310576c042a94d6d27141056e8a56c0bd5d648841b860a3c1919de -doccontainersize 434004 -doccontainerchecksum 38935dd6694e4c731e6ea8e8a1575ac5985a24ad5d1e05d5766168d3b6f82be6e3bde8c57601565be67ebd0d1232191779f973adf5bcb7851154aab3bd6472a6 -docfiles size=112 +containersize 4288 +containerchecksum 8eb172f4051125fbe7d812520455e3a37888508754abe8abd539e84a1105575c32c2dbc850dc562a2dfab34811614e527cfa089c9de738b6ac7211f923c61929 +doccontainersize 114080 +doccontainerchecksum 2e7c3837ce93b67bd1604451792cc54842bec27b3ebb6c56b2a9b9d702c3fa999ecb3a2836076c39adb30dabf833a507974e9dfaf19c9166bbcd3428487cf0a8 +docfiles size=50 RELOC/doc/metapost/mptrees/README.md details="Readme" RELOC/doc/metapost/mptrees/mptrees-doc.pdf details="Package documentation" RELOC/doc/metapost/mptrees/mptrees-doc.tex -runfiles size=3 +runfiles size=4 RELOC/metapost/mptrees/mptrees.mp catalogue-ctan /graphics/metapost/contrib/macros/mptrees catalogue-license lppl1.3 -catalogue-topics diagram-maths maths probability -catalogue-version 17.06 +catalogue-topics diagram-maths maths probability graphics-mpost +catalogue-version 21.11 name ms category Package @@ -206626,7 +216221,7 @@ catalogue-topics collection name msc category Package -revision 15878 +revision 63291 shortdesc Draw MSC diagrams relocated 1 longdesc The package should be useful to all people that prepare their @@ -206635,27 +216230,24 @@ longdesc their texts. The package is not an MSC editor; it simply takes longdesc a textual description of an MSC and draws the corresponding longdesc MSC. The current version of the MSC macro package supports the longdesc full MSC2000 language. -containersize 17840 -containerchecksum cfd66ed08d144698d11905ddf987f44782752e412d5ecb0a85fc27e569cedd4918ac05f19d986e0fa6e17065bf871e805094251eebd5d27653047d436541600d -doccontainersize 413856 -doccontainerchecksum 9485a70d19aa2754ae4e12e4311d4a03367c57a7bbba69cfc50a38aa50d6d9160aeb812c4a63b23f7da0e726b07cf836ac9df7b66b4c847b9cad0e7d66aff23b -docfiles size=151 +containersize 20152 +containerchecksum 7693c105f3a896e842796c0119fbcc692a1d495f394de5e2cbb9df7164b4735723504980e1ca53b76aa152a2b779c06f535542143512882f411eea40814a9d5d +doccontainersize 251376 +doccontainerchecksum 9f8b33812702f2d9307e7f1a20c091f05da4c03220abbe8d15f3e2a3ad9871fd0806fe45f29557a71953da3c57a3f0a08d21e93570a99542b9d3ea605398e63b +docfiles size=115 RELOC/doc/latex/msc/COPYRIGHT.txt - RELOC/doc/latex/msc/README details="Package Readme" - RELOC/doc/latex/msc/maintenance.pdf details="Maintenance manual" - RELOC/doc/latex/msc/maintenance.tex - RELOC/doc/latex/msc/manual.pdf details="User manual" - RELOC/doc/latex/msc/manual.tex - RELOC/doc/latex/msc/refman.pdf details="Reference manual" - RELOC/doc/latex/msc/refman.tex -runfiles size=29 - RELOC/bibtex/bib/msc/biblio.bib + RELOC/doc/latex/msc/README.txt details="Package Readme" + RELOC/doc/latex/msc/biblio.bib + RELOC/doc/latex/msc/manual-macros.tex + RELOC/doc/latex/msc/msc.pdf details="User manual" + RELOC/doc/latex/msc/msc.tex +runfiles size=30 RELOC/tex/latex/msc/msc.sty catalogue-contact-home http://satoss.uni.lu/mscpackage/ catalogue-ctan /macros/latex/contrib/msc -catalogue-license lppl -catalogue-topics comp-net -catalogue-version 1.16 +catalogue-license lppl1.3 +catalogue-topics comp-net pgf-tikz +catalogue-version 2.00 name msg category Package @@ -206727,7 +216319,7 @@ catalogue-topics psychology journalpub bibtex-sty apa name msu-thesis category Package -revision 46106 +revision 65462 shortdesc Class for Michigan State University Master's and PhD theses relocated 1 longdesc This is a class file for producing dissertations and theses @@ -206737,26 +216329,34 @@ longdesc Dissertations. The class should meet all current requirements longdesc and is updated whenever the university guidelines change. The longdesc class is based on the memoir document class, and inherits the longdesc functionality of that class. -containersize 8512 -containerchecksum e05cdf909d11616692cb175b117a134f1eeae10cd9c62058847cca383b86eb99de675f4e534c3b9d378dbebef10312b773f111de46becf8e4f3c840faaf5555c -doccontainersize 433408 -doccontainerchecksum 1b3c8266ff9dbd2c757365d30772057433e1ddcb04c83a9f98e55c9c4707a380e5d289496887da9adb922f96e7f4c64b9d3828e2a758aa38fba31e59c39c7d1c -docfiles size=126 - RELOC/doc/latex/msu-thesis/README details="Readme" +containersize 12960 +containerchecksum 918bfbcc2bec35581fc50bdd6e7ef10e5b8fd3f47d9eec896b5a0d18aaf5a953da0e46b20d0d19e03fd2a979a950e34f6956af85b19db2a6de74d1f9d91575d4 +doccontainersize 481040 +doccontainerchecksum a58f8c2103da08dbd04ee8310ae349d88fbe86a7126a0dc6bdcf44d2c91c7bb2aa453ea3830d737fb21c99de888453d83e24ba108a8f0fc17f2ec5aaede1d7ea +docfiles size=141 + RELOC/doc/latex/msu-thesis/README.md details="Readme" + RELOC/doc/latex/msu-thesis/docs/msu-thesis.tex RELOC/doc/latex/msu-thesis/msu-thesis.pdf details="Package documentation" - RELOC/doc/latex/msu-thesis/msu-thesis.tex - RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-chapterbib-testfile.pdf + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-chapterbib-testfile.tex + RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.pdf details="Example of use" RELOC/doc/latex/msu-thesis/samples/MSU-thesis-template.tex RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.bib RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.pdf RELOC/doc/latex/msu-thesis/samples/MSU-thesis-testfile.tex - RELOC/doc/latex/msu-thesis/samples/unified.bst -runfiles size=7 + RELOC/doc/latex/msu-thesis/samples/chap1bib.tex + RELOC/doc/latex/msu-thesis/samples/chap2bib.tex + RELOC/doc/latex/msu-thesis/samples/chap3bib.tex + RELOC/doc/latex/msu-thesis/samples/chap4bib.tex +runfiles size=11 RELOC/tex/latex/msu-thesis/msu-thesis.cls +catalogue-contact-bugs https://github.com/amunn/msu-thesis/issues +catalogue-contact-home https://amunn.github.io/msu-thesis +catalogue-contact-repository https://github.com/amunn/msu-thesis catalogue-ctan /macros/latex/contrib/msu-thesis catalogue-license lppl1.3 -catalogue-topics dissertation -catalogue-version 2.8 +catalogue-topics class dissertation doc-templ std-conform +catalogue-version 4.0b name mtgreek category Package @@ -206825,18 +216425,18 @@ catalogue-version 1.02 name mugsthesis category Package -revision 34878 +revision 64259 shortdesc Thesis class complying with Marquette University Graduate School requirements relocated 1 longdesc The bundle offers a thesis class, based on memoir, that longdesc complies with Marquette University Graduate School longdesc requirements. -containersize 2988 -containerchecksum 26a40992f66bead658130b6a649e7da550c85a92dbf9bf5778d4987e06f3a5f7d168eeb77dab3e81c5f328d252be345265c2326760d861fff35fb4ffd1e3a4b0 -doccontainersize 357356 -doccontainerchecksum 2f9d069468c3ea0b420465200abafade7ec7c52cb22bee74865da5fb06064eeae47709a1ff60868bfbf675a4397d828e02581defd338ef3e79e179c0ae7cf7ef -docfiles size=103 - RELOC/doc/latex/mugsthesis/README details="Readme" +containersize 3040 +containerchecksum f86bfd4362af798bc435bf6ad1f6ed6f8cbafa61a4bf273a196160bedff21d349c1d4294e63de5a2c925ec3f5918dbb6ac4f5c8cd41785ee715cbc4e903aa226 +doccontainersize 394520 +doccontainerchecksum 18b239e98e97512030a55a6a9d071e2b53ac34147f121d14687dd2e68acf3cba3bc7c36c7b64dd3221121a37cc7665cc71ce0012218ca2f8a28eefd6ef46bc3d +docfiles size=109 + RELOC/doc/latex/mugsthesis/README.md details="Readme" RELOC/doc/latex/mugsthesis/mugsthesis.pdf details="Package documentation" RELOC/doc/latex/mugsthesis/sample/abstract.tex RELOC/doc/latex/mugsthesis/sample/acknowledgments.tex @@ -206847,45 +216447,54 @@ docfiles size=103 RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.pdf RELOC/doc/latex/mugsthesis/sample/mugsthesis_sample.tex RELOC/doc/latex/mugsthesis/sample/refs.bib -srccontainersize 7696 -srccontainerchecksum bbbd79aef8db604e5349cfcac7fceed96d8b2570cbdb455b36f96d99e52660562b6d84bdb5a9e1a4c9ff32c9199867f491e91f96758635ca800ad5b69039b120 -srcfiles size=7 +srccontainersize 8312 +srccontainerchecksum 8615a13f214ceee375685ab995ed91cf8521d213e311809561009f2d43745c5dae8b126ce09412a23007376e02a0b9a8abc021b2e5b8ac5e390e07640704f255 +srcfiles size=9 + RELOC/source/latex/mugsthesis/Makefile RELOC/source/latex/mugsthesis/mugsthesis.dtx RELOC/source/latex/mugsthesis/mugsthesis.ins runfiles size=2 RELOC/tex/latex/mugsthesis/mugsthesis.cls -catalogue-contact-repository https://github.com/pdgessler/mugsthesis +catalogue-contact-announce https://sr.ht/~pdgessler/mugsthesis/feed +catalogue-contact-bugs https://todo.sr.ht/~pdgessler/mugsthesis +catalogue-contact-repository https://sr.ht/~pdgessler/mugsthesis/ +catalogue-contact-support https://lists.sr.ht/~pdgessler/public-inbox catalogue-ctan /macros/latex/contrib/mugsthesis catalogue-license lppl1.3 catalogue-topics dissertation +catalogue-version 1.1 name muling category Package -revision 56991 +revision 61719 shortdesc MA Thesis class for the Department of Linguistics, University of Mumbai relocated 1 longdesc This is a class file for writing MA thesis as required by the longdesc Department of Linguistics at the University of Mumbai. -containersize 2252 -containerchecksum d5b89d93bb67e46618a30e5bdbc988a6849a7cbfee84f4486cf4557e750ae53f64aad188f74b1a96b1dfbaddfaea3a6a0380bd955ce79ebeb095fe1a54194e5a -doccontainersize 390184 -doccontainerchecksum ce1e2ac1e50e164bba6ff3911fe9ecb8f85ff2930f21f21e6721e153ffdc9c81798857cfe73c62f783f8909a644efd9f5a048565e054b0543973c4625d96976f -docfiles size=97 +containersize 2492 +containerchecksum 2f6521255e8e0ac777130f0e108ccacb5a81f74264e6d7b830514e292f9733ec47dac9e3a618143fd9dee224ca60ebcf85a74d4c14104cb21e65d2b4d4c59908 +doccontainersize 144320 +doccontainerchecksum 8ef724f07c630e1fe6511d0b8846f4729084fab1ece44489b0fa4cb40dc506cb2f666bc84b9a020103bfb98206d3c3f44ac78203a86d160f1b4e7f55e2f2f77d +docfiles size=50 + RELOC/doc/latex/muling/COPYING RELOC/doc/latex/muling/README.txt details="Readme" + RELOC/doc/latex/muling/gfdl-tex.tex RELOC/doc/latex/muling/muling.pdf details="Package documentation" -srccontainersize 3824 -srccontainerchecksum 877f34b070dd1549f649ce99a322f7221c9dcdaae5aa80ab36c6e340285ac9ebea09e9496ec87e6d881608f30d9d7b24faff6f8671f57a2b18ff96a127a30311 +srccontainersize 4408 +srccontainerchecksum 9aa6c144a54359d48e9eb7f0425e88f7e790ecb2c6342ee86b92d43608b3ee595f1f2b17c3e2ec66f2f19e921004ba5068c8fa45fef598c0cda51336d608f89b srcfiles size=4 RELOC/source/latex/muling/muling.dtx RELOC/source/latex/muling/muling.ins runfiles size=2 RELOC/tex/latex/muling/muling.cls -catalogue-contact-bugs https://gitlab.com/niranjanvikastambe/muling/-/issues -catalogue-contact-home https://gitlab.com/niranjanvikastambe/muling +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=muling +catalogue-contact-home https://puszcza.gnu.org.ua/projects/muling +catalogue-contact-repository https://git.gnu.org.ua/muling.git +catalogue-contact-support mailto:muling-help@gnu.org.ua catalogue-ctan /macros/latex/contrib/muling catalogue-license lppl1.3c catalogue-topics linguistic class -catalogue-version 0.2 +catalogue-version 0.3 name multenum category Package @@ -206915,27 +216524,30 @@ catalogue-topics list list-enum name multiaudience category Package -revision 38035 +revision 60688 shortdesc Several versions of output from the same source relocated 1 longdesc This package allows to generate several versions of the same longdesc document for different audiences. -containersize 1520 -containerchecksum 58610f5b5138f7713fcd3e21fac721d0cc0a796e928bd5bd89e5981e08a0d4d6888f6f4f2dc2c6b9afecfbf0366462109be7a497ff6017e3b76ba83b361fe2f1 -doccontainersize 488772 -doccontainerchecksum 5db8176fc1c40091db428b73bbb8bb3eb2e7b14b8c8a681e7d5dcf04d990873fbe456d389e468456650faae3939e38d1217057485d60750cb29aef89e8e15b69 -docfiles size=181 - RELOC/doc/latex/multiaudience/Makefile +containersize 1516 +containerchecksum a7d89874dbe314ab37cf42d8d520e234764bfc3fbbb6c89e47be95ef83bacd170c290bae005830286e206da25a68939ed8ee60cf11ad3f5ff9d994d568638b86 +doccontainersize 556568 +doccontainerchecksum b6023873f5843ec7db13e551417ef4c31a2f622372f32b4ad7af1ab155e3902185b06d6f2fdd432bf582f3da8a5e32e985fde93ae88b7916062db25021a641a1 +docfiles size=309 RELOC/doc/latex/multiaudience/README details="Readme" RELOC/doc/latex/multiaudience/multiaudience.pdf details="Package documentation" + RELOC/doc/latex/multiaudience/sample-admins,devs.pdf + RELOC/doc/latex/multiaudience/sample-admins,execs.pdf RELOC/doc/latex/multiaudience/sample-admins.pdf RELOC/doc/latex/multiaudience/sample-devs.pdf + RELOC/doc/latex/multiaudience/sample-execs,devs.pdf RELOC/doc/latex/multiaudience/sample-execs.pdf RELOC/doc/latex/multiaudience/sample.tex RELOC/doc/latex/multiaudience/verbatim.tex -srccontainersize 5124 -srccontainerchecksum acb69d29f8f12a205b4560700330d0a94593595056784275a79531351c674ecb560cb453956a5eb088f09a666ba4c72a2bc64a79b954d13263559093d06d33a7 -srcfiles size=5 +srccontainersize 6040 +srccontainerchecksum 8d528b7e27f8883846386374cc936118a9537f0dfabc71c3b993f105dee381f0cd2b40e16d5c48df01b9709f902479ba87c6b94278f6e8be98beafbf9dd3e4ad +srcfiles size=7 + RELOC/source/latex/multiaudience/Makefile RELOC/source/latex/multiaudience/multiaudience.dtx RELOC/source/latex/multiaudience/multiaudience.ins runfiles size=1 @@ -206943,7 +216555,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/multiaudience catalogue-license lppl1.3 catalogue-topics cond-comp -catalogue-version 1.03 +catalogue-version 1.04 name multibbl category Package @@ -207083,15 +216695,6 @@ containerchecksum ba4950ecc9262c46a2970f88a67fcc270c21e2498f4c52ca7438930c232ed7 binfiles arch=armhf-linux size=1 bin/armhf-linux/multibibliography -name multibibliography.i386-cygwin -category Package -revision 30526 -shortdesc i386-cygwin files of multibibliography -containersize 348 -containerchecksum 263e13412f85dab071e561e000f72595604674607159bb282bbedb0bb121a1dd469cd80064da7920f011c3d2d9b0b72cb567c796158863fd697570c834b33a5c -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/multibibliography - name multibibliography.i386-freebsd category Package revision 30534 @@ -207137,14 +216740,14 @@ containerchecksum 98e02a9b50c28e799e40b9ff057e5e25323b1af415c08a54da50d67a52c193 binfiles arch=universal-darwin size=1 bin/universal-darwin/multibibliography -name multibibliography.win32 +name multibibliography.windows category Package -revision 30534 -shortdesc win32 files of multibibliography -containersize 696 -containerchecksum 5d76e788b9585b7bf6c59748486bed4d5bf8fad2a8772eb0adcf9a3f31024f766d824b6aca12e5c779ce21c9b519a03211083680faf2610a77bed12907182405 -binfiles arch=win32 size=1 - bin/win32/multibibliography.exe +revision 65891 +shortdesc windows files of multibibliography +containersize 2316 +containerchecksum de0e3bbd854098fe8d1c46f31c9630b94388d184e9bac2361071fd0bb32054c530e69f3931f4590d4c7fe0ee2af7d772adb97f728eca9f50586eec5a84377eb3 +binfiles arch=windows size=2 + bin/windows/multibibliography.exe name multibibliography.x86_64-cygwin category Package @@ -207312,30 +216915,30 @@ catalogue-version 1.42 name multienv category Package -revision 56291 +revision 64967 shortdesc Multiple environments using a "key=value" syntax relocated 1 longdesc The package provides a multienv environment which permits easy longdesc addition of multiple environments using a key=value syntax. longdesc Macros to define environments using this syntax are also longdesc provided. -containersize 1896 -containerchecksum 61ebdecdbe9d1fc963a9625ab1d2811c967094f3aa983a08ff20d5ae1a7e6d87290981c4063ded7edb87ff248fe9f5499880ad5e602949f18ab3419c074e775d +containersize 1884 +containerchecksum 04090331e44ac252dcc6929ec995cb0e6d38922729a6af99ba103a833d1ac93f7553d9314359cc5b1ad16d16757828e57059a6f1f8bf2892abc41b2d901fb15d doccontainersize 208908 -doccontainerchecksum ee1cda148f6f1f7998b86b6f36256c69ac399d32f6bf5443aba242ce93de8c0a64d43eeda32287dca7d7e83498fc26253be724b1231dd399b903908f4acf7430 +doccontainerchecksum 29dfcd04a9b88d6da8a279b021e3178652c388a9afce5063e863307b8030fce66dafd48ae2a7e18f1e5e207f0f11b4d6c8da035f0799ddfc47856b7651d7fd9a docfiles size=52 RELOC/doc/latex/multienv/README details="Readme" RELOC/doc/latex/multienv/multienv.pdf details="Package documentation" -srccontainersize 4584 -srccontainerchecksum bbd36e000e4533f3fb423d6d758fc7fb4e210868a695bf13e7ef8cc266c2875719c85c57aec0fa27bb4e174291321452a88bfda18004136e5bf4a99154bf26f8 +srccontainersize 4588 +srccontainerchecksum 5c636e3040ec84931a7188151eff2eb4bd2696c4137c2e2dc27dcd2190cc316e3c75ebf74c49f0eb6c8e43900e87410c3ad414dd623c045f58ba1d198ef630bf srcfiles size=6 RELOC/source/latex/multienv/multienv.dtx RELOC/source/latex/multienv/multienv.ins runfiles size=2 RELOC/tex/latex/multienv/multienv.sty -catalogue-contact-bugs https://sourceforge.net/p/multienv/tickets/ -catalogue-contact-home https://sourceforge.net/p/multienv/ -catalogue-contact-repository https://sourceforge.net/p/multienv/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/multienv/issues +catalogue-contact-home https://github.com/MartinScharrer/multienv +catalogue-contact-repository https://github.com/MartinScharrer/multienv.git catalogue-ctan /macros/latex/contrib/multienv catalogue-license lppl1.3 catalogue-topics macro-supp @@ -207377,6 +216980,30 @@ catalogue-license lppl1.3c catalogue-topics macro-supp catalogue-version 1.5 +name multifootnote +category Package +revision 63456 +shortdesc Multiple numbers for the same footnote +relocated 1 +longdesc This package provides several commands for generating footnotes +longdesc with multiple numbers (resp. marks). +containersize 1888 +containerchecksum 928a2086fdf167ae23f851ec6da8cd84a012e85c97f56b7ed62fbb2873cbc6cf2793a02c8c23bc76f0bae3089edf9c594141a9029920d9f1038f7cf4b39c5e23 +doccontainersize 103052 +doccontainerchecksum 9e74a56d5d27506e354d0d68b4639df92ba4d017354e3f12bb2c9be33c210eef6cd2ad3dbcf0fa17b75b0c938da9407f0b4f9ce3e5fee000e2840d702d28fca9 +docfiles size=33 + RELOC/doc/latex/multifootnote/LICENSE + RELOC/doc/latex/multifootnote/README.md details="Readme" + RELOC/doc/latex/multifootnote/multifootnote-doc.pdf details="Package documentation" + RELOC/doc/latex/multifootnote/multifootnote-doc.tex +runfiles size=2 + RELOC/tex/latex/multifootnote/multifootnote.sty +catalogue-also footmisc +catalogue-contact-repository https://github.com/Jinwen-XU/multifootnote +catalogue-ctan /macros/latex/contrib/multifootnote +catalogue-license lppl1.3c +catalogue-topics footnote + name multilang category Package revision 49065 @@ -207442,6 +217069,34 @@ catalogue-license lppl catalogue-topics maths-symbol catalogue-version 1.0 +name multiple-choice +category Package +revision 63722 +shortdesc LaTeX package for multiple-choice questions +relocated 1 +longdesc This package adjusts the choices of the multiple-choice +longdesc question automatically. It has been wholly inspired by the work +longdesc of Enrico Gregorio and improved by Vafa Khalighi and I've just +longdesc packed and redistributed it under the name of the +longdesc multiple-choice package. +containersize 1544 +containerchecksum 975e7ba809ff551faacfeb8c40f0965da34068b4d4d2d0d14d9334996a245682e74ee05a4ef99fab064263c14c0ee4e7fc50372184c2db7ea90572eb9f4beaeb +doccontainersize 131468 +doccontainerchecksum 334d989ca885f640b339028d85acefc8d1762b587e652805ef49a97c0cc1cff9f87fdae884c613719b5c377eda17f85c22137db6a368b663a389661bf34f6e4a +docfiles size=35 + RELOC/doc/latex/multiple-choice/README details="Readme" + RELOC/doc/latex/multiple-choice/multiple-choice-doc.pdf details="Package documentation" + RELOC/doc/latex/multiple-choice/multiple-choice-doc.tex +runfiles size=1 + RELOC/tex/latex/multiple-choice/multiple-choice.sty +catalogue-also qcm +catalogue-contact-bugs https://github.com/javadr/multiple-choice.sty/issues +catalogue-contact-repository https://github.com/javadr/multiple-choice.sty +catalogue-ctan /macros/latex/contrib/multiple-choice +catalogue-license lppl1.3c +catalogue-topics exam +catalogue-version 0.2 + name multirow category Package revision 58396 @@ -207532,7 +217187,7 @@ catalogue-version 3.1 name musicography category Package -revision 53596 +revision 66115 shortdesc Accessing symbols for music writing with pdfLaTeX relocated 1 longdesc This package makes available the most commonly used symbols in @@ -207543,17 +217198,17 @@ longdesc builds on the approach used in the harmony package, where the longdesc symbols are taken from the MusiXTeX fonts. But it provides a longdesc larger range of symbols and a more flexible, user-friendly longdesc interface written using xparse and stackengine. -containersize 3112 -containerchecksum 062bd689224a432188b10d53f1224cf915432147db66d93d944fd9fbe9e0ea8928562fb19a6b5f94373db7c6fcc2c23daf7a7fa338f5b9dab53e9eee2a78db35 -doccontainersize 353768 -doccontainerchecksum 9dda39b912cc766aa619254eba7a7d3d90bab3a24668d82e2d4c9c18fff1bfeb7a09e549774aac6d654da1108378f1867ad1d8e84464f8672b3f5ddf445d5e47 +containersize 3116 +containerchecksum 0554779a5bf546200ff409f8f71518a8da9015eb80067641aa3cc4ede9628de3885a6f7b086b3078166dc6f148ef6b49789a5283029fbd16272d20f9bfc1d334 +doccontainersize 353776 +doccontainerchecksum 61d0d2713ca823b3634e5434722bbc64768f28611fe98e92daa2795e89c86b2826d155f50cd3ce565a5124970a5e1d918d2aecac1a85f0e120c41dad46886aa0 docfiles size=90 RELOC/doc/latex/musicography/README.md details="Readme" RELOC/doc/latex/musicography/musicography.pdf details="Package documentation" RELOC/doc/latex/musicography/musicography.tex runfiles size=2 RELOC/tex/latex/musicography/musicography.sty -catalogue-contact-repository https://bitbucket.org/andrewacashner/musicography +catalogue-contact-repository https://github.com/andrewacashner/musicography catalogue-ctan /macros/latex/contrib/musicography catalogue-license lppl1.3 catalogue-topics music font-supp-symbol @@ -207608,7 +217263,7 @@ catalogue-version 1.2.2 name musixtex category Package -revision 57353 +revision 65519 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 @@ -207624,11 +217279,11 @@ longdesc are universally acknowledged to be challenging to use directly: longdesc the pmx preprocessor compiles a simpler input language to longdesc MusiXTeX macros.. depend musixtex.ARCH -containersize 101288 -containerchecksum 890faab60e994520b74081e0709217549d4d91bf0d9cd28bf8b08d33b474edd584b1af8810bd9e8f1899e9de9ab88f4091594ce3ad25671312856b1870711a51 -doccontainersize 2057608 -doccontainerchecksum 65380d56ef9403c633f3459192f21191912065d2a6b34efcba1c002dcf836353be7a6c532f66a11478002f34e2f53c35ae9e7d705ff716fb9c4f929dbbd82490 -docfiles size=1078 +containersize 105036 +containerchecksum 85ff6dae443655c320990517debd59c2d3b3cf79ae795fd27836704af1ead716da34521e254a201ee8cad90ba0b5d1c559157567adf3e7142aa5446e91af0147 +doccontainersize 2157720 +doccontainerchecksum cae619ff0b16f557537ce3d28fd8df938d9297aeb37ed47713934e3a6ee41e4d8007e4e798b03221df6e958db93e2a765b9854576381eaacc924433e4efaa362 +docfiles size=1116 texmf-dist/doc/generic/musixtex/ChangeLog-114.txt texmf-dist/doc/generic/musixtex/ChangeLog-115.txt texmf-dist/doc/generic/musixtex/ChangeLog-116.txt @@ -207647,6 +217302,10 @@ docfiles size=1078 texmf-dist/doc/generic/musixtex/ChangeLog-129.txt texmf-dist/doc/generic/musixtex/ChangeLog-130.txt texmf-dist/doc/generic/musixtex/ChangeLog-131.txt + texmf-dist/doc/generic/musixtex/ChangeLog-132.txt + texmf-dist/doc/generic/musixtex/ChangeLog-133.txt + texmf-dist/doc/generic/musixtex/ChangeLog-134.txt + texmf-dist/doc/generic/musixtex/ChangeLog-135.txt texmf-dist/doc/generic/musixtex/ChangeLog-musixdoc.txt texmf-dist/doc/generic/musixtex/README details="Readme" texmf-dist/doc/generic/musixtex/examples/adagio.tex @@ -207760,6 +217419,8 @@ docfiles size=1078 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/musixftab/frenchtab-samples.pdf + texmf-dist/doc/generic/musixtex/musixftab/frenchtab-samples.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 @@ -207785,16 +217446,18 @@ docfiles size=1078 texmf-dist/doc/man/man1/musixtex.1 texmf-dist/doc/man/man1/musixtex.man1.pdf srccontainersize 9012 -srccontainerchecksum bc2d254ec56217edc6f5fb75229f0484ed8ae494da9dace2e86f494670e49bbc60b962d59397c0dc1ef40e7633cc97c9f75b4ab26ee7ff528fb8169b4e625660 +srccontainerchecksum e81c23471fa26ef887aa5e16eefd562c5f133619557e734c7b36de2dcb9b1746c04263e7f3c300ccd90e85cdbfb4146496448a31909403631510645d28e39608 srcfiles size=12 texmf-dist/source/generic/musixtex/musixcrd/doc.tex texmf-dist/source/generic/musixtex/musixcrd/makefile texmf-dist/source/generic/musixtex/musixcrd/musixcrd.dtx texmf-dist/source/generic/musixtex/musixcrd/readme texmf-dist/source/generic/musixtex/musixcrd/strip.tex -runfiles size=149 +runfiles size=161 texmf-dist/dvips/musixtex/psslurs.pro + texmf-dist/scripts/musixtex/musixflx.bat texmf-dist/scripts/musixtex/musixflx.lua + texmf-dist/scripts/musixtex/musixtex.bat texmf-dist/scripts/musixtex/musixtex.lua texmf-dist/tex/generic/musixtex/musixadd.tex texmf-dist/tex/generic/musixtex/musixadf.tex @@ -207814,15 +217477,18 @@ runfiles size=149 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/musixftab.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/musixjt.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/musixmkm.tex texmf-dist/tex/generic/musixtex/musixper.tex texmf-dist/tex/generic/musixtex/musixplt.tex texmf-dist/tex/generic/musixtex/musixpoi.tex @@ -207836,8 +217502,10 @@ runfiles size=149 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/musixthacc.tex texmf-dist/tex/generic/musixtex/musixtmr.tex texmf-dist/tex/generic/musixtex/musixtri.tex + texmf-dist/tex/generic/musixtex/musixvbm.tex texmf-dist/tex/generic/musixtex/tuplet.tex texmf-dist/tex/latex/musixtex/musixcpt.sty texmf-dist/tex/latex/musixtex/musixcrd.sty @@ -207846,14 +217514,15 @@ runfiles size=149 texmf-dist/tex/latex/musixtex/musixtex.sty catalogue-also pmx catalogue-contact-home http://icking-music-archive.org/software/htdocs +catalogue-contact-support https://www.tug.org/mailman/listinfo/tex-music catalogue-ctan /macros/musixtex catalogue-license gpl2+ catalogue-topics music -catalogue-version 1.31 +catalogue-version 1.36 name musixtex-fonts category Package -revision 37762 +revision 65517 shortdesc Fonts used by MusixTeX relocated 1 longdesc These are fonts for use with MusixTeX; they are provided both @@ -207861,18 +217530,23 @@ longdesc as original Metafont source, and as converted Adobe Type 1. The longdesc bundle renders the older (Type 1 fonts only) bundle longdesc musixtex-t1fonts obsolete. execute addMixedMap musix.map -containersize 4183304 -containerchecksum 9cb72eba919842dcd8f892562a9f6f2c4638a46b4152509ffce1666e3e4243a2686b4feff3d9d68ac3c70c755606cda7b8659ceb1d8347b49bdfc4c0c7f35eda -doccontainersize 78176 -doccontainerchecksum 6fbc429483bbb7e1382d72622168d692dc5686ee21b9172ddd3a14df04397cdb9a3b45bae57b2ba2851aff401a5819d81894354e2e942d41812ebede75c45164 -docfiles size=24 +containersize 5119944 +containerchecksum 53c6f1b80b789608ad1187a2d593474c12d71b27ce9bd8c9c0cc7d2ba1bf3501c2dbab6375f51eb4841646b1f0dc7ed1c641efef6bc32dbaae3cec56f6583e09 +doccontainersize 313048 +doccontainerchecksum eff2e4596dd426f1f57003d6441eb0632f7b9bbbb216ab4e2b069a1a624e77e06f032f191ba13afd2e55b472f5a719936f34fcf2ba6997336a3c3716c4d936c3 +docfiles size=91 RELOC/doc/fonts/musixtex-fonts/CHANGES.psfonts + RELOC/doc/fonts/musixtex-fonts/MuseJazzText/MuseJazzText.Glyphs.pdf + RELOC/doc/fonts/musixtex-fonts/MuseJazzText/OFL.txt RELOC/doc/fonts/musixtex-fonts/README details="Readme" RELOC/doc/fonts/musixtex-fonts/README.psfonts + RELOC/doc/fonts/musixtex-fonts/frenchtab/OFL.txt + RELOC/doc/fonts/musixtex-fonts/gpl.txt RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.pdf details="Installation details" RELOC/doc/fonts/musixtex-fonts/musixtex-fonts-install.tex -runfiles size=1361 +runfiles size=1708 RELOC/fonts/map/dvips/musixtex-fonts/musix.map + RELOC/fonts/opentype/public/musixtex-fonts/MuseJazzText.otf RELOC/fonts/source/public/musixtex-fonts/musexgen.mf RELOC/fonts/source/public/musixtex-fonts/musix11.mf RELOC/fonts/source/public/musixtex-fonts/musix13.mf @@ -207969,6 +217643,9 @@ runfiles size=1361 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/MuseJazzText.tfm + RELOC/fonts/tfm/public/musixtex-fonts/feta20.tfm + RELOC/fonts/tfm/public/musixtex-fonts/frenchtab.tfm RELOC/fonts/tfm/public/musixtex-fonts/musix11.tfm RELOC/fonts/tfm/public/musixtex-fonts/musix13.tfm RELOC/fonts/tfm/public/musixtex-fonts/musix16.tfm @@ -208050,6 +217727,9 @@ runfiles size=1361 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/MuseJazzText.pfb + RELOC/fonts/type1/public/musixtex-fonts/feta20.pfb + RELOC/fonts/type1/public/musixtex-fonts/frenchtab.pfb RELOC/fonts/type1/public/musixtex-fonts/musix11.pfb RELOC/fonts/type1/public/musixtex-fonts/musix13.pfb RELOC/fonts/type1/public/musixtex-fonts/musix16.pfb @@ -208131,7 +217811,7 @@ runfiles size=1361 RELOC/fonts/type1/public/musixtex-fonts/xtie20.pfb catalogue-ctan /fonts/musixtex-fonts catalogue-license gpl -catalogue-topics font font-mf font-type1 font-music +catalogue-topics font font-mf font-type1 font-otf font-music name musixtex.aarch64-linux category Package @@ -208173,16 +217853,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/musixflx bin/armhf-linux/musixtex -name musixtex.i386-cygwin -category Package -revision 37026 -shortdesc i386-cygwin files of musixtex -containersize 360 -containerchecksum a2ae36151da6e84a2d4d5bac9a1c6320e4a27555abd3f6aa929e015bb86fa82e49a81cf48e4d52a8942e1afe394980e0f5b4b988e1cd0e27af0c2b39b079acc8 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/musixflx - bin/i386-cygwin/musixtex - name musixtex.i386-freebsd category Package revision 37026 @@ -208233,15 +217903,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/musixflx bin/universal-darwin/musixtex -name musixtex.win32 +name musixtex.windows category Package -revision 37026 -shortdesc win32 files of musixtex -containersize 704 -containerchecksum 71cb98f76e93dbad0fea47ef0f1ef0b5abb37ae8def405c99e72ea9b28fe25ed7279a06ed99c327fdfe36767010fb9b5ec8f6506aebabc94d88a9fdd41b6e957 -binfiles arch=win32 size=2 - bin/win32/musixflx.exe - bin/win32/musixtex.exe +revision 65891 +shortdesc windows files of musixtex +containersize 2352 +containerchecksum 6f4462efd63af6dfa5916cb1453a7c15abd64130f5098f956a0064cc9f08af18840385d5f8ec46ae6379e5bef50ef5a911683a6c7d3588d65d4f0cd22072e46a +binfiles arch=windows size=4 + bin/windows/musixflx.exe + bin/windows/musixtex.exe name musixtex.x86_64-cygwin category Package @@ -208335,73 +218005,64 @@ catalogue-topics music name musixtnt.aarch64-linux category Package -revision 53999 +revision 65927 shortdesc aarch64-linux files of musixtnt -containersize 5620 -containerchecksum b1b604c0ab7886fe5e6242fc130a4f7d93d4bf8bdd1ed04ae0f264405611f51c7451fa1edf5c9c5287278ac03b6f968e09e53655ca46de01ceb8d4f9a208f87a +containersize 5624 +containerchecksum e7b11ef30e9f58e0cf736647afe7835818e3badbfed8c681ca9f9332b33e096c6a30d7a824c69cf09d55edf0bd46b306179715987a74b0268e1637d0ba761533 binfiles arch=aarch64-linux size=4 bin/aarch64-linux/msxlint name musixtnt.amd64-freebsd category Package -revision 57941 +revision 62206 shortdesc amd64-freebsd files of musixtnt -containersize 9124 -containerchecksum 9d5e5d14f8cfc49ff7b160c4997b8599f95e33a756363449837bbe31e7e076cde3b94a326a4cd99b597ef1ea44e0c214dda7a473dbc2785c8dbf1e73b73bd406 +containersize 9252 +containerchecksum ff27dda7eb2528042622885ea77b3aa58e178bdbe3a9e174a4ec8d511287124041f1c173637b88c39cbbe575750b74c9f7b56d26bd8aceeefa9df0cbfabecd61 binfiles arch=amd64-freebsd size=5 bin/amd64-freebsd/msxlint name musixtnt.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of musixtnt -containersize 8180 -containerchecksum e9b5e80398dbfb4657786f77989401e307a0b76b447f13cb78f816513e7816606e96e1189397bbc8f682c89c6ef0e55120d0daafb5b4c7b8791f926412458c45 +containersize 8176 +containerchecksum f1c6077d51e8d8bf702a75bbd11dffae6c9a97dde0c6828067aa64971455c98c960c8dba7a46566c03fc0eece29088b64dc04638e3121ddd943b01e71bc5963a binfiles arch=amd64-netbsd size=6 bin/amd64-netbsd/msxlint name musixtnt.armhf-linux category Package -revision 57957 +revision 63092 shortdesc armhf-linux files of musixtnt -containersize 4900 -containerchecksum 3ebb9868011cc6814b1014bc3a4df8feb78a714f935ca587ed4fd9565759c68fc351550541e86883e8585c8e94e4bf4fc8fde53a9328d1865689140afa318d44 +containersize 4904 +containerchecksum 7fc6a1fe89be98599a397762c1e8e2658dd6dc251bd3593383f9079ad2c7bd5ebc8ac5d0679d456b05deb57bcdece02d3d28b18c1847d4ccadf5482ea7449535 binfiles arch=armhf-linux size=4 bin/armhf-linux/msxlint -name musixtnt.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of musixtnt -containersize 6036 -containerchecksum 9680517768ea049c1e6495afe4eecc312e6006106f8cb9ba1348e5bb59a7628a9ea4feb3245e357a58020cc1a087c93c73a9dc751e2bc41d603a29184874294c -binfiles arch=i386-cygwin size=5 - bin/i386-cygwin/msxlint.exe - name musixtnt.i386-freebsd category Package -revision 57961 +revision 62206 shortdesc i386-freebsd files of musixtnt -containersize 7504 -containerchecksum 6ea3dc5e20f59a1573612dfd4192126e41396df08b84c0072d785887a55203febde0980d0dd67dc3f7d0e969b1ae0424049145dd9c38ffc021c23f8e42b4ad00 +containersize 7844 +containerchecksum 715133974ee22d4966cac03066d06c61614d8f1ac7de7c2a32788390ceed7cb8cc249264e420ee42d15f3fe8066bba910c7f66f239049e399b47e9539d11fad5 binfiles arch=i386-freebsd size=4 bin/i386-freebsd/msxlint name musixtnt.i386-linux category Package -revision 50281 +revision 62210 shortdesc i386-linux files of musixtnt -containersize 5676 -containerchecksum 7456747da6fe52677ea3349b3c5e5675a885e7b51eded9f7753ab46a8d4e1b98e07e4e594ed139e00893d1bbccdec366195cd26b84e71d95d1b09822f535b28d +containersize 5896 +containerchecksum 2445c4f5c53d1bf026a8868fdfe432e2fb497037f06b5371bc8e697154d18669791ec19bce73c53f8dac575ef0516da5febccd82bb36cc6b848aaa40f8580a8a binfiles arch=i386-linux size=4 bin/i386-linux/msxlint name musixtnt.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of musixtnt containersize 7416 -containerchecksum acf40a8026cbe08f4d9f84e9d87f31352b6848f5d7d24718d0136ae8e4dd6304454ad0945c0c0c954e4b0bfba8c02e71d88b218d8f9dfb36a009b58af403d01f +containerchecksum cb237a3988ba65beca3f61d1561b8f575d47d0730a0bfb771e05ce94ab18729433176ca33e52fc7daa7f58f9720029c63a6ba0ccb4ba56199964ee0cea65b373 binfiles arch=i386-netbsd size=5 bin/i386-netbsd/msxlint @@ -208416,29 +218077,29 @@ binfiles arch=i386-solaris size=5 name musixtnt.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of musixtnt -containersize 19960 -containerchecksum f64d962cb189154ee83d28af07ba155b3f4a80ad734f8d0d5b202253f7508df989450befa121a2203e5af2d00482452414e32b4f9fbb0f61bfe4575941f4549c -binfiles arch=universal-darwin size=30 +containersize 20052 +containerchecksum 713cfd605699b757ae93a521e34c8b2c62965f0b5dd643f06e8098475765f8c0311b4c762154ec0846470b5193210428014c81a96e9c728f75581b164ca007e4 +binfiles arch=universal-darwin size=34 bin/universal-darwin/msxlint -name musixtnt.win32 +name musixtnt.windows category Package -revision 58783 -shortdesc win32 files of musixtnt -containersize 6384 -containerchecksum 63b1f4ebb25bbd20121cf60889c991a5d5b0690b9956b03992386d949f1d815b47e7515c91c1c0dd6e34889d54c4dd9135fe07be98889bc656ecd30eb7709e4d -binfiles arch=win32 size=4 - bin/win32/msxlint.exe +revision 65891 +shortdesc windows files of musixtnt +containersize 6324 +containerchecksum f253b3112b7e8ec677224176c241e62d37a3a578dc6f2dc638bbfcf1acc25c4b8f3432121cce65c3d0e7881aea5abde66ebb044fdebed4013f0b23293d9fc858 +binfiles arch=windows size=4 + bin/windows/msxlint.exe name musixtnt.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of musixtnt -containersize 6060 -containerchecksum 084ccd6c5156f3aca37af545bc69c17630d1774d831dfa3c7d2dae10573a961424d03fa09d8333dc177ceb665884f8dc6def556bdbc0257263d0f86c5bf2578f -binfiles arch=x86_64-cygwin size=4 +containersize 6144 +containerchecksum 95299f119ffeaa2f5093ff680d0c5485299c118b82f21056d991e6824c66f9598bd02389632787c0619db3bd1ccfab7cb0376aaaccbfd5e24551f38f9b63a81f +binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/msxlint.exe name musixtnt.x86_64-darwinlegacy @@ -208452,19 +218113,19 @@ binfiles arch=x86_64-darwinlegacy size=6 name musixtnt.x86_64-linux category Package -revision 50281 +revision 62187 shortdesc x86_64-linux files of musixtnt -containersize 5492 -containerchecksum 622d214c5a70916dd166db34e52f601a896a23943893cf4d3187db4d2f948b8ef36536e4421a4bdb4f11d9520f6ec7e6511e61f207753d45f792d5b7289c6985 -binfiles arch=x86_64-linux size=4 +containersize 5660 +containerchecksum 274b7ba74422962b29955280db91398a53a96aeeae19024a2e296f615a8fc4f1aebec2ac1f07deda0c65ef632762661260b4a6da68f8e73a205fb40bbaa43ca7 +binfiles arch=x86_64-linux size=5 bin/x86_64-linux/msxlint name musixtnt.x86_64-linuxmusl category Package -revision 54264 +revision 62210 shortdesc x86_64-linuxmusl files of musixtnt -containersize 8164 -containerchecksum ef1910f2bbf9a3a245deec962eaa416bf416c47a1751715a153ce4bef48c035faa025f2d0534a31e70d47ffdf509675c5dbd485b5a0c904cf4e89c5ae12aef7d +containersize 8032 +containerchecksum 9b7a49898e091c5b02069ff157e2d03e57c18f223c63f4fa790f06985622b4f473d8e616179dd998504faf856a2932a60aecc1ebca7286ffe4e90b815b894bab binfiles arch=x86_64-linuxmusl size=5 bin/x86_64-linuxmusl/msxlint @@ -208605,7 +218266,7 @@ catalogue-version 0.75 name mwe category Package -revision 56291 +revision 64967 shortdesc Packages and image files for MWEs relocated 1 longdesc The bundle provides several files useful when creating a @@ -208616,16 +218277,16 @@ longdesc TEXMF tree, so that they may be used in any (La)TeX document. longdesc This allows different users to share MWEs which include image longdesc commands, without the need to share image files or to use longdesc replacement code. -containersize 807108 -containerchecksum cca88398d3410ae13cd555f77f050c8091cab1aa4f5baf3f1dd277aecc3634ec63077e836b0bd9a3ef987fc508220202c16ee805667d0b97f33d3e2a8676941b -doccontainersize 308884 -doccontainerchecksum 1db294e9e28e08d9a91462b2f5b8e368b340f5fe54193de97c7fc4b76287ffad3b72ee41fbd644f27a495d35f87b430181ad776891043838952d13c4511ee56a +containersize 807092 +containerchecksum 707e5fbc793f608432e0c565311964a8b92ce55dfae43649cab61b767b22d35029a781fe9cf5997505afae4ff75a48d82acff95cd18b27b72033616ab06e22e0 +doccontainersize 308880 +doccontainerchecksum d6cb1e619dfa4e99128e4fbb95605eaeee694c59636f6759055f3ffa7ff13f12fa1a6d73a26e72baf63bcdb9737ebb41795b79367498e2c1122ca2b15c4fbee0 docfiles size=82 RELOC/doc/latex/mwe/INSTALL RELOC/doc/latex/mwe/README details="Readme" RELOC/doc/latex/mwe/mwe.pdf details="Package documentation" -srccontainersize 8440 -srccontainerchecksum 0ad6b31acabefc9ab8ae66b5c8962de6a4de7692021c2ae35ad488a73d44e57bfb97a54ffce1a4c1d8dd6cea054029a4d82d5fd788b7a9d52f509d72952e36fd +srccontainersize 8444 +srccontainerchecksum aebd949d303f0de76079b78fa94f6c9d941c2cde5f35b25dd8a9b3db9dafbd4fffa73e5edc216d1b68ce15daee383794a0553b905ce29977c56b03d4cc6136ba srcfiles size=12 RELOC/source/latex/mwe/mwe.dtx RELOC/source/latex/mwe/mwe.ins @@ -208722,9 +218383,9 @@ runfiles size=513 RELOC/tex/latex/mwe/example-movie.pdf RELOC/tex/latex/mwe/example-movie.tex RELOC/tex/latex/mwe/mwe.sty -catalogue-contact-bugs https://sourceforge.net/p/latex-mwe/tickets/ -catalogue-contact-home https://sourceforge.net/p/latex-mwe/ -catalogue-contact-repository https://sourceforge.net/p/latex-mwe/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/mwe/issues +catalogue-contact-home https://github.com/MartinScharrer/mwe +catalogue-contact-repository https://github.com/MartinScharrer/mwe.git catalogue-ctan /macros/latex/contrib/mwe catalogue-license lppl1.3 catalogue-topics debug-supp @@ -208928,7 +218589,7 @@ catalogue-version 3.4 name mynsfc category Package -revision 41996 +revision 60280 shortdesc XeLaTeX template for writing the main body of NSFC proposals relocated 1 longdesc The package provides a XeLaTeX template for writing the main @@ -208936,25 +218597,28 @@ longdesc body of National Natural Science Foundation of China (NSFC) longdesc proposals, which are allowed to apply online. The package longdesc defines styles of the outlines and uses BibLaTeX/biber for the longdesc management of references. -containersize 3420 -containerchecksum fbf6a66d9e4f7863b380f6cea43c58bcfb54e458d56fe2867b3e1354cb2489d4a0576e6c392e4825023db33465176161e226d954bc12080722317e92edfb3d0b -doccontainersize 225920 -doccontainerchecksum 11b2d4647cac4aa2280aeac24abca47b9d92680845eba5a99fdf05fbcd4590760927495ef87b04900084ec64652a8b2e28263d4d1a26765cd3e027393f2d7417 -docfiles size=60 - RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.bib - RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.pdf - RELOC/doc/xelatex/mynsfc/my-nsfc-proposal.tex +containersize 2816 +containerchecksum 6736bcfc3e0285b4def1b690fa0be98da319ce91f3e77978f08afc81289bc64b9a7aaae1d23a535a437c68037ba3cf0c068846ded35e3a6f4a26fbb7fa1be382 +doccontainersize 450800 +doccontainerchecksum 0b8936f3a2f36f68be9b1b9ba7c90f60babf6a6c9c81ab165ea947829ce0cf4230cf9f53d0acef3dde83c2fad10867e7316f9dbee0757a7fb9dac98b683d811b +docfiles size=116 + RELOC/doc/xelatex/mynsfc/my-proposal-contents.tex + RELOC/doc/xelatex/mynsfc/my-proposal.bib + RELOC/doc/xelatex/mynsfc/my-proposal.pdf + RELOC/doc/xelatex/mynsfc/my-proposal.tex RELOC/doc/xelatex/mynsfc/mynsfc.pdf details="Package documentation" -srccontainersize 4404 -srccontainerchecksum 4ca3be26449fb263e32a0302f5b85194e29b1c4e55012881a60f84a81a3498d82447934e60df522aa1b3e20ffc746bc78cba535e7208f88ddc46aa9831ffaf81 +srccontainersize 6004 +srccontainerchecksum 613c70050fcedf8917d39d2cc212b19fc2b1bc983e442d33bbce4f1fcf99cf73a8ee8a51c44eea090deb76fa57ed6b075b9fad12ed00516b80a2314d0202b988 srcfiles size=4 RELOC/source/xelatex/mynsfc/mynsfc.dtx -runfiles size=3 +runfiles size=2 RELOC/tex/xelatex/mynsfc/mynsfc.cls +catalogue-contact-bugs https://github.com/fredqi/mynsfc/issues +catalogue-contact-repository https://github.com/fredqi/mynsfc catalogue-ctan /macros/xetex/latex/mynsfc -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics proposal -catalogue-version 1.01 +catalogue-version 1.30 name na-box category Package @@ -209047,9 +218711,42 @@ catalogue-license lppl catalogue-topics latex-qual catalogue-version 0.7 +name naive-ebnf +category Package +revision 66017 +shortdesc EBNF in Plain Text +relocated 1 +longdesc With the help of this LaTeX package a context-free grammar +longdesc (CFG) may be rendered in a plain-text mode using a simplified +longdesc Extended Backus-Naur Form (EBNF) notation. +depend filecontentsdef +depend l3kernel +depend pgfopts +containersize 2148 +containerchecksum 429880d954e1f7948c8e0dd17bd46e693ea9ce8429b583f48673e3f81adc9012a687d053e3084d180e59fd4b21582da2e2413b0b2fd2ae1d4568879a31c3d466 +doccontainersize 557808 +doccontainerchecksum f46ba56059ff6aa8deb2a5e9bfa0f793c3580c2279273c5ce97e568d0e80449338211ff871f44a59a035347317a57af09228d68b474b6a75326a0c5bb50bf129 +docfiles size=147 + RELOC/doc/latex/naive-ebnf/DEPENDS.txt + RELOC/doc/latex/naive-ebnf/LICENSE.txt + RELOC/doc/latex/naive-ebnf/README.md details="Readme" + RELOC/doc/latex/naive-ebnf/naive-ebnf.pdf details="Package documentation" +srccontainersize 4840 +srccontainerchecksum b5aa7823df55a93390ad419e0bcc1ada0c67c9a1fd18fb072c73e9cfc68c16fc34f4d045fec114fefb8c72cf04209fc2cad916842a0c2f19c9bf02e0fe2414f2 +srcfiles size=4 + RELOC/source/latex/naive-ebnf/naive-ebnf.dtx + RELOC/source/latex/naive-ebnf/naive-ebnf.ins +runfiles size=2 + RELOC/tex/latex/naive-ebnf/naive-ebnf.sty +catalogue-contact-repository https://github.com/yegor256/naive-ebnf +catalogue-ctan /macros/latex/contrib/naive-ebnf +catalogue-license mit +catalogue-topics formal-spec +catalogue-version 0.0.5 + name nameauth category Package -revision 58026 +revision 65738 shortdesc Name authority mechanism for consistency in body text and index relocated 1 longdesc Publications, that reference many names, require editors and @@ -209058,25 +218755,30 @@ longdesc package offers name authority macros that allow authors and longdesc compilers to normalize occurrences of names, variant name longdesc forms, and pen names in the text and index. This may help longdesc minimize writing and production time and cost. -containersize 6868 -containerchecksum 7557d11e5f8c46aeab49e45d0a52c0bfe4b8754e4d24b4490a4912bbb7208a4f178320fd40530eb79e251c493129f2936982e3cee4212c05c295f4346b43b091 -doccontainersize 1149712 -doccontainerchecksum 1b22c9593ba4eaec9113d4fa7164a14d130a4b436ae082c9b9e5fef523df2b1a26f27f15d503e956ab75f5d75b5d7a33a4ddb27c90c79398195126bf54fb1131 -docfiles size=296 +containersize 7044 +containerchecksum 1f81c68299508534a64a91465478bea75ced09ce66be903e3fb21b228a575124f63101dfdaa66d9410e4395689706c9e09a2546715006710bad46d496a884daa +doccontainersize 1431708 +doccontainerchecksum 7f490b2993516937693ed04a240b6e16bb366897b638cbff52c44f95d2b965bceea064e0e6d2064442a28417f8f1adb3ead564d8c30106dc0b36adf8d550c965 +docfiles size=478 RELOC/doc/latex/nameauth/README.md details="Readme" + RELOC/doc/latex/nameauth/beamer01.pdf + RELOC/doc/latex/nameauth/beamer02.pdf + RELOC/doc/latex/nameauth/beamer03.pdf + RELOC/doc/latex/nameauth/cat01.pdf + RELOC/doc/latex/nameauth/compat.tex RELOC/doc/latex/nameauth/examples.tex RELOC/doc/latex/nameauth/nameauth.pdf details="Package documentation" -srccontainersize 91272 -srccontainerchecksum 363d6cc0cb052a3fd6e5c2df1725210b1a0dcadff08c272764e32d3125fb29c02321b388c43e1cf520f6362a2ba92d26e780b5e1beb3a99014ba053af94d95f7 -srcfiles size=130 +srccontainersize 116900 +srccontainerchecksum 8ce8976678bf079cf929ad97d19d8ac0e7cd55d745e4bfbb7ad70379f952024d1424841ea0eb750fd9135caecc5d6cb8a32abff5e1c5331e7b1153e5939e41ad +srcfiles size=154 RELOC/source/latex/nameauth/Makefile RELOC/source/latex/nameauth/nameauth.dtx -runfiles size=14 +runfiles size=13 RELOC/tex/latex/nameauth/nameauth.sty catalogue-ctan /macros/latex/contrib/nameauth catalogue-license lppl1.3 catalogue-topics editorial editorial-consistency -catalogue-version 3.6 +catalogue-version 3.7 name namedef category Package @@ -209114,6 +218816,28 @@ catalogue-license lppl1.3c catalogue-topics macro-def macro-gen expl3 catalogue-version 1.0 +name namedtensor +category Package +revision 65346 +shortdesc Macros for named tensor notation +relocated 1 +longdesc This style file provides macros for named tensor notation. +longdesc Please see the paper 'Named Tensor Notation' for background on +longdesc this notation. +containersize 708 +containerchecksum 0925bc8a0a9f0cfee910470318fe00972d604e815aceaacc358fc412f3382c5cb5a4f9b1a337b9f609f0060fbd82bf1a7579ff611685a992b68eddd5348a8dac +doccontainersize 1608 +doccontainerchecksum 9127b5d7c44a4b2a1cb28062f3a0c18f61711dd72aba86ceb9b948563ea5cbaedcd0539e0ef8608222f957f6fcbe878848095fa48131b564e26b1bb654ac8395 +docfiles size=2 + RELOC/doc/latex/namedtensor/LICENSE.md + RELOC/doc/latex/namedtensor/README.md details="Readme" +runfiles size=1 + RELOC/tex/latex/namedtensor/namedtensor.sty +catalogue-ctan /macros/latex/contrib/namedtensor +catalogue-license mit +catalogue-topics maths +catalogue-version 0.4 + name namespc category Package revision 15878 @@ -211307,11 +221031,74 @@ catalogue-license lppl catalogue-topics collection catalogue-version 3.5.3 +name nchairx +category Package +revision 60196 +shortdesc Maths macros from chair X of Wurzburg University +relocated 1 +longdesc This package was developed by members of the chair for +longdesc mathematical physics at the University of Wurzburg as a +longdesc collection of macros and predefined environments for quickly +longdesc creating nice mathematical documents. (Note concerning the +longdesc package name: the "n" stands for "new", the "X" is a roman 10.) +containersize 11384 +containerchecksum 3ebdb5c11c57818018172d87f265760039f4de415eff568271dacdccfae4aa1b8b3c646d5c68b4df55b66f631679c0a72c17283d949a35047f1cb8a536f582da +doccontainersize 664116 +doccontainerchecksum 2c58e3cc770a2180d010688683117a8beb4c8dfc17d0f6502647b5030ec3f6db1131201a352e0ab0247df158b4d5c61ba60995dfc8ffc7fb5e50e6a03b16c2c3 +docfiles size=279 + RELOC/doc/latex/nchairx/README.md details="Readme" + RELOC/doc/latex/nchairx/chairxmath.pdf details="Documentation of maths macros" + RELOC/doc/latex/nchairx/nchairx.pdf details="Primary package documentation" +srccontainersize 27160 +srccontainerchecksum f1621721f65fce09ed2abcee3997dc1d2eecbcedb651641a99922362d4586be53c5fbf3c9d07cf1834ee6dfb79d67d7b20ba070ddb80f6c302d053979e3d59e6 +srcfiles size=58 + RELOC/source/latex/nchairx/chairxDefaults.dtx + RELOC/source/latex/nchairx/chairxDefaultsDoc.dtx + RELOC/source/latex/nchairx/chairxEnv.dtx + RELOC/source/latex/nchairx/chairxEnvDoc.dtx + RELOC/source/latex/nchairx/chairxLogo.dtx + RELOC/source/latex/nchairx/chairxLogoDoc.dtx + RELOC/source/latex/nchairx/chairxmath.dtx + RELOC/source/latex/nchairx/chairxmath.ins + RELOC/source/latex/nchairx/chairxmathAlgebra.dtx + RELOC/source/latex/nchairx/chairxmathAlgebraDoc.dtx + RELOC/source/latex/nchairx/chairxmathAnalysis.dtx + RELOC/source/latex/nchairx/chairxmathAnalysisDoc.dtx + RELOC/source/latex/nchairx/chairxmathCategory.dtx + RELOC/source/latex/nchairx/chairxmathCategoryDoc.dtx + RELOC/source/latex/nchairx/chairxmathDecoration.dtx + RELOC/source/latex/nchairx/chairxmathDecorationDoc.dtx + RELOC/source/latex/nchairx/chairxmathDelimiters.dtx + RELOC/source/latex/nchairx/chairxmathDelimitersDoc.dtx + RELOC/source/latex/nchairx/chairxmathDiffgeo.dtx + RELOC/source/latex/nchairx/chairxmathDiffgeoDoc.dtx + RELOC/source/latex/nchairx/chairxmathFonts.dtx + RELOC/source/latex/nchairx/chairxmathFontsDoc.dtx + RELOC/source/latex/nchairx/chairxmathGeneral.dtx + RELOC/source/latex/nchairx/chairxmathGeneralDoc.dtx + RELOC/source/latex/nchairx/chairxmathLinalg.dtx + RELOC/source/latex/nchairx/chairxmathLinalgDoc.dtx + RELOC/source/latex/nchairx/chairxmathStatistics.dtx + RELOC/source/latex/nchairx/chairxmathStatisticsDoc.dtx + RELOC/source/latex/nchairx/chairxmathTopology.dtx + RELOC/source/latex/nchairx/chairxmathTopologyDoc.dtx + RELOC/source/latex/nchairx/nchairx.dtx + RELOC/source/latex/nchairx/nchairx.ins +runfiles size=20 + RELOC/tex/latex/nchairx/chairxmath.sty + RELOC/tex/latex/nchairx/nchairx.sty + RELOC/tex/latex/nchairx/nchairxheader.pdf + RELOC/tex/latex/nchairx/nchairxlogo.pdf +catalogue-ctan /macros/latex/contrib/nchairx +catalogue-license lppl1.3 +catalogue-topics maths physics +catalogue-version 1.0.0 + name ncntrsbk category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -211324,8 +221111,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap unc.map -containersize 290876 -containerchecksum e023d0a407f666de1415728a90014041feb5d04ceb1007e8fc293452ecef1b9bdbd014adedb9e25993e57c0196632b1413ec19893f4c37c26a8e8e42a20a9de9 +containersize 290856 +containerchecksum cafa6f6ba366c07bfa0fe37ae415cf924ca54249288a52726eed52b9c8147925b6ac4a85fcb69a19596944ed8585cab4ce8fc2710a7c32998b360ea2ab143d56 runfiles size=305 RELOC/dvips/ncntrsbk/config.unc RELOC/fonts/afm/adobe/ncntrsbk/pncb8a.afm @@ -211526,6 +221313,47 @@ catalogue-ctan /macros/latex/contrib/ndsu-thesis catalogue-license lppl1.3 catalogue-topics dissertation class +name ndsu-thesis-2022 +category Package +revision 63881 +shortdesc North Dakota State University disquisition class 2022 +relocated 1 +longdesc A class for generating disquisitions (MS and PhD - thesis, +longdesc dissertation, and paper), intended to be in compliance with +longdesc North Dakota State University requirements. Updated (2022) +longdesc North Dakota State University LaTeX thesis class features +longdesc several functionalities, including not limited to, numbered and +longdesc non-numbered versions, overall justification, document point +longdesc sizes, fonts options, SI units, show frames, URL breaking, long +longdesc tables, subfigures, multi-page figures, chapter styles, +longdesc subfiles, algorithm listing, BibTeX and BibLaTeX support, +longdesc individual chapter and whole document bibliography, natbib +longdesc citations, and clever references. The supplied simple and +longdesc extended samples illustrate these features and guide students +longdesc to use the class. +containersize 8096 +containerchecksum 98f01d4d37fc1661c117027c7dd83e4c74001cc7d03adc854c6f869503e5700512186585b15d1b7dd7a40ec6a526f1e6eaeed1332ba9531850e6506ce2feaf47 +doccontainersize 1567624 +doccontainerchecksum ab0c8ca7aa865052422192b51d1affe2c26af465dfe3de9a0bd10a30e5cbaa8f9f9594e1337bf175a069ff189c8924c844acff0b7788692f19e44198c1f578d0 +docfiles size=529 + RELOC/doc/latex/ndsu-thesis-2022/NDSU-Thesis-Extended.pdf + RELOC/doc/latex/ndsu-thesis-2022/NDSU-Thesis-Extended.tex + RELOC/doc/latex/ndsu-thesis-2022/README details="Readme" + RELOC/doc/latex/ndsu-thesis-2022/figures/fig-LOA.pdf + RELOC/doc/latex/ndsu-thesis-2022/figures/fig-LOS.pdf + RELOC/doc/latex/ndsu-thesis-2022/figures/fig-draftmargin.pdf + RELOC/doc/latex/ndsu-thesis-2022/frog.jpg + RELOC/doc/latex/ndsu-thesis-2022/mybib.bib + RELOC/doc/latex/ndsu-thesis-2022/ndsu-example.pdf + RELOC/doc/latex/ndsu-thesis-2022/ndsu-example.tex + RELOC/doc/latex/ndsu-thesis-2022/ndsu-thesis-2022-documentation.pdf details="Package documentation" + RELOC/doc/latex/ndsu-thesis-2022/ndsu-thesis-2022-documentation.tex +runfiles size=8 + RELOC/tex/latex/ndsu-thesis-2022/ndsu-thesis-2022.cls +catalogue-ctan /macros/latex/contrib/ndsu-thesis-2022 +catalogue-license lppl1.3c +catalogue-topics dissertation class + name needspace category Package revision 29601 @@ -211621,6 +221449,32 @@ catalogue-license lppl1.3 catalogue-topics hungarian catalogue-version 1.03 +name newcastle-bst +category Package +revision 62856 +shortdesc A BibTeX style to format reference lists in the Harvard at Newcastle style +relocated 1 +longdesc This package provides a BibTeX style to format reference lists +longdesc in the Harvard at Newcastle style recommended by Newcastle +longdesc University. It should be used alongside natbib for citations. +containersize 6560 +containerchecksum bc3f53c76ec9711d2ad9878dd12a62ed5fceba680dfd89d55ad81df0bf6e63e49e8660e1aa0726ac8ef545fab1e924fcae938701a59117bb42a59a016a349944 +doccontainersize 139940 +doccontainerchecksum c00154d8a4abc12d57d1760383a5da13af16ba5340edcdaaeeb4e61b5ceb42d0776c0967af7814bb3bc6a8669a61998b212fe62b190458a50ae1e6a03c2a3645 +docfiles size=45 + RELOC/doc/bibtex/newcastle-bst/README.md details="Readme" + RELOC/doc/bibtex/newcastle-bst/bibliography.bib + RELOC/doc/bibtex/newcastle-bst/newcastle-bst.pdf details="Package documentation" + RELOC/doc/bibtex/newcastle-bst/newcastle-bst.tex +runfiles size=8 + RELOC/bibtex/bst/newcastle-bst/newcastle.bst +catalogue-contact-bugs https://github.com/LukeBriggsDev/Newcastle-BibTeX/issues +catalogue-contact-home https://github.com/LukeBriggsDev/Newcastle-BibTeX +catalogue-ctan /biblio/bibtex/contrib/newcastle-bst +catalogue-license lppl1.3c +catalogue-topics bibtex-sty +catalogue-version 1.1 + name newcommand category Package revision 18704 @@ -211647,55 +221501,34 @@ catalogue-version 2.0 name newcomputermodern category Package -revision 59041 +revision 66327 shortdesc Computer Modern fonts including matching non-latin alphabets relocated 1 -longdesc This is a new assembly of Computer Modern fonts plus glyphs for -longdesc non Latin alphabets which are considered compatible in style to -longdesc CM fonts. In addition to the Regular weight of Computer Modern, -longdesc it provides a Book weight for heavier printing. -containersize 7083292 -containerchecksum 44026c998397d5d93fccb3738db4f11c5b13ba1c1ead211b41bc785cad79710a863a6d6fef55d15d48ce7b3a62341b122add542605c1045cd3b22acd407c0eef -doccontainersize 1443332 -doccontainerchecksum ac229dc7db9d8267ff93b60d8d6e84c8e6654c398e22d1d0966065bf83ed52b84b467805dc17d282ab4814b226f8af153b18e7fab39c9d20d4c683674f5294da -docfiles size=362 +longdesc This is a new assembly of Computer Modern fonts including +longdesc extensions in many directions for both Latin based languages, +longdesc non-Latin based languages and Mathematics, all compatible in +longdesc style to CM fonts. In addition to the Regular weight of +longdesc Computer Modern, it provides a Book weight for heavier +longdesc printing. +containersize 5700404 +containerchecksum 8b1e7dcf21af4f88b5341dbe5a726658acca5ba961dae7e657752af8017e9a1916960a78bfd4d7f94988622941a35e0c920b350decd7ca437479fce155bd647b +doccontainersize 14308808 +doccontainerchecksum 84498dbdc801e80a58a69b6d609ece45e1563207093fe43049d1eb5a0a0fbaadb61761c434892502b6224889b9709f19cb6865d34f55636dd3606e0040b4b6e2 +docfiles size=3517 RELOC/doc/fonts/newcomputermodern/README details="Readme" + RELOC/doc/fonts/newcomputermodern/integral.pdf + RELOC/doc/fonts/newcomputermodern/integral.tex + RELOC/doc/fonts/newcomputermodern/newcm-doc.pdf details="Package documentation" + RELOC/doc/fonts/newcomputermodern/newcm-doc.tex RELOC/doc/fonts/newcomputermodern/newcm-unimath-symbols.ltx RELOC/doc/fonts/newcomputermodern/newcm-unimath-symbols.pdf details="Math coverage and symbol comparison" RELOC/doc/fonts/newcomputermodern/newcomputermodern-sample.pdf details="Font samples" RELOC/doc/fonts/newcomputermodern/newcomputermodern-sample.tex -srccontainersize 14023192 -srccontainerchecksum 49f298a28fcd546bcd533ca713bd4cdc72962642c8004adb35f03a418d693fee4732a9bffc133a327efe053602f3cad75eb669e36bffddbc7f6557d01bf25edd -srcfiles size=27996 - RELOC/source/fonts/newcomputermodern/NewCM08-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCM08-BookItalic.sfd - RELOC/source/fonts/newcomputermodern/NewCM08-Italic.sfd - RELOC/source/fonts/newcomputermodern/NewCM08-Regular.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-Bold.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-BoldItalic.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-BookItalic.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-Italic.sfd - RELOC/source/fonts/newcomputermodern/NewCM10-Regular.sfd - RELOC/source/fonts/newcomputermodern/NewCMMath-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCMMath-Regular.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-Bold.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-BoldOblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-BookItalic.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-Italic.sfd - RELOC/source/fonts/newcomputermodern/NewCMMono10-Regular.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans08-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans08-BookOblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans08-Oblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans08-Regular.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-Bold.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-BoldOblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-Book.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-BookOblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-Oblique.sfd - RELOC/source/fonts/newcomputermodern/NewCMSans10-Regular.sfd -runfiles size=4945 + RELOC/doc/fonts/newcomputermodern/opticalmathlm-cropped.pdf + RELOC/doc/fonts/newcomputermodern/opticalmathlm.pdf + RELOC/doc/fonts/newcomputermodern/opticalmathlm.tex + RELOC/doc/fonts/newcomputermodern/source.txz +runfiles size=3395 RELOC/fonts/opentype/public/newcomputermodern/NewCM08-Book.otf RELOC/fonts/opentype/public/newcomputermodern/NewCM08-BookItalic.otf RELOC/fonts/opentype/public/newcomputermodern/NewCM08-Italic.otf @@ -211724,18 +221557,24 @@ runfiles size=4945 RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-BookOblique.otf RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Oblique.otf RELOC/fonts/opentype/public/newcomputermodern/NewCMSans10-Regular.otf - RELOC/tex/latex/newcomputermodern/NewComputerModern.fontspec - RELOC/tex/latex/newcomputermodern/NewComputerModernBook.fontspec - RELOC/tex/latex/newcomputermodern/NewComputerModernMono.fontspec - RELOC/tex/latex/newcomputermodern/NewComputerModernMonoBook.fontspec - RELOC/tex/latex/newcomputermodern/NewComputerModernSans.fontspec - RELOC/tex/latex/newcomputermodern/NewComputerModernSansBook.fontspec + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial08-Bold.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial08-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial08-Regular.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial10-Bold.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial10-Book.otf + RELOC/fonts/opentype/public/newcomputermodern/NewCMUncial10-Regular.otf + RELOC/tex/latex/newcomputermodern/NewCM10-Book.fontspec + RELOC/tex/latex/newcomputermodern/NewCM10-Regular.fontspec + RELOC/tex/latex/newcomputermodern/NewCMMono10-Book.fontspec + RELOC/tex/latex/newcomputermodern/NewCMMono10-Regular.fontspec + RELOC/tex/latex/newcomputermodern/NewCMSans10-Book.fontspec + RELOC/tex/latex/newcomputermodern/NewCMSans10-Regular.fontspec RELOC/tex/latex/newcomputermodern/newcomputermodern.sty catalogue-alias newcm catalogue-ctan /fonts/newcomputermodern catalogue-license gfl -catalogue-topics font font-cm font-body font-proportional font-mono font-serif font-sans font-multilingual font-greek font-cyrillic font-hebrew font-maths font-otf cherokee font-supp -catalogue-version 3.90 +catalogue-topics font font-archaic font-cm font-coptic font-body font-proportional font-mono font-serif font-sans font-multilingual font-greek font-cyrillic font-hebrew font-maths font-medieval font-otf cherokee font-supp linguistic phonetic +catalogue-version 4.4 name newenviron category Package @@ -211906,7 +221745,7 @@ catalogue-version 9.4 name newpax category Package -revision 58212 +revision 64415 shortdesc Experimental package to extract and reinsert PDF annotations relocated 1 longdesc The package is based on the pax package from Heiko Oberdiek. It @@ -211914,11 +221753,11 @@ longdesc offers a lua-based alternative to the java based pax.jar to longdesc extract the annotations from a PDF. The resulting file can then longdesc be used together with pax.sty. It also offers an extended style longdesc which works with all three major engines. -containersize 8444 -containerchecksum 8285b8a9ea9f01668a8b21b2fb45846fb5c6448546fe9dca50e76d59a818d5e6abab83b1712e24339ef8071c0f20e1b6d731fdb80a1f023b9583cf071ddcb371 -doccontainersize 61332 -doccontainerchecksum e36ae86249580c4a3063535b5fd5daa70f4cf5a98dca1f3e27de6e59ba8c124451ca2ab6a68e96251b128d8ed01265a544c70b6b5c80e5dff343b476878dc7bc -docfiles size=98 +containersize 8836 +containerchecksum 0a7cd4311e9e77517e320d1ce1d3a8747e1f13a00a0fe98c72dd394047d56fe7cac81bb4a5562ff057d9052dae85201e8d783e21a3d55425580ec713e303ece9 +doccontainersize 63844 +doccontainerchecksum 1f0148baddf2d0c65456cfd5b1c8204f23574b7a3bc8d394f68cc63e0b397dd8517466f90a5fa5dbf3079c787a6955df44a52b330b67153a771b05543dc34d92 +docfiles size=101 RELOC/doc/latex/newpax/README.md details="Readme" RELOC/doc/latex/newpax/doc-extract-newpax.tex RELOC/doc/latex/newpax/doc-extract-pax.tex @@ -211932,9 +221771,9 @@ docfiles size=98 RELOC/doc/latex/newpax/doc-use-pax.tex RELOC/doc/latex/newpax/newpax.pdf details="Package documentation" RELOC/doc/latex/newpax/newpax.tex -srccontainersize 8676 -srccontainerchecksum c2c240f9ab2488b5b56577d058dd6fce1eefe7eef79936181cb2e3a2369fd3052e892f3bd076fea1d53d35f1861c008c32911e9fe28641ffcf928b961c4eeb5a -srcfiles size=10 +srccontainersize 9040 +srccontainerchecksum 2469863c13b6b2db2d8f03929d52b7d92527e8194e91a90234ab10c588ecc0926155ac65ee297859fdc2cc96022ee4d34da675e2fa094181f77c0edf33830029 +srcfiles size=11 RELOC/source/latex/newpax/newpax.dtx RELOC/source/latex/newpax/newpax.ins runfiles size=10 @@ -211945,11 +221784,11 @@ catalogue-contact-support https://github.com/u-fischer/newpax/issues catalogue-ctan /macros/latex/contrib/newpax catalogue-license lppl1.3c catalogue-topics luatex pdf-feat -catalogue-version 0.51 +catalogue-version 0.53 name newpx category Package -revision 58838 +revision 61806 shortdesc Alternative uses of the PX fonts, with improved metrics relocated 1 longdesc This package, initially based on pxfonts, provides many fixes @@ -211960,11 +221799,11 @@ longdesc options. For proper operation, the packages require that the longdesc packages newtxmath, pxfonts, and TeXGyrePagella be installed longdesc and their map files enabled. execute addMap newpx.map -containersize 1637012 -containerchecksum 0646add23d044178eb3b9727157033c7248e3ad5013b2410b0ee50cbd6a02d4b5378adb9dbe144c21b3515600ed75d8266c4018ddd55bc20d4bcbdfb44c63629 -doccontainersize 452920 -doccontainerchecksum da3c764db5f34c63ac8d6ccb6fc322385f09e41f5a50fce465f6f0792a423aa8ca5976356bdb4ca7252d556369fd073fb463b1109d27ba3f513ada88007986ad -docfiles size=220 +containersize 2860236 +containerchecksum 19a2ae1d832d48a082d3cc693914ff93475a3d4526347fa49dd35a7afa56c65f98ff54ca49f9f1674732922e36bc6e66d8b368e0bc924270af9b4ffe04347cfa +doccontainersize 256092 +doccontainerchecksum ed38d727e5d8af16730df66860fbf2dc0701d9ef850fd2d77dbeaaebb38e826fd435f9a78e3771f7498c2fdce25efaf59909340e330da84ae831b880ee7393b3 +docfiles size=84 RELOC/doc/fonts/newpx/ChangesInV1.4.txt RELOC/doc/fonts/newpx/MANIFEST-newpx.txt RELOC/doc/fonts/newpx/README details="Readme" @@ -211972,37 +221811,48 @@ docfiles size=220 RELOC/doc/fonts/newpx/newpxdoc.tex RELOC/doc/fonts/newpx/newpxeg-crop.pdf RELOC/doc/fonts/newpx/pxfontseg-crop.pdf -runfiles size=1791 +runfiles size=2504 RELOC/fonts/afm/public/newpx/NewPXBMI.afm RELOC/fonts/afm/public/newpx/NewPXBMI_gnu.afm RELOC/fonts/afm/public/newpx/NewPXMI.afm RELOC/fonts/afm/public/newpx/NewPXMI_gnu.afm - RELOC/fonts/afm/public/newpx/TeXGyrePagella-Regular.afm - RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Bold.afm - RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-BoldItalic.afm - RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Italic.afm - RELOC/fonts/afm/public/newpx/TeXGyrePagellaX-Regular.afm RELOC/fonts/afm/public/newpx/npxsups-Bold.afm RELOC/fonts/afm/public/newpx/npxsups-BoldItalic.afm RELOC/fonts/afm/public/newpx/npxsups-Italic.afm RELOC/fonts/afm/public/newpx/npxsups-Regular.afm RELOC/fonts/afm/public/newpx/pxbmiaX.afm + RELOC/fonts/afm/public/newpx/pxbsyb.afm RELOC/fonts/afm/public/newpx/pxbsys.afm RELOC/fonts/afm/public/newpx/pxmiaX.afm RELOC/fonts/afm/public/newpx/pxsys.afm RELOC/fonts/afm/public/newpx/zplb.afm RELOC/fonts/afm/public/newpx/zplbi.afm + RELOC/fonts/afm/public/newpx/zplbsl.afm RELOC/fonts/afm/public/newpx/zplr.afm RELOC/fonts/afm/public/newpx/zplri.afm - RELOC/fonts/enc/dvips/newpx/npxsups_ly1.enc - RELOC/fonts/enc/dvips/newpx/npxsups_ot1.enc - RELOC/fonts/enc/dvips/newpx/npxsups_t1.enc + RELOC/fonts/afm/public/newpx/zplrsl.afm + RELOC/fonts/enc/dvips/newpx/npxdnom_LY1.enc + RELOC/fonts/enc/dvips/newpx/npxdnom_OT1.enc + RELOC/fonts/enc/dvips/newpx/npxdnom_T1.enc + RELOC/fonts/enc/dvips/newpx/npxnumr_LY1.enc + RELOC/fonts/enc/dvips/newpx/npxnumr_OT1.enc + RELOC/fonts/enc/dvips/newpx/npxnumr_T1.enc + RELOC/fonts/enc/dvips/newpx/npxsubs_LY1.enc + RELOC/fonts/enc/dvips/newpx/npxsubs_OT1.enc + RELOC/fonts/enc/dvips/newpx/npxsubs_T1.enc + RELOC/fonts/enc/dvips/newpx/npxsups_LY1.enc + RELOC/fonts/enc/dvips/newpx/npxsups_OT1.enc + RELOC/fonts/enc/dvips/newpx/npxsups_T1.enc RELOC/fonts/enc/dvips/newpx/tgpdiff.enc + RELOC/fonts/enc/dvips/newpx/zpl_OsF.enc + RELOC/fonts/enc/dvips/newpx/zpl_TOsF.enc RELOC/fonts/map/dvips/newpx/newpx.map RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Bold.otf RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-BoldItalic.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-BoldSlanted.otf RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Italic.otf RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Regular.otf + RELOC/fonts/opentype/public/newpx/TeXGyrePagellaX-Slanted.otf RELOC/fonts/tfm/public/newpx/NewPXBMI.tfm RELOC/fonts/tfm/public/newpx/NewPXBMI_gnu.tfm RELOC/fonts/tfm/public/newpx/NewPXMI.tfm @@ -212095,6 +221945,42 @@ runfiles size=1791 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-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-BoldSlanted-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 @@ -212113,9 +221999,6 @@ runfiles size=1791 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 @@ -212125,9 +222008,6 @@ runfiles size=1791 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 @@ -212139,6 +222019,7 @@ runfiles size=1791 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-ot1r.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 @@ -212148,6 +222029,7 @@ runfiles size=1791 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-ot1r.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 @@ -212157,6 +222039,7 @@ runfiles size=1791 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-ot1r.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 @@ -212166,6 +222049,7 @@ runfiles size=1791 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-ot1r.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 @@ -212173,6 +222057,66 @@ runfiles size=1791 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/zpl-Slanted-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newpx/zpl-Slanted-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-Bold-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-Italic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-Regular-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplLF-Slanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-Bold-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-Italic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-Regular-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplOsF-Slanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-Bold-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-Italic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-Regular-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTLF-Slanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-Bold-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-Italic-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-Regular-ts1.tfm + RELOC/fonts/tfm/public/newpx/zplTOsF-Slanted-ts1.tfm RELOC/fonts/tfm/public/newpx/zplb-x.tfm RELOC/fonts/tfm/public/newpx/zplbexa.tfm RELOC/fonts/tfm/public/newpx/zplbexx.tfm @@ -212183,12 +222127,66 @@ runfiles size=1791 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/zpldnom-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldSlanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldSlanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-BoldSlanted-t1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Slanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Slanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zpldnom-Slanted-t1.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/zplnumr-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldSlanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldSlanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-BoldSlanted-t1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Slanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Slanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplnumr-Slanted-t1.tfm RELOC/fonts/tfm/public/newpx/zplr-x.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Bold-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Bold-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Bold-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldSlanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldSlanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-BoldSlanted-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Italic-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Italic-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Italic-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Regular-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Regular-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Regular-t1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Slanted-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Slanted-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplsubs-Slanted-t1.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 @@ -212204,6 +222202,108 @@ runfiles size=1791 RELOC/fonts/tfm/public/newpx/zplsy.tfm RELOC/fonts/tfm/public/newpx/zplsyc.tfm RELOC/fonts/tfm/public/newpx/zplsym.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/zplth-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-ot1r.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-ot1r.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-ot1r.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-ot1r.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newpx/ztm-Regular-tosf-t1.tfm RELOC/fonts/type1/public/newpx/NewPXBMI.pfb RELOC/fonts/type1/public/newpx/NewPXBMI_gnu.pfb RELOC/fonts/type1/public/newpx/NewPXMI.pfb @@ -212218,58 +222318,12 @@ runfiles size=1791 RELOC/fonts/type1/public/newpx/pxsys.pfb RELOC/fonts/type1/public/newpx/zplb.pfb RELOC/fonts/type1/public/newpx/zplbi.pfb + RELOC/fonts/type1/public/newpx/zplbsl.pfb RELOC/fonts/type1/public/newpx/zplr.pfb RELOC/fonts/type1/public/newpx/zplri.pfb + RELOC/fonts/type1/public/newpx/zplrsl.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 @@ -212291,9 +222345,16 @@ runfiles size=1791 RELOC/tex/latex/newpx/lmsnpxsy.fd RELOC/tex/latex/newpx/lmxnpxexx.fd RELOC/tex/latex/newpx/ly1npxtt.fd + RELOC/tex/latex/newpx/ly1zpldnom.fd + RELOC/tex/latex/newpx/ly1zplinf.fd RELOC/tex/latex/newpx/ly1zpllf.fd RELOC/tex/latex/newpx/ly1zplosf.fd + RELOC/tex/latex/newpx/ly1zplsubs.fd RELOC/tex/latex/newpx/ly1zplsups.fd + RELOC/tex/latex/newpx/ly1zplth-lf.fd + RELOC/tex/latex/newpx/ly1zplth-osf.fd + RELOC/tex/latex/newpx/ly1zplth-tlf.fd + RELOC/tex/latex/newpx/ly1zplth-tosf.fd RELOC/tex/latex/newpx/ly1zpltlf.fd RELOC/tex/latex/newpx/ly1zpltosf.fd RELOC/tex/latex/newpx/newpx-subs.tex @@ -212301,15 +222362,30 @@ runfiles size=1791 RELOC/tex/latex/newpx/newpxtext.sty RELOC/tex/latex/newpx/omlnpxmi.fd RELOC/tex/latex/newpx/ot1npxtt.fd + RELOC/tex/latex/newpx/ot1zpldnom.fd + RELOC/tex/latex/newpx/ot1zplinf.fd RELOC/tex/latex/newpx/ot1zpllf.fd RELOC/tex/latex/newpx/ot1zplosf.fd + RELOC/tex/latex/newpx/ot1zplsubs.fd RELOC/tex/latex/newpx/ot1zplsups.fd + RELOC/tex/latex/newpx/ot1zplth-lf.fd + RELOC/tex/latex/newpx/ot1zplth-osf.fd + RELOC/tex/latex/newpx/ot1zplth-tlf.fd + RELOC/tex/latex/newpx/ot1zplth-tosf.fd RELOC/tex/latex/newpx/ot1zpltlf.fd RELOC/tex/latex/newpx/ot1zpltosf.fd RELOC/tex/latex/newpx/t1npxtt.fd + RELOC/tex/latex/newpx/t1zpldnom.fd + RELOC/tex/latex/newpx/t1zplinf.fd RELOC/tex/latex/newpx/t1zpllf.fd + RELOC/tex/latex/newpx/t1zplnumr.fd RELOC/tex/latex/newpx/t1zplosf.fd + RELOC/tex/latex/newpx/t1zplsubs.fd RELOC/tex/latex/newpx/t1zplsups.fd + RELOC/tex/latex/newpx/t1zplth-lf.fd + RELOC/tex/latex/newpx/t1zplth-osf.fd + RELOC/tex/latex/newpx/t1zplth-tlf.fd + RELOC/tex/latex/newpx/t1zplth-tosf.fd RELOC/tex/latex/newpx/t1zpltlf.fd RELOC/tex/latex/newpx/t1zpltosf.fd RELOC/tex/latex/newpx/ts1npxtt.fd @@ -212323,11 +222399,10 @@ runfiles size=1791 RELOC/tex/latex/newpx/unpxsyc.fd RELOC/tex/latex/newpx/unpxsym.fd RELOC/tex/latex/newpx/unpxtt.fd -catalogue-also pxfonts catalogue-ctan /fonts/newpx -catalogue-license lppl +catalogue-license lppl ofl catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc -catalogue-version 1.415 +catalogue-version 1.505 name newsletr category Package @@ -212388,7 +222463,7 @@ catalogue-version 1.0 name newtx category Package -revision 58748 +revision 62369 shortdesc Alternative uses of the TX fonts, with improved metrics relocated 1 longdesc The bundle splits txfonts.sty (from the TX fonts distribution) @@ -212403,11 +222478,11 @@ longdesc garamondx package, thus offering a garamond-alike longdesc text-with-maths combination. depend kastrup execute addMap newtx.map -containersize 5580552 -containerchecksum 2ff1eb8ca3fbda170c466e64ad874abcb17d657203a84809fac9e4f909d776eed95fbd69438b9fcdc3f0fd8f76ce5e9e662768e3ee51a2ec22ca4b071fe71b6b -doccontainersize 972108 -doccontainerchecksum d6a89d72862332f08134e1a47ec53de58eb0fdfc7191f380ba8eda740a2118be03cb5898f880a1bfa3778e2e107096d5e9062ff875269a698f79e3506043de6e -docfiles size=437 +containersize 6412308 +containerchecksum 07c63e655ebb6381bb7eaa4f0f1a35054894ee6db55992cb8fadc04a2dc62470767a12661a8cc697c8d15df40861835463ff7a0bad449f9fb86b59093642b89c +doccontainersize 639884 +doccontainerchecksum e615ce1c1a9478358af27885cd9c0b8d7ad152a3fb437ab705bf682d5849bd705a248de2d879ea9b4de0833984c15b0ad59c4da7da88c9e12d21fff9e4fd9efa +docfiles size=231 RELOC/doc/fonts/newtx/MANIFEST-newtx.txt RELOC/doc/fonts/newtx/README details="Readme" RELOC/doc/fonts/newtx/implementation.pdf details="Implementation notes" @@ -212422,7 +222497,7 @@ docfiles size=437 RELOC/doc/fonts/newtx/sample-ntx-crop.pdf RELOC/doc/fonts/newtx/sample-ptmx-crop.pdf RELOC/doc/fonts/newtx/sample-tx-crop.pdf -runfiles size=3240 +runfiles size=4512 RELOC/fonts/afm/public/newtx/LibertineI-5nu.afm RELOC/fonts/afm/public/newtx/LibertineMathBMI.afm RELOC/fonts/afm/public/newtx/LibertineMathBMI5.afm @@ -212439,6 +222514,7 @@ runfiles size=3240 RELOC/fonts/afm/public/newtx/NewTXMI.afm RELOC/fonts/afm/public/newtx/NewTXMI5.afm RELOC/fonts/afm/public/newtx/NewTXMI7.afm + RELOC/fonts/afm/public/newtx/TeXGyreTermesX-Slanted.afm RELOC/fonts/afm/public/newtx/ntxsups-Bold.afm RELOC/fonts/afm/public/newtx/ntxsups-BoldItalic.afm RELOC/fonts/afm/public/newtx/ntxsups-Italic.afm @@ -212464,8 +222540,12 @@ runfiles size=3240 RELOC/fonts/afm/public/newtx/txsys.afm RELOC/fonts/afm/public/newtx/ztmb.afm RELOC/fonts/afm/public/newtx/ztmbi.afm + RELOC/fonts/afm/public/newtx/ztmbsl.afm + RELOC/fonts/afm/public/newtx/ztmfigs-bsl.afm + RELOC/fonts/afm/public/newtx/ztmfigs-sl.afm RELOC/fonts/afm/public/newtx/ztmr.afm RELOC/fonts/afm/public/newtx/ztmri.afm + RELOC/fonts/afm/public/newtx/ztmrsl.afm RELOC/fonts/enc/dvips/newtx/alt-mn-greek.enc RELOC/fonts/enc/dvips/newtx/libcaps.enc RELOC/fonts/enc/dvips/newtx/libertinealt.enc @@ -212516,6 +222596,9 @@ runfiles size=3240 RELOC/fonts/enc/dvips/newtx/ntxdenoms_LY1.enc RELOC/fonts/enc/dvips/newtx/ntxdenoms_OT1.enc RELOC/fonts/enc/dvips/newtx/ntxdenoms_T1.enc + RELOC/fonts/enc/dvips/newtx/ntxinf_ly1.enc + RELOC/fonts/enc/dvips/newtx/ntxinf_ot1.enc + RELOC/fonts/enc/dvips/newtx/ntxinf_t1.enc RELOC/fonts/enc/dvips/newtx/ntxmiaalt.enc RELOC/fonts/enc/dvips/newtx/ntxsups_ly1.enc RELOC/fonts/enc/dvips/newtx/ntxsups_ot1.enc @@ -212523,8 +222606,10 @@ runfiles size=3240 RELOC/fonts/map/dvips/newtx/newtx.map RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Bold.otf RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-BoldItalic.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-BoldSlanted.otf RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Italic.otf RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Regular.otf + RELOC/fonts/opentype/public/newtx/TeXGyreTermesX-Slanted.otf RELOC/fonts/opentype/public/newtx/ntxsups-Bold.otf RELOC/fonts/opentype/public/newtx/ntxsups-BoldItalic.otf RELOC/fonts/opentype/public/newtx/ntxsups-Italic.otf @@ -212581,6 +222666,9 @@ runfiles size=3240 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/ly1xsl-lf.tfm + RELOC/fonts/tfm/public/newtx/ly1xsl-osf.tfm + RELOC/fonts/tfm/public/newtx/ly1xsl-tosf.tfm RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ly1.tfm RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Bold-lf-ot1r.tfm @@ -212661,6 +222749,42 @@ runfiles size=3240 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-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-BoldSlanted-tosf-t1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ly1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-lf-ot1r.tfm @@ -212681,9 +222805,6 @@ runfiles size=3240 RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-scl-t1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-osf-th-t1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ly1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-ot1r.tfm @@ -212694,9 +222815,6 @@ runfiles size=3240 RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-scl-t1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-t1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ly1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-ot1.tfm - RELOC/fonts/tfm/public/newtx/ntx-Italic-tlf-th-t1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ly1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1.tfm RELOC/fonts/tfm/public/newtx/ntx-Italic-tosf-ot1r.tfm @@ -212747,6 +222865,42 @@ runfiles size=3240 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/ntx-Slanted-lf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-scl-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-scl-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-scl-t1.tfm + RELOC/fonts/tfm/public/newtx/ntx-Slanted-tosf-t1.tfm RELOC/fonts/tfm/public/newtx/ntxbex.tfm RELOC/fonts/tfm/public/newtx/ntxbexa.tfm RELOC/fonts/tfm/public/newtx/ntxbexb.tfm @@ -212773,6 +222927,24 @@ runfiles size=3240 RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-ly1.tfm RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-ot1.tfm RELOC/fonts/tfm/public/newtx/ntxdenoms-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Bold-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Bold-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Bold-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldSlanted-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldSlanted-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-BoldSlanted-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Italic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Italic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Italic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Regular-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Regular-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Slanted-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Slanted-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxdnom-Slanted-t1.tfm RELOC/fonts/tfm/public/newtx/ntxebgbmi.tfm RELOC/fonts/tfm/public/newtx/ntxebgbmia.tfm RELOC/fonts/tfm/public/newtx/ntxebgmi.tfm @@ -212781,6 +222953,24 @@ runfiles size=3240 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/ntxinf-Bold-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Bold-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Bold-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldItalic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldSlanted-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldSlanted-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-BoldSlanted-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Italic-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Italic-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Italic-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Regular-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Regular-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Regular-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Slanted-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Slanted-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxinf-Slanted-t1.tfm RELOC/fonts/tfm/public/newtx/ntxmi.tfm RELOC/fonts/tfm/public/newtx/ntxmi0.tfm RELOC/fonts/tfm/public/newtx/ntxmi05.tfm @@ -212814,6 +223004,18 @@ runfiles size=3240 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/ntxth-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ntxth-Slanted-tlf-t1.tfm RELOC/fonts/tfm/public/newtx/nxlbmi.tfm RELOC/fonts/tfm/public/newtx/nxlbmi0.tfm RELOC/fonts/tfm/public/newtx/nxlbmi01.tfm @@ -212868,6 +223070,9 @@ runfiles size=3240 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/ot1xsl-lf.tfm + RELOC/fonts/tfm/public/newtx/ot1xsl-osf.tfm + RELOC/fonts/tfm/public/newtx/ot1xsl-tosf.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 @@ -212897,6 +223102,9 @@ runfiles size=3240 RELOC/fonts/tfm/public/newtx/rtxmio.tfm RELOC/fonts/tfm/public/newtx/stx2rm.tfm RELOC/fonts/tfm/public/newtx/stxscr.tfm + RELOC/fonts/tfm/public/newtx/t1xsl-lf.tfm + RELOC/fonts/tfm/public/newtx/t1xsl-osf.tfm + RELOC/fonts/tfm/public/newtx/t1xsl-tosf.tfm RELOC/fonts/tfm/public/newtx/txbex-bar.tfm RELOC/fonts/tfm/public/newtx/txbexas.tfm RELOC/fonts/tfm/public/newtx/txbexs.tfm @@ -212913,6 +223121,20 @@ runfiles size=3240 RELOC/fonts/tfm/public/newtx/txsy5.tfm RELOC/fonts/tfm/public/newtx/txsy7.tfm RELOC/fonts/tfm/public/newtx/txsys.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-lf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-lf-t1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-lf-texnansi.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-osf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-osf-t1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-osf-texnansi.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tlf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tlf-t1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tlf-texnansi.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tosf-ot1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tosf-t1.tfm + RELOC/fonts/tfm/public/newtx/ztmbsl-tosf-texnansi.tfm + RELOC/fonts/tfm/public/newtx/ztmfigs-bsl.tfm + RELOC/fonts/tfm/public/newtx/ztmfigs-sl.tfm RELOC/fonts/tfm/public/newtx/zutbmi.tfm RELOC/fonts/tfm/public/newtx/zutbmia.tfm RELOC/fonts/tfm/public/newtx/zutmi.tfm @@ -213015,8 +223237,12 @@ runfiles size=3240 RELOC/fonts/type1/public/newtx/txsys.pfb RELOC/fonts/type1/public/newtx/ztmb.pfb RELOC/fonts/type1/public/newtx/ztmbi.pfb + RELOC/fonts/type1/public/newtx/ztmbsl.pfb + RELOC/fonts/type1/public/newtx/ztmfigs-bsl.pfb + RELOC/fonts/type1/public/newtx/ztmfigs-sl.pfb RELOC/fonts/type1/public/newtx/ztmr.pfb RELOC/fonts/type1/public/newtx/ztmri.pfb + RELOC/fonts/type1/public/newtx/ztmrsl.pfb RELOC/fonts/type1/public/newtx/zxlr-5nums.pfb RELOC/fonts/type1/public/newtx/zxlr-7nums.pfb RELOC/fonts/type1/public/newtx/zxlr.pfb @@ -213026,6 +223252,9 @@ runfiles size=3240 RELOC/fonts/vf/public/newtx/ebgbmia.vf RELOC/fonts/vf/public/newtx/ebgmi0.vf RELOC/fonts/vf/public/newtx/ebgmia.vf + RELOC/fonts/vf/public/newtx/ly1xsl-lf.vf + RELOC/fonts/vf/public/newtx/ly1xsl-osf.vf + RELOC/fonts/vf/public/newtx/ly1xsl-tosf.vf RELOC/fonts/vf/public/newtx/ntx-Bold-lf-ot1.vf RELOC/fonts/vf/public/newtx/ntx-Bold-osf-ot1.vf RELOC/fonts/vf/public/newtx/ntx-Bold-tlf-ot1.vf @@ -213136,6 +223365,12 @@ runfiles size=3240 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/ot1xsl-lf.vf + RELOC/fonts/vf/public/newtx/ot1xsl-osf.vf + RELOC/fonts/vf/public/newtx/ot1xsl-tosf.vf + RELOC/fonts/vf/public/newtx/t1xsl-lf.vf + RELOC/fonts/vf/public/newtx/t1xsl-osf.vf + RELOC/fonts/vf/public/newtx/t1xsl-tosf.vf RELOC/fonts/vf/public/newtx/zutbmi.vf RELOC/fonts/vf/public/newtx/zutbmia.vf RELOC/fonts/vf/public/newtx/zutmi.vf @@ -213143,17 +223378,25 @@ runfiles size=3240 RELOC/tex/latex/newtx/TeXGyreTermesX.fontspec RELOC/tex/latex/newtx/lmsntxsy.fd RELOC/tex/latex/newtx/lmxntxexx.fd + RELOC/tex/latex/newtx/ly1minebgaramond.fd RELOC/tex/latex/newtx/ly1minlibertine.fd - RELOC/tex/latex/newtx/ly1ntxdenoms.fd + RELOC/tex/latex/newtx/ly1minntx.fd + RELOC/tex/latex/newtx/ly1ntxdnom.fd + RELOC/tex/latex/newtx/ly1ntxinf.fd RELOC/tex/latex/newtx/ly1ntxlf.fd RELOC/tex/latex/newtx/ly1ntxosf.fd RELOC/tex/latex/newtx/ly1ntxsups.fd + RELOC/tex/latex/newtx/ly1ntxth-lf.fd + RELOC/tex/latex/newtx/ly1ntxth-osf.fd + RELOC/tex/latex/newtx/ly1ntxth-tlf.fd + RELOC/tex/latex/newtx/ly1ntxth-tosf.fd RELOC/tex/latex/newtx/ly1ntxtlf.fd RELOC/tex/latex/newtx/ly1ntxtosf.fd RELOC/tex/latex/newtx/ly1ntxtt.fd RELOC/tex/latex/newtx/newtx-ebgaramond-subs.tex RELOC/tex/latex/newtx/newtx-libertine-subs.tex RELOC/tex/latex/newtx/newtx-subs.tex + RELOC/tex/latex/newtx/newtx.sty RELOC/tex/latex/newtx/newtxmath.sty RELOC/tex/latex/newtx/newtxtext.sty RELOC/tex/latex/newtx/omlntxebgmi.fd @@ -213163,20 +223406,34 @@ runfiles size=3240 RELOC/tex/latex/newtx/omlzbvmi.fd RELOC/tex/latex/newtx/omlzmnmi.fd RELOC/tex/latex/newtx/omlzutmi.fd + RELOC/tex/latex/newtx/ot1minebgaramond.fd RELOC/tex/latex/newtx/ot1minlibertine.fd - RELOC/tex/latex/newtx/ot1ntxdenoms.fd + RELOC/tex/latex/newtx/ot1minntx.fd + RELOC/tex/latex/newtx/ot1ntxdnom.fd + RELOC/tex/latex/newtx/ot1ntxinf.fd RELOC/tex/latex/newtx/ot1ntxlf.fd RELOC/tex/latex/newtx/ot1ntxosf.fd RELOC/tex/latex/newtx/ot1ntxsups.fd + RELOC/tex/latex/newtx/ot1ntxth-lf.fd + RELOC/tex/latex/newtx/ot1ntxth-osf.fd + RELOC/tex/latex/newtx/ot1ntxth-tlf.fd + RELOC/tex/latex/newtx/ot1ntxth-tosf.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/t1minebgaramond.fd RELOC/tex/latex/newtx/t1minlibertine.fd - RELOC/tex/latex/newtx/t1ntxdenoms.fd + RELOC/tex/latex/newtx/t1minntx.fd + RELOC/tex/latex/newtx/t1ntxdnom.fd + RELOC/tex/latex/newtx/t1ntxinf.fd RELOC/tex/latex/newtx/t1ntxlf.fd RELOC/tex/latex/newtx/t1ntxosf.fd RELOC/tex/latex/newtx/t1ntxsups.fd + RELOC/tex/latex/newtx/t1ntxth-lf.fd + RELOC/tex/latex/newtx/t1ntxth-osf.fd + RELOC/tex/latex/newtx/t1ntxth-tlf.fd + RELOC/tex/latex/newtx/t1ntxth-tosf.fd RELOC/tex/latex/newtx/t1ntxtlf.fd RELOC/tex/latex/newtx/t1ntxtosf.fd RELOC/tex/latex/newtx/t1ntxtt.fd @@ -213196,11 +223453,11 @@ catalogue-also minion2newtx catalogue-ctan /fonts/newtx catalogue-license lppl1.3 catalogue-topics font font-body font-maths font-serif font-proportional font-type1 font-otf font-supp font-t1enc -catalogue-version 1.642 +catalogue-version 1.71 name newtxsf category Package -revision 56527 +revision 59227 shortdesc Sans-math fonts for use with newtx relocated 1 longdesc The package provides a maths support that amounts to @@ -213208,10 +223465,10 @@ longdesc modifications of the STIX sans serif Roman and Greek letters longdesc with most symbols taken from newtxmath (which must of course be longdesc installed and its map file enabled). execute addMap newtxsf.map -containersize 105904 -containerchecksum 14fdd049243799447b0ba9380cfae1dbe58496e67d30cb7bb3a82c685f449c6f3070e1bce674ac173a9397ebb1a1d40d1dc8db05f04174908dd157e919e7c7aa -doccontainersize 332352 -doccontainerchecksum bf4ac517cb79ef6b1e541b2a3eb8b5ebdbfb5e3638234438453f79ce0bb1d87f815d20c761dccf2822e581222cca0439c189e02b307d8c0044fd194aa1d2016d +containersize 105908 +containerchecksum c7665696fe28a62a2dda826b706bcefb0d468b575232c1e04a69c58a843631e631098b4feb7b93fe8bf1c443e376fa8d8dcdb17346dd188d89b9fa525dcac33e +doccontainersize 332420 +doccontainerchecksum 98ca9aead749cf70e54acc6414d82d027160ba9d730747a38d0e55479dd4439d198cfd4093e22636e9eca58aaafba6818bb3d3583e41f4a46e0f44b1e10cc424 docfiles size=93 RELOC/doc/fonts/newtxsf/OFL-FAQ.txt RELOC/doc/fonts/newtxsf/OFL.txt @@ -213243,7 +223500,7 @@ catalogue-also newtx stix catalogue-ctan /fonts/newtxsf catalogue-license ofl catalogue-topics font font-sans font-maths font-type1 -catalogue-version 1.053 +catalogue-version 1.054 name newtxtt category Package @@ -213476,7 +223733,7 @@ catalogue-version 1.1 name newverbs category Package -revision 58256 +revision 64833 shortdesc Define new versions of \verb, including short verb versions relocated 1 longdesc The package allows the definition of \verb variants which add @@ -213488,28 +223745,29 @@ longdesc In addition, it is possible to collect an argument verbatim to longdesc either typeset or write it into a file. The \Verbdef command longdesc defines verbatim text to a macro which can later be used to longdesc write the verbatim text to a file. -containersize 2844 -containerchecksum 146e0d503ff458d22e002f11b9ec89bf17595ff758c0b0a1644f340ece93553b86fa46e8aae590e4973603a441634f86666a4926e1c828523a28969585546dea -doccontainersize 221216 -doccontainerchecksum 950a4763975bfde9c28101e90f26e590d00889e67ae78e0d04d027bd9c5ec050c2d24c99e4c1ebb13f06b5a75c7ec16ed24d30c1d95ee5c121feff063268cd49 -docfiles size=56 - RELOC/doc/latex/newverbs/README details="Readme" +containersize 2848 +containerchecksum f2e2cd3fd2712d3333c7caa9e74a16300d7f08327b9bc7f44362570377feed31a206e6b09df15c524dcbfe39ffc54388de4fca90e180e38d28cf9cfbba79ab2e +doccontainersize 228660 +doccontainerchecksum 7524a6e767edc5f55d96026f947e17e42f54138157bfd1851832dd139617939661ba5a4e759b4cf313990077dc9ed240c032cfe706b595af4d9a4197e519fd1f +docfiles size=59 + RELOC/doc/latex/newverbs/DEPENDS.txt + RELOC/doc/latex/newverbs/README.txt details="Readme" RELOC/doc/latex/newverbs/newverbs.pdf details="Package documentation" -srccontainersize 7484 -srccontainerchecksum aaaba6fee806ca1f85cc0ea822db6cf8ff508f0fd27fc7b9de2ced527df5c1464f30a049cdcb5bee1ce66c619997dda1253c9b6030c99572968f5480f7306cb2 +srccontainersize 7520 +srccontainerchecksum ddb1f40238ca2f622180ea640a86abf993add81c44ea3a459c54b1c114c0b78d4940536b712ab444e93495492b5c0deb02c211b06e00f8fbbdc69ebc4097f786 srcfiles size=9 RELOC/source/latex/newverbs/newverbs.dtx RELOC/source/latex/newverbs/newverbs.ins runfiles size=2 RELOC/tex/latex/newverbs/newverbs.sty catalogue-also shortvrb -catalogue-contact-bugs https://sourceforge.net/p/newverbs/tickets/ -catalogue-contact-home https://sourceforge.net/p/newverbs/ -catalogue-contact-repository https://sourceforge.net/p/newverbs/code/ +catalogue-contact-bugs https://github.com/MartinScharrer/newverbs/issues +catalogue-contact-home https://github.com/MartinScharrer/newverbs +catalogue-contact-repository https://github.com/MartinScharrer/newverbs.git catalogue-ctan /macros/latex/contrib/newverbs -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics verbatim -catalogue-version 1.6 +catalogue-version 1.6a name nextpage category Package @@ -213554,7 +223812,7 @@ catalogue-topics font-sel name nicefilelist category Package -revision 28527 +revision 65842 shortdesc Provide \listfiles alignment relocated 1 longdesc The package extends longnamefilelist, keeping separate columns @@ -213562,30 +223820,31 @@ longdesc for date, version and "caption" (the caption now separately longdesc listed). Alignment is not disturbed by short file name longdesc extensions, such as ".fd". The package is not compatible with longdesc longnamefilelist: users need to re-read the documentation. -containersize 6364 -containerchecksum 4e3e1b651a5f3828c1806ee199ddff3a022f27381da241f2d9400cc3943d9aa29e0dd56bd10d7fab60da1901f221cb54c74823b35f163ace0efbd3217b767ca3 -doccontainersize 598780 -doccontainerchecksum 5c909c6dce453a7a73abd63896c0916db3f609b7d4283b70af33bfc31ec44e7aa5b3dc2e8d1ef6fb3d33605d23e079db4e7cadf4fa13197823ca3c177b82f527 -docfiles size=161 +containersize 8396 +containerchecksum deaf84bd004172584e0437f3f15dacbed3d49ef6bfdba15e77e0c888bc03e35a634107469ae979b38d1e5519f4c8236cafed71c0ec46b9e7735041f234c03f96 +doccontainersize 605056 +doccontainerchecksum efbc5965c9658e1f44182bf92f695b2d200cbdb8c5c70e23631b31603682168c0cfa5e114615483f7d897fec175267ef9d7fd0040f653e75defbe88bfb395bc5 +docfiles size=151 RELOC/doc/latex/nicefilelist/README details="Readme" RELOC/doc/latex/nicefilelist/SrcFILEs.txt + RELOC/doc/latex/nicefilelist/nicefilelist.RLS RELOC/doc/latex/nicefilelist/nicefilelist.pdf details="Package documentation" -srccontainersize 7160 -srccontainerchecksum b7915ca4c8a24ae84b1caea7bbdd395f5c12305a81f193f35ab4bfe91a12a21417e41b5d46b6ca72c69357782a1e6e4a8366e0bad85a9c453759ea6bd1ee4874 -srcfiles size=8 +srccontainersize 7896 +srccontainerchecksum f520f4114d7f44b3361fead74f19750a4765f0397b158d2cf8c0076dff4689418bdfa0f731dc9383a74da6ff6e36a84f9658432a271352b904cd816409b026e9 +srcfiles size=10 + RELOC/source/latex/nicefilelist/SrcFILEs.txt RELOC/source/latex/nicefilelist/empty.f + RELOC/source/latex/nicefilelist/nicefilelist.RLS RELOC/source/latex/nicefilelist/nicefilelist.tex RELOC/source/latex/nicefilelist/provonly.fd RELOC/source/latex/nicefilelist/srcfiles.tex RELOC/source/latex/nicefilelist/wrong.prv -runfiles size=5 - RELOC/tex/latex/nicefilelist/nicefilelist.RLS +runfiles size=7 RELOC/tex/latex/nicefilelist/nicefilelist.sty -catalogue-contact-support http://www.webdesign-bu.de/uwe_lueck/contact.html catalogue-ctan /macros/latex/contrib/nicefilelist -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics doc-mgmt -catalogue-version 0.7a +catalogue-version 0.9b name niceframe category Package @@ -213658,7 +223917,7 @@ catalogue-topics font font-type1 font-decor name nicematrix category Package -revision 58987 +revision 66461 shortdesc Improve the typesetting of mathematical matrices with PGF relocated 1 longdesc This package is based on the package array. It creates PGF/TikZ @@ -213670,26 +223929,26 @@ longdesc border matrices); control of the width of the columns; tools to longdesc color rows and columns with a good PDF result; blocks of cells; longdesc etc. The package requires and loads l3keys2e, xparse, array, longdesc amsmath, pgfcore, and the module shapes of PGF. -containersize 28844 -containerchecksum acb3bea7fbf5c5693549dd5556addfe5695e3eda66d6d9db7de4fb41fd91f341a1ff8e61322ec30a4c3a726c602314502972f7d5223f71be556798fa2d86047c -doccontainersize 1668768 -doccontainerchecksum 30b06ba14cb06e828858bb74f31b454a802ef21968cb9d887687fe9f294f6a562184fbe124cb936584b7ca76481fb8828fde796af0da117d88f6edefb63dbdc1 -docfiles size=457 +containersize 38672 +containerchecksum 14401dfada7723e6420ca9a4a19b804c224bffc78614eb0fbca085729249b7b691cdac9831ec025f455cc2af4b2f7e1cde1eef9954880c66e979821c82423270 +doccontainersize 1889540 +doccontainerchecksum 97732249f806506789c1e2a9b5cccc03774eeca528f84f5e8c273424595c04cedfc42c6d1c42d4d134fb8b2acd7473a69210d849eea9cf95baecd7d77e7bad8d +docfiles size=520 RELOC/doc/latex/nicematrix/README.md details="Readme" RELOC/doc/latex/nicematrix/nicematrix-french.pdf details="Package documentation in French" language="fr" RELOC/doc/latex/nicematrix/nicematrix-french.tex RELOC/doc/latex/nicematrix/nicematrix.pdf details="Package documentation" -srccontainersize 98308 -srccontainerchecksum 68da52316a3494a9dd613f8e673e23c3c633576470d475637eb4db7d29ffebb604afe966ca9fc0ca89655621f815168070667ca0345a7d31b9bddbfff3d97e4f -srcfiles size=149 +srccontainersize 123744 +srccontainerchecksum 0ef0ba845876a5f6edbb67b71d71daefec440f48ba0b68b941f66df7cab0618321c79c7baa3fba95b15c58f50e413d03098d651325f6a394f2a6f5f13c7c9994 +srcfiles size=191 RELOC/source/latex/nicematrix/nicematrix.dtx RELOC/source/latex/nicematrix/nicematrix.ins -runfiles size=63 +runfiles size=86 RELOC/tex/latex/nicematrix/nicematrix.sty catalogue-ctan /macros/latex/contrib/nicematrix catalogue-license lppl1.3 catalogue-topics maths matrix pgf-tikz expl3 -catalogue-version 5.15 +catalogue-version 6.16 name nicetext category Package @@ -214201,37 +224460,40 @@ catalogue-version 1.014 name nimsticks category Package -revision 55877 +revision 64118 shortdesc Draws sticks for games of multi-pile Nim relocated 1 longdesc This LaTeX package provides commands \drawnimstick to draw a longdesc single nim stick and \nimgame which represents games of longdesc multi-pile Nim. Nim sticks are drawn with a little random -longdesc wobble so they look 'thrown together' and not too regular. -containersize 1776 -containerchecksum d2f984ee36ca3084cf3a03e05254c2992af1df4c42ceed8bf83bdf3a0bbc6657b22fb9734976b2ed79433150d479446cfb8d0c04a7758887b63ab49958079588 -doccontainersize 79448 -doccontainerchecksum b4595bf2038cc5a6a59d910a32c56ada717fa4b8880db7c8dee33fc7de4fb7061fe0ab61f433b8a341869cb15dacd648036d6fd0d47cc664d3ed11c12115aa45 -docfiles size=21 +longdesc wobble so they look 'thrown together' and not too regular. The +longdesc package also provides options to customise the size and colour +longdesc of the sticks, and flexibility to draw heaps of different +longdesc objects. +containersize 2140 +containerchecksum 0b2485f7833cc8f4912a035284fcc4d0e710d942330a16a36788f7d80ebc5d9eb9ceb98f6a15b11e6391429d4684c985a83753696c1202bff5f0c5f4e528ce59 +doccontainersize 213532 +doccontainerchecksum 6848acf10eb3c4b2e0dbb9e33868ac4a1c639771c1508a19e4d41512750cb0978dbb61a570830f2f555e09ade976d9cd5c91d23da73013a7310b9cae02b6ee1a +docfiles size=55 RELOC/doc/latex/nimsticks/README.md details="Readme" RELOC/doc/latex/nimsticks/nimsticks.pdf details="Package documentation" -srccontainersize 3056 -srccontainerchecksum 4bf6734b74d1147a0a64a2a5be3a1bf0f5e50c57275e826104641b5c67038ac7e9aefd2a797a8e26b70dae9165f9aa06f5aa657c30bd4bc60d71b9b31a19b159 -srcfiles size=3 +srccontainersize 5548 +srccontainerchecksum 76903857b5e115f5c3462e114ef7a142855c7606e78f0ed96de54b4c810cdac596b39f38333db445387264ed6723c6c1788b13c17c6c9702407aec267d4b38c5 +srcfiles size=6 RELOC/source/latex/nimsticks/nimsticks.dtx RELOC/source/latex/nimsticks/nimsticks.ins -runfiles size=1 +runfiles size=2 RELOC/tex/latex/nimsticks/nimsticks.sty catalogue-contact-bugs https://github.com/prowlett/nimsticks/issues catalogue-contact-repository https://github.com/prowlett/nimsticks catalogue-ctan /graphics/pgf/contrib/nimsticks catalogue-license mit catalogue-topics graphics pgf-tikz games -catalogue-version 1.1 +catalogue-version 2.0.1 name ninecolors category Package -revision 58833 +revision 62006 shortdesc Select colors with proper WCAG color contrast relocated 1 longdesc This package carefully selects and defines 9 colors for 13 hues @@ -214241,22 +224503,22 @@ longdesc color white is of level 10. By simply choosing two colors in longdesc the above list, which differ in level by at least 5, as longdesc foreground and background colors, you will get proper WCAG longdesc Color Contrast. -containersize 1480 -containerchecksum 7aee2eac9aa4d1cac046f39a260984888b54bf63df6f62e8278fc7966a50a5ef2e88a07835e5a8fe01403b5d254278fe561c245b2517735705ed6d06ba70aaf0 -doccontainersize 15796 -doccontainerchecksum 8d1a9420463b85653bd6896a8ff893c13a22bb81cc90af568185c053313e12b6edcc02f825a5dc8148f164fbef2b38e12e89d8f1f6b5266a6f97ca307443cc6c -docfiles size=6 - RELOC/doc/latex/ninecolors/README details="Readme" +containersize 2648 +containerchecksum f755768830e02aa434432ab4e879646ad43d092f50b7e38e39009c98327c5ddcd23d0b5a7ee8d8afad30e69b6219bb871a14dc7b274ae11a60aec33df2c94ae6 +doccontainersize 48184 +doccontainerchecksum 0550d7b4a8b7040541edf156c5b82bf61d350a21c732c4ef324c58289eda288b7e30edd1f36d8650d453a590bdeb97b61d0c782f3d945b033b0fb746b6c802f7 +docfiles size=15 + RELOC/doc/latex/ninecolors/README.txt details="Readme" RELOC/doc/latex/ninecolors/ninecolors.pdf details="Package documentation" RELOC/doc/latex/ninecolors/ninecolors.tex -runfiles size=2 +runfiles size=7 RELOC/tex/latex/ninecolors/ninecolors.sty catalogue-contact-bugs https://github.com/lvjr/ninecolors/issues catalogue-contact-repository https://github.com/lvjr/ninecolors catalogue-ctan /macros/latex/contrib/ninecolors catalogue-license lppl1.3 -catalogue-topics colour -catalogue-version 2021A +catalogue-topics colour expl3 +catalogue-version 2022D name njurepo category Package @@ -214291,6 +224553,131 @@ catalogue-license lppl1.3c catalogue-topics dissertation class catalogue-version 1.1.2 +name njustthesis +category Package +revision 62451 +shortdesc Thesis template for the Nanjing University of Science and Technology +relocated 1 +longdesc This is a thesis template for the Nanjing University of Science +longdesc and Technology>. +containersize 4484 +containerchecksum 829c4af6651ce3119dcfb0f6975289bc6cc4a8a7dee4a382ec8f63c1b876cd972452b766ed13e6aec1fb4d4613255a9ef206f1b7d8c03207c00a52876f22533c +doccontainersize 210180 +doccontainerchecksum fdf843b266b0d2ac780fe934d4ba55c6a3b470fcf81bcf71f2ffa0a689020ed343768650cce06c5cbed0a35d9178723b0d2caadf5038871c55fbc47f244ce15d +docfiles size=53 + RELOC/doc/latex/njustthesis/README.md details="Readme" + RELOC/doc/latex/njustthesis/njustthesis.pdf details="Package documentation" +srccontainersize 4832 +srccontainerchecksum bf0f1bfa5d6a9367bee61c90b35c4f8492ad072ce44b0fefe43c1251fa0e7fcb4c4f92392d5d317d808e6f3ab1fd8f7e274407dcc815e2f7e281297b53e5d7c0 +srcfiles size=5 + RELOC/source/latex/njustthesis/njustthesis.dtx + RELOC/source/latex/njustthesis/njustthesis.ins +runfiles size=4 + RELOC/tex/latex/njustthesis/njustthesis.cls +catalogue-contact-announce https://github.com/Freed-Wu/njustthesis/releases +catalogue-contact-bugs https://github.com/Freed-Wu/njustthesis/issues +catalogue-contact-home https://ctan.org/pkg/njustthesis +catalogue-contact-repository https://github.com/Freed-Wu/njustthesis +catalogue-ctan /macros/latex/contrib/njustthesis +catalogue-license gpl3+ +catalogue-topics dissertation chinese +catalogue-version 0.0.1 + +name njuthesis +category Package +revision 65546 +shortdesc LaTeX thesis template for Nanjing University +relocated 1 +longdesc The njuthesis class is intended for typesetting Nanjing +longdesc University dissertations with LaTeX, providing support for +longdesc bachelor, master, and doctoral theses as well as postdoctoral +longdesc reports. Compilation of this class requires either XeLaTeX or +longdesc LuaLaTeX. +containersize 19672 +containerchecksum 169c4f42c03104b2edcb20abcfff38fa8160c3d5058149c43d9773d52375c0152d3d99271ad49f2aebe995fabe30238407463e76e7b1d399482bb43b600ff0e6 +doccontainersize 1193964 +doccontainerchecksum c68890f2269c0e353cfec67cf822285b365875dccfac9664877ccde0c084860f6888f3657a7780ae775b564784f55c25e95e1deebd23f29f00df3eb2dc9d438e +docfiles size=300 + RELOC/doc/latex/njuthesis/LICENSE + RELOC/doc/latex/njuthesis/README.md details="Readme" + RELOC/doc/latex/njuthesis/njuthesis.pdf details="Package documentation" language="zh" +srccontainersize 65020 +srccontainerchecksum ca35eddab7239b1cc1ec60ee42a497dcdbc68451eab8dfa83965bcd4cfdb223e84f0b47bffd560781e2115a0217c52b9ebfe746f1d3357857dc88f83aefb1d2f +srcfiles size=75 + RELOC/source/latex/njuthesis/njuthesis.dtx + RELOC/source/latex/njuthesis/njuthesis.ins +runfiles size=29 + RELOC/tex/latex/njuthesis/njuthesis-graduate.def + RELOC/tex/latex/njuthesis/njuthesis-postdoctoral.def + RELOC/tex/latex/njuthesis/njuthesis-undergraduate.def + RELOC/tex/latex/njuthesis/njuthesis.cls +catalogue-contact-announce https://github.com/nju-lug/NJUThesis/releases +catalogue-contact-bugs https://github.com/nju-lug/NJUThesis/issues +catalogue-contact-development https://github.com/nju-lug +catalogue-contact-repository https://github.com/nju-lug/NJUThesis +catalogue-contact-support https://github.com/nju-lug/NJUThesis/discussions +catalogue-ctan /macros/unicodetex/latex/njuthesis +catalogue-license lppl1.3c +catalogue-topics class dissertation proposal expl3 latex3 chinese +catalogue-version 1.1.2 + +name njuvisual +category Package +revision 65261 +shortdesc Display logos related to Nanjing University +relocated 1 +longdesc The njuvisual package collects standard colors and logos +longdesc related to Nanjing University, saves the vector logos as TikZ +longdesc pictures and provides a user-friendly interface to display them +longdesc in documents and beamers. +containersize 211156 +containerchecksum 48f446e5aec77be8e9ebeba59779c990ed4ec5fc3f533fd22807e8415d9bf962075e940d4f789e3809c8ab4c75be6fc505d42cf37bd9e1d5b9e1a02d78e7523b +doccontainersize 666060 +doccontainerchecksum 351f6cccc1a7d91f953c4dcce294a0ca81a0e687ebdf2ee676aab18e299b8095d089d7691b58316c8955e06e341f78674bbd52b6073e010a3facb6184cb0a8d2 +docfiles size=169 + RELOC/doc/latex/njuvisual/LICENSE + RELOC/doc/latex/njuvisual/README.md details="Readme" + RELOC/doc/latex/njuvisual/njuvisual-example.tex + RELOC/doc/latex/njuvisual/njuvisual.pdf details="Package documentation" language="zh" +srccontainersize 219728 +srccontainerchecksum 0129998a16bc4ee8c9345bf0519ce561360e11860a148252550b3536f2152175dae5af414d586a906adea275d0fb1fee1c4f31a2a18f23571a2a4dd5ef9120e0 +srcfiles size=373 + RELOC/source/latex/njuvisual/njuvisual-ai.dtx + RELOC/source/latex/njuvisual/njuvisual-chem.dtx + RELOC/source/latex/njuvisual/njuvisual-cs.dtx + RELOC/source/latex/njuvisual/njuvisual-dii.dtx + RELOC/source/latex/njuvisual/njuvisual-emblem.dtx + RELOC/source/latex/njuvisual/njuvisual-end.dtx + RELOC/source/latex/njuvisual/njuvisual-eng.dtx + RELOC/source/latex/njuvisual/njuvisual-motto.dtx + RELOC/source/latex/njuvisual/njuvisual-name.dtx + RELOC/source/latex/njuvisual/njuvisual-physics.dtx + RELOC/source/latex/njuvisual/njuvisual-software.dtx + RELOC/source/latex/njuvisual/njuvisual-spirit.dtx + RELOC/source/latex/njuvisual/njuvisual.dtx + RELOC/source/latex/njuvisual/njuvisual.ins +runfiles size=361 + RELOC/tex/latex/njuvisual/njuvisual-emblem-ai.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-chem.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-cs.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-dii.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-eng.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-nju.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-physics.def + RELOC/tex/latex/njuvisual/njuvisual-emblem-software.def + RELOC/tex/latex/njuvisual/njuvisual-motto-nju.def + RELOC/tex/latex/njuvisual/njuvisual-name-en-nju.def + RELOC/tex/latex/njuvisual/njuvisual-name-zh-nju.def + RELOC/tex/latex/njuvisual/njuvisual-spirit-nju.def + RELOC/tex/latex/njuvisual/njuvisual.sty +catalogue-contact-announce https://github.com/nju-lug/NJUVisual/releases +catalogue-contact-bugs https://github.com/nju-lug/NJUVisual/issues +catalogue-contact-repository https://github.com/nju-lug/NJUVisual +catalogue-ctan /macros/latex/contrib/njuvisual +catalogue-license lppl1.3c +catalogue-topics logo chinese expl3 pgf-tikz +catalogue-version 0.3.0 + name nkarta category Package revision 16437 @@ -214351,25 +224738,26 @@ catalogue-version 1.0 name nlctdoc category Package -revision 53768 +revision 64708 shortdesc Package documentation class relocated 1 longdesc The class provides support for the documentation of the longdesc author's packages, using koma-script. This class is provided longdesc "as is" solely for the benefit of anyone who wants to compile longdesc the documentation of those packages. -containersize 6580 -containerchecksum 9e73496b57f3a6ef6ab8f49fce6a57d2e0696b4361ee19bf32454eef9fb081f4124635b219c09f2f26578fd5c489e898c0a99b2ffbff3909b3aea6021f28407b -doccontainersize 692 -doccontainerchecksum 0ebc3c315fa891a7a2cd3696dba75d755022f4b0b9f7b75854e98f91b31e93f32f0a513a78e0b6ba529b3fe515fd165c10e2413e0dd27c6c50c0d847a74e78f1 +containersize 23920 +containerchecksum 5bc67c3ce81a7a3dd49d0b54019c261f6ab874cd6aa68d135a4deb935417f724d57b6cec08bab3e2575876d3d74ce661fc5a23da61f2f82ab29bc6653754d514 +doccontainersize 724 +doccontainerchecksum 007b51b5d7d2edab1e773265ab41649f0ea22c259b607d53441991a79fd7c066746004dc95a8ef6bb8b2de9b7e5754dbb2fc96cb2a4dfccd213b6fa34e39ddca docfiles size=1 RELOC/doc/latex/nlctdoc/README details="Readme" -runfiles size=7 +runfiles size=31 RELOC/tex/latex/nlctdoc/nlctdoc.cls + RELOC/tex/latex/nlctdoc/nlctuserguide.sty catalogue-ctan /macros/latex/contrib/nlctdoc catalogue-license lppl catalogue-topics doc-supp class -catalogue-version 1.07 +catalogue-version 1.08 name nmbib category Package @@ -214411,6 +224799,35 @@ catalogue-license lppl1.3 catalogue-topics bibtex-supp catalogue-version 1.04 +name nndraw +category Package +revision 59674 +shortdesc Draw neural networks +relocated 1 +longdesc With this package you can create fully connected neural +longdesc networks in a simple and efficient way. +containersize 2216 +containerchecksum 0a3ef1e6654d191c588f8269c674e5d7542785aadd97bf96101be8627f4a4746e443083a0403b8710f2e8036f0d69be1db6d40cfc1865aed89056d84ee4a512f +doccontainersize 103384 +doccontainerchecksum 0ee7cb24d7cdfc708a3ea7bc4588259ce92723e3c4be295b85d689750ed81ece2a575ceeb9d6959692e36e363bd6ca26615fa598080977cb62de9a641da44322 +docfiles size=27 + RELOC/doc/latex/nndraw/README details="Readme" + RELOC/doc/latex/nndraw/nndraw.pdf details="Package documentation" +srccontainersize 3276 +srccontainerchecksum c97381de546d0e4173c7d34ddc8f9098359a3ec8b84c78d155efc49cba120a3e59f64c3c43eaacc07196df86402a084558ca20a5ddc52733134440e21fc0bc39 +srcfiles size=3 + RELOC/source/latex/nndraw/nndraw.dtx + RELOC/source/latex/nndraw/nndraw.ins +runfiles size=2 + RELOC/tex/latex/nndraw/nndraw.sty +catalogue-also neuralnetwork +catalogue-contact-bugs https://github.com/carloscdias/nndraw/issues +catalogue-contact-home https://github.com/carloscdias/nndraw +catalogue-ctan /graphics/pgf/contrib/nndraw +catalogue-license lppl1.3 +catalogue-topics diagram +catalogue-version 1.0 + name nnext category Package revision 56575 @@ -214465,7 +224882,7 @@ catalogue-version 1.0 name nodetree category Package -revision 56742 +revision 65298 shortdesc Visualize node lists in a tree view relocated 1 longdesc nodetree is a development package that visualizes the structure @@ -214473,19 +224890,19 @@ longdesc of node lists. nodetree shows its debug informations in the longdesc console output when you compile a LuaTeX file. It uses a longdesc similar visual representation for node lists as the UNIX tree longdesc command for a folder structure. -containersize 12332 -containerchecksum 315216d397894f9b49109c4749dd91953d4bde0c220c37eebdf762f2427bed4f5bc9657a7088a479c78832fd7dfebbbec1b09e25b0a2f5600505a8d5cc58869c -doccontainersize 275876 -doccontainerchecksum 2a20d35c7a1f01657455b239916ad7c9fbdda81aac26d1cfd01d9c4e193ed75d02ee30dc884fef6df722042c3096fe350f6e29b73c00a3edbf4d2a85d364a1de +containersize 12880 +containerchecksum 27e55a80726d0d2dc3767e59c520ef4dce465605abe8e2ed3062a6eac485e5db30945da9c5c5b3d2199c1df3bfa0faa6f92c8adae91c51b70512f8590b1594be +doccontainersize 273576 +doccontainerchecksum 6c4b80986f62d974cc0458679643fe2721d2db439ae0cb94b737546ddd558e2a5ba3746abac697519b326b5df28ab8d5af43fa0db49720feb3d07bfa6daf4878 docfiles size=70 RELOC/doc/luatex/nodetree/README.md details="Readme" RELOC/doc/luatex/nodetree/nodetree.pdf details="Package documentation" -srccontainersize 3752 -srccontainerchecksum 579e92f7185814a062cc74619641a3010b55c3e21fa2a8cc13d402b50db4ab5ba05527174a90361521d13e483a87b73758c4c52068b6e94d8e73d8aea76a88d4 +srccontainersize 3844 +srccontainerchecksum 311c88f5e5da3f3b0a539a8e2ddefb4b7442ab3f0d560eecd04353098c273bd24ce2852fd3dd232195fd48c3f3e7049ad66e40fe2b4c7c858b7bef1f64e90a1e srcfiles size=5 RELOC/source/luatex/nodetree/nodetree.dtx RELOC/source/luatex/nodetree/nodetree.ins -runfiles size=15 +runfiles size=16 RELOC/tex/luatex/nodetree/nodetree-embed.sty RELOC/tex/luatex/nodetree/nodetree.lua RELOC/tex/luatex/nodetree/nodetree.sty @@ -214496,32 +224913,36 @@ catalogue-contact-repository https://github.com/Josef-Friedrich/nodetree catalogue-ctan /macros/luatex/generic/nodetree catalogue-license lppl1.3 catalogue-topics lua-supp -catalogue-version 2.2 +catalogue-version 2.2.1 name noindentafter category Package -revision 35709 -shortdesc Tool to prevent paragraph indentation after environments/macros +revision 59195 +shortdesc Prevent paragraph indentation after environments or macros relocated 1 longdesc The package, as the name suggests, supplies tools to longdesc automatically suppress indentations in following paragraphs, longdesc specifically those following a particular macro or environment. -containersize 2284 -containerchecksum 6037e5b7b36742c2956f39020f7e9bd2072b17ab313f5d7d86e8b0c348b89ef1392571b8cba22190221a14c6f1e44a0156ddafce8f5e2bbf5362e443f590b2d8 -doccontainersize 228912 -doccontainerchecksum 1cc385e0bed9559d66c13967a5ffe83f1d01ad2005e4c7ca92243ca246da4f5f5e9abfde9b244ac54d73de4f874b800dc6620f7c93f6fb03a6d0ac8b2593fc96 -docfiles size=62 - RELOC/doc/latex/noindentafter/README details="Readme" - RELOC/doc/latex/noindentafter/noindentafter-dry.sty - RELOC/doc/latex/noindentafter/noindentafter-packagedoc.cls +containersize 1384 +containerchecksum 8445839068a264cc57df9b0e9cce4562b3e70ef208baf32fb2aaabf7ce95804a31f0f8b65c8ce2f2f0fc809a07cb864ff977af31d8162cf10560c39f9d2b78a8 +doccontainersize 399864 +doccontainerchecksum 95f0e11cc91dce0e970caa703149b602150426df174044b0a2fc7d902f040fa4fe6fc3014bcf49d240bc9612c5c61a5a40124d5b49ffab1bdbabab0cfe55889d +docfiles size=102 + RELOC/doc/latex/noindentafter/LICENSE.md + RELOC/doc/latex/noindentafter/README.md details="Readme" RELOC/doc/latex/noindentafter/noindentafter.pdf details="Package documentation" - RELOC/doc/latex/noindentafter/noindentafter.tex -runfiles size=2 +srccontainersize 4696 +srccontainerchecksum e3a12b14ad4571a3fbaf4d4297da28a69cdba7bcf57a365dddb163d88a0b1f7acd20d600ab6353b4ea110d4a0a72c9bef365a3b1fd866448f65318bb5940dd7a +srcfiles size=3 + RELOC/source/latex/noindentafter/noindentafter.dtx +runfiles size=1 RELOC/tex/latex/noindentafter/noindentafter.sty +catalogue-contact-bugs https://github.com/mrpiggi/noindentafter/issues +catalogue-contact-repository https://github.com/mrpiggi/noindentafter catalogue-ctan /macros/latex/contrib/noindentafter -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics macro-supp -catalogue-version 0.2.2 +catalogue-version 1.00 name noitcrul category Package @@ -214575,16 +224996,16 @@ catalogue-version 1.2 name nomencl category Package -revision 57263 +revision 61029 shortdesc Produce lists of symbols as in nomenclature relocated 1 longdesc Produces lists of symbols using the capabilities of the longdesc MakeIndex program. -containersize 3776 -containerchecksum f63b053f8d95a58e2d8ec5d42177f13bdaa49f6cec710e166a96f45187b51cbe12b34c68918c0ec42b12250ecf1af80f5dbb83f4161b2d0dc94d51ccf218391b -doccontainersize 531236 -doccontainerchecksum cf29a353af0a32e41d18087d3ae9c8447d52cb0f95dabfbde01150d15637022d53a8576c362bd7489e8110cdc5dc1892159652d67e61f165f25a78b64d8e095c -docfiles size=163 +containersize 3772 +containerchecksum ee20b8a21b03cb02ed2ef37d38c219841d4a07e17ff781c067906ecbb8f5383d8558c20164f7db79af0c8cd11c5ad8d76142b15ea74674593bb52a5a5993b6c3 +doccontainersize 547080 +doccontainerchecksum 1caa5bcde6c1a3ac5de024f513793c52011285e70e32664d6c5d1a103027c74d45c716d01aaf849726b5b7ffac511ebe6cd16ba669bfeb5fdf37addc59e24a6e +docfiles size=176 RELOC/doc/latex/nomencl/README details="Readme" RELOC/doc/latex/nomencl/nomencl.pdf details="Package documentation" RELOC/doc/latex/nomencl/sample01.pdf @@ -214600,8 +225021,8 @@ docfiles size=163 RELOC/doc/latex/nomencl/sample05.pdf RELOC/doc/latex/nomencl/sample05.tex RELOC/doc/latex/nomencl/sample06.cfg -srccontainersize 18836 -srccontainerchecksum e64dc93929ebdf9716208bc51af759003b7e3263a95d58dab5bfe740a71c966d4f51d561e4cf2d82f90bf3e081b4cb0c7a50a1e0a657d2b33b3a065a2e88a557 +srccontainersize 18876 +srccontainerchecksum 0fda8a0c5e46933cf991bb4120e4bdf98a8ba05e1ca96600fc9e6abd5d3a5c78ce50ae9e625fdda956c90a8f9f569f18d9ebd96b6de4e0e5bb0fbd2b5b00889b srcfiles size=20 RELOC/source/latex/nomencl/Makefile RELOC/source/latex/nomencl/nomencl.drv @@ -214617,7 +225038,7 @@ catalogue-contact-repository https://github.com/borisveytsman/nomencl catalogue-ctan /macros/latex/contrib/nomencl catalogue-license lppl catalogue-topics glossary -catalogue-version 5.5 +catalogue-version 5.6 name nomentbl category Package @@ -214739,15 +225160,15 @@ catalogue-topics page-nos name norasi-c90 category Package -revision 37675 +revision 60831 shortdesc TeX support (from CJK) for the norasi font relocated 1 depend fonts-tlwg execute addMap norasi-c90.map -containersize 8720 -containerchecksum d52fb16ee07ef72f6484b784346933a23b5a3357aa2f00ee212bb1decbfd3299153e88cd4bc352cfc2e888dbf37ea86a2bd6442b6393634c5f144f4accab55a5 +containersize 8716 +containerchecksum 5f65927546348815b07c93003a2b0922403d274bfa3d1665d4649c9dbc737df924958c2fd61c1d06cd5e7c1862aff392c8d1e9d827f4ae79e70d9b76467f651d srccontainersize 1440 -srccontainerchecksum 0170578bca4c4e4a7307fc125a6d845881fe32e2d361c73369ac1bb1b7d510bca8eddae831fc8421b3e30ce996f2eda4d7b2e449873ae6226a7806ed2bbd4047 +srccontainerchecksum 8fb30cc3a1e762ec15c813fff0191b08b64a0d259dbdd21a9edcf70c6eb1b327cff5ef3f48b9dba0b7d99d1ec31b3accef65deca7285e27790261ca659bd525d srcfiles size=1 RELOC/source/fonts/norasi-c90/norasi-c90.fontinst runfiles size=10 @@ -214985,163 +225406,154 @@ catalogue-topics bibtex-sty cvt-html name noto category Package -revision 54512 +revision 64351 shortdesc Support for Noto fonts relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX longdesc support for the NotoSerif, NotoSans and NotoSansMono families longdesc of fonts, designed by Steve Matteson for Google. execute addMap noto.map -containersize 67199024 -containerchecksum 731e33665913e4e5deab621d44f0fbaa1a9853109f6f76b2d2c65efcd2a227369e17bee3cd18b00a0e3314db61026c2d2138943b3420bb5da29b7eeed10c6cd8 -doccontainersize 312836 -doccontainerchecksum 6ab7fcfa88f6c4739038db08afe172387ebe3cd391180efb9b745096ad0d24f7a80b4866698ae882f34d4e6482ea477b419c9421d2a62e71c79e2b66bfd21d94 -docfiles size=80 +containersize 26607012 +containerchecksum 6b1c2961ca9199ec9f0c9eb6e8c2ce61eda6d4eb0157ef292a176831df2df83bf09c3aea23825818ef5ed03128ba838f4377e42b53409c96d388422ce9dfd467 +doccontainersize 340432 +doccontainerchecksum 20b8371eec90440f2a491e1f34a0fce79b700e7b2f0aea2a808baaaf4e3275dd253b65d32429a78be6ed2b31b576f4291cc1f3cc2f625a675cd7a317bab90759 +docfiles size=88 RELOC/doc/fonts/noto/LICENSE_OFL.txt RELOC/doc/fonts/noto/README details="Readme" RELOC/doc/fonts/noto/noto-samples.pdf details="Font samples" RELOC/doc/fonts/noto/noto-samples.tex -runfiles size=50604 - RELOC/fonts/enc/dvips/noto/nto_2banio.enc - RELOC/fonts/enc/dvips/noto/nto_2pknou.enc - RELOC/fonts/enc/dvips/noto/nto_34ragx.enc - RELOC/fonts/enc/dvips/noto/nto_3b7r4q.enc - RELOC/fonts/enc/dvips/noto/nto_3dob2t.enc - RELOC/fonts/enc/dvips/noto/nto_3idd2i.enc - RELOC/fonts/enc/dvips/noto/nto_3jz62l.enc - RELOC/fonts/enc/dvips/noto/nto_3kuu7o.enc - RELOC/fonts/enc/dvips/noto/nto_3nbfkd.enc - RELOC/fonts/enc/dvips/noto/nto_3ubgsk.enc - RELOC/fonts/enc/dvips/noto/nto_453igs.enc - RELOC/fonts/enc/dvips/noto/nto_4lhdnu.enc - RELOC/fonts/enc/dvips/noto/nto_5taitr.enc - RELOC/fonts/enc/dvips/noto/nto_5uhkks.enc - RELOC/fonts/enc/dvips/noto/nto_5xcjwt.enc - RELOC/fonts/enc/dvips/noto/nto_5yrndq.enc - RELOC/fonts/enc/dvips/noto/nto_6egtta.enc - RELOC/fonts/enc/dvips/noto/nto_6fjq7h.enc - RELOC/fonts/enc/dvips/noto/nto_6jn4k6.enc - RELOC/fonts/enc/dvips/noto/nto_72byc5.enc - RELOC/fonts/enc/dvips/noto/nto_772cjc.enc - RELOC/fonts/enc/dvips/noto/nto_7dmrun.enc - RELOC/fonts/enc/dvips/noto/nto_7fe4g3.enc - RELOC/fonts/enc/dvips/noto/nto_7wbp6x.enc - RELOC/fonts/enc/dvips/noto/nto_7xrktb.enc - RELOC/fonts/enc/dvips/noto/nto_a3kb4x.enc - RELOC/fonts/enc/dvips/noto/nto_a3nlzj.enc - RELOC/fonts/enc/dvips/noto/nto_a4scdo.enc - RELOC/fonts/enc/dvips/noto/nto_ad2lir.enc - RELOC/fonts/enc/dvips/noto/nto_b2faob.enc - RELOC/fonts/enc/dvips/noto/nto_b2rbwz.enc - RELOC/fonts/enc/dvips/noto/nto_b374rf.enc - RELOC/fonts/enc/dvips/noto/nto_b3cf23.enc - RELOC/fonts/enc/dvips/noto/nto_b6ko55.enc - RELOC/fonts/enc/dvips/noto/nto_bcpmuc.enc - RELOC/fonts/enc/dvips/noto/nto_bkthom.enc - RELOC/fonts/enc/dvips/noto/nto_bvui6g.enc - RELOC/fonts/enc/dvips/noto/nto_c3lxz4.enc - RELOC/fonts/enc/dvips/noto/nto_c4ampu.enc - RELOC/fonts/enc/dvips/noto/nto_ckgynt.enc - RELOC/fonts/enc/dvips/noto/nto_cpzaze.enc - RELOC/fonts/enc/dvips/noto/nto_cwvxtj.enc - RELOC/fonts/enc/dvips/noto/nto_dekpws.enc - RELOC/fonts/enc/dvips/noto/nto_dvdq72.enc - RELOC/fonts/enc/dvips/noto/nto_e6yrw6.enc - RELOC/fonts/enc/dvips/noto/nto_e7tkro.enc - RELOC/fonts/enc/dvips/noto/nto_etmgrc.enc - RELOC/fonts/enc/dvips/noto/nto_ewl7ea.enc - RELOC/fonts/enc/dvips/noto/nto_f7fqkh.enc - RELOC/fonts/enc/dvips/noto/nto_fw5lcu.enc - RELOC/fonts/enc/dvips/noto/nto_gemibc.enc - RELOC/fonts/enc/dvips/noto/nto_gfowk7.enc - RELOC/fonts/enc/dvips/noto/nto_hcdl7d.enc - RELOC/fonts/enc/dvips/noto/nto_hjcdnn.enc - RELOC/fonts/enc/dvips/noto/nto_hvbi2c.enc - RELOC/fonts/enc/dvips/noto/nto_i47ut3.enc - RELOC/fonts/enc/dvips/noto/nto_ib6ubx.enc - RELOC/fonts/enc/dvips/noto/nto_ibgtat.enc - RELOC/fonts/enc/dvips/noto/nto_jayyhr.enc - RELOC/fonts/enc/dvips/noto/nto_jcw7uk.enc - RELOC/fonts/enc/dvips/noto/nto_jkat5h.enc - RELOC/fonts/enc/dvips/noto/nto_jl7jon.enc - RELOC/fonts/enc/dvips/noto/nto_jzlekz.enc - RELOC/fonts/enc/dvips/noto/nto_khusna.enc - RELOC/fonts/enc/dvips/noto/nto_kntwfo.enc - RELOC/fonts/enc/dvips/noto/nto_ku6sr6.enc - RELOC/fonts/enc/dvips/noto/nto_kyokto.enc - RELOC/fonts/enc/dvips/noto/nto_l7r7sw.enc - RELOC/fonts/enc/dvips/noto/nto_lirjoh.enc - RELOC/fonts/enc/dvips/noto/nto_lr2om7.enc - RELOC/fonts/enc/dvips/noto/nto_luhzk7.enc - RELOC/fonts/enc/dvips/noto/nto_m3b3uh.enc - RELOC/fonts/enc/dvips/noto/nto_mckgpj.enc - RELOC/fonts/enc/dvips/noto/nto_mcmm5k.enc - RELOC/fonts/enc/dvips/noto/nto_mcxhr4.enc - RELOC/fonts/enc/dvips/noto/nto_mhwely.enc - RELOC/fonts/enc/dvips/noto/nto_mpk62p.enc - RELOC/fonts/enc/dvips/noto/nto_ndzcwf.enc - RELOC/fonts/enc/dvips/noto/nto_nhjuvf.enc - RELOC/fonts/enc/dvips/noto/nto_nhzdio.enc - RELOC/fonts/enc/dvips/noto/nto_nog6ox.enc - RELOC/fonts/enc/dvips/noto/nto_o37s5e.enc - RELOC/fonts/enc/dvips/noto/nto_ol4yze.enc - RELOC/fonts/enc/dvips/noto/nto_op2juy.enc - RELOC/fonts/enc/dvips/noto/nto_p6rwlx.enc - RELOC/fonts/enc/dvips/noto/nto_ph33kq.enc - RELOC/fonts/enc/dvips/noto/nto_prsxmw.enc - RELOC/fonts/enc/dvips/noto/nto_pvnjta.enc - RELOC/fonts/enc/dvips/noto/nto_pz6pv7.enc - RELOC/fonts/enc/dvips/noto/nto_q2iokw.enc - RELOC/fonts/enc/dvips/noto/nto_qdgiej.enc - RELOC/fonts/enc/dvips/noto/nto_qgk3xb.enc - RELOC/fonts/enc/dvips/noto/nto_qielb2.enc - RELOC/fonts/enc/dvips/noto/nto_qsoqct.enc - RELOC/fonts/enc/dvips/noto/nto_r2ghbj.enc - RELOC/fonts/enc/dvips/noto/nto_r5bxyy.enc - RELOC/fonts/enc/dvips/noto/nto_ras4ps.enc - RELOC/fonts/enc/dvips/noto/nto_rmq6cj.enc - RELOC/fonts/enc/dvips/noto/nto_rscbfi.enc - RELOC/fonts/enc/dvips/noto/nto_rsplpv.enc - RELOC/fonts/enc/dvips/noto/nto_scavxs.enc - RELOC/fonts/enc/dvips/noto/nto_sez6pn.enc - RELOC/fonts/enc/dvips/noto/nto_sg5txc.enc - RELOC/fonts/enc/dvips/noto/nto_tu4uv7.enc - RELOC/fonts/enc/dvips/noto/nto_twgkjf.enc - RELOC/fonts/enc/dvips/noto/nto_uc5ky7.enc - RELOC/fonts/enc/dvips/noto/nto_ucmn45.enc - RELOC/fonts/enc/dvips/noto/nto_umxzhz.enc - RELOC/fonts/enc/dvips/noto/nto_uncbtn.enc - RELOC/fonts/enc/dvips/noto/nto_uoung7.enc - RELOC/fonts/enc/dvips/noto/nto_upvzdm.enc - RELOC/fonts/enc/dvips/noto/nto_urvlpy.enc - RELOC/fonts/enc/dvips/noto/nto_uvb24m.enc - RELOC/fonts/enc/dvips/noto/nto_uwtd6c.enc - RELOC/fonts/enc/dvips/noto/nto_v63ahm.enc - RELOC/fonts/enc/dvips/noto/nto_vfbpi4.enc - RELOC/fonts/enc/dvips/noto/nto_vmq34i.enc - RELOC/fonts/enc/dvips/noto/nto_vuovel.enc - RELOC/fonts/enc/dvips/noto/nto_w43d4m.enc - RELOC/fonts/enc/dvips/noto/nto_wh7viy.enc - RELOC/fonts/enc/dvips/noto/nto_whcw4o.enc - RELOC/fonts/enc/dvips/noto/nto_wiy4e7.enc - RELOC/fonts/enc/dvips/noto/nto_wwfksr.enc - RELOC/fonts/enc/dvips/noto/nto_wxkdfs.enc - RELOC/fonts/enc/dvips/noto/nto_x4teop.enc - RELOC/fonts/enc/dvips/noto/nto_xffdr3.enc - RELOC/fonts/enc/dvips/noto/nto_xhwpwl.enc - RELOC/fonts/enc/dvips/noto/nto_xhxifo.enc - RELOC/fonts/enc/dvips/noto/nto_xmopsz.enc - RELOC/fonts/enc/dvips/noto/nto_xpfafm.enc - RELOC/fonts/enc/dvips/noto/nto_y2n3gg.enc - RELOC/fonts/enc/dvips/noto/nto_y52y4f.enc - RELOC/fonts/enc/dvips/noto/nto_y5jpaa.enc - RELOC/fonts/enc/dvips/noto/nto_ycidct.enc - RELOC/fonts/enc/dvips/noto/nto_yifqxs.enc - RELOC/fonts/enc/dvips/noto/nto_yyuepd.enc - RELOC/fonts/enc/dvips/noto/nto_zlkvl2.enc - RELOC/fonts/enc/dvips/noto/nto_zogsyl.enc - RELOC/fonts/enc/dvips/noto/nto_zpdbre.enc - RELOC/fonts/enc/dvips/noto/nto_zyhgfd.enc +runfiles size=22277 + RELOC/fonts/enc/dvips/noto/a_23t6v6.enc + RELOC/fonts/enc/dvips/noto/a_2gssks.enc + RELOC/fonts/enc/dvips/noto/a_3gh25n.enc + RELOC/fonts/enc/dvips/noto/a_3idd2i.enc + RELOC/fonts/enc/dvips/noto/a_3nh6de.enc + RELOC/fonts/enc/dvips/noto/a_3njtyh.enc + RELOC/fonts/enc/dvips/noto/a_3pvjsh.enc + RELOC/fonts/enc/dvips/noto/a_3qka2q.enc + RELOC/fonts/enc/dvips/noto/a_3utovq.enc + RELOC/fonts/enc/dvips/noto/a_47rvkj.enc + RELOC/fonts/enc/dvips/noto/a_4g272e.enc + RELOC/fonts/enc/dvips/noto/a_4hfkmi.enc + RELOC/fonts/enc/dvips/noto/a_4u4rqx.enc + RELOC/fonts/enc/dvips/noto/a_52qs4q.enc + RELOC/fonts/enc/dvips/noto/a_533fr4.enc + RELOC/fonts/enc/dvips/noto/a_57pcdw.enc + RELOC/fonts/enc/dvips/noto/a_5mzvu7.enc + RELOC/fonts/enc/dvips/noto/a_5pmcwb.enc + RELOC/fonts/enc/dvips/noto/a_5xwbon.enc + RELOC/fonts/enc/dvips/noto/a_623vws.enc + RELOC/fonts/enc/dvips/noto/a_63wp3v.enc + RELOC/fonts/enc/dvips/noto/a_6aka6h.enc + RELOC/fonts/enc/dvips/noto/a_6twv4d.enc + RELOC/fonts/enc/dvips/noto/a_772cjc.enc + RELOC/fonts/enc/dvips/noto/a_7bgfws.enc + RELOC/fonts/enc/dvips/noto/a_7ixzi4.enc + RELOC/fonts/enc/dvips/noto/a_7kfhbb.enc + RELOC/fonts/enc/dvips/noto/a_7nvxzr.enc + RELOC/fonts/enc/dvips/noto/a_7tyugd.enc + RELOC/fonts/enc/dvips/noto/a_a3ay2j.enc + RELOC/fonts/enc/dvips/noto/a_andblm.enc + RELOC/fonts/enc/dvips/noto/a_anmevl.enc + RELOC/fonts/enc/dvips/noto/a_bvwui6.enc + RELOC/fonts/enc/dvips/noto/a_bxhngq.enc + RELOC/fonts/enc/dvips/noto/a_c3bld5.enc + RELOC/fonts/enc/dvips/noto/a_c6wwr2.enc + RELOC/fonts/enc/dvips/noto/a_cjhu7y.enc + RELOC/fonts/enc/dvips/noto/a_clpsiq.enc + RELOC/fonts/enc/dvips/noto/a_cn5brv.enc + RELOC/fonts/enc/dvips/noto/a_cp3cte.enc + RELOC/fonts/enc/dvips/noto/a_cwvxtj.enc + RELOC/fonts/enc/dvips/noto/a_d2rsb5.enc + RELOC/fonts/enc/dvips/noto/a_d4qnfi.enc + RELOC/fonts/enc/dvips/noto/a_dadzwx.enc + RELOC/fonts/enc/dvips/noto/a_dbnhwa.enc + RELOC/fonts/enc/dvips/noto/a_ditypz.enc + RELOC/fonts/enc/dvips/noto/a_dov7os.enc + RELOC/fonts/enc/dvips/noto/a_dudwhc.enc + RELOC/fonts/enc/dvips/noto/a_e3kj7m.enc + RELOC/fonts/enc/dvips/noto/a_efce2n.enc + RELOC/fonts/enc/dvips/noto/a_eoogfy.enc + RELOC/fonts/enc/dvips/noto/a_eosscl.enc + RELOC/fonts/enc/dvips/noto/a_ez2y5p.enc + RELOC/fonts/enc/dvips/noto/a_ez4wts.enc + RELOC/fonts/enc/dvips/noto/a_ezjax5.enc + RELOC/fonts/enc/dvips/noto/a_fv2jeg.enc + RELOC/fonts/enc/dvips/noto/a_g4k3w3.enc + RELOC/fonts/enc/dvips/noto/a_gphhjx.enc + RELOC/fonts/enc/dvips/noto/a_gwevhp.enc + RELOC/fonts/enc/dvips/noto/a_gyb4rp.enc + RELOC/fonts/enc/dvips/noto/a_h2q3hr.enc + RELOC/fonts/enc/dvips/noto/a_h6fjyk.enc + RELOC/fonts/enc/dvips/noto/a_hc6tg2.enc + RELOC/fonts/enc/dvips/noto/a_hge7ml.enc + RELOC/fonts/enc/dvips/noto/a_hj5qan.enc + RELOC/fonts/enc/dvips/noto/a_honops.enc + RELOC/fonts/enc/dvips/noto/a_hvbi2c.enc + RELOC/fonts/enc/dvips/noto/a_ibmxvo.enc + RELOC/fonts/enc/dvips/noto/a_ilpfnc.enc + RELOC/fonts/enc/dvips/noto/a_jbt6o3.enc + RELOC/fonts/enc/dvips/noto/a_jde47l.enc + RELOC/fonts/enc/dvips/noto/a_jdknzu.enc + RELOC/fonts/enc/dvips/noto/a_jjjryc.enc + RELOC/fonts/enc/dvips/noto/a_jjkxah.enc + RELOC/fonts/enc/dvips/noto/a_kcvkxa.enc + RELOC/fonts/enc/dvips/noto/a_kejqxe.enc + RELOC/fonts/enc/dvips/noto/a_ky2jui.enc + RELOC/fonts/enc/dvips/noto/a_lavhrd.enc + RELOC/fonts/enc/dvips/noto/a_lefphz.enc + RELOC/fonts/enc/dvips/noto/a_lhny74.enc + RELOC/fonts/enc/dvips/noto/a_m5xrw6.enc + RELOC/fonts/enc/dvips/noto/a_mpi44v.enc + RELOC/fonts/enc/dvips/noto/a_mth4zs.enc + RELOC/fonts/enc/dvips/noto/a_mun6gy.enc + RELOC/fonts/enc/dvips/noto/a_mz6bs5.enc + RELOC/fonts/enc/dvips/noto/a_n3icpd.enc + RELOC/fonts/enc/dvips/noto/a_n43hoi.enc + RELOC/fonts/enc/dvips/noto/a_ob47l7.enc + RELOC/fonts/enc/dvips/noto/a_og6ksl.enc + RELOC/fonts/enc/dvips/noto/a_ombcnn.enc + RELOC/fonts/enc/dvips/noto/a_oprn5k.enc + RELOC/fonts/enc/dvips/noto/a_pboqxw.enc + RELOC/fonts/enc/dvips/noto/a_pbvxm5.enc + RELOC/fonts/enc/dvips/noto/a_pgzpov.enc + RELOC/fonts/enc/dvips/noto/a_pi22w6.enc + RELOC/fonts/enc/dvips/noto/a_pke5io.enc + RELOC/fonts/enc/dvips/noto/a_pqgg2n.enc + RELOC/fonts/enc/dvips/noto/a_qbvbpy.enc + RELOC/fonts/enc/dvips/noto/a_qhtgxt.enc + RELOC/fonts/enc/dvips/noto/a_qndmgf.enc + RELOC/fonts/enc/dvips/noto/a_r26tzy.enc + RELOC/fonts/enc/dvips/noto/a_rhblzr.enc + RELOC/fonts/enc/dvips/noto/a_rjgu3w.enc + RELOC/fonts/enc/dvips/noto/a_rrep23.enc + RELOC/fonts/enc/dvips/noto/a_rxdup2.enc + RELOC/fonts/enc/dvips/noto/a_sprqvi.enc + RELOC/fonts/enc/dvips/noto/a_sqptsk.enc + RELOC/fonts/enc/dvips/noto/a_sxundy.enc + RELOC/fonts/enc/dvips/noto/a_t2unpo.enc + RELOC/fonts/enc/dvips/noto/a_t3opuj.enc + RELOC/fonts/enc/dvips/noto/a_t6vbrd.enc + RELOC/fonts/enc/dvips/noto/a_tnyntu.enc + RELOC/fonts/enc/dvips/noto/a_u3fnjl.enc + RELOC/fonts/enc/dvips/noto/a_u5bewk.enc + RELOC/fonts/enc/dvips/noto/a_uhbuf6.enc + RELOC/fonts/enc/dvips/noto/a_vlry66.enc + RELOC/fonts/enc/dvips/noto/a_vyfymq.enc + RELOC/fonts/enc/dvips/noto/a_w67jv7.enc + RELOC/fonts/enc/dvips/noto/a_wcjgjy.enc + RELOC/fonts/enc/dvips/noto/a_wfibuq.enc + RELOC/fonts/enc/dvips/noto/a_wiy4e7.enc + RELOC/fonts/enc/dvips/noto/a_wsd2lr.enc + RELOC/fonts/enc/dvips/noto/a_x3b3qr.enc + RELOC/fonts/enc/dvips/noto/a_xdaab2.enc + RELOC/fonts/enc/dvips/noto/a_xjknry.enc + RELOC/fonts/enc/dvips/noto/a_xroyy4.enc + RELOC/fonts/enc/dvips/noto/a_xt7xsz.enc + RELOC/fonts/enc/dvips/noto/a_y2n3gg.enc + RELOC/fonts/enc/dvips/noto/a_z556xg.enc + RELOC/fonts/enc/dvips/noto/a_zmzdvf.enc + RELOC/fonts/enc/dvips/noto/a_zo23om.enc RELOC/fonts/map/dvips/noto/noto.map RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-ly1.tfm @@ -215153,8 +225565,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-lf-t1.tfm @@ -215173,8 +225588,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-osf-t1.tfm @@ -215201,8 +225619,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tlf-t1.tfm @@ -215221,8 +225642,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Black-tosf-t1.tfm @@ -215241,8 +225665,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-lf-t1.tfm @@ -215261,8 +225688,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-osf-t1.tfm @@ -215289,8 +225719,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tlf-t1.tfm @@ -215309,8 +225742,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BlackItalic-tosf-t1.tfm @@ -215329,8 +225765,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-lf-t1.tfm @@ -215349,8 +225788,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-osf-t1.tfm @@ -215377,8 +225819,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tlf-t1.tfm @@ -215397,8 +225842,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Bold-tosf-t1.tfm @@ -215417,8 +225865,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-lf-t1.tfm @@ -215437,8 +225888,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-osf-t1.tfm @@ -215465,8 +225919,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tlf-t1.tfm @@ -215485,8 +225942,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t1.tfm @@ -215495,1590 +225955,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-BoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-Condensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThin-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-ot1.tfm @@ -217089,8 +225965,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-lf-t1.tfm @@ -217109,8 +225988,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-osf-t1.tfm @@ -217137,8 +226019,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tlf-t1.tfm @@ -217157,8 +226042,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBold-tosf-t1.tfm @@ -217177,8 +226065,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-lf-t1.tfm @@ -217197,8 +226088,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-osf-t1.tfm @@ -217225,8 +226119,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.tfm @@ -217245,8 +226142,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.tfm @@ -217255,1590 +226155,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-ot1.tfm @@ -218849,8 +226165,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-lf-t1.tfm @@ -218869,8 +226188,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-osf-t1.tfm @@ -218897,8 +226219,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tlf-t1.tfm @@ -218917,8 +226242,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLight-tosf-t1.tfm @@ -218937,8 +226265,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-lf-t1.tfm @@ -218957,8 +226288,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-osf-t1.tfm @@ -218985,8 +226319,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tlf-t1.tfm @@ -219005,8 +226342,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ExtraLightItalic-tosf-t1.tfm @@ -219025,8 +226365,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-lf-t1.tfm @@ -219045,8 +226388,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-osf-t1.tfm @@ -219073,8 +226419,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tlf-t1.tfm @@ -219093,8 +226442,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Italic-tosf-t1.tfm @@ -219113,8 +226465,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-lf-t1.tfm @@ -219133,8 +226488,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-osf-t1.tfm @@ -219161,8 +226519,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tlf-t1.tfm @@ -219181,8 +226542,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Light-tosf-t1.tfm @@ -219201,8 +226565,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-lf-t1.tfm @@ -219221,8 +226588,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-osf-t1.tfm @@ -219249,8 +226619,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tlf-t1.tfm @@ -219269,8 +226642,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-LightItalic-tosf-t1.tfm @@ -219289,8 +226665,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-lf-t1.tfm @@ -219309,8 +226688,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-osf-t1.tfm @@ -219337,8 +226719,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tlf-t1.tfm @@ -219357,8 +226742,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Medium-tosf-t1.tfm @@ -219377,8 +226765,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-lf-t1.tfm @@ -219397,8 +226788,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-osf-t1.tfm @@ -219425,8 +226819,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tlf-t1.tfm @@ -219445,8 +226842,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-MediumItalic-tosf-t1.tfm @@ -219465,8 +226865,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-lf-t1.tfm @@ -219485,8 +226888,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-osf-t1.tfm @@ -219513,8 +226919,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tlf-t1.tfm @@ -219533,8 +226942,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Regular-tosf-t1.tfm @@ -219553,8 +226965,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-lf-t1.tfm @@ -219573,8 +226988,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-osf-t1.tfm @@ -219601,8 +227019,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tlf-t1.tfm @@ -219621,8 +227042,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBold-tosf-t1.tfm @@ -219641,8 +227065,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-lf-t1.tfm @@ -219661,8 +227088,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-osf-t1.tfm @@ -219689,8 +227119,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tlf-t1.tfm @@ -219709,8 +227142,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t1.tfm @@ -219719,1590 +227155,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-ot1.tfm @@ -221313,8 +227165,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-lf-t1.tfm @@ -221333,8 +227188,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-osf-t1.tfm @@ -221361,8 +227219,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tlf-t1.tfm @@ -221381,8 +227242,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-Thin-tosf-t1.tfm @@ -221401,8 +227265,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-lf-t1.tfm @@ -221421,8 +227288,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-osf-t1.tfm @@ -221449,8 +227319,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tlf-t1.tfm @@ -221469,8 +227342,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSans-ThinItalic-tosf-t1.tfm @@ -221497,8 +227373,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tlf-t1.tfm @@ -221517,8 +227396,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Black-tosf-t1.tfm @@ -221545,8 +227427,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tlf-t1.tfm @@ -221565,8 +227450,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t1.tfm @@ -221575,438 +227463,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Bold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-Condensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-CondensedThin-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-sup-ot1.tfm @@ -222025,8 +227481,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tlf-t1.tfm @@ -222045,8 +227504,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t1.tfm @@ -222055,438 +227517,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-sup-ot1.tfm @@ -222505,8 +227535,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tlf-t1.tfm @@ -222525,8 +227558,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-ExtraLight-tosf-t1.tfm @@ -222553,8 +227589,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tlf-t1.tfm @@ -222573,8 +227612,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Light-tosf-t1.tfm @@ -222601,8 +227643,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tlf-t1.tfm @@ -222621,8 +227666,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Medium-tosf-t1.tfm @@ -222649,8 +227697,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tlf-t1.tfm @@ -222669,8 +227720,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Regular-tosf-t1.tfm @@ -222697,8 +227751,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tlf-t1.tfm @@ -222717,8 +227774,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t1.tfm @@ -222727,438 +227787,6 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-SemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-sup-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-lgr.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2a.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2b.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-t2c.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1--base.tfm - RELOC/fonts/tfm/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-lgr.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ly1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-sup-ot1.tfm @@ -223177,8 +227805,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tlf-t1.tfm @@ -223197,8 +227828,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSansMono-Thin-tosf-t1.tfm @@ -223217,8 +227851,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-lf-t1.tfm @@ -223237,8 +227874,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-osf-t1.tfm @@ -223265,8 +227905,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tlf-t1.tfm @@ -223285,8 +227928,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Black-tosf-t1.tfm @@ -223305,8 +227951,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-lf-t1.tfm @@ -223325,8 +227974,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-osf-t1.tfm @@ -223353,8 +228005,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tlf-t1.tfm @@ -223373,8 +228028,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BlackItalic-tosf-t1.tfm @@ -223393,8 +228051,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-lf-t1.tfm @@ -223413,8 +228074,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-osf-t1.tfm @@ -223441,8 +228105,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tlf-t1.tfm @@ -223461,8 +228128,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Bold-tosf-t1.tfm @@ -223481,8 +228151,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-lf-t1.tfm @@ -223501,8 +228174,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-osf-t1.tfm @@ -223529,8 +228205,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tlf-t1.tfm @@ -223549,8 +228228,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-BoldItalic-tosf-t1.tfm @@ -223569,8 +228251,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-lf-t1.tfm @@ -223589,8 +228274,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-osf-t1.tfm @@ -223617,8 +228305,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tlf-t1.tfm @@ -223637,8 +228328,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBold-tosf-t1.tfm @@ -223657,8 +228351,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.tfm @@ -223677,8 +228374,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.tfm @@ -223705,8 +228405,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.tfm @@ -223725,8 +228428,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.tfm @@ -223745,8 +228451,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-lf-t1.tfm @@ -223765,8 +228474,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-osf-t1.tfm @@ -223793,8 +228505,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tlf-t1.tfm @@ -223813,8 +228528,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLight-tosf-t1.tfm @@ -223833,8 +228551,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-lf-t1.tfm @@ -223853,8 +228574,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-osf-t1.tfm @@ -223881,8 +228605,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.tfm @@ -223901,8 +228628,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.tfm @@ -223921,8 +228651,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-lf-t1.tfm @@ -223941,8 +228674,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-osf-t1.tfm @@ -223969,8 +228705,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tlf-t1.tfm @@ -223989,8 +228728,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Italic-tosf-t1.tfm @@ -224009,8 +228751,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-lf-t1.tfm @@ -224029,8 +228774,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-osf-t1.tfm @@ -224057,8 +228805,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tlf-t1.tfm @@ -224077,8 +228828,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Light-tosf-t1.tfm @@ -224097,8 +228851,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-lf-t1.tfm @@ -224117,8 +228874,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-osf-t1.tfm @@ -224145,8 +228905,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tlf-t1.tfm @@ -224165,8 +228928,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-LightItalic-tosf-t1.tfm @@ -224185,8 +228951,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-lf-t1.tfm @@ -224205,8 +228974,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-osf-t1.tfm @@ -224233,8 +229005,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tlf-t1.tfm @@ -224253,8 +229028,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Medium-tosf-t1.tfm @@ -224273,8 +229051,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-lf-t1.tfm @@ -224293,8 +229074,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-osf-t1.tfm @@ -224321,8 +229105,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tlf-t1.tfm @@ -224341,8 +229128,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-MediumItalic-tosf-t1.tfm @@ -224361,8 +229151,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-lf-t1.tfm @@ -224381,8 +229174,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-osf-t1.tfm @@ -224409,8 +229205,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tlf-t1.tfm @@ -224429,8 +229228,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Regular-tosf-t1.tfm @@ -224449,8 +229251,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-lf-t1.tfm @@ -224469,8 +229274,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-osf-t1.tfm @@ -224497,8 +229305,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tlf-t1.tfm @@ -224517,8 +229328,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBold-tosf-t1.tfm @@ -224537,8 +229351,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-lf-t1.tfm @@ -224557,8 +229374,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-osf-t1.tfm @@ -224585,8 +229405,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.tfm @@ -224605,8 +229428,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.tfm @@ -224625,8 +229451,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-lf-t1.tfm @@ -224645,8 +229474,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-osf-t1.tfm @@ -224673,8 +229505,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tlf-t1.tfm @@ -224693,8 +229528,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-Thin-tosf-t1.tfm @@ -224713,8 +229551,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-lf-t1.tfm @@ -224733,8 +229574,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-osf-t1.tfm @@ -224761,8 +229605,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tlf-t1.tfm @@ -224781,8 +229628,11 @@ runfiles size=50604 RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2a--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2a.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2b--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2b.tfm + RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2c--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-sc-t2c.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1--base.tfm RELOC/fonts/tfm/google/noto/NotoSerif-ThinItalic-tosf-t1.tfm @@ -224795,44 +229645,8 @@ runfiles size=50604 RELOC/fonts/truetype/google/noto/NotoSans-BlackItalic.ttf RELOC/fonts/truetype/google/noto/NotoSans-Bold.ttf RELOC/fonts/truetype/google/noto/NotoSans-BoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-Condensed.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedBlackItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedExtraLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedMediumItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedSemiBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedThin.ttf - RELOC/fonts/truetype/google/noto/NotoSans-CondensedThinItalic.ttf RELOC/fonts/truetype/google/noto/NotoSans-ExtraBold.ttf RELOC/fonts/truetype/google/noto/NotoSans-ExtraBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensed.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBlackItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedExtraLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedMediumItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThin.ttf - RELOC/fonts/truetype/google/noto/NotoSans-ExtraCondensedThinItalic.ttf RELOC/fonts/truetype/google/noto/NotoSans-ExtraLight.ttf RELOC/fonts/truetype/google/noto/NotoSans-ExtraLightItalic.ttf RELOC/fonts/truetype/google/noto/NotoSans-Italic.ttf @@ -224843,61 +229657,16 @@ runfiles size=50604 RELOC/fonts/truetype/google/noto/NotoSans-Regular.ttf RELOC/fonts/truetype/google/noto/NotoSans-SemiBold.ttf RELOC/fonts/truetype/google/noto/NotoSans-SemiBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensed.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBlackItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedExtraLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedLightItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedMediumItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedSemiBoldItalic.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThin.ttf - RELOC/fonts/truetype/google/noto/NotoSans-SemiCondensedThinItalic.ttf RELOC/fonts/truetype/google/noto/NotoSans-Thin.ttf RELOC/fonts/truetype/google/noto/NotoSans-ThinItalic.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Black.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Bold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-Condensed.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-CondensedThin.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensed.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraCondensedThin.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-ExtraLight.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Light.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Medium.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Regular.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-SemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensed.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBlack.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedExtraLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedLight.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedMedium.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedSemiBold.ttf - RELOC/fonts/truetype/google/noto/NotoSansMono-SemiCondensedThin.ttf RELOC/fonts/truetype/google/noto/NotoSansMono-Thin.ttf RELOC/fonts/truetype/google/noto/NotoSerif-Black.ttf RELOC/fonts/truetype/google/noto/NotoSerif-BlackItalic.ttf @@ -224917,52 +229686,12 @@ runfiles size=50604 RELOC/fonts/truetype/google/noto/NotoSerif-SemiBoldItalic.ttf RELOC/fonts/truetype/google/noto/NotoSerif-Thin.ttf RELOC/fonts/truetype/google/noto/NotoSerif-ThinItalic.ttf - RELOC/fonts/type1/google/noto/NotoMono-Bold.pfb - RELOC/fonts/type1/google/noto/NotoMono-BoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoMono-Italic.pfb - RELOC/fonts/type1/google/noto/NotoMono-Regular.pfb RELOC/fonts/type1/google/noto/NotoSans-Black.pfb RELOC/fonts/type1/google/noto/NotoSans-BlackItalic.pfb RELOC/fonts/type1/google/noto/NotoSans-Bold.pfb RELOC/fonts/type1/google/noto/NotoSans-BoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-Condensed.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedBlackItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedExtraLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedMediumItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedSemiBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedThin.pfb - RELOC/fonts/type1/google/noto/NotoSans-CondensedThinItalic.pfb RELOC/fonts/type1/google/noto/NotoSans-ExtraBold.pfb RELOC/fonts/type1/google/noto/NotoSans-ExtraBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensed.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBlackItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedExtraLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedMediumItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedSemiBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThin.pfb - RELOC/fonts/type1/google/noto/NotoSans-ExtraCondensedThinItalic.pfb RELOC/fonts/type1/google/noto/NotoSans-ExtraLight.pfb RELOC/fonts/type1/google/noto/NotoSans-ExtraLightItalic.pfb RELOC/fonts/type1/google/noto/NotoSans-Italic.pfb @@ -224973,61 +229702,16 @@ runfiles size=50604 RELOC/fonts/type1/google/noto/NotoSans-Regular.pfb RELOC/fonts/type1/google/noto/NotoSans-SemiBold.pfb RELOC/fonts/type1/google/noto/NotoSans-SemiBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensed.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBlackItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedExtraLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedLightItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedMediumItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedSemiBoldItalic.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThin.pfb - RELOC/fonts/type1/google/noto/NotoSans-SemiCondensedThinItalic.pfb RELOC/fonts/type1/google/noto/NotoSans-Thin.pfb RELOC/fonts/type1/google/noto/NotoSans-ThinItalic.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Black.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Bold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-Condensed.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-CondensedThin.pfb RELOC/fonts/type1/google/noto/NotoSansMono-ExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensed.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-ExtraCondensedThin.pfb RELOC/fonts/type1/google/noto/NotoSansMono-ExtraLight.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Light.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Medium.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Regular.pfb RELOC/fonts/type1/google/noto/NotoSansMono-SemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensed.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBlack.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedExtraLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedLight.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedMedium.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedSemiBold.pfb - RELOC/fonts/type1/google/noto/NotoSansMono-SemiCondensedThin.pfb RELOC/fonts/type1/google/noto/NotoSansMono-Thin.pfb RELOC/fonts/type1/google/noto/NotoSerif-Black.pfb RELOC/fonts/type1/google/noto/NotoSerif-BlackItalic.pfb @@ -225050,2287 +229734,1342 @@ runfiles size=50604 RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Black-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Black-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Black-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BlackItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Bold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-BoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-Condensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBlackItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedExtraLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedMediumItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedSemiBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThin-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-CondensedThinItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBlackItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedMediumItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThin-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-ExtraCondensedThinItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLight-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ExtraLightItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Italic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Light-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Light-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Light-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-LightItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Medium-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-MediumItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Regular-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-SemiBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBlackItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedLightItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedMediumItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThin-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-lf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-osf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSans-SemiCondensedThinItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-Thin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSans-ThinItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Black-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Bold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-Condensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-CondensedThin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-ExtraCondensedThin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-ExtraLight-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Light-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Medium-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Regular-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-SemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensed-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBlack-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedExtraLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedLight-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedMedium-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedSemiBold-tosf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-sup-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tlf-ts1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ly1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-ot1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-sc-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-t1.vf - RELOC/fonts/vf/google/noto/NotoSansMono-SemiCondensedThin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSansMono-Thin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Black-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BlackItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Bold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-BoldItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraBoldItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLight-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ExtraLightItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Italic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Light-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-LightItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Medium-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-MediumItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Regular-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBold-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-SemiBoldItalic-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-Thin-tosf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-lf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-osf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-sup-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tlf-ts1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ly1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-ot1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t2a.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t2b.vf + RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-sc-t2c.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-t1.vf RELOC/fonts/vf/google/noto/NotoSerif-ThinItalic-tosf-ts1.vf RELOC/tex/latex/noto/LGRNotoSans-LF.fd @@ -227445,18 +231184,18 @@ catalogue-topics font font-body font-proportional font-mono font-multilingual fo name noto-emoji category Package -revision 53968 +revision 62950 shortdesc Noto Emoji fonts relocated 1 longdesc Noto Color Emoji supports all emoji defined in the latest longdesc Unicode version. -containersize 8952232 -containerchecksum c681b795a4f2678f5da213cabb37dde0fd604036e59593c34100bfca53ae56e9cbe2f408a2d1a99dd143b07d8a50fabafec0e51d614bb3ee6122b8eb27d6eb10 -doccontainersize 608 -doccontainerchecksum c1794f61d4597ad06c504efdf94efaf2172d87b3efc29a289350122f85337f73c319fa7e10b261e7a9bc79ce96b8fdb3dcf4348454a0d2902ec5a47433b95ee4 +containersize 9251416 +containerchecksum 68400eedc7540f11c0d3649558ce14ac1bb0bf7f2ed56dfda355fa08c7bf37e947a4c48040075e52b4f4205250df2688a7de22fcbde8285ae4549deb5e02e263 +doccontainersize 612 +doccontainerchecksum 6c0d286c903b49e6c09c570a8586b0f480497f5b64eaf7e9a99d81a143ff9c383cc281d2d1c06293d82c459b5ac108cd960f1d5e4ddd80a70f6c39b4ae3a7d75 docfiles size=1 RELOC/doc/fonts/noto-emoji/README.md details="Readme" -runfiles size=2395 +runfiles size=2512 RELOC/fonts/truetype/google/noto-emoji/NotoColorEmoji.ttf RELOC/fonts/truetype/google/noto-emoji/NotoEmoji-Regular.ttf catalogue-contact-bugs https://github.com/googlefonts/noto-emoji/issues @@ -227465,7 +231204,7 @@ catalogue-contact-repository https://github.com/googlefonts/noto-emoji catalogue-ctan /fonts/noto-emoji catalogue-license ofl catalogue-topics font font-ttf font-symbol -catalogue-version 2019-11-19-unicode12 +catalogue-version 2.034 name notoccite category Package @@ -227555,7 +231294,7 @@ catalogue-version 1.02 name novel category Package -revision 54512 +revision 65848 shortdesc Class for printing fiction, such as novels relocated 1 longdesc This LuaLaTeX document class is specifically written to meet @@ -227565,14 +231304,16 @@ longdesc Built-in PDF/X is available, using new technology. The package longdesc is well suited for detective novels, science fiction, and short longdesc stories. It is however not recommended for creating color longdesc picture books or dissertations. -containersize 120892 -containerchecksum 967ca49cb355529bd6c3435aff389ec5b72b5d715c50a86f73b2cfe8209436046f25e1471967259adf8592fec317632193af00c7fe18dda967bdc510096580bc -doccontainersize 4672576 -doccontainerchecksum 22b489764736c8fe428a5860c7d19cfe4a7e222d4e69005235da6bb6acb9aaa3ba4a66648a29f6a8c07fc39e72b73aa7044f60d2cfceaa0b78ef520e0291a10e -docfiles size=1339 +containersize 116240 +containerchecksum 1b35a599c2328edcba93e37dbb30e19c3e2211688a5c3525cf7da350113955bc421cb33239679f08cf9ab55a4858fed68ef5ca2731de3cdb1fb4d32adb975ef8 +doccontainersize 4729452 +doccontainerchecksum 5ee87a76cb3de38b44c707799d3d72405b3602a98026e96664eb08bffc30641e45d9802355a91a6fc8a4bd8aa0319597d111efd9968094bdd3718472bbd3be28 +docfiles size=1377 + RELOC/doc/lualatex/novel/README.md details="Readme" RELOC/doc/lualatex/novel/extras/CPmodified.otf RELOC/doc/lualatex/novel/extras/NovelDeco-glyphs.pdf RELOC/doc/lualatex/novel/extras/novel-Gallery-ChapterStart.pdf + RELOC/doc/lualatex/novel/extras/novel-example.pdf RELOC/doc/lualatex/novel/extras/novel-example.tex RELOC/doc/lualatex/novel/extras/novel-extras-README.html RELOC/doc/lualatex/novel/extras/novel-scripts.zip @@ -227580,6 +231321,7 @@ docfiles size=1339 RELOC/doc/lualatex/novel/extras/novel-testimage.png RELOC/doc/lualatex/novel/extras/novel-testscript.jpg RELOC/doc/lualatex/novel/extras/novel-testscript.png + RELOC/doc/lualatex/novel/extras/novel-testsuite.pdf RELOC/doc/lualatex/novel/extras/novel-testsuite.tex RELOC/doc/lualatex/novel/html-resources/10transold.png RELOC/doc/lualatex/novel/html-resources/10trueold.png @@ -227686,7 +231428,7 @@ docfiles size=1339 RELOC/doc/lualatex/novel/novel-documentation.html details="Package documentation (HTML)" RELOC/doc/lualatex/novel/novel.pdf details="Example document" RELOC/doc/lualatex/novel/novel.tex -runfiles size=104 +runfiles size=96 RELOC/fonts/opentype/novel/NovelDeco.otf RELOC/tex/lualatex/novel/novel-CGATSTR001.clo RELOC/tex/lualatex/novel/novel-CalculateLayout.sty @@ -227700,7 +231442,6 @@ runfiles size=104 RELOC/tex/lualatex/novel/novel-Images.sty RELOC/tex/lualatex/novel/novel-JC200103.clo RELOC/tex/lualatex/novel/novel-LayoutSettings.sty - RELOC/tex/lualatex/novel/novel-Obsolete.sty RELOC/tex/lualatex/novel/novel-PostLayout.sty RELOC/tex/lualatex/novel/novel-Sandbox.sty RELOC/tex/lualatex/novel/novel-TextMacros.sty @@ -227711,7 +231452,7 @@ runfiles size=104 catalogue-ctan /macros/luatex/latex/novel catalogue-license lppl1.3c ofl catalogue-topics luatex production book-pub class -catalogue-version 1.52 +catalogue-version 1.80 name nowidow category Package @@ -227761,57 +231502,6 @@ catalogue-license lppl catalogue-topics table-long table catalogue-version 1.0 -name npp-for-context -category Package -revision 51389 -shortdesc ConTeXt plugin for Notepad++ -relocated 1 -longdesc This package provides A plugin for Notepad++ that implements, -longdesc for the ConTeXt document processing system, a language lexer -longdesc for semantic highlighting of TeX, LuaTeX, and ConTeXt commands; -longdesc autocompletion of commands with full support for calltips (set -longdesc in columns); tagging and insertion of markup and templates, -longdesc with support for mnemonic keys. A color scheme and two -longdesc complementary Notepad++ themes: "Silver Twilight Hi" and -longdesc "Silver Twilight Lo". -containersize 664 -containerchecksum 6d5da8b6e2f2bb6b514d43e8b72157a81285b6c15cbe74891a94f21a09a313813ebcf9e3a0a12847875f13d5599436ada4e5febb694c0a480931dd62a23035c6 -doccontainersize 2136232 -doccontainerchecksum b3bddb0b9254ef9755628097ccb24ccbe86c25d3cba7a120c5d55da98a19061b716df1590a39323f57a8a698c5aafb5ecbe8b27d6505f2ba4acdf1ccdbcf82cd -docfiles size=682 - RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.sha256sum - RELOC/doc/context/third/npp-for-context/Npp-for-ConTeXt.zip - RELOC/doc/context/third/npp-for-context/README.md details="Readme" - RELOC/doc/context/third/npp-for-context/doc/autocompletion-command.jpg - RELOC/doc/context/third/npp-for-context/doc/autocompletion-word.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi01.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi02.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi03.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi04.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi05.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi06.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi07.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi08.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi09.jpg - RELOC/doc/context/third/npp-for-context/doc/bidi10.jpg - RELOC/doc/context/third/npp-for-context/doc/calltip.jpg - RELOC/doc/context/third/npp-for-context/doc/dividingline.jpg - RELOC/doc/context/third/npp-for-context/doc/keywindow.jpg - RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.pdf details="Package documentation" - RELOC/doc/context/third/npp-for-context/doc/npp-context-manual.tex - RELOC/doc/context/third/npp-for-context/doc/nppexec1.jpg - RELOC/doc/context/third/npp-for-context/doc/nppexec2.jpg - RELOC/doc/context/third/npp-for-context/doc/nppexec3.jpg - RELOC/doc/context/third/npp-for-context/doc/rightclickmenu.jpg - RELOC/doc/context/third/npp-for-context/doc/scite-tools.jpg - RELOC/doc/context/third/npp-for-context/doc/style-configurator.jpg - RELOC/doc/context/third/npp-for-context/doc/tagsmenu.jpg -catalogue-contact-repository https://github.com/luigiScarso/context-npp -catalogue-ctan /support/npp-for-context -catalogue-license noinfo -catalogue-topics editor-extn -catalogue-version 0.98 - name nrc category Package revision 29027 @@ -227847,7 +231537,7 @@ catalogue-version 2.01a name ntgclass category Package -revision 56959 +revision 65522 shortdesc "European" versions of standard classes relocated 1 longdesc The bundle offers versions of the standard LaTeX article and @@ -227857,13 +231547,12 @@ longdesc paper than is the a4paper class option of the standard classes. longdesc The classes include several for article and report longdesc requirements, and a letter class. The elements of the bundle longdesc were designed by members of the Dutch TeX Users Group NTG. -containersize 16060 -containerchecksum bb1cd3532f91bde7768a027d51216bd56c8401cbcec4996587760e3289d892d2f1d4efe834d55146026ecab413b04d1f4e8e132a53e3b6f925f4aaf0bc1124f9 -doccontainersize 1711884 -doccontainerchecksum a58debb1c6a07c63dfb45ea6647db75bb09217a2c7680318cd6ee56575dfde985ae88ba361ea9ed1adb26ecea430e851599ccfa900292e4847b70e02eff65887 -docfiles size=482 +containersize 16076 +containerchecksum f0bfad104459f2740712d186f7f9aab20e9860ccf75f8c552a4c80d8b14ece4d503d2aabbd7d3000e1bf05203f41ebd49f2c693b4d36478b631cd27ce71c9c0d +doccontainersize 1665028 +doccontainerchecksum c6a6d7302edac0aef33d1747900c3781683c2a0deb4d9dc3cafabda375e9cc92d9b57b6638442c164b7435279d43f208d2ebbdacf944e96c71ee368087d70922 +docfiles size=488 RELOC/doc/latex/ntgclass/CATALOG - RELOC/doc/latex/ntgclass/ChangeLog RELOC/doc/latex/ntgclass/MANIFEST RELOC/doc/latex/ntgclass/README details="Readme" RELOC/doc/latex/ntgclass/a4.pdf @@ -227879,8 +231568,8 @@ docfiles size=482 RELOC/doc/latex/ntgclass/ntgclass.pdf RELOC/doc/latex/ntgclass/rapdoc.pdf details="The rapport (report) classes" language="nl" RELOC/doc/latex/ntgclass/rapdoc.tex -srccontainersize 55656 -srccontainerchecksum 989942960e4cc5320f3bc877cecec195dca4f8263b3de1b0d2a233adedef0380cabc5d017cb256ff8c46889df8878bc68a855a754cdc8b9dd0cd6a7b05242c08 +srccontainersize 55736 +srccontainerchecksum 60cc5982eeabb092b53f1bda76c12e3c090d9777d6a39ebe7b675dfa5dfab27450edac8da7e44539a67af1cf737060e0e52dd80116b8b7f784f46efc9fe7df82 srcfiles size=76 RELOC/source/latex/ntgclass/a4.dtx RELOC/source/latex/ntgclass/a4.ins @@ -227903,7 +231592,7 @@ runfiles size=71 catalogue-ctan /macros/latex/contrib/ntgclass catalogue-license lppl1.3 catalogue-topics class letter -catalogue-version 2.1e +catalogue-version 2.1f name nth category Package @@ -228115,7 +231804,7 @@ catalogue-version 1.0 name numerica category Package -revision 57759 +revision 61283 shortdesc Numerically evaluate mathematical expressions in LaTeX form relocated 1 longdesc This package defines a command to wrap around a mathematical @@ -228127,32 +231816,72 @@ longdesc compile-as-you-go systems, interactive back-of-envelope longdesc calculations and numerical exploration are possible within the longdesc document being worked on. The package requires the bundles longdesc l3kernel and l3packages, and the amsmath and mathtools -longdesc packages. Other commands iterate and find fixed points of -longdesc functions of a single variable, find the zeros or extrema of -longdesc such functions, calculate the terms of recurrence relations, -longdesc and create multi-column tables of function values (which -longdesc requires the booktabs package). -containersize 25808 -containerchecksum 2d4b5de317de660b01cf242fa623f5b37bea19cab30c7750b056560c1956718eb4903fcd4bc32323ccf0888ab4340c7d70e9cb8b66bb4aedeaa07a9faad32880 -doccontainersize 1821152 -doccontainerchecksum 062ef217d285753caef67842b30e395799236d0f989e2ea943b64b92b468c2426203d41a08f869f0c8c30554dc7391f5a097b99f9e4f4fdd31c1ce038ba33444 -docfiles size=616 +longdesc packages. +containersize 17804 +containerchecksum 9fec18e27d78b81ced365ebbe20ea49aca99c4aadd7b21cc630cede843ef3c191824556ebdb9988c125603760a68e56b8f9b4d0f37d662178af29e9f8182c0a5 +doccontainersize 990880 +doccontainerchecksum 76b65febc8b91f2e4c18dc1b93e3eeb33d70caccbab60f3d34b3eb36e253b4d2a1d97213220d40d662c1e53bee2f2845784793214724c65b4dc19af288b9f49c +docfiles size=358 RELOC/doc/latex/numerica/README.txt details="Readme" - RELOC/doc/latex/numerica/numerica-basics.pdf details="Basic package documentation" - RELOC/doc/latex/numerica/numerica-basics.tex - RELOC/doc/latex/numerica/numerica-plus.pdf details="Documentation of the plus module" - RELOC/doc/latex/numerica/numerica-plus.tex - RELOC/doc/latex/numerica/numerica-tables.pdf details="Documentation of the tables module" - RELOC/doc/latex/numerica/numerica-tables.tex -runfiles size=43 - RELOC/tex/latex/numerica/numerica-lyx.def - RELOC/tex/latex/numerica/numerica-plus.def - RELOC/tex/latex/numerica/numerica-tables.def + RELOC/doc/latex/numerica/numerica.pdf details="Package documentation" + RELOC/doc/latex/numerica/numerica.tex +runfiles size=27 RELOC/tex/latex/numerica/numerica.sty catalogue-ctan /macros/latex/contrib/numerica catalogue-license lppl1.3c catalogue-topics maths calculation expl3 -catalogue-version 1.0.0 +catalogue-version 2.0.0 + +name numerica-plus +category Package +revision 61289 +shortdesc Iteration and recurrence relations: finding fixed points, zeros and extrema of functions +relocated 1 +longdesc The package defines commands to iterate functions of a single +longdesc variable, find fixed points, zeros and extrema of such +longdesc functions, and calculate the terms of recurrence relations. +longdesc numerica-plus requires the package numerica, version 2, which +longdesc in turn requires l3kernel , l3packages, and the amsmath and +longdesc mathtools packages. +containersize 6016 +containerchecksum 821e5f200b50097f245802fe7fc272a609988e5c8cee98c07ec1bd562d79bea17b8688cb5886febbd596904498aecee5794845deb83ef25a36c60afcbe8026c8 +doccontainersize 566944 +doccontainerchecksum f680560ebe7777ccc0e9f04dd209eee90c478c3d5bae3b32f829ab889997c31d9c5f9efe3a57450304aafcebfff09edb02481a596315e7f233b47fe328c6f3c8 +docfiles size=179 + RELOC/doc/latex/numerica-plus/README.txt details="Readme" + RELOC/doc/latex/numerica-plus/numerica-plus.pdf details="Package documentation" + RELOC/doc/latex/numerica-plus/numerica-plus.tex +runfiles size=9 + RELOC/tex/latex/numerica-plus/numerica-plus.sty +catalogue-ctan /macros/latex/contrib/numerica-plus +catalogue-license lppl1.3c +catalogue-topics maths calculation expl3 +catalogue-version 2.0.0 + +name numerica-tables +category Package +revision 61288 +shortdesc Create multi-column tables of mathematical functions +relocated 1 +longdesc The package defines a command to create possibly multi-column +longdesc tables of mathematical function values. Key = value settings +longdesc produce a wide variety of table styles consistent with the +longdesc booktabs package (required). Also required are the packages +longdesc numerica(v.2), l3kernel, l3packages, amsmath and mathtools. +containersize 7376 +containerchecksum d06b2e85dcba39b2dff338f02ead71149330a711570d4c14ea4c2ca1f6c95d1bd8465967cfdb0e57b0a4b2b8cafff4f56ff585a1b2b2272f225e44958cbd316b +doccontainersize 577124 +doccontainerchecksum 9585b95c14bfde30d5de6acf47c0f23328c1b986c075b6842f5a6878eb15761c59843806c649bd548faa90cc46ba93d7ecc021ca699f5eeb8644a3d314e5d737 +docfiles size=186 + RELOC/doc/latex/numerica-tables/README.txt details="Readme" + RELOC/doc/latex/numerica-tables/numerica-tables.pdf details="Package documentation" + RELOC/doc/latex/numerica-tables/numerica-tables.tex +runfiles size=11 + RELOC/tex/latex/numerica-tables/numerica-tables.sty +catalogue-ctan /macros/latex/contrib/numerica-tables +catalogue-license lppl1.3c +catalogue-topics maths calculation expl3 +catalogue-version 2.0.0 name numericplots category Package @@ -228330,32 +232059,33 @@ catalogue-version 1.39 name numspell category Package -revision 56912 +revision 61132 shortdesc Spelling cardinal and ordinal numbers relocated 1 longdesc This package supports the spelling of cardinal and ordinal longdesc numbers. Supported languages are English, French, German, -longdesc Hungarian, and Italian. The package requires xstring and +longdesc Hungarian, Italian, and Latin. The package requires xstring and longdesc iflang. -containersize 8856 -containerchecksum e3731b00f027319e67ece82e727fde32be4fd80ba508b173f54f89edab3fdf5a98148ea925f68039adec2c09fa7d2284d1809d5a95aebd0e0d364f1b8b82b698 -doccontainersize 226176 -doccontainerchecksum 368b5af91cf3d8142bd243d42a6f3f939a2172aa4837487b78de51caa5ff5801123af307c14aa7b66a32fa791268503bc7ed6ed1cc7ddbaf59c84a57914d615c -docfiles size=60 +containersize 13784 +containerchecksum 4db8e16d137f47681f754cb2bc1b9b6fb404676f57c5696ef044287a3f0052603978997e597a2b8b13393d59e6531298daa127d72a381770cadef1a29944948b +doccontainersize 269676 +doccontainerchecksum 8bcc1bcca230a7829a106c66904feb70de818dde2d6c4c7be3a5df3078482bba001a35db85b1c548fdb5aada0018cf6f0dee936641ae5959ebb84dfe953b6b9f +docfiles size=73 RELOC/doc/latex/numspell/README details="Readme" RELOC/doc/latex/numspell/numspell.pdf details="Package documentation" RELOC/doc/latex/numspell/numspell.tex -runfiles size=25 +runfiles size=34 RELOC/tex/latex/numspell/numspell-english.sty RELOC/tex/latex/numspell/numspell-french.sty RELOC/tex/latex/numspell/numspell-german.sty RELOC/tex/latex/numspell/numspell-italian.sty + RELOC/tex/latex/numspell/numspell-latin.sty RELOC/tex/latex/numspell/numspell-magyar.sty RELOC/tex/latex/numspell/numspell.sty catalogue-ctan /macros/latex/contrib/numspell catalogue-license lppl1.3 catalogue-topics numbers multilingual english french german hungarian italian -catalogue-version 1.4 +catalogue-version 1.5 name nunito category Package @@ -228810,9 +232540,50 @@ catalogue-license ofl lppl catalogue-topics font font-body font-sans font-proportional font-otf font-type1 font-supp font-t1enc catalogue-version 0.0.1 +name nwafuthesis +category Package +revision 63438 +shortdesc A thesis template package for Northwest A&F University, China +relocated 1 +longdesc This template supports doctoral and master dissertations and +longdesc undergraduate theses in Chinese. With the help of modern LaTeX3 +longdesc technology, nwafuthesis aims to create a simple interface, a +longdesc normative format, as well as a hackable class for the users. At +longdesc present, nwafuthesis only supports XeTeX and LuaTeX engines. +longdesc nwafuthesis only allows UTF-8 encoding. nwafuthesis is based on +longdesc the fduthesis template. +containersize 19760 +containerchecksum fb446200dd57be37bca4e526506124bcfe3c35c3af452cbe542bf3f5e7c56f3108d5482131641a9bb8b379c4aa713152fdc13ee9f1aedb6a97c545328c0f04a1 +doccontainersize 2263888 +doccontainerchecksum 009615c925755952d8a26a8d51f6d8d066b644a9168e241b339a137e56365bb17452016c8befe3fa3dbdccf6ae68daea3f29b99ae8d8c8e50e8028570620da2f +docfiles size=982 + RELOC/doc/latex/nwafuthesis/README.md details="Readme" + RELOC/doc/latex/nwafuthesis/logo/building.jpg + RELOC/doc/latex/nwafuthesis/logo/motto.png + RELOC/doc/latex/nwafuthesis/logo/nwafu-bar.pdf + RELOC/doc/latex/nwafuthesis/logo/nwafu-circle.pdf + RELOC/doc/latex/nwafuthesis/logo/workflow.pdf + RELOC/doc/latex/nwafuthesis/nwafudoc.cls + RELOC/doc/latex/nwafuthesis/nwafuthesis.pdf details="Package documentation" language="zh" +srccontainersize 62492 +srccontainerchecksum d2544ff7f20410b3f84459776d5f5b29c0b0b88e3cd9a1da6f3280f6e536996ca04c15cfb831c859b2c7a95d9bc8c93ca45b4a5fd3967d9c5b4d49969b9e7c06 +srcfiles size=85 + RELOC/source/latex/nwafuthesis/build-win.bat + RELOC/source/latex/nwafuthesis/build.sh + RELOC/source/latex/nwafuthesis/nwafuthesis-doc.dtx + RELOC/source/latex/nwafuthesis/nwafuthesis.dtx +runfiles size=33 + RELOC/tex/latex/nwafuthesis/nwafuthesis.cls +catalogue-contact-bugs https://gitee.com/nwafu_nan/nwafuthesis-l3/issues +catalogue-contact-repository https://gitee.com/nwafu_nan/nwafuthesis-l3 +catalogue-ctan /macros/unicodetex/latex/nwafuthesis +catalogue-license lppl1.3c +catalogue-topics class doc-templ dissertation chinese expl3 +catalogue-version 1.15 + name nwejm category Package -revision 54392 +revision 64462 shortdesc Support for the journal "North-Western European Journal of Mathematics" relocated 1 longdesc The bundle includes LaTeX classes and BibLaTeX styles files @@ -228825,18 +232596,19 @@ longdesc enabling the authors to be able to work their document in longdesc actual conditions, provide a number of tools (commands and longdesc environments) to facilitate the drafting of documents, in longdesc particular those containing mathematical formulas. -containersize 4059912 -containerchecksum 5a7e400c00bc8d5d607a61d1ebc30ed2d36bbd1b270868c89f654f84fe9f6d4259863b047bed1c1dba9b79a8a1f1b1ac612b95530903f81dae52114e420a32e3 -doccontainersize 1557288 -doccontainerchecksum 06da866b9f491a5969460f52f9496f723f8fb3347c7b0c78e48f07987e953994fe658743c6eed5c346277469e89b07a13a3a727d6df7838a8f5e66dead1142dc -docfiles size=542 +containersize 4089760 +containerchecksum eace1abc8a31104d1266acc6f19ac59b0d0ba73cda2b44bc308ba2a22c9ccd682ca489b9f164d30623f60c911717a171665da0feec6e0caf7c7cf01b8e51139d +doccontainersize 1608828 +doccontainerchecksum 8ebf12322bf1beecd8e224e9b7a16becf68aee9910717ca39d73ddf3537edc28d559337350ec9af18132679a77319115f6c1bad29cc5ade8443e6e129b3e542b +docfiles size=564 RELOC/doc/latex/nwejm/CHANGELOG.md RELOC/doc/latex/nwejm/README.md details="Readme.md" RELOC/doc/latex/nwejm/addons/completion/nwejm.cwl RELOC/doc/latex/nwejm/addons/completion/nwejmart.cwl - RELOC/doc/latex/nwejm/english/README-TRANSLATION.md - RELOC/doc/latex/nwejm/english/documentation/latexmkrc - RELOC/doc/latex/nwejm/english/documentation/nwejm-en.tex + RELOC/doc/latex/nwejm/english/latexmkrc + RELOC/doc/latex/nwejm/english/nwejm-en.bib + RELOC/doc/latex/nwejm/english/nwejm-en.pdf + RELOC/doc/latex/nwejm/english/nwejm-en.tex RELOC/doc/latex/nwejm/examples/article-in-dutch.pdf RELOC/doc/latex/nwejm/examples/article-in-dutch.tex RELOC/doc/latex/nwejm/examples/article-in-english.pdf @@ -228847,32 +232619,33 @@ docfiles size=542 RELOC/doc/latex/nwejm/examples/article-in-german.tex RELOC/doc/latex/nwejm/examples/issue.pdf RELOC/doc/latex/nwejm/examples/issue.tex + RELOC/doc/latex/nwejm/examples/latexmkrc RELOC/doc/latex/nwejm/examples/sample.bib RELOC/doc/latex/nwejm/examples/sample.pdf details="Example of use" RELOC/doc/latex/nwejm/examples/sample.tex RELOC/doc/latex/nwejm/examples/template.tex - RELOC/doc/latex/nwejm/french/documentation/latexmkrc - RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.bib - RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.pdf details="Package documentation (French)" language="fr" - RELOC/doc/latex/nwejm/french/documentation/nwejm-fr.tex -srccontainersize 46916 -srccontainerchecksum d0afd2dadbfe524790f5a96ff37d3304305cada1291311bf724d30f216208f6f9d0ca6b6461792b17d1e91c8a1a13f235543071a2d8589615898a7b9a5407f26 -srcfiles size=58 + RELOC/doc/latex/nwejm/french/latexmkrc + RELOC/doc/latex/nwejm/french/nwejm-fr.bib + RELOC/doc/latex/nwejm/french/nwejm-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/nwejm/french/nwejm-fr.tex +srccontainersize 49840 +srccontainerchecksum f2d5d526b2b6242636324d0ad3aea17c21a680418cf937297c03249034c7c03fcf2589b794917ac72fc5a980dd2c57dcdb4dea75f0c894a77d5c5023824e7168 +srcfiles size=62 RELOC/source/latex/nwejm/nwejm-examples-template.dtx RELOC/source/latex/nwejm/nwejm.dtx -runfiles size=2122 +runfiles size=2121 RELOC/tex/latex/nwejm/images/nwejm-cover-background.jpg RELOC/tex/latex/nwejm/images/nwejm-federation-recherche-math-npdc-logo.pdf RELOC/tex/latex/nwejm/images/nwejm-fields-institute-logo.pdf RELOC/tex/latex/nwejm/images/nwejm-kwg-logo.pdf - RELOC/tex/latex/nwejm/images/nwejm-logo-NB.eps RELOC/tex/latex/nwejm/images/nwejm-logo-NB.pdf - RELOC/tex/latex/nwejm/images/nwejm-logo.eps + RELOC/tex/latex/nwejm/images/nwejm-logo-painleve.pdf RELOC/tex/latex/nwejm/images/nwejm-logo.pdf RELOC/tex/latex/nwejm/images/nwejm-logos-collection.pdf RELOC/tex/latex/nwejm/images/nwejm-logos-collection.tex RELOC/tex/latex/nwejm/images/nwejm-smf-logo.pdf RELOC/tex/latex/nwejm/images/nwejm-sml-logo.pdf + RELOC/tex/latex/nwejm/images/nwejm-ul-fst-math.pdf RELOC/tex/latex/nwejm/nwejm-dutch.trsl RELOC/tex/latex/nwejm/nwejm-english.trsl RELOC/tex/latex/nwejm/nwejm-french.trsl @@ -228884,16 +232657,15 @@ runfiles size=2122 RELOC/tex/latex/nwejm/nwejm.dbx RELOC/tex/latex/nwejm/nwejm.lbx RELOC/tex/latex/nwejm/nwejmart.cls -catalogue-contact-bugs https://github.com/dbitouze/nwejm/issues -catalogue-contact-repository https://github.com/dbitouze/nwejm +catalogue-contact-repository https://github.com/dbitouze/nwejm/ catalogue-ctan /macros/latex/contrib/nwejm -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics journalpub class -catalogue-version 1.0.1 +catalogue-version 1.0.5 name oberdiek category Package -revision 56291 +revision 65521 shortdesc A bundle of packages submitted by Heiko Oberdiek relocated 1 longdesc The bundle comprises packages to provide: aliascnt: 'alias @@ -228908,33 +232680,29 @@ longdesc delimited by end of line; flags: setting and clearing flags in longdesc bit fields and converting the bit field into a decimal number; longdesc holtxdoc: extra documentation macros; hypbmsec: bookmarks in longdesc sectioning commands; hypcap: anjusting anchors of captions; -longdesc hypdoc: hyper-references in the LaTeX standard doc package; longdesc hypgotoe: experimental package for links to embedded files; longdesc hyphsubst: substitute hyphenation patterns; ifdraft: switch for longdesc option draft; iflang: provides expandable checks for the -longdesc current language; pagegrid: prints a page grid in the -longdesc background; pdfcolfoot: using pdfTeX's color stack for -longdesc footnotes; pdfcol: macros for setting and maintaining new color -longdesc stacks; pdfcolparallel: fixes colour problems in package -longdesc parallel; pdfcolparcolumns: fixes colour problems in package -longdesc parcolumns; pdfcrypt: setting PDF encryption; pdfrender: -longdesc control PDF rendering modes; protecteddef: define a command -longdesc that protected against expansion; resizegather: automatically -longdesc resize overly large equations; rotchiffre: performs simple -longdesc rotation cyphers; scrindex: redefines environment 'theindex' of -longdesc package 'index', if a class from KOMA-Script is loaded; -longdesc setouterhbox: set \hbox in outer horizontal mode; settobox: -longdesc getting box sizes; stackrel: extensions of the \stackrel -longdesc command; stampinclude: selects the files for \include by -longdesc inspecting the timestamp of the .aux file(s); tabularht: -longdesc tabulars with height specification; tabularkv: key value -longdesc interface for tabular parameters; telprint: print German -longdesc telephone numbers; thepdfnumber: canonical numbers for use in -longdesc PDF files and elsewhere; twoopt: commands with two optional -longdesc arguments; Each of the packages is represented by two files, a -longdesc .dtx (documented source) and a PDF file; the .ins file -longdesc necessary for installation is extracted by running the .dtx -longdesc file with Plain TeX. +longdesc current language; pdfcolparallel: fixes colour problems in +longdesc package parallel; pdfcolparcolumns: fixes colour problems in +longdesc package parcolumns; pdfcrypt: setting PDF encryption; +longdesc pdfrender: control PDF rendering modes; protecteddef: define a +longdesc command that protected against expansion; resizegather: +longdesc automatically resize overly large equations; rotchiffre: +longdesc performs simple rotation cyphers; scrindex: redefines +longdesc environment 'theindex' of package 'index', if a class from +longdesc KOMA-Script is loaded; setouterhbox: set \hbox in outer +longdesc horizontal mode; settobox: getting box sizes; stackrel: +longdesc extensions of the \stackrel command; stampinclude: selects the +longdesc files for \include by inspecting the timestamp of the .aux +longdesc file(s); tabularht: tabulars with height specification; +longdesc tabularkv: key value interface for tabular parameters; +longdesc telprint: print German telephone numbers; thepdfnumber: +longdesc canonical numbers for use in PDF files and elsewhere; twoopt: +longdesc commands with two optional arguments; 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. depend auxhook depend grfext depend grffile @@ -228942,11 +232710,11 @@ depend iftex depend infwarerr depend kvoptions depend pdftexcmds -containersize 45104 -containerchecksum a110b9f65989da3cb73bf37e09d92a89352177c45ac2b60a98341829e833e9ae3055e979f9bce5fea57f44e751efd70cac0eb5eadbb7efe512d0277f3696dd00 -doccontainersize 8949564 -doccontainerchecksum 631f11d270e5bd908b3d1c51d96205046793e529ba18a5e442280e6cbc1cb67850dab25984747f3871cf200dbae340e19cf327a21d5b66fa55140e1d76ae1503 -docfiles size=3273 +containersize 40024 +containerchecksum a07473833a8eb833fa1b149ae6f913219c48ad9ecf9671196774d9b0ea7ac06ef110e3ca18a2a53d7a875ca803aff6e07cf435ef1e6d2020a353df97c0cb7046 +doccontainersize 8042572 +doccontainerchecksum 73a422dd8009d191a24790f5f68b9ae2a5046f3e42e3c360faabb3f7c7581afdf9bf2b20da8609e8d3513135ee1de98329cd4fb1713fce23c5a03fac28c976b9 +docfiles size=3095 RELOC/doc/latex/oberdiek/README.md details="Bundle README" RELOC/doc/latex/oberdiek/aliascnt.pdf RELOC/doc/latex/oberdiek/bmpsize.pdf @@ -228965,19 +232733,14 @@ docfiles size=3273 RELOC/doc/latex/oberdiek/fibnum.pdf RELOC/doc/latex/oberdiek/flags.pdf RELOC/doc/latex/oberdiek/holtxdoc.pdf - RELOC/doc/latex/oberdiek/hopatch.pdf RELOC/doc/latex/oberdiek/hypbmsec.pdf RELOC/doc/latex/oberdiek/hypcap.pdf - RELOC/doc/latex/oberdiek/hypdoc.pdf RELOC/doc/latex/oberdiek/hypgotoe-example.tex RELOC/doc/latex/oberdiek/hypgotoe.pdf RELOC/doc/latex/oberdiek/hyphsubst.pdf RELOC/doc/latex/oberdiek/ifdraft.pdf RELOC/doc/latex/oberdiek/iflang.pdf RELOC/doc/latex/oberdiek/oberdiek.pdf details="Table of contents of the bundle" - RELOC/doc/latex/oberdiek/pagegrid.pdf - RELOC/doc/latex/oberdiek/pdfcol.pdf - RELOC/doc/latex/oberdiek/pdfcolfoot.pdf RELOC/doc/latex/oberdiek/pdfcolparallel.pdf RELOC/doc/latex/oberdiek/pdfcolparcolumns.pdf RELOC/doc/latex/oberdiek/pdfcrypt.pdf @@ -229002,9 +232765,9 @@ docfiles size=3273 RELOC/doc/latex/oberdiek/telprint.pdf RELOC/doc/latex/oberdiek/thepdfnumber.pdf RELOC/doc/latex/oberdiek/twoopt.pdf -srccontainersize 118696 -srccontainerchecksum a58f3c55a38ec5e2f373428702a62fe55b2af7db5de59ba53a16643f1b4ca3e52ed8317594e8403f0a95b7705e9213b8400c040329408ad0cdbc77bc8ea54bb8 -srcfiles size=272 +srccontainersize 106480 +srccontainerchecksum ef0eeceef6d0f4d1cc804350fae483d464678397e9832e3bb17214dcff3f789bd930af2e9784bac89a53a39a107a76f88682a93a6323f4dfc18fdcbd1df98f8e +srcfiles size=244 RELOC/source/latex/oberdiek/aliascnt.dtx RELOC/source/latex/oberdiek/bmpsize.dtx RELOC/source/latex/oberdiek/centernot.dtx @@ -229020,16 +232783,12 @@ srcfiles size=272 RELOC/source/latex/oberdiek/holtxdoc.dtx RELOC/source/latex/oberdiek/hypbmsec.dtx RELOC/source/latex/oberdiek/hypcap.dtx - RELOC/source/latex/oberdiek/hypdoc.dtx RELOC/source/latex/oberdiek/hypgotoe.dtx RELOC/source/latex/oberdiek/hyphsubst.dtx RELOC/source/latex/oberdiek/ifdraft.dtx RELOC/source/latex/oberdiek/iflang.dtx RELOC/source/latex/oberdiek/oberdiek.ins RELOC/source/latex/oberdiek/oberdiek.tex - RELOC/source/latex/oberdiek/pagegrid.dtx - RELOC/source/latex/oberdiek/pdfcol.dtx - RELOC/source/latex/oberdiek/pdfcolfoot.dtx RELOC/source/latex/oberdiek/pdfcolparallel.dtx RELOC/source/latex/oberdiek/pdfcolparcolumns.dtx RELOC/source/latex/oberdiek/pdfcrypt.dtx @@ -229047,7 +232806,7 @@ srcfiles size=272 RELOC/source/latex/oberdiek/telprint.dtx RELOC/source/latex/oberdiek/thepdfnumber.dtx RELOC/source/latex/oberdiek/twoopt.dtx -runfiles size=108 +runfiles size=97 RELOC/bibtex/bib/oberdiek/oberdiek-bundle.bib RELOC/bibtex/bib/oberdiek/oberdiek-source.bib RELOC/tex/generic/oberdiek/engord.sty @@ -229055,7 +232814,6 @@ runfiles size=108 RELOC/tex/generic/oberdiek/fibnum.sty RELOC/tex/generic/oberdiek/hyphsubst.sty RELOC/tex/generic/oberdiek/iflang.sty - RELOC/tex/generic/oberdiek/pdfcol.sty RELOC/tex/generic/oberdiek/pdfcrypt.sty RELOC/tex/generic/oberdiek/pdfrender.sty RELOC/tex/generic/oberdiek/protecteddef.sty @@ -229080,11 +232838,8 @@ runfiles size=108 RELOC/tex/latex/oberdiek/holtxdoc.sty RELOC/tex/latex/oberdiek/hypbmsec.sty RELOC/tex/latex/oberdiek/hypcap.sty - RELOC/tex/latex/oberdiek/hypdoc.sty RELOC/tex/latex/oberdiek/hypgotoe.sty RELOC/tex/latex/oberdiek/ifdraft.sty - RELOC/tex/latex/oberdiek/pagegrid.sty - RELOC/tex/latex/oberdiek/pdfcolfoot.sty RELOC/tex/latex/oberdiek/pdfcolparallel.sty RELOC/tex/latex/oberdiek/pdfcolparcolumns.sty RELOC/tex/latex/oberdiek/resizegather.sty @@ -229103,15 +232858,15 @@ catalogue-topics collection name objectz category Package -revision 19389 +revision 61719 shortdesc Macros for typesetting Object Z relocated 1 longdesc The package will typeset both Z and Object-Z specifications; it longdesc develops the original zed package -containersize 9788 -containerchecksum e98bb9208838b8e55d9fe793af3eb6439aff2809067878051a9849cf483a42e612ca7c9a43a86520e582161b1a9f575e4e7a5f4bf7bbcabbbbdb314595c58fd7 +containersize 9724 +containerchecksum 15aab03ef1773a4ec72a3dea3fe036cca671abd3e55721d69201c43902d9655a9b71b6b109c13824015a9db740cd8e463016f59dd84a22a3648c14cf7e95f2cb doccontainersize 261448 -doccontainerchecksum afcb2681f0983c345ddcf4cd484d337461a53af27f6d5467b12a5368f6ce3974b9d54cdd77365995e7268895f4f0edbb814a4f4e61e4cee947f6ea49c8381d85 +doccontainerchecksum b1918ee04b6b1755b947d12485abd250ec91ce4dfe52403631e00b6c3dac88db2c3c3801912c952d26a00b06d8dbf7a9d88586ab7aa348aa0b2ec7cac1e4fb2d docfiles size=87 RELOC/doc/latex/objectz/catalog RELOC/doc/latex/objectz/makefile @@ -229121,14 +232876,13 @@ docfiles size=87 RELOC/doc/latex/objectz/oztest.tex RELOC/doc/latex/objectz/readme details="Readme" srccontainersize 15088 -srccontainerchecksum c2bd789d5acb1174aeb50cd3eace6ab67d0074adcdb8c00d6ec0581be096a931a5f9a666630e96abd30dda31a418eb7b9e6e0f06c3d93eecbc7a287c4a7e61b3 +srccontainerchecksum 77332f847ae68cfcbe61b1568e7079a9d2c5a51012c0de3bbad166df71f3cc2af61317d886e4092192e647ad2ac13c7f768b9397770587910ef63a89acff117e srcfiles size=15 RELOC/source/latex/objectz/oz.dtx RELOC/source/latex/objectz/oz.ins runfiles size=10 RELOC/tex/latex/objectz/oz.sty catalogue-also zed-csp -catalogue-contact-home http://www.itee.uq.edu.au/~smith/objectz.html catalogue-ctan /macros/latex/contrib/objectz catalogue-license lppl catalogue-topics formal-spec @@ -229277,7 +233031,7 @@ catalogue-version 0.5 name ocgx2 category Package -revision 57531 +revision 65292 shortdesc Drop-in replacement for 'ocgx' and 'ocg-p' relocated 1 longdesc This package serves as a drop-in replacement for the packages @@ -229288,14 +233042,14 @@ longdesc known engines and back-ends including: LaTeX - dvips - longdesc ps2pdf/Distiller (Xe)LaTeX(x) - dvipdfmx pdfLaTeX and LuaLaTeX longdesc . It also ensures compatibility with the media9 and animate longdesc packages. -containersize 13444 -containerchecksum 2b09a488d273992f02034b66ffda3ac7a7f9251e8b57c7794cd50d8e68f5bc2d1b55d1388bfab41e3a46ee037cc5de4e1e137a7175b5191fe9d68fb6b3513ffd -doccontainersize 6052 -doccontainerchecksum 5f310667aaebcae98fdac38c301ba587c00290d6fe21944a0f85f87cbbf393c02179621886409956739696137900d119d3c69cc3b597bc38fe283315af03995a +containersize 17256 +containerchecksum dfc6fb9f004ce6af6cf0af6f057ef3db0bb8957b52f2e1ecc262da1f2b2fd556626560062a712ba8b45adcda1ef0f1414b54d78f58b68f1b13cba913a9df71a4 +doccontainersize 6388 +doccontainerchecksum c09b684bd181579f6e773b295344ba78b6058f87d76d0ef3272bf5f80691bb40de49554948be53f9bad7779c0b4b8e3adb9fae1e12e0c4403962bebe4f949350 docfiles size=5 RELOC/doc/latex/ocgx2/ChangeLog RELOC/doc/latex/ocgx2/README.txt -runfiles size=18 +runfiles size=35 RELOC/tex/latex/ocgx2/fixocgx.sty RELOC/tex/latex/ocgx2/ocgbase.sty RELOC/tex/latex/ocgx2/ocgx2.sty @@ -229304,7 +233058,7 @@ catalogue-contact-repository https://gitlab.com/agrahn/ocgx2 catalogue-ctan /macros/latex/contrib/ocgx2 catalogue-license lppl catalogue-topics pdf-feat adobe-distiller expl3 -catalogue-version 0.50 +catalogue-version 0.56 name ocherokee category Package @@ -229466,7 +233220,7 @@ catalogue-topics font-supp name octave category Package -revision 45674 +revision 66115 shortdesc Typeset musical pitches with octave designations relocated 1 longdesc This package package typesets musical pitch names with @@ -229475,17 +233229,17 @@ longdesc octave numbers), or the traditional system (with prime longdesc symbols). Authors can just write \pitch{C}{4} and the pitches longdesc will be rendered correctly depending on which package option longdesc was selected. The system can also be changed mid-document. -containersize 2332 -containerchecksum f7063b207152ebdbd29da1e93db1b65796dabcc1eee1fcf36a470c6074b7abf239c87f5e4e765f08ec70d8ff7f2ebc8fa29a5590fa9a9d6740a5e74c0e3d719a -doccontainersize 256924 -doccontainerchecksum 0fc6b228fff15a4dc90973339f2b155ede7051ce69066e24d7dcdb9c9d5ee162c8d684298c8ef7fae64274dfc4f101dbca8fc38ca68200c36cf901153fc461f9 +containersize 2312 +containerchecksum 03db52eae29898d00b407af64fbc8aca35cd5c6165c3f7c890dce1f8218df65c3df447801d8c68d29af67f62de3057feff203de7486f192d9e7e6a59d4f28e02 +doccontainersize 256928 +doccontainerchecksum 13cf74923401dfd58978c2365e27aa394aecf01849543cb6f65a52b3344902c546599c350927950f63e3faf1b81667e9329b9c18aca6cbb87327046f0d695988 docfiles size=65 RELOC/doc/latex/octave/README.md details="Readme" RELOC/doc/latex/octave/octave.pdf details="Package documentation" RELOC/doc/latex/octave/octave.tex runfiles size=2 RELOC/tex/latex/octave/octave.sty -catalogue-contact-repository https://bitbucket.org/andrewacashner/octave +catalogue-contact-repository https://github.com/andrewacashner/octave catalogue-ctan /macros/latex/contrib/octave catalogue-license lppl1.3 catalogue-topics music @@ -229531,7 +233285,7 @@ catalogue-version 1.2 name odsfile category Package -revision 38449 +revision 65268 shortdesc Read OpenDocument Spreadsheet documents as LaTeX tables relocated 1 longdesc The distribution includes a package and a lua library that can @@ -229539,22 +233293,22 @@ longdesc together read OpenDocument spreadsheet documents as LaTeX longdesc tables. Cells in the tables may be processed by LaTeX macros, longdesc so that (for example) the package may be used for drawing some longdesc plots. The package uses lua's zip library. -containersize 4976 -containerchecksum c739d1d20c26fde107649ae8aa5a3f767f59d6db3acd063264be6ffd0dcf43d2a1c87eaf9449d1e1f71a7c10cb24cbc55849255cf95fb72983e476e0cb2a8ee0 -doccontainersize 272368 -doccontainerchecksum 9be750187f9b4476748bb1bc7440dd68437ba8d11e8198af8a1d532b09c37696aa9341dbd91198922ef2ea0a2991d44a946fe080f68fd1d6bfcf563cac50a29b -docfiles size=71 +containersize 5600 +containerchecksum a7c6acb170dc5ad3e592972685f20c425de4a3751749722c72c90b93a7db47321e0b55a0136f27954c43449c2d9bc55077bcc87f92a8c423b6f1592bbcf7e027 +doccontainersize 107284 +doccontainerchecksum 660ee30c7f9a0987e39e6a02dd1be48af9c90853b99b4f50b5beb262b3995c5ea1c37da90ee61252a62b9292e6f42cf92a74b8d02ee594b500b70dcd5bb164aa +docfiles size=32 RELOC/doc/lualatex/odsfile/README details="Readme" RELOC/doc/lualatex/odsfile/odsfile.pdf details="Package documentation" RELOC/doc/lualatex/odsfile/odsfile.tex RELOC/doc/lualatex/odsfile/pokus.ods -runfiles size=4 +runfiles size=5 RELOC/tex/lualatex/odsfile/odsfile.lua RELOC/tex/lualatex/odsfile/odsfile.sty catalogue-ctan /macros/luatex/latex/odsfile -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics foreign-import table luatex -catalogue-version 0.6 +catalogue-version 0.7 name ofs category Package @@ -229909,7 +233663,7 @@ catalogue-version 1.00 name oldstandard category Package -revision 57213 +revision 64464 shortdesc OldStandard fonts with LaTeX support relocated 1 longdesc Old Standard is designed to reproduce the actual printing style @@ -229925,10 +233679,10 @@ longdesc with TeX engines that directly support OpenType features, such longdesc as XeTeX and LuaTeX, as well as traditional engines such as TeX longdesc and pdfTeX. execute addMap OldStandard.map -containersize 1702320 -containerchecksum 848400b102d5ba0ceb56c4d50c65482bf5b3c468f4ed71d0ead25f0612d54552150bf467b50ca5686028797a25e46db195307ba0764473ce520e14e93403140b -doccontainersize 301996 -doccontainerchecksum 13d73f373b75de8be6e013595eb257ad4f2cb601f56ce5ee57a16cb427068ae597f3fb802b781f9c60e5e1e502f253b09ec3d2740355929ccb236a1d55ae1933 +containersize 1702308 +containerchecksum 0ebe36c3284f888448a07bc3cdb14717e73ab41e808b9ef6451065fa0c7fc6827746362a6a5453265d4b5a1108fe27d95d41cc51e20eae4bd625087b14dbac41 +doccontainersize 302028 +doccontainerchecksum b685cc4cd397ec413b5ce8aaed4f0a9aa1b1f213a1d57747233a8914fd868fd1d7fa50a199379430ec214106b5ab35bc1c86ef9d53d4628e2810a412c98d99f0 docfiles size=103 RELOC/doc/fonts/oldstandard/FONTLOG.txt RELOC/doc/fonts/oldstandard/OFL-FAQ.txt @@ -230203,7 +233957,7 @@ catalogue-version 0.2 name olsak-misc category Package -revision 54080 +revision 65631 shortdesc Collection of plain TeX macros written by Petr Olsak relocated 1 longdesc This is a collection of various single-file plain TeX macros @@ -230219,13 +233973,12 @@ longdesc pair qrcode.tex: QR code generated at TeX level scanbase.tex: longdesc parser of text-style mysql outputs scancsv.tex: parser of CSV longdesc format seplist.tex: macros with alternative separators of a longdesc parameter xmlparser.tex: parser of XML language -containersize 25856 -containerchecksum 2645f2964d95754cef9b3f500fe909bc379caeb95ffdc7423fc729f6abc134ea9eaeb54b5190884a1822009be3135b752efb1a7ae5b2b00635226798ffafb974 -doccontainersize 41764 -doccontainerchecksum d9c3ddc194111eb16dc025f2b3540e7f295e2c52645269bd06cdc448e528841da6367739d8a5a7e15ee5ac2adb04c2e9068d1a7da615bd6bda2f983288c6aa0e -docfiles size=49 +containersize 28656 +containerchecksum f2bd1c22a294c89c171d3df5ff9fc77d2c4476c7e44e7f0e26b07780467570ef852384e510a959f75b9226d4962b6163d890dacfc9341a8657d9b9d5d6e76834 +doccontainersize 41276 +doccontainerchecksum 856c8ff6d539198f7057e45d5da22bd4120bbe1915fa11b5cd6dacf6b13354df49370dee55d024ed8ff8be29ab83dcc0a786db5fd1f72857bcef7f47d3167f8a +docfiles size=48 RELOC/doc/generic/olsak-misc/README details="Readme" - RELOC/doc/generic/olsak-misc/booklet.tex RELOC/doc/generic/olsak-misc/cnv-pu.tex RELOC/doc/generic/olsak-misc/cnv-word.tex RELOC/doc/generic/olsak-misc/cnv.tex @@ -230233,7 +233986,9 @@ docfiles size=49 RELOC/doc/generic/olsak-misc/fun-coffee.tex RELOC/doc/generic/olsak-misc/openclose.tex RELOC/doc/generic/olsak-misc/seplist.tex -runfiles size=31 +runfiles size=35 + RELOC/tex/generic/olsak-misc/booklet.tex + RELOC/tex/generic/olsak-misc/cropmarks.tex RELOC/tex/generic/olsak-misc/qrcode.tex RELOC/tex/generic/olsak-misc/scanbase.tex RELOC/tex/generic/olsak-misc/scancsv.tex @@ -230242,7 +233997,7 @@ catalogue-contact-home http://petr.olsak.net/ftp/olsak/makra/ catalogue-ctan /macros/generic/olsak-misc catalogue-license pd catalogue-topics misc-support -catalogue-version May 2019 +catalogue-version Aug. 2022 name omega category Package @@ -230621,7 +234376,7 @@ catalogue-topics engine omega obsolete name omegaware category TLCore -revision 57972 +revision 66186 catalogue omega shortdesc A wide-character-set extension of TeX longdesc A development of TeX, which deals in multi-octet Unicode @@ -230632,11 +234387,11 @@ longdesc compatible successor is aleph, which is itself also in major longdesc maintenance mode only. Ongoing projects developing Omega (and longdesc Aleph) ideas include Omega-2 and LuaTeX. depend omegaware.ARCH -containersize 600 -containerchecksum 229b5609618caf2122d084955ddc57804ffa3b3296beb00d11bc783d6740008a68d15cfef5c0dd5acfaf572fd8bb204b8c161267b315b16de558f71d41ba5b8e -doccontainersize 148832 -doccontainerchecksum 8a3728aad3cc5ed99305b5fd8e2301c13ff2734c685c506e5cb00c7412c3f946631f1a86fe086277f85a61fbbf80e447438af6cdd67319b5d04f57f02569a49a -docfiles size=61 +containersize 604 +containerchecksum 9978e66b66e988d49f3dea44b947585e5ec4fd61f204ee06a56a9d32df721c1bd66ab32a05c3d36ca92e740aaec2b478261f3eaf8c48c0cb30fbf9bbb410d804 +doccontainersize 147564 +doccontainerchecksum e3312826fc6f2bb7fb8f116f7d73f4f113e2b4fda8acdce29668ffc324bdc90f26dfe21becccea36e53f22707067c19116fa2942fb4165aed3d7c28da88992ce +docfiles size=60 texmf-dist/doc/man/man1/odvicopy.1 texmf-dist/doc/man/man1/odvicopy.man1.pdf texmf-dist/doc/man/man1/odvitype.1 @@ -230661,11 +234416,11 @@ catalogue-topics engine omega obsolete name omegaware.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of omegaware -containersize 254932 -containerchecksum d9b4d60e602c31f95f6a40f1fb3ad786a820ec948e03c547e172b981a35c7b4aca9cde55623401aa9bc7548a1d9eb0429ecb25845343e4bbff203736af60da8a -binfiles arch=aarch64-linux size=300 +containersize 255244 +containerchecksum 872d4656c378c9cf70579ded13fe4cc5dad21f7255e5556e80d1877b7ae763bae2448769442575e6d66637db790c49fe0f24b7638937557db1b516145f114052 +binfiles arch=aarch64-linux size=301 bin/aarch64-linux/odvicopy bin/aarch64-linux/odvitype bin/aarch64-linux/ofm2opl @@ -230682,11 +234437,11 @@ binfiles arch=aarch64-linux size=300 name omegaware.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of omegaware -containersize 299132 -containerchecksum c061f384ff423986f23c89c5983b8ce2f9455ef1ed3e75c5228e1ba94acb7646f7f65af7706329865c304e388e0cd890bf59e846564eb923cd8a30e224d17cd5 -binfiles arch=amd64-freebsd size=327 +containersize 295432 +containerchecksum 306e11a279b86bd96c4a366a1305575faf57d0354d147c8f59d3c8467d279f1f60f6045ce402f4bb500ff6a749bef314bac4cbf7f649b423c4a653ddcb0f24d9 +binfiles arch=amd64-freebsd size=328 bin/amd64-freebsd/odvicopy bin/amd64-freebsd/odvitype bin/amd64-freebsd/ofm2opl @@ -230703,10 +234458,10 @@ binfiles arch=amd64-freebsd size=327 name omegaware.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of omegaware -containersize 246860 -containerchecksum 2763a8512b0625d48e503a27099c7c2174b622153ea21588f13ad3cdfc6d1ad22fc17b4a292cfde91568990e7a01c12853f86f55dc8455790ed9fd5514916868 +containersize 246912 +containerchecksum bbe40d3710dac0199b1cfc9e0b365b696df4ea7b3c19192cd5adebd0de094fb5551463af2078f99b00af371b8c8e7aea5814bcccf6cf2892da49c631a1435b9c binfiles arch=amd64-netbsd size=340 bin/amd64-netbsd/odvicopy bin/amd64-netbsd/odvitype @@ -230724,11 +234479,11 @@ binfiles arch=amd64-netbsd size=340 name omegaware.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of omegaware -containersize 198416 -containerchecksum f0d65fd7417db408ccaa319e9ad27911872b76725e6948695da2c9325ff1411219c241a8f502d32e15e8922fce26ce8eba309deb935a04304fb4cee76d7586b3 -binfiles arch=armhf-linux size=237 +containersize 198748 +containerchecksum 2f9eab3e4a12385f68d03545e84030c775e073fb30bcb8d9d19549d0945b44bf753531a7712a510bc5e5065531523a8c9a93c07bd23d778fcc5bc2c641d45546 +binfiles arch=armhf-linux size=238 bin/armhf-linux/odvicopy bin/armhf-linux/odvitype bin/armhf-linux/ofm2opl @@ -230743,34 +234498,13 @@ binfiles arch=armhf-linux size=237 bin/armhf-linux/wopl2ofm bin/armhf-linux/wovf2ovp -name omegaware.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of omegaware -containersize 157484 -containerchecksum c74819cb7975c46f3bb926a49e147640076473320cb72b29a7b4f3ac906db609e1c1b944dbf4a9bd07ae3a1cdaf56a7f8775cca103f026fd49815e1880f4e779 -binfiles arch=i386-cygwin size=147 - bin/i386-cygwin/odvicopy.exe - bin/i386-cygwin/odvitype.exe - bin/i386-cygwin/ofm2opl - bin/i386-cygwin/omfonts.exe - bin/i386-cygwin/opl2ofm - bin/i386-cygwin/otangle.exe - bin/i386-cygwin/otp2ocp.exe - bin/i386-cygwin/outocp.exe - bin/i386-cygwin/ovf2ovp - bin/i386-cygwin/ovp2ovf - bin/i386-cygwin/wofm2opl.exe - bin/i386-cygwin/wopl2ofm.exe - bin/i386-cygwin/wovf2ovp.exe - name omegaware.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of omegaware -containersize 238120 -containerchecksum 951ad6eb8a230dccf560a821901e0e7f4d9d07881ad072c0ca4789177ff4da540be9cee61a817335cde5a12b4c4742e0ab517ed3e9469a7a0de2190ba6bad708 -binfiles arch=i386-freebsd size=272 +containersize 242452 +containerchecksum 8e253919c2271c0dd0f2f425afa32952fcd9b1418512c33effe47ea41619470c3e0fc986061969050f02fa300eb5592ad2a9da961abe67ef3cd9ed66ffb28c6b +binfiles arch=i386-freebsd size=274 bin/i386-freebsd/odvicopy bin/i386-freebsd/odvitype bin/i386-freebsd/ofm2opl @@ -230787,11 +234521,11 @@ binfiles arch=i386-freebsd size=272 name omegaware.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of omegaware -containersize 239968 -containerchecksum ea573f49d7bc2ad4771adf1f653121583715f27f1dc280b7645b80e3d9dee21ded4ca493e5cc25ed99aea17e16a28a55d407b7464fed1793910cd5cdf4e09394 -binfiles arch=i386-linux size=301 +containersize 243480 +containerchecksum 00e4addb302d089f0dd06a56b2f07d05a65ea40b1f72dc83325fd7408415600b5e0c8a3758ade6cff62d65f59e54b985309b5b52cfcb852188b63f779f5cfaed +binfiles arch=i386-linux size=309 bin/i386-linux/odvicopy bin/i386-linux/odvitype bin/i386-linux/ofm2opl @@ -230808,10 +234542,10 @@ binfiles arch=i386-linux size=301 name omegaware.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of omegaware -containersize 211768 -containerchecksum 20d30894236b1942ebe2d79a449c177297ca140072702dff425dd20db4b67f7f817023e3ddc1555e73caf8181c506162b38ad28cf41448003d0da86e63b4a28e +containersize 211792 +containerchecksum d998c93ca1b122be28cd8e36eef2c27e9a2d3844ee937b89dfbbe60506e57a122dc47a89d2bd4c7136c5c4c5a6bec9475f7c138204b8f182a019c1f7c07af5f8 binfiles arch=i386-netbsd size=318 bin/i386-netbsd/odvicopy bin/i386-netbsd/odvitype @@ -230829,10 +234563,10 @@ binfiles arch=i386-netbsd size=318 name omegaware.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of omegaware -containersize 258104 -containerchecksum bc8b287f2b189d4a9ecc51e4374aff8edfc7a270a0805e682fbf691e7362ae975060fbf3948fb1af953b9285038a6d23adb20ed34cc869fdecdf9763fd21c9eb +containersize 258656 +containerchecksum 30b7367d4fc1a706c30d5e239db626747b72bf990e6194df25dea4f4d116aa7233e8440169983d42d7ba5b970903730a23094e0414afb051ff2a4cd1ed245f71 binfiles arch=i386-solaris size=279 bin/i386-solaris/odvicopy bin/i386-solaris/odvitype @@ -230850,11 +234584,11 @@ binfiles arch=i386-solaris size=279 name omegaware.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of omegaware -containersize 538480 -containerchecksum 86df04ada1ec0a40311791c2ab8116226cd9db7beff4434b26d5ff6a3c41ea22f52114e1731b59f01cc2ca0cb1daa9b990aca9d5b6a7b6a98687d87867e2da81 -binfiles arch=universal-darwin size=777 +containersize 540364 +containerchecksum fce68a7f3d7841eb9872f3b1de5eeebe2992e4999ff50354a7601c1ef6a356751b4e497690e7297beecfe85d3fc9281735aa2bc175ca804e683ec6247d632544 +binfiles arch=universal-darwin size=801 bin/universal-darwin/odvicopy bin/universal-darwin/odvitype bin/universal-darwin/ofm2opl @@ -230869,34 +234603,34 @@ binfiles arch=universal-darwin size=777 bin/universal-darwin/wopl2ofm bin/universal-darwin/wovf2ovp -name omegaware.win32 -category TLCore -revision 58783 -shortdesc win32 files of omegaware -containersize 170692 -containerchecksum b2f49659726bc081ddd814ab2b03edc198ad6b821662254a589a0ae25e248b7119e1acf3bfee29e8cad888451a7933774b2bad79e53f1e960c68645dae058494 -binfiles arch=win32 size=185 - bin/win32/odvicopy.exe - bin/win32/odvitype.exe - bin/win32/ofm2opl.exe - bin/win32/omfonts.exe - bin/win32/opl2ofm.exe - bin/win32/otangle.exe - bin/win32/otp2ocp.exe - bin/win32/outocp.exe - bin/win32/ovf2ovp.exe - bin/win32/ovp2ovf.exe - bin/win32/wofm2opl.exe - bin/win32/wopl2ofm.exe - bin/win32/wovf2ovp.exe +name omegaware.windows +category TLCore +revision 65891 +shortdesc windows files of omegaware +containersize 203144 +containerchecksum adcbe7039a7a669ece7e15fad73731a9bf9dbf16eb294f5c0c42ad2eaafd92c01e4fcde0e3f7c29101ad077d4fe4cb1e0ed3a77efd55457f5444b3ccf179bbdc +binfiles arch=windows size=159 + bin/windows/odvicopy.exe + bin/windows/odvitype.exe + bin/windows/ofm2opl.exe + bin/windows/omfonts.exe + bin/windows/opl2ofm.exe + bin/windows/otangle.exe + bin/windows/otp2ocp.exe + bin/windows/outocp.exe + bin/windows/ovf2ovp.exe + bin/windows/ovp2ovf.exe + bin/windows/wofm2opl.exe + bin/windows/wopl2ofm.exe + bin/windows/wovf2ovp.exe name omegaware.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of omegaware -containersize 187544 -containerchecksum 8435ac4acf51d68c59f413c02391b055494af4cf09533a8dc27ce4ead0e81b993a249bf229b76b6b69ce636b748e4e198cd4316b91e87a819052b869bc771647 -binfiles arch=x86_64-cygwin size=141 +containersize 189172 +containerchecksum c1daf6e178581343b4dcaded07901acd4e5a4f770af82feacf7fa894a6a07221a5a44cadfcc706df8f0e30546b976dacc57e77b9967f6649de4c937fb7b1a6b9 +binfiles arch=x86_64-cygwin size=146 bin/x86_64-cygwin/odvicopy.exe bin/x86_64-cygwin/odvitype.exe bin/x86_64-cygwin/ofm2opl @@ -230913,10 +234647,10 @@ binfiles arch=x86_64-cygwin size=141 name omegaware.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of omegaware -containersize 255788 -containerchecksum 5c16e187aa8128da2a07dd53b161734842d4f407f16c725132bc5f16ffeed4efda33475140790057b6534c2b07fd14a9df329fba4e01e3ef62273867fe823a34 +containersize 255872 +containerchecksum bc1c0bfef6e021b6bb89be55fefc2375d0b6ea5993e3ff0b9f4cf98e16a4852a457efd505946bd8f59798ae2d460dac81cb5b2166b277dc578ee01b6af1aba59 binfiles arch=x86_64-darwinlegacy size=274 bin/x86_64-darwinlegacy/odvicopy bin/x86_64-darwinlegacy/odvitype @@ -230934,11 +234668,11 @@ binfiles arch=x86_64-darwinlegacy size=274 name omegaware.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of omegaware -containersize 255948 -containerchecksum cba3370e5d568cb1fb6efbf0a056f98d0318b188420c760aecd282cf2bbd601093c25c1eb5c8e587b32e319754199dc3f0e0d2a6a0b7cb68518bf474c37cb3ed -binfiles arch=x86_64-linux size=269 +containersize 261872 +containerchecksum 9fc87d923d7580cd29751591c07085933e549da10e857aba98abf34e91a69c733636a33c8ee1e20aab4bed69b74025c745de65fa21b044d3b6adcf870e928fff +binfiles arch=x86_64-linux size=281 bin/x86_64-linux/odvicopy bin/x86_64-linux/odvitype bin/x86_64-linux/ofm2opl @@ -230955,11 +234689,11 @@ binfiles arch=x86_64-linux size=269 name omegaware.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of omegaware -containersize 269568 -containerchecksum e3367e2ae381516216348d46e8ff27c153c23488f923da4ce9e3a48483f73569ca10c31f5fce0e2bfc1d15c0ab90dc591ca2ac2eef0ccad407b91acd6da065bb -binfiles arch=x86_64-linuxmusl size=292 +containersize 274284 +containerchecksum 9aa9c35139bdb43f390347981071b190b400c4d5dfd5203d8fe474ba75ffd876a108ee1b340f2a02e03b55b9053e2252c230f036d4a83ebec392dfd59b93d55e +binfiles arch=x86_64-linuxmusl size=290 bin/x86_64-linuxmusl/odvicopy bin/x86_64-linuxmusl/odvitype bin/x86_64-linuxmusl/ofm2opl @@ -230976,10 +234710,10 @@ binfiles arch=x86_64-linuxmusl size=292 name omegaware.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of omegaware -containersize 295188 -containerchecksum a595a2fb364e291aff150e9f609acc3038c520e79ecb025a96c1eb5153b3dfc85e56bdb4d87cfa91bb6bb5b01f96c9e96ba3ab89b5c34e21b00e3fa62ef7905c +containersize 294764 +containerchecksum 5963d99157b03169b7017f0deeb64a5c172fc7ed5b6ff2027c65a861df7490663fa4551883107052075b3c4d2920d673c5cd1a0e176151ba0c943d3cb7423409 binfiles arch=x86_64-solaris size=310 bin/x86_64-solaris/odvicopy bin/x86_64-solaris/odvitype @@ -231158,6 +234892,33 @@ catalogue-license lppl catalogue-topics bibtex-supp footnote catalogue-version 1.1 +name opencolor +category Package +revision 66363 +shortdesc Definitions from the Open Color library +relocated 1 +longdesc This package provides hexadecimal color definitions of the 130 +longdesc colors included in the Open Color library. +containersize 1536 +containerchecksum b6b9368a3167db0f71fdd4cf9c369f43be2934060b79bbb2b477d8a247456a7f69932bb92bf8bb8c1e1b5e7721383079947fc40e1a5d7bc6f84a2e3fe9e02646 +doccontainersize 198700 +doccontainerchecksum ff198447e40d71f447688b5fb28385d9fe34265e520496f7d77acf7947569dbd6cc7a98802bb353648dc50979c4be889cef1417f2d15f98bc3ebf95e4a843963 +docfiles size=54 + RELOC/doc/latex/opencolor/LICENSE + RELOC/doc/latex/opencolor/README.md details="Readme" + RELOC/doc/latex/opencolor/demo-opencolor.pdf details="Example of use" + RELOC/doc/latex/opencolor/demo-opencolor.png + RELOC/doc/latex/opencolor/demo-opencolor.tex +runfiles size=2 + RELOC/tex/latex/opencolor/opencolor.sty +catalogue-also colorweb +catalogue-contact-bugs https://github.com/piazzai/opencolor/issues +catalogue-contact-repository https://github.com/piazzai/opencolor +catalogue-ctan /macros/latex/contrib/opencolor +catalogue-license mit +catalogue-topics colour +catalogue-version 1.0.1 + name opensans category Package revision 54512 @@ -232576,7 +236337,7 @@ catalogue-version 1.0 name optex category Package -revision 59055 +revision 66513 shortdesc LuaTeX format based on Plain TeX and OPmac longdesc OpTeX is a LuaTeX format based on Plain TeX macros with power longdesc from OPmac (fonts selection system, colors, external graphics, @@ -232585,27 +236346,29 @@ depend amsfonts depend cm depend ec depend hyphen-base +depend librarian depend lm +depend luaotfload depend luatex depend optex.ARCH depend rsfs depend unicode-data -execute AddFormat name=optex engine=luatex patterns=hyphen-lan.opm options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data -containersize 787868 -containerchecksum 031c152c493db2c4ca9c7481eb9dbe5d66b44eb1db31e461912008a4ff22aedf3f37c41b18fa31e77654e94eb840d47c14048848b353e7ded30b61a21617f401 -doccontainersize 1438720 -doccontainerchecksum 8ed1fc8acbc3dcac224f6a6ddac8538eca1c6979015a7ef70cce5f5fee78cfa75074d8567c40dc3bff157ef424bf51abd5eaa59fb2ec02b8d7cde3a4b56ebf8f -docfiles size=402 +execute AddFormat name=optex engine=luatex options="optex.ini" fmttriggers=amsfonts,cm,ec,hyphen-base,lm,rsfs,unicode-data +containersize 835108 +containerchecksum 50afa81df97805c224fb765885c453d756d926b6982d1e149c14d4e1aa6164980b4584264d561b77f20f3634c22d09c26397cb2c136474fdbb1f000a4fbe1118 +doccontainersize 1545176 +doccontainerchecksum d0c5512cf6ad24f47fff0d4db2b386dc882dec4b1b2bdd71a2acc4c7e5338898fc15bf3887332c0aa16e7b8df385c75c9a764f82bbc31a83b3ba3e899ce1b0a7 +docfiles size=431 texmf-dist/doc/man/man1/optex.1 texmf-dist/doc/man/man1/optex.man1.pdf - texmf-dist/doc/optex/README details="Readme" - texmf-dist/doc/optex/omls.tex - texmf-dist/doc/optex/optex-doc.pdf details="Package documentation" - texmf-dist/doc/optex/optex-doc.tex - texmf-dist/doc/optex/optex-math.tex - texmf-dist/doc/optex/optex-techdoc.tex - texmf-dist/doc/optex/optex-userdoc.tex -runfiles size=482 + texmf-dist/doc/optex/base/README details="Readme" + texmf-dist/doc/optex/base/omls.tex + texmf-dist/doc/optex/base/optex-doc.pdf details="Package documentation" + texmf-dist/doc/optex/base/optex-doc.tex + texmf-dist/doc/optex/base/optex-math.tex + texmf-dist/doc/optex/base/optex-techdoc.tex + texmf-dist/doc/optex/base/optex-userdoc.tex +runfiles size=539 texmf-dist/tex/optex/base/alloc.opm texmf-dist/tex/optex/base/basic-macros.opm texmf-dist/tex/optex/base/bib-iso690.opm @@ -232615,17 +236378,25 @@ runfiles size=482 texmf-dist/tex/optex/base/doc.opm texmf-dist/tex/optex/base/f-adventor.opm texmf-dist/tex/optex/base/f-antt.opm + texmf-dist/tex/optex/base/f-baskervald.opm texmf-dist/tex/optex/base/f-baskerville.opm texmf-dist/tex/optex/base/f-bonum.opm + texmf-dist/tex/optex/base/f-cabin.opm texmf-dist/tex/optex/base/f-comicneue.opm texmf-dist/tex/optex/base/f-cursor.opm texmf-dist/tex/optex/base/f-dejavu.opm texmf-dist/tex/optex/base/f-ebgaramond.opm + texmf-dist/tex/optex/base/f-erewhon.opm + texmf-dist/tex/optex/base/f-fira.opm texmf-dist/tex/optex/base/f-garamondl.opm texmf-dist/tex/optex/base/f-gfsbodoni.opm texmf-dist/tex/optex/base/f-heros.opm + texmf-dist/tex/optex/base/f-inconsolata.opm + texmf-dist/tex/optex/base/f-iwona.opm texmf-dist/tex/optex/base/f-kerkis.opm texmf-dist/tex/optex/base/f-kpfonts.opm + texmf-dist/tex/optex/base/f-kurier.opm + texmf-dist/tex/optex/base/f-lato.opm texmf-dist/tex/optex/base/f-libertine-s.opm texmf-dist/tex/optex/base/f-libertine.opm texmf-dist/tex/optex/base/f-libertinus.opm @@ -232633,15 +236404,20 @@ runfiles size=482 texmf-dist/tex/optex/base/f-lido.opm texmf-dist/tex/optex/base/f-lmfonts.opm texmf-dist/tex/optex/base/f-merriweather.opm + texmf-dist/tex/optex/base/f-montserrat.opm texmf-dist/tex/optex/base/f-newcm.opm + texmf-dist/tex/optex/base/f-overlock.opm texmf-dist/tex/optex/base/f-pagella.opm texmf-dist/tex/optex/base/f-poltawski.opm texmf-dist/tex/optex/base/f-roboto.opm texmf-dist/tex/optex/base/f-schola.opm texmf-dist/tex/optex/base/f-sourcepro.opm + texmf-dist/tex/optex/base/f-stix.opm + texmf-dist/tex/optex/base/f-stixtwo.opm texmf-dist/tex/optex/base/f-technika.opm texmf-dist/tex/optex/base/f-termes.opm texmf-dist/tex/optex/base/f-xcharter.opm + texmf-dist/tex/optex/base/f-xits.opm texmf-dist/tex/optex/base/fams-ini.opm texmf-dist/tex/optex/base/fnotes.opm texmf-dist/tex/optex/base/fonts-catalog.opm @@ -232653,12 +236429,14 @@ runfiles size=482 texmf-dist/tex/optex/base/hi-syntax.opm texmf-dist/tex/optex/base/hisyntax-c.opm texmf-dist/tex/optex/base/hisyntax-html.opm + texmf-dist/tex/optex/base/hisyntax-lua.opm texmf-dist/tex/optex/base/hisyntax-python.opm texmf-dist/tex/optex/base/hisyntax-tex.opm texmf-dist/tex/optex/base/hyperlinks.opm - texmf-dist/tex/optex/base/hyphen-lan.opm texmf-dist/tex/optex/base/if-macros.opm texmf-dist/tex/optex/base/keyval.opm + texmf-dist/tex/optex/base/lang-data.opm + texmf-dist/tex/optex/base/lang-decl.opm texmf-dist/tex/optex/base/languages.opm texmf-dist/tex/optex/base/lists.opm texmf-dist/tex/optex/base/logos.opm @@ -232668,7 +236446,6 @@ runfiles size=482 texmf-dist/tex/optex/base/margins.opm texmf-dist/tex/optex/base/math-macros.opm texmf-dist/tex/optex/base/math-preload.opm - texmf-dist/tex/optex/base/math-unicode.opm texmf-dist/tex/optex/base/mathclass.opm texmf-dist/tex/optex/base/more-macros.opm texmf-dist/tex/optex/base/multicolumns.opm @@ -232690,6 +236467,7 @@ runfiles size=482 texmf-dist/tex/optex/base/table.opm texmf-dist/tex/optex/base/uni-lcuc.opm texmf-dist/tex/optex/base/unimath-codes.opm + texmf-dist/tex/optex/base/unimath-macros.opm texmf-dist/tex/optex/base/unimath-table.opm texmf-dist/tex/optex/base/usebib.opm texmf-dist/tex/optex/base/verbatim.opm @@ -232702,15 +236480,21 @@ runfiles size=482 texmf-dist/tex/optex/demo/op-slides-bg.png texmf-dist/tex/optex/demo/op-slides.tex texmf-dist/tex/optex/pkg/emoji.opm + texmf-dist/tex/optex/pkg/math.opm + texmf-dist/tex/optex/pkg/minim-mp.opm + texmf-dist/tex/optex/pkg/minim-pdf.opm + texmf-dist/tex/optex/pkg/minim.opm + texmf-dist/tex/optex/pkg/mte.opm texmf-dist/tex/optex/pkg/plain-at.opm texmf-dist/tex/optex/pkg/qrcode.opm + texmf-dist/tex/optex/pkg/tikz.opm texmf-dist/tex/optex/pkg/vlna.opm catalogue-also csplain catalogue-contact-home http://petr.olsak.net/optex catalogue-ctan /macros/optex catalogue-license pd catalogue-topics format luatex plain-ext -catalogue-version 1.02 +catalogue-version 1.11 name optex.aarch64-linux category Package @@ -232748,15 +236532,6 @@ containerchecksum c21f109755791fe8dd4cb3645d6bdd62b46bffb7668ab027dc795e9099d919 binfiles arch=armhf-linux size=1 bin/armhf-linux/optex -name optex.i386-cygwin -category Package -revision 53804 -shortdesc i386-cygwin files of optex -containersize 320 -containerchecksum 6f889f6881321e4b19f9b41b98a437fa55c29c84a34638c6c0289cad6c68221b47d54cfcca1236a03d180e08831e1a52a6a66fabcba9c7646b1cd0382e540529 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/optex - name optex.i386-freebsd category Package revision 53804 @@ -232802,14 +236577,14 @@ containerchecksum 603ffacfc9ed4611336f4a7e2c8001c81c5c3be02d5062e365e3a7903a5518 binfiles arch=universal-darwin size=1 bin/universal-darwin/optex -name optex.win32 +name optex.windows category Package -revision 57883 -shortdesc win32 files of optex -containersize 864 -containerchecksum d7b4e0afcab8cba391174d787a7b504f7fa3f4b6ad0a145ffd96703e0458dd88a0831e827b1a4478438d6fa1fccb9e6cc278be0ed2b18a3789dd84a5a2d61398 -binfiles arch=win32 size=1 - bin/win32/optex.exe +revision 65891 +shortdesc windows files of optex +containersize 2336 +containerchecksum cccf217edfd546d5f81e09da822742354f586bf120cf0d77b7293ff4b27ad3df383bc91795f2038f99ff1368b9649de6ad35dbf43ebfda65935294e0a9144fec +binfiles arch=windows size=2 + bin/windows/optex.exe name optex.x86_64-cygwin category Package @@ -232856,6 +236631,184 @@ containerchecksum 3df28de006e8f855b40188ad9c06e8715a351b3ef3db8c12b251cd74bdbb2e binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/optex +name optexcount +category Package +revision 59817 +shortdesc Python script for counting words in OpTeX documents +longdesc OpTeXcount is a basic python utility that analyzes OpTeX source +longdesc code. It is inspired by already existing TeXcount for LaTeX. +longdesc The functionality is really lightweight and basic. It counts +longdesc words and other elements of OpTeX document and sorts them out +longdesc into individual categories. Users can print the source code +longdesc with highlighted words using several colors,so they see what is +longdesc considered as word, header etc. +depend optexcount.ARCH +containersize 7312 +containerchecksum 88a35391d3deb37dd6466e903f3cdd7d134eb9fb8c0a9ab548ca2eeee86687544e1b499248c2d0a7aa3b801d9604913e763128309f88f768d0dafb8ac1fd6998 +doccontainersize 33964 +doccontainerchecksum 7f0d33068083736fe58c08dc9e37929efcf65de3b62a3afb51077a21d0e27b473a65ee1b333a0dd31b1d39e7f6ce79cae3343e8b7a9742199fb409e90030f7aa +docfiles size=14 + texmf-dist/doc/support/optexcount/LICENSE + texmf-dist/doc/support/optexcount/README.md details="Readme" + texmf-dist/doc/support/optexcount/example_01.tex + texmf-dist/doc/support/optexcount/final_bird.png + texmf-dist/doc/support/optexcount/optexcount-doc.pdf details="Package documentation" + texmf-dist/doc/support/optexcount/optexcount-doc.tex +srccontainersize 5984 +srccontainerchecksum c62820e25f1251b6baba3095afa41a39616e49147fc88c5ddd00fe56e0eb2d20a6b2a0ab633b01f2578819308fa0f05e53fd1daf781e276b08ade1407024c46e +srcfiles size=12 + texmf-dist/source/support/optexcount/color_print.py + texmf-dist/source/support/optexcount/counter.py + texmf-dist/source/support/optexcount/header.py + texmf-dist/source/support/optexcount/install.sh + texmf-dist/source/support/optexcount/keywords.py + texmf-dist/source/support/optexcount/optexcount.py + texmf-dist/source/support/optexcount/word_iterator.py +runfiles size=2 + texmf-dist/scripts/optexcount/optexcount +catalogue-contact-bugs https://github.com/rihartma/OpTeXcount/issues +catalogue-contact-home https://github.com/rihartma/OpTeXcount +catalogue-contact-repository https://github.com/rihartma/OpTeXcount +catalogue-ctan /support/optexcount +catalogue-license mit +catalogue-topics word-count +catalogue-version 1.1 + +name optexcount.aarch64-linux +category Package +revision 59817 +shortdesc aarch64-linux files of optexcount +containersize 336 +containerchecksum c5da562e6bd3499e64ea2652bf1b563ae20799454c0c384e1f1b7b47cc14a5fdb1339d052bbd7f2bacedcbf3a554c88f4216f7c15ce7bb081b6276bcbff2348c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/optexcount + +name optexcount.amd64-freebsd +category Package +revision 59817 +shortdesc amd64-freebsd files of optexcount +containersize 336 +containerchecksum df7016352f3c3ec5f25fdb58a44bd318ec44c551f3460b9018c3799498cd90dc1ce23f4461e78ee3999f34065f2aa492c214c609aa0b1008afb8944d8cac836e +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/optexcount + +name optexcount.amd64-netbsd +category Package +revision 59817 +shortdesc amd64-netbsd files of optexcount +containersize 336 +containerchecksum 105b154cd1abf366a1a96fb4162a1fa63fc6ef1e9c4d06b217bc5279457272e86eb20210e0e7351d095aa803ec270f0e1b6f761e6a7427513db26bcb5df9dbbe +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/optexcount + +name optexcount.armhf-linux +category Package +revision 59817 +shortdesc armhf-linux files of optexcount +containersize 336 +containerchecksum 5beb518c7e0aa9fc99717bc67b70518a9b2336f1f3f0a5354339cb5d281ad487f9cef9b01c35eab8ae4b95c4817f324d28635ab81aefcab54ffbdd4d390ac73a +binfiles arch=armhf-linux size=1 + bin/armhf-linux/optexcount + +name optexcount.i386-freebsd +category Package +revision 59817 +shortdesc i386-freebsd files of optexcount +containersize 336 +containerchecksum 0db55337e66751dd212e25af9af2a666421ad271ff64679293cfdfa132f6228a538d92e69c192e83126843e082b88d84944469e1c82ef8ae1cc1d292b683b5b8 +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/optexcount + +name optexcount.i386-linux +category Package +revision 59817 +shortdesc i386-linux files of optexcount +containersize 336 +containerchecksum 967a76fee30da3426ae38f9e3b0c90f71c8a4224c184d61ed6040b694d35794642a086047f78416d12a693f5b1cf69688eed60133817f02df7f2d50850693feb +binfiles arch=i386-linux size=1 + bin/i386-linux/optexcount + +name optexcount.i386-netbsd +category Package +revision 59817 +shortdesc i386-netbsd files of optexcount +containersize 336 +containerchecksum c0e254f48a77b57794f867bff8c71e835dc879ddbf86b19c9c0252733180a071f1234501069c1314655d9f04fead3f2cfbbda9038e21fea062a225331ddbe939 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/optexcount + +name optexcount.i386-solaris +category Package +revision 59817 +shortdesc i386-solaris files of optexcount +containersize 336 +containerchecksum 0f955916b022bba68a7509006655c085ad36bfceac727fe862b7c7375d7a256d562937e1c563c504bae78a4c23de5e7f235a81f3f5ed68f71d52052714c8c5b3 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/optexcount + +name optexcount.universal-darwin +category Package +revision 59817 +shortdesc universal-darwin files of optexcount +containersize 340 +containerchecksum 7d3753725fdc760a792b9dc3cdb4fd0116440447baf78316178dc35b18762408d6942820b0fdb575b8c83fdb65a40377645183c7ed66b30443cc5493f879ab0f +binfiles arch=universal-darwin size=1 + bin/universal-darwin/optexcount + +name optexcount.windows +category Package +revision 65891 +shortdesc windows files of optexcount +containersize 2304 +containerchecksum 6f14e1f48a5743ce7283e1f785a5cf7bf8c62c03bc8fbdaaef79e8f6fdf5447f729bb91e8b7c5e02ce1080781d28087296dba38510bebe41da5bef2bd9b43694 +binfiles arch=windows size=2 + bin/windows/optexcount.exe + +name optexcount.x86_64-cygwin +category Package +revision 59817 +shortdesc x86_64-cygwin files of optexcount +containersize 336 +containerchecksum 8f192d91141d961fdf25ac3b1652d4110adca3f7407ec5402a37ad27567e157bc0cb70b146ae13cc294aec1697ccb29f173043b7a63322d6e0b1917fc674495e +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/optexcount + +name optexcount.x86_64-darwinlegacy +category Package +revision 59817 +shortdesc x86_64-darwinlegacy files of optexcount +containersize 344 +containerchecksum ca5bd5b60f5419bf16a78dd2fa416295fbe9f1e18f74db1af4f1390b763c7ec98460cf39e2b38fb1199a7b80fd019008146993be723526227aee1da88ae6af5d +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/optexcount + +name optexcount.x86_64-linux +category Package +revision 59817 +shortdesc x86_64-linux files of optexcount +containersize 336 +containerchecksum 75dd521f90f274d62b6e8965b36ccde43a3522f71db76a60ea4d43699f74363685a2c33bdaee15bbb505db6b0b1cba234dcc038a3c833c7622916e323d2e7073 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/optexcount + +name optexcount.x86_64-linuxmusl +category Package +revision 59817 +shortdesc x86_64-linuxmusl files of optexcount +containersize 340 +containerchecksum 69dc216465a64c7797388c10029afff3ab43ad716c882378251818f8bd6a6797d010e4bb0943fb1a0d885cd8862ca60c3b19db8d9df78d913b57a6422434e9dd +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/optexcount + +name optexcount.x86_64-solaris +category Package +revision 59817 +shortdesc x86_64-solaris files of optexcount +containersize 336 +containerchecksum 4cdf9cc790cc7aed5e8cc285019b52efd11b12e875a14d2d940e6e7b52929eda1175958573cd81646ae2200bc16b3b71cdeab03e516090f33fb01bce12a57d85 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/optexcount + name optidef category Package revision 50941 @@ -232948,21 +236901,21 @@ catalogue-version 1.0 name orcidlink category Package -revision 58432 +revision 59560 shortdesc Insert hyperlinked ORCiD logo relocated 1 longdesc This package provides a command to insert the ORCiD logo, which longdesc is hyperlinked to the URL of the researcher whose iD was longdesc specified. -containersize 1652 -containerchecksum c4f2ce57c5c6a792f7d1cd0ef835e38cc582eb7df9655ae3d2555e3c9d389787ce0a058973dbc9d453f063247968957b2ba9ec1ed62499ab731b57fb96e0a342 -doccontainersize 165292 -doccontainerchecksum 8b18a107eb786e45fee9a1a16c5e88386e80db353e729e1288377aec3a87ed7433d189d0acbc1e8065a72b3fb7bf86cd8f635fe870735ddd3ebabed5aab8ba03 -docfiles size=42 +containersize 1664 +containerchecksum ba51e034e90800c402b559fd636acc38a96f0913c552e506e26457d5c690299c7860bf9a1fc911eb2d4e734c90f775e814b8bac52a492ad7743a47f3e89efc5f +doccontainersize 174664 +doccontainerchecksum c20f8e77d3c5866f414f0dcc47d84fa3328492a003a81be1ac3aa69f9ebc2bfff7198be5656192ba7bc4330ca7b773c6d319ec389bd0ad9821ebd6159b7d0b97 +docfiles size=45 RELOC/doc/latex/orcidlink/README.md details="Readme" RELOC/doc/latex/orcidlink/orcidlink.pdf details="Package documentation" -srccontainersize 3264 -srccontainerchecksum f1d11f008b85d65228d1284228e4839d340fe9e661c0cfecc2e9c76c2433b0e7ef6a27b0a630ee7458e4f98a32f12d0356d95bbb9756348e2070175b6d32aa5e +srccontainersize 3336 +srccontainerchecksum 485492dfc8256d97fd747196bb142eb178283eee98aed5edea689543075fe0992e9c25fa522c9fadd48c9b631ffb31c8600c82be598678b03e78c4e5643b8cb2 srcfiles size=3 RELOC/source/latex/orcidlink/orcidlink.dtx RELOC/source/latex/orcidlink/orcidlink.ins @@ -232974,7 +236927,7 @@ catalogue-contact-repository https://github.com/duetosymmetry/orcidlink-LaTeX-co catalogue-ctan /macros/latex/contrib/orcidlink catalogue-license lppl1.3c catalogue-topics hyper -catalogue-version 1.0.3 +catalogue-version 1.0.4 name ordinalpt category Package @@ -233096,17 +237049,17 @@ catalogue-version 1.7 name oswald category Package -revision 57253 +revision 60784 shortdesc The Oswald family of fonts with support for LaTeX and pdfLaTeX relocated 1 longdesc This package provides the Oswald family of fonts, designed by longdesc Vernon Adams, Kalapi Gajjar, Cyreal, with support for LaTeX and longdesc pdfLaTeX. execute addMap Zeroswald.map -containersize 916588 -containerchecksum faa9493780681b7485a642e45cfbb71e81ca408e2e65acd77b22f0655a0d98598558e4557737fa0615794eedaa42cd8ccf9bd04323b55a39db6251f52b11897c -doccontainersize 103464 -doccontainerchecksum e20776527a53c7da8a07d3c08314768cb3c0e2bcdbae90b30e7407c95546f1187f65fbcb8a52915ca3b1d26ffad2191733f26b9f105403ec574ab4912bcae915 +containersize 916600 +containerchecksum 92d4d3a7d8bd09031368a89ab7b49483e653750e1c348908aa3fdb62cdb8ce14ecb7d7a29b37e6774c613e658591622891e4bd6b348492c669716f220b46f9ec +doccontainersize 103472 +doccontainerchecksum 1f6606c8786b0eb54a4c3aad0220347eac3b2bead83ca5540345737cfae509be42b9eb10f27a5ff1ced559aacad7413b69708eacd215afd47636d17194b40082 docfiles size=29 RELOC/doc/fonts/oswald/LICENSE.TXT RELOC/doc/fonts/oswald/Oswald-samples.pdf details="Font samples" @@ -233244,27 +237197,30 @@ catalogue-topics font font-sans font-proportional font-type1 font-supp font-t1en name ot-tableau category Package -revision 44889 +revision 59318 shortdesc Optimality Theory tableaux in LaTeX relocated 1 longdesc The package makes it easy to create beautiful longdesc optimality-theoretic tableaux. The LaTeX source is visually longdesc very similar to a formatted tableau, which makes working with longdesc the source code painless (well, less painful). A variety of -longdesc stylistic variants are available to suit personal taste. -containersize 2096 -containerchecksum f3240c0688276ab6537201b20d6eee422a795d5d994c6bc8eab3f275a037e7adcec7e54c9500a3a5a6d2fe237b44b0b350a7ce6f72c7012bb48a69c9c43f2fca -doccontainersize 81048 -doccontainerchecksum 396256f0ce1bda04fe1c84cb45928d82651b4f6363928e33bf092737ee6ab224f473567aa5432fa00a8e4cfd9b5a3f7e7ad8448090afaaaf89f97b33ff695876 -docfiles size=25 +longdesc stylistic variants are available to suit personal taste. The +longdesc package requires xstring, amssymb, bbding, suffix, colortbl, +longdesc rotating, hhline (optionally), arydshln, and tipa (optionally). +containersize 2392 +containerchecksum 0a9c219d69f6eec4d9fbf8937e0cdde60b34cf38ce154332147ccc172b0ce90932ee08c7a85a68d4e5163461352745a5c0abdc6b8bdc187be5fce5b121f45c75 +doccontainersize 66132 +doccontainerchecksum 8345d881600cf9f4d73cd2a23d12ff32f11a4d3a66b61262b0eae7dd3bc9039e20b187a6a9e45e9b15729015fb76b0e4e3e76c011e47688df09f4a848e508c4c +docfiles size=21 RELOC/doc/latex/ot-tableau/README details="Readme" RELOC/doc/latex/ot-tableau/ot-tableau.pdf details="Package documentation" RELOC/doc/latex/ot-tableau/ot-tableau.tex runfiles size=2 RELOC/tex/latex/ot-tableau/ot-tableau.sty +catalogue-contact-home https://github.com/adamb924/ot-tableau catalogue-ctan /macros/latex/contrib/ot-tableau -catalogue-license lppl -catalogue-topics linguistic +catalogue-license lppl1.3 +catalogue-topics linguistic table name othello category Package @@ -233429,7 +237385,7 @@ catalogue-topics maths name oup-authoring-template category Package -revision 58661 +revision 64491 shortdesc A general template for journals published by Oxford University Press (OUP) relocated 1 longdesc This package provides a general LaTeX template for journals @@ -233440,24 +237396,24 @@ longdesc with large, medium and small page options. For more information longdesc see longdesc https://academic.oup.com/journals/pages/authors/preparing_your_ longdesc manuscript. -containersize 15132 -containerchecksum 138fe4a15f05a1c5b952febf0af211d1b3d13d202ce3cef953b770a1779464da6f7fb1cdbe77ac0f617cb1a1eeed4cde09288fe61cabea439570fc2a0a254df9 -doccontainersize 511092 -doccontainerchecksum 35c7e4e4597924adda46994a50e9e55f8af9f440899bb8ed3c85549d94f96cfc601436eebe0db730dab68762957121e1ddef094f60ed7eee041abbf80a841aad -docfiles size=159 +containersize 17492 +containerchecksum b4d2d3f66092fd8d65cb8539cb0038e7437d2a7613e36404f0a225462686051833c8335f2aa56f31e8bf3623f799f96f5d63710d638645b390c0f0947cf53213 +doccontainersize 322096 +doccontainerchecksum 00987789fcc1c209d08464b919079b5d17535dee92da189180087f5ec67c78eb384f9622f965ccaedd3434c6f097433fbce75be6c459c08e494343217db2129d +docfiles size=115 RELOC/doc/latex/oup-authoring-template/README details="Readme" RELOC/doc/latex/oup-authoring-template/doc/oup-authoring-template-doc.pdf details="User manual" RELOC/doc/latex/oup-authoring-template/doc/oup-authoring-template-doc.tex RELOC/doc/latex/oup-authoring-template/manifest.txt RELOC/doc/latex/oup-authoring-template/oup-authoring-template.pdf details="Example of use" RELOC/doc/latex/oup-authoring-template/oup-authoring-template.tex -runfiles size=29 +runfiles size=31 RELOC/tex/latex/oup-authoring-template/oup-authoring-template.cls catalogue-contact-home http://academic.oup.com/journals/pages/authors/preparing_your_manuscript catalogue-ctan /macros/latex/contrib/oup-authoring-template catalogue-license lppl1.2 catalogue-topics journalpub class doc-templ -catalogue-version 1.0 +catalogue-version 1.1 name outerhbox category Package @@ -233477,6 +237433,31 @@ catalogue-license gpl catalogue-topics boxing catalogue-version 1.2 +name outilsgeomtikz +category Package +revision 66461 +shortdesc Some geometric tools, with TikZ +relocated 1 +longdesc This package provides some commands, with French keys, to +longdesc display geometric tools using TikZ, for example a pen, a +longdesc compass, a rule, a square, a protractor, ... +containersize 5484 +containerchecksum 592060c560fbecd57147c1c4ae2628b2fd5e7adfb8b5a710ec04d27238f5f00670886e9834e7eb67579a5ab3b74b57343fda2c0b673ba00fdb408920400a9bc3 +doccontainersize 382492 +doccontainerchecksum 69321e5f5cc7aa3d9645d4624657fc8730bfee7cc2f93f8d92f2c8805b5f39ac7a6a36a2e9ef8d668cf51600bdfe9b48ce20f696cd16559d95212cc31b85fd34 +docfiles size=103 + RELOC/doc/latex/outilsgeomtikz/OutilsGeomTikz-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/outilsgeomtikz/OutilsGeomTikz-doc.tex + RELOC/doc/latex/outilsgeomtikz/README.md details="Readme" +runfiles size=7 + RELOC/tex/latex/outilsgeomtikz/OutilsGeomTikz.sty +catalogue-contact-bugs https://github.com/cpierquet/OutilsGeomTikz/issues +catalogue-contact-repository https://github.com/cpierquet/OutilsGeomTikz +catalogue-ctan /graphics/pgf/contrib/outilsgeomtikz +catalogue-license lppl1.3c +catalogue-topics pgf-tikz graphics +catalogue-version 0.1.1 + name outline category Package revision 18360 @@ -233578,6 +237559,39 @@ catalogue-license lppl1.3 catalogue-topics outline catalogue-version 0.1 +name overarrows +category Package +revision 65853 +shortdesc Custom extensible arrows over math expressions +relocated 1 +longdesc A LaTeX package to create custom arrows over math expressions, +longdesc mainly for vectors (but arrows can as well be drawn below). +longdesc Arrows stretch with content, scale with math styles, and have a +longdesc correct kerning when a subscript follows. Some predefined +longdesc commands are also provided. +containersize 5392 +containerchecksum 5c2d386bea3d2358e7c6baffcabdbb00411895a45b0500f60f139435b55fc86e6c2c7d7bf96a9bf38300f4d217606ffcc4f212523dc5a7fa1e35b7eb4358fe3d +doccontainersize 551392 +doccontainerchecksum 1e5c39621f3790fe752c8785f5264b842ad00d7eb3a5fa91c41fb8f3c0a84c85d8be00b553a74f1750bfaebb6f97f7c462d9181c7b6afe9547a38b9d3f431b5e +docfiles size=145 + RELOC/doc/latex/overarrows/LICENSE + RELOC/doc/latex/overarrows/README.md details="Readme" + RELOC/doc/latex/overarrows/overarrows-doc.sty + RELOC/doc/latex/overarrows/overarrows.pdf details="Package documentation" +srccontainersize 24260 +srccontainerchecksum 57b1da2b639cd7b2abcfd8b98c8e73a704b5a247b78ed8373aa3059744eaa127314abe34fbca474106b5a3fda4bdc6dd8f2d399e082eb7a6e6396f77b35309c4 +srcfiles size=32 + RELOC/source/latex/overarrows/overarrows.dtx + RELOC/source/latex/overarrows/overarrows.ins +runfiles size=7 + RELOC/tex/latex/overarrows/overarrows.sty +catalogue-contact-bugs https://gricad-gitlab.univ-grenoble-alpes.fr/labbeju/latex-packages/-/issues +catalogue-contact-repository https://gricad-gitlab.univ-grenoble-alpes.fr/labbeju/latex-packages/ +catalogue-ctan /macros/latex/contrib/overarrows +catalogue-license lppl1.3c +catalogue-topics maths pgf-tikz +catalogue-version 1.1 + name overlays category Package revision 57866 @@ -233610,7 +237624,7 @@ catalogue-version 2.12 name overlock category Package -revision 56079 +revision 64495 shortdesc Overlock sans fonts with LaTeX support relocated 1 longdesc The package provides the Overlock and OverlockSC families of @@ -233621,10 +237635,10 @@ longdesc them. There are also small-caps and old-style figures in the longdesc Regular weight. execute addMap overlock.map containersize 590276 -containerchecksum 0c3754d8fce4d3a9b68cd4d8e23d8f53d03ca3e1a1fa81e1af9fc7148bc5376cb8fe15869696667bb109829817178c1f5a6262a10f42c55c00ece4a3e8beef5f -doccontainersize 39568 -doccontainerchecksum e65417e21722d510ff6b41286ea5018513704f0bd346a77c8984b70339346a555dd1ade9c944868318f25ff07e73401807b1882a0eec90259ed55bfd50ff4382 -docfiles size=13 +containerchecksum 0c934c6f34922772336f39dae801a83c705197d7a7dbcf95cb890c25b8209697b3cfacc6899c57016ff32066979b665198d30ae45caf60748599e4c6ac052ad2 +doccontainersize 39916 +doccontainerchecksum 44aec04d96e2867a074ca1ac85fb3449cd276d6a14c893c8cd73dfaa91e60ef5f98ec7ed3859cc57efe746ae1454a5fcd01b44ac580369a87f69bf5cff3e3b22 +docfiles size=14 RELOC/doc/fonts/overlock/OFL.txt RELOC/doc/fonts/overlock/README details="Readme" RELOC/doc/fonts/overlock/overlock-samples.pdf details="Package documentation" @@ -234020,28 +238034,36 @@ catalogue-version 1.0 name pagecolor category Package -revision 44487 -shortdesc Interrogate page colour +revision 65843 +shortdesc Interrogate page color relocated 1 longdesc This package provides the command \thepagecolor, which gives -longdesc the current page (background) colour, i. e. the argument used +longdesc the current page (background) color, i. e. the argument used longdesc with the most recent call of \pagecolor{...}. The command -longdesc \thepagecolornone gives the same colour as \thepagecolor, -longdesc except when the page background colour is "none" (e.g., as a -longdesc result of using the \nopagecolor command). In that case -longdesc \thepagecolor is "white" and \thepagecolornone is "none". -containersize 3192 -containerchecksum 6df1ddc270fa99a658d2ffe94b29e31e54e665b3c3c41c8c1f992adb8453f5bb6b59356c2ef049ac4679f4e996a6888911e5c8c5d92500df0a3f53d5a11f5fb1 -doccontainersize 407548 -doccontainerchecksum c63adfeddcd00a7d738fd74c047b034d4a88264185d519d4891a429b82c62f20dc28196e1657e1c7c1dd3fa8a570d5a66e6af3aed5c78ca851ec40153f2396e3 -docfiles size=104 +longdesc \thepagecolornone gives the same color as \thepagecolor, except +longdesc when the page background color is "none" (e.g., as a result of +longdesc using the \nopagecolor command). In that case \thepagecolor is +longdesc "white" and \thepagecolornone is "none". When \nopagecolor is +longdesc unknown or broken (crop package), this package provides a +longdesc replacement. Similar to \newgeometry and \restoregeometry of +longdesc the geometry package \newpagecolor{...} and \restorepagecolor +longdesc are provided. For use with the crop package +longdesc \backgroundpagecolor{...} as well as +longdesc \newbackgroundpagecolor{...} and \restorebackgroundpagecolor +longdesc are provided. +containersize 3072 +containerchecksum 126ed61dfaed5f680d4055c6a19c4a1842f7b5d49e09e280f2dfa36886211881ea1b94197f20268aea6f0d4a3237366eb8b6eaf22e46934b59c4462ffbccc264 +doccontainersize 464428 +doccontainerchecksum 963f381fb9968d613c5a1ef805342111c423dfbbb7700761085eada847aa526170342c7751e5f20d5784fdb4361b1e4631f875843dd7559fa435372a74987bf2 +docfiles size=136 RELOC/doc/latex/pagecolor/README details="Readme" + RELOC/doc/latex/pagecolor/pagecolor-crop-example.pdf RELOC/doc/latex/pagecolor/pagecolor-example.pdf details="Example" RELOC/doc/latex/pagecolor/pagecolor-example.tex RELOC/doc/latex/pagecolor/pagecolor.pdf details="Package documentation" -srccontainersize 12008 -srccontainerchecksum 2cb9a6c424ec6b1a649a592a51d4c06f67685042da8cba22ac088ca962ecbd2b93806a962409ea94f28e9183cebc02d7e2b9ee298d645a330fab8722534ecebc -srcfiles size=15 +srccontainersize 11996 +srccontainerchecksum f693f0b418ecc9a7bd70e33f5ec497d4cf91cb5baa1f6aed92e11b94bd05185bad6c5362d1c3fb227aa7f533e7c69db082eab9ed7f59d49115e56400f11cf97f +srcfiles size=14 RELOC/source/latex/pagecolor/pagecolor.drv RELOC/source/latex/pagecolor/pagecolor.dtx RELOC/source/latex/pagecolor/pagecolor.ins @@ -234050,7 +238072,7 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/pagecolor catalogue-license lppl1.3c catalogue-topics colour -catalogue-version 1.0i +catalogue-version 1.2b name pagecont category Package @@ -234079,23 +238101,290 @@ catalogue-license lppl catalogue-topics page-nos catalogue-version 1.0 +name pagegrid +category Package +revision 64470 +shortdesc Print page grid in background +relocated 1 +longdesc This package puts a grid on the paper. It was written for +longdesc developers of a class or package who have to put elements on +longdesc definite locations on a page (e.g. letter class). The grid +longdesc allows a faster optical check, whether the positions are +longdesc correct. If the previewer already offers features for +longdesc measuring, the package might be unnecessary. Otherwise it saves +longdesc the developer from printing the page and measuring by hand. The +longdesc package was part of the oberdiek bundle. +containersize 3484 +containerchecksum 587c09867ebe999b3490d2b6dbd541acf4631a3d40ce1c0dd102b3ca4801ba5774f60ae86f27cd34bf32f324d54bef305f365cc1a8565ab54d84925861082b8e +doccontainersize 327708 +doccontainerchecksum 3c5d05229ac51f2013017372cbe1df54709b604e170bc4aefdf26a1a017ded6124fba4922ec7609f72c059e45e1ebf1a1eb838c89f4c1564c518469333afb5ba +docfiles size=84 + RELOC/doc/latex/pagegrid/README.md details="Readme" language="en" + RELOC/doc/latex/pagegrid/pagegrid.pdf details="Package documentation" language="en" +srccontainersize 7368 +srccontainerchecksum f9f5f7ef9f3b0509ae0f52fbb9afaafd96396777862c2976550ceefb88d10feb7eeabec2dca561f5a55ce5f4ae6034be4db94da07209652bc6a85f5b4f2b4a56 +srcfiles size=7 + RELOC/source/latex/pagegrid/pagegrid.dtx +runfiles size=3 + RELOC/tex/latex/pagegrid/pagegrid.sty +catalogue-ctan /macros/latex/contrib/pagegrid +catalogue-license lppl1.3 +catalogue-topics layout-show background +catalogue-version 1.6 + +name pagelayout +category Package +revision 66392 +shortdesc Layout graphic rich documents +longdesc The pagelayout class enables you to layout pages declaratively +longdesc using simple macros for pages, covers, grids, templates, text, +longdesc and graphics to create graphic rich, perfectly typeset, and +longdesc print ready PDFs. The integration of Inkscape allows your to +longdesc create box shadows. The integration of ImageMagick allows you +longdesc to configure compression and sharpening for bitmap graphics to +longdesc export web, print or preview versions of your document. +longdesc Parallelized image optimization, caching, and a draft mode +longdesc enable fast PDF creation and a responsive workflow, even for +longdesc large documents with lots of photos and graphics. The +longdesc pagelayout class also integrates the Pgf/TikZ and tcolorbox +longdesc LaTeX packages. +depend pagelayout.ARCH +containersize 24560 +containerchecksum e1dabe46c223811fb88d17c13ccad55853c4c5eb13d7927b841cded1ca198fd04d7add6a54e9542f05fbf1953eb2431b8a2d508531f26909414a40baf7d78d52 +doccontainersize 4379308 +doccontainerchecksum 2e777b9486a9de61a7bc77e7777b92bc4512f051e716c2b5597832ae862f4885c28f9518f5371316ef09d36a62e420c2648b6e2bc37122a3a21f36965c26834d +docfiles size=1218 + texmf-dist/doc/latex/pagelayout/1x1.pdf + texmf-dist/doc/latex/pagelayout/2x1.pdf + texmf-dist/doc/latex/pagelayout/3x2.pdf + texmf-dist/doc/latex/pagelayout/LICENSE + texmf-dist/doc/latex/pagelayout/README.md details="Readme" + texmf-dist/doc/latex/pagelayout/banner.pdf + texmf-dist/doc/latex/pagelayout/banner.svg + texmf-dist/doc/latex/pagelayout/banner.tex + texmf-dist/doc/latex/pagelayout/example-book.pdf + texmf-dist/doc/latex/pagelayout/example-book.tex + texmf-dist/doc/latex/pagelayout/example-borders-and-shadows.pdf + texmf-dist/doc/latex/pagelayout/example-borders-and-shadows.tex + texmf-dist/doc/latex/pagelayout/example-graphic.pdf + texmf-dist/doc/latex/pagelayout/example-graphic.tex + texmf-dist/doc/latex/pagelayout/example-grid.pdf + texmf-dist/doc/latex/pagelayout/example-grid.tex + texmf-dist/doc/latex/pagelayout/example-template.pdf + texmf-dist/doc/latex/pagelayout/example-template.tex + texmf-dist/doc/latex/pagelayout/example-text.pdf + texmf-dist/doc/latex/pagelayout/example-text.tex + texmf-dist/doc/latex/pagelayout/kopi.jpg + texmf-dist/doc/latex/pagelayout/pagelayout-manual-layout-guides.pdf + texmf-dist/doc/latex/pagelayout/pagelayout-manual-layout-guides.tex + texmf-dist/doc/latex/pagelayout/pagelayout-manual.pdf details="Package documentation" + texmf-dist/doc/latex/pagelayout/pagelayout-manual.tex + texmf-dist/doc/latex/pagelayout/quickstart-1.svg + texmf-dist/doc/latex/pagelayout/quickstart-2.svg + texmf-dist/doc/latex/pagelayout/quickstart-3.svg + texmf-dist/doc/latex/pagelayout/quickstart.pdf + texmf-dist/doc/latex/pagelayout/quickstart.tex + texmf-dist/doc/latex/pagelayout/tests.zip + texmf-dist/doc/man/man1/pagelayoutapi.1 + texmf-dist/doc/man/man1/pagelayoutapi.man1.pdf + texmf-dist/doc/man/man1/textestvis.1 + texmf-dist/doc/man/man1/textestvis.man1.pdf +runfiles size=43 + texmf-dist/scripts/pagelayout/pagelayoutapi + texmf-dist/scripts/pagelayout/pagelayoutapi.1.md + texmf-dist/scripts/pagelayout/textestvis + texmf-dist/scripts/pagelayout/textestvis.1.md + texmf-dist/tex/latex/pagelayout/pagelayout.cls +catalogue-alias xput +catalogue-contact-bugs https://github.com/friedemannbartels/latex-pagelayout/issues +catalogue-contact-repository https://github.com/friedemannbartels/latex-pagelayout +catalogue-ctan /macros/latex/contrib/pagelayout +catalogue-license lppl1.3c +catalogue-topics layout pgf-tikz class +catalogue-version 1.0.4 + +name pagelayout.aarch64-linux +category Package +revision 65625 +shortdesc aarch64-linux files of pagelayout +containersize 368 +containerchecksum 816e0d8b6608b62a3a16418c9bf16d9a619519e583f983fa2ab6b89a4b473ad2aeab5869b3d2bf3dd801da99b317f7442d8f4e524e946c248f8474dfaff1a974 +binfiles arch=aarch64-linux size=2 + bin/aarch64-linux/pagelayoutapi + bin/aarch64-linux/textestvis + +name pagelayout.amd64-freebsd +category Package +revision 65625 +shortdesc amd64-freebsd files of pagelayout +containersize 368 +containerchecksum fc3ee129046e14a5a883fc9cb6f3b53691040e671ea8cca11e04d7448362d4d61c59e2910da6d888769c43cf55bdc282ad03b5a8e5b3fa5be156f9aba38bdac4 +binfiles arch=amd64-freebsd size=2 + bin/amd64-freebsd/pagelayoutapi + bin/amd64-freebsd/textestvis + +name pagelayout.amd64-netbsd +category Package +revision 65625 +shortdesc amd64-netbsd files of pagelayout +containersize 368 +containerchecksum 980882812840085fb26913a7be4c5f09a9246c777638dae951ea98adf4b254e39da9ab1b3ae523386065b885b5cf1a4bd892ee2d29e84182a48fbcfe3a9bcfe3 +binfiles arch=amd64-netbsd size=2 + bin/amd64-netbsd/pagelayoutapi + bin/amd64-netbsd/textestvis + +name pagelayout.armhf-linux +category Package +revision 65625 +shortdesc armhf-linux files of pagelayout +containersize 372 +containerchecksum 31395619af77be87cd470bcc06e8908436b5ad9f92f9edcb3dc771d7543d43181d06c77250a670c4d8e21e7414daaed05bbe0f5d14b52215324b14c76f13f863 +binfiles arch=armhf-linux size=2 + bin/armhf-linux/pagelayoutapi + bin/armhf-linux/textestvis + +name pagelayout.i386-freebsd +category Package +revision 65625 +shortdesc i386-freebsd files of pagelayout +containersize 368 +containerchecksum 599784d1b9365b1278d31dfb1a31b74377fb292b21f69d7a454fc5bb6abf638a675a2b9b36162c34703891bbbdbac59e45dbb4b046d6597723ffb73901ae2a6b +binfiles arch=i386-freebsd size=2 + bin/i386-freebsd/pagelayoutapi + bin/i386-freebsd/textestvis + +name pagelayout.i386-linux +category Package +revision 65625 +shortdesc i386-linux files of pagelayout +containersize 368 +containerchecksum 05633bc407dba9d2f2b65f9a7d3eee151ecf98d9f9c75cb12f530631fc8ca2319e7365c8f43653e3bca6823a043696d64610b2694b7ca041990025799fcbbd3e +binfiles arch=i386-linux size=2 + bin/i386-linux/pagelayoutapi + bin/i386-linux/textestvis + +name pagelayout.i386-netbsd +category Package +revision 65625 +shortdesc i386-netbsd files of pagelayout +containersize 368 +containerchecksum e876dbaa52d451f35a9340b2cdc9d77c388183e47d0b20092a110069dbf7d9ef5d761004fab07bbefd9335994be62234258dab59e0c0b87e827280abf94b7e5e +binfiles arch=i386-netbsd size=2 + bin/i386-netbsd/pagelayoutapi + bin/i386-netbsd/textestvis + +name pagelayout.i386-solaris +category Package +revision 65625 +shortdesc i386-solaris files of pagelayout +containersize 368 +containerchecksum 6e45d57f595ca128362d052740c751334223240f9e1cdfb7f2dc739e7cf78b0fe562b3afd8b9fa91cbef83a0b91e3a4d52e0ebb0868409a2f895f7e53db646c4 +binfiles arch=i386-solaris size=2 + bin/i386-solaris/pagelayoutapi + bin/i386-solaris/textestvis + +name pagelayout.universal-darwin +category Package +revision 65625 +shortdesc universal-darwin files of pagelayout +containersize 372 +containerchecksum c95838750fe437998616c79e8e1e8e498a18d99ca521364c1db3dbc6edc6328d928152e7427a33feb4437bd5eba48d2476975ce8d59d8a8fa8a961e074979be0 +binfiles arch=universal-darwin size=2 + bin/universal-darwin/pagelayoutapi + bin/universal-darwin/textestvis + +name pagelayout.x86_64-cygwin +category Package +revision 65625 +shortdesc x86_64-cygwin files of pagelayout +containersize 372 +containerchecksum 619a4ef34d361b04575655a4e1db821f602ff3d338c797890d9e5f1f646d055225965b7c6a7433b2a401b6afd6c1ae547e75f1138fc4b547605d506f3d89b3a6 +binfiles arch=x86_64-cygwin size=2 + bin/x86_64-cygwin/pagelayoutapi + bin/x86_64-cygwin/textestvis + +name pagelayout.x86_64-darwinlegacy +category Package +revision 65625 +shortdesc x86_64-darwinlegacy files of pagelayout +containersize 380 +containerchecksum 4a9722c90a61aa5ca0465a72bfcce817fa6e954ddd1d698fb8dc712f721703c1642fe0401ee4515af35cfbd9ca2a71af24fb71e8517d4f01e198407f8821950c +binfiles arch=x86_64-darwinlegacy size=2 + bin/x86_64-darwinlegacy/pagelayoutapi + bin/x86_64-darwinlegacy/textestvis + +name pagelayout.x86_64-linux +category Package +revision 65625 +shortdesc x86_64-linux files of pagelayout +containersize 368 +containerchecksum 9216bb96034692735c6074e0e2e3afb3a7c6ffe71468f991d023aff6c2eebd96e43787c4e78062262e7e76133b0533cd6dde02d40799ae093f1c13661dceddc0 +binfiles arch=x86_64-linux size=2 + bin/x86_64-linux/pagelayoutapi + bin/x86_64-linux/textestvis + +name pagelayout.x86_64-linuxmusl +category Package +revision 65625 +shortdesc x86_64-linuxmusl files of pagelayout +containersize 372 +containerchecksum 41dcbcfe12643b94c110371e7d6528e0f090a48d0dedec7069e97e6a8ecb56659c28e065e3b9a8645ed4c1635e852ecc1c120ee79a1f1868af5df1f20e205a4b +binfiles arch=x86_64-linuxmusl size=2 + bin/x86_64-linuxmusl/pagelayoutapi + bin/x86_64-linuxmusl/textestvis + +name pagelayout.x86_64-solaris +category Package +revision 65625 +shortdesc x86_64-solaris files of pagelayout +containersize 368 +containerchecksum 2e95a85b4241d6c0ce8eaee2209311d2e43bb3f1769c89bfb4cbb1157e0fd362713468a183060223c76f94205d6ec111e350afc51e9cdf0018af49d7daefc0f9 +binfiles arch=x86_64-solaris size=2 + bin/x86_64-solaris/pagelayoutapi + bin/x86_64-solaris/textestvis + +name pagella-otf +category Package +revision 64705 +shortdesc Using the OpenType fonts TeX Gyre Pagella +relocated 1 +longdesc This package can only be used with LuaLaTeX or XeLaTeX. It does +longdesc the font setting for the OpenType font 'TeX Gyre Pagella' for +longdesc text and math. The missing typefaces like bold math and slanted +longdesc text are also defined +containersize 2332 +containerchecksum feec3cb6db5c10b2ae3d4d4e58cd21b1e425be368e3002914823120b1396622fd2e6de09bf0a892759f3e9629deaa1c419da59bb858dc1263cc271fb33d46564 +doccontainersize 295080 +doccontainerchecksum 6cc07f42d696c04156c0da6610ceb562174dd5e00d1eba96c7b1813e86b53081245e45f835309db257cb1d157d6a77a3d453ea1f689400cab9fc08cbda21b8ef +docfiles size=86 + RELOC/doc/fonts/pagella-otf/Changes + RELOC/doc/fonts/pagella-otf/README.md details="Readme" + RELOC/doc/fonts/pagella-otf/pagella-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/pagella-otf/pagella-otf-doc.tex +runfiles size=3 + RELOC/tex/latex/pagella-otf/pagella-otf.sty +catalogue-ctan /fonts/pagella-otf +catalogue-license lppl1.3 +catalogue-topics font font-otf font-maths luatex xetex +catalogue-version 0.02 + name pagenote category Package -revision 15878 +revision 63708 shortdesc Notes at end of document relocated 1 longdesc The pagenote package provides tagged notes on a separate page longdesc (also known as 'end notes'). Unless the memoir class is used, longdesc the package requires the ifmtarg package. -containersize 2020 -containerchecksum f1db9829d909add12458cd17771136ef642b5655b03779c8b2fa46cf25afcb8843d91de331737f8f6537e7afc5f2dfd275926e6f4502c8022b0472d61b433b1e +containersize 1996 +containerchecksum 085f824f879091e479635e2da9d375f51217f00dca5cc51f6b3dfa43e8a54197e4f2bb0f1748e7fa5dfdb522afcf177c67c9e47f4a9e756ba71ba6394fcd56da doccontainersize 138600 -doccontainerchecksum b57cbcef6a6ecec75b351f6a3dc09f0422873155a8f90819dc4dd2caf60cd562a21de7ce62b241259c2f0dc3889c0deceb25c00f7f3d8764a90f5861c8e8c1ee +doccontainerchecksum 20ac52f56753f0166829aea56e2b1514a34f67eea08ac8f2fbc505dcb046d2cc4168156b8db8691b426e35bbc83295454eb299a443e44d236fd31b695bb8bb44 docfiles size=40 RELOC/doc/latex/pagenote/README details="Readme" RELOC/doc/latex/pagenote/pagenote.pdf details="Package documentation" -srccontainersize 7888 -srccontainerchecksum 3a7f4cdfa5839de85f476c3f059847ba05f7e5eb10ef4f5d951ac4e07a33091c4ccda5570dea1bf47fbc7f15272ca411afd68197fba56c9ec133d163671483db +srccontainersize 7884 +srccontainerchecksum 1926eca304ce92b3ec5fe2e06fc62a2bd8a7bdb45038050b5cf0871b35265f7149803ab32a28af057b7c3c1ff0deecdf0ae6cd4afb950d45679624a317b68651 srcfiles size=7 RELOC/source/latex/pagenote/pagenote.dtx RELOC/source/latex/pagenote/pagenote.ins @@ -234104,7 +238393,7 @@ runfiles size=2 catalogue-also endnote catalogue-ctan /macros/latex/contrib/pagenote catalogue-license lppl1.3 -catalogue-topics notes +catalogue-topics notes endnote catalogue-version 1.1a name pagerange @@ -234197,9 +238486,9 @@ catalogue-version 1.2f name palatino category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -234212,8 +238501,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap upl.map -containersize 325820 -containerchecksum f21fdeb0423853294f52427bbe1477bbfd49b1a6255bed5f561dfa2156cf8309b2f71d2c09ad74bd64bc1fd69fc73816e3d84e72d975db5925d4c3c4db6fe8ca +containersize 325796 +containerchecksum 5db043495b8daf0a5a854367ca1c82007a154d09b2bcae9f399e8f851f30a554fa98970cf45ccd8f0681f70ae7e01f54dfd414bcbd888b802e93993c2ed172df runfiles size=388 RELOC/dvips/palatino/config.upl RELOC/fonts/afm/adobe/palatino/pplb8a.afm @@ -234440,6 +238729,69 @@ catalogue-ctan /fonts/urw/base35 catalogue-license gpl catalogue-topics font font-type1 font-collection +name palette +category Package +revision 60119 +shortdesc Create palettes for colors and symbols that can be swapped in +relocated 1 +longdesc The package `palette` contains two files: `colorpalette.sty` +longdesc and `symbolpalette`. One deals with colors and the other deals +longdesc with symbols; the implementation is quite similar. With this +longdesc package you can create themes. Each of these themes have a set +longdesc of colors, and you can create palettes based on this theme with +longdesc specific color values for each of the theme's color slots. The +longdesc active palette for each theme can be swapped in to make +longdesc experimenting with colors easier or give users choices as to +longdesc which theme they pick. +containersize 1768 +containerchecksum 0583223e81139040de67fa9a1fd93479dd2024c19d34e775a71b9fc03d7b01799c2dd58736d431307cb067d2d3130fb495aaa002425a8c0c80ddbc3e33679693 +doccontainersize 179788 +doccontainerchecksum 16934d0cdc60fe7c1d6d2cbd0dfb640a13d8282d98e322c98853b71ab7fe38a33241857ae98fd8ffd9f2e5c009327889f4c42a89af4370fc7d4608b457b1cb4c +docfiles size=46 + RELOC/doc/latex/palette/README.md details="Readme" + RELOC/doc/latex/palette/palette.pdf details="Package documentation" +srccontainersize 3848 +srccontainerchecksum ea0e817ec066450c3bceae8ff9859f9b4934dba86f1ef850bfe8d566ac1da8296d780313962ab63babdfb822d1c72e686dca2925f809baa3a62eb2d744e8e6f8 +srcfiles size=4 + RELOC/source/latex/palette/palette.dtx +runfiles size=2 + RELOC/tex/latex/palette/colorpalette.sty + RELOC/tex/latex/palette/symbolpalette.sty +catalogue-ctan /macros/latex/contrib/palette +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 1.1.0 + +name pangram +category Package +revision 66300 +shortdesc A LaTeX package for testing fonts +relocated 1 +longdesc This package provides a simple way for font designers and users +longdesc to test their fonts in different sizes without much input. +containersize 1912 +containerchecksum 1a74fb3bb7d1a4c9dfdb594bcbfef7b716affa55bbc7010fed6937708f9ca0d9f644c2d56a557737b56c1b8386de90a4b4df699aa50631c1e94f1e4e3c9d3465 +doccontainersize 101260 +doccontainerchecksum eb031dfabc359fecf7316cfac1d799f8377b38d2e86922a52e2409214f9dc251d1ec5c5ea439ce2830ed21ac9a02925f442e0930f845b849b7ef662c30a70955 +docfiles size=27 + RELOC/doc/latex/pangram/README.md details="Readme" + RELOC/doc/latex/pangram/pangram.pdf details="Package documentation" +srccontainersize 4700 +srccontainerchecksum 8d5a945567245da7bdf69db5cdaa72d693054828d948700210e8a71c3f1178e7c690c7fb912275cbb1b3700f812482aaac896875ebbfcc33d3b9531f37b6cf89 +srcfiles size=5 + RELOC/source/latex/pangram/pangram.dtx + RELOC/source/latex/pangram/pangram.ins +runfiles size=2 + RELOC/tex/latex/pangram/pangram.sty +catalogue-contact-bugs https://github.com/AlphaZTX/pangram/issues +catalogue-contact-development https://github.com/AlphaZTX +catalogue-contact-repository https://github.com/AlphaZTX/pangram +catalogue-contact-support https://github.com/CTeX-org/forum +catalogue-ctan /macros/latex/contrib/pangram +catalogue-license lppl1.3c +catalogue-topics dummy-gen expl3 +catalogue-version 0.0c + name paper category Package revision 34521 @@ -235502,18 +239854,18 @@ catalogue-topics font font-sans font-mono font-type1 font-ttf name paresse category Package -revision 56621 +revision 59228 shortdesc Define simple macros for greek letters relocated 1 longdesc The package defines macros using SS to type greek letters so longdesc that the user may (for example) type SSa to get the effect of longdesc $\alpha$. However, it takes care only of letters which have a longdesc macro name like \alpha or \Omega. -containersize 3632 -containerchecksum 7be25fc749a18d1cabc6ee720cef15b89e323d4e07716b63aa49a5eb4c89208f730513491a7b6740069f0daec3015ada3d673aed6407b21a8a1ae1dd09f60d7b -doccontainersize 1333888 -doccontainerchecksum cb01df5ac56c7cbeab0cbfdb99950ddbe58cb432885702b2212c89c654cb2a88536be20a4abfdda5321f2cb36e8528fdbe2b96a129eb8afa2c1e969c0f22398f -docfiles size=411 +containersize 3640 +containerchecksum 1604c9320918893633af8318d049194158daaf458bbafb5ce34b2ecf39896eae4591989117bd1ecdc3a86d4728a4c477f32b82b38315aa0693fb5978a81d2b21 +doccontainersize 1335464 +doccontainerchecksum f25aae5058f765f5f141c1d2ba537db5395384f64b1e0aa803e486eccc1a9c958dcbf6b1dfb0aca331a5d20a798c2107092f79b9e8ec44e342ba52964ed43b06 +docfiles size=412 RELOC/doc/latex/paresse/LISEZMOI.md details="Lisezmoi (French)" language="fr" RELOC/doc/latex/paresse/MANIFEST.md RELOC/doc/latex/paresse/README.md details="Readme" @@ -235522,8 +239874,8 @@ docfiles size=411 RELOC/doc/latex/paresse/paresse-fra.pdf details="Guide de l'utilisateur (French)" language="fr" RELOC/doc/latex/paresse/paresse-fra.tex RELOC/doc/latex/paresse/paresse.pdf details="Code documentation" -srccontainersize 14036 -srccontainerchecksum 50f683ae5a7d46faa5740766e01a7637e9e1f149b6763e48ed0029814add723b551d76fae9baabf562b1bc5268ed015b7619fced2492478b2be2ec4c4f63f57f +srccontainersize 14060 +srccontainerchecksum 5acbb82be5b06506d603eb19b01770806e515b1d496a2b51ecbab0a6c5fb4b6a0842764fb76446c09eb9a49a9a9cefb571e5133a0f72917de989814cfb3bd00a srcfiles size=13 RELOC/source/latex/paresse/paresse.dtx RELOC/source/latex/paresse/paresse.ins @@ -235534,7 +239886,7 @@ runfiles size=7 catalogue-ctan /macros/latex/contrib/paresse catalogue-license lppl1.3c catalogue-topics shortcut expl3 -catalogue-version 5.0.1 +catalogue-version 5.0.2 name parnotes category Package @@ -235826,6 +240178,35 @@ catalogue-license lppl catalogue-topics alignment pgf-tikz catalogue-version 2.01 +name pascaltriangle +category Package +revision 61774 +shortdesc Draw beautiful Pascal (Yanghui) triangles +relocated 1 +longdesc This LaTeX3 package based on TikZ helps to generate beautiful +longdesc Pascal (Yanghui) triangles. It provides a unique drawing macro +longdesc \pascal which can generate isosceles or right-angle triangles +longdesc customized by means of different \pascal macro options or the +longdesc \pascalset macro. +containersize 3696 +containerchecksum 0736284ad69dc62a9f97887f09aaf4e527438d068147319be8710c53708bf88c156964c9737548df4b2210b1e6bf5219d157e5d5baff53a510fa373684a8eda5 +doccontainersize 164512 +doccontainerchecksum 137c13f7878fcb5f3f2e7d4d47d05e8a25f7fd19f58672d7b521ba944a5eea22e90dd12418d4b056dbb1a94faaae750a9f2e06e4dfc8fcd206609f5f95e97a5f +docfiles size=46 + RELOC/doc/latex/pascaltriangle/README.md details="Readme" + RELOC/doc/latex/pascaltriangle/build.sh + RELOC/doc/latex/pascaltriangle/pascaltriangle.pdf details="Package documentation" language="zh,en" + RELOC/doc/latex/pascaltriangle/pascaltriangle.tex +runfiles size=4 + RELOC/tex/latex/pascaltriangle/pascaltriangle.sty +catalogue-also binomexp +catalogue-contact-bugs https://github.com/registor/pascaltriangle/issues +catalogue-contact-repository https://github.com/registor/pascaltriangle +catalogue-ctan /macros/latex/contrib/pascaltriangle +catalogue-license lppl1.3c +catalogue-topics maths calculation pgf-tikz expl3 +catalogue-version 1.0.1 + name passivetex category Package revision 15878 @@ -235906,7 +240287,7 @@ catalogue-version 1.05 name patgen category TLCore -revision 57972 +revision 66186 shortdesc Generate hyphenation patterns longdesc Patgen takes a list of hyphenated words and generates a set of longdesc patterns that can be used by the TeX 82 hyphenation algorithm. @@ -235921,9 +240302,9 @@ longdesc maintained as part of TeX Live. depend kpathsea depend patgen.ARCH containersize 780 -containerchecksum 35e75b2c644238784e3e0fe51726a6675e5b56818f37d2d0b6393de14f03832bade756eac1f8ccadead1a287a442363eb1ba356b29dca1e7b3dae3ce276f2cb6 -doccontainersize 28684 -doccontainerchecksum a6523561f63e016bb352ec6afa33b5683c7f8ac76a5442cc8d329a1246b7f5b78dc62e9f7da2f33ee50b851d73abba35fb61fabbe05e6cbe21019a9fa5a1d898 +containerchecksum f37ecebfd74a30b2f4fcba5db893b31e7672f2d91d2be7f003bf625512dd54be056a23165ba8b1f5ed2165595405220df20dbd711e63a3be9901424aaf1fb0de +doccontainersize 28688 +doccontainerchecksum c7bf5af0965cb675a82ee13c6ec467f88395438d07d59379f4850a36c783cfd6661d6fa6493e67bf39e78be615e3148cda9452003b5e9f5d5ceb1fbd305d4ee6 docfiles size=10 texmf-dist/doc/man/man1/patgen.1 texmf-dist/doc/man/man1/patgen.man1.pdf @@ -235938,145 +240319,136 @@ catalogue-version 2.4 name patgen.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of patgen -containersize 19192 -containerchecksum 9db676b480f4322edcc52202f7352141e3d8ef02fdee2f83dbdf17ebd9c2d8764d659e131f95e24479aad2bcb852be26522ddde999cc4ee05d85b73e059c46c0 -binfiles arch=aarch64-linux size=13 +containersize 19196 +containerchecksum ed22726b7419133361760db84898923f1a548d51e96b3b63ff8b074ed803d9a2e31a775aa1b11efd969084c8841ee3823e6f036453583c3235f6dcb3b3314902 +binfiles arch=aarch64-linux size=12 bin/aarch64-linux/patgen name patgen.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of patgen -containersize 23100 -containerchecksum c8087591db136292ba580b0a8bfb5584b1ab2d9d3e2bafb98339b88c07d24580700c22d8ca02738512bdae72b76f08747ab64b311bfc5ba1070099d48cdfd36c -binfiles arch=amd64-freebsd size=13 +containersize 23268 +containerchecksum 48409af534efb3cdf9db28e238e2a52fc83d276d0b24401ca9745bdcff82db81fdbdd79d66173eceb89bdf9e91d86bbc7d1c1b0acedf32947763bd40560dd36a +binfiles arch=amd64-freebsd size=14 bin/amd64-freebsd/patgen name patgen.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of patgen -containersize 18928 -containerchecksum d0a99b5c49bde8c7c40544188f962ee6f2e3860d5b54816a5c9f90a5016dafee0ed511475267f1fd48b8fb8236cb79ec92309760bb13fcad10d1f732c0db5071 +containersize 19052 +containerchecksum f6d7cd164548708b7a3cf6b412019b4aedc84a03c1d51cc4a022638b6ba39d88f911a5e6271254616baa2da60b7d35a38c32e1294b2ab83462f5ad947b7399fb binfiles arch=amd64-netbsd size=13 bin/amd64-netbsd/patgen name patgen.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of patgen -containersize 15668 -containerchecksum 4908acbb54ec80bacf37a4f8cf0b68c6fdf0636fe6030b1cfe2c265c662f7c6e1ad16e910a710ffe9a7feeee18fca105bb0c2f470a87d72d57f6eb1909b25dcf +containersize 15760 +containerchecksum 129df12c5a73e695d484fd102e3aa9fcc6d9b68ef19059f2a3c7d7cb9dde747e64307c336a9b8a4ef09315b74ed2c17d8c6dfd6b79afaa7567230aa80ce6d886 binfiles arch=armhf-linux size=9 bin/armhf-linux/patgen -name patgen.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of patgen -containersize 12648 -containerchecksum b29d8630403764ed4a1522f0a0e64c9d0d47223e4e5ad2973f7eb6e157bb83564545333e0a46ef75db6ee8f758ee88f70d99c8cf37d45981dff25a77f68a76a5 -binfiles arch=i386-cygwin size=8 - bin/i386-cygwin/patgen.exe - name patgen.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of patgen -containersize 18796 -containerchecksum 2c43a4b508d74b71684380ffd0da8a7da965dbe46f5b80075afbecb9c530ebd3baaec7020f5cb48fe535be54c9110f1361e98348a8daf49d0df6c3700a7552b9 +containersize 19396 +containerchecksum e71a4741239fa29d6b76f2a95c7978fd6d3c67207bff787da5e87a119269ac77ef65b50a84dc059545ec70167a73183b31d2d674222ba5edf2eab52b9b9fee72 binfiles arch=i386-freebsd size=11 bin/i386-freebsd/patgen name patgen.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of patgen -containersize 17428 -containerchecksum 1b11846aaaec99bfef5ca4f81d4320e7f79e932a4ba934325dc58dd003817b14e4e15879ab060aab8f1f63cb4a1e312fbae782e6944fe6bcba3f9ea3fe506f94 -binfiles arch=i386-linux size=10 +containersize 18192 +containerchecksum 7e8bec2b86bc8b2c5e1c0266346287ba6fee0f0de3e31c768db488511bc9ee4444c38a87df7f76fe9437cbd39bf16e0c1e96729429940b489c683cdd6893dd31 +binfiles arch=i386-linux size=11 bin/i386-linux/patgen name patgen.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of patgen -containersize 16316 -containerchecksum 300b9aeb6baab6f2b41a021d1ff59f7272864ddfadc31bdc8e7e00d16eaddea12b0c0ca9b9ceddb50d09d1249b23e460708d5beaf825cf4f62a7946138bbca32 +containersize 16436 +containerchecksum 64f2153bd15f57329c00545e34003209bc5e2092a2c0c891c415335cf5235bf3f66e4d65108742fceadd52048a9ef88f0ab1a0198640120a4493be184bbcfb53 binfiles arch=i386-netbsd size=12 bin/i386-netbsd/patgen name patgen.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of patgen -containersize 20408 -containerchecksum a5cf557520774f31e537221b6d6cf5acb82e212db4c491f2da67f989e2284409f2e90896b413fa6d640beb1114c3375cf9751add3db2b91258dff145f338d61b +containersize 20536 +containerchecksum 4a96511e00de18fa3c59d70c6e6ff9c5bf8243c5e5599a3967130d78d7854a9cfde9c7bf69b055d55262cd38b535a585e0ff3c23d5f63e7d7e1726edd6b1735f binfiles arch=i386-solaris size=12 bin/i386-solaris/patgen name patgen.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of patgen -containersize 48464 -containerchecksum fd5a0143c499b46838eaa5c71a9c4e5a1c752f192122bb9050bb9f6d78f2440a0d6438c27b2aaa3469285ff89b629ca8a6a85e883117054cbf02171ceb91ce2e -binfiles arch=universal-darwin size=51 +containersize 48196 +containerchecksum 61c5b5171607b902a8e26201c9bb2cea01c5226ed9229bbb69c0b60084f513e3d307a2eff18b7a82033437ad159c4bdd3cd06935a3309157e250b8df20181783 +binfiles arch=universal-darwin size=55 bin/universal-darwin/patgen -name patgen.win32 +name patgen.windows category TLCore -revision 58783 -shortdesc win32 files of patgen -containersize 13120 -containerchecksum a2652552b2dd25b50c3474c0aec99f1100d821278ef2b60238ca0838429b73860862c758d9b3ba088df0023ba0750a8179271fc2077fa6aa7bb99b07223bf08b -binfiles arch=win32 size=10 - bin/win32/patgen.exe +revision 65891 +shortdesc windows files of patgen +containersize 15628 +containerchecksum 3959cb9c2f2e0ca1c65a941769bc7bd44da92c1c29efa203b898089017dfff2924232022ada841f4832059c39445baff7ec485236804f6f6a9c46627b1c355e1 +binfiles arch=windows size=8 + bin/windows/patgen.exe name patgen.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of patgen -containersize 15092 -containerchecksum 35ad7bb40f9fd8dbbecec172d3064a2b66761b27e5cce9bb9a7b197249955b45d6600e05c151b59e833a81e91ed0dbf7a1b2ca25d7f52fbf427dabeb21773c32 +containersize 15320 +containerchecksum 238a398751f8dc880f1a4b84816954801c6da0f51a21ec2e52164dc61304a6f5fa224c50caa564da5a4fcaf3c3e9342da7030d147bc770bbda7805248b6f0ab4 binfiles arch=x86_64-cygwin size=9 bin/x86_64-cygwin/patgen.exe name patgen.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of patgen -containersize 21036 -containerchecksum 9e05e208cf5520f59b01b27e4004155fc8489be5ccd907d79b14569f9d411ea94025dadb821ed3c6b3a5a84073bdac887b08341a4190d7067a08060ace7df888 -binfiles arch=x86_64-darwinlegacy size=12 +containersize 21176 +containerchecksum 96ecf3614cc98fd7b7770953c6bf1fb9bfefa71145331d2d7390f6d5c236c09e619eba2b975092110bdf505f8bbd4d33579543c843cdbbbe873713d01411fe12 +binfiles arch=x86_64-darwinlegacy size=13 bin/x86_64-darwinlegacy/patgen name patgen.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of patgen -containersize 17804 -containerchecksum 716b21f3f8f3f046b2e5f713590440589b56fba78076e0f0b3d9864336f1e448e33aaab8023c19893737c5120c5b2f921f3608a3bc6f64743e43b0d424cb95a3 +containersize 17980 +containerchecksum 1429afec5cc802eb8f8d09d281c4f05d5a3c2918f944dda99df9fb2baa2b5463b21316a23f633756343133f44c2fecbe24eb543c57058db40457b2520d3a509f binfiles arch=x86_64-linux size=10 bin/x86_64-linux/patgen name patgen.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of patgen -containersize 22192 -containerchecksum 3c962a81a0da919c6fd3327c23b96d2707051c14fc749526636d4befe236058ef4617cf09925f5efa73401d431dacb4c59c77b3a579419702fa8249c96f40e2e +containersize 22180 +containerchecksum a8e7629678cb51af95e0d6189e1c3a27c194f9d4880dbbb395c61b9ed5ce3bebd671d3e99f57d35118363b958e3c138c44f5ff7882297be5783f4627bba4eea3 binfiles arch=x86_64-linuxmusl size=12 bin/x86_64-linuxmusl/patgen name patgen.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of patgen -containersize 22536 -containerchecksum fce252b5e590a3befc5c4cc892582c3b300db7f82c73a0af61378171a4cffd40aa0fd1b5f3a279c0799569b837cc60e983e3caf445dbf4326aa3cc02f26706d1 +containersize 22700 +containerchecksum 498708bc8273b63ebfa006260d73f5905bd666e3746e16f3ecda16203e09f875204c4999bb66f64826110fcda5b830666da01c89cddbb66a66e975ea2a33fc4e binfiles arch=x86_64-solaris size=13 bin/x86_64-solaris/patgen @@ -236180,7 +240552,7 @@ catalogue-version 1.0 name pax category Package -revision 54512 +revision 63509 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 @@ -236192,16 +240564,19 @@ longdesc if a PDF file is included, the package looks for the file with longdesc the annotation data, reads them and puts the annotations in the longdesc right place. Project status: experimental depend pax.ARCH -containersize 18120 -containerchecksum ee6d006f6f4dbb16cefde5362c9b1b43e470fe03565724ae4a64f8c889dce3d2415d7d1da10bddd1bd137ee042ca2b6369e7a2400ad888db060b44ec2f057a3f -doccontainersize 3012 -doccontainerchecksum 4495f8c1ce62e37565947c520f7cc638c61d984a394fdc833146c1010a8ef5a17a56340eb70a980fdf16ef21483f33ebfa7cc02d6b212ddb074739862f0ceff1 +containersize 5264960 +containerchecksum 71a2c105a7d593ca432a50a68fbcd16d876c8a28ce25be99326f323bcdba997b000158514328542378384f55a0ceadd9d34b71840980346b0b5c1c63843f7c1b +doccontainersize 3064 +doccontainerchecksum a2e0e7129e98efc8a44184d445118220e16f8149166c2093b7c44a936885845c0d49d37a7588f32e2c06fc834f808b0e4a1b15808a32183bf9e457a9a1c19ba7 docfiles size=2 texmf-dist/doc/latex/pax/README details="Package README" -srccontainersize 18776 -srccontainerchecksum b47294dd79cfebd9f0ad48d3a17d54e6b4d8e8ae9fa2618f4299c6cf263de9f3342675d971d8585f65f906aae45a5a6ca26fee999f30137897a25ae59177e6ab -srcfiles size=25 +srccontainersize 5267156 +srccontainerchecksum 3920502e3ef59332129792eb87b771bac81ec3061d6cf35d77fcf785fdc88434824592b6f0d5b74041d372977e17b85d9253e7280a5ce9bc361ce56857397dd1 +srcfiles size=1372 + texmf-dist/source/latex/pax/Makefile texmf-dist/source/latex/pax/build.xml + texmf-dist/source/latex/pax/lib/commons-logging.jar + texmf-dist/source/latex/pax/lib/pdfbox.jar 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 @@ -236210,15 +240585,20 @@ srcfiles size=25 texmf-dist/source/latex/pax/src/MANIFEST.MF texmf-dist/source/latex/pax/src/PDFAnnotExtractor.java texmf-dist/source/latex/pax/src/StringVisitor.java -runfiles size=10 +runfiles size=1354 texmf-dist/scripts/pax/pax.jar texmf-dist/scripts/pax/pdfannotextractor.pl texmf-dist/tex/latex/pax/pax.sty catalogue-also pdftex +catalogue-contact-announce https://github.com/bastien-roucaries/latex-pax +catalogue-contact-bugs https://github.com/bastien-roucaries/latex-pax/issues +catalogue-contact-development https://github.com/bastien-roucaries/latex-pax +catalogue-contact-home https://github.com/bastien-roucaries/latex-pax +catalogue-contact-repository https://github.com/bastien-roucaries/latex-pax +catalogue-contact-support https://github.com/bastien-roucaries/latex-pax/issues catalogue-ctan /macros/latex/contrib/pax catalogue-license lppl gpl catalogue-topics pdf-feat -catalogue-version 0.1l name pax.aarch64-linux category Package @@ -236256,15 +240636,6 @@ containerchecksum 90c2170dedee44499e5224f571556700d5f5150febaf7c9542170466a19fd9 binfiles arch=armhf-linux size=1 bin/armhf-linux/pdfannotextractor -name pax.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of pax -containersize 352 -containerchecksum f99883322856f4d840f8ea5ed5746ab519ccb0410032d813d78d17c44c3c1d4e3a0bb3ef5b97798aa4915461dcfa785ff451c66d918b8dbc6ee0384b8ec5ec53 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdfannotextractor - name pax.i386-freebsd category Package revision 16472 @@ -236310,14 +240681,14 @@ containerchecksum a5e00baa4be5aad264777f9d3144ff578999da9f3f035c6e6584c61fe5a11b binfiles arch=universal-darwin size=1 bin/universal-darwin/pdfannotextractor -name pax.win32 +name pax.windows category Package -revision 15404 -shortdesc win32 files of pax -containersize 688 -containerchecksum 8b31a9a71c014cb2876ebc7a4cf8d48ddf9d5385f1b379b67eae6de5c3bdf5c386f2d39f866a6e9e1a22810fcd4cfac071f0640fd1a42f8871d9ce6f35e2d961 -binfiles arch=win32 size=1 - bin/win32/pdfannotextractor.exe +revision 65891 +shortdesc windows files of pax +containersize 2308 +containerchecksum 2e5ca2e70a1245e88d9c21efea7c962342fc23a2e02530b319afdfed5bc2da0a841b72c0e253e597fc56a9d6e213bfe6295c46d9b06eb5d70cc9926ff4529664 +binfiles arch=windows size=2 + bin/windows/pdfannotextractor.exe name pax.x86_64-cygwin category Package @@ -236391,7 +240762,7 @@ catalogue-version 5.0 name pbalance category Package -revision 57161 +revision 64002 shortdesc Balance last page in two-column mode relocated 1 longdesc This package balances the columns on the last page of a @@ -236399,57 +240770,50 @@ longdesc two-column document. If the page is "simple" (no footnotes, longdesc floats, or marginpars), is uses the balance package; otherwise, longdesc it uses \enlargethispage to make the left column shorter, longdesc balancing the columns. -containersize 5724 -containerchecksum 7db75e950aca473dffc3d3efb419bbe33b5f04d1a0295a73de3d7385883d576f46bf377554ffaef44608cc8c6df3f3594bd0a0e5ed7ca649c7ced5c5834192db -doccontainersize 241320 -doccontainerchecksum 98828ffca4f1e4dab5b51e45028058cff1af38cedb05f1b0a201bff1ddb508374da6fb0d77ff4d14bdef6ec04a468435dd9870ce0f1e34685fb982f21c982e79 -docfiles size=61 +containersize 7004 +containerchecksum 15d9a54d38158e1c3b48dc9d420b081efd011fc282775e68e83f758be4c3d1c40efdcca57f4ab29a9d206b09457afec0ca7bb0580e4bd337e0814a04d814b423 +doccontainersize 48960 +doccontainerchecksum 1e0f25b42dc5928269cbb2aa56ebb7b1bf4cc58ffac0c36db6bc8ada8c7cd09641a95b4daf5f248a9156cb3d95d3c3ef48a5410f1eef6437ce4878e0113c6aac +docfiles size=15 RELOC/doc/latex/pbalance/LICENSE RELOC/doc/latex/pbalance/README.md details="Readme" RELOC/doc/latex/pbalance/pbalance.pdf details="Package documentation" -srccontainersize 11568 -srccontainerchecksum 21236f5d7cc9a64472d9f214777331d3b230773d134b0ed5a83d1a3dd21c2d4a76df78f42824012d4edaabfeab612684fa2577bac3bd4070ed2b5956d19272dd -srcfiles size=11 +srccontainersize 15960 +srccontainerchecksum 6489e6563c2f1265b841027b38720ccf55d2a9acd601e03a1173c2c6fe8de57bf1c7778239472d7265529a7c51bfe3f21c5dfd19f863b9b80ace3f6b68d211a1 +srcfiles size=17 RELOC/source/latex/pbalance/pbalance.dtx RELOC/source/latex/pbalance/pbalance.ins -runfiles size=6 +runfiles size=8 RELOC/tex/latex/pbalance/pbalance.sty catalogue-also flushend catalogue-contact-bugs https://gitlab.com/lago/pbalance/issues catalogue-contact-home https://gitlab.com/lago/pbalance catalogue-ctan /macros/latex/contrib/pbalance -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics multicol -catalogue-version 1.0.1 +catalogue-version 1.4.0 name pbibtex-base category Package -revision 40986 +revision 66085 shortdesc Bibliography styles and miscellaneous files for pBibTeX relocated 1 longdesc These are miscellaneous files, including bibliography styles longdesc (.bst), for pBibTeX, which is a Japanese extended version of longdesc BibTeX contained in TeX Live. The bundle is a redistribution longdesc derived from the ptex-texmf distribution by ASCII MEDIA WORKS. -containersize 14712 -containerchecksum 4c807466ddae93f7b12a62fb32b4a8a8dcdf16eb8935548aaeeccaa90de15484e396f307f229cab8a2980212aa7627e80047502a067847114ca7ff6a9ae22c3b -doccontainersize 846572 -doccontainerchecksum a87c2feac2b0a115ccec0ced7ed9b5215c8b7501020a4ca14fea9a5062bc0994fa31c892c1a738c582118b73ff4df5aba371abaef76d3c15a00d5268bef85031 -docfiles size=256 +containersize 14824 +containerchecksum 6be03a9f18741e16104d620effc7c0669e12ccde1aaa7d4332ada2fee95ceb1a6b30db4df41386995367b565b437174c0d4cae6e330c8181ee47095fb9bd5a5d +doccontainersize 28024 +doccontainerchecksum 69a7e564464d8b1c31474ca37b5e9fadeb4c2d4f4d25dad5f884317b226c6b7f8f467cd1809e1330cb64fe2006f1ab397cf4f163e469a14fb8de5b778dc70c08 +docfiles size=33 RELOC/doc/ptex/pbibtex/LICENSE RELOC/doc/ptex/pbibtex/README.md details="Readme" - RELOC/doc/ptex/pbibtex/README_original RELOC/doc/ptex/pbibtex/cpp.awk RELOC/doc/ptex/pbibtex/generate.sh RELOC/doc/ptex/pbibtex/jbibtex.bib - RELOC/doc/ptex/pbibtex/jbibtex.pdf - RELOC/doc/ptex/pbibtex/jbibtex.tex RELOC/doc/ptex/pbibtex/jbtxbst.doc RELOC/doc/ptex/pbibtex/jbtxdoc.bib - RELOC/doc/ptex/pbibtex/jbtxdoc.pdf - RELOC/doc/ptex/pbibtex/jbtxdoc.tex - RELOC/doc/ptex/pbibtex/jbtxhak.pdf - RELOC/doc/ptex/pbibtex/jbtxhak.tex runfiles size=61 RELOC/pbibtex/bib/jxampl.bib RELOC/pbibtex/bst/jabbrv.bst @@ -236461,11 +240825,42 @@ runfiles size=61 RELOC/pbibtex/bst/junsrt.bst RELOC/pbibtex/bst/tieice.bst RELOC/pbibtex/bst/tipsj.bst +catalogue-also pbibtex-manual catalogue-contact-repository https://github.com/texjporg/pbibtex-base -catalogue-ctan /biblio/pbibtex/base +catalogue-ctan /biblio/pbibtex/pbibtex-base catalogue-license bsd3 catalogue-topics biblio japanese +name pbibtex-manual +category Package +revision 66181 +shortdesc Documentation files for (u)pBibTeX +relocated 1 +longdesc The bundle contains documentation files for Japanese pBibTeX +longdesc and upBibTeX. For historical reasons, this also contains old +longdesc documentation files for JBibTeX. +containersize 460 +containerchecksum ca4690e0ce37561dcb877d17310f498b5b528cf6892beb075b4ed87f1a4432957c2ac56ad29f66da1452794c587f2d9343fdf7715c670ac7c3f7880f620f698e +doccontainersize 995788 +doccontainerchecksum 152ac93c6e1bf07d90434581a8891f293527d4ff93f7d439e7e15c99d53b0cf43872c9f8a6935fe314614b9c3fe3cbe7bb3dfdbba486dc7248fffc60742f37a0 +docfiles size=279 + RELOC/doc/latex/pbibtex-manual/LICENSE + RELOC/doc/latex/pbibtex-manual/README.md details="Readme" + RELOC/doc/latex/pbibtex-manual/haranoaji.map + RELOC/doc/latex/pbibtex-manual/jbibtex.pdf + RELOC/doc/latex/pbibtex-manual/jbibtex.tex + RELOC/doc/latex/pbibtex-manual/jbtxdoc.pdf + RELOC/doc/latex/pbibtex-manual/jbtxdoc.tex + RELOC/doc/latex/pbibtex-manual/jbtxhak.pdf + RELOC/doc/latex/pbibtex-manual/jbtxhak.tex + RELOC/doc/latex/pbibtex-manual/pbibtex-manual.pdf details="The manual itself" + RELOC/doc/latex/pbibtex-manual/pbibtex-manual.tex +catalogue-also pbibtex-base +catalogue-contact-repository https://github.com/texjporg/pbibtex-manual +catalogue-ctan /biblio/pbibtex/pbibtex-manual +catalogue-license bsd3 +catalogue-topics biblio japanese japanese-doc + name pbox category Package revision 24807 @@ -236691,15 +241086,6 @@ containerchecksum 0b9c18b379ada38170eae2834fa7712cdddcfe645342cc126efa71fb46385b binfiles arch=armhf-linux size=1 bin/armhf-linux/pdfbook2 -name pdfbook2.i386-cygwin -category Package -revision 37537 -shortdesc i386-cygwin files of pdfbook2 -containersize 336 -containerchecksum 9ad408f5b5a8ec63031bee8d0622f61362b5f3a7376273f9761f29d4be435bc476d0b5515d4d45808d66d43a55d32809f3be8625cf9e02aa23decee40031a6d4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdfbook2 - name pdfbook2.i386-freebsd category Package revision 37537 @@ -236790,6 +241176,63 @@ containerchecksum b27dca5a62f5062f1c278fda6d3a76aef40228ae92c0da11e4c6f6aad6c4ad binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/pdfbook2 +name pdfcol +category Package +revision 64469 +shortdesc Macros for maintaining colour stacks under pdfTeX +relocated 1 +longdesc Since version 1.40 pdfTeX supports colour stacks. The driver +longdesc file pdftex.def for package color defines and uses a main +longdesc colour stack since version v0.04b. This package is intended for +longdesc package writers. It defines macros for setting and maintaining +longdesc new colour stacks. +containersize 2780 +containerchecksum c9d9350a68513b9c7fd1d99138cf93aad74b76ebac4e5a55de483501bc5a6ac42a366e60e15a6d7e81149355dd6ea87b968bb070e05f04848e4a167422f645c1 +doccontainersize 317332 +doccontainerchecksum d2b5b5e1681092d024e0e0d47d3252e915cd3456b9bd27e1d2b871688ff2d805b385d864088e8a9ec665d7a0b495811b3ba6e8237363448d378072ac0c12072d +docfiles size=81 + RELOC/doc/latex/pdfcol/README.md details="Readme" + RELOC/doc/latex/pdfcol/pdfcol.pdf details="Package documentation" +srccontainersize 6448 +srccontainerchecksum fed939659d5d9223e184f3a47a681b298bd6d076ab807eb164082d273da35a16126bd4b0b3c647c0a40d23abfa2974bd566aaaaa4f5d7864022e2c769870be3d +srcfiles size=6 + RELOC/source/latex/pdfcol/pdfcol.dtx +runfiles size=2 + RELOC/tex/latex/pdfcol/pdfcol.sty +catalogue-contact-bugs https://github.com/ho-tex/pdfcol/issues +catalogue-contact-repository https://github.com/ho-tex/pdfcol +catalogue-ctan /macros/latex/contrib/pdfcol +catalogue-license lppl1.3c +catalogue-topics colour +catalogue-version 1.7 + +name pdfcolfoot +category Package +revision 65512 +shortdesc Separate color stack for footnotes with pdfTeX +relocated 1 +longdesc Since version 1.40 pdfTeX supports several colour stacks. This +longdesc package uses a separate colour stack for footnotes that can +longdesc break across pages. The package is part of the oberdiek bundle. +containersize 1968 +containerchecksum 40db84311e460e79e6627bb3692afa56abe6c0f335f054955fa4f75c11b4c2a4f65c9c77ca225e1ceb37b3dae6727f27ee4b6e27a155eb1fdf9b053693490537 +doccontainersize 310520 +doccontainerchecksum afd7cfdef3e0290360251ff1de1fee17053229d89dc88e2275a3b94df8a9b5235ba462cb66eb741e541e8d59a9d0eece345c521c87f33fa5fa99e5d69d139ac5 +docfiles size=80 + RELOC/doc/latex/pdfcolfoot/README.md + RELOC/doc/latex/pdfcolfoot/pdfcolfoot.pdf details="Package documentation" +srccontainersize 5488 +srccontainerchecksum e857b9d671a5be1737ea4d3a002aa89d6155aa6e89fbd336ee77189fc61a85b8a3713a631efa8078894261748d39ad029e2ac40a91ac1b97ba4b82f6fc054b3a +srcfiles size=5 + RELOC/source/latex/pdfcolfoot/pdfcolfoot.dtx +runfiles size=2 + RELOC/tex/latex/pdfcolfoot/pdfcolfoot.sty +catalogue-contact-bugs https://github.com/ho-tex/pdfcolfoot/issues +catalogue-ctan /macros/latex/contrib/pdfcolfoot +catalogue-license lppl1.3 +catalogue-topics footnote colour +catalogue-version 1.4 + name pdfcolmk category Package revision 52912 @@ -236975,16 +241418,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/pdfcrop bin/armhf-linux/rpdfcrop -name pdfcrop.i386-cygwin -category Package -revision 14431 -shortdesc i386-cygwin files of pdfcrop -containersize 360 -containerchecksum 3fabf0870bf8760a60ed6a3a0e0b43300640b3833340942f16ec962f28e7f8b81f3ef2dd9b4ce49bb1f7a3028f0ecf07db6ef9ce43ceacfc1606e5a79a0de1d6 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/pdfcrop - bin/i386-cygwin/rpdfcrop - name pdfcrop.i386-freebsd category Package revision 16472 @@ -237035,15 +241468,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/pdfcrop bin/universal-darwin/rpdfcrop -name pdfcrop.win32 +name pdfcrop.windows category Package -revision 17231 -shortdesc win32 files of pdfcrop -containersize 708 -containerchecksum a1aca9ab4bb36bffa237fef187f43424b12e22542b57c7056d1c62c3187103b995ca28d25072491f714ba64ba80e3df0ace58c53f5e66138cd24f8ded4b5d458 -binfiles arch=win32 size=2 - bin/win32/pdfcrop.exe - bin/win32/rpdfcrop.exe +revision 65891 +shortdesc windows files of pdfcrop +containersize 2352 +containerchecksum ff1458fa232ca3fd1dd077db9d4b2ce05556dbb2da1ece6f8f94680beff1424db3ed6e5cee1c3069cc8b247635da4aa05fdeab5c713f822d0f3556d5c6e8787c +binfiles arch=windows size=4 + bin/windows/pdfcrop.exe + bin/windows/rpdfcrop.exe name pdfcrop.x86_64-cygwin category Package @@ -237123,6 +241556,42 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version 1.15 +name pdfextra +category Package +revision 65184 +shortdesc Extra PDF features for (Op)TeX +relocated 1 +longdesc This package provides extra PDF features for OpTeX (or in +longdesc limited form for plain LuaTeX and LuaLaTeX). As a minimalistic +longdesc format, OpTeX does not support "advanced" features of the PDF +longdesc file format in its base. This third party package aims to +longdesc provide them. Summary of supported features: insertion of +longdesc multimedia (audio, video, 3D), hyperlinks and other actions, +longdesc triggering events, transitions, attachments. +containersize 25512 +containerchecksum 84a84fe75512fce734c9c6ad3eb2b44091ed07ab69e202b64d0d86f143166a4ab511350120b75a8f71f5c88b8d9b175fde9b5621bea23aa5017e28f0c5c2e2f5 +doccontainersize 629000 +doccontainerchecksum 644bc2b11ae5a538172eccd92e64bfa60b6fb3d5463e3fd897f46086dd84c9bf098d91565b2d88b24d5c481bfc7595f999a7b4a78c8bf74b130fe243abc9f2c4 +docfiles size=183 + RELOC/doc/optex/pdfextra/LICENSE + RELOC/doc/optex/pdfextra/README.md details="Readme" + RELOC/doc/optex/pdfextra/examples/pdfextra-example-latex.tex + RELOC/doc/optex/pdfextra/examples/pdfextra-example-part.prc + RELOC/doc/optex/pdfextra/examples/pdfextra-example.pdf details="Example of use" + RELOC/doc/optex/pdfextra/examples/pdfextra-example.tex + RELOC/doc/optex/pdfextra/pdfextra-doc.pdf details="Package documentation" + RELOC/doc/optex/pdfextra/pdfextra-doc.tex +runfiles size=21 + RELOC/tex/luatex/pdfextra/pdfextra.sty + RELOC/tex/luatex/pdfextra/pdfextra.tex + RELOC/tex/optex/pdfextra/pdfextra.opm +catalogue-contact-bugs https://github.com/vlasakm/pdfextra/issues +catalogue-contact-repository https://github.com/vlasakm/pdfextra +catalogue-ctan /macros/luatex/generic/pdfextra +catalogue-license other-free +catalogue-topics pdf-feat +catalogue-version 0.3 + name pdfjam category Package revision 56991 @@ -237192,15 +241661,6 @@ containerchecksum b2a838a10a0b58798f54cd64f51349af62398737ac82ebe8bf3392ad5c3845 binfiles arch=armhf-linux size=1 bin/armhf-linux/pdfjam -name pdfjam.i386-cygwin -category Package -revision 52858 -shortdesc i386-cygwin files of pdfjam -containersize 336 -containerchecksum 916b1e9075c792018d4868f33ea516b6d3736cbfe8edc13e5efefc3ed2f14822930be6c49821c3e33276823ce6ac01621bfe29c4288a528a9aaf4b223dfac301 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdfjam - name pdfjam.i386-freebsd category Package revision 52858 @@ -237350,15 +241810,6 @@ containerchecksum 9323944d6f1b5b6b00725aa2ed7fdf68e5c960bbc9db4d62f57aaee84a7e92 binfiles arch=armhf-linux size=1 bin/armhf-linux/pdflatexpicscale -name pdflatexpicscale.i386-cygwin -category Package -revision 41779 -shortdesc i386-cygwin files of pdflatexpicscale -containersize 344 -containerchecksum 8c64d5e08941d4e6affa0e7ce64b96106ac68b515108a5aa81b501921c48b468fbefb32815d3253c8cb9d0890dcd0b3496f371e5f885c35e7eca5c85b01fdbab -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdflatexpicscale - name pdflatexpicscale.i386-freebsd category Package revision 41779 @@ -237404,14 +241855,14 @@ containerchecksum 8bbfee991bf300d9a673f479894a85a1a57687a50a24b533ceb6eaa30c8b57 binfiles arch=universal-darwin size=1 bin/universal-darwin/pdflatexpicscale -name pdflatexpicscale.win32 +name pdflatexpicscale.windows category Package -revision 41779 -shortdesc win32 files of pdflatexpicscale -containersize 696 -containerchecksum bce67378b5a28b599a3bb064d4a495e919d5959833d317937b55b9b917093eaf046ebb41acb5c4b5cd6f49f6a94f400b89b686e33ee3f31e62bba006af69edc8 -binfiles arch=win32 size=1 - bin/win32/pdflatexpicscale.exe +revision 65891 +shortdesc windows files of pdflatexpicscale +containersize 2316 +containerchecksum 72cdc7c37b6cf88ddc971e6d0c19a5fd5f39f90db7fa9ecbaa3383fdacbe41265280dda40ffaf89fe956da0a0ed51679920eec1f7810b10f4f4f8f150b4bd443 +binfiles arch=windows size=2 + bin/windows/pdflatexpicscale.exe name pdflatexpicscale.x86_64-cygwin category Package @@ -237460,60 +241911,67 @@ binfiles arch=x86_64-solaris size=1 name pdflscape category Package -revision 53047 +revision 64851 shortdesc Make landscape pages display as landscape relocated 1 longdesc The package adds PDF support to the landscape environment of longdesc package lscape, by setting the PDF /Rotate page attribute. longdesc Pages with this attribute will be displayed in landscape longdesc orientation by conforming PDF viewers. -containersize 2252 -containerchecksum c343f0527f21421f26396a6210f7932786a222a437b43d6b2bf1c53339633a0aa8337843222d92048a6a5a41f0952aa2fde6e2bfb2e181cf811383a23ffadadb -doccontainersize 298264 -doccontainerchecksum 5fccb7dc5607f1196d6df6a1a68d010c0b9eea10854cdf2e133f31dc4095f101efc05abcf9e980a3e05375ba29ce319dc13385790c2261778fde54d3b94d1251 -docfiles size=75 - RELOC/doc/latex/pdflscape/README.md +containersize 2612 +containerchecksum 13c581f774e61de70e97b40c54a59054b9ab0a9fd6e1b71d94fc5d0e072aa96661d8b72bc99c083b322df974f75b2f415a6fcd8bc23f95d2d999a03ffc0a3188 +doccontainersize 314616 +doccontainerchecksum c59c598fa494e5a57d2ba058dd6d096edc96aa958bec7ea1240195022b670f0cfc45d15eea0d0b68b499975811505a6fe9a209c7630c74c861fc42ce3904284d +docfiles size=80 + RELOC/doc/latex/pdflscape/README.md details="Readme" RELOC/doc/latex/pdflscape/pdflscape.pdf details="Package documentation" -srccontainersize 6000 -srccontainerchecksum 08cc0550cb76eff49ab4cc9f357f22a7c8086b2802eb191237bbf79acce2b134a2bf3ea28a8324d0140ac785afb8a928a8f7b8cc7e58bdd7e9d8b1d3a66ee7e5 +srccontainersize 6508 +srccontainerchecksum f844e74588ae5982f1122d9826caa8a93c229d2169813a074537053e0a8387c3917b110ec1653fdddb31513124b4f6974a2e3ba4e96f714a57a03155646bf115 srcfiles size=6 RELOC/source/latex/pdflscape/pdflscape.dtx -runfiles size=2 +runfiles size=3 + RELOC/tex/latex/pdflscape/pdflscape-nometadata.sty RELOC/tex/latex/pdflscape/pdflscape.sty catalogue-also lscape catalogue-contact-bugs https://github.com/ho-tex/pdflscape/issues catalogue-contact-repository https://github.com/ho-tex/pdflscape catalogue-ctan /macros/latex/contrib/pdflscape -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics landscape layout -catalogue-version 0.12 +catalogue-version 0.13 name pdfmanagement-testphase category Package -revision 58511 +revision 66532 shortdesc LaTeX PDF management testphase bundle relocated 1 longdesc This is a temporary package, which is used during a test phase longdesc to load the new PDF management code of LaTeX. The new PDF -longdesc management code offers backend independant interfaces to +longdesc management code offers backend-independent interfaces to longdesc central PDF dictionaries, tools to create annotations, form longdesc Xobjects, to embed files, and to handle PDF standards. The code -longdesc is provided during a testphase as independant package to allow -longdesc users and package authors to safely test the code. At a later -longdesc stage it will be integrated into the LaTeX kernel (or in parts -longdesc into permanent support packages), and the current testphase -longdesc bundle will be removed. -containersize 40512 -containerchecksum fa4a79e078e2aa29862db99a336a614387df52a019d0a42b6bbf4ff8d222bf44a16577d3d491ca0f3c8527a0dfd1bab1839db891092dd0a8f3480744fba2fcba -doccontainersize 5755264 -doccontainerchecksum 03503b2f0e4390bcde34266610fa822c192fac1cf5c800edc2ad77c1b925a964e9564d12fe9104f675b243bb757a96a355aac26b0cd95ff701210b3afca2d15f -docfiles size=1797 +longdesc is provided, during a testphase, as an independent package to +longdesc allow users and package authors to safely test the code. At a +longdesc later stage it will be integrated into the LaTeX kernel (or in +longdesc parts into permanent support packages), and the current +longdesc testphase bundle will be removed. +containersize 53632 +containerchecksum c910a10748f1c042b3aa376cfe4d97348cb1c2b586975acb51005bc1ac5696a3294feca4e1d4fff779d6f7fdec631db6db60f50fe33df196043a5984090bb9de +doccontainersize 8714544 +doccontainerchecksum 77a6f851c304fa580cec473472b9c1f0ca11905d630ddb1940c5482008aa4f3cf8c3fcae3f4e08a9dbe75a54b3d9dbe8c58b577c153d08cfe935fae085df9174 +docfiles size=2869 RELOC/doc/latex/pdfmanagement-testphase/CHANGELOG.md RELOC/doc/latex/pdfmanagement-testphase/README.md details="Readme" RELOC/doc/latex/pdfmanagement-testphase/hyperref-generic.pdf RELOC/doc/latex/pdfmanagement-testphase/l3backend-testphase.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdfannot.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdfdict.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-action.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-checkbox.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-choice.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-pushbutton.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-radiobutton.pdf + RELOC/doc/latex/pdfmanagement-testphase/l3pdffield-textfield.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdffield.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdffile.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdfmanagement.pdf @@ -237521,15 +241979,22 @@ docfiles size=1797 RELOC/doc/latex/pdfmanagement-testphase/l3pdftools.pdf RELOC/doc/latex/pdfmanagement-testphase/l3pdfxform.pdf RELOC/doc/latex/pdfmanagement-testphase/ltdocinit.pdf + RELOC/doc/latex/pdfmanagement-testphase/output-patches-tmp-ltx.pdf RELOC/doc/latex/pdfmanagement-testphase/pdfmanagement-firstaid.pdf RELOC/doc/latex/pdfmanagement-testphase/pdfmanagement-testphase.pdf details="Package documentation" -srccontainersize 92976 -srccontainerchecksum 8bf95f64fdee7517af5f3c312c32f1c705d9b2348cae1ec44c76855b7729641509e6f89192a5d415357fbcae794178767fcfa5eca72e0d688246a6a5c5ca03e8 -srcfiles size=124 +srccontainersize 137436 +srccontainerchecksum 0cea96a15bd84b8ca3687e3f2f1396fe8e5d774ad991f2f2d07b7526b0a5f0eb60f42b0f694a95fcfd77c2a85bf5786cac9e7991817e22006af3115299987941 +srcfiles size=199 RELOC/source/latex/pdfmanagement-testphase/hyperref-generic.dtx RELOC/source/latex/pdfmanagement-testphase/l3backend-testphase.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdfannot.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdfdict.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-action.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-checkbox.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-choice.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-pushbutton.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-radiobutton.dtx + RELOC/source/latex/pdfmanagement-testphase/l3pdffield-textfield.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdffield.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdffile.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdfmanagement.dtx @@ -237537,14 +242002,15 @@ srcfiles size=124 RELOC/source/latex/pdfmanagement-testphase/l3pdftools.dtx RELOC/source/latex/pdfmanagement-testphase/l3pdfxform.dtx RELOC/source/latex/pdfmanagement-testphase/ltdocinit.dtx + RELOC/source/latex/pdfmanagement-testphase/output-patches-tmp-ltx.dtx RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-firstaid.dtx RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.dtx RELOC/source/latex/pdfmanagement-testphase/pdfmanagement-testphase.ins -runfiles size=78 +runfiles size=105 RELOC/tex/latex/pdfmanagement-testphase/color-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/colorspace-patches-tmp-ltx.sty RELOC/tex/latex/pdfmanagement-testphase/hgeneric-testphase.def RELOC/tex/latex/pdfmanagement-testphase/hyperref-colorschemes.def - RELOC/tex/latex/pdfmanagement-testphase/hyperxmp-patches-tmp-ltx.sty RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvipdfmx.def RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvips.def RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase-dvisvgm.def @@ -237554,18 +242020,17 @@ runfiles size=78 RELOC/tex/latex/pdfmanagement-testphase/l3backend-testphase.lua RELOC/tex/latex/pdfmanagement-testphase/l3pdffield-testphase.sty RELOC/tex/latex/pdfmanagement-testphase/l3ref-tmp.sty - RELOC/tex/latex/pdfmanagement-testphase/pdflscape-ltx.sty + RELOC/tex/latex/pdfmanagement-testphase/output-patches-tmp-ltx.sty RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-firstaid.sty RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-testphase.ltx RELOC/tex/latex/pdfmanagement-testphase/pdfmanagement-testphase.sty - RELOC/tex/latex/pdfmanagement-testphase/transparent-ltx.sty RELOC/tex/latex/pdfmanagement-testphase/xcolor-patches-tmp-ltx.sty catalogue-contact-bugs https://github.com/latex3/pdfresources/issues catalogue-contact-repository https://github.com/latex3/pdfresources catalogue-ctan /macros/latex/contrib/pdfmanagement-testphase catalogue-license lppl1.3c catalogue-topics latex-devel pdf-feat -catalogue-version 0.95c +catalogue-version 0.95x name pdfmarginpar category Package @@ -237601,9 +242066,35 @@ catalogue-license gpl catalogue-topics pdf-feat catalogue-version 0.92 +name pdfmsym +category Package +revision 65324 +shortdesc PDF Math Symbols -- various drawn mathematical symbols +relocated 1 +longdesc This package defines a handful of mathematical symbols many of +longdesc which are implemented via PDF's builtin drawing utility. It is +longdesc intended for use with pdfTeX and LuaTeX and is supported by +longdesc XeTeX to a lesser extent. Among the symbols it defines are some +longdesc variants of commonly used ones, as well as more obscure symbols +longdesc which cannot be as easily found in other TeX or LaTeX packages. +containersize 5660 +containerchecksum b0cbce8135522af3d0cb1087c2ec4522f58f1afc70a27d957d9d54d1da5890cc89a6593504f5b4b2ae4c4431d0d914b8ed59bd04938e0efbf16fef5af7ff96ec +doccontainersize 222104 +doccontainerchecksum 31135f5ce4e37916e1bf5ab31864953c0b1988a437d767cfbb52925a8cc38195e1d46f7f45fa0c62a07d87df31f6ccdf2d584df7f5082f1061be998a1e9d16b2 +docfiles size=62 + RELOC/doc/generic/pdfmsym/README.md details="Readme" + RELOC/doc/generic/pdfmsym/pdfmsym-doc.pdf details="Package documentation" + RELOC/doc/generic/pdfmsym/pdfmsym-doc.tex +runfiles size=7 + RELOC/tex/generic/pdfmsym/pdfmsym.tex +catalogue-ctan /macros/generic/pdfmsym +catalogue-license mit +catalogue-topics maths-symbol graphics-symb macro-gen +catalogue-version 1.1.0 + name pdfoverlay category Package -revision 57923 +revision 64210 shortdesc A LaTeX style for overlaying text on a PDF relocated 1 longdesc It is often desirable to take an exisiting PDF and easily add @@ -237619,15 +242110,15 @@ longdesc overlayed text can be set as normal flowing from one page to longdesc another or with manual page breaks if you wish. It is also longdesc possible to use any standard method to position text at longdesc arbitrary places on a given page. -containersize 3000 -containerchecksum abb74e43656273b8b7944ced516239ce7fb33ca57daf137d1576dc3c5d013982a10f26e0196669f821412a58dd2da36411ef1fa8e81e4e61103ae583ebec0494 -doccontainersize 547476 -doccontainerchecksum 2fc549ab29625cbc2876655d6414dbbf211ce935ed9e676561c40c96045822aa128d7d55f0431ca059e3f37ae6d8e68984652381f31809dcba378c85c6f15b54 -docfiles size=135 +containersize 3008 +containerchecksum e167d180f13a5d15684072f2b9df8521e5c2dd89ee1eb6d515d6a73452508c083ab3b188fa856b571a0d41c0d490b65705631c236e677b4c58bcb0505c310cc2 +doccontainersize 565420 +doccontainerchecksum c77f221b34d01653995bb15ea7c05c13089d99a5d213b4f991fd09ef96dd8ac9a12e9b58f39b8216b1421d84204ffff8413694f4cbfe571a7225930a7c3b244e +docfiles size=143 RELOC/doc/latex/pdfoverlay/README.md details="Readme" RELOC/doc/latex/pdfoverlay/pdfoverlay.pdf details="Package documentation" -srccontainersize 5852 -srccontainerchecksum d89a4cad67a338ecab1c413c36a451018d7ad86452a470c437a91f023019c78392403da4f4c57c199a4487b6011c8b43b5f51607a6a24014b7cd4eab2e063fc2 +srccontainersize 5900 +srccontainerchecksum 4b4b18a150e6de4d4e40daacb06faffe0b838dafe619ccc065f88777cda32b765939bc38d9e72fcd7ab9be49063e26c42b6590a9a5905d541e3fb3c1e1bea8b8 srcfiles size=7 RELOC/source/latex/pdfoverlay/pdfoverlay.dtx RELOC/source/latex/pdfoverlay/pdfoverlay.ins @@ -237637,8 +242128,8 @@ catalogue-contact-bugs https://github.com/dcpurton/pdfoverlay/issues catalogue-contact-repository https://github.com/dcpurton/pdfoverlay catalogue-ctan /macros/latex/contrib/pdfoverlay catalogue-license lppl1.3c -catalogue-topics graphics-incl -catalogue-version 1.2a +catalogue-topics graphics-incl expl3 +catalogue-version 1.3 name pdfpagediff category Package @@ -237673,7 +242164,7 @@ catalogue-version 1.4 name pdfpages category Package -revision 58212 +revision 65319 shortdesc Include PDF documents in LaTeX relocated 1 longdesc This package simplifies the inclusion of external multi-page @@ -237688,19 +242179,19 @@ depend eso-pic depend graphics depend oberdiek depend tools -containersize 14020 -containerchecksum a2b9394389ef8a14f6e82b4b62e33fa1cc18c2f7c1069109afdec8ad5769b4869c10b8cc50118aaaa6af87b08150979744cd16898804bac40daa043e49d36aa9 -doccontainersize 320504 -doccontainerchecksum b71da54d15d16ea74e72e09a46403d545e32c8e0fd44abf2b3bb7dff7ed1cc51c93bfacaa482037adb2b0010b060366836c25e66def3144ed504bb6623629f80 -docfiles size=89 +containersize 14080 +containerchecksum c29f811574dde6dcd717255d40df7234d0916d6e7e4fe4c25e62639123bcdf4464e3e285c335c11bf2a289e8ca6391278611a0073fbd3ac8a071790717b2778a +doccontainersize 323072 +doccontainerchecksum d91c5ae383beb5b4d16d69d09124c1e9598d3abebecc5d1f63319a90c8784c361fda0bc68626db752c8b9a3dc3f6b691a1be6d6ed7d16169278228f68b876b2e +docfiles size=90 RELOC/doc/latex/pdfpages/dummy-l.pdf RELOC/doc/latex/pdfpages/dummy.pdf RELOC/doc/latex/pdfpages/pdf-ex.tex RELOC/doc/latex/pdfpages/pdf-hyp.tex RELOC/doc/latex/pdfpages/pdf-toc.tex RELOC/doc/latex/pdfpages/pdfpages.pdf details="Package documentation" -srccontainersize 35164 -srccontainerchecksum 979c80e7590d9d1b40d667a69da2e2311ecc814575189d8411f13a1095ca3f09dc5ac97a40d4eea2d6a22616d1312c3e4aca45777610f365d24ef97b9acffd50 +srccontainersize 35440 +srccontainerchecksum 869945d91d96e3a7936515a84bc4cfaad96193bb198a0a4db88300d1bfcf61ac971c6144820fcdb52045f4fa3511af8ec4045f999bbf8ef07d869d43e68dbee2 srcfiles size=46 RELOC/source/latex/pdfpages/README RELOC/source/latex/pdfpages/pdfpages.dtx @@ -237717,22 +242208,22 @@ runfiles size=25 catalogue-ctan /macros/latex/contrib/pdfpages catalogue-license lppl1.3c catalogue-topics graphics-incl pdf-feat -catalogue-version 0.5t +catalogue-version 0.5x name pdfpc category Package -revision 57735 +revision 63866 shortdesc Define data for the pdfpc presentation viewer relocated 1 longdesc This packages allows to define additional meta data within the longdesc PDF file which can be interpreted by the PDF presenter console longdesc (pdfpc) program. pdfpc depends on kvoptions, xstring, iftex, longdesc and hyperxmp. -containersize 2252 -containerchecksum d6999d1240945d2813e189f836b102a4ead5b1ccfd469be794a0bbc9ec6c65573783b9409f8a1ab352f2742e435051d2ea0ecdd6814adc629da525a89e831e2e -doccontainersize 175708 -doccontainerchecksum d8fc1f2ac7c4e6279ecb1515d845e29dde39bae7166f44785064d7f7686e8775ef69e82480c42fc68a8d6cc92b9ad7deac3bd236fdbf57a93596e5e99835a068 -docfiles size=46 +containersize 2272 +containerchecksum 059558ba3c3ce0ec378960b3801fc9830397a15078b7976fdf34fa5ea62969d74f0e05237d88600d01629343e7400e5a67ef6dc49cadc7dc6191dc273d198ed6 +doccontainersize 187648 +doccontainerchecksum c029ce76687144f7351438f3ac34a7ecfe042923c389983aded1a80b8c5e7ae1c1b408c49adc4b543610e2190bd02f32e36c376b7a987dfdd298e98a10cfcb81 +docfiles size=50 RELOC/doc/latex/pdfpc/README.md details="Readme" RELOC/doc/latex/pdfpc/pdfpc-doc.pdf details="Package documentation" RELOC/doc/latex/pdfpc/pdfpc-doc.tex @@ -237743,7 +242234,7 @@ catalogue-contact-home https://pdfpc.github.io/ catalogue-ctan /macros/latex/contrib/pdfpc catalogue-license gpl3+ catalogue-topics presentation -catalogue-version 0.6.0 +catalogue-version 0.7.0 name pdfpc-movie category Package @@ -237973,7 +242464,7 @@ catalogue-topics debug-supp name pdftex category TLCore -revision 57973 +revision 66243 shortdesc A TeX extension for direct creation of PDF longdesc An extension of TeX which can directly generate PDF documents longdesc as well as DVI output. All current free TeX distributions @@ -237994,11 +242485,11 @@ execute AddFormat name=etex engine=pdftex patterns=language.def option execute AddFormat name=pdfetex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,etex,hyph-utf8,hyphen-base,knuth-lib,plain,tex-ini-files execute AddFormat name=pdftex engine=pdftex patterns=language.def options="-translate-file=cp227.tcx *pdfetex.ini" fmttriggers=cm,dehyph,etex,hyph-utf8,hyphen-base,knuth-lib,plain,tex-ini-files execute addMap dummy-space.map -containersize 36956 -containerchecksum 17c2b07af5e14f9f581d1094f4a3657ec1fe2b19fa96d952d1e4859265dc26e42743dc1fd7e8d6a7de56867be1b50a7071524d0580a8a680c605146893e7ff1b -doccontainersize 1629784 -doccontainerchecksum 8422210dceae381676a4c03784ab2c9b0e9233913eca6d25a9a7d5c5675f9ecb32f0a93dd624dbcc715f20d7e386a7844ea00e6e85473c1af14f8e384cd3f61e -docfiles size=754 +containersize 39548 +containerchecksum c0158cb19918ea2bba57cc68e32af1d2c4ef50ba45bf05e0c8b7e64057daee19843ff77633e4dd0ad660df39983c46f755c691f85d4aa2000086c02d48498d0e +doccontainersize 2094928 +doccontainerchecksum d059f01596573efacc4ca80333b07236f860375f49b82d0cd3ab6b3f441f379163a37c820e713a2d96a8f69b821b3dbd68f360c5b5f005dccac54575df4b5d4e +docfiles size=989 texmf-dist/doc/man/man1/pdfetex.1 texmf-dist/doc/man/man1/pdfetex.man1.pdf texmf-dist/doc/man/man1/pdftex.1 @@ -238016,7 +242507,9 @@ docfiles size=754 texmf-dist/doc/pdftex/manual/pdftex-w.tex texmf-dist/doc/pdftex/manual/syntaxform.awk texmf-dist/doc/pdftex/manual/syntaxform.pl + texmf-dist/doc/pdftex/samplepdftex/README texmf-dist/doc/pdftex/samplepdftex/cmr10.103 + texmf-dist/doc/pdftex/samplepdftex/efcode.tex texmf-dist/doc/pdftex/samplepdftex/obj.dat texmf-dist/doc/pdftex/samplepdftex/pdfcolor.tex texmf-dist/doc/pdftex/samplepdftex/pic.eps @@ -238025,12 +242518,13 @@ docfiles size=754 texmf-dist/doc/pdftex/samplepdftex/pic.pdf texmf-dist/doc/pdftex/samplepdftex/pic.png texmf-dist/doc/pdftex/samplepdftex/pic16.png + texmf-dist/doc/pdftex/samplepdftex/protcode.tex texmf-dist/doc/pdftex/samplepdftex/rgb.icc texmf-dist/doc/pdftex/samplepdftex/samplepdf.0 texmf-dist/doc/pdftex/samplepdftex/samplepdf.1 + texmf-dist/doc/pdftex/samplepdftex/samplepdf.mp + texmf-dist/doc/pdftex/samplepdftex/samplepdf.pdf texmf-dist/doc/pdftex/samplepdftex/samplepdf.tex details="Primitive usage examples" - texmf-dist/doc/pdftex/samplepdftex/supp-mis.tex - texmf-dist/doc/pdftex/samplepdftex/supp-pdf.tex texmf-dist/doc/pdftex/samplepdftex/tmp.pdf texmf-dist/doc/pdftex/tests/01-fake-interword-space/Makefile texmf-dist/doc/pdftex/tests/01-fake-interword-space/dummy-space.pfb @@ -238079,10 +242573,13 @@ docfiles size=754 texmf-dist/doc/pdftex/tests/12-pdf2/test-doc2incl2.tex texmf-dist/doc/pdftex/tests/12-pdf2/test-pdfmajor.tex texmf-dist/doc/pdftex/tests/Common.mak -runfiles size=65 +runfiles size=68 texmf-dist/fonts/map/dvips/dummy-space/dummy-space.map texmf-dist/fonts/tfm/public/pdftex/dummy-space.tfm + texmf-dist/fonts/tfm/public/pdftex/pdftexspace.tfm texmf-dist/fonts/type1/public/pdftex/dummy-space.pfb + texmf-dist/fonts/type1/public/pdftex/pdftexspace.pfb + texmf-dist/fonts/type1/public/pdftex/pdftexspace.ps texmf-dist/scripts/simpdftex/simpdftex texmf-dist/tex/generic/config/pdftex-dvi.tex texmf-dist/tex/generic/pdftex/glyphtounicode.tex @@ -238155,15 +242652,6 @@ containerchecksum 88f708d3ac6b65fbf326bbb35aafcdeffdb4e23a51ca40c2021daab86aec4d binfiles arch=armhf-linux size=1 bin/armhf-linux/pdftex-quiet -name pdftex-quiet.i386-cygwin -category Package -revision 49140 -shortdesc i386-cygwin files of pdftex-quiet -containersize 340 -containerchecksum 79b17685ba21a129399d0fed30092add08f56cba0011480053da9d8baa34c61f4ed9f95681c6663cb1514d1a202f8f62eaf04c00ac04b1edc5ff235a3dca8239 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdftex-quiet - name pdftex-quiet.i386-freebsd category Package revision 49140 @@ -238256,11 +242744,11 @@ binfiles arch=x86_64-solaris size=1 name pdftex.aarch64-linux category TLCore -revision 58534 +revision 66237 shortdesc aarch64-linux files of pdftex -containersize 826912 -containerchecksum a6351ac6088eb04919c2ecae958ef2c592267192309a576935d26d715fe177f0c08f906082b7ae716ca21509d0e6a00c3ab06299d87f7d0ee0575dea71067dab -binfiles arch=aarch64-linux size=658 +containersize 834104 +containerchecksum fe7d8aac8b48e44ca6a226bfedc8a894978a5f02cdace1c993f29ed8bb6537d389654fdefe4fd9a8051466a90b49f5cc08b22c2e3591fc0486f36db84c8feb8f +binfiles arch=aarch64-linux size=662 bin/aarch64-linux/etex bin/aarch64-linux/pdfetex bin/aarch64-linux/pdftex @@ -238268,11 +242756,11 @@ binfiles arch=aarch64-linux size=658 name pdftex.amd64-freebsd category TLCore -revision 58501 +revision 66084 shortdesc amd64-freebsd files of pdftex -containersize 916756 -containerchecksum 28e9a2a26decb63edf0f2ecac0f583eaf50a4845ab63cbbe2e81d5397fab910ff8a2d0ee60f48b2fa240e2bc320303bc5857cf5a94a9a954fb142edea3cdf6ac -binfiles arch=amd64-freebsd size=628 +containersize 937648 +containerchecksum 82033e2761c034d8bb628ee6a99ecc25e33a949980bc25456387dd6755705a21e6d70f66bf7d7721abc9c6fa122809f32016661587ef634c2537a0b10ca77199 +binfiles arch=amd64-freebsd size=635 bin/amd64-freebsd/etex bin/amd64-freebsd/pdfetex bin/amd64-freebsd/pdftex @@ -238280,11 +242768,11 @@ binfiles arch=amd64-freebsd size=628 name pdftex.amd64-netbsd category TLCore -revision 58497 +revision 66083 shortdesc amd64-netbsd files of pdftex -containersize 742684 -containerchecksum 27b24a2b33a5ed67380bf72a1ede18fa14636c902ad15727b4049d80107e890b70c43199da98b5b1be4b2ceac4e1a87b87e6b7d7169fd292e22adad3e0076358 -binfiles arch=amd64-netbsd size=688 +containersize 759920 +containerchecksum fe3ea35e0c9a2f950293af856b38017c22791c5d5c8cebea33dbbb03589e76b1dd023b6339b983f1330f266665f062e67bb0cb090b4614b7df629511fc43ed22 +binfiles arch=amd64-netbsd size=699 bin/amd64-netbsd/etex bin/amd64-netbsd/pdfetex bin/amd64-netbsd/pdftex @@ -238292,35 +242780,23 @@ binfiles arch=amd64-netbsd size=688 name pdftex.armhf-linux category TLCore -revision 58502 +revision 66237 shortdesc armhf-linux files of pdftex -containersize 681716 -containerchecksum 2d3169fce625a1ddf0d9d2bbd354c5e5a11a4b9a0ccc1f46d15161b974218dd75581cf2b47f599c0ec6736e7c0771a6fba3b019ad66298c952e641ca207518eb -binfiles arch=armhf-linux size=449 +containersize 683884 +containerchecksum 63a5df49f2d2fa717c94abf5121b8b466b2349611f3dfb05cb650bc37afe416a8252aaba620519fd1cc10081ff27fc451ba42d2222b27c0fafd90ddeb4a3d957 +binfiles arch=armhf-linux size=452 bin/armhf-linux/etex bin/armhf-linux/pdfetex bin/armhf-linux/pdftex bin/armhf-linux/simpdftex -name pdftex.i386-cygwin -category TLCore -revision 58498 -shortdesc i386-cygwin files of pdftex -containersize 774448 -containerchecksum a01784433444218112583b3a5e8b2ad3b535f527b0019c25f8d557165a77f7a10a75112ab2f7235964dbf479aadded8e36af413e34cf23254407b21bfa1a6ee3 -binfiles arch=i386-cygwin size=550 - bin/i386-cygwin/etex - bin/i386-cygwin/pdfetex - bin/i386-cygwin/pdftex.exe - bin/i386-cygwin/simpdftex - name pdftex.i386-freebsd category TLCore -revision 58501 +revision 66084 shortdesc i386-freebsd files of pdftex -containersize 781412 -containerchecksum 22ab647c94946530296f4d1ee98e8bc2816bcf2fab95e3e26be6972debb5d5840c7bf159e41cee3ca7fab680c38f87dcabcbd6a94e401c0d650bbd96eb67556d -binfiles arch=i386-freebsd size=553 +containersize 799096 +containerchecksum cf222d30b89d85a447cb1c79b132cc67158ebd17be9616660fe52fd3ff87cd4ea826eaf02bbe98e293e19b482bfe80fe58210b08b5bf2dd51f9560a25e96bcf9 +binfiles arch=i386-freebsd size=559 bin/i386-freebsd/etex bin/i386-freebsd/pdfetex bin/i386-freebsd/pdftex @@ -238328,11 +242804,11 @@ binfiles arch=i386-freebsd size=553 name pdftex.i386-linux category TLCore -revision 58535 +revision 66084 shortdesc i386-linux files of pdftex -containersize 838928 -containerchecksum 9e723bace10cf316a594d41d846b7db8d271e3cea2f2232eb870ad78db59a4b21504eea33051dfed5bab90be8c79ae8d89d003fdfe57da2b57a0805bc282cea0 -binfiles arch=i386-linux size=560 +containersize 854572 +containerchecksum 0636b770d26164ec46a59ed6d4687916f58590f617a55d8877388815c8f6bf946aacb109d0bb19046714da48d684e06790edf523d3976f5b7b111c0367c4fefc +binfiles arch=i386-linux size=569 bin/i386-linux/etex bin/i386-linux/pdfetex bin/i386-linux/pdftex @@ -238340,11 +242816,11 @@ binfiles arch=i386-linux size=560 name pdftex.i386-netbsd category TLCore -revision 58497 +revision 66083 shortdesc i386-netbsd files of pdftex -containersize 662584 -containerchecksum 897b880f6377274afcb0529ac75b9b5aeca97f3cb3daf110fb67c6c71a5d667275e4bbd47988fac57d03bd452fafdf13f9b37e2ad8a07dd06945b5e3a36bc581 -binfiles arch=i386-netbsd size=613 +containersize 669824 +containerchecksum 5191efc5a9ecba73488c1341b088a394f940865771a58521278a5b0faf49414b24d1415b40c3324441363b83fac18988407f9464aa102250de9a5920ff4431d9 +binfiles arch=i386-netbsd size=621 bin/i386-netbsd/etex bin/i386-netbsd/pdfetex bin/i386-netbsd/pdftex @@ -238352,11 +242828,11 @@ binfiles arch=i386-netbsd size=613 name pdftex.i386-solaris category TLCore -revision 58500 +revision 66145 shortdesc i386-solaris files of pdftex -containersize 837780 -containerchecksum a5be93a7b6186676a045cc02ac25c1c470828b1f993dc4fa2c1a23f61268a020b28574826b9c706b82b5e6449c93a9fadd40f19fce4c513b963ace9e02be393c -binfiles arch=i386-solaris size=557 +containersize 840676 +containerchecksum b8ddc786cb6ca20acf22a9b0bc9f1d5080879a9a78ce24cafc9ef781540327e599b63ff750381a4ed631cda347f6aaca21f3a2689e7c69396f054485e5f57c63 +binfiles arch=i386-solaris size=561 bin/i386-solaris/etex bin/i386-solaris/pdfetex bin/i386-solaris/pdftex @@ -238364,35 +242840,35 @@ binfiles arch=i386-solaris size=557 name pdftex.universal-darwin category TLCore -revision 58466 +revision 66107 shortdesc universal-darwin files of pdftex -containersize 1682500 -containerchecksum 451fc0091c745668d1cad697e457ba979b5d0290880a926992497c8905738f07694086fa13fc55d0f8ab176ecbd61eac8836fa01d3805363e2f92d9449b38946 -binfiles arch=universal-darwin size=1281 +containersize 1710900 +containerchecksum ff4085213984da2939a04d1f0ffc4e223975ddef8321399685030a3568ff45930f085241c4cdb840a697c167dc5dee30114d756a19dab0c99903caba38e4be12 +binfiles arch=universal-darwin size=1297 bin/universal-darwin/etex bin/universal-darwin/pdfetex bin/universal-darwin/pdftex bin/universal-darwin/simpdftex -name pdftex.win32 +name pdftex.windows category TLCore -revision 59028 -shortdesc win32 files of pdftex -containersize 709760 -containerchecksum d32a761c345f9f127a4e7f878f7d7d31dc4cb9b1173809c2ed4417cf5e9c91b97a8a1341df75229a62b780f2dcb2bc89e536cf38c974c35d0c6d399bff5c0af7 -binfiles arch=win32 size=459 - bin/win32/etex.exe - bin/win32/pdfetex.exe - bin/win32/pdftex.dll - bin/win32/pdftex.exe +revision 66043 +shortdesc windows files of pdftex +containersize 832252 +containerchecksum 767b43c8cd1947c768111a5019fde8f71b97837e03e47ee9f28ae177d2280729bccac0cabacffcb02048476dc5f70621af53105cf54761f4623ce6b14fd2c5c1 +binfiles arch=windows size=575 + bin/windows/etex.exe + bin/windows/pdfetex.exe + bin/windows/pdftex.dll + bin/windows/pdftex.exe name pdftex.x86_64-cygwin category TLCore -revision 58498 +revision 66544 shortdesc x86_64-cygwin files of pdftex -containersize 831968 -containerchecksum 02424e8ec52cfdc2f0e96243ce40496920ebf61881416e6430321a5fb4d24e1835a347b6246167a8dec6b03384bd9e7d0ec15efbed982f6fc1d3845b395cbd50 -binfiles arch=x86_64-cygwin size=551 +containersize 832376 +containerchecksum 3fd055a6331dae0280641ae4b00429f7aa4bb247191a733938b64b41bd467899168887663363cf19d66687cc5c5309bca2988f26aa34f67f48ccb19f964982b6 +binfiles arch=x86_64-cygwin size=556 bin/x86_64-cygwin/etex bin/x86_64-cygwin/pdfetex bin/x86_64-cygwin/pdftex.exe @@ -238400,11 +242876,11 @@ binfiles arch=x86_64-cygwin size=551 name pdftex.x86_64-darwinlegacy category TLCore -revision 58501 +revision 66084 shortdesc x86_64-darwinlegacy files of pdftex -containersize 774964 -containerchecksum 3ddc09225e7b53fc260949b0d8b4290944db3745d6e1a45f6dfebf1b1ff991fbc448760dc579ebcceb83efc998823880d92685563ca2dd71c421587e2b177d42 -binfiles arch=x86_64-darwinlegacy size=507 +containersize 781868 +containerchecksum eac9a1b947e8682c4ee844ccd7c555a83717f539e9c61999815198c120ddb706ad13d68b4999dae25286f55baa1bdc1ccb4855149e111f51d57348d820b7d5c3 +binfiles arch=x86_64-darwinlegacy size=510 bin/x86_64-darwinlegacy/etex bin/x86_64-darwinlegacy/pdfetex bin/x86_64-darwinlegacy/pdftex @@ -238412,11 +242888,11 @@ binfiles arch=x86_64-darwinlegacy size=507 name pdftex.x86_64-linux category TLCore -revision 58535 +revision 66084 shortdesc x86_64-linux files of pdftex -containersize 835652 -containerchecksum 8fabf26cce6bc0274743bc9230feb023c4b0b4aa00cd77423133385d43c0f72ccad46a0c91052921a0bca34541240397587576ad3bcb058565c59ea52606e84c -binfiles arch=x86_64-linux size=547 +containersize 855588 +containerchecksum b1f6b32704b31ea387d7df57570526e34b807fab42f1ce150146cfd48a98afeaa50c109f696befcae6fbb4b28c66eded5b2ff18187dd33fa4b6f206b238aaf85 +binfiles arch=x86_64-linux size=558 bin/x86_64-linux/etex bin/x86_64-linux/pdfetex bin/x86_64-linux/pdftex @@ -238424,10 +242900,10 @@ binfiles arch=x86_64-linux size=547 name pdftex.x86_64-linuxmusl category TLCore -revision 58535 +revision 66084 shortdesc x86_64-linuxmusl files of pdftex -containersize 888216 -containerchecksum 8134315cb608ad73e88a7fcea4c0c2bdd1d093f2e188a63f41f2d7fb4b32b5a6be71e4d411fb0cc563f00ff695da277ee56fac7c364872e56f6f3e02f53cc1d6 +containersize 901676 +containerchecksum 53885425277257a7824dd6933679fced19a5a24369478260efa771096249649eb63e9c697bac8146eb9ebeff06d20e02503c59fb781c1c3a156e8a0a040f0b6a binfiles arch=x86_64-linuxmusl size=648 bin/x86_64-linuxmusl/etex bin/x86_64-linuxmusl/pdfetex @@ -238436,11 +242912,11 @@ binfiles arch=x86_64-linuxmusl size=648 name pdftex.x86_64-solaris category TLCore -revision 58500 +revision 66145 shortdesc x86_64-solaris files of pdftex -containersize 917684 -containerchecksum 2dc49bc9afd1bf813d3d3a0fda2d4bdaaff182071810c78300b08a4e66f3f3102b3ba8bb495b0a842d7b96933a7f50fe4abc45c8b834bfeb8837cf559d126442 -binfiles arch=x86_64-solaris size=630 +containersize 925516 +containerchecksum 771e8c373e72c2c562a2602aa31aba39603e06e00f298cd2fa9e7b1709ff32afe3abfc3ebfdddb38aeb16c67b6875540111feaa1e48c7cf34a1ee636c1ea4ae6 +binfiles arch=x86_64-solaris size=635 bin/x86_64-solaris/etex bin/x86_64-solaris/pdfetex bin/x86_64-solaris/pdftex @@ -238479,162 +242955,153 @@ catalogue-version 0.33 name pdftosrc category TLCore -revision 57972 +revision 66186 shortdesc Extract source file or stream from PDF file longdesc Extracts an embedded source file, or extracts and uncompresses longdesc a PDF stream given by object number. Developed as part of the longdesc pdfTeX source tree. depend pdftosrc.ARCH -containersize 380 -containerchecksum 5332cc41dec6d5a7f4386d05368f21bae2aed20be6244873243fbd5e47a4ce257a64c4b1afe3be88c6d4745b655d61091e5efd6a86464bb6e20cab076ac32137 -doccontainersize 23884 -doccontainerchecksum 07836f31e216591fa76bccdfc0adb60914b9284ecbd9097a16fb92e5d31adba9a2a9558821d028ac71fc846a3f051fe64afc0c2b5fdeb91e08308c1fed39f5ab +containersize 384 +containerchecksum 8cb175ce464b0ec0bf74c39ddcf381daf9e27635098e775d929f5cdc60858d39cdbac1a4302446f9368a274ce4c3afda9636d882ef4097d2272d22e190d8d272 +doccontainersize 23892 +doccontainerchecksum 01598180f8eff2913eeebf5bc3d5f3aba32029286fc6e0c072aa8c0f4dabaf0c6e71ae7451ba9a7b65b4d0075a7f0a3baf345b02c5826eab64d74e39eb82798e docfiles size=9 texmf-dist/doc/man/man1/pdftosrc.1 texmf-dist/doc/man/man1/pdftosrc.man1.pdf name pdftosrc.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of pdftosrc -containersize 385492 -containerchecksum 8c0fb9b892e01a14f465f9499e38926a9327ef51ea0f6f988b06ed30dd2f7206808d7b480bff61aa2b9cd6fe1537b82b641ecd6b7c5bf108f6df1a2363e46889 -binfiles arch=aarch64-linux size=373 +containersize 389240 +containerchecksum 97cd0070821334f5fbab271ef95c37d2470ff22de496111111a5f4388d15b657ced0efd7c9b6e594ef03d9bb27769bd653d3c9e1cedc73cc4328e31854864e34 +binfiles arch=aarch64-linux size=375 bin/aarch64-linux/pdftosrc name pdftosrc.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of pdftosrc -containersize 369532 -containerchecksum de837fd38bda067fea34b48653496fc325d26090b5dbb1b713854904e9d79a9415ea1ab3812cf49b4a36a6b81c2150f5c620b6d33c723c66ec2ebdd74c8784fc -binfiles arch=amd64-freebsd size=291 +containersize 382848 +containerchecksum 8f4890dc685e8c364baef1f2c8f7d519b28c3bb67c745773f29dc6533283c037cdcb18b69f327eb5247a34c35d1e69aee1541db3919ea70e4a15f94a5981babb +binfiles arch=amd64-freebsd size=294 bin/amd64-freebsd/pdftosrc name pdftosrc.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of pdftosrc -containersize 344360 -containerchecksum 96e2257c9ad487c4210c374208c6a95430f13c560f8103f374a651e60f4034338eefbbd37433469c5ddab768dece686861ba6b0ba58d7beed4c184eb53edbbf8 -binfiles arch=amd64-netbsd size=367 +containersize 348328 +containerchecksum c3155beb460a628d3f0ce257f04c07d31015ab705d2e4e16f598283f57977d2d7e3268adee0e0dc45ce68c3970c5a7f5327bf0746a54da4d6097509c4584eae3 +binfiles arch=amd64-netbsd size=371 bin/amd64-netbsd/pdftosrc name pdftosrc.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of pdftosrc -containersize 304404 -containerchecksum 122a1353c86a68de41c1c8c77d5c1839c7f02fd46a57b54d16e47cd082c7758d790fb7e61d709c222b18fdfc4b68604999a95ed9e1193e58a85f0f863e7a06f9 -binfiles arch=armhf-linux size=229 +containersize 306820 +containerchecksum 9d5eac260ee61a764042732105111529992d5c753ff91add555f58d02fd8244dac4a6f043deea9b8a47e72a01cfdc0cb1279a445311ac8fa23db754d981931ee +binfiles arch=armhf-linux size=231 bin/armhf-linux/pdftosrc -name pdftosrc.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of pdftosrc -containersize 366852 -containerchecksum dff855c3f7871d1ddc4bc54cb952582e4cdc94d1736ca47792d8a16f1a6f2225e19d3ae4da9c56db73f59a3f4205e4cc7effb25d96ee8966e7f46bde57427222 -binfiles arch=i386-cygwin size=289 - bin/i386-cygwin/pdftosrc.exe - name pdftosrc.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of pdftosrc -containersize 346468 -containerchecksum 59ac7e04f613a7e6d1290c45f8a6759103fad8720571102025880181a1307e4891a56dbfb4d5310f0b67eab93ec17aabad64e5e3da32efe2ac937fc6daf15757 -binfiles arch=i386-freebsd size=250 +containersize 359376 +containerchecksum caf2250f931e56999177df604b33786894712afc096fd8672ad455d639e451bcb50e3c1a71e750ce6c2671a8b0af5144712e82529d54fbb69804db00018b51af +binfiles arch=i386-freebsd size=253 bin/i386-freebsd/pdftosrc name pdftosrc.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of pdftosrc -containersize 391928 -containerchecksum e067a651556f2319334aa1b9f5eb87b5896451eb47ca1fe2fe5ab24deab8b3f3ec70de2d6332bc5011283e96e9369f40a188f7293bc5742e46fa2a1b8ee86574 -binfiles arch=i386-linux size=283 +containersize 403024 +containerchecksum 216dfb20df6ba36dfa6b7698c660be13507c0b2c615670cf031402adb138a315ad83205f3158db7195b744aba1db1a60005dc4103db9f7cf464c300824324936 +binfiles arch=i386-linux size=290 bin/i386-linux/pdftosrc name pdftosrc.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of pdftosrc -containersize 329936 -containerchecksum 38baeae1b2704522162baae91b92e549df462ccfeae8e12c385aa4ed684531288525e6c68289d116c3224bd46aefff75ffbc07acba4ad36b77c425f0714eb380 -binfiles arch=i386-netbsd size=319 +containersize 333448 +containerchecksum 2469375fb14f7c2e2c7164202c7b8ff75f7dc672a61bc7190b62d656fce7984bf469dac56df07deb12b42a8387ddf530cab730b2c64a783ad2e606bd4e1a8c52 +binfiles arch=i386-netbsd size=324 bin/i386-netbsd/pdftosrc name pdftosrc.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of pdftosrc -containersize 419432 -containerchecksum 5618795a38c0844216bd001235c26d2afe0b799e253dc6d3fd13391ee8767dbf994d4468a8533d6cadc533430a87b4345e9f3f5ebe227b78e3886efc145c37f7 -binfiles arch=i386-solaris size=317 +containersize 423092 +containerchecksum b195978ca080ae64386010337e60459af67ba3c8d947128e24442874a96b9cd17fd6be65df40f64377b104cc21ea1f8ee112cf1a13cf83464af9b63ef9624587 +binfiles arch=i386-solaris size=319 bin/i386-solaris/pdftosrc name pdftosrc.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of pdftosrc -containersize 697228 -containerchecksum 2743ae81afe4083e6cb8f05036b9853e58377c6f0667081449bcadcf826e8a4d92352ee2481dbe7e695677ee05a934912e98cac891edc00c666923c8aab8f728 -binfiles arch=universal-darwin size=605 +containersize 707248 +containerchecksum 5be6f368bd8115978fe7045c9397c4c06be1d4ed406a5a8a96d0b75be1a77ca0c7071b584550c7e4979e0d85fb507ac1524365dd9ad8081d086dc47aadb6378b +binfiles arch=universal-darwin size=617 bin/universal-darwin/pdftosrc -name pdftosrc.win32 +name pdftosrc.windows category TLCore -revision 58783 -shortdesc win32 files of pdftosrc -containersize 320592 -containerchecksum 134cef4ae1321ad9f2584d55485c48af73db3bcfd9615455404e5860bab1d4f28bb7bda356dc7ca7368926b12adb966c665228caf24110337fd6dc3bb0e645b2 -binfiles arch=win32 size=235 - bin/win32/pdftosrc.exe +revision 65891 +shortdesc windows files of pdftosrc +containersize 364520 +containerchecksum 59b5f64aaabdc2acff2aeec10f6e1a40f980a660c968a8ab40c69f883e0911e98926a95965652699b6a3e6c60fd89dea62be819fab0f38a96cafb8bb44b4e63e +binfiles arch=windows size=307 + bin/windows/pdftosrc.exe name pdftosrc.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of pdftosrc -containersize 371500 -containerchecksum 26a2aff52fc646d6663780e4aa16cf35b51a8e9ee884936cb41a2ea20062c618c59e9228abd167dffbf45813ab921b6cc6147373e6c0956dfb3e80a4b7abff9b -binfiles arch=x86_64-cygwin size=290 +containersize 377832 +containerchecksum 78f0a0731af48039a9a9ab0c161e013a60697d2142cb577fbec52a974cc437cfbb26ebeb36ab8cd284db440685e157f3493d3d83a9a689c79ff1d3d991aae862 +binfiles arch=x86_64-cygwin size=297 bin/x86_64-cygwin/pdftosrc.exe name pdftosrc.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of pdftosrc -containersize 344496 -containerchecksum ef1ba776d5abd5c8a45861a5b8352a19479fbd5446264a18202733103d16de591ad096de8d84d9018fdc6f59953e1a99f06443974a320bc2dec5724b2cbabfea -binfiles arch=x86_64-darwinlegacy size=270 +containersize 347392 +containerchecksum eb1adeb2568bc63190369b64739b46026cb90591d3de1f736b61c8e7ff0fd25dc87249b64eb37e9cdea8c3af76b3e247cccdbb65befed4f3c2822a704d69603a +binfiles arch=x86_64-darwinlegacy size=271 bin/x86_64-darwinlegacy/pdftosrc name pdftosrc.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of pdftosrc -containersize 379844 -containerchecksum 494f855fdeeb1f7abd7c8c78ec6ac1aed57f5164cce7ab653f335e365f0fb79f62a3a715c15d2456bd43111431eb675e2d8068e4b64f00132f5ce0c45e38e433 -binfiles arch=x86_64-linux size=296 +containersize 391016 +containerchecksum 2f921634fc06cab056427c3835ccb30e7e2a37e8bb13335d8f749c8b8cf69bce6f23adf398587b43d59a14af17ed65c4a58ab06db351c9a34f8e46ce2a0faef1 +binfiles arch=x86_64-linux size=304 bin/x86_64-linux/pdftosrc name pdftosrc.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of pdftosrc -containersize 411320 -containerchecksum 6f905758ae524aea0b7e15880b71f50318a7aaafe4718a96b513d24ce38c6424dd9ea14bd0362efab1d0937bcf58883f64bc000a25c0c2d7fa38ac4781c3ccdd -binfiles arch=x86_64-linuxmusl size=370 +containersize 420152 +containerchecksum 8f2373803981e4f5c6f379cb9877beef63c2ebbd5e99b4f2bd4622f92416851db2f3c775043f07f72612654a5dfcb4c5a16f31e7de1a570c65c6455335575213 +binfiles arch=x86_64-linuxmusl size=374 bin/x86_64-linuxmusl/pdftosrc name pdftosrc.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of pdftosrc -containersize 432920 -containerchecksum dcb034064b71f0cc509992ae9266dcf4968f3b0e6772a09a99048db460b3c587ac0ef45b650ff5a0b8ffa4a45d911f4c72f2bdac8cb505483babe1a18d927903 -binfiles arch=x86_64-solaris size=355 +containersize 436532 +containerchecksum f3f82d95fe74c97e2fb65fad8cd38962d665c77865eee6547f191eb3c53f4194fb9f0fb965e5b008308a17d1be0cce07f0fa1279d029e19c61f8e26e03e5c6ce +binfiles arch=x86_64-solaris size=358 bin/x86_64-solaris/pdftosrc name pdftricks @@ -238856,15 +243323,6 @@ containerchecksum 03f07d55618f67de4a0af079b79e0067c9579a08cef3ba8d33f430c358c782 binfiles arch=armhf-linux size=1 bin/armhf-linux/pdfxup -name pdfxup.i386-cygwin -category Package -revision 40690 -shortdesc i386-cygwin files of pdfxup -containersize 336 -containerchecksum 9f24f3b08cf10eb0e40d03d60d9b0c0d0a5162bf86acab244d1d7aac0c2fa93f70d341449dec39184d7c7feb7390b0a3342df28dfd8d29a8bf17d5b8c85049de -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pdfxup - name pdfxup.i386-freebsd category Package revision 40690 @@ -238987,7 +243445,7 @@ catalogue-version 0.1 name pedigree-perl category Package -revision 31990 +revision 64227 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 @@ -238995,15 +243453,14 @@ longdesc the authors' pst-pdgr package. The program has support for longdesc multilanguage pedigrees (at the present moment the English and longdesc Russian languages are supported). depend pedigree-perl.ARCH -containersize 17236 -containerchecksum 9adc918e1156b2a14bc144b96b5d3fe2b1272a5c9924e30c67236c564c1a065f06ea075249df21f19ce13b9cc03a885402e120d6b8f40f912d8c6ef4b98fc1f3 -doccontainersize 649380 -doccontainerchecksum 1e645090b3cb78b95bfed3398923c6e4cd39637238e7849bb1d05623307f82115fca87ceb6bac2aa89beb68371d7acd438099675ca33295839e413905b4ae150 -docfiles size=465 +containersize 17244 +containerchecksum 4aca97c3d231e3c68a8372d6d8c970aa681fef3d1b7061fbea1648a188c03e06221bf83d2ed0678390780e9a3c2edfe425ea0050172e837ef1a1a62369c41909 +doccontainersize 265132 +doccontainerchecksum b0b251fcf40185b017835a7a47e32736ce0d49c56be134bf93619dffedae4ecf44d36050e4515fa681c8c37707a933d8faece2943b4eddb58dab6ba3a2df113d +docfiles size=144 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 @@ -239023,7 +243480,6 @@ docfiles size=465 texmf-dist/doc/support/pedigree-perl/doc/english1.tex texmf-dist/doc/support/pedigree-perl/doc/pedigree.bib texmf-dist/doc/support/pedigree-perl/doc/pedigree.pdf details="Package documentation" - texmf-dist/doc/support/pedigree-perl/doc/pedigree.ps texmf-dist/doc/support/pedigree-perl/doc/pedigree.tex texmf-dist/doc/support/pedigree-perl/doc/russian.tex texmf-dist/doc/support/pedigree-perl/examples/abortions.csv @@ -239041,6 +243497,10 @@ docfiles size=465 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 +srccontainersize 832 +srccontainerchecksum febf928301eddf00aa84ede679712a3e58520368f7ecd488e9d696b82dc6ed5afc403d88b344071b4291391528a4552620c4882ba2d2e6ee518fc3a8733a2f41 +srcfiles size=1 + texmf-dist/source/latex/pedigree-perl/Makefile runfiles size=28 texmf-dist/scripts/pedigree-perl/Pedigree.pm texmf-dist/scripts/pedigree-perl/Pedigree/AbortionNode.pm @@ -239056,7 +243516,7 @@ runfiles size=28 catalogue-ctan /graphics/pstricks/contrib/pedigree/pedigree-perl catalogue-license gpl2 catalogue-topics humanities csv-support -catalogue-version 1.0 +catalogue-version 2.1 name pedigree-perl.aarch64-linux category Package @@ -239094,15 +243554,6 @@ containerchecksum 91c11d6dedfa3ec4411b2a93ea7e6094bef1492fdabb06198a47079b054968 binfiles arch=armhf-linux size=1 bin/armhf-linux/pedigree -name pedigree-perl.i386-cygwin -category Package -revision 25962 -shortdesc i386-cygwin files of pedigree-perl -containersize 344 -containerchecksum e9bbda0e28b58656a55a662d5f5ff7d8d762ac32ffee1862c75a9c99bd2f0adb4b8221cea7b5df6de25d263dee1ea1eac7e074be3bf1314da012824921d72218 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pedigree - name pedigree-perl.i386-freebsd category Package revision 25962 @@ -239148,14 +243599,14 @@ containerchecksum 67b699e77466a130d72ceb3e00b8de3355d2c6407a46941fcc762f07ace508 binfiles arch=universal-darwin size=1 bin/universal-darwin/pedigree -name pedigree-perl.win32 +name pedigree-perl.windows category Package -revision 25962 -shortdesc win32 files of pedigree-perl -containersize 692 -containerchecksum 44ba85571be20fe6b4650097953a42e7719b262d7df67fa4de1f6a480f0b2ed1cc941851fe0cbd2c229d94c2cd4606b92b7e61ae08c5a5c49e47c9c93ba79ef2 -binfiles arch=win32 size=1 - bin/win32/pedigree.exe +revision 65891 +shortdesc windows files of pedigree-perl +containersize 2316 +containerchecksum 2eff69d5a1887e6463ec7a03be41f37fd4b19955069d301eb3458dd1de68e0123f2a32c0efd16d0e3309a835b0db002f4d363cdcaec3c06959becd50e4bbaaa4 +binfiles arch=windows size=2 + bin/windows/pedigree.exe name pedigree-perl.x86_64-cygwin category Package @@ -239202,6 +243653,31 @@ containerchecksum 99b24feacf46ae3294637a90162641d17a2062f142ad2dbaea7db4c1de9ee9 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/pedigree +name penlight +category Package +revision 64811 +shortdesc Penlight Lua libraries made available to LuaLaTeX users +relocated 1 +longdesc This LuaLaTeX package provides a wrapper to use the penlight +longdesc Lua libraries with LuaLaTeX, with some extra functionality +longdesc added. +containersize 108260 +containerchecksum eed3971fed0d6217064302b136a8262160e3b37ebdb7faf3fb30a0828806c806a5df1d6c4e8833b2552abb21ec8061ba95ce1b688666964dceffc3697b7e2624 +doccontainersize 56004 +doccontainerchecksum cec8a8295e8001ec349f551b5b4d32c8bda1beddf7b22eaa9de6bde6740b49997c5c5eb12b685eab633f293b7d96bb781cd256da689268ddc70479d6fa7c5f63 +docfiles size=19 + RELOC/doc/luatex/penlight/README.md details="Readme" + RELOC/doc/luatex/penlight/penlight.pdf details="Package documentation" + RELOC/doc/luatex/penlight/penlight.tex +runfiles size=112 + RELOC/tex/luatex/penlight/penlight.lua + RELOC/tex/luatex/penlight/penlight.sty + RELOC/tex/luatex/penlight/penlightextras.lua +catalogue-contact-repository https://github.com/kalekje/penlight +catalogue-ctan /macros/luatex/generic/penlight +catalogue-license mit +catalogue-topics luatex + name penrose category Package revision 57508 @@ -239366,15 +243842,6 @@ containerchecksum 66c31d0e63520b849aacb770d0bca88464cc0fb97bc17182ad5428d5411708 binfiles arch=armhf-linux size=1 bin/armhf-linux/perltex -name perltex.i386-cygwin -category Package -revision 16181 -shortdesc i386-cygwin files of perltex -containersize 340 -containerchecksum 0dd638fbb963b14ccb592b429132e0fee3df45c2d441cc5a81df0e2161c41597b10e414f618d2144d263b60ea662987628d8d2dfd98a84e98a807302f4749ad4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/perltex - name perltex.i386-freebsd category Package revision 16484 @@ -239420,14 +243887,14 @@ containerchecksum 72131516c7def195010d6ced9409e6f06473cc209c9a5c8edfd64d476102ba binfiles arch=universal-darwin size=1 bin/universal-darwin/perltex -name perltex.win32 +name perltex.windows category Package -revision 15404 -shortdesc win32 files of perltex -containersize 684 -containerchecksum 0ff0d53328f4f098d0b5fdbffc8f2e7f972e8e077219be0977f8daa39a508f2e5491ebffe8c4d7f2b1e7eb7b9394143daebbec0a99a31ed38ad788a0ee70d358 -binfiles arch=win32 size=1 - bin/win32/perltex.exe +revision 65891 +shortdesc windows files of perltex +containersize 2300 +containerchecksum 8207bf180ccec1bfac7c500046130e3686a49a46ade79966057192cf0effaf2e3c93b4d5ab5e9128c838d5b7951a6beaaa9692004cf6e0237c7592f784f0d55e +binfiles arch=windows size=2 + bin/windows/perltex.exe name perltex.x86_64-cygwin category Package @@ -239632,15 +244099,6 @@ containerchecksum 55b89e691bfeb551580b0f9449413b53b9d27a787ec8106c96f3079d4904c1 binfiles arch=armhf-linux size=1 bin/armhf-linux/pn2pdf -name petri-nets.i386-cygwin -category Package -revision 39165 -shortdesc i386-cygwin files of petri-nets -containersize 344 -containerchecksum 4c2235fb99fc901667a1df334be9fadd1bc5cc1b49ecce67016c3673c90b28f034d9c383a5b8463fe2504117fd8a240025090873f15f8ff61bd4c3d7b90cf104 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pn2pdf - name petri-nets.i386-freebsd category Package revision 39165 @@ -239686,14 +244144,14 @@ containerchecksum 29c4e376123b93b276a2c329742d6e15f9dba02addcb2a7794ffbe6d014f87 binfiles arch=universal-darwin size=1 bin/universal-darwin/pn2pdf -name petri-nets.win32 +name petri-nets.windows category Package -revision 39165 -shortdesc win32 files of petri-nets -containersize 688 -containerchecksum 7dea0f663a02d9c79837c69779782c6f9a091b3c0e6c4072767de3d54e6d2e20993a747ff88a91cf1af059e7476b867d9135e6fd938811cca053c4cda65450c7 -binfiles arch=win32 size=1 - bin/win32/pn2pdf.exe +revision 65891 +shortdesc windows files of petri-nets +containersize 2316 +containerchecksum 9a29118b8037a9d3dc6ee251bd946e5e80c19346f879284088ecd2468292ce7e68a4274f6cd2fa53f51bfa24ba7315cf3ea6ec6e8137b55a4d7ecf37f7dae6a2 +binfiles arch=windows size=2 + bin/windows/pn2pdf.exe name petri-nets.x86_64-cygwin category Package @@ -239815,16 +244273,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/a5toa4 bin/armhf-linux/pfarrei -name pfarrei.i386-cygwin -category Package -revision 29348 -shortdesc i386-cygwin files of pfarrei -containersize 364 -containerchecksum 5aea340da74a9c45596ca30593062045eb3066a8d3300f6a7a2b0022a5b9995780dececaa19dcdc1380b253dd814b6adbe87c5aee7437279c58e02576f6cf6f4 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/a5toa4 - bin/i386-cygwin/pfarrei - name pfarrei.i386-freebsd category Package revision 29348 @@ -239875,15 +244323,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/a5toa4 bin/universal-darwin/pfarrei -name pfarrei.win32 +name pfarrei.windows category Package -revision 29348 -shortdesc win32 files of pfarrei -containersize 704 -containerchecksum bc9d5f4d449ad374dbb0f806d37fd56a9364beea34b810e547e68f14b2352c58340cefc0c03865e3bbd8ff1fefd4460a89d1ffeafe18ae2816e98b722a758027 -binfiles arch=win32 size=2 - bin/win32/a5toa4.exe - bin/win32/pfarrei.exe +revision 65891 +shortdesc windows files of pfarrei +containersize 2364 +containerchecksum b0f0aa8410b5d68536281ed0f0119c4bb39f0ae48fbc7ed2fad7dccbc69373b413822717407d47791d0756974e523588b054b6f914dbc7651c5cfbe10dfe3160 +binfiles arch=windows size=4 + bin/windows/a5toa4.exe + bin/windows/pfarrei.exe name pfarrei.x86_64-cygwin category Package @@ -239935,9 +244383,39 @@ binfiles arch=x86_64-solaris size=2 bin/x86_64-solaris/a5toa4 bin/x86_64-solaris/pfarrei +name pfdicons +category Package +revision 60089 +shortdesc Draw process flow diagrams in chemical engineering +relocated 1 +longdesc This package provides TikZ shapes to represent commonly +longdesc encountered unit operations for depiction in process flow +longdesc diagrams (PFDs) and, to a lesser extent, process and +longdesc instrumentation diagrams (PIDs). The package was designed with +longdesc undergraduate chemical engineering students and faculty in +longdesc mind, and the number of units provided should cover--in +longdesc Turton's estimate--about 90 percent of all fluid processing +longdesc operations. +containersize 9108 +containerchecksum cd09de584483a1493648e9f842b743c43d7712b35f9d315ab34871a964b6ea7e8bcb0ff4b8d4399f5ce7d5ebadf41c94e8b88772b15155d4c21e17e4c62ecd2d +doccontainersize 955616 +doccontainerchecksum cb9f0ae2a1b7a3c8cbb12f859c9cd9d33e447652ceacec2642e45c7db7a96ec6cfb9bf63ac8f711c1661557308ebc3c6c04604412d09cf16d232e23c805e395c +docfiles size=294 + RELOC/doc/latex/pfdicons/README.txt details="Readme" + RELOC/doc/latex/pfdicons/pfdicons-changelog.pdf + RELOC/doc/latex/pfdicons/pfdicons-changelog.tex + RELOC/doc/latex/pfdicons/pfdicons-doc.pdf details="Package documentation" + RELOC/doc/latex/pfdicons/pfdicons-doc.tex +runfiles size=16 + RELOC/tex/latex/pfdicons/pfdicons.sty +catalogue-ctan /graphics/pgf/contrib/pfdicons +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz chemistry engineering +catalogue-version 1.0a + name pgf category Package -revision 57240 +revision 65553 shortdesc Create PostScript and PDF graphics in TeX relocated 1 longdesc PGF is a macro package for creating graphics. It is platform- @@ -239954,434 +244432,156 @@ depend graphics depend ms depend pdftexcmds depend xcolor -containersize 716948 -containerchecksum da45fe7a5b4e9aacf39c64da1596a30ceffc8751ceb6543b20f6d3f2134da75eff7684a72ce15fee9d1e4404efcf98d9fd3354d9c178caa3881a735be87c9073 -doccontainersize 10717352 -doccontainerchecksum 697cc2e2503f3d71cd751530e1e9d8c9ada584690b212f03b7a15808b9f973de532dbbc144ef924b4e806d849cabe2850d1ae802c51b073d84e567349c29fb90 -docfiles size=4024 - RELOC/doc/generic/pgf/ChangeLog - RELOC/doc/generic/pgf/FILES - RELOC/doc/generic/pgf/INSTALL +containersize 717460 +containerchecksum d7fbf0dc83f88a2f6d2de3117365d3f4ac2379ecbc530e343bc3e02ac8083e9a9843d479d375d086e39b6377b21d2fcba22883485e040fab1601642ba80128b9 +doccontainersize 9995120 +doccontainerchecksum e3be45f63b46124218592ffb8083998b9d25e81dbba7ec8ee58d578335247b05ecc46c145f5de8b859c72dd54cafac58ee784f9aa33888fc129817c66a819568 +docfiles size=3531 + RELOC/doc/generic/pgf/CHANGELOG.md + RELOC/doc/generic/pgf/CTAN_NOTES.md + RELOC/doc/generic/pgf/README.md details="Readme" RELOC/doc/generic/pgf/RELEASE_NOTES.md + RELOC/doc/generic/pgf/brave-gnu-world-logo-mask.jpg + RELOC/doc/generic/pgf/brave-gnu-world-logo.25.jpg + RELOC/doc/generic/pgf/brave-gnu-world-logo.jpg + RELOC/doc/generic/pgf/color.cfg RELOC/doc/generic/pgf/description.html - RELOC/doc/generic/pgf/extract.lua - RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.eps - RELOC/doc/generic/pgf/images/brave-gnu-world-logo-mask.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.eps - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.25.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.bb - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.eps - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.jpg - RELOC/doc/generic/pgf/images/brave-gnu-world-logo.xbb - RELOC/doc/generic/pgf/images/pgfmanual-mindmap-1.pdf - RELOC/doc/generic/pgf/images/pgfmanual-mindmap-2.pdf - RELOC/doc/generic/pgf/licenses/LICENSE - RELOC/doc/generic/pgf/licenses/gnu-free-documentation-license-1.2.txt - RELOC/doc/generic/pgf/licenses/gnu-public-license-2.txt - RELOC/doc/generic/pgf/licenses/latex-project-public-license-1.3c.txt - RELOC/doc/generic/pgf/licenses/manifest-code.txt - RELOC/doc/generic/pgf/licenses/manifest-documentation.txt + RELOC/doc/generic/pgf/pgfmanual-en-base-actions.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-animations.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-arrows.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-decorations.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-design.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-external.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-images.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-internalregisters.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-layers.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-matrices.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-nodes.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-paths.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-patterns.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-plots.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-points.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-quick.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-scopes.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-shadings.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-transformations.tex + RELOC/doc/generic/pgf/pgfmanual-en-base-transparency.tex + RELOC/doc/generic/pgf/pgfmanual-en-drivers.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-axes.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-backend.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-examples.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-formats.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-introduction.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-main.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-polar.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-stylesheets.tex + RELOC/doc/generic/pgf/pgfmanual-en-dv-visualizers.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-algorithm-layer.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-algorithms-in-c.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-binding-layer.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-circular.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-display-layer.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-edge-routing.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-examples.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-force.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-layered.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-misc.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-ogdf.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-overview.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-phylogenetics.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-trees.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-usage-pgf.tex + RELOC/doc/generic/pgf/pgfmanual-en-gd-usage-tikz.tex + RELOC/doc/generic/pgf/pgfmanual-en-guidelines.tex + RELOC/doc/generic/pgf/pgfmanual-en-installation.tex + RELOC/doc/generic/pgf/pgfmanual-en-introduction.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-3d.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-angles.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-arrows.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-automata.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-babel.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-backgrounds.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-calc.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-calendar.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-chains.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-circuits.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-decorations.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-edges.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-er.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-external.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-fadings.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-fit.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-fixedpoint.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-folding.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-fpu.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-lsystems.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-math.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-matrices.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-mindmaps.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-patterns.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-perspective.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-petri.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-plot-handlers.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-plot-marks.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-profiler.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-rdf.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-shadings.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-shadows.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-shapes.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-spy.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-svg-path.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-through.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-trees.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-turtle.tex + RELOC/doc/generic/pgf/pgfmanual-en-library-views.tex + RELOC/doc/generic/pgf/pgfmanual-en-license.tex + RELOC/doc/generic/pgf/pgfmanual-en-main-body.tex + RELOC/doc/generic/pgf/pgfmanual-en-main-preamble.tex + RELOC/doc/generic/pgf/pgfmanual-en-main.tex + RELOC/doc/generic/pgf/pgfmanual-en-math-algorithms.tex + RELOC/doc/generic/pgf/pgfmanual-en-math-commands.tex + RELOC/doc/generic/pgf/pgfmanual-en-math-design.tex + RELOC/doc/generic/pgf/pgfmanual-en-math-numberprinting.tex + RELOC/doc/generic/pgf/pgfmanual-en-math-parsing.tex + RELOC/doc/generic/pgf/pgfmanual-en-module-parser.tex + RELOC/doc/generic/pgf/pgfmanual-en-oo.tex + RELOC/doc/generic/pgf/pgfmanual-en-pages.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfcalendar.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgffor.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfkeys.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfkeysfiltered.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfsys-animations.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfsys-commands.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfsys-overview.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfsys-paths.tex + RELOC/doc/generic/pgf/pgfmanual-en-pgfsys-protocol.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-actions.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-animations.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-arrows.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-coordinates.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-decorations.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-design.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-graphs.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-matrices.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-paths.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-pics.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-plots.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-scopes.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-shapes.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-transformations.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-transparency.tex + RELOC/doc/generic/pgf/pgfmanual-en-tikz-trees.tex + RELOC/doc/generic/pgf/pgfmanual-en-tutorial-Euclid.tex + RELOC/doc/generic/pgf/pgfmanual-en-tutorial-chains.tex + RELOC/doc/generic/pgf/pgfmanual-en-tutorial-map.tex + RELOC/doc/generic/pgf/pgfmanual-en-tutorial-nodes.tex + RELOC/doc/generic/pgf/pgfmanual-en-tutorial.tex + RELOC/doc/generic/pgf/pgfmanual-en-xxcolor.tex + RELOC/doc/generic/pgf/pgfmanual-test.tex + RELOC/doc/generic/pgf/pgfmanual.cfg RELOC/doc/generic/pgf/pgfmanual.pdf details="PGF Manual" - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-actions.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-animations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-external.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-images.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-internalregisters.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-layers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-nodes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-patterns.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-plots.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-points.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-quick.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-scopes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-shadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transformations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-base-transparency.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-drivers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-axes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-backend.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-examples.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-formats.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-introduction.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-main.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-polar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-stylesheets.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-dv-visualizers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithm-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-algorithms-in-c.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-binding-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-circular.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-display-layer.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-edge-routing.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-examples.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-force.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-layered.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-misc.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-ogdf.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-overview.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-phylogenetics.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-pgf.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-gd-usage-tikz.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-guidelines.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-installation.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-introduction.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-3d.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-angles.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-automata.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-babel.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-backgrounds.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calc.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-calendar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-chains.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-circuits.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-edges.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-er.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-external.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fit.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fixedpoint.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-folding.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-fpu.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-lsystems.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-math.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-mindmaps.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-patterns.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-perspective.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-petri.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-handlers.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-plot-marks.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-profiler.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-rdf.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadings.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shadows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-shapes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-spy.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-svg-path.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-through.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-turtle.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-library-views.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-license.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-body.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main-preamble.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-main.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-algorithms.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-commands.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-numberprinting.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-math-parsing.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-module-parser.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-oo.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pages.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfcalendar.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgffor.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeys.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfkeysfiltered.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-animations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-commands.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-overview.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-pgfsys-protocol.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-actions.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-animations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-arrows.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-coordinates.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-decorations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-design.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-graphs.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-matrices.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-paths.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-pics.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-plots.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-scopes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-shapes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transformations.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-transparency.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tikz-trees.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-Euclid.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-chains.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-map.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial-nodes.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex - RELOC/doc/generic/pgf/text-en/pgfmanual-en-xxcolor.tex - RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-exp.table - RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-sin.table - RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/text-en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgf-x.table - RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/text-en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/Makefile - RELOC/doc/generic/pgf/version-for-dvipdfm/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfm/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvipdfm/pgfmanual-dvipdfm.cfg - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/Makefile - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example-cut.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvipdfmx/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvipdfmx/pgfmanual-dvipdfmx.cfg - RELOC/doc/generic/pgf/version-for-dvips/en/Makefile - RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-dvips/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvips/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvips/pgfmanual-dvips.cfg - RELOC/doc/generic/pgf/version-for-dvisvgm/en/Makefile - RELOC/doc/generic/pgf/version-for-dvisvgm/en/color.cfg - RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.html - RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.html - RELOC/doc/generic/pgf/version-for-dvisvgm/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-dvisvgm/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-dvisvgm/pgfmanual-dvisvgm.cfg - RELOC/doc/generic/pgf/version-for-luatex/en/Makefile - RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual-test.tex - RELOC/doc/generic/pgf/version-for-luatex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example-cut.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-luatex/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-luatex/pgfmanual-luatex.cfg - RELOC/doc/generic/pgf/version-for-pdftex/en/Makefile - RELOC/doc/generic/pgf/version-for-pdftex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-pdftex/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-pdftex/pgfmanual-pdftex.cfg - RELOC/doc/generic/pgf/version-for-tex4ht/en/Makefile - RELOC/doc/generic/pgf/version-for-tex4ht/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-tex4ht/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-tex4ht/pgfmanual-tex4ht.cfg - RELOC/doc/generic/pgf/version-for-vtex/en/Makefile - RELOC/doc/generic/pgf/version-for-vtex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-vtex/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-vtex/pgfmanual-vtex.cfg - RELOC/doc/generic/pgf/version-for-xetex/en/Makefile - RELOC/doc/generic/pgf/version-for-xetex/en/pgfmanual.tex - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-asymptotic-example.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-asymptotic-example.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-exp.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-exp.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example-cut.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-parametric-example.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-sin.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-sin.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-tan-example.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-tan-example.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-x.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgf-x.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfmanual-sine.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfmanual-sine.table - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfplotgnuplot-example.gnuplot - RELOC/doc/generic/pgf/version-for-xetex/en/plots/pgfplotgnuplot-example.table - RELOC/doc/generic/pgf/version-for-xetex/pgfmanual-xetex.cfg -srccontainersize 33484 -srccontainerchecksum 2fc269eea7ef0c9ee04e15961494f4efa6c12a03a6c0a269a400d031fe154796c67ad96e22efc4ae077a87c38802471b4e0add5e1187249a2b939f8e8fe13d77 -srcfiles size=94 - RELOC/source/generic/pgf/c/INSTALL - RELOC/source/generic/pgf/c/Makefile - RELOC/source/generic/pgf/c/config/ExampleLocalMakefileConfig.mk - RELOC/source/generic/pgf/c/config/MakefileConfig.mk - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoC.c - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/examples/c/SimpleDemoCPlusPlus.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC++.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.c - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/InterfaceFromC.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/interface/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/InterfaceFromOGDF.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/Makefile - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/SimpleDemoOGDF.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FMMMLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/FastMultipoleEmbedder_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/GEMLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/MultilevelLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFRExact_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderFR_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/SpringEmbedderKK_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/energybased_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/BarycenterPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/CirclePlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/EdgeCoverMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/IndependentSetMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/LocalBiconnectedMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MatchingMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/MedianPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/RandomPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarMerger_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/SolarPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/ZeroPlacer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/energybased/multilevelmixer/multilevelmixer_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/BarycenterHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/CoffmanGrahamRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/DfsAcyclicSubgraph_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastHierarchyLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/FastSimpleHierarchyLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyCycleRemoval_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/GreedyInsertHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/LongestPathRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/MedianHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/OptimalRanking_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SiftingHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SplitHeuristic_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/SugiyamaLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/layered/layered_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/BalloonLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/CircularLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/misclayout/misclayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/module/module_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/ogdf_script.c++ - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/PlanarizationLayout_script.h - RELOC/source/generic/pgf/c/graphdrawing/pgf/gd/ogdf/c/planarity/planarity_script.h - RELOC/source/generic/pgf/testsuite/external/Makefile - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.code.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.sharedpreamble.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltest.tex - RELOC/source/generic/pgf/testsuite/external/tikzexternaltestmakefile.tex - RELOC/source/generic/pgf/testsuite/mathtest/pgfmathtestsuite.tex - RELOC/source/generic/pgf/testsuite/mathtest/unittest_luamathparser.tex -runfiles size=1521 - RELOC/scripts/pgf/Makefile.pgf_release - RELOC/scripts/pgf/pgfrevisionfile.sh + RELOC/doc/generic/pgf/pgfmanual.tex +runfiles size=1523 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 @@ -240815,7 +245015,7 @@ runfiles size=1521 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/pgfkeyslibraryfiltered.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 @@ -240887,7 +245087,7 @@ catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz catalogue-ctan /graphics/pgf/base catalogue-license lppl1.3c gpl2 fdl catalogue-topics graphics pgf-tikz graphics-in-tex -catalogue-version 3.1.8b +catalogue-version 3.1.10 name pgf-blur category Package @@ -240920,70 +245120,268 @@ catalogue-license lppl pd catalogue-topics graphics-subpic pgf-tikz catalogue-version 1.02 -name pgf-cmykshadings +name pgf-interference category Package -revision 52635 -shortdesc Support for CMYK and grayscale shadings in PGF/TikZ +revision 61562 +shortdesc Drawing interference patterns with PGF/TikZ relocated 1 -longdesc This package provides support for CMYK and grayscale shadings -longdesc for the pgf package. By default pgf only supports RGB shadings. -longdesc The package attempts to produce shadings consistent with the -longdesc currently selected xcolor colour model. The rgb, cmyk, and gray -longdesc colour models from the xcolor package are supported. Note: This -longdesc package is deprecated since pgf version 3.1.3, since CMYK and -longdesc grayscale shadings are now directly supported. -containersize 6912 -containerchecksum 8634e486cc07bcf10af1abdd94bdf543f11bedc7fceac2f154a8a579920a7467635eae17cd62524b7ba7b2345f26cd4c4b50f8098b01b4f30eb15a120e480b92 -doccontainersize 519980 -doccontainerchecksum e3e301f4979f47e16b9804a50d23575302ee3abef1c5a4dc8ea9aca3d94502c378f805ae54c61d7be9ccf78e236dc0a6c0bb54de47a515cc3a5350381768cfa8 -docfiles size=129 - RELOC/doc/latex/pgf-cmykshadings/README.md details="Readme" - RELOC/doc/latex/pgf-cmykshadings/pgf-cmykshadings.pdf details="Package documentation" -srccontainersize 11020 -srccontainerchecksum 77e6713be90d2555db73f19588493718d390878187d8d0452ba571f2d98c47f3cdaed8ddf423a8c277688107f62f38654c991e17b820b9af45a6c05aa27ca30d -srcfiles size=19 - RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.dtx - RELOC/source/latex/pgf-cmykshadings/pgf-cmykshadings.ins -runfiles size=20 - RELOC/tex/latex/pgf-cmykshadings/pgf-cmykshadings.sty - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-common-postscript.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfm.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvipdfmx.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-dvips.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-luatex.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-pdftex.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-textures.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-vtex.def - RELOC/tex/latex/pgf-cmykshadings/pgfsys-cmykshadings-xetex.def -catalogue-contact-bugs https://github.com/dcpurton/pgf-cmykshadings/issues -catalogue-contact-repository https://github.com/dcpurton/pgf-cmykshadings -catalogue-ctan /graphics/pgf/contrib/pgf-cmykshadings -catalogue-license lppl1.3c -catalogue-topics colour pgf-tikz -catalogue-version 1.2 +longdesc This LaTeX package makes it possible to simulate interference +longdesc patterns occuring on a screen if monochromatic light is +longdesc diffracted at regular structures of slits. It makes use of the +longdesc PGF/TikZ graphics package. +containersize 3216 +containerchecksum 569dc2b0f5b11d93aa447d54649df07c3df375dcdaab509229d0304bb25523bc45062916089b15776b727a9c05205688a161bc79cfb4abbc466a243b2c8c57a4 +doccontainersize 733184 +doccontainerchecksum 106f86c28759b0c105a6f57df9c8df416190f781b73f1bbb7398fde6e88192fca5aa3e198e7235dfc23c2fc3bb41a5cd0cfa060f9dbac4faab30bf04c484e9f6 +docfiles size=300 + RELOC/doc/latex/pgf-interference/README details="Readme" + RELOC/doc/latex/pgf-interference/pgf-interference-de.pdf details="Package documentation (German)" language="de" + RELOC/doc/latex/pgf-interference/pgf-interference-de.tex + RELOC/doc/latex/pgf-interference/pgf-interference-en.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/pgf-interference/pgf-interference-en.tex +runfiles size=5 + RELOC/tex/latex/pgf-interference/pgf-interference.sty +catalogue-contact-bugs https://codeberg.org/wehr/pgf-interference/issues +catalogue-contact-repository https://codeberg.org/wehr/pgf-interference +catalogue-ctan /graphics/pgf/contrib/pgf-interference +catalogue-license lppl1.3 +catalogue-topics pgf-tikz physics +catalogue-version 0.1 + +name pgf-periodictable +category Package +revision 66010 +shortdesc Create custom periodic tables of elements +relocated 1 +longdesc The purpose of this package is to provide the Periodic Table of +longdesc Elements in a simple way. It relies on PGF/TikZ to offer a full +longdesc or partial periodic table with a variety of options and +longdesc displaying the desired data for all the 118 elements. It can be +longdesc done in six languages: English, French, German, Portuguese +longdesc (from Portugal and from Brazil), Spanish and Italian. +longdesc Compatible with pdfLaTeX, LuaLaTeX and XeLaTeX engines. +containersize 502644 +containerchecksum 6d49b340fd1414ec971b8e6805a62487436b5f27a0a112514d2af6dbfef32b60bfe4c35ac4f00d4c2f4699828096edfed9fb95b3fdcc4ef43ed4f9bcc486d8b2 +doccontainersize 5356600 +doccontainerchecksum 5be1cad606332fe03946b7343f2f0aa1a169f75432f8095aa53de8aee3580763bd4a72fadfeaa2bf67989daacb8ac8a5939218729b78ace19c2c2d5ef8d90cda +docfiles size=2126 + RELOC/doc/latex/pgf-periodictable/README details="Readme" + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Ar.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_CS.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_DarkMode.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_DesignCS.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_DiscY.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Examples.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_OtherCont.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_TitleLegend.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_Z.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_blocksfamilies.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_buildCelll.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_commands.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_density.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_eDist.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_exerciselayout.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_generallayout.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_libCS.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_ls.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_name.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_periodgroup.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgf-PeriodicTableManual_variations.tex + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_color.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_colorPicker.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_general.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_load.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_save.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_saveTrailing.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_set.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTcolorSchemes_html_trailing.pdf + RELOC/doc/latex/pgf-periodictable/manualfiles/pgfPTmanual.macros.tex + RELOC/doc/latex/pgf-periodictable/pgf-PeriodicTableManual.ist + RELOC/doc/latex/pgf-periodictable/pgf-PeriodicTableManual.pdf details="Package documentation" + RELOC/doc/latex/pgf-periodictable/pgf-PeriodicTableManual.tex + RELOC/doc/latex/pgf-periodictable/pgfPT.colorSchemes.info.pdf + RELOC/doc/latex/pgf-periodictable/pgfPT.colorSchemes.info.tex + RELOC/doc/latex/pgf-periodictable/pgfPT.input.library.tex + RELOC/doc/latex/pgf-periodictable/pgfPT_radio_symbol.tex + RELOC/doc/latex/pgf-periodictable/pgfPTcolorSchemes.html + RELOC/doc/latex/pgf-periodictable/pgfPTlibrary.colorschemes.tex +runfiles size=565 + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag0.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag1.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag10.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag100.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag11.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag12.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag13.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag14.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag15.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag16.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag17.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag18.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag19.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag2.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag20.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag21.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag22.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag23.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag24.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag25.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag3.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag4.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag5.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag6.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag7.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag8.pdf + RELOC/tex/latex/pgf-periodictable/flags/pgfPT_flag9.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_---.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_bcc.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_bcort.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_ctetr.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_dia.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_fcc.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_fcort.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_hcp.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_hex.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_mono.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_rho.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_sc.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_tetr.pdf + RELOC/tex/latex/pgf-periodictable/lattice/pgfPT_ls_tric.pdf + RELOC/tex/latex/pgf-periodictable/pgf-PeriodicTable.sty + RELOC/tex/latex/pgf-periodictable/pgfPT.backcolors.keys.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.buildcell.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.coordinates.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.data.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.drawing.keys.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.formatNumbers.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.labels.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.names.tex + RELOC/tex/latex/pgf-periodictable/pgfPT.process.language.tex + RELOC/tex/latex/pgf-periodictable/pgfPT_radio_symbol.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec1.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec10.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec11.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec12.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec13.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec14.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec15.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec16.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec17.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec18.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec19.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec2.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec20.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec21.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec22.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec23.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec24.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec25.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec26.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec27.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec28.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec29.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec3.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec30.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec31.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec32.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec33.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec34.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec35.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec36.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec37.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec38.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec39.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec4.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec40.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec41.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec42.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec43.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec44.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec45.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec46.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec47.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec48.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec49.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec5.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec50.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec51.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec52.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec53.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec54.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec55.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec56.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec57.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec58.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec59.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec6.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec60.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec61.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec62.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec63.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec64.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec65.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec66.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec67.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec68.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec69.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec7.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec70.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec71.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec72.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec73.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec74.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec75.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec76.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec77.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec78.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec79.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec8.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec80.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec81.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec82.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec83.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec84.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec86.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec88.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec89.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec9.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec90.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec91.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec92.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec93.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec94.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec95.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec96.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec97.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec98.pdf + RELOC/tex/latex/pgf-periodictable/spectra/pgfPT_spec99.pdf +catalogue-ctan /graphics/pgf/contrib/pgf-periodictable +catalogue-license lppl1.3 +catalogue-topics chemistry pgf-tikz +catalogue-version 2.0.0 name pgf-pie category Package -revision 59075 +revision 63603 shortdesc Draw pie charts, using PGF relocated 1 longdesc The package provides the means to draw pie (and variant) -longdesc charts, using PGF/TikZ. The license of the package is MIT as -longdesc mentioned here: https://code.google.com/archive/p/pgf-pie/. +longdesc charts, using PGF/TikZ. depend carlisle depend latex depend pgf -containersize 3632 -containerchecksum 33247855b63c60b626fe1ec6ac1bf083e7b235a4a575a4376fba14ab611dc4dc7f52564dbaf55a9aa94bae6465a0560516ee958617c77e824e6e2870d4534604 -doccontainersize 212708 -doccontainerchecksum 85fc137d549c55fc3b8898985f2c699dcdaa71d177b4f496062827d94ceb568c5301d1112a072a6964ad207a59aed00aab9807a88e4218738c091cc0b92479fd -docfiles size=99 +containersize 3744 +containerchecksum 3e5cdb5def0918ab1c3d38d35bb85f07711144d1fcaf0f3af8b2c5e0eacd9af6c3b92bc6e1f45438e40d7f5838770b91ab513970cdd9a3f7dad2918eefb875f6 +doccontainersize 222616 +doccontainerchecksum ac151cb61ea4fc440ffeeea9b987f6dd648b53596934900f41437f787bedcabe2ca8dd53c37828aab816e9334d0d26573f81000333e50d0761d70c586a5d87e3 +docfiles size=103 RELOC/doc/latex/pgf-pie/COPYING RELOC/doc/latex/pgf-pie/LICENSE-GPL2.txt RELOC/doc/latex/pgf-pie/LICENSE-LPPL1.3c.txt RELOC/doc/latex/pgf-pie/README.md details="Readme" RELOC/doc/latex/pgf-pie/RELEASE_NOTES.md RELOC/doc/latex/pgf-pie/demo/before-after-number.tex + RELOC/doc/latex/pgf-pie/demo/change-direction.tex RELOC/doc/latex/pgf-pie/demo/cloud.svg RELOC/doc/latex/pgf-pie/demo/cloud.tex RELOC/doc/latex/pgf-pie/demo/color.tex @@ -241017,7 +245415,7 @@ catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz catalogue-ctan /graphics/pgf/contrib/pgf-pie catalogue-license gpl2 lppl1.3c catalogue-topics genchart pgf-tikz -catalogue-version 0.5 +catalogue-version 0.7 name pgf-soroban category Package @@ -241046,79 +245444,91 @@ catalogue-version 1.1 name pgf-spectra category Package -revision 58467 +revision 66011 shortdesc Draw continuous or discrete spectra using PGF/TikZ relocated 1 longdesc The purpose of this package is to draw the spectra of elements -longdesc in a simple way. It is based on the package pst-spectra, -longdesc supporting the same options, but also adding some new options. -longdesc It relies on PGF/TikZ for drawing the desired spectrum, -longdesc continuous or discrete. As in pst-spectra, there are data -longdesc available for the spectra of 99 elements and their ions (from -longdesc the NASA database). It also allows the user to draw spectra -longdesc using their own data. -containersize 236812 -containerchecksum 4f1b4a80df4243ab07e52795573a7e3f8e151353042a0a360b01d9b46f44077ce5d71342f187355e74c3bc23bad3984c4d0aae9a970a28ab014d403cfdbf46f9 -doccontainersize 1685504 -doccontainerchecksum e7710b4c68ed835f7d2ebf16db0c9a1405ad8b3a2824aa4aefeb118795eab12ee6b22e0b764e815b6aea8c37d06d2fe51af472adeea6f587717a1b4831667007 -docfiles size=1523 +longdesc in a simple way. It is based on the package pst-spectra, but +longdesc with some extra options. It relies on PGF/TikZ for drawing the +longdesc desired spectrum, continuous or discrete. There are data +longdesc available for the spectra of 98 elements and their ions (from +longdesc the NASA database and from NIST). It also allows the user to +longdesc draw spectra using their own data. +containersize 249252 +containerchecksum d0e488e89bfc70fc1d28e4df9754cf2355c9e031dcdfb7d1a295070e4c02501a42152f023231b24077a68038ff74b6249c7e1407eac078631f7865df83030a8d +doccontainersize 2155512 +doccontainerchecksum ce6c76bafe6c71df08dbc14fa8e911c879d33d1061eafc0d819a7e0d58903ea538899800105d84791b0fb818efcd80b9e75f164738f6d3f8800d7a69a2263fa7 +docfiles size=1681 RELOC/doc/latex/pgf-spectra/README details="Readme" + RELOC/doc/latex/pgf-spectra/figsManual.zip RELOC/doc/latex/pgf-spectra/pgf-spectraDataLSE.pdf + RELOC/doc/latex/pgf-spectra/pgf-spectraDataLSE.tex RELOC/doc/latex/pgf-spectra/pgf-spectraDataNIST.pdf + RELOC/doc/latex/pgf-spectra/pgf-spectraDataNIST.tex + RELOC/doc/latex/pgf-spectra/pgf-spectraManual.ist RELOC/doc/latex/pgf-spectra/pgf-spectraManual.pdf details="Package documentation" -runfiles size=239 + RELOC/doc/latex/pgf-spectra/pgf-spectraManual.tex + RELOC/doc/latex/pgf-spectra/pgf-spectraManual_defs.tex +runfiles size=263 RELOC/tex/latex/pgf-spectra/pgf-spectra.sty RELOC/tex/latex/pgf-spectra/spectra.data.LSE.tex RELOC/tex/latex/pgf-spectra/spectra.data.NIST.tex catalogue-ctan /graphics/pgf/contrib/pgf-spectra catalogue-license lppl1.3 catalogue-topics physics pgf-tikz -catalogue-version 2.0.0 +catalogue-version 2.2.0 name pgf-umlcd category Package -revision 55342 +revision 63386 shortdesc Some LaTeX macros for UML Class Diagrams relocated 1 -longdesc Some LaTeX macros for UML Class Diagrams.pgf +longdesc Some LaTeX macros for UML Class Diagrams. depend latex depend pgf -containersize 2924 -containerchecksum 800b6f5772cb6e20d5487263a35ebdb1ef491eb3dda2f37a2de89040758c7ca8f2a3541a4ca7e64155d18595ab2a814684a044569f87810d6431aabb938d87a4 -doccontainersize 268796 -doccontainerchecksum 2b67b6e216f43efaeb33089a830786dd03137b2d0f43e8a998d8381eab8491e095251d0d534c34112f1b10758454711d0a4607327ae385611f8a4d576cf05b91 -docfiles size=121 +containersize 3408 +containerchecksum a55281a157a2a347f1c9d82679cd663f4493e03123d14dbef0d71582613772252b693a25b3d3e5b72b948c4fd12d0d7b0354d2e38083583b550d7cfb5e634d93 +doccontainersize 295968 +doccontainerchecksum 6d798d93590d859d69bda9f0bd391049db91e2d4fb6f0b019a6f76eeaae9e73c9f249ec356cf5a5d4505af6948d4c70c2ad4685c1c41a7ba40ec62d3d8a9dd00 +docfiles size=127 RELOC/doc/latex/pgf-umlcd/COPYING - RELOC/doc/latex/pgf-umlcd/README + RELOC/doc/latex/pgf-umlcd/LICENSE-GPL2.txt + RELOC/doc/latex/pgf-umlcd/LICENSE-LPPL1.3c.txt + RELOC/doc/latex/pgf-umlcd/README.md details="Readme" + RELOC/doc/latex/pgf-umlcd/RELEASE_NOTES.md 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/color.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/multiple-inheritance.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/description.html RELOC/doc/latex/pgf-umlcd/logo.png - RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf details="Package demo" + RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.pdf details="Package documentation" RELOC/doc/latex/pgf-umlcd/pgf-umlcd-manual.tex -runfiles size=3 +runfiles size=5 RELOC/tex/latex/pgf-umlcd/pgf-umlcd.sty + RELOC/tex/latex/pgf-umlcd/tikzlibraryumlcd.code.tex catalogue-also pst-uml uml catalogue-contact-bugs https://github.com/pgf-tikz/pgf-umlcd/issues catalogue-contact-repository https://github.com/pgf-tikz/pgf-umlcd catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz catalogue-ctan /graphics/pgf/contrib/pgf-umlcd -catalogue-license gpl +catalogue-license gpl2 lppl1.3c catalogue-topics uml pgf-tikz -catalogue-version 0.2.1.1 +catalogue-version 0.3 name pgf-umlsd category Package @@ -241226,6 +245636,40 @@ catalogue-license lppl1.3 catalogue-topics keyval catalogue-version 0.0.1 +name pgfmath-xfp +category Package +revision 59268 +shortdesc Define pgfmath functions using xfp +relocated 1 +longdesc This package allows to define pgfmath functions that use the +longdesc xfp fpu for their calculations. The input arguments are parsed +longdesc with pgfmath (while the pgf-fpu is locally active), and the +longdesc results are forwarded to xfp's fpu for the function evaluation. +longdesc The result of that calculation is then parsed by pgfmath again +longdesc (with the surrounding settings of pgfmath). This way the +longdesc functions should be usable in every pgfmath context, though +longdesc there is some overhead to this approach. The package is only +longdesc meant as a temporary stopgap until a more dedicated solution is +longdesc available to use xfp in pgf. +containersize 1920 +containerchecksum c82fdb2b540dc37393610199581416b4256d9cf382da4238625b9ae29f6d7ea6150925c6837ae1f4b55fa10239f8563fb8abd042d5533080de7283246ee69ed5 +doccontainersize 257332 +doccontainerchecksum f48114bf89d4d5aeca399c44bf6a6fb26567d7692de319e7d457d3b753df8e302871e9901d98bf8697680125fb8fad56ac8675dd339bc420b439aaa4cc93dbb0 +docfiles size=65 + RELOC/doc/latex/pgfmath-xfp/README.md details="Readme" + RELOC/doc/latex/pgfmath-xfp/pgfmath-xfp.pdf details="Package documentation" +srccontainersize 5204 +srccontainerchecksum 18571bdab8756f25c357ceab0cd82f242007c22ae0b6b5cec17ece221137607a6d245ece8dd90c427d0eceda63749f0d75e77c2974e9dfa8509a1bd34768b5c7 +srcfiles size=4 + RELOC/source/latex/pgfmath-xfp/pgfmath-xfp.dtx +runfiles size=1 + RELOC/tex/latex/pgfmath-xfp/pgfmath-xfp.sty +catalogue-contact-repository https://github.com/Skillmon/ltx_pgfmath-xfp +catalogue-ctan /macros/latex/contrib/pgfmath-xfp +catalogue-license lppl1.3c +catalogue-topics calculation expl3 +catalogue-version 1.0 + name pgfmolbio category Package revision 35152 @@ -241754,7 +246198,7 @@ catalogue-topics pgf-tikz chinese graphics-symb presentation name pgfplots category Package -revision 54080 +revision 61719 shortdesc Create normal/logarithmic plots in two and three dimensions relocated 1 longdesc PGFPlots draws high-quality function plots in normal or @@ -241767,15 +246211,16 @@ longdesc plots, bar plots, area plots, mesh-- and surface plots and some longdesc more. Pgfplots is based on PGF/TikZ (PGF); it runs equally for longdesc LaTeX/TeX/ConTeXt. depend pgf -containersize 522388 -containerchecksum 65364a44b5950ece4c6b6797b149a147dce134f89e2d9402d9a42e656c4a1170c23cc66c8357599addb8283617061850247d9d679fa2ebdd2ffa90b311492b6c -doccontainersize 13006532 -doccontainerchecksum 65a01a28b2e9e14f5277f3a6c91fcd1dbcd255bffa7feeb15132aa24013fd59fe5f5feb6b7a2521328ca2060c7eb8d2eb70b1433f32452b2f661c5ee7142f336 -docfiles size=3943 +containersize 529468 +containerchecksum 8244e65860f37d74d05535a627ef6cd321407a69a142d156bae190c562a9402a0d7e927df732c32cc5f556dede1b51f7aeca5d7d3a26167348a21f2e3d8be5ac +doccontainersize 13086868 +doccontainerchecksum 720a77c574c81e7c3619e3b988c8a359bd6cf284ad3fa7c795eb01c371ede85ad727dde8e5f19d8f683947b5dc5752324581e364c59e8a644b5ae34d6b75a96f +docfiles size=3973 RELOC/doc/context/third/pgfplots/Makefile RELOC/doc/context/third/pgfplots/pgfplotsexample-context.pdf RELOC/doc/context/third/pgfplots/pgfplotsexample-context.tex RELOC/doc/generic/pgfplots/README details="Readme" + RELOC/doc/generic/pgfplots/license_prepcontour/COPYING RELOC/doc/latex/pgfplots/TeX-programming-notes.pdf RELOC/doc/latex/pgfplots/pgfplots.doc.src.tar.bz2 RELOC/doc/latex/pgfplots/pgfplots.pdf details="Package manual" @@ -241785,12 +246230,12 @@ docfiles size=3943 RELOC/doc/latex/pgfplots/pgfplotstodo.pdf RELOC/doc/plain/pgfplots/pgfplotsexample-plain.pdf RELOC/doc/plain/pgfplots/pgfplotsexample-plain.tex -srccontainersize 1726108 -srccontainerchecksum 26eec6b3828e218f34a92b1afd8d457c67340289b85678baf7bb6daf5b9e82db44aae87a2020c41f8abe0f4b515b9c177e2a970c8821b0396164e3d11e62366f -srcfiles size=422 +srccontainersize 1768536 +srccontainerchecksum d840015854794de1a311f1d8a9935a93c71a098c46fb1c5cec8a57228a924685f75ea76fc9cf2a9f9f30ed39920bbf2092fbdef2645ddaa5ad5a3787839c1d2a +srcfiles size=432 RELOC/source/context/third/pgfplots/pgfplotstests.context.tar.bz2 RELOC/source/latex/pgfplots/pgfplotstests.tar.bz2 -runfiles size=905 +runfiles size=917 RELOC/scripts/pgfplots/matlab2pgfplots.m RELOC/scripts/pgfplots/matlab2pgfplots.sh RELOC/scripts/pgfplots/pgf2pdf.sh @@ -241804,6 +246249,7 @@ runfiles size=905 RELOC/tex/generic/pgfplots/libs/tikzlibrarycolorbrewer.code.tex RELOC/tex/generic/pgfplots/libs/tikzlibrarycolortol.code.tex RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.colormaps.code.tex + RELOC/tex/generic/pgfplots/libs/tikzlibrarypgfplots.contourlua.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 @@ -241831,6 +246277,8 @@ runfiles size=905 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/lua/prepcontour.lua + RELOC/tex/generic/pgfplots/lua/prepcontour_cli.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 @@ -241898,14 +246346,14 @@ runfiles size=905 RELOC/tex/plain/pgfplots/pgfplots.tex RELOC/tex/plain/pgfplots/pgfplotstable.tex catalogue-also pst-plot pgfplotstable -catalogue-contact-bugs https://sourceforge.net/p/pgfplots/bugs/?source=navbar +catalogue-contact-bugs https://github.com/pgf-tikz/pgfplots/issues catalogue-contact-home http://pgfplots.sourceforge.net/ -catalogue-contact-repository http://pgfplots.sourceforge.net/ -catalogue-contact-support https://sourceforge.net/projects/pgfplots/ +catalogue-contact-repository https://github.com/pgf-tikz/pgfplots +catalogue-contact-support https://tug.org/mailman/listinfo/pgf-tikz catalogue-ctan /graphics/pgf/contrib/pgfplots catalogue-license gpl3+ catalogue-topics graphics graphics-plot pgf-tikz -catalogue-version 1.17 +catalogue-version 1.18.1 name phaistos category Package @@ -241946,6 +246394,83 @@ catalogue-license lppl catalogue-topics font font-archaic font-type1 font-otf catalogue-version 1.0 +name phfcc +category Package +revision 60731 +shortdesc Convenient inline commenting in collaborative documents +relocated 1 +longdesc Easily define helper macros to insert comments in a LaTeX +longdesc document. A convenient syntax enables you to mark text +longdesc additions (e.g., "... \phf{I'm adding this text} ..." or "... +longdesc \phf I'm adding this text\endphf ..."), an in-line comment +longdesc (e.g., "... We're the best \phf[I'm not sure about this.] +longdesc ..."), and text removals (e.g., "... \phf*{remove me} ..."). +longdesc New colors are assigned automatically to each commenter by +longdesc default, and the appearance of all comments is highly +longdesc customizable. +containersize 5548 +containerchecksum 1d1f6387db333cee296545663bc4e2026fecd0f381cf4e45b42c8b297a4ae9bccfaa8e9791f92cf59bccc428b3f63b944d9173660c3606f1f49ef1878caf2181 +doccontainersize 405660 +doccontainerchecksum ac10825535fbf1e5173d5d209c26d665a128473c3100e349a63ccd921534c9645ce3c7b7391aac56de70f23657db8e1496f6afc0b2d112a45f3ae84d87220498 +docfiles size=102 + RELOC/doc/latex/phfcc/README.md details="Readme" + RELOC/doc/latex/phfcc/phfcc.pdf details="Package documentation" +srccontainersize 22680 +srccontainerchecksum 31c59c51bb48a722e4962986bef69619ca1ffd80bc25ee1308cef80e78246811ee169ca6a0c9ea5e257626e55fb04bfe40bb1ec53d09c81b2fe636e6ce215a37 +srcfiles size=24 + RELOC/source/latex/phfcc/Makefile + RELOC/source/latex/phfcc/phfcc.dtx + RELOC/source/latex/phfcc/phfcc.ins + RELOC/source/latex/phfcc/pkg.mk +runfiles size=6 + RELOC/tex/latex/phfcc/phfcc.sty +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfcc +catalogue-license lppl1.3 +catalogue-topics editorial cond-comp +catalogue-version 2.0 + +name phfextendedabstract +category Package +revision 60732 +shortdesc Typeset extended abstracts for conferences, such as often encountered in quantum information theory +relocated 1 +longdesc Several conferences in various fields (such as quantum +longdesc information theory) require the submission of extended +longdesc abstracts. An extended abstract is a summary of a scientific +longdesc result, presented at a high level, and consisting of at most a +longdesc small handful of pages. The phfextendedabstract LaTeX class +longdesc provides a simple style for such abstracts. There are only two +longdesc sectioning levels, sections and paragraphs, and the style is +longdesc optimized to save space as well as to guide the reader's eye +longdesc through the overall structure of the document. An option will +longdesc try to compress all vertical space to save some space, in case +longdesc you need to satisfy page constraints. The style builds upon the +longdesc powerful RevTeX class, so you can use all of RevTeX's features +longdesc such as author affiliations, etc. +containersize 3888 +containerchecksum 0e1f0f232c7216d654a41ab750477a5a6efd1a2dcb15b2114eefe1ffcb582bd0512bc8592111904c550badef12a3927c5ee2af58548dab5015901165b35a8bd1 +doccontainersize 280996 +doccontainerchecksum aad67fc68996c032bca758b44eb65288f2245f780e9e4200888fb027b4638963e2f3b9c771a5ec78f8c65fd0c86c8b55b16d8cdad44fdcf9cc6622a766175e00 +docfiles size=71 + RELOC/doc/latex/phfextendedabstract/README.md details="Readme" + RELOC/doc/latex/phfextendedabstract/phfextendedabstract.pdf details="Package documentation" +srccontainersize 14928 +srccontainerchecksum a5d3ae9a1bc6b8859e998bb3561a63e99d9a4f30da3e3c2dd918ba7f23a09362bd8f123e2bfbe2af4ff7f2204c969ad487ddf389fa04287eacf0abe9f251391e +srcfiles size=15 + RELOC/source/latex/phfextendedabstract/Makefile + RELOC/source/latex/phfextendedabstract/phfextendedabstract.dtx + RELOC/source/latex/phfextendedabstract/phfextendedabstract.ins + RELOC/source/latex/phfextendedabstract/pkg.mk +runfiles size=3 + RELOC/tex/latex/phfextendedabstract/phfextendedabstract.cls +catalogue-contact-home https://github.com/phfaist/phfqitltx +catalogue-contact-repository https://github.com/phfaist/phfqitltx +catalogue-ctan /macros/latex/contrib/phfextendedabstract +catalogue-license lppl1.3 +catalogue-topics physics +catalogue-version 1.0 + name phffullpagefigure category Package revision 41857 @@ -241978,7 +246503,7 @@ catalogue-version 1.0 name phfnote category Package -revision 41858 +revision 60733 shortdesc Basic formatting for short documents relocated 1 longdesc This package provides basic formatting for short documents such @@ -241988,28 +246513,29 @@ longdesc include a standard set of relevant packages, a nice title which longdesc doesn't take up too much space, better page margin sizes, and longdesc some basic styling to make the note look nicer. At the same longdesc time, it is highly flexible and customizable. -containersize 15836 -containerchecksum d542b73d1a25d0d141a37e3bf0a3d4753829efbcfed9745ea299a90026325f82624bb5d4a5075892af758d4a4613e1560824871e6bb784a8ce0030a7fb3f4836 -doccontainersize 637980 -doccontainerchecksum a62dc8166944e953b8efa49c7ab78b98744cb9948523f4decffee6a553a8e432ce2d9774575bbedce59e5dbd01e9bcc01d82962a19d3878a11367127a7927287 -docfiles size=162 - RELOC/doc/latex/phfnote/Makefile +containersize 18752 +containerchecksum ddaea70a5bb3aecdf634b44dcf5f006db479a4d47e44e96f92bd390c2c0e166b741ea31a0f22ac39770ff0c92590a261c18fe5096bf97997743684a95a82da2b +doccontainersize 752440 +doccontainerchecksum 2dc4e7d3615d8f185bf1bcfeb5a90d51f362538691444355ad6820f8bdcfcd68f1dcc69486c0b630d1141db1b4bc10bd17abcfb93cf37b778266090f29ec946d +docfiles size=189 RELOC/doc/latex/phfnote/README.md details="Readme" RELOC/doc/latex/phfnote/phfnote.pdf details="Package documentation" - RELOC/doc/latex/phfnote/pkg.mk -srccontainersize 28336 -srccontainerchecksum 4f83603d837978304673550f1dba78a1aad030392323de2ae6bb0295ecf7fc5f8bd211a14f831b7f3710b13e999e73e3a8b224a5ac44ce67b2ea3faae5fc83c9 -srcfiles size=29 +srccontainersize 39348 +srccontainerchecksum 15c0614cf6bf41c94513475d0b65f7053970505fcaa3126550d283b8597c49e30b86e716d3b643fceeee2bae37f81a65d8f65859847bee6f0aa4e508102f6617 +srcfiles size=43 + RELOC/source/latex/phfnote/Makefile RELOC/source/latex/phfnote/phfnote.dtx RELOC/source/latex/phfnote/phfnote.ins -runfiles size=18 + RELOC/source/latex/phfnote/pkg.mk +runfiles size=23 RELOC/bibtex/bst/phfnote/naturemagdoi.bst RELOC/tex/latex/phfnote/phfnote.sty + RELOC/tex/latex/phfnote/phfnotepreset-xpkgdoc.def catalogue-contact-repository https://github.com/phfaist/phfqitltx catalogue-ctan /macros/latex/contrib/phfnote catalogue-license lppl1.3 catalogue-topics memorandum -catalogue-version 1.0 +catalogue-version 4.0 name phfparen category Package @@ -242045,7 +246571,7 @@ catalogue-version 1.0 name phfqit category Package -revision 45084 +revision 60734 shortdesc Macros for typesetting Quantum Information Theory relocated 1 longdesc This package provides macros to typeset some general @@ -242057,27 +246583,27 @@ longdesc and some basic Lie algebra/group names. Macros for entropy longdesc measures for quantum information theory (smooth min- and longdesc max-entropy, smooth relative entropies, etc.) are also longdesc provided. -containersize 4136 -containerchecksum 250626ed9e7e33abf0d19c32213236b02849db849f080bee0ddc19370acb7e2e66c838dc1149f8c1194d2534c1e073fc2971fe3687174978bdabc90efc4b7752 -doccontainersize 394904 -doccontainerchecksum 0acdb07c2484e2e5694690536eca084ffebee0f549ead32b3557e368ed85d7a7785c297cc639cee2cf4b41f64f7c2df806b6b27d4ae89769b0b8d99d2127f885 -docfiles size=102 - RELOC/doc/latex/phfqit/Makefile +containersize 4824 +containerchecksum 604093594d05e5f331d27bf5b0d6c40b631934a2872841f2534f69279542a6bd26ad758712b9b24c5490c4e9396ac147f46a9d0790cd29f56c0d2b13d876bd56 +doccontainersize 455784 +doccontainerchecksum 738e5f61c0318f331ea2a7f1e0d5d019969636917fcc18ca19a72ed42b1207f4025c58ea886c4758b64c61cb33faf8ae5b4d5f2f7a55a9ce9758b9fec00508ac +docfiles size=114 RELOC/doc/latex/phfqit/README.md details="Readme" RELOC/doc/latex/phfqit/phfqit.pdf details="Package documentation" - RELOC/doc/latex/phfqit/pkg.mk -srccontainersize 18388 -srccontainerchecksum f189ad485482da9e1802b1b2c96120a244a14f7e7e39a1759d7484ad236945f98b8330464223ad63127d9960eb4f10f04145f5eefef25f02775c009184ca4b9d -srcfiles size=20 +srccontainersize 23420 +srccontainerchecksum 0d0ce4d75bb6d73e24a47c8d66ac0b72a0cfe273a6daa4af1fd3a89f853c3c5c1f856d749321fc9ef79b0e0a9c27465045a48202536b73270971deb2d4cc7a30 +srcfiles size=27 + RELOC/source/latex/phfqit/Makefile RELOC/source/latex/phfqit/phfqit.dtx RELOC/source/latex/phfqit/phfqit.ins -runfiles size=4 + RELOC/source/latex/phfqit/pkg.mk +runfiles size=5 RELOC/tex/latex/phfqit/phfqit.sty catalogue-contact-repository https://github.com/phfaist/phfqitltx catalogue-ctan /macros/latex/contrib/phfqit catalogue-license lppl1.3 catalogue-topics maths physics -catalogue-version 2.0 +catalogue-version 4.1 name phfquotetext category Package @@ -242145,7 +246671,7 @@ catalogue-version 1.0 name phfthm category Package -revision 41871 +revision 60735 shortdesc Goodies for theorems and proofs relocated 1 longdesc This package provides enhanced theorem and proof environments @@ -242154,27 +246680,27 @@ longdesc be placed, adds some default goodies and is highly longdesc customizable. In particular, it can connect theorems to proofs, longdesc automatically producing text such as "See proof on page XYZ" longdesc and "Proof of Theorem 4: ...". -containersize 5348 -containerchecksum c6aeab1fef49a56a7ab080945199a4f68186b53bd7fd00e4c3d3babcd3f63f998748635edded858d5904b8dc7604007753bec12fdc8ff6a7656cf1ef26c0ca9e -doccontainersize 376988 -doccontainerchecksum c2439e7a3e7f1b0730b8fc48f933b9754777e7750a58ee6a5985ac458689c2df96d9e74d09c5ade2b0b8dac49e0be43ca60a0769dedc662e151e1dac5bb18cf0 -docfiles size=98 - RELOC/doc/latex/phfthm/Makefile +containersize 5744 +containerchecksum 2a608898b9038cc46e4720423a42f403abcd105700e20e90274ca6e01ed3c4428a443466d0e32b0cf0da9735c0b7ea74b82e90a3d0b72583d38fa5a14094f806 +doccontainersize 393356 +doccontainerchecksum bb0c2da2d17b0c3c3550569428fbdb5532d1fe79b325289d71f35659d749fb952bacfa6140210ebbbdc661dc445ae8add1be6cc79b77bf6346fadc70553bf189 +docfiles size=99 RELOC/doc/latex/phfthm/README.md details="Readme" RELOC/doc/latex/phfthm/phfthm.pdf details="Package documentation" - RELOC/doc/latex/phfthm/pkg.mk -srccontainersize 23912 -srccontainerchecksum b189f0320e5b8d1ecbb1bb34972b845d776190ada4ab76e44ade41e21d8f7eb0bfb6bd55a4352aad4d0c2455730b7803384eece70d2030faf9279aef0f70f540 -srcfiles size=26 +srccontainersize 27536 +srccontainerchecksum 7c234459aaa013a9d2d0c719791d99ad6db252e152a53f7111e6d9e04fed3c718efb4fedc85fd064825d40ef80fec2643d6310e582bf830486b8e43efa27c966 +srcfiles size=32 + RELOC/source/latex/phfthm/Makefile RELOC/source/latex/phfthm/phfthm.dtx RELOC/source/latex/phfthm/phfthm.ins -runfiles size=6 + RELOC/source/latex/phfthm/pkg.mk +runfiles size=7 RELOC/tex/latex/phfthm/phfthm.sty catalogue-contact-repository https://github.com/phfaist/phfqitltx catalogue-ctan /macros/latex/contrib/phfthm catalogue-license lppl1.3 catalogue-topics maths maths-theorem -catalogue-version 1.0 +catalogue-version 1.2 name philex category Package @@ -242275,7 +246801,7 @@ catalogue-version 1.5 name phonenumbers category Package -revision 51933 +revision 63774 shortdesc Typesetting telephone numbers with LaTeX relocated 1 longdesc The phonenumbers package makes it possible to typeset telephone @@ -242287,34 +246813,30 @@ longdesc options, including the additional output of the country calling longdesc code. The package is able to check if a phone number is valid longdesc according to the national rules. It also allows to link phone longdesc numbers using the hyperref package. -containersize 69988 -containerchecksum 79f875543181adada6e60d57adbc225efef89440666aa179ce69eef0118c528bb603436cb7df5dba95c75f60bd57bbe321f169358e247842a42cafee14cffef9 -doccontainersize 1094648 -doccontainerchecksum 85a496e3ff30df0bb1a852e1e21cf0fd8434124f3ec1b460fbd3c0da05573a1ac85136d3caec4f4d59993d47ad82fc0f123afcbf272982bd614dd2e1f318394f -docfiles size=952 +containersize 70792 +containerchecksum 328a221086c26804d8655bd38f4a302b9d76b25e1a6238395f342bba8d1f6206b1d64a7a2fe4de41940015701e8fb8bcf33a0ed5d7298b8c7642429d93a85f8f +doccontainersize 1167224 +doccontainerchecksum ec94445c39683298feaf57ac7d074147fa094aeb3fad983b85fd922ec8baf533160a865997c246a62677ba79bf85ce8f385ede4bae159667ecae6eec2cf84824 +docfiles size=982 RELOC/doc/latex/phonenumbers/Literatur.bib RELOC/doc/latex/phonenumbers/README details="Readme" RELOC/doc/latex/phonenumbers/phonenumbers-de.pdf details="German package documentation" language="de" RELOC/doc/latex/phonenumbers/phonenumbers-de.tex - RELOC/doc/latex/phonenumbers/phonenumbers-en.pdf details="English package documentation" language="en-gb" + RELOC/doc/latex/phonenumbers/phonenumbers-en.pdf details="English package documentation" RELOC/doc/latex/phonenumbers/phonenumbers-en.tex -runfiles size=162 - RELOC/tex/latex/phonenumbers/phn-AT_Ortsnamen.tex - RELOC/tex/latex/phonenumbers/phn-AT_Vorwahlen.tex - RELOC/tex/latex/phonenumbers/phn-DE_Ortsnamen.tex - RELOC/tex/latex/phonenumbers/phn-DE_Vorwahlen.tex - RELOC/tex/latex/phonenumbers/phn-FR_Ortsnamen.tex - RELOC/tex/latex/phonenumbers/phn-FR_Vorwahlen.tex - RELOC/tex/latex/phonenumbers/phn-Landeskennzahlen.tex - RELOC/tex/latex/phonenumbers/phn-UK_Ortsnamen.tex - RELOC/tex/latex/phonenumbers/phn-UK_Vorwahlen.tex - RELOC/tex/latex/phonenumbers/phn-US_Ortsnamen.tex - RELOC/tex/latex/phonenumbers/phn-US_Vorwahlen.tex +runfiles size=167 + RELOC/tex/latex/phonenumbers/phonenumbers-AT.def + RELOC/tex/latex/phonenumbers/phonenumbers-DE.def + RELOC/tex/latex/phonenumbers/phonenumbers-FR.def + RELOC/tex/latex/phonenumbers/phonenumbers-UK.def + RELOC/tex/latex/phonenumbers/phonenumbers-US.def RELOC/tex/latex/phonenumbers/phonenumbers.sty +catalogue-contact-bugs https://github.com/wehro/phonenumbers/issues +catalogue-contact-repository https://github.com/wehro/phonenumbers catalogue-ctan /macros/latex/contrib/phonenumbers catalogue-license lppl1.3 -catalogue-topics addr-list numbers -catalogue-version 2.2 +catalogue-topics addr-list numbers expl3 +catalogue-version 2.5 name phonetic category Package @@ -242429,6 +246951,35 @@ catalogue-ctan /macros/latex/contrib/photo catalogue-license lppl catalogue-topics float +name photobook +category Package +revision 66551 +shortdesc A document class for typesetting photo books +relocated 1 +longdesc The photobook LaTeX document class extends the book class +longdesc defining a set of parameters, meta-macros, macros and +longdesc environments with reasonable defaults to help typeset, build +longdesc and print books mainly based on visual/image content. +containersize 30688 +containerchecksum ce1c4025ad4bbc1f0733bd85d0757dd230c296cf6c646a91aacc3dd4ad3c0353fcf86d75e3774549a441f6f489ea03bcbb3699a2ab65b23193ff834a9734633e +doccontainersize 151088 +doccontainerchecksum dae22b96898f5bcca3917d173f16c33a20fe8fdb992302651fbb005e0a5846428368b6cf9d7d4499148c5d1fbe7c7232eaa96425f97b0b7563565fb3bbc0ad01 +docfiles size=51 + RELOC/doc/latex/photobook/LICENSE + RELOC/doc/latex/photobook/Makefile + RELOC/doc/latex/photobook/README.md details="Readme" + RELOC/doc/latex/photobook/photobook.pdf details="Package documentation" + RELOC/doc/latex/photobook/scripts/README.md details="Readme" + RELOC/doc/latex/photobook/scripts/cls2tex.sh + RELOC/doc/latex/photobook/scripts/make-spreads.sh +runfiles size=40 + RELOC/tex/latex/photobook/photobook.cls +catalogue-contact-repository https://github.com/flynx/photobook +catalogue-ctan /macros/latex/contrib/photobook +catalogue-license bsd3 +catalogue-topics class +catalogue-version 0.1.10 + name physconst category Package revision 58727 @@ -242495,6 +247046,55 @@ catalogue-license lppl catalogue-topics physics maths catalogue-version 1.3 +name physics2 +category Package +revision 66115 +shortdesc Macros for typesetting math faster and more simply +relocated 1 +longdesc The physics2 package defines commands for typesetting math +longdesc formulae faster andmore simply. physics2 is a modularized +longdesc package, each module provides its own function. You can load +longdesc modules separately after loading `physics2`. Modules of physics +longdesc provide the following supports: Automatic braces; Dirac bra-ket +longdesc notation; Easy way to typeset diagonal matrices and matrices +longdesc with similar entries; Double cross and double dot (binary) +longdesc operators for tensors. +containersize 7616 +containerchecksum 5af5f5c7d3d0e783ddf3b9fce5a8a81c402ff92027e549559deed34e173ea441a368b7617928c0b04ce9ebe86feaae8e061f2963d4fa3bf3397e211855d79d87 +doccontainersize 191756 +doccontainerchecksum 28e9874864ad9f4444c5a6f30005ef6544cc5e5a2f6101b267a49a810e8aed0d0b3a4a562562d294966c60223ed684196823a4d0a44caac236e5936aa9a1c8ec +docfiles size=60 + RELOC/doc/latex/physics2/README.md details="Readme" + RELOC/doc/latex/physics2/phy2docdef.tex + RELOC/doc/latex/physics2/physics2-legacy.pdf + RELOC/doc/latex/physics2/physics2-legacy.tex + RELOC/doc/latex/physics2/physics2.pdf details="Package documentation" + RELOC/doc/latex/physics2/physics2.tex +runfiles size=16 + RELOC/tex/latex/physics2/phy-ab.braket.sty + RELOC/tex/latex/physics2/phy-ab.legacy.sty + RELOC/tex/latex/physics2/phy-ab.sty + RELOC/tex/latex/physics2/phy-bm-um.legacy.sty + RELOC/tex/latex/physics2/phy-braket.sty + RELOC/tex/latex/physics2/phy-common.sty + RELOC/tex/latex/physics2/phy-diagmat.sty + RELOC/tex/latex/physics2/phy-doubleprod.sty + RELOC/tex/latex/physics2/phy-explsetup.sty + RELOC/tex/latex/physics2/phy-nabla.legacy.sty + RELOC/tex/latex/physics2/phy-op.legacy.sty + RELOC/tex/latex/physics2/phy-qtext.legacy.sty + RELOC/tex/latex/physics2/phy-xmat.sty + RELOC/tex/latex/physics2/physics2.sty +catalogue-contact-bugs https://github.com/AlphaZTX/physics2/issues +catalogue-contact-development https://www.ctan.org/author/zhang-tx +catalogue-contact-home https://github.com/AlphaZTX/physics2 +catalogue-contact-repository https://github.com/AlphaZTX/physics2 +catalogue-contact-support https://github.com/AlphaZTX/physics2/issues +catalogue-ctan /macros/latex/contrib/physics2 +catalogue-license lppl1.3c +catalogue-topics physics maths +catalogue-version 0.1.1 + name physunits category Package revision 58728 @@ -242552,7 +247152,7 @@ catalogue-version 1.0 name picinpar category Package -revision 57349 +revision 65097 shortdesc Insert pictures into paragraphs relocated 1 longdesc A legacy package for creating 'windows' in paragraphs, for @@ -242560,21 +247160,21 @@ longdesc inserting graphics, etc. (including "dropped capitals"). Users longdesc should note that Pieter van Oostrum (in a published review of longdesc packages of this sort) does not recommend this package; Picins longdesc is recommended instead. -containersize 5192 -containerchecksum e6c7beec7eb6beac3ddf2621adc68ffa90eb24d0df02b8be23de1c1c59ffc76709307116c9d305db3735cd5c1cb2276ad11f9ce4c9fc171f67ce95293264f4d3 -doccontainersize 393268 -doccontainerchecksum 0e79c8b6b93fd8e424504286d1010879c52e83c2f216c55e34d28dfb94ead43d43c750e637be938c9b6337e6b8e07f6b6a34271cc93db3ece846d5e4d55671d7 +containersize 5380 +containerchecksum 114b1e715384513f87f2a6772a6176ade44ac7053a8eb19410fb92862e721865dcc9350f08d77874296ae6402eb8d8da4b4b26ff4a96d035666814a3d3e21682 +doccontainersize 395152 +doccontainerchecksum 3b972c49a8c2ba7de3e21c065faef96125b2b275b25f7e8a35c72e28f27156414a558e290ed4b84d6ba49921a0c858867a0a7cfd5db87a501b3ac1a0ee6594a9 docfiles size=100 RELOC/doc/latex/picinpar/picinpar-de.pdf details="Package usage example" language="de" RELOC/doc/latex/picinpar/picinpar-de.tex RELOC/doc/latex/picinpar/picinpar-en.pdf details="Package usage notes" language="en" RELOC/doc/latex/picinpar/picinpar-en.tex -runfiles size=4 +runfiles size=5 RELOC/tex/latex/picinpar/picinpar.sty catalogue-ctan /macros/latex209/contrib/picinpar catalogue-license gpl catalogue-topics text-flow -catalogue-version 1.2a +catalogue-version 1.3 name pict2e category Package @@ -242630,26 +247230,20 @@ catalogue-version 0.4b name pictex category Package -revision 21943 +revision 59551 shortdesc Picture drawing macros for TeX and LaTeX relocated 1 -longdesc PicTeX is an early, and very comprehensive drawing package, -longdesc that mostly draws by placing myriads of small dots to make up -longdesc pictures. It has a tendency to run out of space, most -longdesc especially of allowable dimensions registers; packages m-pictex -longdesc and pictexwd deal with the register problem, in different ways. -longdesc Note that full documentation may be bought via the PC-TeX site, -longdesc though a command summary is available as free software. -longdesc Alternatively, a front-end package such as mathsPiC, which -longdesc covers all of PicTeX and has a complete and free manual, could -longdesc be used. -containersize 41440 -containerchecksum ed91f0518668007aab7b9222dd08c7f489caaf084ef915f88d435128012b2b4eb9ba610168154f07bd0d084a34909cefb1dc0c1cfb2186982b4f08f9f6412f7a -doccontainersize 1420 -doccontainerchecksum 61ed0f632d7f12fca4631b13714994b2cee8e05176262dd8cab672d4f8f7e65a36e0d927e3b803991818d9d2976d5794d48a46ebbbaf8bc8aad99aadec7d3fcb +longdesc PicTeX is an early and very comprehensive drawing package that +longdesc mostly draws by placing myriads of small dots to make up +longdesc pictures. It has a tendency to run out of space; packages +longdesc m-pictex and pictexwd deal with the problems in different ways. +containersize 41444 +containerchecksum cca6216568bead5120ef39eb2743897ad97d285b55e7d9b0723b3f6c7fa94ab17cb8cecb946845aefc57eae3c69305de6d839feb9df8212be83d2c7f242c2fd4 +doccontainersize 1608 +doccontainerchecksum e5bdad8dfdeaf3e3427d37b35641f37c8bb8005aea3773a914967a10b2583e1721fe0afeea0b8cb7f230edfa7b7d33c2d6fe023c229de4a27d6c979f6830088a docfiles size=4 - RELOC/doc/generic/pictex/00index - RELOC/doc/generic/pictex/README details="Readme" + RELOC/doc/generic/pictex/README.TEXLIVE + RELOC/doc/generic/pictex/README.txt details="Readme" RELOC/doc/generic/pictex/pictexzusatz.txt RELOC/doc/generic/pictex/readme.errorbars runfiles size=81 @@ -242670,7 +247264,7 @@ catalogue-also qfig epic pictex2 pictexsum catalogue-ctan /graphics/pictex catalogue-license lppl1 catalogue-topics graphics-in-tex -catalogue-version 1.1 +catalogue-version 1.1b name pictex2 category Package @@ -242941,6 +247535,35 @@ catalogue-ctan /macros/plain/contrib/pitex catalogue-license lppl catalogue-topics doc-supp +name piton +category Package +revision 65835 +shortdesc Typeset Python listings with LPEG +relocated 1 +longdesc This package uses the Lua library LPEG to typeset and highlight +longdesc Python listings. +containersize 11760 +containerchecksum 431d6967b4825b4e36b2251d59571f57ef3f20d231c4f215d67ba34ac5a105de25c8f2044b4f7a5bd774a906bca4d98bc77b76e3b678b80c57aee4d1c6d705b3 +doccontainersize 603852 +doccontainerchecksum ef3dfcdcfb807135535f52859c6fff5bc46e78e979c07290b96c50fa1f1ffd3fea1a17a619c23f4aeb1fc4d0b21313d841b323799ea050b38b9bb1575d974c62 +docfiles size=259 + RELOC/doc/lualatex/piton/README.md details="Readme" + RELOC/doc/lualatex/piton/piton-french.pdf details="Package documentation (French)" language="fr" + RELOC/doc/lualatex/piton/piton-french.tex + RELOC/doc/lualatex/piton/piton.pdf details="Package documentation (English)" +srccontainersize 34288 +srccontainerchecksum 137f87044f7625fd7db4c4fd43957f929ada766248d262c883c111592e00e63f613201c0641a50917bb663adb6c976af7e91f10193cb9cd985eedf5f27d9f52a +srcfiles size=41 + RELOC/source/lualatex/piton/piton.dtx + RELOC/source/lualatex/piton/piton.ins +runfiles size=15 + RELOC/tex/lualatex/piton/piton.sty +catalogue-also codehigh +catalogue-ctan /macros/luatex/latex/piton +catalogue-license lppl1.3 +catalogue-topics listing synt-hlt luatex +catalogue-version 1.4 + name pittetd category Package revision 15878 @@ -242978,33 +247601,61 @@ catalogue-version 1.618 name pixelart category Package -revision 57508 -shortdesc A package to draw pixel-art pictures +revision 66012 +shortdesc Draw pixel-art pictures relocated 1 -longdesc A LaTeX package to draw single-color pixel-art pictures using -longdesc TikZ. -containersize 1580 -containerchecksum 47f667a417ebe5a7cd265055d6a4c88bb8f561e020069ddc0bde818aa2394e69d6a575e48bc6d4feaf5761d356a6554189ba6c1a57cf2bfbf1099132b8398805 -doccontainersize 154092 -doccontainerchecksum 5221b337718d13512359c3e0d349dd83afb9c2585f013501badb06483e8ab23f146672860426047fbed3d55471e32301ed695b6c416c31683915f569c4b3c3a7 -docfiles size=45 +longdesc A LuaLaTeX package to draw pixel-art pictures using TikZ. +containersize 6764 +containerchecksum 0643246fbed81ac008f675b9cff8d3194f8eed02937816c41887ad84268850cab50e5c6a7c8df5148f04cbb43c6ab80d5fa4d960d541b42f505f95f554fa0602 +doccontainersize 387308 +doccontainerchecksum 2823d82ac741954d19afcdf74a1b2071591a904183877ee54e8eb9a4dc2d63716f05bd1886691e87d36010fffb929e9d31aee05ec707a929a5fc74c01ed6077d +docfiles size=115 RELOC/doc/latex/pixelart/CHANGELOG.md RELOC/doc/latex/pixelart/LICENSE.txt RELOC/doc/latex/pixelart/README.md details="Readme" RELOC/doc/latex/pixelart/pixelart.pdf details="Package documentation" -srccontainersize 6560 -srccontainerchecksum 9b69ddc19d4ca5ca050ff22ea88dd5be1743c5e910066d8f412ce59620906e642dc979831d571ebe44e05b5284cc4f36ab05935bfc03c4a82b869bad24672199 -srcfiles size=6 - RELOC/source/latex/pixelart/pixelart.dtx - RELOC/source/latex/pixelart/pixelart.ins -runfiles size=1 + RELOC/doc/latex/pixelart/pixelart.tex + RELOC/doc/latex/pixelart/pixelart0.pdf + RELOC/doc/latex/pixelart/pixelart0.tex +runfiles size=8 + RELOC/tex/latex/pixelart/pixelart.lua RELOC/tex/latex/pixelart/pixelart.sty + RELOC/tex/latex/pixelart/pixelart0.sty catalogue-contact-bugs https://framagit.org/spalax/pixelart/issues catalogue-contact-repository https://framagit.org/spalax/pixelart catalogue-ctan /graphics/pgf/contrib/pixelart catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz luatex +catalogue-version 1.0.2 + +name pixelarttikz +category Package +revision 65649 +shortdesc Work with PixelArts, with TikZ +relocated 1 +longdesc The package defines commands and an environment for displaying +longdesc pixel arts. +containersize 1912 +containerchecksum a22bc217cbb20081d44684180f40da9883a17f133f8214ef141ba25924657f51517189d567c08f71e76b6cd3704eae4050d4757479925f23a9e5b5a8faa90ff2 +doccontainersize 813496 +doccontainerchecksum 2a3e6ed9f865fb75a3ae7089e00e3e8cfb4ab5ad20eca21f697022af5342f292505de24814b6137a31d6aa05f204618cb94f1628d8bd51e64530d898b6cba5a0 +docfiles size=257 + RELOC/doc/latex/pixelarttikz/PixelArtTikz-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/pixelarttikz/PixelArtTikz-doc-en.tex + RELOC/doc/latex/pixelarttikz/PixelArtTikz-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/pixelarttikz/PixelArtTikz-doc-fr.tex + RELOC/doc/latex/pixelarttikz/README.md details="Readme" + RELOC/doc/latex/pixelarttikz/base.csv + RELOC/doc/latex/pixelarttikz/cap.csv + RELOC/doc/latex/pixelarttikz/test1.csv +runfiles size=3 + RELOC/tex/latex/pixelarttikz/PixelArtTikz.sty +catalogue-contact-bugs https://github.com/cpierquet/PixelArtTikz/issues +catalogue-contact-repository https://github.com/cpierquet/PixelArtTikz +catalogue-ctan /graphics/pgf/contrib/pixelarttikz +catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz -catalogue-version 0.2.0 +catalogue-version 0.1.0 name pkfix category Package @@ -243098,15 +247749,6 @@ containerchecksum 2b5fa9f5e73d9f4de4df025f663cc4c6bc445efa18d300a72cdc25e7370b26 binfiles arch=armhf-linux size=1 bin/armhf-linux/pkfix-helper -name pkfix-helper.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of pkfix-helper -containersize 340 -containerchecksum e911ef06e4ee79b8a1469b4e1b0721026839cad855e4c8f08ba54fe6811a55083194cfd1dce061656dd2d07fc50f587d7a9389cf8e02cf3c2f8a4c59c51d0405 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pkfix-helper - name pkfix-helper.i386-freebsd category Package revision 16472 @@ -243152,14 +247794,14 @@ containerchecksum 965873797a8a4697b0e117e23ec95fb05eca93148a95e42e33ce40601540db binfiles arch=universal-darwin size=1 bin/universal-darwin/pkfix-helper -name pkfix-helper.win32 +name pkfix-helper.windows category Package -revision 15404 -shortdesc win32 files of pkfix-helper -containersize 692 -containerchecksum 4371bf1b0cc4df3cb4b32b23b81147e77c18a1504cafe5e98b999afb1a1323f310e22e49513771c3a224efb454b329187abb233f22092c4b6b6cef21425ab6db -binfiles arch=win32 size=1 - bin/win32/pkfix-helper.exe +revision 65891 +shortdesc windows files of pkfix-helper +containersize 2308 +containerchecksum d1043602a734ea1ece6b72c81af548be4ddd3bf3ba330dfa8acddb25f8762d73537c7ed311055abd7b1826ead446a890e3bbc8b1ae61f92de9fb2055ca4c1f05 +binfiles arch=windows size=2 + bin/windows/pkfix-helper.exe name pkfix-helper.x86_64-cygwin category Package @@ -243242,15 +247884,6 @@ containerchecksum a286f9e981bcab87a8061a3fa89edab974ad8fefada1270e30787dc656d531 binfiles arch=armhf-linux size=1 bin/armhf-linux/pkfix -name pkfix.i386-cygwin -category Package -revision 13364 -shortdesc i386-cygwin files of pkfix -containersize 336 -containerchecksum f9332165c66122ce9baeb03287a929efc9f16ddee166d263717d281e66192044cb61b7ed23c1496391017ecefa8d91f88f600a0137ff1ee1920c25f1e3a1a3b2 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pkfix - name pkfix.i386-freebsd category Package revision 16472 @@ -243296,14 +247929,14 @@ containerchecksum 4d85df40aa977bc5e3c750a52dccd211f54fd720fd8444ed8ae3b780136d9c binfiles arch=universal-darwin size=1 bin/universal-darwin/pkfix -name pkfix.win32 +name pkfix.windows category Package -revision 15404 -shortdesc win32 files of pkfix -containersize 680 -containerchecksum 138b312b3ba034455b6e43a9c0b11206d3def9e6c36b3f65a96ea78f2a1ae7b154460a8e3d44b7adebb427f415c79f47f5805261cb887cdf5c42f4d55d2a1279 -binfiles arch=win32 size=1 - bin/win32/pkfix.exe +revision 65891 +shortdesc windows files of pkfix +containersize 2300 +containerchecksum 43164b393ef1102529b2951108b507948c9dfb404d57d884b4f23d8035b9af4d723d3ef12bef48935f865ff31df693dbe1c5e4ec183f3244669494c6093e71f0 +binfiles arch=windows size=2 + bin/windows/pkfix.exe name pkfix.x86_64-cygwin category Package @@ -243391,16 +248024,16 @@ catalogue-version 0.7.0 name pkuthss category Package -revision 58729 +revision 64869 shortdesc LaTeX template for dissertations in Peking University relocated 1 longdesc The package provides a simple, clear and flexible LaTeX longdesc template for dissertations in Peking University. -containersize 16648 -containerchecksum 34f4fce7ef86327be8353d8a5634c8498007a8b30ee847b01a577610bf1d1a31f862bdd3888888a022563333e275f74f686efdea5ae8d7fe82f99e6d8e71f212 -doccontainersize 435360 -doccontainerchecksum ee343be7e84257bafd28ed10de0e5724c19c832a170ab8b176a0681da3bd108ba2f914e214e1c7045ffcdb981e72b3ba08c736c6486ad756af736e48e13738d0 -docfiles size=149 +containersize 16880 +containerchecksum 766411cd122b6ee856834ab6b898f236509fd487f14421d4606fb46e628e5a8c9269321b373b8ec5b4ec12bbf13818770021c45b36202447b12eae68a80032f4 +doccontainersize 465972 +doccontainerchecksum 6ce10aa1e91287f3ceae0ceca54a1a8d91428c84def873c3d59876c22dcb87d6d2a7ed9d0894be4f2adbee769398f0ce1139b55269badd773f9a881fecfa3476 +docfiles size=159 RELOC/doc/latex/pkuthss/README.txt details="Readme" RELOC/doc/latex/pkuthss/example.pdf RELOC/doc/latex/pkuthss/example/Make.bat @@ -243431,23 +248064,26 @@ docfiles size=149 RELOC/doc/latex/pkuthss/readme/chap/pkuthss-copy.tex RELOC/doc/latex/pkuthss/readme/chap/pkuthss-encl1.tex RELOC/doc/latex/pkuthss/readme/chap/pkuthss-intro.tex + RELOC/doc/latex/pkuthss/readme/ctex-fontset-pkuthss.def + RELOC/doc/latex/pkuthss/readme/ctexopts.cfg RELOC/doc/latex/pkuthss/readme/latexmkrc RELOC/doc/latex/pkuthss/readme/pkuthss-english.patch RELOC/doc/latex/pkuthss/readme/pkuthss.bib RELOC/doc/latex/pkuthss/readme/pkuthss.tex -runfiles size=13 +runfiles size=14 RELOC/tex/latex/pkuthss/pkulogo.eps RELOC/tex/latex/pkuthss/pkulogo.pdf RELOC/tex/latex/pkuthss/pkuthss-gbk.def RELOC/tex/latex/pkuthss/pkuthss-utf8.def RELOC/tex/latex/pkuthss/pkuthss.cls + RELOC/tex/latex/pkuthss/pkuthss.def RELOC/tex/latex/pkuthss/pkuword.eps RELOC/tex/latex/pkuthss/pkuword.pdf catalogue-contact-repository https://gitea.com/CasperVector/pkuthss catalogue-ctan /macros/latex/contrib/pkuthss catalogue-license lppl1.3 bsd pd catalogue-topics dissertation class chinese -catalogue-version 1.9.0 +catalogue-version 1.9.3 name pl category Package @@ -244201,7 +248837,7 @@ catalogue-version 0.1 name platex category Package -revision 58842 +revision 66186 shortdesc pLaTeX2e and miscellaneous macros for pTeX longdesc The bundle provides pLaTeX2e and miscellaneous macros for pTeX longdesc and e-pTeX. This is a community edition forked from the @@ -244225,13 +248861,14 @@ depend ptex depend ptex-fonts depend tex-ini-files depend unicode-data +depend uptex execute AddFormat name=platex engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,ptex-fonts,latex -execute AddFormat name=platex-dev engine=eptex options="*platex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,ptex-fonts,l3kernel,latex-base-dev,latex-firstaid-dev -containersize 41476 -containerchecksum 3e1dd06dc528d3290a97166bc9f8611140b5a25432a046e38f54a916d14ee926639965a2a7f99b85133c4a622d2fb7b7c65391d87977c7dc18eca71fe0f79f1d -doccontainersize 1489476 -doccontainerchecksum 06a4e0ad43067a256bae884fe543a0b2996b509db56642c37b3a2d55a89fa230342358c7f31b13ee253a07f1af8e02c918e104684332b0455af3f4927b3e18fc -docfiles size=381 +execute AddFormat name=platex-dev engine=euptex options="*platex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,ptex-fonts,l3kernel,latex-base-dev,latex-firstaid-dev +containersize 42308 +containerchecksum f258b1b54d2d0726fe97323c23f2bdcf1bccfdb1ee7dc1b9a32ac8af7b7c8b1a1f0a9958c5d43c3c33ff414358634be4c3c790f035625b7fe80a4f9f42b2adfa +doccontainersize 1982668 +doccontainerchecksum 51992f6d3ed6749e9136db4930644b82c435efb6af85fcac1dc254c22e06c5fd017d9bc83f642060d814b86c56fdde6ff97056240b0ab857743203fe5ae2fd7d +docfiles size=512 texmf-dist/doc/man/man1/platex.1 texmf-dist/doc/man/man1/platex.man1.pdf texmf-dist/doc/platex/base/LICENSE @@ -244241,9 +248878,9 @@ docfiles size=381 texmf-dist/doc/platex/base/platex.pdf details="Package documentation" language="ja" texmf-dist/doc/platex/base/platexrelease.pdf texmf-dist/doc/platex/base/pldoc.pdf -srccontainersize 136884 -srccontainerchecksum 9acc5cd2012c23541c450fe903a3e3070949ff0bf8b43a5bfbc1a899b79ac75b121c7f13435f0fba13582d44d883bc14d4d26760fcc770c15020f0efa102b898 -srcfiles size=211 +srccontainersize 140240 +srccontainerchecksum e0cf572377102151ba3f49f58d27b352641fccfdc58cae60acadc36e26d12ff21f19119f940d5f54e7f0359b572ff746f07a86a8cd524b05d90efc43480756a2 +srcfiles size=218 texmf-dist/source/platex/base/Makefile texmf-dist/source/platex/base/jclasses.dtx texmf-dist/source/platex/base/jltxdoc.dtx @@ -244283,8 +248920,9 @@ srcfiles size=211 texmf-dist/source/platex/base/plnewsc13.tex texmf-dist/source/platex/base/plnewsc14.tex texmf-dist/source/platex/base/plnewsc15.tex + texmf-dist/source/platex/base/plnewsc16.tex texmf-dist/source/platex/base/plvers.dtx -runfiles size=166 +runfiles size=169 texmf-dist/tex/platex/base/exppl2e.sty texmf-dist/tex/platex/base/jarticle.cls texmf-dist/tex/platex/base/jarticle.sty @@ -244330,24 +248968,24 @@ runfiles size=166 texmf-dist/tex/platex/base/tsize12.clo texmf-dist/tex/platex/config/platex.ini catalogue-contact-repository https://github.com/texjporg/platex -catalogue-ctan /language/japanese/platex +catalogue-ctan /macros/jptex/latex/platex catalogue-license bsd3 catalogue-topics format class japanese name platex-tools category Package -revision 57729 +revision 66185 shortdesc pLaTeX standard tools bundle relocated 1 longdesc This bundle is an extended version of the latex-tools bundle longdesc developed by the LaTeX team, mainly intended to support longdesc pLaTeX2e and upLaTeX2e. Currently patches for the latex-tools longdesc bundle and Martin Schroder's ms bundle are included. -containersize 8188 -containerchecksum 5e5352dd6813ed5f90d1f9f1efd4e4f8bc53e6b6f0a932f2d8d5715cfa0f7b6df96320381daff0728e64f4df5239aebf65c2fd7796310d080ed857875732e7d9 -doccontainersize 573912 -doccontainerchecksum 0834655e25b8684ad5e51dca1e128a07da38ce9b012205063feb7a54aec2412d706cb4560a445cc80734493c84b54d86b912bf659a72baa642f26174e0063875 -docfiles size=163 +containersize 8284 +containerchecksum 87646f8cd885b75c3e7dc0edebc32675afe2d02f87c37ebf6abda7b68256f002440fd1a94f3f13dffbd8a7b694f3813d4115621f931b9a3a9d73491bda7c4296 +doccontainersize 576584 +doccontainerchecksum cf04b2c5d4df6d68bfdc3b0a3a8dc0f988cb0549252b3a6ccba58df685c41a9312197a63c97c3ff63c1ec15177a43d1e8064fd449054eed3df968fe213703552 +docfiles size=164 RELOC/doc/latex/platex-tools/LICENSE RELOC/doc/latex/platex-tools/README.md details="Readme" RELOC/doc/latex/platex-tools/plarray.pdf details="Documentation of the plarray package" language="ja" @@ -244385,166 +249023,156 @@ runfiles size=13 RELOC/tex/latex/platex-tools/pxmulticol.sty RELOC/tex/latex/platex-tools/pxxspace.sty catalogue-contact-repository https://github.com/aminophen/platex-tools -catalogue-ctan /language/japanese/platex-tools +catalogue-ctan /macros/jptex/latex/platex-tools catalogue-license bsd3 catalogue-topics japanese collection name platex.aarch64-linux category Package -revision 52800 +revision 66079 shortdesc aarch64-linux files of platex -containersize 344 -containerchecksum 23bfb8379a325c8d3d28481bd988c58c87b66805281a70139f98fb25319f0901af9f383bb7d2a3787bb722c4f1b3f94f9280a89da0f1f58aab3974c114f61687 +containersize 348 +containerchecksum f6e46ad63c6696373b13fd920b2a7842afebb6d62abbd703c471279c25a9d6ca7fda9f0c76c9a86d732ba2fe3e1477b799f1cc429542c91b82226b3aac2af92b binfiles arch=aarch64-linux size=2 bin/aarch64-linux/platex bin/aarch64-linux/platex-dev name platex.amd64-freebsd category Package -revision 52800 +revision 66079 shortdesc amd64-freebsd files of platex -containersize 344 -containerchecksum ec4e199d8d8900db4d6f957aaa87272e71ddd56c2450e63016f44da3091226b1bafaedd819512a10abb5dc84bddc3152a283ee1bcd7755d75f6fb164a284cccd +containersize 352 +containerchecksum d2d722f0700ac20d0712eea6f99f02c9fec434b77434f9c03de4742c6a72ba4b38fd5fd8eec329a61091e9731dcc747459f2ce9943214fd59782c0b239edd7b9 binfiles arch=amd64-freebsd size=2 bin/amd64-freebsd/platex bin/amd64-freebsd/platex-dev name platex.amd64-netbsd category Package -revision 52800 +revision 66079 shortdesc amd64-netbsd files of platex -containersize 340 -containerchecksum eb40dda8c1355421ee30fcedb0296bc31a3417163740149ea6586d389c01041b79d1c476750314af57051b6af6830b690e7917539f523683a4914abc2bff677c +containersize 348 +containerchecksum 7c121847a5df2d614b58c06c26e3e0d97ccbccdea279f2de235c8fecc5c00295334558706cb9a5a6562ed570436c479611553bcc120a94a28b6be82ce2e03ea5 binfiles arch=amd64-netbsd size=2 bin/amd64-netbsd/platex bin/amd64-netbsd/platex-dev name platex.armhf-linux category Package -revision 52800 +revision 66079 shortdesc armhf-linux files of platex -containersize 344 -containerchecksum b5bdf7b068c3f1698ebd0d59457aa3cf20e27ae4db0221780606487cc12787a5399b7e5a1d41394644b65587badf55f2aac0b826c2154b6285ae6674e4f044ee +containersize 348 +containerchecksum 5c08eb15422e11cfe1efd548f3bf597ae13184aa158c15e9961ad890f2b3272fd84ceaf6efdecfc062c3a57cc1be34359383cd7bb58c15469e741357a7950602 binfiles arch=armhf-linux size=2 bin/armhf-linux/platex bin/armhf-linux/platex-dev -name platex.i386-cygwin -category Package -revision 52812 -shortdesc i386-cygwin files of platex -containersize 344 -containerchecksum c22e2d0884db433d582fbc4290975aca8e88f4d9c29b7bf74a55537668a0624370a49c908a794c9fe36b020adb09b650bbb0fecd2a5d9544f8bb4727f9205d1e -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/platex - bin/i386-cygwin/platex-dev - name platex.i386-freebsd category Package -revision 52800 +revision 66079 shortdesc i386-freebsd files of platex -containersize 340 -containerchecksum ee33cdfa4968b24eb29bd353b871b64ecda02edc2587e4ef0731d74878d62afaab090b85a388a9fa00c89da609a2c8e7ed0a4fb03d0d8defd4a505727295e6f3 +containersize 348 +containerchecksum f71871d918f9792da25da998bf1d362f67e537476474e9004bd472061cc27c363121353dacbbeceda8c36ba6a346d34792f8c7e8ad354170741d86a1952d0d75 binfiles arch=i386-freebsd size=2 bin/i386-freebsd/platex bin/i386-freebsd/platex-dev name platex.i386-linux category Package -revision 52800 +revision 66079 shortdesc i386-linux files of platex -containersize 344 -containerchecksum da24d10103f3e8d68338bff30025026b2549267f5d00eeba06c935caeeb065d2731548ace01c8057a871f8deecac178b24d5732b0a5f6bcde3467d8c486ce7c5 +containersize 348 +containerchecksum 307c74f83147326fd126bfd07b1e74c1343edfedbb07c5910bfaced591e467df9f6c7bb2fc6915b1b3f6710239448da9e39e1932f0242ef88e2371e9d1308451 binfiles arch=i386-linux size=2 bin/i386-linux/platex bin/i386-linux/platex-dev name platex.i386-netbsd category Package -revision 52800 +revision 66079 shortdesc i386-netbsd files of platex -containersize 344 -containerchecksum 63baf155eecd76d2dacf2d6c007b8e81a5895c88e1378dbfd12bb12d475a439f212ea9fe5eb8c5ef599e4badb9710b328161e6c3bf7b4edc394dd847f63e6c4b +containersize 348 +containerchecksum 6fe5b9a6e8807cdd5f9fc438d06a505f9f23cbd8aa00083c0d7f579ad90578014d9b9e65e8df8ecd13bc1520d83a7b61fdbdb4b16cf1459227f825c096ef2357 binfiles arch=i386-netbsd size=2 bin/i386-netbsd/platex bin/i386-netbsd/platex-dev name platex.i386-solaris category Package -revision 52800 +revision 66126 shortdesc i386-solaris files of platex -containersize 344 -containerchecksum 523642eec6d9bcfb105668e64c8f5a06be814db8423c10e61bbc28790019a3b3d8c04220b0b1711d56c9a93e22289361643037aa52052117e107802609532716 +containersize 348 +containerchecksum edea1da782b23ff13f914e68e031f448b1c209cdf8361e3cdf10ea1e5bf5aeaf5846e9ec007e0899d7e112cd1b20111bb703d54137bea387319caea5dc7f9bf4 binfiles arch=i386-solaris size=2 bin/i386-solaris/platex bin/i386-solaris/platex-dev name platex.universal-darwin category Package -revision 57908 +revision 66079 shortdesc universal-darwin files of platex -containersize 340 -containerchecksum 3a3cdfb060bf7486c378d56710bd6785fe8414d9c37eb224ceb25ac94e52fd57ff29206e9d19c3cb67b38df3af06fcb58041ec3058ee4eda080ee51e9d60725e +containersize 352 +containerchecksum ff885aa6601ae396bc3260ccae446ee15e7a2a759d11a725554fe7b81d407a8d0d05b7940dfc146ae43268d44808ce40c9e9f35eb2be6e5b026cc120748c137d binfiles arch=universal-darwin size=2 bin/universal-darwin/platex bin/universal-darwin/platex-dev -name platex.win32 +name platex.windows category Package -revision 57883 -shortdesc win32 files of platex -containersize 884 -containerchecksum 6d0996a722648e84cf5f535612030dae9db829ce8ddae17f5560b9aa2f9426ae5195fe3073213e3d7a658a2b46339aff8f7fe88e0feff947c780b0eb1b99cf6e -binfiles arch=win32 size=2 - bin/win32/platex-dev.exe - bin/win32/platex.exe +revision 66079 +shortdesc windows files of platex +containersize 2448 +containerchecksum 28017665c352de1f32c7ae2e3c2b666a48b44b99627a474a2ad6bcbb151ab8c1822c3118a25988fb0bf622e749e5b32b5468e21ce4f70c6de68f84f74455f4ad +binfiles arch=windows size=4 + bin/windows/platex-dev.exe + bin/windows/platex.exe name platex.x86_64-cygwin category Package -revision 52812 +revision 66081 shortdesc x86_64-cygwin files of platex -containersize 348 -containerchecksum 474ffb158c7237e4ac81e04de4eeb35715b312bb0306b4e1493d3982f24b7b0be59552d4aed26c6c3f43701b32aac0f7263901b216ebb6efb5c5afcd5215660a +containersize 352 +containerchecksum 10be79ea037aae9e2c384c2cc89289a8ef691783672990acf56faa01f53bf85f17e620fe4a68968b5fecd998c665a545ad7ac8abfad751839dc444ac70de1e48 binfiles arch=x86_64-cygwin size=2 bin/x86_64-cygwin/platex bin/x86_64-cygwin/platex-dev name platex.x86_64-darwinlegacy category Package -revision 52800 +revision 66079 shortdesc x86_64-darwinlegacy files of platex -containersize 352 -containerchecksum 5fa578115ddc58c45a519400b746e51f811583ec7bb52b39dc78795cbe5e8dbda3ac4431ac91805daa24691566882bf6e0732427694dbfac0d3ecea12b88ac34 +containersize 356 +containerchecksum c41be30c687a7120b1be117655d13f97606a08413907d79684406dd3aa71fd427a9c10ec79df6d6e3521e031d131d11b4a88b0de7e7db10f889a93d7aaa96d33 binfiles arch=x86_64-darwinlegacy size=2 bin/x86_64-darwinlegacy/platex bin/x86_64-darwinlegacy/platex-dev name platex.x86_64-linux category Package -revision 52800 +revision 66079 shortdesc x86_64-linux files of platex -containersize 340 -containerchecksum e700a5323b3f1986829f62b1836b23f2fcacc78d3b8847632474d34de501ec8023469b8e15c5c25a634606a34796a292aad41d80d873c7389ff80cded74c43b9 +containersize 344 +containerchecksum b06a3d7a54970d4ac40c4d04bcadbf2a408ab941136a6bcc96f5504c281922edec0da36808c6ce49320d57dccf419aca3b119f0b021d873b0e85b2648965a189 binfiles arch=x86_64-linux size=2 bin/x86_64-linux/platex bin/x86_64-linux/platex-dev name platex.x86_64-linuxmusl category Package -revision 52800 +revision 66079 shortdesc x86_64-linuxmusl files of platex -containersize 344 -containerchecksum 7c3612e5765d249cbebf37c52bd83c4829e2c595e96a662700ac415d272a87613b72f1f3963ee125e4828f9c84ad479214b45df813d1936a4e74569c4c8b3838 +containersize 352 +containerchecksum 676eb9422564b9ca781a09cf96bbe0b5c9f61dcc232f7cd1b0bd665436d84ead9980ee2ca89a4a285cb2a68d70ebe5192441936c60595c7d5618762c1be713da binfiles arch=x86_64-linuxmusl size=2 bin/x86_64-linuxmusl/platex bin/x86_64-linuxmusl/platex-dev name platex.x86_64-solaris category Package -revision 52800 +revision 66126 shortdesc x86_64-solaris files of platex -containersize 348 -containerchecksum 9ae28d458b602d0569152cd18a3dc8b030cf398ec7fa11d2aedb9c6cbaeead79626874d2a27a7e4ace5927d5ae9ce019fbc700fbf899c7fea0181bef37d76f38 +containersize 352 +containerchecksum 1033a23acb4758dc968c6b68d535e22fd858de50a07ba83205965956d74579bf50522fbb989acb76dd353eef890575cc9fb906e2fb11320e8e1147693ccb9354 binfiles arch=x86_64-solaris size=2 bin/x86_64-solaris/platex bin/x86_64-solaris/platex-dev @@ -244582,7 +249210,7 @@ catalogue-version 3.1 name plautopatch category Package -revision 57731 +revision 64072 shortdesc Automated patches for pLaTeX/upLaTeX relocated 1 longdesc Japanese pLaTeX/upLaTeX formats and packages often conflict @@ -244593,13 +249221,12 @@ longdesc should be no need to worry about such incompatibilities, longdesc because specific patches are loaded automatically whenever longdesc necessary. This helps not only to simplify source files, but longdesc also to make the appearance of working pLaTeX/upLaTeX sources -longdesc similar to those of ordinary LaTeX ones. This package depends -longdesc on the filehook package written by Martin Scharrer. -containersize 6956 -containerchecksum df8d83e2c12167d32d114c61737bd4b834ddd3f9851c238ce1b07c1aff3469ab2bbd7eb6b90047b75ff36a26ed4ba53c97782dd7462bd559615075cd38517c0e -doccontainersize 127732 -doccontainerchecksum afd9185a9bc5a7f403b24bc948da9ac6939efb0ccf2c9063950297183c3dd1db08de43ff98824e66b0c497a2fafc3689678dffafc67ef92bf035a1a0a2066a4f -docfiles size=39 +longdesc similar to those of ordinary LaTeX ones. +containersize 7076 +containerchecksum 1313cf815568dc385d5d1691bba7e57e246c45e71242acb94904ca0fe796940afb59bd3d07f728a9e407a9a0914b3890a7e7dc3c8bde3ddab7b36c3ed9ffcefd +doccontainersize 137636 +doccontainerchecksum e4bcfbe263cd17dcefdc239f06f1287ff8d936f0a6b5ea89f914d7a4254e08040c076be0317f4e3cf2aa96542878e1c93fd3ad5b9633f4c3c3d85ee9d719f4d2 +docfiles size=41 RELOC/doc/latex/plautopatch/LICENSE RELOC/doc/latex/plautopatch/README.md details="Readme" RELOC/doc/latex/plautopatch/plautopatch-ja.pdf details="Package documentation (Japanese)" language="ja" @@ -244615,10 +249242,10 @@ runfiles size=10 RELOC/tex/latex/plautopatch/pxpgfrcs.sty RELOC/tex/latex/plautopatch/pxstfloats.sty catalogue-contact-repository https://github.com/aminophen/plautopatch -catalogue-ctan /language/japanese/plautopatch +catalogue-ctan /macros/jptex/latex/plautopatch catalogue-license bsd3 catalogue-topics japanese debug-supp bugfix -catalogue-version 0.9n +catalogue-version 0.9q name play category Package @@ -244648,7 +249275,7 @@ catalogue-topics drama-script name playfair category Package -revision 56005 +revision 64857 shortdesc Playfair Display fonts with LaTeX support relocated 1 longdesc This package provides the PlayFairDisplay family of fonts, @@ -244662,10 +249289,10 @@ longdesc heavier than the lowercase characters. This helps achieve a longdesc more even typographical colour when typesetting proper nouns longdesc and initialisms. execute addMap PlayfairDisplay.map -containersize 1679544 -containerchecksum bd9c88074757e0b34fc569e3f383c6b8045216ffe5da4ec897d0c28365063d7a66511ae190017c24dbea92782be05735f62a0684909ca76731a30f6d9855fe5b -doccontainersize 251112 -doccontainerchecksum 03dfa23f74a3f1f23b4bd4d28ff6580e248074e07f2fc515db3fd917bd10f998886e3ef987e934b8fee7be5467b9f8d9810e9ccb6844af9bf67b8726ddff9773 +containersize 1679528 +containerchecksum 2c75ccda034c607fa67993922e498347cf8a708c31360ac63d8304ebcf538e2012529864c6c3102a63b0320db68101fddae021ec396efaf0396d4d609cd0d711 +doccontainersize 251116 +doccontainerchecksum 006319162a3a7035955064d7ab99e704bf828cc7441a9c930cfccf4cb7e70ac52ff672de3ce8b415fbfb20f29a0b4c09703fe0e3715d15e38c1293973bd3a86a docfiles size=67 RELOC/doc/fonts/playfair/OFL.txt RELOC/doc/fonts/playfair/Playfair_Display_A4_specimen.pdf @@ -244994,7 +249621,7 @@ catalogue-topics font font-display font-body font-serif font-proportional font-o name plex category Package -revision 54512 +revision 64496 shortdesc Support for IBM Plex fonts relocated 1 longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -245003,10 +249630,10 @@ longdesc Mono families are available in eight weights: Regular, Light, longdesc ExtraLight, Thin, Bold, Text, Medium and SemiBold (with longdesc corresponding italics). execute addMap plex.map -containersize 10534068 -containerchecksum 4d23f567356527629e7eb6cec23287c1e55db3afea71faf8ee86a4288378fe2ee7fee6d34c311f5f5e3b66300892664013752f2f0fb802d22ecc76980c27da87 -doccontainersize 336496 -doccontainerchecksum 1ea960e85e33c4739da58cc8a2157672daa06dc7257c23c3339673cb26eee549bad49809330a05867c24759fa907721aaaa48e9d43fb6118e7b465caf4532090 +containersize 10488340 +containerchecksum 1363c53067f463ebb702151b61898489d4061db40013af82d9da9660cfc0a9c5d1d12ba9cfa15f43417427bce2bc47cbafc26e76a9d8b85098096ae156d3d97c +doccontainersize 336512 +doccontainerchecksum eade0bcaf39a3043aa11c20a86ceb90eb88abf22eb8005c81b9bb688d4f8a93f6ee6f37bd073e69ad6f7989def618a016cd583199d75db0776bc19e81d23099e docfiles size=86 RELOC/doc/fonts/plex/LICENSE.txt RELOC/doc/fonts/plex/README details="Readme" @@ -246694,7 +251321,7 @@ catalogue-version 3.0 name pm-isomath category Package -revision 59077 +revision 60368 shortdesc Poor man ISO math for pdfLaTeX users relocated 1 longdesc This small package realizes a poor man approximation of the ISO @@ -246703,23 +251330,23 @@ longdesc other more elegant solutions, it does not load any math longdesc alphabet, since pdfLaTeX can use only a maximum of such longdesc alphabets. The necessary user macros are defined for typsetting longdesc common math symbols that require special ISO treatment. -containersize 2664 -containerchecksum 726fd53c7447a1bce517197f9adb413990744ddd10633c7f59b64223684f7bd1deb0bf2749fc8f2455dc70cddd5eac17ba0e91e94e4aeedfd809652912736a30 -doccontainersize 624016 -doccontainerchecksum 2ed078636a64f74bccb06818cc253f31199fc2a0c73a58ecf368c6d5bb6f828991ad0955d699f6da4e120b3a3efb5740b8be1e9ceab6b5628fdd79a58709fe6f -docfiles size=154 +containersize 2840 +containerchecksum 89e11156c2a4b7d05fc3404b4badcbac94ed190db4c215e573c84cdbc8fd46c5775b19272e423df1806e8a38d61d8c071aca7d38380637c79f06c411a05ee468 +doccontainersize 681608 +doccontainerchecksum 92366bb3963f1615de3cba205345d5d799fac04bf4935574868be140109756fe9a9a2d7cf7a685918018919ae2350e9ff717cd898fc0404205f21d56a359ebd0 +docfiles size=172 RELOC/doc/latex/pm-isomath/README.txt details="Readme" RELOC/doc/latex/pm-isomath/pm-isomath.pdf details="Package documentation" -srccontainersize 17108 -srccontainerchecksum f88a59c3d88601ef0125c81df0d1d08181b60ba91a3dac9db138a3e66e6f367f5fba217d5491199d7631414c952dc8b6be44339c1a1457d88ad1c897a648f7b7 -srcfiles size=14 +srccontainersize 19428 +srccontainerchecksum fac0256323bf26f55e5908c718b8622f4996b2b792ec3770b1db4a31d91ccba84a8e21e839710e1d6305448044c5140fc38a4eab06954783e428dd94008d2fc4 +srcfiles size=16 RELOC/source/latex/pm-isomath/pm-isomath.dtx runfiles size=2 RELOC/tex/latex/pm-isomath/pm-isomath.sty catalogue-ctan /macros/latex/contrib/pm-isomath catalogue-license lppl1.3c catalogue-topics maths physics -catalogue-version 1.1.01 +catalogue-version 1.2.00 name pmboxdraw category Package @@ -246775,7 +251402,7 @@ catalogue-version 1.0 name pmhanguljamo category Package -revision 54378 +revision 66361 shortdesc Poor man's Hangul Jamo input method relocated 1 longdesc This package provides a Hangul transliteration input method @@ -246783,29 +251410,32 @@ longdesc that allows to typeset Korean letters (Hangul) using the proper longdesc fonts. The name is derived from "Poor man's Hangul Jamo Input longdesc Method". The use of XeLaTeX is recommended. pdfTeX is not longdesc supported. -containersize 5136 -containerchecksum a4b16b981ff495212daac434123e0ab8d91ac862acf78f92ecab20c793bfc60e1b0e159113c9a5dc15fe06653531c1ac4a4de6208512baf089c299dc7dc75642 -doccontainersize 683796 -doccontainerchecksum 7188c7bd104bb507866c5b793a3da3ed640416847a032b6c2df8eb94a47ec2ff17d11d3494b2f2755c2ce3b01a12c12a2d6abd374c887c2f7418a6fb8c93aa0c -docfiles size=220 +containersize 9980 +containerchecksum 099517421e9590597157121de5d53eccaae0784969288762ebd8e35a31eb12ce6d5466f890204bbb69d0d9c805c314b6a475653a1cb26ef270672683e2625a24 +doccontainersize 967940 +doccontainerchecksum 12f324ea6c852b134868f4365a53c2f434adac235d01efdbdad0d5df138587acb28fa7324e10f5fc996c44f43289322bdbaf764107cea4e66d7f999b71807384 +docfiles size=304 RELOC/doc/latex/pmhanguljamo/README.md details="Readme" RELOC/doc/latex/pmhanguljamo/munjangganghwa.jpg RELOC/doc/latex/pmhanguljamo/pmhanguljamo-doc.pdf details="Package documentation (English)" RELOC/doc/latex/pmhanguljamo/pmhanguljamo-doc.tex RELOC/doc/latex/pmhanguljamo/pmhanguljamo-kdoc.pdf details="Package documentation (Korean)" language="ko" RELOC/doc/latex/pmhanguljamo/pmhanguljamo-kdoc.tex -runfiles size=8 +runfiles size=16 + RELOC/tex/latex/pmhanguljamo/frkjamofull.data.tex + RELOC/tex/latex/pmhanguljamo/pmhanguljamo-frkim.code.tex + RELOC/tex/latex/pmhanguljamo/pmhanguljamo-frkim.sty RELOC/tex/latex/pmhanguljamo/pmhanguljamo-rrk.sty RELOC/tex/latex/pmhanguljamo/pmhanguljamo.sty catalogue-also kotex-utf catalogue-ctan /language/korean/pmhanguljamo catalogue-license lppl1.3 -catalogue-topics korean xetex -catalogue-version 0.3.4 +catalogue-topics korean xetex expl3 +catalogue-version 1.0.2 name pmx category Package -revision 57672 +revision 65926 shortdesc Preprocessor for MusiXTeX longdesc PMX provides a preprocessor for MusiXTeX. pmxab builds a TeX longdesc input file based on a .pmx input file in a much simpler @@ -246815,11 +251445,11 @@ longdesc TeX to give access to virtually all of MusiXTeX. For longdesc proof-listening, pmxab will make a MIDI file of your score. longdesc scor2prt is an auxiliary program that makes parts from a score. depend pmx.ARCH -containersize 10088 -containerchecksum 9b798a99cff71901d5200fbf843746de4c380cbf0aa5ab00c19deac443b84bb891a6ccca953dfb9f384a53f5a9a96c81fc5da0a6887bb4e7212cc977ed2a2348 -doccontainersize 685712 -doccontainerchecksum 7ab725c1d6d99e25379d4373526f12e14770f7a1f9b610fd8b09dee121b00f6b79faf4e548ef13a1429f00dcad83755acb47c7f7bf01c5517e2de852b30b0853 -docfiles size=310 +containersize 10184 +containerchecksum 433287732fbb2cb47886c6c78c923d5b6a1b5c1e71e3990084cde9bb288a282fff7fb9134a5165e0fc0908b8e60547e23cb900bc82b99717133d7600fa17dc31 +doccontainersize 636768 +doccontainerchecksum dedba4570b68a8628442716dc3a9b1699e5f531aef2737e4b3f47862a91ba69bda91d6fe6692914d2bd7b8fe3188a83fdfce8bdd219ab7c4f238a9c6ec273ffb +docfiles size=316 texmf-dist/doc/generic/pmx/ChangeLog texmf-dist/doc/generic/pmx/README details="Readme" texmf-dist/doc/generic/pmx/accents.eps @@ -246835,11 +251465,11 @@ docfiles size=310 texmf-dist/doc/generic/pmx/gpl.txt texmf-dist/doc/generic/pmx/pmx-install.pdf details="Installation details" texmf-dist/doc/generic/pmx/pmx-install.tex - texmf-dist/doc/generic/pmx/pmx294.pdf details="Package manual" - texmf-dist/doc/generic/pmx/pmx294.tex + texmf-dist/doc/generic/pmx/pmx300.pdf details="Package manual" + texmf-dist/doc/generic/pmx/pmx300.tex texmf-dist/doc/generic/pmx/pmxab.pdf - texmf-dist/doc/generic/pmx/ref294.pdf - texmf-dist/doc/generic/pmx/ref294.tex + texmf-dist/doc/generic/pmx/ref300.pdf + texmf-dist/doc/generic/pmx/ref300.tex texmf-dist/doc/generic/pmx/scor2prt.pdf texmf-dist/doc/generic/pmx/sjb291.eps texmf-dist/doc/generic/pmx/tremxmpl4.eps @@ -246853,164 +251483,154 @@ catalogue-contact-home http://icking-music-archive.org/software/indexmt6.html catalogue-ctan /support/pmx catalogue-license gpl2 catalogue-topics music -catalogue-version 2.94a +catalogue-version 3.00 name pmx.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of pmx -containersize 245112 -containerchecksum 0f2bdceb14583968f24ba610ca87e2c0ff78554baa9c363c4072549883be4ff29cf6065e2c7562d24376de5335eb8db4c576bf7c0bc4a304955378239579860f -binfiles arch=aarch64-linux size=158 +containersize 245192 +containerchecksum 5c2f82d9ed1e3c6efb9d025018cc73ee046412fa66192a6dad14f96c4f3086867fa666fdd325def21b7704a249fd6ee9d62e44e062d89f1518bb532ba09754bb +binfiles arch=aarch64-linux size=159 bin/aarch64-linux/pmxab bin/aarch64-linux/scor2prt name pmx.amd64-freebsd category Package -revision 57941 +revision 65877 shortdesc amd64-freebsd files of pmx -containersize 220600 -containerchecksum 76a03993a60b1130b9ee17a3f77a4c3453ba7eed4133dab3d01bc7e5104365019775c9f5dc4a6941154cd9c87f2559f51fec758d7b1f59001f9945fb5a1fd394 -binfiles arch=amd64-freebsd size=156 +containersize 220392 +containerchecksum 1ebdb49dde2669126489132bba54ff5dc07e058542c4b9a4d3ea9763c478d9ad85dc2d2404095a36201e659fe4fe36100433bd94f176be29093e485dea3e7215 +binfiles arch=amd64-freebsd size=155 bin/amd64-freebsd/pmxab bin/amd64-freebsd/scor2prt name pmx.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of pmx -containersize 199516 -containerchecksum 7d767b97ecd0c094f3031ff3b58e11d2f7f65fa2a3982fdd814e4afed377f1cc6dab3132d2377b292a53e0aa6268ed3cfd4527995b8ae717b0516ffcee3fedb2 +containersize 199900 +containerchecksum 78f642ef7ca948746e145124e119044c82083beabe4fc0b8551cc3d7b6e941f94f7cb00b83b1ab2db70218f997910969ef8fd2f49f77c2fea146a28716d6cbd6 binfiles arch=amd64-netbsd size=198 bin/amd64-netbsd/pmxab bin/amd64-netbsd/scor2prt name pmx.armhf-linux category Package -revision 57957 +revision 65877 shortdesc armhf-linux files of pmx -containersize 214580 -containerchecksum 38e6f2656956c31976ecd20d2a0cb765d26ba8bc3026e9e4daecc8f4edfb82f26d6cc8a97e000f9bac22a24946d072267342b41b069a90798b2d2a5b89002428 +containersize 215176 +containerchecksum 61cfcd99bfa27a42d900ef8f507240098cb9208b61d4a0cf04be2378dc62e8c5d30b70a6024b1e54ab01f8c2d1a1d230358b14b8931a74e3a3f74bd052369be3 binfiles arch=armhf-linux size=134 bin/armhf-linux/pmxab bin/armhf-linux/scor2prt -name pmx.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of pmx -containersize 197612 -containerchecksum b1a8f6af7c91cbb1c87f8eef1b958917721ec96e82e4f11e79a209bc63e4f7749dae5f4a9326227a6ff0473ce127c943b223af834eb6dcf051655289d5eb9a16 -binfiles arch=i386-cygwin size=149 - bin/i386-cygwin/pmxab.exe - bin/i386-cygwin/scor2prt.exe - name pmx.i386-freebsd category Package -revision 57961 +revision 65877 shortdesc i386-freebsd files of pmx -containersize 182260 -containerchecksum a81e4eb85532f8ec650526ae3cfffd7bd30ae53ffb0bb507fabf4b5e047ef5551bbe5c6d5cd052d9d1f8b3fe3258f3294340b2f97bc18141df332963d786936c +containersize 182952 +containerchecksum 14016a3c90b9c8d2db0d775df4cddf28449f4bb78da43c96d824db88ca4ca117969b9157aeba3566503954c4ca761d85fc17cca753814c9c24195c0da63d269b binfiles arch=i386-freebsd size=135 bin/i386-freebsd/pmxab bin/i386-freebsd/scor2prt name pmx.i386-linux category Package -revision 57878 +revision 65877 shortdesc i386-linux files of pmx -containersize 210556 -containerchecksum 4795b2f2e9b7efa08bc97e29436848e91795aed3eb2fc45a3b677fafaac2c7e8c4299ffcd90a6c084522b9661a44c175e7ad75ed9daa6bdc82bb0a58283af79e -binfiles arch=i386-linux size=162 +containersize 215924 +containerchecksum b84d1cf9cc34bea8b0c9b30ed1f7c9c5f2531453c61451424cf2d638b0d37256a05efda61e450d7fdcc1c4f161a9dbb6a07a6a57d0cca9bf700ea3c35a9d2107 +binfiles arch=i386-linux size=167 bin/i386-linux/pmxab bin/i386-linux/scor2prt name pmx.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of pmx -containersize 158508 -containerchecksum e01a910b7201498b85aa8420b8e3c407f44ffa30abde2ed7732bf121a0c79b9fc84924502b75e9ff377c27e8fc61101b68c758e926857b7393b6599a15499cb3 +containersize 159192 +containerchecksum 3d2451b60636a02ee7306f741b651e8a9ac2b14beaa8f7cc81e4d0a0fbe76fea19e64ff56cf6391e820a06dc784eab8541da19321688831d8e7b3c9d50c79a0a binfiles arch=i386-netbsd size=176 bin/i386-netbsd/pmxab bin/i386-netbsd/scor2prt name pmx.i386-solaris category Package -revision 57938 +revision 66145 shortdesc i386-solaris files of pmx -containersize 198840 -containerchecksum c156fa5c6897a89e7fb6a7246e8a74ddb8cdbebc99897023259cb9ef179b1c2a872cffe04615238ce60c85fad8a4b42e5245941ba142ebf1f1dd843dd313a88a +containersize 199212 +containerchecksum 3540c46ee4ce32b5f97afd81ac5f4c47a8cda1fa594a133c903f205d77f977095f0a4236f5ab4c01c619bedbec409ac31aa59469c0943105ad1b3d69bf1d95f7 binfiles arch=i386-solaris size=137 bin/i386-solaris/pmxab bin/i386-solaris/scor2prt name pmx.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of pmx -containersize 469108 -containerchecksum 9c1a59bb1e05affa0ff1eaf28d397916afa11e0b93800db8a7ea7c5d010427c07b7ac8ec78e8ec3ecf5938a6f0099f4fde884a114542662491829bd09511f1da -binfiles arch=universal-darwin size=358 +containersize 472544 +containerchecksum 904fa8f9af3497b52cb481f249552e6de852a661d47841182f3b5468588d4aba45ab65c5db23f1da49ed56b0d2cf8f0a57f9f9aba6da926e0edd3b96fbe30ad4 +binfiles arch=universal-darwin size=366 bin/universal-darwin/pmxab bin/universal-darwin/scor2prt -name pmx.win32 +name pmx.windows category Package -revision 57883 -shortdesc win32 files of pmx -containersize 214816 -containerchecksum 440158bc0f74cbdf9e1c68a2b4f79dc8e2349d2deea5011cea1c046d5cfccdf93c8664e4d5063635e87d3543283b4b4c7b057c4c870aa36cd047e3ebd82bfaa2 -binfiles arch=win32 size=134 - bin/win32/pmxab.exe - bin/win32/scor2prt.exe +revision 65891 +shortdesc windows files of pmx +containersize 248940 +containerchecksum 931e3f9f37fa7fcdf065f895eb002461b9317fc5c55534035fa73e08d66fa70ee6d44a53dbaba0fa98e5c4604daa96d140e3ca701aca94d4993660b2c0f57064 +binfiles arch=windows size=145 + bin/windows/pmxab.exe + bin/windows/scor2prt.exe name pmx.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of pmx -containersize 249620 -containerchecksum 40c76c5ad95fde294e5e8ae90b0036f1d3c929cd191e71c6ea2c9c75ef917d42c467bec2064597ec0a26c3bd95b7d08f43fc76a1a3131809f20599391ce6e42e -binfiles arch=x86_64-cygwin size=166 +containersize 248868 +containerchecksum 8e1be25e3bb139066b3b7951ed2f3f873a98ff629528dc0597ddacf7ff11190fae5a6bf0312f692c76b1c90dc2457f01fdc42ed4f030c76201cac15e990973f6 +binfiles arch=x86_64-cygwin size=167 bin/x86_64-cygwin/pmxab.exe bin/x86_64-cygwin/scor2prt.exe name pmx.x86_64-darwinlegacy category Package -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of pmx -containersize 226072 -containerchecksum a6f6f0e5b5cb562f720fcf289728329e8fafd5cb3d935aeebfe8e15b7313e0125543ba0f54171a0c90d2dd8ea6592ec271fa281a5008dbb45034b8f4f8918923 +containersize 225932 +containerchecksum d1bbaef852287c48911c152562d301469dea78a1f48d84626598a1f45f721ce04972b77be02101d99e25bf7903b691011860d8510d17d046acc1d6598fc3d043 binfiles arch=x86_64-darwinlegacy size=143 bin/x86_64-darwinlegacy/pmxab bin/x86_64-darwinlegacy/scor2prt name pmx.x86_64-linux category Package -revision 57878 +revision 65877 shortdesc x86_64-linux files of pmx -containersize 216088 -containerchecksum b97e6b2d7dd4a58293f13c082abc764b455b8c8ca08da388edb6573c875d88c616e5ed3dc0a169b2feca058ddd5ecaa0763ffc4eff0c13eb25b27080c9ace4e8 +containersize 217412 +containerchecksum d6388ad1d0b6d9aca230623bca02ce2be22e459d7b164b9139888f0be22b9e4e2078d5aeb449733b4152be4f3977797252bd16cf0bccd98778cf5f34088a3f93 binfiles arch=x86_64-linux size=157 bin/x86_64-linux/pmxab bin/x86_64-linux/scor2prt name pmx.x86_64-linuxmusl category Package -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of pmx -containersize 247008 -containerchecksum 01e1e9194f19dcc1b3a12feb68fe1aae0b5c0dd4c92b36a6b2b8da6597e8491ef461039babf63e6a26ccc3733c22cc682f8d198caa22f27f917f0bac926a4684 -binfiles arch=x86_64-linuxmusl size=173 +containersize 252772 +containerchecksum 4b9ace2318b991bd7de64f31b02b368188b8a4c5bb345a479396d4c445191b2b02f30e86fda9c7d34886f3a784961bbcc8697dfda7cfb9bf55403924e4c1abdc +binfiles arch=x86_64-linuxmusl size=169 bin/x86_64-linuxmusl/pmxab bin/x86_64-linuxmusl/scor2prt name pmx.x86_64-solaris category Package -revision 57938 +revision 66145 shortdesc x86_64-solaris files of pmx -containersize 224036 -containerchecksum 3fcdccac61b78df48a618135dcc22b64c38aa157b3eac553fa8aab7e172de748bd183e05098a4a19ac4833165cb5c818d18813232cf88437a8b508deacc261b1 +containersize 224552 +containerchecksum 7bb801cb3d3bccae01af51ce8d05ce2cf599d7fc36be40418eeeb2a8966f7617e9a14dc37f8c68140e8907232ebcf7af18e84ad1e4d14a483102979dd25489c3 binfiles arch=x86_64-solaris size=162 bin/x86_64-solaris/pmxab bin/x86_64-solaris/scor2prt @@ -247097,15 +251717,6 @@ containerchecksum 1ccba68421e2513c4524929ece8108a833eacb42c673ecfe46a4a11338a442 binfiles arch=armhf-linux size=1 bin/armhf-linux/pmxchords -name pmxchords.i386-cygwin -category Package -revision 32405 -shortdesc i386-cygwin files of pmxchords -containersize 340 -containerchecksum 9f9084b188f076e14a6dfdd7444751e13137e12782eaab88daf69a50f958742b8bfa899832d7136eb2de5c335f5f5a1db63539e153e3d582ed18d29da5029f02 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pmxchords - name pmxchords.i386-freebsd category Package revision 32405 @@ -247151,14 +251762,14 @@ containerchecksum 6028443155e5cc91cfc41b1324cd1b2d9ab5b44ff5e30d1a3e86221beb22b5 binfiles arch=universal-darwin size=1 bin/universal-darwin/pmxchords -name pmxchords.win32 +name pmxchords.windows category Package -revision 32405 -shortdesc win32 files of pmxchords -containersize 684 -containerchecksum 4d5b2803a177795b2a9c845ed1950729db533b526bc7913b2d876a947d73be4e80f06033013597a3b3e72eba7554dcec807f7db59dae534fce0ba80206839873 -binfiles arch=win32 size=1 - bin/win32/pmxchords.exe +revision 65891 +shortdesc windows files of pmxchords +containersize 2308 +containerchecksum 669485160eb2d8a292090459305f04658ec003ee0e8aab72602bef3f56ff2c17e9e1dea02f83ebb662eab8b2b8fdc8abb20b38374e59a1b5c7373eede8a07404 +binfiles arch=windows size=2 + bin/windows/pmxchords.exe name pmxchords.x86_64-cygwin category Package @@ -247322,7 +251933,7 @@ catalogue-version 3.0.1 name poiretone category Package -revision 56070 +revision 64856 shortdesc PoiretOne family of fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -247330,10 +251941,11 @@ longdesc support for the PoiretOne family of fonts, designed by Denis longdesc Masharov. PoiretOne is a decorative geometric grotesque with a longdesc hint of Art Deco and constructivism. There is currently just a longdesc regular weight and an artificially emboldened bold. -containersize 172664 -containerchecksum 5eab5174f3f31374fa5095946555ca7389ccc4675e479324f03f1c33e07981d2731a86b516c5cde41a9e97a2e5751c4a5ebd58db4a1f76829a6638d8393e6d47 -doccontainersize 12968 -doccontainerchecksum 07dfd772739d214646d6779311f4e3c4c71359303eb8fbf53ca40b9df628c3205fe16889b93476e3eb74d2786559ab75a66916067ec974b3349f89267d1ff435 +execute addMap PoiretOne.map +containersize 172672 +containerchecksum 07e1479df1d89b568388a855236d997580cb76ca6ea8f45b55622425d10584037cec5e17a734c24a0eb0a9746966e94137026c37d4696b475e641806d07a7ef5 +doccontainersize 12964 +doccontainerchecksum c164f53258e08e74cade46f03f1e6d3d538a0f65cf3086629150c2741488bd33a82fca89d91bcbb83045d126defc3ee9493fc5e1d05e2c567464d4d29afc0cd9 docfiles size=7 RELOC/doc/fonts/poiretone/OFL.txt RELOC/doc/fonts/poiretone/README details="Readme" @@ -247377,11 +251989,11 @@ runfiles size=95 catalogue-contact-home https://fonts.google.com/specimen/Poiret+One?selection.family=Poiret+One catalogue-ctan /fonts/poiretone catalogue-license ofl lppl -catalogue-topics font font-sans font-mono font-otf font-type1 font-proportional font-t1enc +catalogue-topics font font-body font-sans font-proportional font-ttf font-type1 font-supp font-t1enc name polexpr category Package -revision 59088 +revision 63337 shortdesc A parser for polynomial expressions relocated 1 longdesc The package provides a parser \poldef of algebraic polynomial @@ -247398,14 +252010,22 @@ longdesc as functions). Functionality which previously was implemented longdesc via macros such as the computation of a greatest common divisor longdesc is now available directly in \xintexpr, \xinteval or \poldef longdesc via infix or functional syntax. -containersize 31628 -containerchecksum 68c786c6a1c8af8203db22a6d0785e9c17ea233bbf39b68831e2705feccf376eb629315ecf439cf71b0d8894b9391036a84caa29ec7ef0faea82a8fb39da7399 -doccontainersize 46536 -doccontainerchecksum a44f62c65fc8854709975ddb27246b925760210920226b4e8de2bc14096e80ef03e072a4e9bf82acba6aa668e655a55bda92f584c7e8dc8496e45b2e809437a9 -docfiles size=69 +containersize 39920 +containerchecksum 4d04a0a61b5f50c61eef41360aaec305b727e6d8686e8ef1742098a7980a6508e3455a8282a9cb0b4549d7dcd49cf065c49bbb7e710ca5120cb32567fd58fb8b +doccontainersize 123176 +doccontainerchecksum d2477a275477b6e47461e769fbf43abfc746769582cc916eab153fb7ee19e85285561601169dea0335d0c525b79c5435ee2d44ba931739eb9d903a3f2e3b670f +docfiles size=136 RELOC/doc/generic/polexpr/README.md details="Readme" + RELOC/doc/generic/polexpr/polexpr-changes.html + RELOC/doc/generic/polexpr/polexpr-changes.rst.txt + RELOC/doc/generic/polexpr/polexpr-examples.pdf details="Examples of use" + RELOC/doc/generic/polexpr/polexpr-ref.html + RELOC/doc/generic/polexpr/polexpr-ref.rst.txt + RELOC/doc/generic/polexpr/polexpr.css RELOC/doc/generic/polexpr/polexpr.html details="Package documentation (HTML)" -runfiles size=40 + RELOC/doc/generic/polexpr/polexpr.rst.txt +runfiles size=48 + RELOC/tex/generic/polexpr/polexpr-examples.tex RELOC/tex/generic/polexpr/polexpr.sty RELOC/tex/generic/polexpr/polexprcore.tex RELOC/tex/generic/polexpr/polexprexpr.tex @@ -247414,24 +252034,32 @@ catalogue-also polynom catalogue-ctan /macros/generic/polexpr catalogue-license lppl1.3c catalogue-topics maths arithmetic calculation etex macro-gen -catalogue-version 0.8.2 +catalogue-version 0.8.7a name polski category Package -revision 44213 +revision 60322 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.) +longdesc Tools to typeset monolingual Polish documents in LaTeX2e +longdesc without babel or polyglossia. The package loads Polish +longdesc hyphenation patterns, ensures that a font encoding suitable for +longdesc Polish is used; in particular it enables Polish adaptation of +longdesc Computer Modern fonts (the so-called PL fonts), provides +longdesc translations of \today and names like "Bibliography" or +longdesc "Chapter", redefines math symbols according to Polish +longdesc typographical tradition, provides macros for dashes according +longdesc to Polish orthography, provides a historical input method for +longdesc "Polish characters", works with traditional TeX as well as with +longdesc Unicode aware variants. (This package was previously known as +longdesc platex, but has been renamed to resolve a name clash.) depend hyphen-polish depend pl -containersize 9068 -containerchecksum 8d4c05dae9e5cf8ab36bdba5be8b0748d5d283a6a77c7fa18821ab3a20fe5935f302a8ce9b1a1314ef128a20c1011018ba7bd04d34466d017e16fd9bd087e108 -doccontainersize 294096 -doccontainerchecksum a619719518e3d9814907d33756c4a3f2494c3a94b0a717e6f848e31177622bad6ba2cf595a23ff2efb65ea04b70b267aa87cd87caa56c91bab7b36bef82cd2dd -docfiles size=81 +containersize 9296 +containerchecksum 24bdb98990f66e89085056e6ad3e0930dd16d0f4bbd07a2c9a49931796e143505276d2025fee21b2b52d927c3b2992d31f4edae4668cdb549f6f00ef43dc1c69 +doccontainersize 284808 +doccontainerchecksum 755e7625d5ee1e4457e7ee518469d585c9c1e566c57bf147c62195555ae91dadb68f469127cb18a7c30cda1468129db09cb09b1974f5273d41c9491a6e1d5ffc +docfiles size=79 RELOC/doc/latex/polski/README details="Readme (English)" RELOC/doc/latex/polski/conowego.txt RELOC/doc/latex/polski/czytaj.txt details="Readme (Polish)" language="pl" @@ -247440,8 +252068,8 @@ docfiles size=81 RELOC/doc/latex/polski/sample-polski.tex RELOC/doc/latex/polski/sample-rysunek.mp RELOC/doc/latex/polski/sample-rysunek1.mps -srccontainersize 30840 -srccontainerchecksum fe630f5992e79ad211ac4537cb1fc8b40154c2b43f34fb15594e662909077eb0a58f2be41aa05ad647a45d2d00c8af82ecce2afc5eec46c941d1060f2728a4be +srccontainersize 30572 +srccontainerchecksum 8e216956a95df02134cf411d170a75309c3f167a5bf7d78f77c4e47950c8a5da52e523e367f5ce60492fc0ab7cb205e9b57835b883225752731ca094d7c507b8 srcfiles size=35 RELOC/source/latex/polski/ot1patch.dtx RELOC/source/latex/polski/ot1patch.ins @@ -247472,7 +252100,7 @@ runfiles size=24 catalogue-ctan /macros/latex/contrib/polski catalogue-license lppl1.2 catalogue-topics polish -catalogue-version 1.3.4 +catalogue-version 1.3.6 name poltawski category Package @@ -248375,7 +253003,7 @@ catalogue-version 1.101 name polyglossia category Package -revision 58869 +revision 65792 shortdesc An alternative to babel for XeLaTeX and LuaLaTeX relocated 1 longdesc This package provides a complete Babel replacement for users of @@ -248387,14 +253015,18 @@ depend fontspec depend iftex depend makecmds depend xkeyval -containersize 115840 -containerchecksum cc76a010e93e9aafbc74d4894b1cb44cd8a569eff1f42b1017d49a0f86fdf577334e8100e2ce8be68c5bf430b6895f80513adee5aacced508244e1f5d5e5f0f5 -doccontainersize 641576 -doccontainerchecksum 64147a6df9eb9f12f0c74792f3b7e0d9c465354a3966d7b1279aa64432021d37d1bbbfc2a310c1a27fef92723ba5803bdcb25995ce930e134553383c3b766904 -docfiles size=205 +containersize 122096 +containerchecksum c6d044ae7de7893de975d7bfc36c7f793c22cc91436c614d817f6328017223e303581ca3d870b0c6698979924437370729542c3e03be059eb90956d25eb7102b +doccontainersize 722828 +doccontainerchecksum 430c57ca35547c4b90abac56e46451ea9a86e95eeb0dc9a5a312d441088d07c54606369e47d69ff163884a95f371902050e6880b4a2a037d2b75a3700536eac2 +docfiles size=231 RELOC/doc/latex/polyglossia/README.md details="Readme" RELOC/doc/latex/polyglossia/example-arabic.pdf RELOC/doc/latex/polyglossia/example-arabic.tex + RELOC/doc/latex/polyglossia/example-chinese.pdf + RELOC/doc/latex/polyglossia/example-chinese.tex + RELOC/doc/latex/polyglossia/example-japanese.pdf + RELOC/doc/latex/polyglossia/example-japanese.tex RELOC/doc/latex/polyglossia/example-korean.pdf RELOC/doc/latex/polyglossia/example-korean.tex RELOC/doc/latex/polyglossia/example-thai.pdf @@ -248405,11 +253037,11 @@ docfiles size=205 RELOC/doc/latex/polyglossia/polyglossia.tex RELOC/doc/latex/polyglossia/test-welsh.pdf RELOC/doc/latex/polyglossia/test-welsh.tex -srccontainersize 152892 -srccontainerchecksum 1f534fe32af11b3b83a7814c5615c046869c66e3af0781cef6730dfefecaae093e08eb53c73ac2a417d34aeed0f4a9f8dfde5debbb552ecba1ae00359c172de6 -srcfiles size=229 +srccontainersize 162272 +srccontainerchecksum 41fc852cd9f1ac77b4bd0aa4bd57a9b55ad9b96111fd81dd1fa743a56679a6c4e8ceaf34cbc16dcf84a5636499d35923318cc1ac37e66f4ad6594c4c13d257c9 +srcfiles size=248 RELOC/source/latex/polyglossia/polyglossia.dtx -runfiles size=369 +runfiles size=386 RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.map RELOC/fonts/misc/xetex/fontmapping/polyglossia/arabicdigits.tec RELOC/fonts/misc/xetex/fontmapping/polyglossia/bengalidigits.map @@ -248418,6 +253050,8 @@ runfiles size=369 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/gurmukhidigits.map + RELOC/fonts/misc/xetex/fontmapping/polyglossia/gurmukhidigits.tec RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.map RELOC/fonts/misc/xetex/fontmapping/polyglossia/thaidigits.tec RELOC/tex/latex/polyglossia/arabicnumbers.sty @@ -248477,6 +253111,7 @@ runfiles size=369 RELOC/tex/latex/polyglossia/gloss-canadian.ldf RELOC/tex/latex/polyglossia/gloss-canadien.ldf RELOC/tex/latex/polyglossia/gloss-catalan.ldf + RELOC/tex/latex/polyglossia/gloss-chinese.ldf RELOC/tex/latex/polyglossia/gloss-ckb-Arab.ldf RELOC/tex/latex/polyglossia/gloss-ckb-Latn.ldf RELOC/tex/latex/polyglossia/gloss-ckb.ldf @@ -248591,7 +253226,7 @@ runfiles size=369 RELOC/tex/latex/polyglossia/gloss-la-x-medieval.ldf RELOC/tex/latex/polyglossia/gloss-la.ldf RELOC/tex/latex/polyglossia/gloss-lao.ldf - RELOC/tex/latex/polyglossia/gloss-latex.ldf + RELOC/tex/latex/polyglossia/gloss-latex.lde RELOC/tex/latex/polyglossia/gloss-latin.ldf RELOC/tex/latex/polyglossia/gloss-latinclassic.ldf RELOC/tex/latex/polyglossia/gloss-latinecclesiastic.ldf @@ -248623,12 +253258,14 @@ runfiles size=369 RELOC/tex/latex/polyglossia/gloss-nswissgerman.ldf RELOC/tex/latex/polyglossia/gloss-nynorsk.ldf RELOC/tex/latex/polyglossia/gloss-occitan.ldf + RELOC/tex/latex/polyglossia/gloss-pa.ldf RELOC/tex/latex/polyglossia/gloss-persian.ldf RELOC/tex/latex/polyglossia/gloss-piedmontese.ldf RELOC/tex/latex/polyglossia/gloss-polish.ldf RELOC/tex/latex/polyglossia/gloss-polutonikogreek.ldf RELOC/tex/latex/polyglossia/gloss-portuges.ldf RELOC/tex/latex/polyglossia/gloss-portuguese.ldf + RELOC/tex/latex/polyglossia/gloss-punjabi.ldf RELOC/tex/latex/polyglossia/gloss-romanian.ldf RELOC/tex/latex/polyglossia/gloss-romansh.ldf RELOC/tex/latex/polyglossia/gloss-russian.ldf @@ -248661,6 +253298,9 @@ runfiles size=369 RELOC/tex/latex/polyglossia/gloss-uyghur.ldf RELOC/tex/latex/polyglossia/gloss-vietnamese.ldf RELOC/tex/latex/polyglossia/gloss-welsh.ldf + RELOC/tex/latex/polyglossia/gloss-zh-CN.ldf + RELOC/tex/latex/polyglossia/gloss-zh-TW.ldf + RELOC/tex/latex/polyglossia/gurmukhidigits.sty RELOC/tex/latex/polyglossia/hebrewcal.sty RELOC/tex/latex/polyglossia/hijrical.sty RELOC/tex/latex/polyglossia/nkonumbers.sty @@ -248680,7 +253320,7 @@ catalogue-contact-repository https://github.com/reutenauer/polyglossia catalogue-ctan /macros/unicodetex/latex/polyglossia catalogue-license mit lppl1.3 cc0 catalogue-topics multilingual use-xetex use-luatex -catalogue-version 1.53 +catalogue-version 1.60 name polynom category Package @@ -248773,7 +253413,7 @@ catalogue-version 0.8.6 name poormanlog category Package -revision 58966 +revision 63400 shortdesc Logarithms and powers with (almost) 9 digits relocated 1 longdesc This small package (usable with Plain e-TeX, LaTeX, or others) @@ -248787,11 +253427,11 @@ longdesc ranges has to be done by user, via own macros or some math longdesc engine. The xintexpr package (at 1.3f) imports the poormanlog longdesc macros as core constituents of its log10(), pow10(), log(), longdesc exp() and pow() functions. -containersize 3792 -containerchecksum a1d252b99f78e6cf0c11310079b392a7a557fdc78233bc870859dc8325bc7c1a50655b52cae052e4edbd2e2b333b409f0929d696b93cd8015c66f14ddafa36fe -doccontainersize 2000 -doccontainerchecksum 6ae369601d824ca7f62c10327415c48cac9e58ff495238ddb2f00f71920df1b5f3a0c948c2a5eaf418f688f10e547c945d5fd726ab93eb5c106848c3355c8cb3 -docfiles size=1 +containersize 3812 +containerchecksum e67561e7818e8ff9e02a43c02b8b992a26bef477176ce36eebaea37f56ea182bc9bedcfa56ffd8581b5d696698718d87f5319ac93d79032c4c27780ceb964851 +doccontainersize 2092 +doccontainerchecksum 7d99c4036411bd892bc0a520a42c5e2a1c1077c89e58e1be8a9fc991b87da3d22871e75669c814358701d17add447a7e6546a33a8ada55f55ce0814296273f91 +docfiles size=2 RELOC/doc/generic/poormanlog/README details="Readme" runfiles size=4 RELOC/tex/generic/poormanlog/poormanlog.sty @@ -248799,7 +253439,7 @@ runfiles size=4 catalogue-ctan /macros/generic/poormanlog catalogue-license lppl1.3c catalogue-topics calculation -catalogue-version 0.05 +catalogue-version 0.07 name postage category Package @@ -248896,9 +253536,49 @@ catalogue-license lppl catalogue-topics poster catalogue-version 1.1 +name postnotes +category Package +revision 66019 +shortdesc Endnotes for LaTeX +relocated 1 +longdesc This is an endnotes package for LaTeX. Its user interface +longdesc provides means to print multiple sections of notes along the +longdesc document, and to subdivide them either automatically -- by +longdesc chapter, by section -- or at manually specified places, thus +longdesc being able to easily handle both numbered and unnumbered +longdesc headings. The package also provides infrastructure for setting +longdesc up contextual running headers for printed notes. The default is +longdesc a simple but useful one, in the form "Notes to pages N-M", but +longdesc more elaborate ones can be built. When hyperref is loaded, +longdesc postnotes provides hyperlinked notes, including back links. +containersize 7232 +containerchecksum 66788036cd370a0c2a388916f922faabfff7c5d3cebfbfa9aba4bf0591c3a58ab56d6dd8f2f786ee294ac10249b97f8a42848590f6a8dae9b02aa2b9ed9a1279 +doccontainersize 997696 +doccontainerchecksum f153a1b5d79a9a950f94b268f49ea637a586e2b40d261b0c3dbf50a6cf42639dcc2f4abd2a2ddc27105462e3a86436e2844efdfc02b2869a198f7f5624be112c +docfiles size=264 + RELOC/doc/latex/postnotes/CHANGELOG.md + RELOC/doc/latex/postnotes/DEPENDS.txt + RELOC/doc/latex/postnotes/README.md details="Readme" + RELOC/doc/latex/postnotes/postnotes-code.pdf details="Code documentation" + RELOC/doc/latex/postnotes/postnotes-code.tex + RELOC/doc/latex/postnotes/postnotes.pdf details="User manual" + RELOC/doc/latex/postnotes/postnotes.tex +srccontainersize 21856 +srccontainerchecksum 62e54f4c90e80eed9be416676978e00a7404eb6cc89190edd6c4596e47ea312d3504d755ed6f984c3d08ae9574489c75e1e67c1fa2ec861aae17b8f05301a8db +srcfiles size=26 + RELOC/source/latex/postnotes/postnotes.dtx + RELOC/source/latex/postnotes/postnotes.ins +runfiles size=11 + RELOC/tex/latex/postnotes/postnotes.sty +catalogue-contact-repository https://github.com/gusbrs/postnotes +catalogue-ctan /macros/latex/contrib/postnotes +catalogue-license lppl1.3c +catalogue-topics endnote expl3 +catalogue-version 0.2.3 + name powerdot category Package -revision 58730 +revision 59272 shortdesc A presentation class relocated 1 longdesc Powerdot is a presentation class for LaTeX that allows for the @@ -248908,10 +253588,10 @@ longdesc presenter. Examples are automatic overlays, personal notes and longdesc a handout mode. To view a presentation, DVI, PS or PDF output longdesc can be used. A powerful template system is available to easily longdesc develop new styles. A LyX layout file is provided. -containersize 26304 -containerchecksum 040d634225ba154fb76145815b923ef9e266a48bc41f245098b70634d6d8fe7890e65a943c44a694d889252de3f66ea49bdb7d56ad7c8ec0e1ac563469138f97 -doccontainersize 947592 -doccontainerchecksum 8b3076cfd45d3c6774e0061b54d63bf89245b16ae704b0c7541ef61b62e0b4972d28b31493fd8e4c167cf87388d87b74ca5b8335b106a310cc78a4c8175330bb +containersize 26268 +containerchecksum c8ab1d65e2ac0695cac0e8a0a683fe712ba51e8aa028316901e1ab6e31b0be68348066fcf290b03321c0bacbf5c0b16265b28022ef38137a3d89bd25aac58dd7 +doccontainersize 948160 +doccontainerchecksum 99e602f4f96d6b805a8cb255d72f49c62e75543df2348471e31952a2588125724dfac07cd82865e9559220ef98a7b8847ab9ebd1ab803d5e155804f3669abe3b docfiles size=322 RELOC/doc/latex/powerdot/README details="Readme" RELOC/doc/latex/powerdot/manifest.txt @@ -248928,8 +253608,8 @@ docfiles size=322 RELOC/doc/latex/powerdot/powerdot.pdf details="Package documentation (English)" language="en" RELOC/doc/latex/powerdot/powerdotDE.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/powerdot/powerdotDE.tex -srccontainersize 67108 -srccontainerchecksum e1882bf2cedb5a4146cfcdab5a89618a986c5dab64ccc4953c90157060907c18429b834e2b4dd0cdd38969c30697a354f024bd6e2c4dda88a40acd664350ac2d +srccontainersize 67080 +srccontainerchecksum cc32d07b304d6214fca1244823154290c68131111c2144592fb1b4134c59dcd0ab110542bcb64e7462c6959bff1bc9d1e2706bea66b0bed2abfde9c80255af4a srcfiles size=79 RELOC/source/latex/powerdot/powerdot.dtx runfiles size=50 @@ -248956,7 +253636,7 @@ catalogue-also prosper ha-prosper catalogue-ctan /macros/latex/contrib/powerdot catalogue-license lppl1.3 catalogue-topics presentation class -catalogue-version 1.6 +catalogue-version 1.7 name powerdot-fuberlin category Package @@ -249060,32 +253740,81 @@ catalogue-license lppl catalogue-topics presentation catalogue-version 0.13c +name ppt-slides +category Package +revision 65194 +shortdesc Good-looking slide decks a la PowerPoint (PPT) +relocated 1 +longdesc This LaTeX package helps you create slide decks as good-looking +longdesc as with PowerPointtm, but more precise, uniform, and visually +longdesc strict. Check this series of lectures fully designed with the +longdesc use of this package. +depend crumbs +depend enumitem +depend hyperref +depend pagecolor +depend pgf +depend pgfopts +depend qrcode +depend seqsplit +depend tikzpagenodes +depend tools +depend varwidth +depend xcolor +containersize 4160 +containerchecksum 8741def8d57db17bef3490c881a615340290283860e9978e105b7ba0768b5fbf02023722109dd2f6860e9fa8d44fe7cf742eb2a97ae08d1199a6dea9f73503f2 +doccontainersize 788536 +doccontainerchecksum 6528e50797dae2dd928d11f78bdcb3368177412823657baccba10c194bebce97384ed55d10c5307c13aa06883a156abd57a944acc26f9237a138df22b5a33658 +docfiles size=255 + RELOC/doc/latex/ppt-slides/DEPENDS.txt + RELOC/doc/latex/ppt-slides/LICENSE.txt + RELOC/doc/latex/ppt-slides/README.md details="Readme" + RELOC/doc/latex/ppt-slides/ppt-slides.pdf details="Package documentation and example of use" + RELOC/doc/latex/ppt-slides/socrates.jpg +srccontainersize 6308 +srccontainerchecksum 42dd3fdc96d1ffbf39deba0e2e292392a9aa6a2b266d7787448b93996f12c966abff0b643281fec8b336a395b283e2e88fafb365f616455e3393645cd7c3a55c +srcfiles size=6 + RELOC/source/latex/ppt-slides/ppt-slides.dtx + RELOC/source/latex/ppt-slides/ppt-slides.ins +runfiles size=7 + RELOC/tex/latex/ppt-slides/ppt-schemes/ppt-dark-mono.tex + RELOC/tex/latex/ppt-slides/ppt-schemes/ppt-dark.tex + RELOC/tex/latex/ppt-slides/ppt-schemes/ppt-light-mono.tex + RELOC/tex/latex/ppt-slides/ppt-schemes/ppt-light.tex + RELOC/tex/latex/ppt-slides/ppt-slides.sty + RELOC/tex/latex/ppt-slides/ppt-templates/ppt-9x6.tex +catalogue-contact-repository https://github.com/yegor256/ppt-slides +catalogue-ctan /macros/latex/contrib/ppt-slides +catalogue-license mit +catalogue-topics presentation +catalogue-version 0.2.1 + name pracjourn category Package -revision 15878 +revision 61719 shortdesc Typeset articles for PracTeX relocated 1 longdesc The pracjourn class is used for typesetting articles in the longdesc PracTeX Journal. It is based on the article class with longdesc modifications to allow for more flexible front-matter and longdesc revision control, among other small changes. -containersize 4648 -containerchecksum 40e7ea03f0b244810952cf93cdc7799e0e130a7b11d384893b88e420ce6adb4b5606462ab6f2dbb2e134770eaf32540b9feb59393dea72a70f4d881f6f6fa43b -doccontainersize 386140 -doccontainerchecksum 8e9b171919bd6412a3adb75abf1124beaf0fd562cca49076c1729814c7907b5b3f9b240fdb68d91055225e9b366749c2be6a2e421f52142d0a138e377a442046 +containersize 4628 +containerchecksum ad416756dca8491f2920d13b8374157bf1b49f236cf2ce1f66d6415c8de7282801645f5cedc31f2652304b1133f787a32ca4afa9f0e65a8bd5cbde956e54b82d +doccontainersize 386136 +doccontainerchecksum 2cc3efac5b128bc6873034fc451124cbb9d6c4040d9d1c1053367aa99d57687eff642cc55a52d833732cfe88c5e139c67998020ae220a1657744140745ffec30 docfiles size=107 RELOC/doc/latex/pracjourn/README details="Readme" RELOC/doc/latex/pracjourn/pjsample.ltx RELOC/doc/latex/pracjourn/pjsample.pdf RELOC/doc/latex/pracjourn/pracjourn.pdf details="Package documentation" -srccontainersize 15244 -srccontainerchecksum a0f40eb8b245c3f6ca2c6e84f4b13d80b2c9d5f67a70c74fc14928fb3b4eba3659bdcca9852d0bcce18088f707955e8f0ef77e71879bd720c9dd8d59ef9713ce +srccontainersize 15248 +srccontainerchecksum 819dcb9329ec553889d50646b7ac4ec52e2d82b329ad48d6b1dd391a7f575115c49c317497ebd32237c3925741cc6f7d497851bc5fd938d3f8e7341a05150d21 srcfiles size=14 RELOC/source/latex/pracjourn/pracjourn.dtx RELOC/source/latex/pracjourn/pracjourn.ins runfiles size=4 RELOC/tex/latex/pracjourn/pracjourn.cls -catalogue-contact-home http://tug.org/pracjourn +catalogue-contact-home https://tug.org/pracjourn catalogue-ctan /macros/latex/contrib/pracjourn catalogue-license gpl catalogue-topics journalpub @@ -249119,6 +253848,29 @@ catalogue-license lppl1.3c catalogue-topics report-like catalogue-version 2.0.3 +name precattl +category Package +revision 63967 +shortdesc Prepare special catcodes from token list +relocated 1 +longdesc Allow users to write code that contains tokens with unusual +longdesc catcodes. +containersize 3588 +containerchecksum 35ce5ceaa53d3edc0fa92c8d9e5979255fa94bfa6818f8100b29f6fddda22f947c0fd2899efa5b4c72bb124fa5edd4f25b512460e7d370068eeff3d0ae0cfd2d +doccontainersize 379548 +doccontainerchecksum 869b3ccb9aa47107b759fbaab3980168332d51eb07e4fc77f5fa31056f1260e5d89ed54e4a3329afeb828445dec17e43df899358e7880ebe364705006a3571ab +docfiles size=96 + RELOC/doc/latex/precattl/README details="Readme" + RELOC/doc/latex/precattl/precattl.pdf details="Package documentation" + RELOC/doc/latex/precattl/precattl.tex +runfiles size=4 + RELOC/tex/latex/precattl/precattl.sty +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/precattl +catalogue-license lppl1.3c +catalogue-topics expl3 debug-supp +catalogue-version 0.0.0 + name prelim2e category Package revision 57000 @@ -249355,9 +254107,39 @@ catalogue-license pd catalogue-topics label-ref catalogue-version 3.0 +name prettytok +category Package +revision 63842 +shortdesc Pretty-print token lists +relocated 1 +longdesc Pretty-print token lists to HTML file for debugging purposes. +longdesc Open the file in any browser to view the result. Can be used to +longdesc replace \tl_analysis_show:n. +depend filecontentsdef +depend l3kernel +depend precattl +containersize 5376 +containerchecksum 8b9f5e9fec9d50b9f688115e00ad6fde21adfb9cef69e020fb297abcfe489cc6fde08d2ad4b72ea5f6b8e0b7499a97c798e8c0bd306d298427fcd19b6365c300 +doccontainersize 372452 +doccontainerchecksum 8dc2afdc9920817b13050bdb6d92164e9322a18fd1d7a7adc7a1655c8dd68181b00faef22c09f9bce45be0744e179c978ba40c6f841e3c2cdba1c88225f7486f +docfiles size=95 + RELOC/doc/latex/prettytok/DEPENDS.txt + RELOC/doc/latex/prettytok/README details="Readme" + RELOC/doc/latex/prettytok/prettytok.pdf details="Package documentation" + RELOC/doc/latex/prettytok/prettytok.tex +runfiles size=5 + RELOC/tex/latex/prettytok/prettytok.lua + RELOC/tex/latex/prettytok/prettytok.sty + RELOC/tex/latex/prettytok/prettytok_template.html +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/prettytok +catalogue-license lppl1.3c +catalogue-topics expl3 debug-supp +catalogue-version 0.0.1 + name preview category Package -revision 56708 +revision 62130 shortdesc Extract bits of a LaTeX source for output relocated 1 longdesc The package is a free-standing part of the preview-latex @@ -249365,15 +254147,15 @@ longdesc bundle. The package provides the support preview-latex needs, longdesc when it chooses the matter it will preview. The output may longdesc reasonably be expected to have other uses, as in html longdesc translators, etc. -containersize 6808 -containerchecksum 8a582c5e78e5a4ef28d3857e397d62579be41f4445a3b0ea1ea76b9080997e5eb23f2bb90197237101d03fccc8cd53c8a3263d19385dac4b63161a568528b017 -doccontainersize 312612 -doccontainerchecksum d6edac136429cc1d0af86381812c798d72e15b0e33cc0dec643e86fc5a323df057bfe196293381f2d85644f6784cb97bd7a612828ce829d0d8baa57a51f00bce -docfiles size=78 +containersize 6984 +containerchecksum 02c4864a68cf7208e87fb0a4f25ccfe2092e198541551c3db11b75b0fd0b49188ebf9217554020f07154313418febb942e04c92b78d84c6f53b88c12d5a162ff +doccontainersize 326124 +doccontainerchecksum a722fda1fbc3c4319edefb65a30ccde72711a65c19e6fbe7300ba2dcb47b72f12aa436c593f1dc97f9fda1a1fd4d359b4d56928877a9cb80b324ff046d0cd9e3 +docfiles size=83 RELOC/doc/latex/preview/README details="Readme" RELOC/doc/latex/preview/preview.pdf details="Package documentation" -srccontainersize 22560 -srccontainerchecksum f9e6df7cc6c5649e103832477218237d4008e66707a229680448a05a058d5b9ee47775c96466068723a6cdba362a17420d3154d69535c7b3b65c1e752e6654e7 +srccontainersize 22852 +srccontainerchecksum d22c78058df91b03af32bb3f3c6584f492cffe6762a06a854811a3d2b3cfb1dae000252f483e78a40830d5bd808184b76b86c7e100c365c420f24496464ab53d srcfiles size=22 RELOC/source/latex/preview/preview.drv RELOC/source/latex/preview/preview.dtx @@ -249398,7 +254180,7 @@ catalogue-contact-support https://lists.gnu.org/mailman/listinfo/auctex catalogue-ctan /macros/latex/contrib/preview catalogue-license gpl3 catalogue-topics chunks -catalogue-version 12.3 +catalogue-version 13.1 name prftree category Package @@ -249575,25 +254357,26 @@ catalogue-license lppl catalogue-topics exercise catalogue-version 3.05 -name procIAGssymp +name prociagssymp category Package -revision 51771 +revision 63242 shortdesc Macros for IAG symposium papers relocated 1 longdesc This package provides (re-)definitions of some LaTeX commands -longdesc that can be useful for the preparation of a paper with the -longdesc style of the proceeding of symposia sponsored by the -longdesc 'International Association of Geodesy (IAG)' published by -longdesc Springer-Verlag. -containersize 2420 -containerchecksum 66bd3472ef8d8d26f2eee0368615fb0a326ebd64dca3a0afe9a236880eacfd723caf6f65cfd07ad2a6f5f3db9dea6da75f33de9d026a48a8304c096c60d7e458 -doccontainersize 3148 -doccontainerchecksum 253adc51e38015c55af91bddc0b7ac6031d482d0cfa869cee556ca82464932a4922d0223a4a156e148dd89e369e2960156b411bb2601583d07a99790518c4823 -docfiles size=2 - RELOC/doc/latex/procIAGssymp/TestPaper.tex +longdesc that can be useful for the preparation of papers with the style +longdesc of the proceedings of symposia sponsored by the 'International +longdesc Association of Geodesy (IAG)' published by Springer-Verlag. +containersize 2532 +containerchecksum f85716931c9fb7ac695db838d5e76160c485dac5f5f6a8f1c27cb7e375d78b385dce513103fdef30eca238fed78734661e192d712e74d948fbce0ccd209a1066 +doccontainersize 84172 +doccontainerchecksum 9d7e118fb0b704649176bb51f523d8a64ed11fb8e58cd1cafc7ffe3f4ad5005366cf518df9d7a4577b600524e19f089a4086d46f946668e82a1272b28c750f8f +docfiles size=23 + RELOC/doc/latex/prociagssymp/README.txt details="Readme" + RELOC/doc/latex/prociagssymp/TestprocIAGssymp.pdf details="Minimal user manual and example of use" + RELOC/doc/latex/prociagssymp/TestprocIAGssymp.tex runfiles size=2 - RELOC/tex/latex/procIAGssymp/procIAGssymp.sty -catalogue-ctan /macros/latex/contrib/procIAGssymp + RELOC/tex/latex/prociagssymp/procIAGssymp.sty +catalogue-ctan /macros/latex/contrib/prociagssymp catalogue-license lppl catalogue-topics confproc @@ -249666,7 +254449,7 @@ catalogue-version 1.1 name profcollege category Package -revision 58995 +revision 66364 shortdesc A LaTeX package for French maths teachers in college relocated 1 longdesc This package provides some commands to help French mathematics @@ -249676,23 +254459,235 @@ longdesc \Pythagore{ABC}{5}{7} to write the entire calculation of AC longdesc with the Pythagorean theorem, \Trigo[Cosinus]{ABC}{3}{}{60} to longdesc write the entire calculation of AC with cosine, ... and some longdesc others. -containersize 83556 -containerchecksum 7989dc75980da4250b76e6faf34ebeead2f853611eb327b128474c247761aece883f1e771d38f701d0fc4394bedd17843cf889c972171103b90c3297a2527724 -doccontainersize 3908208 -doccontainerchecksum 605d547b06744fbbeeb29cefa53fee5cd33e23a4c95c6f4ae0ff3396e43c3b51d68508dfd3ee8c3e875061e18c3264110e9f48c93a909fa9321bdab25d189847 -docfiles size=1089 +containersize 1265304 +containerchecksum b9971ee109903c6b37a6f9c8cff250e2d82d415d7f0e014e4ace0d2f8e1bd2286458a244fd283750df77eff2b5c9af49a3c5d327d07e92ab7e11e0921ab2cf3d +doccontainersize 10656248 +doccontainerchecksum ea489e0405bd7c0c91dbad7f36f4c9123f1d7d55689160fe1c3fdc0e705260b5fc595294c479e6df1903797ee39a545bd8647921fcaee5550c7e4fc909a482dc +docfiles size=2766 RELOC/doc/latex/profcollege/ProfCollege-doc.pdf details="Package documentation" language="fr" RELOC/doc/latex/profcollege/ProfCollege-doc.zip RELOC/doc/latex/profcollege/README details="Readme" -runfiles size=230 +runfiles size=2725 RELOC/metapost/profcollege/PfCAfficheur.mp + RELOC/metapost/profcollege/PfCArithmetique.mp + RELOC/metapost/profcollege/PfCArithmetiquePDF.mp + RELOC/metapost/profcollege/PfCCafrique.dat RELOC/metapost/profcollege/PfCCalculatrice.mp + RELOC/metapost/profcollege/PfCCameriquecentrale.dat + RELOC/metapost/profcollege/PfCCameriquenord.dat + RELOC/metapost/profcollege/PfCCameriquesud.dat + RELOC/metapost/profcollege/PfCCasia.dat + RELOC/metapost/profcollege/PfCCasie.dat + RELOC/metapost/profcollege/PfCCcaraibes.dat + RELOC/metapost/profcollege/PfCCeurope.dat RELOC/metapost/profcollege/PfCConstantes.mp + RELOC/metapost/profcollege/PfCEngrenages.mp RELOC/metapost/profcollege/PfCGeometrie.mp + RELOC/metapost/profcollege/PfCIle.dat RELOC/metapost/profcollege/PfCLaTeX.mp + RELOC/metapost/profcollege/PfCLabyNombre.mp + RELOC/metapost/profcollege/PfCMonde-futurenew.mp + RELOC/metapost/profcollege/PfCMosaique.mp + RELOC/metapost/profcollege/PfCObjets.mp + RELOC/metapost/profcollege/PfCPseudo.mp RELOC/metapost/profcollege/PfCScratch.mp RELOC/metapost/profcollege/PfCScratchpdf.mp + RELOC/metapost/profcollege/PfCSolid.mp RELOC/metapost/profcollege/PfCSvgnames.mp + RELOC/metapost/profcollege/PfCTurtleTestRemplis.mp + RELOC/metapost/profcollege/PfCafganistan.dat + RELOC/metapost/profcollege/PfCafriquesud1.dat + RELOC/metapost/profcollege/PfCafriquesud2.dat + RELOC/metapost/profcollege/PfCalbanie.dat + RELOC/metapost/profcollege/PfCalgerie.dat + RELOC/metapost/profcollege/PfCallemagne1.dat + RELOC/metapost/profcollege/PfCallemagne2.dat + RELOC/metapost/profcollege/PfCandorre.dat + RELOC/metapost/profcollege/PfCangleterre.dat + RELOC/metapost/profcollege/PfCangola.dat + RELOC/metapost/profcollege/PfCarabiesaoudite.dat + RELOC/metapost/profcollege/PfCargentine1.dat + RELOC/metapost/profcollege/PfCargentine2.dat + RELOC/metapost/profcollege/PfCarmenie.dat + RELOC/metapost/profcollege/PfCautriche.dat + RELOC/metapost/profcollege/PfCazerbaijan1.dat + RELOC/metapost/profcollege/PfCazerbaijan2.dat + RELOC/metapost/profcollege/PfCbangladesh.dat + RELOC/metapost/profcollege/PfCbelarussie.dat + RELOC/metapost/profcollege/PfCbelgique.dat + RELOC/metapost/profcollege/PfCbelize.dat + RELOC/metapost/profcollege/PfCbenin.dat + RELOC/metapost/profcollege/PfCbhutan.dat + RELOC/metapost/profcollege/PfCbirmanie.dat + RELOC/metapost/profcollege/PfCbolivie1.dat + RELOC/metapost/profcollege/PfCbolivie2.dat + RELOC/metapost/profcollege/PfCbosnie1.dat + RELOC/metapost/profcollege/PfCbosnie2.dat + RELOC/metapost/profcollege/PfCbotswana.dat + RELOC/metapost/profcollege/PfCbresil.dat + RELOC/metapost/profcollege/PfCbrunei.dat + RELOC/metapost/profcollege/PfCbulgarie.dat + RELOC/metapost/profcollege/PfCburkinafaso.dat + RELOC/metapost/profcollege/PfCburundi.dat + RELOC/metapost/profcollege/PfCcabinda.dat + RELOC/metapost/profcollege/PfCcambodge.dat + RELOC/metapost/profcollege/PfCcameroun.dat + RELOC/metapost/profcollege/PfCcanada.dat + RELOC/metapost/profcollege/PfCcapitales.dat + RELOC/metapost/profcollege/PfCchili1.dat + RELOC/metapost/profcollege/PfCchili2.dat + RELOC/metapost/profcollege/PfCchine.dat + RELOC/metapost/profcollege/PfCcolombie.dat + RELOC/metapost/profcollege/PfCcongo.dat + RELOC/metapost/profcollege/PfCcoreenord.dat + RELOC/metapost/profcollege/PfCcoreesud.dat + RELOC/metapost/profcollege/PfCcostarica.dat + RELOC/metapost/profcollege/PfCcoteivoire.dat + RELOC/metapost/profcollege/PfCcroatie.dat + RELOC/metapost/profcollege/PfCdanemark.dat + RELOC/metapost/profcollege/PfCdjibouti.dat + RELOC/metapost/profcollege/PfCecosse.dat + RELOC/metapost/profcollege/PfCegypte.dat + RELOC/metapost/profcollege/PfCemirats.dat + RELOC/metapost/profcollege/PfCequateur.dat + RELOC/metapost/profcollege/PfCeritre.dat + RELOC/metapost/profcollege/PfCespagne.dat + RELOC/metapost/profcollege/PfCestonie.dat + RELOC/metapost/profcollege/PfCethiopie.dat + RELOC/metapost/profcollege/PfCfinlande.dat + RELOC/metapost/profcollege/PfCfleuveseurope.dat + RELOC/metapost/profcollege/PfCfleuvessup.dat + RELOC/metapost/profcollege/PfCfrance.dat + RELOC/metapost/profcollege/PfCgabon.dat + RELOC/metapost/profcollege/PfCgambie.dat + RELOC/metapost/profcollege/PfCgaza.dat + RELOC/metapost/profcollege/PfCgeorgie.dat + RELOC/metapost/profcollege/PfCghana.dat + RELOC/metapost/profcollege/PfCgibraltar.dat + RELOC/metapost/profcollege/PfCgrece.dat + RELOC/metapost/profcollege/PfCguatemala.dat + RELOC/metapost/profcollege/PfCguinee.dat + RELOC/metapost/profcollege/PfCguineebissau.dat + RELOC/metapost/profcollege/PfCguineef.dat + RELOC/metapost/profcollege/PfCguyane.dat + RELOC/metapost/profcollege/PfChaiti.dat + RELOC/metapost/profcollege/PfChonduras.dat + RELOC/metapost/profcollege/PfChongrie.dat + RELOC/metapost/profcollege/PfCiles.dat + RELOC/metapost/profcollege/PfCiles1.dat + RELOC/metapost/profcollege/PfCinde.dat + RELOC/metapost/profcollege/PfCindonesie1.dat + RELOC/metapost/profcollege/PfCindonesie2.dat + RELOC/metapost/profcollege/PfCirak.dat + RELOC/metapost/profcollege/PfCiran.dat + RELOC/metapost/profcollege/PfCirelande.dat + RELOC/metapost/profcollege/PfCirelandenord.dat + RELOC/metapost/profcollege/PfCisrael.dat + RELOC/metapost/profcollege/PfCitalie.dat + RELOC/metapost/profcollege/PfCjordanie.dat + RELOC/metapost/profcollege/PfCkazakhstan.dat + RELOC/metapost/profcollege/PfCkenya.dat + RELOC/metapost/profcollege/PfCkoweit.dat + RELOC/metapost/profcollege/PfCkyrgyzstan.dat + RELOC/metapost/profcollege/PfClacs.dat + RELOC/metapost/profcollege/PfClacssup.dat + RELOC/metapost/profcollege/PfClaos.dat + RELOC/metapost/profcollege/PfClesotho.dat + RELOC/metapost/profcollege/PfClettonie.dat + RELOC/metapost/profcollege/PfCliban.dat + RELOC/metapost/profcollege/PfCliberia.dat + RELOC/metapost/profcollege/PfClibye.dat + RELOC/metapost/profcollege/PfCliechtenstein.dat + RELOC/metapost/profcollege/PfClithuanie1.dat + RELOC/metapost/profcollege/PfClithuanie2.dat + RELOC/metapost/profcollege/PfCluxembourg.dat + RELOC/metapost/profcollege/PfCmacedoine.dat + RELOC/metapost/profcollege/PfCmalaisie1.dat + RELOC/metapost/profcollege/PfCmalaisie2.dat + RELOC/metapost/profcollege/PfCmalawi.dat + RELOC/metapost/profcollege/PfCmali.dat + RELOC/metapost/profcollege/PfCmaroc.dat + RELOC/metapost/profcollege/PfCmauritanie.dat + RELOC/metapost/profcollege/PfCmexique.dat + RELOC/metapost/profcollege/PfCmoldavie.dat + RELOC/metapost/profcollege/PfCmonaco.dat + RELOC/metapost/profcollege/PfCmongolie.dat + RELOC/metapost/profcollege/PfCmozambique.dat + RELOC/metapost/profcollege/PfCnamibie.dat + RELOC/metapost/profcollege/PfCnepal.dat + RELOC/metapost/profcollege/PfCnicaragua.dat + RELOC/metapost/profcollege/PfCniger.dat + RELOC/metapost/profcollege/PfCnigeria.dat + RELOC/metapost/profcollege/PfCnorvege.dat + RELOC/metapost/profcollege/PfCnvelleguinne.dat + RELOC/metapost/profcollege/PfComan1.dat + RELOC/metapost/profcollege/PfComan2.dat + RELOC/metapost/profcollege/PfCouganda.dat + RELOC/metapost/profcollege/PfCouzbekistan.dat + RELOC/metapost/profcollege/PfCpakistan.dat + RELOC/metapost/profcollege/PfCpanama1.dat + RELOC/metapost/profcollege/PfCpanama2.dat + RELOC/metapost/profcollege/PfCparaguay.dat + RELOC/metapost/profcollege/PfCpaysbas.dat + RELOC/metapost/profcollege/PfCpaysdegalles.dat + RELOC/metapost/profcollege/PfCperou.dat + RELOC/metapost/profcollege/PfCpolesud.dat + RELOC/metapost/profcollege/PfCpologne.dat + RELOC/metapost/profcollege/PfCportugal.dat + RELOC/metapost/profcollege/PfCquatar.dat + RELOC/metapost/profcollege/PfCrepcentreafrique.dat + RELOC/metapost/profcollege/PfCrepdominicaine.dat + RELOC/metapost/profcollege/PfCriomuni.dat + RELOC/metapost/profcollege/PfCrivieres.dat + RELOC/metapost/profcollege/PfCroumanie.dat + RELOC/metapost/profcollege/PfCrussie1.dat + RELOC/metapost/profcollege/PfCrussie1bis.dat + RELOC/metapost/profcollege/PfCrussie2.dat + RELOC/metapost/profcollege/PfCrussie3.dat + RELOC/metapost/profcollege/PfCrussie3bis.dat + RELOC/metapost/profcollege/PfCrwanda.dat + RELOC/metapost/profcollege/PfCsaharaouest.dat + RELOC/metapost/profcollege/PfCsalvador.dat + RELOC/metapost/profcollege/PfCsanmarin.dat + RELOC/metapost/profcollege/PfCsenegal.dat + RELOC/metapost/profcollege/PfCsierraleone.dat + RELOC/metapost/profcollege/PfCslovaquie.dat + RELOC/metapost/profcollege/PfCslovenie.dat + RELOC/metapost/profcollege/PfCsomalie.dat + RELOC/metapost/profcollege/PfCsoudan.dat + RELOC/metapost/profcollege/PfCsuede.dat + RELOC/metapost/profcollege/PfCsuisse.dat + RELOC/metapost/profcollege/PfCsurinam.dat + RELOC/metapost/profcollege/PfCswaziland.dat + RELOC/metapost/profcollege/PfCsyrie.dat + RELOC/metapost/profcollege/PfCtajikistan.dat + RELOC/metapost/profcollege/PfCtanzanie.dat + RELOC/metapost/profcollege/PfCtchad.dat + RELOC/metapost/profcollege/PfCtcheque.dat + RELOC/metapost/profcollege/PfCthailande.dat + RELOC/metapost/profcollege/PfCtogo.dat + RELOC/metapost/profcollege/PfCtunisie.dat + RELOC/metapost/profcollege/PfCturkmenistan.dat + RELOC/metapost/profcollege/PfCturquie1.dat + RELOC/metapost/profcollege/PfCturquie2.dat + RELOC/metapost/profcollege/PfCukraine.dat + RELOC/metapost/profcollege/PfCuruguay.dat + RELOC/metapost/profcollege/PfCusa1.dat + RELOC/metapost/profcollege/PfCusa2.dat + RELOC/metapost/profcollege/PfCvenezuela.dat + RELOC/metapost/profcollege/PfCvietnam.dat + RELOC/metapost/profcollege/PfCvillesFrance.dat + RELOC/metapost/profcollege/PfCvillesFranceCycle4.dat + RELOC/metapost/profcollege/PfCvillesFranceNord.dat + RELOC/metapost/profcollege/PfCvillesFrancesimp.dat + RELOC/metapost/profcollege/PfCvillesItalie.dat + RELOC/metapost/profcollege/PfCvolcans.dat + RELOC/metapost/profcollege/PfCwestbank.dat + RELOC/metapost/profcollege/PfCyemen.dat + RELOC/metapost/profcollege/PfCyougoslavie.dat + RELOC/metapost/profcollege/PfCzaire.dat + RELOC/metapost/profcollege/PfCzambie.dat + RELOC/metapost/profcollege/PfCzimbabwe.dat RELOC/tex/latex/profcollege/PfCEquationComposition2.tex RELOC/tex/latex/profcollege/PfCEquationLaurent1.tex RELOC/tex/latex/profcollege/PfCEquationPose1.tex @@ -249700,10 +254695,86 @@ runfiles size=230 RELOC/tex/latex/profcollege/PfCEquationSymbole1.tex RELOC/tex/latex/profcollege/PfCEquationTerme1.tex RELOC/tex/latex/profcollege/ProfCollege.sty +catalogue-also proflycee catalogue-ctan /macros/latex/contrib/profcollege catalogue-license lppl1.3c catalogue-topics maths french teaching -catalogue-version 0.99-a +catalogue-version 0.99-z-f + +name proflabo +category Package +revision 63147 +shortdesc Draw laboratory equipment +relocated 1 +longdesc This package was developed to help French chemistry teachers to +longdesc create drawings (using TikZ) for laboratory stuff. +containersize 2748 +containerchecksum 7270b65b821c303e84eec760126ad421dd65fbb5ff81309142690f8820c4865c3b1ff39b22b2cf700a10920b973e18085a1e73ea3f6c9d90da984d48a19bbca7 +doccontainersize 134096 +doccontainerchecksum 567ba9cd2d7eb724fd4ab20ec417f6804a795ff506bf8df582df9d7ace7ef2c5a8f95b46ff374391fed44918c6a536f6b14348ea3e0f3ff149fbe4fdafba9fa8 +docfiles size=38 + RELOC/doc/latex/proflabo/ProfLabo-doc.pdf details="Package documentation" + RELOC/doc/latex/proflabo/ProfLabo-doc.tex + RELOC/doc/latex/proflabo/README.md details="Readme" +runfiles size=3 + RELOC/tex/latex/proflabo/ProfLabo.sty +catalogue-also pst-labo +catalogue-ctan /macros/latex/contrib/proflabo +catalogue-license lppl +catalogue-topics chemistry +catalogue-version 1.0 + +name proflycee +category Package +revision 66581 +shortdesc A LaTeX package for French maths teachers in high school +relocated 1 +longdesc This package provides some commands to help French mathematics +longdesc teachers for 15-18 years olds, for example: \SplineTikz to +longdesc create splines with "derivative control"; +longdesc \CalculFormelParametres and \CalculFormelLigne in order to +longdesc create an xcas-windows-like; \CodePythonLstFichier to create +longdesc code presentation and code execution with pythontex. +containersize 29036 +containerchecksum 943bd0d3e086e46c91ea0fec06d37f36fa9642497417a3d99a4545d594be476adf35fa84f9d7fda334a2722490b79c5a572cb59cd7e5b7969fabd2e9cef44454 +doccontainersize 1604396 +doccontainerchecksum 6cab0f5ec3ef5cacc5efa509926a0e1a3df9269a2c37120acd7fcc0276c0a337cf77016720690b72090feddbadd518964306b2691a243a621cf3cabb1816e537 +docfiles size=525 + RELOC/doc/latex/proflycee/ProfLycee-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/proflycee/ProfLycee-doc.tex + RELOC/doc/latex/proflycee/ProfLycee-old-doc.pdf + RELOC/doc/latex/proflycee/ProfLycee-old-doc.tex + RELOC/doc/latex/proflycee/README.md details="Readme" + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_a.png + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_b.png + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_c.png + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_d.png + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_e.png + RELOC/doc/latex/proflycee/graphics/pl-doc-probas_f.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_a.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_b.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_c.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_c2.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_d.png + RELOC/doc/latex/proflycee/graphics/pl-doc-stats_e.png + RELOC/doc/latex/proflycee/graphics/pl-solve_a.png + RELOC/doc/latex/proflycee/graphics/pl-solve_b.png + RELOC/doc/latex/proflycee/graphics/pl-solve_c.png + RELOC/doc/latex/proflycee/graphics/pl-solve_d.png + RELOC/doc/latex/proflycee/testscript.py +runfiles size=63 + RELOC/tex/latex/proflycee/ProfLycee-old.sty + RELOC/tex/latex/proflycee/ProfLycee.sty + RELOC/tex/latex/proflycee/proflycee-tools-minted.tex + RELOC/tex/latex/proflycee/proflycee-tools-piton.tex + RELOC/tex/latex/proflycee/proflycee-tools-pythontex.tex +catalogue-also profcollege +catalogue-contact-bugs https://github.com/cpierquet/ProfLycee/issues +catalogue-contact-repository https://github.com/cpierquet/ProfLycee +catalogue-ctan /macros/latex/contrib/proflycee +catalogue-license lppl1.3c +catalogue-topics maths french teaching expl3 pgf-tikz +catalogue-version 2.5.4 name program category Package @@ -249784,30 +254855,72 @@ catalogue-license lppl catalogue-topics graphics-use catalogue-version 1.0b~4 +name projlib +category Package +revision 65475 +shortdesc A series of tools to simplify your workflow +relocated 1 +longdesc ProjLib is a collection of tools to help you write LaTeX +longdesc documents. With the main package ProjLib loaded, you no longer +longdesc need to set up the theorem-like environments, nor to manually +longdesc configure the appropriate multilingual settings. In addition, a +longdesc series of auxiliary functionalities are introduced. +depend create-theorem +containersize 26248 +containerchecksum 6daf672c982bbcaf73fc726aa6d3a475c3b0673f22d6f30156daf1235b9d2798d7359134347f1349a557586f8ce592c421bd536766aa7246b2eb07c04e102339 +doccontainersize 8684 +doccontainerchecksum 7be28ac70142ba767138164c98240da1a9e37b864b01ad3c4f71ee3adf1148e5059e5bf4cc87456baa2109160de9ac698657a749a1859ef5a1333101637fc1ee +docfiles size=8 + RELOC/doc/latex/projlib/DEPENDS.txt + RELOC/doc/latex/projlib/LICENSE + RELOC/doc/latex/projlib/README.md details="Readme" +srccontainersize 26412 +srccontainerchecksum 20228363e654a1329cc5579094fa4967534e7a07d7b385763531b90b2f436e688667880bf962025110a0b693c2957585d3cdd8ee98344ea3b26ba791d572d73c +srcfiles size=55 + RELOC/source/latex/projlib/ProjLib.dtx + RELOC/source/latex/projlib/ProjLib.ins +runfiles size=58 + RELOC/tex/latex/projlib/ProjLib.sty + RELOC/tex/latex/projlib/projlib-author.sty + RELOC/tex/latex/projlib/projlib-datetime.sty + RELOC/tex/latex/projlib/projlib-draft.sty + RELOC/tex/latex/projlib/projlib-font.sty + RELOC/tex/latex/projlib/projlib-language.sty + RELOC/tex/latex/projlib/projlib-logo.sty + RELOC/tex/latex/projlib/projlib-math.sty + RELOC/tex/latex/projlib/projlib-paper.sty + RELOC/tex/latex/projlib/projlib-text.sty + RELOC/tex/latex/projlib/projlib-theorem.sty + RELOC/tex/latex/projlib/projlib-titlepage.sty +catalogue-contact-repository https://github.com/Jinwen-XU/ProjLib +catalogue-ctan /macros/latex/contrib/projlib +catalogue-license lppl1.3c +catalogue-topics misc-support expl3 + name proof-at-the-end category Package -revision 51194 +revision 64188 shortdesc A package to move proofs to appendix relocated 1 longdesc This package aims to provide a way to easily move proofs to the longdesc appendix. You can (among other things) move proofs to different longdesc places/sections, create links from theorems to proofs, restate longdesc theorems, add comments in appendix... -containersize 4440 -containerchecksum 1e5647e1421742e9f0198c5ff8ae5ac315eccef96d0a7c9c5f1dabef167fca5ac9221cdf60d99dafbdfd60f6960a897ebb2d2c4370edcc0d0a36942c0041a777 -doccontainersize 372132 -doccontainerchecksum 9100916a9ebf426502d7c25e5f848fd4eeb19050faa01b0a4a795b838d4084849b42a1f6a187dc8218aeffb6df0cbe592b512e1c613a1045e467198119b33555 -docfiles size=98 +containersize 7328 +containerchecksum 0098bbd42c5dcd8f7e8d30f25682a17bf68845a7859752ba5b397020363914610691248809f27fa78db77d655d7719958f2d438c18913fba859f80e5b7525a2b +doccontainersize 462080 +doccontainerchecksum 5b1ddf5826a0a1c092ad2a155384ede256ee38f52315c2490b9829104fa2fb51f0e4b5ceb7d9e9040dbebcd6c3b0b8cda9d166377c1627e540ebc91fa96e64a1 +docfiles size=126 RELOC/doc/latex/proof-at-the-end/README.md details="Readme" RELOC/doc/latex/proof-at-the-end/proof-at-the-end.pdf details="Package documentation" RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.pdf details="Example of use" RELOC/doc/latex/proof-at-the-end/proof-at-the-end_demo.tex -srccontainersize 12500 -srccontainerchecksum ea0b286182db09ab249a704ef25abc8bd951b51e8671ddb2a8110997b9db4ed353c059f44170e8a5bd76878ae97d34b460701994849425c1f40925d663d0ac6f -srcfiles size=14 +srccontainersize 20852 +srccontainerchecksum c40a7912ea5352227557b9be51a06af4ff19f9239f146c23e96f4a9c134b58fa5274f90d8f726197cab40db523988bdf566181df78a3fff16ab17102e1e9636d +srcfiles size=23 RELOC/source/latex/proof-at-the-end/proof-at-the-end.dtx RELOC/source/latex/proof-at-the-end/proof-at-the-end.ins -runfiles size=4 +runfiles size=6 RELOC/tex/latex/proof-at-the-end/proof-at-the-end.sty catalogue-contact-bugs https://github.com/leo-colisson/proof-at-the-end/issues catalogue-contact-home https://github.com/leo-colisson/proof-at-the-end @@ -249817,7 +254930,7 @@ catalogue-topics maths proof appendix name proofread category Package -revision 50938 +revision 61719 shortdesc Commands for inserting annotations relocated 1 longdesc This package defines a few LaTeX commands that may be useful @@ -249829,16 +254942,16 @@ longdesc document with extra line spacing, and for displaying it in longdesc either corrected or uncorrected state, both without margin longdesc notes. The package is based on code for a text highlighting longdesc command that was published by Antal Spector-Zabusky on -longdesc http://tex.stackexchange.com/questions/5959. The main file, +longdesc https://tex.stackexchange.com/questions/5959. The main file, longdesc proofread.dtx, is self-extracting, so you can generate the longdesc style file by compiling proofread.dtx with pdfLaTeX. This longdesc package is based on the soul package; so if you plan to longdesc highlight non-ASCII characters, you must compile your source longdesc with either XeTeX- or LuaTeX-based compilers. -containersize 2596 -containerchecksum ef0d35bb06d1bf31cdea9aec2f342eef4b8cf053863a26f5c223c1966f6715a547fb61b2f92d4ac273c3309fcfe219f9a78bdf8c9b3ec3886bb96dabd7935033 -doccontainersize 290840 -doccontainerchecksum 6b1ba0b1e009e2f7b337aebcc5c54882f2ef3f2089261d3b9355cb0adfec8aa3c7f207636955979cc0a74554e5878423a23982340bd26ed3c2a634f821497565 +containersize 2588 +containerchecksum 79787978d7888ba127b9b72ea38f0f3e7ef9d427cf8e493120849cf7c2852ffe79b5fbf349160bac419be0725a9d79f33a00c13d6b3eded2cf0600b7d0994513 +doccontainersize 290844 +doccontainerchecksum e33aa6e720a22bebe6f64d90b00bc4e01b0892ae66c5f9c4dc8758e6494fe2bbb9ba84df442471b9db652223fd3e7f40fae486f09c7500095f7a2d1cb2280b3a docfiles size=84 RELOC/doc/latex/proofread/README details="Readme" RELOC/doc/latex/proofread/README.txt @@ -249846,8 +254959,8 @@ docfiles size=84 RELOC/doc/latex/proofread/example.tex RELOC/doc/latex/proofread/proofread.pdf details="Package documentation" RELOC/doc/latex/proofread/proofread.vmb -srccontainersize 6348 -srccontainerchecksum 9a434d59a1540e1dee97e9baf1cda034f768a7a24e1deca7e0f454f7d7918cbd7645e19454fa7683c3754f80e1c9da54b3b2ade2dd58f4c332d2422fe1690935 +srccontainersize 6352 +srccontainerchecksum b1b334a3bc3dc61dad0eb071a1c5dc3595cb9231a3b7e50856bf0d5c50a4ecf188f5efbaf7a0065ad51341c2408cbf3d81a6e7c473bbd003289cca02d1962f46 srcfiles size=6 RELOC/source/latex/proofread/proofread.dtx RELOC/source/latex/proofread/proofread.ins @@ -250286,7 +255399,7 @@ catalogue-topics book-ex name ps2eps category TLCore -revision 53559 +revision 62856 shortdesc Produce Encapsulated PostScript from PostScript longdesc Produce Encapsulated PostScript Files (EPS/EPSF) from a longdesc one-page PostScript document, or any PostScript document. A @@ -250307,10 +255420,10 @@ longdesc ghostscript and an ANSI-C compiler. Included in the longdesc distribution is the bbox program, an application to produce longdesc Bounding Box values for rawppm or rawpbm format files. depend ps2eps.ARCH -containersize 10792 -containerchecksum dd92a9ecfbe36be9d8bdf7aa969559953ff9b56c0c7b703375febea04e3255ecb478204f7284eef84ac1a188368f2a7fe2a40a9c69c938b037d3704b38054e42 -doccontainersize 57332 -doccontainerchecksum 53ca9f92488bb20d038340ea6f5bbbd7d31a1f7bf0aead699a37bb5bcb11f9cd3347016afc9c2ee61e61e5e040203553bb5f6b5aea4ee1d5474ec5d366ff6ef5 +containersize 10892 +containerchecksum c43ba33d29d5b23ece2add44310b89036d5c4725ad76da1ed6e17bb93d0e7d103549f4a7e7807f89cdffcb19a95e0df2fe7851989b8a3b691aacfebfd41044ae +doccontainersize 60664 +doccontainerchecksum 0194c8634c5d31cf441fb3d7fa171d85358db9831c03cc77bac37272ddfed81d8296e9b05eb4daa7c8012f3bad1a01625aeacb2232989969551e01a92912c409 docfiles size=22 texmf-dist/doc/man/man1/bbox.1 texmf-dist/doc/man/man1/bbox.man1.pdf @@ -250318,185 +255431,176 @@ docfiles size=22 texmf-dist/doc/man/man1/ps2eps.man1.pdf runfiles size=9 texmf-dist/scripts/ps2eps/ps2eps.pl +catalogue-contact-repository https://github.com/roland-bless/ps2eps catalogue-ctan /support/ps2eps catalogue-license gpl catalogue-topics ps-manip -catalogue-version 1.68 +catalogue-version 1.70 name ps2eps.aarch64-linux category TLCore -revision 53999 +revision 65927 shortdesc aarch64-linux files of ps2eps -containersize 4168 -containerchecksum 4a8a19bb23522e77703a8d5e5b0b96c0271073443af9384c7838cec3354eec3c673e4bb8e3a5c5176e97a98e061e5b0284976cc01e2fab6e4bd8a02dbdd498d9 +containersize 3956 +containerchecksum cf7c30a2128310cf5b29fdf1440a272d9162afff17009627f1fd1a202cb55738543da15cdf9a91cea47f1c03372576a5404b9134aaf8102612eb61d259b1da74 binfiles arch=aarch64-linux size=4 bin/aarch64-linux/bbox bin/aarch64-linux/ps2eps name ps2eps.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of ps2eps -containersize 4448 -containerchecksum 2345380fc552e150d0950ee26bc6becdde39dd85e1780d3cb0b4375bfe812909e347919820e9fc0c5d5702f736aeeeeca03b4339619eff9cc1518b46e7da3a63 +containersize 4564 +containerchecksum e9d0c580fc5ab3f433ed64f6f8727c8f1fa77867b45a5a11f924c32521644a59f69c6d96227c919aa132117ec8c8fa5c508e96b0d8d0934850ec8487b60a888e binfiles arch=amd64-freebsd size=4 bin/amd64-freebsd/bbox bin/amd64-freebsd/ps2eps name ps2eps.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of ps2eps -containersize 4428 -containerchecksum d829c60e9ffd4e480a75b4c9665c174ee318be17de4d8228d76688ed09e9f62af6379265a76b39eacb9b0aaa711166dafc653cfde52b99ca67ab145c7f073ac5 +containersize 4544 +containerchecksum f87f85ba4f77ec5098b94b3a705f2db1ef319f3e04a4b9de8540d61fa9901bf85c1602e54e95cc372727c2af739ef521a30fefd7a828c959680f169d4d44edda binfiles arch=amd64-netbsd size=4 bin/amd64-netbsd/bbox bin/amd64-netbsd/ps2eps name ps2eps.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of ps2eps -containersize 3852 -containerchecksum 2ce521cffff1a49ba1122d66718a0ffad6a3b85ab50761a40b40fd728c252c86fceb2e9903d2b32541b22416b215dbca87adacdcd78470e7a44ab0ae199c6654 +containersize 3904 +containerchecksum ecf6759991694cbbe3714e8442ddb77413324d006b83f04e5f7293549fae886f5df24767c07082f96eb3a20348c0eda3571570cf00003519710ae3dd775f9dcb binfiles arch=armhf-linux size=4 bin/armhf-linux/bbox bin/armhf-linux/ps2eps -name ps2eps.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of ps2eps -containersize 4584 -containerchecksum 61b00d80a343353428e5961471dcb7981b701e79d5120cfb62597823c7dcb0f8375fefa0d59f1315438e412c8e560207652b94c1ba5a1a1a0ae21e4ebee0c9ae -binfiles arch=i386-cygwin size=5 - bin/i386-cygwin/bbox.exe - bin/i386-cygwin/ps2eps - name ps2eps.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of ps2eps -containersize 4172 -containerchecksum 2bc1407792fb16057b474fd3dea9b3e603eca399ee1ca246910ea57092ffb5c3d0fd15dee52089d1eadbdedfded3ea4f2679e6587d36eab75ad43e40ead1d730 +containersize 4504 +containerchecksum b13f702b2a6a14a3a58f15694f17b416699bf5d16d2799fc035d726cb8b26b63e3c00adf06030089304e2661ba5cacf4812880acf98e465bb5c8909464fcd6b7 binfiles arch=i386-freebsd size=4 bin/i386-freebsd/bbox bin/i386-freebsd/ps2eps name ps2eps.i386-linux category TLCore -revision 50281 +revision 62210 shortdesc i386-linux files of ps2eps -containersize 4172 -containerchecksum 06b48030c8c18bd2cd57ebe74ef6960ba62f38a3fe6e65be3c408425bf04546add1fa8a73aaaad38d71c16a5ff3e26fdfa6237fab38f11a4c12405f0a57cfe99 -binfiles arch=i386-linux size=3 +containersize 4180 +containerchecksum e69629dbaa44a07b0c3fc46f8ca64ce768627019e6799507f6fc77321d2be8846eaaacad411cc9130889fe13a668f88514a08db3c0fb24990d9eaf9d0d7d337d +binfiles arch=i386-linux size=4 bin/i386-linux/bbox bin/i386-linux/ps2eps name ps2eps.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of ps2eps -containersize 4448 -containerchecksum 572f02a057ecd05c3224145662baefcddcad680418a7236550498ce272c263f3301ef2d90d0dfc79f31260e3e8e7212ba5ba8ce374938649b4f56b7481f7cb07 +containersize 4584 +containerchecksum 103159d4698b5d5e068f7ba5f9557d4742430e644cfa371c5669ebb8e58df460ae855315a96c4b8a05e60716f48eb7843c490b6e20884bb273e6e3367880fc84 binfiles arch=i386-netbsd size=4 bin/i386-netbsd/bbox bin/i386-netbsd/ps2eps name ps2eps.i386-solaris category TLCore -revision 40549 +revision 62206 shortdesc i386-solaris files of ps2eps -containersize 4712 -containerchecksum 04541900ae23256c8ed13ca50fb0c106ddefc91f0123a0374643ab60b737f42929e345b9ab285df74f731b498e460d53e9de96001cc05804e9cb4c84705b0df3 +containersize 4708 +containerchecksum d755915fb9e1235f37f2ebfe318dfb1b8f5b820a923447864681764cfe1a00a212f17366c25f143ab0dc74198d618fc5798e26300ae56b705b81455f02a932e3 binfiles arch=i386-solaris size=4 bin/i386-solaris/bbox bin/i386-solaris/ps2eps name ps2eps.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of ps2eps -containersize 12148 -containerchecksum bd0596014343e03624d99048f1af48bea205655fd0a4d6ef6cceb53d4190484d527ace4135a7625cbe8bb92ecbe3194c0d3285fef503b7c68a01dbb84432c82e +containersize 12348 +containerchecksum 67d4a1f212d87ce6f83803c638b27a452546bd1abf411d830c4138b27192368f35a338cdc66491d1bfe502830d6952ba05b35fed619f5c873f124db15e6a4965 binfiles arch=universal-darwin size=30 bin/universal-darwin/bbox bin/universal-darwin/ps2eps -name ps2eps.win32 +name ps2eps.windows category TLCore -revision 53994 -shortdesc win32 files of ps2eps -containersize 5152 -containerchecksum 07708e5f8eb11c32f69053790c07f1f99317d1974c9f0620d40e5c9e51b7ec13a19a099868f5c3f87010598cca4a2c65fc898862a3f3620aef99b3fee9f7ca6f -binfiles arch=win32 size=4 - bin/win32/bbox.exe - bin/win32/ps2eps.exe +revision 65891 +shortdesc windows files of ps2eps +containersize 5820 +containerchecksum e4dfdf01259b72c9eb24cc77fb3567c5055fb8d4a6c30437407ee0de896a392ed9dd7986bc614ee56ff0e3082a276b75de1823e2b4ec10b8a2e5aaa8f1eedfe4 +binfiles arch=windows size=5 + bin/windows/bbox.exe + bin/windows/ps2eps.exe name ps2eps.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of ps2eps -containersize 4496 -containerchecksum 180538bbd3f8a2d98ab96460c5432906ba2ae1aa24369610cf4a96c6324bd76e68fc236d772e264c0b09188d6be79042911b0445dcf6e6d9c27f98b3b246b90d -binfiles arch=x86_64-cygwin size=4 +containersize 4532 +containerchecksum 7f79da18e7b370562d77d62eee6a49153a14a132c245b976f9467b11742b78abb7548379a8b4e4d8f1ea02fe216942cacf605b1155e32d694fe17b0afb06dcd7 +binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/bbox.exe bin/x86_64-cygwin/ps2eps name ps2eps.x86_64-darwinlegacy category TLCore -revision 58231 +revision 62206 shortdesc x86_64-darwinlegacy files of ps2eps -containersize 3568 -containerchecksum 9c86832880118a5c1222f820052e9b814cf7df7a3885a95c7f92d18f4b6acdf5da38f3e78349e2a0fd4ad4605ba59d3ba964647eed76f7ff192c53639d5fdce8 +containersize 3628 +containerchecksum ebfc29e1b39b23659ac6966bba5ed2c2405c1596dbc823e8f51d2988f69cc6354d395857da42fb677954a66b058aac3b3ddd45b733c4bb34220b467957dd216a binfiles arch=x86_64-darwinlegacy size=5 bin/x86_64-darwinlegacy/bbox bin/x86_64-darwinlegacy/ps2eps name ps2eps.x86_64-linux category TLCore -revision 50281 +revision 62187 shortdesc x86_64-linux files of ps2eps -containersize 4104 -containerchecksum d6a45e2616bc31d68ec0d5fe1ea8e9eef638bd65908c771dc63219e1c32d5297974cda6d2772877b426d35f499230cba3e7665fbf236e430641f3e5ec267af64 -binfiles arch=x86_64-linux size=4 +containersize 4076 +containerchecksum 54ac07db17dfcc29178917860b1f3f11d19c89a74743857e0115f4500f160698ef27ce84b84fda6fadbc28bd5e5197304c4b5bfa9a93eb847d0ec98d3b33ef49 +binfiles arch=x86_64-linux size=5 bin/x86_64-linux/bbox bin/x86_64-linux/ps2eps name ps2eps.x86_64-linuxmusl category TLCore -revision 54264 +revision 62210 shortdesc x86_64-linuxmusl files of ps2eps -containersize 4080 -containerchecksum 8186e4da0508c26056a93aefee222fb3dd998a017e6f365aaac86ff59de3dc17a575cdc3e940696f413ddcf485f85e556fc91f907c980de16f772a9f4cf6348c +containersize 3908 +containerchecksum 2d73e334ac23568eb0c6bb2691ab2e6a79ce257be4f698b9a9d60a41e9e82e8ff0ae998d6329286560fce71c0066030606c66ccf292630ce1cfe9b178bde076f binfiles arch=x86_64-linuxmusl size=4 bin/x86_64-linuxmusl/bbox bin/x86_64-linuxmusl/ps2eps name ps2eps.x86_64-solaris category TLCore -revision 41034 +revision 62206 shortdesc x86_64-solaris files of ps2eps -containersize 4664 -containerchecksum 916fa8bbde4d11501d5431d4b03df7fd53dde0fb4ba435954cc2f456d5a9572964121431b409b04cd850f5f10cec11cf8dddbaee2de247e939039f8d4f2d36de +containersize 4660 +containerchecksum a6cfbd430c77c2baa76fb67129e2f4264f054108c6711da19f9ac6e5666b028ec05028be2b283169e0b8896eb86f58b7de88f485f90c8f592d8acc78e7b6f683 binfiles arch=x86_64-solaris size=4 bin/x86_64-solaris/bbox bin/x86_64-solaris/ps2eps name ps2pk category TLCore -revision 52851 +revision 66186 shortdesc Generate a PK font from an Adobe Type 1 font longdesc Generates a PK file from an Adobe Type 1 font. PK fonts are (or longdesc used to be) valuable in enabling previewers to view documents longdesc generated that use Type 1 fonts. The program makes use of code longdesc donated to the X consortium by IBM. depend ps2pk.ARCH -containersize 504 -containerchecksum 4b3ead8d2708a182d0c158dd8ae5077fb2f4a94c7f6fff52a66d6479d4c05de3d742e4c960ab79b63084435bef491866c38e01d77c41ae3d630c7a32450d0a11 -doccontainersize 62396 -doccontainerchecksum c5b22a86807378fd7d6d83e8802780567a2473e87875bee4c827a48ff470911855bc4a1db4f439fbda1baf71f714086b96e6e78ee059590fb6ebb45c58abca4f -docfiles size=27 +containersize 476 +containerchecksum 764e6dc186bc0e9c1b5ee0a3c5a256e9d42d81645477bba49c59baafec55bc9af63124f77227ca5b6516bf3fa2bdb8d201af813cff09ac9da4574e70351922ce +doccontainersize 62484 +doccontainerchecksum 032c5ab3442cf668d6b40851bdf710b4e4b9eca701bf04c87359c579a5fce52bedea15ee5dc9e4c5967fcc0e3b84805450987b73c204e0df4708b65a7cf74c13 +docfiles size=26 texmf-dist/doc/man/man1/mag.1 texmf-dist/doc/man/man1/mag.man1.pdf texmf-dist/doc/man/man1/pfb2pfa.1 @@ -250511,10 +255615,10 @@ catalogue-topics ps-manip font-proc name ps2pk.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of ps2pk -containersize 86036 -containerchecksum 9fbf48996ff4c324d8a1bd43da41c33404109d4dadb2d42b0cc6c3c9d0dff2af10f242d88de288ae8f5dd7acf066b7d4f134e024e0660672afce526bfbe9df0a +containersize 85732 +containerchecksum ff6891791c96f390ad6088943ce68e4c225ab5c423eec9857d1d73f850a5c999d825052ca4247b005c9078a3267eb3be50ff44828bb0700952e15d3b88b05ca8 binfiles arch=aarch64-linux size=64 bin/aarch64-linux/mag bin/aarch64-linux/pfb2pfa @@ -250523,10 +255627,10 @@ binfiles arch=aarch64-linux size=64 name ps2pk.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of ps2pk -containersize 95256 -containerchecksum 0910d3cab27c06de7df258b9677912944df54102befdf58317b37e71749ba83fc0934be73c3fb91c1af1032b293f9a6cbe7eb5e27f3c4fdc0db8c8a92dcb639f +containersize 95968 +containerchecksum 2ceecf4795d1c5488caa827720d0b76c5687e489fe254168aab051d3022f0896839580f6fc13a96f9b6f5ef1d9e51ef8ff3c883d9f66748f8d2c8dee64a793db binfiles arch=amd64-freebsd size=60 bin/amd64-freebsd/mag bin/amd64-freebsd/pfb2pfa @@ -250535,10 +255639,10 @@ binfiles arch=amd64-freebsd size=60 name ps2pk.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of ps2pk -containersize 82608 -containerchecksum 27a59639538c9939fd8833a3321bd6e5d001709bad3c546b533cde6aa541e6af3d26a07ad80ce87425ea3a05333eb19d9954085a4b69a8e2205ea66c1360c039 +containersize 82588 +containerchecksum be932debf4531e49f8cbfab923304f9868349a920377481585a767a5cbc51fd4eba5094a530131a68be1dc8f44a070033c29b066efa4965bdbd979eba0644d94 binfiles arch=amd64-netbsd size=68 bin/amd64-netbsd/mag bin/amd64-netbsd/pfb2pfa @@ -250547,34 +255651,22 @@ binfiles arch=amd64-netbsd size=68 name ps2pk.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of ps2pk -containersize 70772 -containerchecksum d37fe60d3aefc89c61c20fc92c8341ae478dc9245fc637ad7aa4c26a906cb076312bc7d2c5041f3becd9963d1ce7b01c2066a47031a74d7582aa26babc0cd1bd +containersize 70780 +containerchecksum 9675c57e7a475ae7d0aa22eed6b4686be796149f5d4f4f2da1226fb31743df0d8b366ea4a9478a377a6d5d71c05a45072687d1fa68350217a1f19f7ed62edf88 binfiles arch=armhf-linux size=48 bin/armhf-linux/mag bin/armhf-linux/pfb2pfa bin/armhf-linux/pk2bm bin/armhf-linux/ps2pk -name ps2pk.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of ps2pk -containersize 57448 -containerchecksum f24707767d468453fa10637f1e7f18e15bedd03215b3bf8cc98c5b9585d33ef32b3c82920e8b321f1ba428b0733701f0103eabd13900fb854295924d00cac236 -binfiles arch=i386-cygwin size=41 - bin/i386-cygwin/mag.exe - bin/i386-cygwin/pfb2pfa.exe - bin/i386-cygwin/pk2bm.exe - bin/i386-cygwin/ps2pk.exe - name ps2pk.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of ps2pk -containersize 84744 -containerchecksum 2b4d555c0e0a19d7dc022c7fce93fbd2a7804263b30e184d4fc3b7f17ac0d500ae53b51320fe42e19c2f9644340d4f9f483c901b13c66b382936c4f4763f0fe6 +containersize 86412 +containerchecksum b51db94f0ea503b9d691d06587ce3d29a3795b379cf061d5b766137c48fd56a0e2471ddf76afab39edff4f6f8c19efb2cc9775396b7e7d72e4ebe7c759958306 binfiles arch=i386-freebsd size=54 bin/i386-freebsd/mag bin/i386-freebsd/pfb2pfa @@ -250583,11 +255675,11 @@ binfiles arch=i386-freebsd size=54 name ps2pk.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of ps2pk -containersize 91820 -containerchecksum 410f08fb410ded312b7666284f004577dbd008358b9420d9ab751651553d745428ebd835ed6b9c9fb756272b1f67a04ee85093ee56383b87109635ec555a2c91 -binfiles arch=i386-linux size=59 +containersize 93080 +containerchecksum 4cda1ae8c0aa976ae2739b4f3636d374e819ad8d430fa25a6cb7dbfea77c602603ca36039fbaaa9edfb8d509424de9fe7dd8b907caad51cb01d77be79586d548 +binfiles arch=i386-linux size=62 bin/i386-linux/mag bin/i386-linux/pfb2pfa bin/i386-linux/pk2bm @@ -250595,10 +255687,10 @@ binfiles arch=i386-linux size=59 name ps2pk.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of ps2pk -containersize 73680 -containerchecksum ac6cd0589d540bf67548ac4b756fb009be311c42fa80eaa46df8852186da942ced8c669059eb87b9ef53a66440b4780fd5c41129927b21676e82d442e7cc5c1f +containersize 73628 +containerchecksum aa5e13ee8ca62d0594b08cee9bfe95dde30fd1fe35160abd931254ad282b4802bb79f1302b06a7a889c30bd5212b5ce8c345cd8856be7de49639274c4ffe05ec binfiles arch=i386-netbsd size=63 bin/i386-netbsd/mag bin/i386-netbsd/pfb2pfa @@ -250607,10 +255699,10 @@ binfiles arch=i386-netbsd size=63 name ps2pk.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of ps2pk -containersize 85244 -containerchecksum 6e0311759648eae73e19445fbd301c3f77221dcb0d80f9179924378a523d181e8171273c2191f55c2a165dac4dba298104669a26bf1d590c3350a7ac90c18e74 +containersize 85220 +containerchecksum beeb46a47d2db6f4a5cb03796a36d4f0d92655c8bfd805b65858a5df9545b7189e5b4c32d953d9052a5c99ae331779502d92272f59b7c3c4c7464ce5fe0476b0 binfiles arch=i386-solaris size=52 bin/i386-solaris/mag bin/i386-solaris/pfb2pfa @@ -250619,35 +255711,35 @@ binfiles arch=i386-solaris size=52 name ps2pk.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of ps2pk -containersize 174516 -containerchecksum ac6086ecffec23666873fa450f560688dfbb044886898af0b91303fab1fe83af98e0b2366a1f1accc104f1a8b462a02447fa5fd5742c48127afea061178b115c -binfiles arch=universal-darwin size=195 +containersize 175280 +containerchecksum 724be1709de4df5a20d9bd6c42866a99062bb7e7ed6c5aeccb48169cf206c1b62e254f6024e640210360db14e1d49962041c2038e9c75b1dc9b365453d066a2a +binfiles arch=universal-darwin size=207 bin/universal-darwin/mag bin/universal-darwin/pfb2pfa bin/universal-darwin/pk2bm bin/universal-darwin/ps2pk -name ps2pk.win32 +name ps2pk.windows category TLCore -revision 58783 -shortdesc win32 files of ps2pk -containersize 59264 -containerchecksum 24ce064a111f84241fbd29615973304488df939ee4a0b1c39a7c1708e743e9ec82311e966a49eebd06e9bacf996bd572c49d0409a1d64686b268bf94851de4b6 -binfiles arch=win32 size=44 - bin/win32/mag.exe - bin/win32/pfb2pfa.exe - bin/win32/pk2bm.exe - bin/win32/ps2pk.exe +revision 65891 +shortdesc windows files of ps2pk +containersize 60732 +containerchecksum baa2f4061cc7681648d998f650ac97b98c07a5dc9edb5851da9e1c9bded27e8e09d7c7af2d51c72cc0d269e2931d6e35a90eba37714fb30a21a8111cd9de5141 +binfiles arch=windows size=51 + bin/windows/mag.exe + bin/windows/pfb2pfa.exe + bin/windows/pk2bm.exe + bin/windows/ps2pk.exe name ps2pk.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of ps2pk -containersize 61576 -containerchecksum 9540e8619103fc26f1f1c7eb09f8d3fbf449910a2d117a26ef55bbda1f041cd69df803518541919e6c139f8bf7b39e56314c32f5c1dd01e070fa0df4629d39b3 -binfiles arch=x86_64-cygwin size=41 +containersize 61992 +containerchecksum c5d260f9b0299056a74f7efefc56db071e1bdfb81fc7cd36ba730323638499cfa2bc8a8d3133e4ebd26e6bea04fbea2daa2f4b4814c8371cd94173efc42e4c36 +binfiles arch=x86_64-cygwin size=42 bin/x86_64-cygwin/mag.exe bin/x86_64-cygwin/pfb2pfa.exe bin/x86_64-cygwin/pk2bm.exe @@ -250655,10 +255747,10 @@ binfiles arch=x86_64-cygwin size=41 name ps2pk.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of ps2pk -containersize 85048 -containerchecksum 6c7dcd4283ca061687267b7f7586b4417cc38c1b7a4daef90638968fdbb8955dbc9f12863b7a174d2298445fd42f3ee52def513ce2547642ad21e82342569b3a +containersize 84940 +containerchecksum 9d1872ccca60d6569cb277ea45002df7bb5bbfff81f4ebe04623562c7ffbb0a88818e23534bc249eb7561b6bd3bcfb01d1635a7863827da5c46c62457c9b4628 binfiles arch=x86_64-darwinlegacy size=58 bin/x86_64-darwinlegacy/mag bin/x86_64-darwinlegacy/pfb2pfa @@ -250667,11 +255759,11 @@ binfiles arch=x86_64-darwinlegacy size=58 name ps2pk.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of ps2pk -containersize 89504 -containerchecksum 552a41d6722df6bc805be58ba5b5467b902061c2587db75751aa934005e331827734b3583c7b8d5698348ff634655441da6a73c1899f2c97236e921ec216f112 -binfiles arch=x86_64-linux size=57 +containersize 90000 +containerchecksum 9440efe56d0533a0a771bc80946936d233904edad23527b1bec632fe305d1b572c3b5c4582b80abd3e4885aca2382a3771e7067928755e6f576c9df336eb3614 +binfiles arch=x86_64-linux size=62 bin/x86_64-linux/mag bin/x86_64-linux/pfb2pfa bin/x86_64-linux/pk2bm @@ -250679,11 +255771,11 @@ binfiles arch=x86_64-linux size=57 name ps2pk.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of ps2pk -containersize 93484 -containerchecksum 9f23acda95bafabe280ce3005e025aece21a6ab36e942d6e9f2b255bd343d20d7160a13e47f9e3553d3865df1d321eac12946244c7691a05a93a9391e3ee65e5 -binfiles arch=x86_64-linuxmusl size=63 +containersize 93460 +containerchecksum 4441da3b8385e6033db94970fa909be69c210e98fb34db671033a9f9d67788481571cb0150bab45b1ab13636b29ed20f16df8c2c0651923e0979a4e4a5699a09 +binfiles arch=x86_64-linuxmusl size=62 bin/x86_64-linuxmusl/mag bin/x86_64-linuxmusl/pfb2pfa bin/x86_64-linuxmusl/pk2bm @@ -250691,10 +255783,10 @@ binfiles arch=x86_64-linuxmusl size=63 name ps2pk.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of ps2pk -containersize 95080 -containerchecksum aeae35af09fa35e3a0e418e4b9c3f877cdfb9d670998b121868fef2821d60a0467be567824421f4125d5f0c3702dfdb7e3ea66c9169a5a89b0a95080b5ca035d +containersize 95116 +containerchecksum f7d4433db6e9f0f51c75c2900d3126424148b454124b2dd1b8a2c2b4d503d8998bc1bcc9f637e74cb5d982513b2a682b12c8e51ac81187713bb615b1f4ec4295 binfiles arch=x86_64-solaris size=62 bin/x86_64-solaris/mag bin/x86_64-solaris/pfb2pfa @@ -250725,7 +255817,7 @@ catalogue-version 1.0 name pseudo category Package -revision 52582 +revision 65690 shortdesc Straightforward pseudocode relocated 1 longdesc The package permits writing pseudocode without much fuss and @@ -250736,11 +255828,11 @@ longdesc there is functionality for typesetting common syntactic longdesc elements such as keywords, identifiers, and comments. The longdesc package relies on aliascnt, array, colortbl, expl3, l3keys2e, longdesc xcolor, and xparse. -containersize 5012 -containerchecksum efe90b9cd0ada5a099886c8d0bfcb697fd831aef5fe60f6eeb0246dd8ac8bf43782901d77f30cc070b114c961d47602fb2b2d91aef74e9c266ae8323e722ac32 -doccontainersize 614092 -doccontainerchecksum 3ad7ef72a132e91d030f150df2fbb217115d493acaab1c7c61238277ca3220f92091451c806920b7a848e15c5e5a928e30645854d12ad39a8e5e5fc5949d7651 -docfiles size=200 +containersize 6868 +containerchecksum 553146a32653fe020c708b3b3a05285f3be5e8b9ff97e6c6e1593986438bb5e7ed4c094f3bea4c2774ad3897a44cd5b4a7e6a864e7423da351400058db64ef62 +doccontainersize 1027208 +doccontainerchecksum c32b1f5de9d13099b4eeb2dc9b3036e7199ed5ddbd90010de0846f077373bd90fc6ddbe188d00bfd6a7b8f4f421907281a7152c8a09a8a8c03b820f95e9247e8 +docfiles size=320 RELOC/doc/latex/pseudo/LICENSE RELOC/doc/latex/pseudo/Makefile RELOC/doc/latex/pseudo/README.md details="Readme" @@ -250754,8 +255846,9 @@ docfiles size=200 RELOC/doc/latex/pseudo/doc/pseudo.bib RELOC/doc/latex/pseudo/doc/pseudo.pdf details="Package documentation" RELOC/doc/latex/pseudo/doc/pseudo.tex + RELOC/doc/latex/pseudo/test/beamertest.tex RELOC/doc/latex/pseudo/test/pseudotest.tex -runfiles size=5 +runfiles size=8 RELOC/tex/latex/pseudo/pseudo.sty catalogue-also pseudocode catalogue-contact-bugs https://github.com/mlhetland/pseudo.sty/issues @@ -250764,7 +255857,7 @@ catalogue-contact-repository https://github.com/mlhetland/pseudo.sty.git catalogue-ctan /macros/latex/contrib/pseudo catalogue-license mit catalogue-topics pseudocode expl3 -catalogue-version 1.1.3 +catalogue-version 1.2.2 name pseudocode category Package @@ -251261,18 +256354,18 @@ catalogue-version 1.10 name pst-3dplot category Package -revision 56758 +revision 61615 shortdesc Draw 3D objects in parallel projection, using PSTricks relocated 1 longdesc A package using PSTricks to draw a large variety of graphs and longdesc plots, including 3D maths functions. Data can be read from longdesc external data files, making this package a generic tool for longdesc graphing within TeX/LaTeX, without the need for external tools. -containersize 21824 -containerchecksum 6b12d6273f5025b4afbb1adac35e73f60a1ca6430b24c40c145af1a50e35150a34cc70ff14e9904caff34be6955146f358f4231785aa8b7ff662978a846857f2 -doccontainersize 2124912 -doccontainerchecksum 615081d1b54074e8cff1dfc9eadee490526fa22673204fe8f37554474cf89688507989c8701e3633275558165fe91e6684624ebcb0c2b2983cb38c5a2d55d014 -docfiles size=615 +containersize 21856 +containerchecksum bd23d297253501185e817e0b5f8f13705434568d73be8f4e1c8adfcd3b6c55438a72997601b6696af91cb6733d2330ff810a0678e19f79203bc979c49c5cf722 +doccontainersize 2734884 +doccontainerchecksum 544b0fc05fe259d49861e71718e090a45dd0de233e90d2ab248ce2ed427f1113891fc58062126763295651e540fc306f0bf9b4fd516069b205cf063060a03c3a +docfiles size=769 RELOC/doc/generic/pst-3dplot/Changes RELOC/doc/generic/pst-3dplot/README details="Readme" RELOC/doc/generic/pst-3dplot/pst-3dplot-doc.bib @@ -251286,7 +256379,7 @@ runfiles size=31 catalogue-ctan /graphics/pstricks/contrib/pst-3dplot catalogue-license lppl catalogue-topics graphics-3d graphics-plot pstricks -catalogue-version 2.06 +catalogue-version 2.07a name pst-abspos category Package @@ -251378,28 +256471,28 @@ catalogue-version 0.02 name pst-arrow category Package -revision 41980 +revision 61069 shortdesc Special arrows for PSTricks relocated 1 longdesc This package has all the code from the package pstricks-add longdesc which was related to arrows, like multiple arrows and so on. -containersize 5524 -containerchecksum 3400d901f40b9dc3434f107dda5480e0f8e37548b2ea0bfad5a38ff90e1d99aafd43d44d6cb6c0594b0574f781d94ad57e53074d28b10251f6ab8100f2814354 -doccontainersize 125672 -doccontainerchecksum bf97ebd12c09ba4ec3dfad4107141054abc9f04b1e1408017ec038b656bc04ccf09894c5f15a8a0344f358f2e43acdcb7509cc7e0ce686303a62bf175de7a3c7 -docfiles size=59 +containersize 3356 +containerchecksum 3e928de0ec8f1c9dd80143e35e3dcc9d51ff106fa12193798f5d2a77f49b3049f042273102b3dfd1460de68814ab32a3aa4eeb14daad846d729e7f6ddcdaa5fc +doccontainersize 138288 +doccontainerchecksum 19878f237410d2db75096be382efef2ab1c5d169b4bf48b393956bf13a697d2c96b0da528c1044ee9b36ca8231ba4ad2b478bee24402033ebbcdf2778e4128a4 +docfiles size=66 RELOC/doc/generic/pst-arrow/Changes RELOC/doc/generic/pst-arrow/README details="Readme" RELOC/doc/generic/pst-arrow/pst-arrow-doc.bib RELOC/doc/generic/pst-arrow/pst-arrow-doc.pdf details="Brief documentation, with examples" RELOC/doc/generic/pst-arrow/pst-arrow-doc.tex -runfiles size=6 +runfiles size=4 RELOC/tex/generic/pst-arrow/pst-arrow.tex RELOC/tex/latex/pst-arrow/pst-arrow.sty catalogue-ctan /graphics/pstricks/contrib/pst-arrow -catalogue-license lppl1.3 +catalogue-license lppl catalogue-topics pstricks -catalogue-version 0.01 +catalogue-version 0.05 name pst-asr category Package @@ -251428,7 +256521,7 @@ catalogue-version 1.3 name pst-bar category Package -revision 18734 +revision 64331 shortdesc Produces bar charts using PSTricks relocated 1 longdesc The package uses pstricks to draw bar charts from data stored @@ -251436,22 +256529,16 @@ longdesc in a comma-delimited file. Several types of bar charts may be longdesc drawn, and the drawing parameters are highly customizable. No longdesc external packages are required except those that are part of longdesc the standard PSTricks distribution. -containersize 3856 -containerchecksum 14c500c89dcce23c52f4551658496f55ac712c76bf9ab2e8878463a7dc7bb2bb3be10f94679cd2a5b720739e89cefed98237d18f65d0b9ca26ae91ac64525a25 -doccontainersize 175132 -doccontainerchecksum e17655c65e96e2d777484ef8db7304562310af8585c21f8cb6c64921c9aa08ad4b5ff8f61924c87112323c2bb509b5ad7e3b2176b750bd1b0f3df837033f380a -docfiles size=81 +containersize 3892 +containerchecksum a4ca273cf21aade2adb15a8fae3d7aae9b24f4cc4a81002cfe0471aed7b5cc7be516aae26151a8bd2d98171f5524686105f3576df8cb0ecc6e16d690907f7156 +doccontainersize 142976 +doccontainerchecksum 7b090d51bd669c3b252f002855d60f008054f12966d01cffdf6163e4360fd88fc064459d42d756737b1a915d87ffb8f789900be480eb7be1f3925389e2873f58 +docfiles size=45 + RELOC/doc/generic/pst-bar/Changes RELOC/doc/generic/pst-bar/README details="Readme" RELOC/doc/generic/pst-bar/pst-bar-doc.bib - RELOC/doc/generic/pst-bar/pst-bar-doc.pdf details="Package documentation (English)" language="en" + RELOC/doc/generic/pst-bar/pst-bar-doc.pdf details="Package documentation" RELOC/doc/generic/pst-bar/pst-bar-doc.tex - RELOC/doc/generic/pst-bar/pst-bar-docDE.pdf details="Package documentation (German)" language="de" - RELOC/doc/generic/pst-bar/pst-bar-docDE.tex - RELOC/doc/generic/pst-bar/pst-bar.orig -srccontainersize 936 -srccontainerchecksum 4900e4c4ee079574348403f6a39c22f49e92e9ebfd5f8748543fafacf290d7283d34af7baa0a4ec754222cd9d89ae7c663fa57c97a0bb126a2dd76c16d46ee79 -srcfiles size=1 - RELOC/source/generic/pst-bar/Makefile runfiles size=6 RELOC/dvips/pst-bar/pst-bar.pro RELOC/tex/generic/pst-bar/pst-bar.tex @@ -251459,11 +256546,11 @@ runfiles size=6 catalogue-ctan /graphics/pstricks/contrib/pst-bar catalogue-license lppl catalogue-topics genchart pstricks -catalogue-version 0.92 +catalogue-version 0.93 name pst-barcode category Package -revision 45096 +revision 64182 shortdesc Print barcodes using PostScript relocated 1 longdesc The pst-barcode package allows printing of barcodes, in a huge @@ -251472,11 +256559,11 @@ longdesc documentation for details). As a PSTricks package, the package longdesc requires pstricks. The package uses PostScript for calculating longdesc the bars. For PDF output use a multi-pass mechansism such as longdesc pst-pdf. -containersize 99120 -containerchecksum 6c4799d7410da7f13225acd9cb5628d65bdbbb525e2bcb114d7f660d4c752122f8e9028763d3ecbca04c3c9da36b7910d64c981e8593b2c5df6b4cb372103785 -doccontainersize 1110916 -doccontainerchecksum 918891da185bcbd26051a4715cf585fd8539e6ac534ada4a2524bfabec328f87cc998cbd65b7fae8a2fbe4de029403811214c0196e59125a77f8af715b3ed3f0 -docfiles size=1449 +containersize 129680 +containerchecksum c79fc6d5ff483278210e654a3b325a6acd2492d6cdcb8958d5e4802bcec6aa119887bacb82a91e312c39ff5ac12a62d28c04528439684bf000dc1f1003ce8651 +doccontainersize 1363564 +doccontainerchecksum ff4d449709479f9e1218a2fa3ba642660b09556c96cc94a1b65984ae0723e8b730d09634053feb256bf196aa183e4f8a46ed3efdd9d91dc5a03b4a6d4d59c0f1 +docfiles size=1554 RELOC/doc/generic/pst-barcode/Changes RELOC/doc/generic/pst-barcode/README.md details="Readme" RELOC/doc/generic/pst-barcode/images/auspost-1.eps @@ -251487,6 +256574,7 @@ docfiles size=1449 RELOC/doc/generic/pst-barcode/images/aztec-4.eps RELOC/doc/generic/pst-barcode/images/aztec-5.eps RELOC/doc/generic/pst-barcode/images/aztec-6.eps + RELOC/doc/generic/pst-barcode/images/barcode.jpg RELOC/doc/generic/pst-barcode/images/bc412-1.eps RELOC/doc/generic/pst-barcode/images/bc412-2.eps RELOC/doc/generic/pst-barcode/images/bc412-3.eps @@ -251540,6 +256628,8 @@ docfiles size=1449 RELOC/doc/generic/pst-barcode/images/datamatrix-1.eps RELOC/doc/generic/pst-barcode/images/datamatrix-2.eps RELOC/doc/generic/pst-barcode/images/datamatrix-3.eps + RELOC/doc/generic/pst-barcode/images/datamatrix-4.eps + RELOC/doc/generic/pst-barcode/images/dotcode-1.eps RELOC/doc/generic/pst-barcode/images/ean128-1.eps RELOC/doc/generic/pst-barcode/images/ean128-2.eps RELOC/doc/generic/pst-barcode/images/ean128composite-1.eps @@ -251562,6 +256652,8 @@ docfiles size=1449 RELOC/doc/generic/pst-barcode/images/gs1composite-2.eps RELOC/doc/generic/pst-barcode/images/gs1composite-3.eps RELOC/doc/generic/pst-barcode/images/gs1datamatrix-1.eps + RELOC/doc/generic/pst-barcode/images/gs1dotcode-1.eps + RELOC/doc/generic/pst-barcode/images/gs1northamericancoupon-1.eps RELOC/doc/generic/pst-barcode/images/gs1qrcode-1.eps RELOC/doc/generic/pst-barcode/images/gs1qrcode-2.eps RELOC/doc/generic/pst-barcode/images/hanxin-1.eps @@ -251642,11 +256734,13 @@ docfiles size=1449 RELOC/doc/generic/pst-barcode/images/resize3.eps RELOC/doc/generic/pst-barcode/images/rm4scc-1.eps RELOC/doc/generic/pst-barcode/images/sscc18-1.eps + RELOC/doc/generic/pst-barcode/images/swissqrcode-1.eps RELOC/doc/generic/pst-barcode/images/telepen-1.eps RELOC/doc/generic/pst-barcode/images/telepen-2.eps RELOC/doc/generic/pst-barcode/images/telepen-3.eps RELOC/doc/generic/pst-barcode/images/telepen-4.eps RELOC/doc/generic/pst-barcode/images/telepen-5.eps + RELOC/doc/generic/pst-barcode/images/ultracode-1.eps RELOC/doc/generic/pst-barcode/images/upca-1.eps RELOC/doc/generic/pst-barcode/images/upca-2.eps RELOC/doc/generic/pst-barcode/images/upcacomposite-1.eps @@ -251657,17 +256751,17 @@ docfiles size=1449 RELOC/doc/generic/pst-barcode/pst-barcode-doc.ltx RELOC/doc/generic/pst-barcode/pst-barcode-doc.pdf details="Package documentation" RELOC/doc/generic/pst-barcode/pst-barcode-doc.tex -runfiles size=212 +runfiles size=275 RELOC/dvips/pst-barcode/pst-barcode.pro RELOC/tex/generic/pst-barcode/pst-barcode.tex RELOC/tex/latex/pst-barcode/pst-barcode.sty catalogue-also barcodes barcodes-vulis ean kix qrcode -catalogue-contact-home http://tug.org/PSTricks -catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-contact-home https://tug.org/PSTricks +catalogue-contact-support https://tug.org/mailman/listinfo/pstricks catalogue-ctan /graphics/pstricks/contrib/pst-barcode catalogue-license lppl catalogue-topics barcode qrcode pstricks -catalogue-version 0.18 +catalogue-version 0.19 name pst-bezier category Package @@ -251784,7 +256878,7 @@ catalogue-version 0.02 name pst-calendar category Package -revision 15878 +revision 60480 shortdesc Plot calendars in "fancy" ways relocated 1 longdesc The package uses pstricks and pst-3d to draw tabular calendars, @@ -251793,39 +256887,36 @@ longdesc package also requires the multido and pst-xkey packages). The longdesc package works for years 2000-2099, and has options for longdesc calendars in French German and English, but the documentation longdesc is not available in English. -containersize 4508 -containerchecksum 541e353dcb33239f2230cd220bf7918051cbeb3bf8386bb9da045199a80decd68760a34f0461bb7e644f0d1545f2712969c79584a813551ee433d3a2bec888d9 -doccontainersize 282188 -doccontainerchecksum 02be7b99bf8fafb00994327e737a5a050601dd141ff4e3482b42dc3c98c9ecd1c62ee64488146e3a7e1017a965ff1cd41b7487acdae65f5c09e259753c2d2ac2 -docfiles size=85 +containersize 4328 +containerchecksum 0e9bece02b9deaf677ef2d6f02999d3b4b7bc7028ec768fb57e69fcd3c1c26d1ddee1c261cbdce8eb8cb18c647dcdbca1448860d6139f01e17f234b3a8a0e793 +doccontainersize 142076 +doccontainerchecksum 07796be64b64e6c8eff2797d145933bb45c0e3ec0ba50e6fb41974d2dcabce09f2f781f989a62a5c5fe6295af3ddbce10ab811c2abeafe2d8b56b7a603f27412 +docfiles size=39 RELOC/doc/latex/pst-calendar/Changes - RELOC/doc/latex/pst-calendar/README details="Readme" - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.ltx - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.pdf details="German documentation:" language="de" - RELOC/doc/latex/pst-calendar/pst-calendar-docDE.tex - RELOC/doc/latex/pst-calendar/pst-calendar-docFR.pdf details="French documentation:" language="fr" - RELOC/doc/latex/pst-calendar/pst-calendar-docFR.tex + RELOC/doc/latex/pst-calendar/README.md details="Readme" + RELOC/doc/latex/pst-calendar/pst-calendar-doc.pdf details="Package documentation:" + RELOC/doc/latex/pst-calendar/pst-calendar-doc.tex runfiles size=5 RELOC/tex/latex/pst-calendar/pst-calendar.sty catalogue-also calendar catalogue-ctan /graphics/pstricks/contrib/pst-calendar catalogue-license lppl catalogue-topics calendar pstricks -catalogue-version 0.47 +catalogue-version 0.48 name pst-cie category Package -revision 49422 +revision 60959 shortdesc CIE color space relocated 1 longdesc pst-cie is a PSTricks related package to show the different CIE longdesc color spaces: Adobe, CIE, ColorMatch, NTSC, Pal-Secam, longdesc ProPhoto, SMPTE, and sRGB. -containersize 18200 -containerchecksum 4967785a229c9cd316b36357fc94df53e7ebfb216ba5bb222d208a767828aac22184914e2e3744e2726738920dec05f3ed7ab9ce1e30321017f43fa8f52cdce8 -doccontainersize 19771488 -doccontainerchecksum f2554d76fc89d58e4ff61ac5e5635b93775f731e33e384a3113ebcca53c26ae0e4609d1fdfc5f093abb8945bc3f02a77041bce072c29340ff9623a580e0ce352 -docfiles size=5321 +containersize 17948 +containerchecksum fcddc7d04c259132a45fb30850c02b613ca71e9c3df26729166b142e953e997d3c618d835be472d98c0aa7a50caeaebaa5631cfa64cf132aa35c2d29be59c63b +doccontainersize 20261756 +doccontainerchecksum 431f1d8306bb623834ef5f5d732e8fc413947b5f3d31d07874fc9d7ad0897046a4cf919e6e2e520b23eb9f268cfbdaf547dfe7e8e72d44ba92ba9cf3b7a4fabc +docfiles size=5314 RELOC/doc/generic/pst-cie/Changes RELOC/doc/generic/pst-cie/README.md details="Readme" RELOC/doc/generic/pst-cie/pst-cie-doc.bib @@ -251838,11 +256929,11 @@ runfiles size=26 catalogue-ctan /graphics/pstricks/contrib/pst-cie catalogue-license lppl catalogue-topics pstricks colour -catalogue-version 1.06a +catalogue-version 1.06b name pst-circ category Package -revision 59017 +revision 60464 shortdesc PSTricks package for drawing electric circuits relocated 1 longdesc The package is built using PSTricks and in particular pst-node. @@ -251852,20 +256943,16 @@ longdesc package's macros are designed with a view to 'logical' longdesc representation of circuits, as far as possible, so as to longdesc relieve the user of purely graphical considerations when longdesc expressing a circuit. -containersize 24864 -containerchecksum c82c98023fea4d24aa91f17a31e51a80b706274f40fe6494aa03e3e3f329c0a9c615720d6a30abb93fac1b63112196eb88bdc31138f49a6543c7d3771ca054ba -doccontainersize 508896 -doccontainerchecksum a2e119d4a75345784d0789f64d8e6bb0ef27578b00bfe043b755d2b435a6e6efe0c099bd1e7d528744c9a17f86f94c55c3f34c4e5806671608d5e327d3ff4c87 -docfiles size=257 +containersize 24900 +containerchecksum 2335b728be1227d4631e09c3994e9e1f559839e871e29854e700ed74b9031a7d2ea58cc744d20b459c99f1954b7faaecc2ced19c449e98b97fe26b2fa71755da +doccontainersize 574764 +doccontainerchecksum c2eb37603cbba656eb1282130e112d0c3bbb49d4b3703c3d9b19d0d250d272d31fd19d2790c97cf8cd5226b0735e8466eab824a35754f41d7584208e606a6ce7 +docfiles size=174 RELOC/doc/generic/pst-circ/Changes RELOC/doc/generic/pst-circ/README details="Readme" RELOC/doc/generic/pst-circ/pst-circ-doc.bib RELOC/doc/generic/pst-circ/pst-circ-doc.pdf details="Package documentation" RELOC/doc/generic/pst-circ/pst-circ-doc.tex -srccontainersize 948 -srccontainerchecksum c778d38f1937decb0cbbed7973b25abf5c06c5aeff7415f3e066f41dc2442d98b4ff7e3b7afe83f041307ad785d6ddb5799b4a42921b37fc05091d306e48a839 -srcfiles size=1 - RELOC/source/generic/pst-circ/Makefile runfiles size=57 RELOC/dvips/pst-circ/pst-circ.pro RELOC/tex/generic/pst-circ/pst-circ.tex @@ -251873,19 +256960,19 @@ runfiles size=57 catalogue-ctan /graphics/pstricks/contrib/pst-circ catalogue-license lppl catalogue-topics diagram-circ pstricks -catalogue-version 2.18 +catalogue-version 2.19 name pst-coil category Package -revision 37377 +revision 62977 shortdesc A PSTricks package for coils, etc relocated 1 longdesc Pst-coil is a PSTricks based package for coils and zigzags and longdesc for coil and zigzag node connections. -containersize 3936 -containerchecksum efa265a09857efe93dd3d6aa7f63cbdca456982ccbb4c882dac7c1aff43a6f524e546640d5e293b55e59bd6af582e6d91b503cd7875f8c5ab48491b5b8996e4a -doccontainersize 251024 -doccontainerchecksum e31a5c795f9cf1e21364f63d582465825f46d37c3c849e328dcb19c2a2d7d1336c425a027c02db7c1d0d00da74cb2250feda8f2f70d538561aa93a22bcec5498 +containersize 3924 +containerchecksum bf6e1671f6c1d6d7fe348958042892a10168cf96e8626e4d15cb34089110677ede3535abf96e76847b6ad8d3ca910030e975e7b52fe8b168136c98a05f6915f3 +doccontainersize 251028 +doccontainerchecksum 84fb627c91d56e1553325c8d87981ba6ab1001b8f0163b45bf1a7352026853c8d086350191a4f98c01bd6d59bb5f4b638275c38b45eae6d360c8dbba1a5b8867 docfiles size=83 RELOC/doc/generic/pst-coil/Changes RELOC/doc/generic/pst-coil/README details="Package README" @@ -251898,7 +256985,7 @@ runfiles size=5 RELOC/tex/latex/pst-coil/pst-coil.sty catalogue-ctan /graphics/pstricks/contrib/pst-coil catalogue-license lppl -catalogue-topics graphics-use pstricks +catalogue-topics graphics-use pstricks physics catalogue-version 1.07 name pst-contourplot @@ -251997,16 +257084,16 @@ catalogue-version 0.98 Beta name pst-dart category Package -revision 46579 +revision 60476 shortdesc Plotting dart boards relocated 1 longdesc pst-dart is a PSTricks related package and draws Dart Boards. longdesc Optional arguments are the unit and the fontsize. -containersize 2156 -containerchecksum f5d41ddf7c5934a00fe8bbbc6dfa468d26e8ac0c06975301f17f31f168c6bf7499dac210f08f815cd01c05eb4a9a376d5c49cd96195a9df56bd3f1156d9ac6b7 -doccontainersize 368236 -doccontainerchecksum 668648d06ab3047e45737908bca5f901b4815f7b7b6745e9bd5387b6867b1fe6dafec3633295e8c164e26cbf06dab2240516a71e3b766a52b9e1ac0e64d1d93c -docfiles size=104 +containersize 2228 +containerchecksum f8d2665eefeb791672864ae5fe17aebe6b83ca776a6170c46672cce02ab639fcffb011afd922b1dc9abb98a70d6f81cf4b00321e2b69542d532c3c72341e28ac +doccontainersize 340900 +doccontainerchecksum a0c747f8736607f920174b2a80ab07563d1cc7114d6e2e751f7e2d9835eed9f656f4b57b7b9061ad8501f4d6ba26c1fad37825b3819be1060782050ece94199f +docfiles size=108 RELOC/doc/generic/pst-dart/Changes RELOC/doc/generic/pst-dart/README.md details="Readme" RELOC/doc/generic/pst-dart/pst-dart-doc.bib @@ -252018,7 +257105,7 @@ runfiles size=3 catalogue-ctan /graphics/pstricks/contrib/pst-dart catalogue-license lppl catalogue-topics pstricks games -catalogue-version 0.02 +catalogue-version 0.03 name pst-dbicons category Package @@ -252056,7 +257143,7 @@ catalogue-version 0.16 name pst-diffraction category Package -revision 15878 +revision 62977 shortdesc Print diffraction patterns from various apertures relocated 1 longdesc The package enables the user to draw (using PSTricks) the @@ -252069,10 +257156,10 @@ longdesc consideration and of the particular optical setting, e.g. the longdesc radius in case of an circular opening. Moreover one can choose longdesc the wavelength of the light (the associated color will be longdesc calculated by the package). -containersize 5144 -containerchecksum 222e2361650aad3b59f99fffd56aabe3e53a5eddcbb643fb6f970ff9ac52bbebc4274dd02e051f9b24f069e355a081feaf20e735c385d80e3e58d3c72f1bf90a +containersize 5128 +containerchecksum 15db0252472e17f5d4d702d98961babecacaf7753c15ff8e615199f868605e133188c996756cd6cb5b379616a494454dadeef36678709eae8128b0c69623f417 doccontainersize 1067976 -doccontainerchecksum efecfa760a636a90026bb8dc2c6677bf1f5d8f37fa9103d37f598bde413a136928717cd7bf62bdd7581ae4ce21d34b49a2a9e4dab7397cedf7dbc04884012160 +doccontainerchecksum a90ff70c942ccf4526ad82b83c0666db05b3aecec3e3b00fc572a7aeeceaf6487407b178e00b929c6d3402752d0b96d345735c5731ce2046fabb156df2703c07 docfiles size=613 RELOC/doc/generic/pst-diffraction/Changes RELOC/doc/generic/pst-diffraction/README details="Readme" @@ -252084,7 +257171,7 @@ docfiles size=613 RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.pdf details="Package documentation (French)" language="fr" RELOC/doc/generic/pst-diffraction/pst-diffraction-docFR.tex srccontainersize 868 -srccontainerchecksum f71361329e52730f68aa34811cb04b4abd05a5bfb484fa1a264fa17e7609963c09bfc6242b6e777ffa8ca86cf4e5b2cba2a1af2a89611d8d0f9f0dc942abe862 +srccontainerchecksum b5df7c25649efb0fb2143428e7a67f3abffe9ace683c738a45e38a2c1714cbab6fbf009decefd829fd5f17c1c3cfc4859ee9abc3d428f110937f94f4bfa44070 srcfiles size=1 RELOC/source/generic/pst-diffraction/Makefile runfiles size=6 @@ -252092,7 +257179,7 @@ runfiles size=6 RELOC/tex/latex/pst-diffraction/pst-diffraction.sty catalogue-ctan /graphics/pstricks/contrib/pst-diffraction catalogue-license lppl -catalogue-topics graphics-use pstricks +catalogue-topics graphics-use pstricks physics catalogue-version 2.03 name pst-electricfield @@ -252379,32 +257466,28 @@ catalogue-version 0.01 name pst-fill category Package -revision 15878 +revision 60671 shortdesc Fill or tile areas with PSTricks relocated 1 longdesc Pst-fill is a PSTricks-based package for filling and tiling longdesc areas or characters. -containersize 3892 -containerchecksum 69401352ca7e08d6d61ce7ae89f1201f186cec6221ac3b9c2cec61c6033df03b8151ee278ab2edab6a661c49f0867d7f9e764bf45e9dbf32feed655e12239688 -doccontainersize 1121256 -doccontainerchecksum 061dcab012577f3d6e30008c15127f2f70469340598c781a436c0c8b1831d36dfce86a8cd0b802a6f174d3510ee2ed1d9269b4c894793f10d79eaf8b6d0c1ec8 -docfiles size=303 +containersize 3864 +containerchecksum 5fa4ae2e862a9297073bf0559dc46d44109d1153571eb8538650410c96f5c43a9a8c85a379690820f63a5198ac1983fdeb514bf4b1342349352f1a16ef3ee375 +doccontainersize 838084 +doccontainerchecksum ad51d3aba8d9ee19b4a53081a5956e8cf26f2673faf521af088076c6a356e321ca2fb9a0b504e61529c5a2ae49480b3918bd12235a66ad5c45035ce92e2eae92 +docfiles size=249 RELOC/doc/generic/pst-fill/Changes RELOC/doc/generic/pst-fill/README details="Package README" - RELOC/doc/generic/pst-fill/pst-fill.pdf details="Package documentation" -srccontainersize 20788 -srccontainerchecksum 35540e2a923b28393b68da71fc2c15166ec6e57ebed065dee8e8c9acdd7f10eb5327224e7422851b5a32d895eca29f19755bfda2cf1e0fb569deb473921c6d63 -srcfiles size=20 - RELOC/source/generic/pst-fill/Makefile - RELOC/source/generic/pst-fill/pst-fill.dtx - RELOC/source/generic/pst-fill/pst-fill.ins + RELOC/doc/generic/pst-fill/pst-fill-doc.bib + RELOC/doc/generic/pst-fill/pst-fill-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-fill/pst-fill-doc.tex runfiles size=5 RELOC/tex/generic/pst-fill/pst-fill.tex RELOC/tex/latex/pst-fill/pst-fill.sty catalogue-ctan /graphics/pstricks/contrib/pst-fill catalogue-license lppl catalogue-topics graphics-fill-tile pstricks -catalogue-version 1.01 +catalogue-version 1.02 name pst-fit category Package @@ -252433,6 +257516,95 @@ catalogue-license lppl catalogue-topics graphics-supp catalogue-version 0.02 +name pst-flags +category Package +revision 65501 +shortdesc Draw flags of countries using PSTricks +relocated 1 +longdesc This package provides a number of macros for rendering flags of +longdesc countries and their associated artefacts using PSTricks. +longdesc Formatting of the resulting drawings is entirely controlled by +longdesc TeX macros. A good working knowledge of LaTeX should be +longdesc sufficient to design flags of sovereign countries and adapt +longdesc them to create new designs. Features such as color or shape +longdesc customisation and dynamic modifications are possible by +longdesc cleverly adjusting the options supplied to the TeX macros, see +longdesc the documentation for examples. This package requires expl3, +longdesc fp, xfp, xcolor, pstricks and pst-all. +containersize 1243392 +containerchecksum 142a1d78f1423474a935bcc977964eeec310f0e8d8037149f4f5fbf691789f0a9f2986630f629cacf319e34ee640902556b0b59145ef2a763006618c65e21f49 +doccontainersize 1230264 +doccontainerchecksum 4c8bed4fa6f527fd5e0262692cf4acfd52d36bfe8461acb97615c127ab54336ada7a274ed9e5a7a75d26cf764c2f63734aa75d5bc45ec833f3b77b6179fa74fe +docfiles size=319 + RELOC/doc/latex/pst-flags/README.md details="Readme" + RELOC/doc/latex/pst-flags/amm-pst-doc.cls + RELOC/doc/latex/pst-flags/pst-flags-doc.pdf details="Package documentation" + RELOC/doc/latex/pst-flags/pst-flags-doc.tex + RELOC/doc/latex/pst-flags/pst-flags-examples.tex +runfiles size=1218 + RELOC/tex/latex/pst-flags/Flags/pst-Albania-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-American-Samoa-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Andora-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Angola-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Anguilla-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Argentina-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Barbados-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Belize-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Bermuda-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Bhutan-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Bolivia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-British-Virgin-Islands-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Brunei-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Cambodia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Cayman-Islands-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Christmas-Island-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Cocos-Keeling-Islands-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Croatia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Cyprus-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Dominica-flag.tex + RELOC/tex/latex/pst-flags/Flags/pst-Dominican-Republic-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Egypt-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-El-Salvador-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Equatorial-Guinea-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Eritrea-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Fiji-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Iraq-flag-slogan.tex + RELOC/tex/latex/pst-flags/Flags/pst-Kazakhstan-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Kenya-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Kyrgyzstan-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Lebanon-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Lesotho-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Liechtenstein-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Malta-flag-seal-corner.tex + RELOC/tex/latex/pst-flags/Flags/pst-Malta-flag-seal-horse.tex + RELOC/tex/latex/pst-flags/Flags/pst-Malta-flag-seal-text.tex + RELOC/tex/latex/pst-flags/Flags/pst-Mexico-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Moldova-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Mongolia-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Montenegro-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Nicaragua-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Oman-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Papua-New-Guinea-flag.eps + RELOC/tex/latex/pst-flags/Flags/pst-Paraguay-seal-wreath.tex + RELOC/tex/latex/pst-flags/Flags/pst-Portugal-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Saudi-flag-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Serbia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Slovakia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Slovenia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Spain-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-SriLanka-seal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Tajikistan-flag-seal-crown.tex + RELOC/tex/latex/pst-flags/Flags/pst-Uganda-flagseal.tex + RELOC/tex/latex/pst-flags/Flags/pst-Uruguay-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Zambia-flag-seal.eps + RELOC/tex/latex/pst-flags/Flags/pst-Zimbabwe-flag-seal.eps + RELOC/tex/latex/pst-flags/pst-flags-colors-html.sty + RELOC/tex/latex/pst-flags/pst-flags.sty +catalogue-contact-repository https://github.com/manthanwar/PST-Flags +catalogue-ctan /graphics/pstricks/contrib/pst-flags +catalogue-license lppl1.3c +catalogue-topics graphics pstricks expl3 + name pst-fr3d category Package revision 15878 @@ -252464,7 +257636,7 @@ catalogue-version 1.10 name pst-fractal category Package -revision 54376 +revision 64714 shortdesc Draw fractal sets using PSTricks relocated 1 longdesc The package uses PSTricks to draw the Julia and Mandelbrot @@ -252473,11 +257645,11 @@ longdesc Circle as well as fractal trees (which need not be balanced) longdesc with a variety of different parameters (including varying longdesc numbers of iterations). The package uses the pst-xkey package, longdesc part of the xkeyval distribution. -containersize 10416 -containerchecksum 7c37dce7409f524dd67ee66a79af3d8caa6be5c184c5e6a3c0711810956f3d1623c0266e902af163e8bedf4d8109aff7266d6c6e351485abcd9e300dcf554799 -doccontainersize 21911456 -doccontainerchecksum e089a681d0fb6d8505fbeafc1c194d0cc4f81f250e4d53843f71dbe6fe62732bf18098b61ebf70d1ed890c57300b9d64d7b7a2b0fd0d3ba9b831579837308f0b -docfiles size=7816 +containersize 10716 +containerchecksum c52e3684398956e0cb1c79c9d1fc145e3b012d011d60bae1a756686529cff076331bb1e8d1895fc2dc46fbda8616a1ecf5c30991778b6041cd40e79fcad32f25 +doccontainersize 21927176 +doccontainerchecksum 657b15f4342764d64aa54c1bf8a86be16ff859c7810e86f85db0b5c5a32064b1caf57944cea09a267f7c5bebad9db7ffdbce5d33a57c65045dab7f3c1d5eecd1 +docfiles size=7832 RELOC/doc/generic/pst-fractal/Changes RELOC/doc/generic/pst-fractal/README details="Readme" RELOC/doc/generic/pst-fractal/pst-fractal-doc.bib @@ -252490,7 +257662,7 @@ runfiles size=13 catalogue-ctan /graphics/pstricks/contrib/pst-fractal catalogue-license lppl catalogue-topics graphics-use pstricks -catalogue-version 0.11a +catalogue-version 0.12 name pst-fun category Package @@ -252526,7 +257698,7 @@ catalogue-version 0.04 name pst-func category Package -revision 58786 +revision 60933 shortdesc PSTricks package for plotting mathematical functions relocated 1 longdesc The package is built for use with PSTricks. It provides macros @@ -252548,28 +257720,28 @@ longdesc function, or the intermediate point of two functions; the longdesc Vasicek function for describing the evolution of interest longdesc rates; and implicit functions. The plots may be generated as longdesc volumes of rotation about the X-axis, as well. -containersize 20116 -containerchecksum 5e609eb9600894ad217c6fb7af7a134447bec166527caf9041c15394666caadce094b1a68c0b365c8863974ab2a850e881666e685943452d12f4008198bfc9e5 -doccontainersize 3516060 -doccontainerchecksum 86bf5a719310809cf9ec4222c667960ed1734a8d2f9a340c287ef241929ecf26048dbc937bc0aad9ccd5179f3918ae65706759757b32b53381be1a3c3395fe4c -docfiles size=1027 +containersize 19920 +containerchecksum f33d9c983c7b79fb6d8f1a8e473afda6f2a4b23e133ab004f2fe4633e4f8fc3fe885034b409f90842c4a4cb81c86527edef445e1408a57d78aef1a006225e85c +doccontainersize 3514644 +doccontainerchecksum 7d0ce738ecdb79eb4c630a5bd51ebc47d92f6ace9b35ee60928520c51c96254ff1f554ff08d8d8addfdac2b28b3d7dc3f90afb73838abacb3f1d8af0fcdf37ec +docfiles size=1030 RELOC/doc/generic/pst-func/Changes RELOC/doc/generic/pst-func/README.md details="Package README" RELOC/doc/generic/pst-func/pst-func-doc.bib RELOC/doc/generic/pst-func/pst-func-doc.data RELOC/doc/generic/pst-func/pst-func-doc.pdf details="Package documentation" RELOC/doc/generic/pst-func/pst-func-doc.tex -runfiles size=25 +runfiles size=24 RELOC/dvips/pst-func/pst-func.pro RELOC/tex/generic/pst-func/pst-func.tex RELOC/tex/latex/pst-func/pst-func.sty catalogue-contact-home http://pstricks.tug.org catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ -catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-contact-support https://tug.org/mailman/listinfo/pstricks catalogue-ctan /graphics/pstricks/contrib/pst-func catalogue-license lppl catalogue-topics maths graphics-plotfn graphics-use pstricks -catalogue-version 0.96 +catalogue-version 0.99 name pst-gantt category Package @@ -252599,7 +257771,7 @@ catalogue-version 0.22a name pst-geo category Package -revision 46273 +revision 60387 shortdesc Geographical Projections relocated 1 longdesc The package offers a set of PSTricks related packages for @@ -252615,11 +257787,11 @@ longdesc provided, in an (internally) compressed format. Decompression longdesc happens on-the-fly as a document using the data is displayed, longdesc printed or converted to PDF format. A Perl script is provided longdesc for the user to do the decompression, if the need should arise. -containersize 24297428 -containerchecksum 2b559409de635cd04e9b128bf44ef5f92ee765d4ccaf2132e3014d9a75ee61867de1724de2c36752bcc600014767f058c3799a5387aa4029268d5fa9dff4e0e9 -doccontainersize 63308472 -doccontainerchecksum 762140a38d7f39875d2d4d25aff57187d32daf017d5be19f7fde14c482d9128c4b2e911f67446cd47a28cd655ebcffe485dc4b6326d41bf3b0693072647cac0e -docfiles size=15522 +containersize 24297652 +containerchecksum 4e97b80679129df2cf52a8998e1b131b7ed5ebd21046219843af1ca81272a84c3a8fca72810622a7215385207eb541cd2bfac65b791920da61c233f969423c3b +doccontainersize 63447148 +doccontainerchecksum 7dde4c2584eb3c538a21fadfb9c49db02ad190b0778b64a4a51be7b777b4971302151a4f6ee7c5fb29f6c156c34a420b1734471f550d541bd2eb87877ab1543e +docfiles size=15559 RELOC/doc/generic/pst-geo/Changes RELOC/doc/generic/pst-geo/README details="Readme" RELOC/doc/generic/pst-geo/examples/Africa.tex @@ -252642,7 +257814,7 @@ docfiles size=15522 RELOC/doc/generic/pst-geo/pst-geo-doc.tex runfiles size=6064 RELOC/dvips/pst-geo/pst-geo.pro - RELOC/tex/generic/pst-geo/data/README + RELOC/tex/generic/pst-geo/data/README.data RELOC/tex/generic/pst-geo/data/Staedte3dJG.tex RELOC/tex/generic/pst-geo/data/africa-bdy_II.dat RELOC/tex/generic/pst-geo/data/africa-cil_II.dat @@ -252700,21 +257872,21 @@ runfiles size=6064 catalogue-ctan /graphics/pstricks/contrib/pst-geo catalogue-license lppl catalogue-topics cartography pstricks -catalogue-version 0.06 +catalogue-version 0.07 name pst-geometrictools category Package -revision 45319 +revision 61430 shortdesc A PSTricks package to draw geometric tools relocated 1 longdesc This PSTricks package facilitates the drawing of protractors, longdesc rulers, compasses and pencils. -containersize 7328 -containerchecksum 1949864f97f21c6cd2a0e706028d5a0ecb4102c0afc5874b78c2bf883aa6698551214ac232f406bad9955e0f0a78f059118a4d950bc4b69bd30ecf9b6fc38606 -doccontainersize 405320 -doccontainerchecksum adf2ae63d32d2cecf77c2aa950c8b827b51d0ae923dfbed7c851f0f0e7d6018216d92cf524b2cb4002c4040dbb579cff552a37cd5ef57cd2d0579b01128a3be6 -docfiles size=130 - RELOC/doc/generic/pst-geometrictools/Changes.txt +containersize 7492 +containerchecksum 838ddf95e3ba7a13fcdb5cf97d85647cb6b15bb6735947d26e358af83a34a4d5bf55530c4624f006eff4a9f0794d1fd7f5a3ed351607243e31537e36bda33b96 +doccontainersize 393496 +doccontainerchecksum 4b7d2316dff80420ed5ce03046115670a4ad51c705dd960f56f6e7debf20b0d3c86030d93cc635410e01535aec1b42dd3497d18126e6c86bb9304c5cd506306d +docfiles size=124 + RELOC/doc/generic/pst-geometrictools/Changes RELOC/doc/generic/pst-geometrictools/README.md details="Readme" RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.pdf details="Package documentation" RELOC/doc/generic/pst-geometrictools/pst-geometrictools-doc.tex @@ -252726,28 +257898,7 @@ runfiles size=14 catalogue-ctan /graphics/pstricks/contrib/pst-geometrictools catalogue-license lppl1.3c catalogue-topics pstricks maths graphics-use -catalogue-version 1.1 - -name pst-ghsb -category Package -revision 54074 -shortdesc HSB gradients via PSTricks -relocated 1 -longdesc Usage modeled on pst-grad; superseded by pst-slpe. -containersize 2668 -containerchecksum 53f608d40c000f69ec0ac8d4b04799a581296765e8dd0a083a604aaba77eb456fd0f733435455bffc702e19d5083788b12d3bec3476a24f03fdffddd51f1b479 -doccontainersize 86856 -doccontainerchecksum 818108e58ff02cb7733ab00bc9d5112821dfe22b62836c3114154d6f4d26f4fb8e2c9baadfb3c4600cc32d667a174c1992f44260208cc295310326893f806174 -docfiles size=26 - RELOC/doc/generic/pst-ghsb/README - RELOC/doc/generic/pst-ghsb/t-ghsb.pdf - RELOC/doc/generic/pst-ghsb/t-ghsb.tex - RELOC/doc/generic/pst-ghsb/t2-ghsb.pdf - RELOC/doc/generic/pst-ghsb/t2-ghsb.tex -runfiles size=4 - RELOC/dvips/pst-ghsb/pst-ghsb.pro - RELOC/tex/generic/pst-ghsb/pst-ghsb.tex - RELOC/tex/latex/pst-ghsb/pst-ghsb.sty +catalogue-version 1.3 name pst-gr3d category Package @@ -252827,6 +257978,32 @@ catalogue-license lppl catalogue-topics graphics-incl catalogue-version 0.02 +name pst-hsb +category Package +revision 61322 +shortdesc Curves with continuous colours +relocated 1 +longdesc This is a PSTricks-related package. It can plot lines and/or +longdesc curves with continuous colours. Only colours defined in the hsb +longdesc model are supported +containersize 1924 +containerchecksum 0deee202545f52b65b4fda752da7d43608118f33c9d3f520963b27229e9ec7b6d0161dc490b9ee6e356887b152f5ecb86640bc335d902070b1bda3744d9fb5db +doccontainersize 194960 +doccontainerchecksum 924a7a4a1aff03e308d5c8342f9c370669c8dec48a75c782beb887f2a05123369d5365ea86e2d2274f3dd930160d7935356cd5e9b4a6f8793bc83007cf48f841 +docfiles size=53 + RELOC/doc/generic/pst-hsb/Changes + RELOC/doc/generic/pst-hsb/README details="Readme" + RELOC/doc/generic/pst-hsb/pst-hsb-doc.bib + RELOC/doc/generic/pst-hsb/pst-hsb-doc.pdf details="Package documentation" + RELOC/doc/generic/pst-hsb/pst-hsb-doc.tex +runfiles size=2 + RELOC/tex/generic/pst-hsb/pst-hsb.tex + RELOC/tex/latex/pst-hsb/pst-hsb.sty +catalogue-ctan /graphics/pstricks/contrib/pst-hsb +catalogue-license lppl +catalogue-topics pstricks colour +catalogue-version 0.02 + name pst-infixplot category Package revision 15878 @@ -253094,19 +258271,19 @@ catalogue-version 0.02 name pst-magneticfield category Package -revision 49780 +revision 63821 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 different output. For more information or some examples read longdesc the documentation of the package. -containersize 5464 -containerchecksum cc2a45978e49d93e677f4b028afeaaf89a0ec5748f545cb575fcd339cf92e1b08d870be79d80a5cf464b29b4e51d5ac5196bfe0665408da1108abf4da4f57222 -doccontainersize 22816204 -doccontainerchecksum cb757378708fea31eb6e644eedb62a23de45c756d0d4fbd902d40a4fd9bb8189ec1a513e5d12748ee2264bc6a35eec67a7bebb8d59128a367025a6dbc6f5551a -docfiles size=7303 +containersize 5492 +containerchecksum f11b9d1c1b535a9be89b8750fb65374c53e3917272d09c7cb2591251ad4def397948c17e110bb1d86d2e28434d0d58cfbf0efa3c73df807edadcf65bc8267530 +doccontainersize 22935364 +doccontainerchecksum bdccf423a3c4c157e62a31fe351301f10dacb167c3464b7e38e6e7a49c566e5c4d3025a7e59bac22330b330ec791ff77242702e9987bf700bcc519e50b2742b8 +docfiles size=7292 RELOC/doc/generic/pst-magneticfield/Changes RELOC/doc/generic/pst-magneticfield/README.md details="Readme" RELOC/doc/generic/pst-magneticfield/pst-magneticfield-doc.bib @@ -253119,7 +258296,7 @@ runfiles size=6 catalogue-ctan /graphics/pstricks/contrib/pst-magneticfield catalogue-license lppl catalogue-topics physics pstricks -catalogue-version 1.16 +catalogue-version 1.17 name pst-marble category Package @@ -253185,7 +258362,7 @@ catalogue-version 1.6 name pst-math category Package -revision 49425 +revision 64732 shortdesc Enhancement of PostScript math operators to use with PSTricks relocated 1 longdesc PostScript lacks a lot of basic operators such as tan, acos, @@ -253199,11 +258376,11 @@ longdesc pst-plot but can be used in whatever PS code (such as PSTricks longdesc SpecialCoor "!", which is useful for placing labels). The longdesc package also provides a routine SIMPSON for numerical longdesc integration and a solver of linear equation systems. -containersize 5172 -containerchecksum 4cc671ab7b7cfac83cab929d2a0cfba81f7bb6b92d89460195fbea2875511f9ac51c1f64cfa527903f2c081201f195512443c358691930cfe8c57059e907df53 -doccontainersize 176140 -doccontainerchecksum 76c4425e84bd67e989fa8c533dab1660c03aebb8c21dc335d26d99ce4b628aad3ff4d9769c7e1f501b4ad05b7762142910bb34a97cb92ff98a1cb637a50ebc46 -docfiles size=67 +containersize 5196 +containerchecksum b87863c646f8057baf3fc07868c09349b8803a01008782ab814a2f2eb126d6e574844be4733b06c3f16fad286aee3081b13a17bfbbef9cd019c836d2c9a5e4df +doccontainersize 172288 +doccontainerchecksum c5b26a73075910edc8232df349ee76a8264ab533e4259146224cebda4d6709867f7edcafab115ac3fae977c9d11b38821b4b085a2ab5529ae585c1daf8b738d6 +docfiles size=66 RELOC/doc/generic/pst-math/Changes RELOC/doc/generic/pst-math/README details="Readme" RELOC/doc/generic/pst-math/pst-math-doc.bib @@ -253216,24 +258393,25 @@ runfiles size=5 catalogue-ctan /graphics/pstricks/contrib/pst-math catalogue-license lppl catalogue-topics maths calculation pstricks -catalogue-version 0.65 +catalogue-version 0.66 name pst-mirror category Package -revision 32997 +revision 60506 shortdesc Images on a spherical mirror relocated 1 longdesc The package provides commands and supporting PostScript longdesc material for drawing images as if reflected by a spherical longdesc mirror. -containersize 12180 -containerchecksum edb6796eb96047fe09833056c409527df06d63dd69e9c2b600c1301b43b6e5c858d1061e9a138c89ab47657682f9ee67995a02abfab5251356e2eb8de68f5316 -doccontainersize 6752668 -doccontainerchecksum a9e22f2e00f67f12c69df3a6dd4377d25b8c130c4afa8c995c8961ba426f69f0c286460925c7c782a30b2a23ca5f2d4a46a5dbfaf72955952f561df2545c38b8 -docfiles size=1749 +containersize 12192 +containerchecksum 316a6cd32fb2b8c59f554a49695ad097627e641982d1a6a8b1e5db12949c2cc84dd150a190834604d57ca10735779cb09983c28e7339e92f3cb82d642dc9b61b +doccontainersize 6784012 +doccontainerchecksum f577868d1cf76a372a3c248f6dde28ed423beaa5e445a6a343d9b5e4c2ab9f737e4266c12702fcbf6dda91a6639624ff99b4cba29d65ebd4c7a0c3f3ce1323b3 +docfiles size=1778 RELOC/doc/generic/pst-mirror/Changes RELOC/doc/generic/pst-mirror/README details="Readme" RELOC/doc/generic/pst-mirror/createEPS/make.sh + RELOC/doc/generic/pst-mirror/createEPS/make2.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 @@ -253253,18 +258431,18 @@ runfiles size=21 catalogue-ctan /graphics/pstricks/contrib/pst-mirror catalogue-license lppl catalogue-topics graphics-use pstricks -catalogue-version 1.01 +catalogue-version 1.02 name pst-moire category Package -revision 49223 +revision 60411 shortdesc A PSTricks package to draw moire patterns relocated 1 longdesc This is a PSTricks package to draw moire patterns. -containersize 5304 -containerchecksum 7ae5693ca401b037482c4b8d7173a03b677ee1a8dc62ceccb710264b196a20240f310c26cbf9924dc2b4a9fa2869257843cfe4c87c26616a0f790ab444130a13 -doccontainersize 8320872 -doccontainerchecksum 442f2477e9eaf122249b3a06fd2755afc9e701fe4333102274de3635eee398231d422b8077764465fa42041acc6289d00b4254505b591f055c6dddd41516d0e2 +containersize 5328 +containerchecksum 60fb7e65170ec16f08f4109794afd657436fbb42a18feaff2997fdef20e18376810c3b34e0e341a5e577a6d08d6bf6314adfa51611d83a4e66245f112581d678 +doccontainersize 8296868 +doccontainerchecksum f24fb6a5a34a09f7b519f864c40d4bb4afd4b37f12280877fa9e6edae48a655c12bdf13eb7d13e9ce43ffa849a183c6a81b8040f61d90e9ec514b07352fced3c docfiles size=2188 RELOC/doc/generic/pst-moire/README.md details="Package README" RELOC/doc/generic/pst-moire/examples/pattern1.pdf @@ -253288,11 +258466,11 @@ runfiles size=7 catalogue-ctan /graphics/pstricks/contrib/pst-moire catalogue-license lppl1.3c catalogue-topics graphics-use pstricks -catalogue-version 2.1 +catalogue-version 2.2 name pst-node category Package -revision 54687 +revision 61838 shortdesc Nodes and node connections in PSTricks relocated 1 longdesc The package enables the user to connect information, and to @@ -253303,11 +258481,11 @@ longdesc mathematical diagrams, linguistic syntax diagrams, and so on. longdesc The package contents were previously distributed as a part of longdesc the pstricks base distribution; the package serves as an longdesc extension to PSTricks. -containersize 25304 -containerchecksum 655a9f7a373415c1721a8192aff5868c6eeb20fbbbac394b19ff15a66f6322c9cb3e2a6edac3210b14f94a62bccf18ecff1fe3af21951f382477ed27e37ab36f -doccontainersize 418912 -doccontainerchecksum da13d6f9584cb2810b0aac8ed65af49a48128049433a845b6a2d73bc2395e043f6ce89ca84978eb52455cdc713931a610cb1047e46badaa2c6b4baf5073c15e6 -docfiles size=192 +containersize 25288 +containerchecksum 663d072baef5277519157175183313c9b80385d1574dbbc1502b60aabd111688286499426e88d28b3b5252b8ff23b3d325981b6e14b846fce3b92ff391ab5a7c +doccontainersize 529992 +doccontainerchecksum 5cf9cb60b0c36915945a4e2fb4e79a35e2ff9e957df1b1e39d8158560843fe1dae6867aa6270e70cf3ba387b104e9dd8b6965434168d89748e65aa77368a0707 +docfiles size=154 RELOC/doc/generic/pst-node/Changes RELOC/doc/generic/pst-node/README details="Readme" RELOC/doc/generic/pst-node/pst-node-doc.bib @@ -253322,7 +258500,7 @@ runfiles size=29 catalogue-ctan /graphics/pstricks/contrib/pst-node catalogue-license lppl catalogue-topics graphics-in-tex linguistic -catalogue-version 1.42a +catalogue-version 1.43 name pst-ob3d category Package @@ -253356,7 +258534,7 @@ catalogue-version 0.22 name pst-ode category Package -revision 58293 +revision 65096 shortdesc Solving initial value problems for sets of Ordinary Differential Equations relocated 1 longdesc The package defines \pstODEsolve for solving initial value @@ -253368,16 +258546,17 @@ longdesc PSTricks packages, such as \listplot (pst-plot) and longdesc \listplotThreeD (pst-3dplot), or may be further processed by longdesc user-defined PostScript procedures. Optionally, the computed longdesc state vectors can be written as a table to a text file. -containersize 5348 -containerchecksum 96318154dd048b4f59c1f0b2dfda1f92306df9d91b4d5a0903410ab5d4ea5ffb6f0355a060a027e8b64061ffd65d10e702305429c5209d3957f0641b70df6416 -doccontainersize 115668 -doccontainerchecksum c98cd3511934fe9e3e145091427e2caf88b0b92711fd5593206c7b6b50c97ee486fd36515cf75f18231cf3a3642a16253641f7ec90294dfca10cc8cddf5a90ba -docfiles size=44 +containersize 5588 +containerchecksum dfed4dd1a61650be4aa3158bd33f8175690e951b6410a1a1be8c46426cc7812a59cd16e5d1fdfaede81ed3aa11c08c9d9e9fd9b2d420a643c769efe12b9bd2ab +doccontainersize 122276 +doccontainerchecksum 0e699eda64688a3d071aa889c75e52658759a2c34bc35257fc1126a93b594c7cd463f127a4a2ba77823bfa45ecf44f4daa4439439856ea24431ffacb8be8956e +docfiles size=49 RELOC/doc/generic/pst-ode/ChangeLog RELOC/doc/generic/pst-ode/README.txt RELOC/doc/generic/pst-ode/examples/lorenz.tex RELOC/doc/generic/pst-ode/examples/ode.tex RELOC/doc/generic/pst-ode/examples/particle.tex + RELOC/doc/generic/pst-ode/pst-doc-new.cls RELOC/doc/generic/pst-ode/pst-ode-doc.pdf details="Package documentation" RELOC/doc/generic/pst-ode/pst-ode-doc.tex runfiles size=6 @@ -253388,11 +258567,11 @@ catalogue-contact-repository https://gitlab.com/agrahn/pst-ode catalogue-ctan /graphics/pstricks/contrib/pst-ode catalogue-license lppl catalogue-topics maths pstricks graphics-plot -catalogue-version 0.15 +catalogue-version 0.18 name pst-optexp category Package -revision 57977 +revision 62977 shortdesc Drawing optical experimental setups relocated 1 longdesc The package is a collection of optical components that @@ -253402,18 +258581,18 @@ longdesc and fibre components is provided, the alignment, positioning longdesc and labelling of which can be achieved in very simple and longdesc flexible ways. The components may be connected with fibers or longdesc beams, and realistic raytraced beam paths are also possible. -containersize 37788 -containerchecksum 92302c9c3c4a5a0e7a82fbdb6c72f08aae2ea6a5286f6d8916b19021ace0bdbfd1e935ec4aaac8a18c938c6bb0fa66520f3d98631de419111c43605ad2dc0fbb -doccontainersize 3192500 -doccontainerchecksum dd920f80c8f271737d8dd8077f06fc851034812233b4f7c30e0ccbe4fc57fc08b430efa9b4eb737744acbe0a0c2e898797efa939bf37468f90e6241e1c28667e -docfiles size=1619 +containersize 37772 +containerchecksum a72c425dc808ab5a4507691c9a86ad2193c08f8e88d62ea558d2559b68e18e9dfd8e0295bc18fd66e3cf41236c17b85086dc218e46317c09867b5eaf024564fe +doccontainersize 3194708 +doccontainerchecksum 6c4f4427b023b6dccaf75ac2cab2c22da32d0fbe6007c68e05b9ced31b11da91e5537ae4dd174a726b36ff2657113bc07e1b054e9dff344a9dd99f3039be97f6 +docfiles size=1627 RELOC/doc/latex/pst-optexp/Changes RELOC/doc/latex/pst-optexp/README details="Readme" RELOC/doc/latex/pst-optexp/pst-optexp-DE.pdf details="Package manual (German)" language="de" RELOC/doc/latex/pst-optexp/pst-optexp-quickref.pdf details="Quick reference (cheat-sheet)" RELOC/doc/latex/pst-optexp/pst-optexp.pdf details="Package manual (English)" language="en" -srccontainersize 155296 -srccontainerchecksum ccdb1330d6ae5835927ce28c5a38162ab632a0b113d74854d2bb8cabb3d0da7d29e39f74a6245be9e30c03a765c383830cb76a9b6bc8d39aece5b0a05be3824f +srccontainersize 155324 +srccontainerchecksum 8f3f7cdddc2b26ff9adce1cb60fd165fdecfc0b3b61cbb827e52f97702cce602312bad4838f2ed96a8d07d1deda4f5226a305c7796a8794b6cafb821c8b745a2 srcfiles size=207 RELOC/source/latex/pst-optexp/Makefile RELOC/source/latex/pst-optexp/pst-optexp.dtx @@ -253425,21 +258604,21 @@ runfiles size=59 catalogue-contact-repository https://github.com/cbersch/pst-optexp catalogue-ctan /graphics/pstricks/contrib/pst-optexp catalogue-license lppl1.3 -catalogue-topics optics diagram-lab pstricks -catalogue-version 6.0 +catalogue-topics physics optics diagram-lab pstricks +catalogue-version 6.1 name pst-optic category Package -revision 41999 +revision 62977 shortdesc Drawing optics diagrams relocated 1 longdesc A package for drawing both reflective and refractive optics longdesc diagrams. The package requires pstricks later than version longdesc 1.10. -containersize 14660 -containerchecksum c9e0231301824a612c755adbf2789f9cc428bbc6133a5669d173ff1426663f704aa978c506add7e4a0c786b51ed61df355f59e7b6392f355ac6913c6f9336f46 +containersize 14640 +containerchecksum 98a926fc0ffc8a2e2ff6c2a29ccea1ca08b1ad90237b44727e4344b1d86a356cb9ecdf252ec65455e0097c101487085304295d750ac40bfe6ad8bc1081e3bbde doccontainersize 308860 -doccontainerchecksum cba9465a3e81060bae7ab4b8d7c8a1ef804415a3f85c0a89c98d57c6a3e8ff2c58a40b91e9c6281ac520be5b03f13d1890d8cce063a892a84d6eee5f6beeb625 +doccontainerchecksum 86ee25200efdb67a9c791594277a25e262f78ee0fcfbbc434d292cf61445e3d41b5ee1271fda9d69d756bd4ef70992195ee0e7b37023ee131c69ff7f9a46b980 docfiles size=124 RELOC/doc/generic/pst-optic/Changes RELOC/doc/generic/pst-optic/README details="Readme" @@ -253451,7 +258630,7 @@ runfiles size=20 RELOC/tex/latex/pst-optic/pst-optic.sty catalogue-ctan /graphics/pstricks/contrib/pst-optic catalogue-license lppl -catalogue-topics physics diagram pstricks +catalogue-topics physics optics diagram pstricks catalogue-version 1.02 name pst-osci @@ -253637,15 +258816,6 @@ containerchecksum 5a440a507457d1b4c4663d1a2c8e231dfc22bbd1154c1f7d71c0d4b720bf93 binfiles arch=armhf-linux size=1 bin/armhf-linux/ps4pdf -name pst-pdf.i386-cygwin -category Package -revision 12991 -shortdesc i386-cygwin files of pst-pdf -containersize 340 -containerchecksum f7d4e013cb836c196be10daf460d85b6f5c16192f00115329da2a745cbe3adfd308f24267f967b7f768ad01b4fb00696caf6c2b09900fc36dd8813b8e7dd280e -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ps4pdf - name pst-pdf.i386-freebsd category Package revision 16472 @@ -253691,15 +258861,15 @@ containerchecksum 60481a77267572fe1960bbd715d269ad700abbf0791df80ac3094706a03bd0 binfiles arch=universal-darwin size=1 bin/universal-darwin/ps4pdf -name pst-pdf.win32 +name pst-pdf.windows category Package -revision 15404 -shortdesc win32 files of pst-pdf -containersize 1528 -containerchecksum 94c9dfac058c2625edfb504af68978b1e2461b066064f12a9ab7d8d4bf846354eac0eab0fcaaa31c22913ed6b03e1aac7e6bf938283c5878ff7aa69adff9fa9e -binfiles arch=win32 size=2 - bin/win32/ps4pdf.bat - bin/win32/ps4pdf.exe +revision 65891 +shortdesc windows files of pst-pdf +containersize 3168 +containerchecksum 8b3b70710c1aadddb4ff74774eff1b132cbea627b1bc9500af0e5df352bcc127e4c6f5de193af99b26bd31fcf18d5830466b33efd4be809203262e28f9b6773b +binfiles arch=windows size=3 + bin/windows/ps4pdf.bat + bin/windows/ps4pdf.exe name pst-pdf.x86_64-cygwin category Package @@ -253841,17 +259011,17 @@ catalogue-version 0.01 name pst-plot category Package -revision 54080 +revision 65346 shortdesc Plot data using PSTricks relocated 1 longdesc The package provides plotting of data (typically from external longdesc files), using PSTricks. Plots may be configured using a wide longdesc variety of parameters. -containersize 22588 -containerchecksum 7e784c8c50671da1b2efbc191a4afc91739718d9c117aa49740e869296a415287031c91c79f750eceb7f90b36f8a6bd5b37c87dad7d84b6776a014cfc6a4f88c -doccontainersize 1121064 -doccontainerchecksum 9f486e767bddf56647583d598dcac7b64c1ad390d94fea88a285d3aeaaa32d8151883b438c48e0d75b3ba41fef21b38cdc2fe7dd724978827b55dfc6d3bd54c0 -docfiles size=593 +containersize 22724 +containerchecksum a273a0999f14697ffec4165c8f6013821f9a3439bb7822963e79d4b362a89334090af54d591f7cbff1f59d0e15e9b18dbc3ed9d711ba90162913098dcec67684 +doccontainersize 1346672 +doccontainerchecksum 870ef12eaebc4078ac0906cdfc225991714a55dd674cf7b757ab7b7925728ab771bc63612c61e26a997d900f8c03ec4d439d767b0a83fa54b8a65517399fbd7e +docfiles size=582 RELOC/doc/generic/pst-plot/Changes RELOC/doc/generic/pst-plot/README details="Readme" RELOC/doc/generic/pst-plot/data/Data.dat @@ -253880,60 +259050,84 @@ runfiles size=32 RELOC/tex/latex/pst-plot/pst-plot.sty catalogue-also pgfplots catalogue-contact-home https://www.tug.org/PSTricks/ -catalogue-contact-repository https://archiv.dante.de/~herbert/texnik/ -catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ +catalogue-contact-support https://tug.org/mailman/listinfo/pstricks catalogue-ctan /graphics/pstricks/contrib/pst-plot catalogue-license lppl catalogue-topics data-import data-disp pstricks -catalogue-version 1.92 +catalogue-version 1.94 name pst-poker category Package -revision 53482 +revision 65818 shortdesc Drawing poker cards relocated 1 longdesc This PSTricks related package can create poker cards in various longdesc manners. -containersize 347516 -containerchecksum 6995f975d1c149f5b67126e6a01c076802a5a40cae3f7376a25258b923397d61f021af19822df4e4a522b3648d3a0e6ad1e5d81e38527c7468e753b0fa35c525 -doccontainersize 2444488 -doccontainerchecksum 619a0a9576c4cd17f6bdac1c2e0dad6b42084fa8f8f2bb1f38a8a07d0a0e7195f79edae841e79f80393165b2671063f6e8388fc2c5b9c12d063f1421a0a4a0fa -docfiles size=610 +containersize 2308656 +containerchecksum 850b8302f7754e90559ba43ff3cd7440866b23cdbf7d3d577a75a232533d750917d3dc7ee9554ded07e6cc38346905da82e49bb90bbbe4de0f02c40fbebd111f +doccontainersize 702496 +doccontainerchecksum d021da1775a7f91968490bb4e2ef5fc8eac114fe33810d069882e72e381ec94e0cb81f4ea213edd394b5919e07873838996b3aa0f043fcc41814969e59db8a21 +docfiles size=181 RELOC/doc/latex/pst-poker/Changes RELOC/doc/latex/pst-poker/README details="Readme" RELOC/doc/latex/pst-poker/pst-poker-doc.bib RELOC/doc/latex/pst-poker/pst-poker-doc.pdf details="Package documentation" RELOC/doc/latex/pst-poker/pst-poker-doc.tex -runfiles size=1277 +runfiles size=1801 RELOC/tex/latex/pst-poker/Jack-club-bw.eps + RELOC/tex/latex/pst-poker/Jack-club-bw.pdf RELOC/tex/latex/pst-poker/Jack-club-color.eps + RELOC/tex/latex/pst-poker/Jack-club-color.pdf RELOC/tex/latex/pst-poker/Jack-diamond-bw.eps + RELOC/tex/latex/pst-poker/Jack-diamond-bw.pdf RELOC/tex/latex/pst-poker/Jack-diamond-color.eps + RELOC/tex/latex/pst-poker/Jack-diamond-color.pdf RELOC/tex/latex/pst-poker/Jack-heart-bw.eps + RELOC/tex/latex/pst-poker/Jack-heart-bw.pdf RELOC/tex/latex/pst-poker/Jack-heart-color.eps + RELOC/tex/latex/pst-poker/Jack-heart-color.pdf RELOC/tex/latex/pst-poker/Jack-spade-bw.eps + RELOC/tex/latex/pst-poker/Jack-spade-bw.pdf RELOC/tex/latex/pst-poker/Jack-spade-color.eps + RELOC/tex/latex/pst-poker/Jack-spade-color.pdf RELOC/tex/latex/pst-poker/King-club-bw.eps + RELOC/tex/latex/pst-poker/King-club-bw.pdf RELOC/tex/latex/pst-poker/King-club-color.eps + RELOC/tex/latex/pst-poker/King-club-color.pdf RELOC/tex/latex/pst-poker/King-diamond-bw.eps + RELOC/tex/latex/pst-poker/King-diamond-bw.pdf RELOC/tex/latex/pst-poker/King-diamond-color.eps + RELOC/tex/latex/pst-poker/King-diamond-color.pdf RELOC/tex/latex/pst-poker/King-heart-bw.eps + RELOC/tex/latex/pst-poker/King-heart-bw.pdf RELOC/tex/latex/pst-poker/King-heart-color.eps + RELOC/tex/latex/pst-poker/King-heart-color.pdf RELOC/tex/latex/pst-poker/King-spade-bw.eps + RELOC/tex/latex/pst-poker/King-spade-bw.pdf RELOC/tex/latex/pst-poker/King-spade-color.eps + RELOC/tex/latex/pst-poker/King-spade-color.pdf RELOC/tex/latex/pst-poker/Queen-club-bw.eps + RELOC/tex/latex/pst-poker/Queen-club-bw.pdf RELOC/tex/latex/pst-poker/Queen-club-color.eps + RELOC/tex/latex/pst-poker/Queen-club-color.pdf RELOC/tex/latex/pst-poker/Queen-diamond-bw.eps + RELOC/tex/latex/pst-poker/Queen-diamond-bw.pdf RELOC/tex/latex/pst-poker/Queen-diamond-color.eps + RELOC/tex/latex/pst-poker/Queen-diamond-color.pdf RELOC/tex/latex/pst-poker/Queen-heart-bw.eps + RELOC/tex/latex/pst-poker/Queen-heart-bw.pdf RELOC/tex/latex/pst-poker/Queen-heart-color.eps + RELOC/tex/latex/pst-poker/Queen-heart-color.pdf RELOC/tex/latex/pst-poker/Queen-spade-bw.eps + RELOC/tex/latex/pst-poker/Queen-spade-bw.pdf RELOC/tex/latex/pst-poker/Queen-spade-color.eps + RELOC/tex/latex/pst-poker/Queen-spade-color.pdf RELOC/tex/latex/pst-poker/pst-poker.sty catalogue-ctan /graphics/pstricks/contrib/pst-poker catalogue-license lgpl3 catalogue-topics pstricks games -catalogue-version 0.03a +catalogue-version 0.03b name pst-poly category Package @@ -253966,17 +259160,17 @@ catalogue-version 1.63 name pst-pulley category Package -revision 45316 +revision 62977 shortdesc Plot pulleys, using PSTricks relocated 1 longdesc The package enables the user to draw pulley systems with up to longdesc 6 pulleys. The pulley diagrams are labelled with the physical longdesc properties of the system. The package uses pstricks and longdesc requires several PSTricks-related packages. -containersize 4764 -containerchecksum 4253283884b3cc36801dd7d462655d3cccbdaa70af0219765a3225c8b928e49cf0964d4db4728ef01e06ed33865facc46bd767f4d1cdbddfbaf0213e4ead012e +containersize 4748 +containerchecksum e9e3f27eb01146a6aac0f9479f8c7bf120845a9c728f7e08296d95dc3cbbfd7d4eac6cadc0e7195848157929d5001fd9a1a7b9c2daf4ad97e28e0007ba8a22fd doccontainersize 122132 -doccontainerchecksum 28a4654d2219e056ab1a53bc0fbb60feb919b3dc26b1e542b561cdb6d3f0b1abd050afdaa99a9ba5b374462cc451c1681622f6c6c3f6aef26738a36a845648a2 +doccontainerchecksum f7a0820425a1d785a91ed2cd070fb371b6503f1116e1e08a6e97509133ec8d4892bf546deb5b7d3c0fcb343a65f2b41c1e2c2400e23ca8dacc075e2dbd27c3fa docfiles size=46 RELOC/doc/generic/pst-pulley/Changes RELOC/doc/generic/pst-pulley/README.md details="Readme" @@ -253988,7 +259182,7 @@ runfiles size=16 RELOC/tex/latex/pst-pulley/pst-pulley.sty catalogue-ctan /graphics/pstricks/contrib/pst-pulley catalogue-license lppl1.3 -catalogue-topics graphics-use pstricks diagram +catalogue-topics graphics-use pstricks diagram physics catalogue-version 0.02 name pst-qtree @@ -254230,7 +259424,7 @@ catalogue-version 0.13 name pst-solides3d category Package -revision 49520 +revision 61719 shortdesc Draw perspective views of 3D solids relocated 1 longdesc The package is designed to draw solids in 3d perspective. @@ -254242,10 +259436,10 @@ longdesc polish notation; create explicit and parameterized algebraic longdesc functions drawn in 2 or 3 dimensions; project text onto a plane longdesc or onto the faces of a solid; support for including external longdesc database files. -containersize 55392 -containerchecksum 7e725978c030da337d882e05069b749a4398b1a1c479a50db34fc63801cb77b78630e2d1dfd0c3a39aeab3e931236dad91b6c722c4d6e06dcfd867f007ce99f6 +containersize 55376 +containerchecksum b70a15acf3f8ec551f8c10d9441101950c7d6b2e886ebcbd9584ada67141d3068b66339e2df9cbad85db9b3950f4463cc3d9ff92a4f93241c37b591b5b5ecc6b doccontainersize 6260992 -doccontainerchecksum a00138b042c58700438cfb3f094f836b029d31ee3de40ed290d3f5475a31cb3fc949c13402c35d088dd1cacf13c66bcee934a0ad59e97ceee5ce9db1f99e7c4d +doccontainerchecksum 15a7bac7f5aaf751c4b450e07c1b7222bc569ce9e9b7359cc53019f9295561b85addc3ac0cf16c791a21b88c6cfae720a54603ac1da2055f0c99296238b02fd9 docfiles size=2488 RELOC/doc/generic/pst-solides3d/Changes RELOC/doc/generic/pst-solides3d/README details="Readme" @@ -254385,7 +259579,7 @@ runfiles size=81 RELOC/dvips/pst-solides3d/pst-solides3d.pro RELOC/tex/generic/pst-solides3d/pst-solides3d.tex RELOC/tex/latex/pst-solides3d/pst-solides3d.sty -catalogue-contact-home http://tug.org/PSTricks/main.cgi/ +catalogue-contact-home https://tug.org/PSTricks/main.cgi/ catalogue-ctan /graphics/pstricks/contrib/pst-solides3d catalogue-license lppl1.3 catalogue-topics graphics-3d pstricks @@ -254448,7 +259642,7 @@ catalogue-version 0.91 name pst-spinner category Package -revision 54080 +revision 66115 shortdesc Drawing a fidget spinner relocated 1 longdesc This package aims to propose a model of the fidget spinner @@ -254457,9 +259651,9 @@ longdesc even more. We chose the most popular model: the triple Fidget longdesc Spinner. You can run the PSTricks related documents with longdesc XeLaTeX. containersize 2804 -containerchecksum 230405003645525f89e4713cd38d2dc015a5c41218202003626a154a620354fcfd4297480415771064ddf72768afd15d19fb331fe7fe3029375b681487e09f58 -doccontainersize 1383000 -doccontainerchecksum 998388d1098eec8f15dbccc5852b4577f392c9e01dd0a258927086940b5e8fd33021101244403c3d81b575bb1214ad0730160828a7fcf83630bdb765d4c34444 +containerchecksum ec6925c95e398426089234227b29a2129a58097d1536b0f1569c4a0e6b4d7deeb0eaf7d9d5ede851c93cff49da05772b6113ad7ba0cbb34b854e3b2261bdc41b +doccontainersize 1383004 +doccontainerchecksum 1cb4907c6b5feb39c947361176edeeb4da560935d53b3b56507642142f3dd61d98caff293c0d686bb33383c706f1cd865dc3644379564310b141c3f0204cdb57 docfiles size=373 RELOC/doc/generic/pst-spinner/Changes RELOC/doc/generic/pst-spinner/README details="Readme" @@ -254472,10 +259666,10 @@ runfiles size=3 RELOC/dvips/pst-spinner/pst-spinner.pro RELOC/tex/generic/pst-spinner/pst-spinner.tex RELOC/tex/latex/pst-spinner/pst-spinner.sty -catalogue-contact-announce http://tug.org/PSTricks/ -catalogue-contact-home http://tug.org/PSTricks/ -catalogue-contact-repository https://archiv.dante.de/~herbert/texnik/ -catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-contact-announce https://tug.org/PSTricks/ +catalogue-contact-home https://tug.org/PSTricks/ +catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ +catalogue-contact-support https://tug.org/mailman/listinfo/pstricks catalogue-ctan /graphics/pstricks/contrib/pst-spinner catalogue-license lppl catalogue-topics graphics pstricks @@ -254588,16 +259782,16 @@ catalogue-version 1.0 name pst-tools category Package -revision 54518 +revision 60621 shortdesc PSTricks support functions relocated 1 longdesc The package provides helper functions for other PSTricks longdesc related packages. -containersize 6500 -containerchecksum b6f1432b44483470d2dc740aaafd254d0f7051e37e9b8675aa85fc50812b9f19fb8b021cb00da405734c25a3dc6b9645d25981c7b603e3a01016421c2d1b4140 -doccontainersize 98860 -doccontainerchecksum 57fe008fa8ab2f8ab0682d29a6e3b7c285a84c54eb7bef068fa2ba1aa363792f6a497a548cfa6ad171990e344215db7bc5a7d297bbfb17026b80601ecc977edb -docfiles size=39 +containersize 6564 +containerchecksum 591dbff503faef5316eda8364a422d8810524775e6c6b59569d24928c8702c54463e4433a3c28953d2f36c873aa6a6e52c71dd9cdcce5bb0c362ab2231f5a165 +doccontainersize 106384 +doccontainerchecksum f61816b6be166d85ae238cf5651e2e1960a5303b3bd3c643e4fdbcc779b5e59f49ffbe53bd6e2830b2bc28289baad3b089eb01ccbd7bee4eb9805728cda4309c +docfiles size=41 RELOC/doc/generic/pst-tools/Changes RELOC/doc/generic/pst-tools/README details="Readme" RELOC/doc/generic/pst-tools/pst-tools-doc.bib @@ -254610,21 +259804,21 @@ runfiles size=7 catalogue-ctan /graphics/pstricks/contrib/pst-tools catalogue-license lppl catalogue-topics graphics pstricks -catalogue-version 0.10 +catalogue-version 0.12 name pst-tree category Package -revision 43272 +revision 60421 shortdesc Trees, using PSTricks relocated 1 longdesc pst-tree is a pstricks package that defines a macro \pstree longdesc which offers a structured way of joining nodes created using longdesc pst-node in order to draw trees. -containersize 6700 -containerchecksum 1148e0e571d68d8c95c0049313b244a6d6d77bf24a453121fd462a11e51d51aa21cd7eb66e9bb7c936fa90bc888912385814ce347cf911563206f520d2bb1850 -doccontainersize 151092 -doccontainerchecksum d68059216626bbd3a33ec6bed2e6d2f0f78db2da3ae56cf947367608033a156126685bb0d162f95fbe7150c950c3d5d20de01fd0ab9b6bf77bcb2cba31bfebdd -docfiles size=67 +containersize 6712 +containerchecksum 39d6f88d9b0dd4280cd08cad6524fa693cf727bdbacf16063d76e100e16f957602124ee71421e88f389a7ba5070a932d779a2abbb64d791bbc071398f09a8708 +doccontainersize 205684 +doccontainerchecksum 6ac862eff40eaa1a8cacc5c1a1d4886e82dee53046d3fbf631ec23bfb59490fe89bdde5f2767cba35e8d0439fa7b7688669b50ba3ce81698c34bcfc9d010a7e6 +docfiles size=60 RELOC/doc/generic/pst-tree/Changes RELOC/doc/generic/pst-tree/README RELOC/doc/generic/pst-tree/pst-tree-doc.bib @@ -254636,7 +259830,7 @@ runfiles size=10 catalogue-ctan /graphics/pstricks/contrib/pst-tree catalogue-license lppl catalogue-topics tree linguistic -catalogue-version 1.13 +catalogue-version 1.14 name pst-turtle category Package @@ -254736,16 +259930,17 @@ catalogue-version 0.83 name pst-vectorian category Package -revision 28801 +revision 60488 shortdesc Printing ornaments relocated 1 longdesc The package uses PSTricks to draw ornaments (a substantial longdesc repertoire of ornaments is provided). -containersize 546756 -containerchecksum 3ea49c1da6238c095dc2ee095b21dc95fca19c89b0ae473e73f9ea67ca9377cc8e696362f2cf859d87ad69350c7b94a1049823fc0b5329e36e8e31291cdcfef1 -doccontainersize 744580 -doccontainerchecksum 787b3b16dd0a73d96d16a8f32e26cc40f84706fd8abf48df23eb94a5dd9dedc0f9c9b7d8512894910ac96c8ec5e879a5f0d24f6f19e2d9f231ad66060e07565c -docfiles size=188 +containersize 546776 +containerchecksum e3898a6b489afe685bfc657760702bd5e2e44fce2ecf6e4af28c1a6eb36173fc653e003af7b7879fbd3a342adfb89b8cf47168b1f1868815fa44050495d15f54 +doccontainersize 738340 +doccontainerchecksum 6bdc368c391d12e6fb54740867631c7ba62b66a889e11dd40668dc7bcf5f9846e4414f84b706010505d3032b132735a9247e25193b952bd3272590d47d59172b +docfiles size=184 + RELOC/doc/latex/pst-vectorian/Changes RELOC/doc/latex/pst-vectorian/README details="Readme" RELOC/doc/latex/pst-vectorian/psvectorian.pdf details="Package documentation (French)" language="fr" RELOC/doc/latex/pst-vectorian/psvectorian.tex @@ -254755,36 +259950,36 @@ runfiles size=463 catalogue-ctan /graphics/pstricks/contrib/pst-vectorian catalogue-license lppl catalogue-topics decoration -catalogue-version 0.4 +catalogue-version 0.41 name pst-vehicle category Package -revision 45320 +revision 61438 shortdesc A PSTricks package for rolling vehicles on graphs of mathematical functions relocated 1 longdesc This package permits to represent vehicles rolling without longdesc slipping on mathematical curves. Different types of vehicles longdesc are proposed, the shape of the curve is to be defined by its longdesc equation "y=f(x)" in algebraic notation. -containersize 8564 -containerchecksum 4e5a5dc0227641a8b8f96913cfd513279c91f841fa1dd5960015ad79d5877a86cafcf87db38bd692611d5afd73a8a91505822d83433299db4efa9e4975a8da42 -doccontainersize 2315424 -doccontainerchecksum 1183b285d9438c7360f2cef9c40d86424ed2891d36a4aee6281e57b84773dd6b2366ca6c2bcff200911e583bd11f2f5aa9615b45656a240b28b1809acacf4145 -docfiles size=784 - RELOC/doc/generic/pst-vehicle/Changes.txt +containersize 8744 +containerchecksum 1cec74ed600c4c4df629942b158d47b33f26e3a38d3d363cd506e5dc7c9673e0da1af4af8bbf71bf735693d15f0b02a36d8b148e07405ff4181efc820e73eeaf +doccontainersize 2689052 +doccontainerchecksum e252811d71bc400b3cb72a29fd9099247044cb1d1c79676cf4319d58cc60293839b022a73706a9685434d338c9daa24e8b9bc5b7390a75870379385dde0d9c7f +docfiles size=951 + RELOC/doc/generic/pst-vehicle/Changes RELOC/doc/generic/pst-vehicle/README.md details="Readme" RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.pdf details="Package documentation (French)" language="fr" RELOC/doc/generic/pst-vehicle/pst-vehicle-doc-fr.tex RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.pdf details="Package documentation" RELOC/doc/generic/pst-vehicle/pst-vehicle-doc.tex -runfiles size=10 - RELOC/tex/generic/pst-vehicle/ListVehicles.tex +runfiles size=11 + RELOC/tex/generic/pst-vehicle/pst-vehicle.data RELOC/tex/generic/pst-vehicle/pst-vehicle.tex RELOC/tex/latex/pst-vehicle/pst-vehicle.sty catalogue-ctan /graphics/pstricks/contrib/pst-vehicle catalogue-license lppl1.3c catalogue-topics maths pstricks graphics-use -catalogue-version 1.2 +catalogue-version 1.3 name pst-venn category Package @@ -254910,15 +260105,6 @@ containerchecksum b0be12647b552e60ee18f4c027aa3b08929aaa6bfeb7a1ae0d274dd3d60535 binfiles arch=armhf-linux size=1 bin/armhf-linux/pst2pdf -name pst2pdf.i386-cygwin -category Package -revision 29333 -shortdesc i386-cygwin files of pst2pdf -containersize 340 -containerchecksum 7ec4850a2beb24040725d248c396407a265a810a2826e64870b17c9cf0ec99ab7c62be0c7b7e7c0614e8e56d7f6bc04895e1ae07807bd8b88a2b4a01ec29cfbc -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pst2pdf - name pst2pdf.i386-freebsd category Package revision 29333 @@ -254964,14 +260150,14 @@ containerchecksum 4db7866a58312711865ff53ca4b7f95c7a25f5bd9815bbbef597cb20aff6fb binfiles arch=universal-darwin size=1 bin/universal-darwin/pst2pdf -name pst2pdf.win32 +name pst2pdf.windows category Package -revision 15404 -shortdesc win32 files of pst2pdf -containersize 684 -containerchecksum 685a62242aada44054755bf9bf8a1ebcbf10f154f95ab3197d227a7629fe1b8bc8524c283cfa83bdcb4d97f3367e98702239594dcc776717ed0f08718731cc59 -binfiles arch=win32 size=1 - bin/win32/pst2pdf.exe +revision 65891 +shortdesc windows files of pst2pdf +containersize 2308 +containerchecksum 6334776e1f9baf4097c34bb35fb0a5eea126b88a3b59f86a55d0a71fa50875cf8118ae4c509bbdf4a342a3594137d235842438478da6d44f9586bb220a329329 +binfiles arch=windows size=2 + bin/windows/pst2pdf.exe name pst2pdf.x86_64-cygwin category Package @@ -255052,7 +260238,7 @@ catalogue-version 1.5e name pstricks category Package -revision 58731 +revision 65346 catalogue pstricks-base shortdesc PostScript macros for TeX relocated 1 @@ -255072,11 +260258,11 @@ longdesc pdftricks package, to generate a PDF inclusion from a PSTricks longdesc diagram. PSTricks macros can also generate PDF output when the longdesc document is processed XeTeX, without the need for other longdesc supporting packages. -containersize 75992 -containerchecksum 9d7eddbede84ccb7cab9024f4ebeff688707f189012c3f71ed3a57963bacb13fb7aa6ad2af136d11b9e530ea4b1b74b9c06563954b81a1cd41c65f3a2c8e5fd4 -doccontainersize 7451364 -doccontainerchecksum f3decc60f9153b5eca7a71c72518cfa9501c5e970c0d2957dcd866296c883070aac3fc11016e74e6e703927bec7bf1135bd2a20d5a8a5d937ce7d95e8410fe13 -docfiles size=2269 +containersize 87888 +containerchecksum aad3d0a383c8b815324a3f07c02a6c747d026a2b107ce4e24be6dc868dc884e0202239ea19fc4ecca786000ae61169422095217d42b826466f0e3886c58cc2b9 +doccontainersize 11085932 +doccontainerchecksum c996a3e2d4c088c3ae6332855882f461a931969e9f88ad64bf656d2b11ad10bf06e5076d381f316f95de1d40d68e437ae8cd1fc450b1e387ee39c54e0d7feb4e +docfiles size=3181 RELOC/doc/generic/pstricks/PSTricks.bib RELOC/doc/generic/pstricks/README details="Readme" RELOC/doc/generic/pstricks/ctandir.sty @@ -255116,15 +260302,19 @@ docfiles size=2269 RELOC/doc/generic/pstricks/pst-news18.tex RELOC/doc/generic/pstricks/pst-news19.pdf RELOC/doc/generic/pstricks/pst-news19.tex - RELOC/doc/generic/pstricks/pst-news20.pdf details="Latest news bulletin" + RELOC/doc/generic/pstricks/pst-news20.pdf RELOC/doc/generic/pstricks/pst-news20.tex + RELOC/doc/generic/pstricks/pst-news21.pdf details="Latest news bulletin" + RELOC/doc/generic/pstricks/pst-news21.tex + RELOC/doc/generic/pstricks/pst-news22.pdf + RELOC/doc/generic/pstricks/pst-news22.tex RELOC/doc/generic/pstricks/pst-user.pdf details="Package documentation" RELOC/doc/generic/pstricks/pst-user.tgz RELOC/doc/generic/pstricks/pstricks-bug.tex RELOC/doc/generic/pstricks/pstricks-doc.pdf RELOC/doc/generic/pstricks/test-pst.pdf RELOC/doc/generic/pstricks/test-pst.tex -runfiles size=154 +runfiles size=130 RELOC/dvips/pstricks/pst-algparser.pro RELOC/dvips/pstricks/pst-dots.pro RELOC/dvips/pstricks/pst-dots97.pro @@ -255140,11 +260330,13 @@ runfiles size=154 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-arrows.tex + RELOC/tex/generic/pstricks/pstricks-color.tex + RELOC/tex/generic/pstricks/pstricks-dots.tex RELOC/tex/generic/pstricks/pstricks-tex.def RELOC/tex/generic/pstricks/pstricks-xetex.def RELOC/tex/generic/pstricks/pstricks.con RELOC/tex/generic/pstricks/pstricks.tex - RELOC/tex/generic/pstricks/pstricks.tex.neu RELOC/tex/generic/pstricks/pstricks97.tex RELOC/tex/latex/pstricks/pst-all.sty RELOC/tex/latex/pstricks/pst-doc.cls @@ -255154,17 +260346,17 @@ runfiles size=154 RELOC/tex/latex/pstricks/pstricks.sty catalogue-alias pstricks catalogue-also pstricks-add -catalogue-contact-home http://tug.org/PSTricks +catalogue-contact-home https://tug.org/PSTricks/main.cgi/ catalogue-contact-repository https://archiv.dante.de/~herbert/TeXnik/ -catalogue-contact-support http://tug.org/mailman/listinfo/pstricks +catalogue-contact-support https://tug.org/mailman/listinfo/pstricks catalogue-ctan /graphics/pstricks/base catalogue-license lppl1.3 catalogue-topics graphics-in-tex colour pstricks dvips-special xetex -catalogue-version 3.01a +catalogue-version 3.18 name pstricks-add category Package -revision 53763 +revision 65067 shortdesc A collection of add-ons and bugfixes for PSTricks relocated 1 longdesc Collects together examples that have been posted to the @@ -255176,12 +260368,13 @@ longdesc (e.g., logarithm axes); polar plots; plotting tangent lines of longdesc curves or functions; solving and printing differential longdesc equations; box plots; matrix plots; and pie charts. The package longdesc makes use of PostScript routines provided by pst-math. -containersize 21220 -containerchecksum cf73863537b9058961d4592077dabfbd0e76ff0f07dbc7b17520945bad42286483da11ebbd44abe403845a9092cfa6415ad881ab19d323527f1b979b9e0163be -doccontainersize 4634452 -doccontainerchecksum 7a7639cd2dc128ddb203de7aeae23eb50adba49702b5270c6c432a159f185dab78bd0b6ce9925b6b803c200403fb662a9ded85197f79711d6880a1641cd53996 -docfiles size=2776 +containersize 21896 +containerchecksum 89a2e5c037dcaab7b14bb673cece21220f66865e75eeae5f2dcd0ccc48d69b26e906d97e07fef4a0fb1908906d47c75394b06a1b378787e1c3d02eb7df11a1da +doccontainersize 10578276 +doccontainerchecksum 1021ece59cb0cc41c0ee9620c84a2de8aa5dffe7e8ff7f3adc286054f880dbadec70b888c7e23152c318e5013e581e0c34a68581ec1eff8508397730a5fc8886 +docfiles size=4600 RELOC/doc/generic/pstricks-add/Changes + RELOC/doc/generic/pstricks-add/History RELOC/doc/generic/pstricks-add/README details="Readme" RELOC/doc/generic/pstricks-add/data/contourN.data RELOC/doc/generic/pstricks-add/data/data.data @@ -255202,14 +260395,14 @@ docfiles size=2776 RELOC/doc/generic/pstricks-add/pstricks-add-doc.bib RELOC/doc/generic/pstricks-add/pstricks-add-doc.pdf details="Package documentation" RELOC/doc/generic/pstricks-add/pstricks-add-doc.tex -runfiles size=25 +runfiles size=26 RELOC/dvips/pstricks-add/pstricks-add.pro RELOC/tex/generic/pstricks-add/pstricks-add.tex RELOC/tex/latex/pstricks-add/pstricks-add.sty catalogue-ctan /graphics/pstricks/contrib/pstricks-add catalogue-license lppl catalogue-topics graphics-in-tex pstricks -catalogue-version 3.89a +catalogue-version 3.93 name pstricks_calcnotes category Package @@ -255320,7 +260513,7 @@ catalogue-topics scientific-docs name psutils category TLCore -revision 52851 +revision 61719 shortdesc PostScript utilities longdesc A bundle of utilities for manipulating PostScript documents, longdesc including page selection and rearrangement, resizing the page, @@ -255328,10 +260521,10 @@ longdesc arrangement into signatures for booklet printing, and page longdesc merging for n-up printing. Utilities include psbook, psselect, longdesc pstops, psnup, psresize, epsffit. depend psutils.ARCH -containersize 5388 -containerchecksum 737cbffd48eec8244b11d6715a41feea6ed25cd6e53326dcbec0a5fe60881c5376dba508d70345db30a3c3515b24d3995f133b92015d2e943accea1093ea7c1c +containersize 5364 +containerchecksum 1489c9cd3ae9e1063367301f038cd52f0fd7f5b2d548ea78c06a2bff56100aa613cd01026ce601527b6a32f88b6ed1df96f9c8c6a591d16a63dccdc8e32d6969 doccontainersize 135820 -doccontainerchecksum 68505dab374e4e4ffd9da0ce6e6ee41008ebc0e2eaac1cd89ba7746b6882ba7bf6fb93143b4dd5a3a8fada821104ab8ca66fea5ffe313173631f98b221fdc62c +doccontainerchecksum 8b4814c2a769b1ea8831aa945352f31125267aeebedd8dc8abf6381928707799bcb1eb29214930152046bab63b1a56179ea035ae6568595fd5ac83bbbd22f588 docfiles size=60 texmf-dist/doc/man/man1/epsffit.1 texmf-dist/doc/man/man1/epsffit.man1.pdf @@ -255360,17 +260553,17 @@ runfiles size=7 texmf-dist/scripts/psutils/includeres.pl texmf-dist/scripts/psutils/psjoin.pl catalogue-also pssplit -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-license other-free catalogue-topics ps-manip catalogue-version p17 name psutils.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of psutils -containersize 62952 -containerchecksum 81aa88e4f34f0a81fe4fc09994befa4e20327265b12bc29c6ccb7117e72796c064677fc765907a1f722bd6755063500a248c9ed6cbf450cc9d87d4697608120d +containersize 63240 +containerchecksum 00b0543748fc28f28c22c46c126575c90fff4f408f975c5b0811981fb18a2154590039feb09fefff80a63ed5bfe4f020cbdf69a67239269be6870079fc510390 binfiles arch=aarch64-linux size=101 bin/aarch64-linux/epsffit bin/aarch64-linux/extractres @@ -255384,11 +260577,11 @@ binfiles arch=aarch64-linux size=101 name psutils.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of psutils -containersize 75080 -containerchecksum 670ebdb28477c79b0af2ff22a10981cd6b1738533036e95b67b8e03233a62f166a080cda7bba67aec84decb1b9dcc176912807baa0a661b8b39a2a70e47bc6f1 -binfiles arch=amd64-freebsd size=104 +containersize 67952 +containerchecksum 595981f758e12388fe023eee45270ed7ca10f57eb51a2ff497e80e18e241811aad920f6ef51ec19abaa2f710680b49749fd4da316f1376303fcf72ca56cf0d7e +binfiles arch=amd64-freebsd size=103 bin/amd64-freebsd/epsffit bin/amd64-freebsd/extractres bin/amd64-freebsd/includeres @@ -255401,10 +260594,10 @@ binfiles arch=amd64-freebsd size=104 name psutils.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of psutils -containersize 69144 -containerchecksum 302beb1469b073d9aa4e21383907ab532f302af8bd9f88f69a43f1aa55f02440e8e06be69ad58b376f1f372d1f982487c0569f6d5b3fbf125de9d8b54f58c02f +containersize 69120 +containerchecksum 9f1bdd02001e7ce104bcc1d529fdf72419f019cb99dadb374de2b3acf2b6128560eeb81dc60342bce0c6a2fb679922eb171007c77c7d54bc2c9af5fa0e021484 binfiles arch=amd64-netbsd size=118 bin/amd64-netbsd/epsffit bin/amd64-netbsd/extractres @@ -255418,10 +260611,10 @@ binfiles arch=amd64-netbsd size=118 name psutils.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of psutils -containersize 49104 -containerchecksum 169c72208be502223383abe9d8ed8f17fc57cb62cb44cb9a86e8d595957c8884cb617c84ad8c7ea6750d4d8f087e4e0cee8db6f7a604b71d95b8a6627dc9e7ae +containersize 49132 +containerchecksum 061a794b2c92240bf889d2b70aa5804cc3a4876ee6b275b66b6ed62166d5a13b53ca59a140f8261eca326d61b0761dd5af25b003c327fec8a01959f044753e0b binfiles arch=armhf-linux size=80 bin/armhf-linux/epsffit bin/armhf-linux/extractres @@ -255433,30 +260626,13 @@ binfiles arch=armhf-linux size=80 bin/armhf-linux/psselect bin/armhf-linux/pstops -name psutils.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of psutils -containersize 21740 -containerchecksum 80b7fe5bb2e14c2b58157bbbe8627697b4f9d7dc99f897236c3a21aed7d5f730d45417488bbc40fd383ee3eecf7fee562974e840d95dbe12cd79cdaf4dd12ea0 -binfiles arch=i386-cygwin size=41 - bin/i386-cygwin/epsffit.exe - bin/i386-cygwin/extractres - bin/i386-cygwin/includeres - bin/i386-cygwin/psbook.exe - bin/i386-cygwin/psjoin - bin/i386-cygwin/psnup.exe - bin/i386-cygwin/psresize.exe - bin/i386-cygwin/psselect.exe - bin/i386-cygwin/pstops.exe - name psutils.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of psutils -containersize 65528 -containerchecksum 4196052220c345e53224d6bd3ec2b2dbe75b49319074bb858169b4efa2d6675fab7ecce4c6c3172fc2b2ae55f9868f9581a3fd61ef9ff036c63db3df40bc5265 -binfiles arch=i386-freebsd size=90 +containersize 67328 +containerchecksum 0c5366b8051bd25b5bbd571e0802e100e1cc641c8deb4f853efd3126369b3a0970105adcbc311cec9edf48f771257041443782c3ba18b60f307b39048c6de72a +binfiles arch=i386-freebsd size=91 bin/i386-freebsd/epsffit bin/i386-freebsd/extractres bin/i386-freebsd/includeres @@ -255469,11 +260645,11 @@ binfiles arch=i386-freebsd size=90 name psutils.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of psutils -containersize 69716 -containerchecksum 7aecc5db4e3cccc48af9ba79570cb234b1faf6e739a877a062194636221de2eb5d7036881d7b8a8a0b4929891f5b5e654a8577dad3106d254ffef75af74b99d6 -binfiles arch=i386-linux size=101 +containersize 68616 +containerchecksum 894abca9aed4cd64b2d28a814b1f0542b4539cd7157b080abfaa6588c989934f4cf3313fed4cf40d41c8c58ab27a3b9d8f90b19630afc0ded9f1c94c53961319 +binfiles arch=i386-linux size=104 bin/i386-linux/epsffit bin/i386-linux/extractres bin/i386-linux/includeres @@ -255486,10 +260662,10 @@ binfiles arch=i386-linux size=101 name psutils.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of psutils -containersize 63656 -containerchecksum 1b215603f9b987f0ea38188e63400d2d57b773960a62779ea8b11d0d06f198deae5c289798bd4a40c662d401c3dd3840a47b1ab81315df3d0c2c64aac0f6b4bc +containersize 63576 +containerchecksum 3747f14367bd7c0882f93ba57eb92ecad83cc79733ab5ec5d025200db4c44fd77ee7c02ebd98619628900c40127e0a5742e65316b9b9dccd4c31aa8fe43ad22a binfiles arch=i386-netbsd size=107 bin/i386-netbsd/epsffit bin/i386-netbsd/extractres @@ -255503,10 +260679,10 @@ binfiles arch=i386-netbsd size=107 name psutils.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of psutils -containersize 66228 -containerchecksum 4c7bf92ba1f898895d12563b893d21689568d46ae802c143372f71db81173d11665ffaa656ee0e2137dc574a7e2f8b444602edb97b21a0f3dd4450df6464cc69 +containersize 66412 +containerchecksum f444bbfe9b806faea8a71181eadbf296ff90417dfd70d586fe5e1e959c061e76fe464da88284685a3d3b5a96dc62e4b8c62defc6e88be6f342503d2acc885906 binfiles arch=i386-solaris size=93 bin/i386-solaris/epsffit bin/i386-solaris/extractres @@ -255520,11 +260696,11 @@ binfiles arch=i386-solaris size=93 name psutils.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of psutils -containersize 133464 -containerchecksum e541bb6e8137dcdc33c9c45fa35d0eba82eeac627ab43d131c1c6afd45af174775d9db262acf176e4330d20eacb2d17dcf7f29397bb4ea82e134e09949e4107a -binfiles arch=universal-darwin size=318 +containersize 132364 +containerchecksum 6f21921eeaf9a8aa1a1d3978f8ba9f7985514742026893bc51d2beecb268767744eef9f7178d0263eb4f3261071911497cca0c1ea5e79586fb4d5838b050bdb7 +binfiles arch=universal-darwin size=338 bin/universal-darwin/epsffit bin/universal-darwin/extractres bin/universal-darwin/includeres @@ -255535,30 +260711,30 @@ binfiles arch=universal-darwin size=318 bin/universal-darwin/psselect bin/universal-darwin/pstops -name psutils.win32 -category TLCore -revision 58783 -shortdesc win32 files of psutils -containersize 24936 -containerchecksum 97ef8f951e366f228ebb513df28d7ab939d89547289bf692ffb0b696dc8a419b7d88905655bdb67aa0a31a6c0a66b2e1880acd91111bbe6d69d89d5f6a506999 -binfiles arch=win32 size=32 - bin/win32/epsffit.exe - bin/win32/extractres.exe - bin/win32/includeres.exe - bin/win32/psbook.exe - bin/win32/psjoin.exe - bin/win32/psnup.exe - bin/win32/psresize.exe - bin/win32/psselect.exe - bin/win32/pstops.exe +name psutils.windows +category TLCore +revision 65891 +shortdesc windows files of psutils +containersize 27728 +containerchecksum bf00c6c3aa2d2606441d966db699403210592f238c5988414b47d788bb7565501568b806f2f7e2228b8d27a64eabb42d6465fb54b3e71430493fbf57cf77e74b +binfiles arch=windows size=37 + bin/windows/epsffit.exe + bin/windows/extractres.exe + bin/windows/includeres.exe + bin/windows/psbook.exe + bin/windows/psjoin.exe + bin/windows/psnup.exe + bin/windows/psresize.exe + bin/windows/psselect.exe + bin/windows/pstops.exe name psutils.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of psutils -containersize 23120 -containerchecksum 159172968309bbe3283c270aa32d7b0e2bc6aa8d92125dd49099e6bf18c08ba59cb49e35637c672771b9207647e9cf3b285af572b3d6a0104528650a5a9406f1 -binfiles arch=x86_64-cygwin size=38 +containersize 23332 +containerchecksum 4b6038f2340b7e1f52efd5e2f5c5e9159d812064ba3c6e3a64552e21853111bc7ce11dd7b2aad90a8b8ea7d084f2a7221a2c6d2d43161dbff20f78081c946665 +binfiles arch=x86_64-cygwin size=39 bin/x86_64-cygwin/epsffit.exe bin/x86_64-cygwin/extractres bin/x86_64-cygwin/includeres @@ -255571,10 +260747,10 @@ binfiles arch=x86_64-cygwin size=38 name psutils.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of psutils -containersize 62080 -containerchecksum 969f75ee4f550fd4f3416fd8f0c74b7f839e166a8b904685a316882a206eeca8e1393f92ffe239d292ed0f6be1004fe15a8376997daa7997b8074d5e9ff720ea +containersize 62164 +containerchecksum 9f2b5cc9fbe3335e59246dd8e813314c52aa07c049c55f6ab3a89bfd6d9db9ffc2ce4a8ef64cc68f96f4e9c25637c0c14761ba283ab31e94913997a65186bd39 binfiles arch=x86_64-darwinlegacy size=97 bin/x86_64-darwinlegacy/epsffit bin/x86_64-darwinlegacy/extractres @@ -255588,11 +260764,11 @@ binfiles arch=x86_64-darwinlegacy size=97 name psutils.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of psutils -containersize 69344 -containerchecksum c984ef9466467d27c40fef11df36869f7c040480d5370d183b6ae8bb3f14166aa88350a1fb2d25619c5f210410406478a1b9bf6e1f5743dac0d0d251e3c9c2a0 -binfiles arch=x86_64-linux size=91 +containersize 69240 +containerchecksum 9fdec1edbd6499b4863bf382baa48badf6fa4183b9a42aec26b199952c997bd404ad4fb8dd4fb8bcb6edc2cd45a4cf87fc1a497d23d97fd4076c3486197ca4e4 +binfiles arch=x86_64-linux size=102 bin/x86_64-linux/epsffit bin/x86_64-linux/extractres bin/x86_64-linux/includeres @@ -255605,11 +260781,11 @@ binfiles arch=x86_64-linux size=91 name psutils.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of psutils -containersize 72356 -containerchecksum b9b6e2d2cc8c63e6c364d4862404e54e828f28dec676284ce0b0d6c2302472f54de506d0852e52aa98657d2a5738d35ce0edcc1d0d90412088e5b73acd4d7d5d -binfiles arch=x86_64-linuxmusl size=105 +containersize 71796 +containerchecksum d5ba73cf167b37229bc279c5699beb8ca7f55e6c2ba8a580b2b6565b4fb97ba40719bc9b626eadbd47db28b3a689f93511e2c053ddd1d5b8af07377588e0fe10 +binfiles arch=x86_64-linuxmusl size=103 bin/x86_64-linuxmusl/epsffit bin/x86_64-linuxmusl/extractres bin/x86_64-linuxmusl/includeres @@ -255622,10 +260798,10 @@ binfiles arch=x86_64-linuxmusl size=105 name psutils.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of psutils -containersize 75096 -containerchecksum 4dcce0a20a12157dcece58875e034f27cf857104a878beeedc5b8e46dc5863e9d288d9a7b2802eea59b34ff0290dc49d57972669be059c97d0e9f8706b7dabd0 +containersize 75712 +containerchecksum 3daf191608403c5ca59e0ecd3690a3ffbbdb26f36d16934162b1d7f4613957eea66b2a1ad196c67dbff3a7e930bf8a7e90edc918972fb42b9c36e7d9e30516cc binfiles arch=x86_64-solaris size=110 bin/x86_64-solaris/epsffit bin/x86_64-solaris/extractres @@ -255639,7 +260815,7 @@ binfiles arch=x86_64-solaris size=110 name ptex category Package -revision 57972 +revision 66186 shortdesc A TeX system for publishing in Japanese longdesc pTeX adds features related to vertical writing, and deals with longdesc other problems in typesetting Japanese. A manual (in both @@ -255653,19 +260829,21 @@ depend ptex-base depend ptex-fonts depend ptex.ARCH execute AddFormat name=eptex engine=eptex options="*eptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts,etex -execute AddFormat name=ptex engine=ptex options="ptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts +execute AddFormat name=ptex engine=eptex options="ptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,ptex-base,ptex-fonts execute addKanjiMap ptex-@jaEmbed@@jaVariant@.map containersize 688 -containerchecksum d59108f06a06b7ac46195ef05c0ba6fb4873a88d327839a6143e94392faf3df73ae7b128548ae1ab69915f9883bad554f0e2dbd8d36b8f8c959897210895fba0 -doccontainersize 119344 -doccontainerchecksum 4f863d89fca4c137a84fe75365f600da96f3901d29dd98e9d5733523648b746861a22284707c6e9df90a9939c83adc7bcdf21b310785b8d403459d65294d1133 -docfiles size=54 +containerchecksum dca32af2c2742207b380c909190204049e29eb9c824f534c39757e3544e305a9395c9fd6ff76d855f1e7fc67e0999bfd863640fc2d2f45dc44bdaa7df543568f +doccontainersize 145060 +doccontainerchecksum 160902b1b32b9725f4c7cabd06dfb612fbbeef31845df108efd50917d85ef619ba62d03760852d31a21a23e2bdcb5035292b317982d7fede260a696041bb2293 +docfiles size=61 texmf-dist/doc/man/man1/eptex.1 texmf-dist/doc/man/man1/eptex.man1.pdf texmf-dist/doc/man/man1/makejvf.1 texmf-dist/doc/man/man1/makejvf.man1.pdf texmf-dist/doc/man/man1/mendex.1 texmf-dist/doc/man/man1/mendex.man1.pdf + texmf-dist/doc/man/man1/pbibtex.1 + texmf-dist/doc/man/man1/pbibtex.man1.pdf texmf-dist/doc/man/man1/ppltotf.1 texmf-dist/doc/man/man1/ppltotf.man1.pdf texmf-dist/doc/man/man1/ptex.1 @@ -255680,14 +260858,14 @@ catalogue-topics engine japanese name ptex-base category Package -revision 56487 +revision 64072 shortdesc Plain TeX format for pTeX and e-pTeX relocated 1 longdesc The bundle contains the plain TeX format for pTeX and e-pTeX. -containersize 10040 -containerchecksum 37809d10840c61c7b5c17be0174708b3c66d7fb0b48c58f46aabcaa2e44abf30abc3aa437131ba1148f11bdee3e2fec1b8ab0787310e8924acc7d90cb33c0d84 -doccontainersize 1548 -doccontainerchecksum 98844a87ac2a83d55c04bca34a53e1cc5c222ac5d359d3c24648a8c849443c5c8829bb0d911d54de76fefcd2d0c4d537feff5effe7591657de629b2ab24e5c2b +containersize 10060 +containerchecksum b937359bde7ade3645edb6435a824ee6af66e51e7cb518694706224e63e4d92391911f01745d331cb92e62c34c085aa5f284babacf6f7ab0a0474cbf06b00859 +doccontainersize 1540 +doccontainerchecksum 85b6422630754144e4f9c552899e588f1650af2837cf88e8f47106e2919bee8dd956002e102f83dd76107edb0e61e2a6d4ebfaaf6fc06289942fdb32385454ba docfiles size=2 RELOC/doc/ptex/ptex-base/LICENSE RELOC/doc/ptex/ptex-base/README.md details="Readme" @@ -255700,13 +260878,13 @@ runfiles size=14 RELOC/tex/ptex/ptex-base/ptex.ini RELOC/tex/ptex/ptex-base/ptex.tex catalogue-contact-repository https://github.com/texjporg/ptex-base -catalogue-ctan /language/japanese/ptex-base +catalogue-ctan /macros/jptex/generic/ptex-base catalogue-license bsd3 catalogue-topics format japanese name ptex-fontmaps category Package -revision 57239 +revision 65953 shortdesc Font maps and configuration tools for Japanese/Chinese/Korean fonts with (u)ptex longdesc This package provides font maps and setup tools for Japanese, longdesc Korean, Traditional Chinese, and Simplified Chinese. It is the @@ -255716,10 +260894,10 @@ longdesc Japanese/Chinese/Korean fonts available for (u)ptex and related longdesc programs and formats. depend ptex-fontmaps.ARCH postaction script file=tlpkg/tlpostcode/ptex-fontmaps-tlpost.pl -containersize 43276 -containerchecksum 168de4ff3435d1148bb718b15953dfa79172c6829e95824d998d9fff193c27f7677ae014ba54c507840b9b630dea12168f9a70d30a4cead922a461a52e63d8ab -doccontainersize 156728 -doccontainerchecksum 42e7f0eeab1000b2c49d714c40405e008cc7b08648bdac1bac8f5459bc64eb3fd6fb526fabbbc2c7774a1b12abd37396e389e7c90351eba92a5aeef53ac3e558 +containersize 43332 +containerchecksum b864c185b5718dfa76e0d4385654ca8e319ab0cbb59911defbec8d6198879265d064087df233d9020f3abc4bebe0742530f40b2ae6e584dbb4f5b6ed7ff28d07 +doccontainersize 156528 +doccontainerchecksum 4b21fe546634aad338630520bf68fce2a83f8e6fade99d170ef87a92c8308dd289ed130bf67bfc88419f8752454ab04730bfaa68de90535984590ce8435d87b5 docfiles size=49 texmf-dist/doc/fonts/ptex-fontmaps/README details="Readme" texmf-dist/doc/fonts/ptex-fontmaps/examples/otf-sample-04.tex @@ -255729,7 +260907,7 @@ docfiles size=49 texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.pdf texmf-dist/doc/fonts/ptex-fontmaps/kanji-config-updmap.tex srccontainersize 305384 -srccontainerchecksum f7875a39315715c60069521903a103e5ab12ec52970ee00f3b95a498075d39e68d6f5b12373b4b31f6681a31561d740b584a65ba566d1db5ffadefdb620cf1da +srccontainerchecksum 028304d777bfd5155baf89fcd4003bec43e5a7f3009aa9250cfd13277d085cbe52cf49511cf664efa0c886b1681475b0c25eaa65624bf0b77d4ab4403ebb457a srcfiles size=250 texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-H texmf-dist/source/ptex-fontmaps/jis04cmap_exp/JISX0213-2004-V @@ -255965,7 +261143,7 @@ catalogue-contact-repository https://github.com/texjporg/ptex-fontmaps catalogue-ctan /fonts/ptex-fontmaps catalogue-license pd gpl3 catalogue-topics font-use japanese chinese korean -catalogue-version 20201227.0 +catalogue-version 20210625.0 name ptex-fontmaps.aarch64-linux category Package @@ -256015,18 +261193,6 @@ binfiles arch=armhf-linux size=4 bin/armhf-linux/kanji-config-updmap-user bin/armhf-linux/kanji-fontmap-creator -name ptex-fontmaps.i386-cygwin -category Package -revision 44206 -shortdesc i386-cygwin files of ptex-fontmaps -containersize 436 -containerchecksum 9b945c236ac1a6d0caa7db142db04761ee3744f1b5e86d1f30307bd739127f30a65e424970d17ef0dbfdac6061a696b2baba6a69dd025dcbfda005898d5a9115 -binfiles arch=i386-cygwin size=4 - bin/i386-cygwin/kanji-config-updmap - bin/i386-cygwin/kanji-config-updmap-sys - bin/i386-cygwin/kanji-config-updmap-user - bin/i386-cygwin/kanji-fontmap-creator - name ptex-fontmaps.i386-freebsd category Package revision 44206 @@ -256087,17 +261253,17 @@ binfiles arch=universal-darwin size=4 bin/universal-darwin/kanji-config-updmap-user bin/universal-darwin/kanji-fontmap-creator -name ptex-fontmaps.win32 +name ptex-fontmaps.windows category Package -revision 44206 -shortdesc win32 files of ptex-fontmaps -containersize 776 -containerchecksum 19e6f552a27598767ffc34e64354403dd3dc0192e45d01c510b6e566230ed37b1cedcb8e865d044c5cbc07d65a25e236d5f4fe69dd197efe345c5553b4770d39 -binfiles arch=win32 size=4 - bin/win32/kanji-config-updmap-sys.exe - bin/win32/kanji-config-updmap-user.exe - bin/win32/kanji-config-updmap.exe - bin/win32/kanji-fontmap-creator.exe +revision 65891 +shortdesc windows files of ptex-fontmaps +containersize 2428 +containerchecksum e4aa492cc5a123a13a83df1b44950a3fd690f7789537b54e48ca6694fadbe7607c4855cff764a56b9539fdca97b6fbc0c8755de5bdaf2cf6b69e2eed6b981dad +binfiles arch=windows size=8 + bin/windows/kanji-config-updmap-sys.exe + bin/windows/kanji-config-updmap-user.exe + bin/windows/kanji-config-updmap.exe + bin/windows/kanji-fontmap-creator.exe name ptex-fontmaps.x86_64-cygwin category Package @@ -256161,21 +261327,19 @@ binfiles arch=x86_64-solaris size=4 name ptex-fonts category Package -revision 46940 +revision 64330 shortdesc Fonts for use with pTeX relocated 1 longdesc The bundle contains fonts for use with pTeX and the documents longdesc for the makejvf program. This is a redistribution derived from longdesc the ptex-texmf distribution by ASCII MEDIA WORKS. -containersize 14180 -containerchecksum 54ebb6d2923ff6b277b4376041b90a0fa6a164281cb18820f175d5aa87f9e996c1adff16e9e5eb5bb90d52c135d581eb1d5ddc476ecb2446fd27d0cecd75bb30 -doccontainersize 4256 -doccontainerchecksum dd3c4d3510ec1de8a5174bd10a7ff7bb173b25354b28f0b8411fe23b41fee8523fe1993c30e55cb7c3eddd90bd17db5299cb8f4ca170e4d97869388d3fbd8137 -docfiles size=5 - RELOC/doc/fonts/ptex-fonts/Changes_makejvf +containersize 14264 +containerchecksum d625f45f7211eca1152a16814ce87814cc19eb7d6646d4f66971eb08eeec50bcf91ddcc253f4ffe24418a3e2a989ce10c03a3536730ac286980742cdfa22fe67 +doccontainersize 1640 +doccontainerchecksum 3a07313f79f31d09bf96c78a574d00d57641df75b9eeb89c76425ee3d6cd51d1e6ad6574fffdeb834d2bc2fa8c41511561aec34ca6be2be43d55da6227d19a19 +docfiles size=2 RELOC/doc/fonts/ptex-fonts/LICENSE RELOC/doc/fonts/ptex-fonts/README.md details="Readme" - RELOC/doc/fonts/ptex-fonts/README_makejvf runfiles size=1724 RELOC/fonts/source/ptex-fonts/jis/jis-v.pl RELOC/fonts/source/ptex-fonts/jis/jis.pl @@ -256316,16 +261480,16 @@ catalogue-topics font-cjk name ptex-manual category Package -revision 57128 +revision 66182 shortdesc Japanese pTeX manual relocated 1 longdesc This package contains the Japanese pTeX manual. Feedback is longdesc welcome! containersize 392 -containerchecksum ea2bc5648ea4dfee37b9df34ed786ff2fd400644defa7b2623435d4e448161b8bf45f07d5d2caf18bf280008d5e4253a4ad2f62dc88375500b635bab1c201491 -doccontainersize 2427344 -doccontainerchecksum 162b7d40353fc0c892b257170cb5a335930936c776ff4b5bb91fa41d27a859d43bcedaa053aa5c2ca7d732993212c470670e1abfa4b1149c0867cdcb4b68011f -docfiles size=708 +containerchecksum 9cfc90c278e480cefede15323264c2f398fdc83da96d6bfbce339031d254dd09abae9cea11901af63176034e4d153bbbfe8e50ec6126cf74f9e928cdc5527ad8 +doccontainersize 2958344 +doccontainerchecksum dd5787682ce8342332897b7ec00b30dc3a8ac28184e13aa57caf20969ada3d08b46ad4b53736b47c2f58ec4bf5613e1c16e54f3fcf75c0d4a8925aec005a64c1 +docfiles size=838 RELOC/doc/ptex/ptex-manual/LICENSE RELOC/doc/ptex/ptex-manual/README.md details="Readme" RELOC/doc/ptex/ptex-manual/eptex_resume.pdf @@ -256356,11 +261520,11 @@ catalogue-topics japanese-doc name ptex.aarch64-linux category Package -revision 58876 +revision 66237 shortdesc aarch64-linux files of ptex -containersize 1354784 -containerchecksum 5da1a1fb7d8a4e1ceb36adff728f47449622f3a56ad3c055dc277e92e6988272f2ec163311089228080c3ad4972e5ea9a562f05f3423e8bd6143ad08bf738e45 -binfiles arch=aarch64-linux size=1157 +containersize 1128096 +containerchecksum 56f7d5e7db64e464ac407e49a13cfe7b9094cf8194d8373dacb730e2bfa133353454f188672e98552f08ce1e739ea8d0ba8a416e3098ec3cd643928107b96f1a +binfiles arch=aarch64-linux size=835 bin/aarch64-linux/eptex bin/aarch64-linux/makejvf bin/aarch64-linux/mendex @@ -256375,11 +261539,11 @@ binfiles arch=aarch64-linux size=1157 name ptex.amd64-freebsd category Package -revision 58850 +revision 66084 shortdesc amd64-freebsd files of ptex -containersize 1670628 -containerchecksum 3d40f962c03f23b726d077f7a1cf7b07793bd6968a0abab80eff67c558d2fcd24a777701079dce8da5993b459b1bf1261b5f3c17bd20d2f5b719e96040b9b17b -binfiles arch=amd64-freebsd size=1382 +containersize 1364708 +containerchecksum aa9e81f24576e9b1f2feda38e2b9378464cdecfb56cc40c7211d22a386574ed9a3d97049f75d0ab2ce08e95ce73c763683ad311c282de398b2cb2befc864654e +binfiles arch=amd64-freebsd size=1010 bin/amd64-freebsd/eptex bin/amd64-freebsd/makejvf bin/amd64-freebsd/mendex @@ -256394,11 +261558,11 @@ binfiles arch=amd64-freebsd size=1382 name ptex.amd64-netbsd category Package -revision 58866 +revision 66083 shortdesc amd64-netbsd files of ptex -containersize 1269480 -containerchecksum af0bbf15f2828ea5c51fbaf4c3212eb1ed17a59e96e17c9675ab52e12c4634bacd1c93489738447199aee4d67dd0143a1dae7007f5e6158d35ce4cadcbf41164 -binfiles arch=amd64-netbsd size=1958 +containersize 1060444 +containerchecksum 0ecfeb6994574bb9d79238ce3dff987da6282d7c563e92466046521eeb4ca0d4abc1f2735e8c3e6e996c38ec5109dcdbb09f5c886e2c92ec30c16a83e5b5d1ac +binfiles arch=amd64-netbsd size=1618 bin/amd64-netbsd/eptex bin/amd64-netbsd/makejvf bin/amd64-netbsd/mendex @@ -256413,11 +261577,11 @@ binfiles arch=amd64-netbsd size=1958 name ptex.armhf-linux category Package -revision 58911 +revision 66237 shortdesc armhf-linux files of ptex -containersize 1147188 -containerchecksum 066e639c213a4a7cd0fb84ba16737d151182901581ecf472f22cca5b10f16258cca341ff2750e80b74e8993fab0c5562f75aff0206fbaa577dcfd472da88c887 -binfiles arch=armhf-linux size=958 +containersize 969960 +containerchecksum ede731d87c0e3f8c843cebf8ba30d8e9b8dd8ee9949d9d9886a804d6b8dcaf0c98d77f01de5a1a1ba26d2a6318e86183a3e36245954a2847827637a68d34880e +binfiles arch=armhf-linux size=705 bin/armhf-linux/eptex bin/armhf-linux/makejvf bin/armhf-linux/mendex @@ -256430,33 +261594,13 @@ binfiles arch=armhf-linux size=958 bin/armhf-linux/ptftopl bin/armhf-linux/r-pmpost -name ptex.i386-cygwin -category Package -revision 58851 -shortdesc i386-cygwin files of ptex -containersize 1314140 -containerchecksum 417be98a1850915a9ae23b5a2470790d304bf1744d2f646f1148a9bb37dd82e56a8e5dd4bfabdd13f78df2fb20dcd576a9d8104aa41519296a4041616cfc7205 -binfiles arch=i386-cygwin size=1010 - bin/i386-cygwin/cygptexenc-1.dll - bin/i386-cygwin/eptex.exe - bin/i386-cygwin/makejvf.exe - bin/i386-cygwin/mendex.exe - bin/i386-cygwin/pbibtex.exe - bin/i386-cygwin/pdvitomp - bin/i386-cygwin/pdvitype.exe - bin/i386-cygwin/pmpost.exe - bin/i386-cygwin/ppltotf.exe - bin/i386-cygwin/ptex.exe - bin/i386-cygwin/ptftopl.exe - bin/i386-cygwin/r-pmpost - name ptex.i386-freebsd category Package -revision 58850 +revision 66084 shortdesc i386-freebsd files of ptex -containersize 1394316 -containerchecksum 00a8c99c1855940e876274c50e367da1f4c150bd8e3350650758a8f696ab6ed4945da09403b1af112984938e698217a5a1b3dcbfd72ad0145ce4eec008cf8378 -binfiles arch=i386-freebsd size=1208 +containersize 1154728 +containerchecksum eebe47afbc326b9ed2bdcde50a95261625e22f8e75e888022d4ad12fac3d187561f01d725db4f01ce182901f00a40f810b1566a129e84dd5e420475224693164 +binfiles arch=i386-freebsd size=876 bin/i386-freebsd/eptex bin/i386-freebsd/makejvf bin/i386-freebsd/mendex @@ -256471,11 +261615,11 @@ binfiles arch=i386-freebsd size=1208 name ptex.i386-linux category Package -revision 58850 +revision 66084 shortdesc i386-linux files of ptex -containersize 1468628 -containerchecksum 0a5c559998c534445f8cf80bfa7e775afe5e592f2d07fff260cffb1145018b448e214ae57c5908afc09f3cee7ce494a1a436e10b364175b977b0a7168673f7fa -binfiles arch=i386-linux size=1260 +containersize 1265592 +containerchecksum b5609d55b57355f6a6e71300a9359f9c00858d9dcc40ae530c61a342a07cb2c3e56113e5f4a2e910a69152d39826eadd0bb8e2f0147cedfc5c3c52ae858f0713 +binfiles arch=i386-linux size=953 bin/i386-linux/eptex bin/i386-linux/makejvf bin/i386-linux/mendex @@ -256490,11 +261634,11 @@ binfiles arch=i386-linux size=1260 name ptex.i386-netbsd category Package -revision 58866 +revision 66083 shortdesc i386-netbsd files of ptex -containersize 1105092 -containerchecksum 93f9e02a89b428839503add79955e6f2f206cfe4b3b810d193d12e865ab9648c067e038b5d5ec9a9ea14189cac2fb462d8559c1169824d2bfc72abb6e753e085 -binfiles arch=i386-netbsd size=1758 +containersize 927124 +containerchecksum cb4f97132f0169b216f88f75fd01c681bfbe63f0c389ceadc769e13bbc92eb42b794ee6ea4b584e0f63915325aa6669776efd074e217b25d1f7b0e0b92cee891 +binfiles arch=i386-netbsd size=1436 bin/i386-netbsd/eptex bin/i386-netbsd/makejvf bin/i386-netbsd/mendex @@ -256509,11 +261653,11 @@ binfiles arch=i386-netbsd size=1758 name ptex.i386-solaris category Package -revision 58850 +revision 66145 shortdesc i386-solaris files of ptex -containersize 1347604 -containerchecksum 270f8aab665bde1f94ff1790e23dc63e490ff69c9ff020f1b31a08028893b39802c8db6e7b69e3ef3c806e6f7b88f712cec2cc501731f759629bb77325e713d8 -binfiles arch=i386-solaris size=1049 +containersize 1120032 +containerchecksum 40792f99d15e0b3a82233e6f6a8095d262d4cc6d9ead5dc27d9820cb06daedd730b3b39b4f563543983f044b94fec07d1abb3f4c6810a66ec747fe50d787d900 +binfiles arch=i386-solaris size=770 bin/i386-solaris/eptex bin/i386-solaris/makejvf bin/i386-solaris/mendex @@ -256528,11 +261672,11 @@ binfiles arch=i386-solaris size=1049 name ptex.universal-darwin category Package -revision 58850 +revision 66107 shortdesc universal-darwin files of ptex -containersize 3098276 -containerchecksum f4035afafa7ea5d09c696bf072a669f24b114f710fa794ae5e5661170e08e38ea2f336cc837fe69eef2a6d68f706b1928210f458eb9fdbdd29c2002a8d461efa -binfiles arch=universal-darwin size=2782 +containersize 2401748 +containerchecksum 0181f856cc32b5b1a1d46b7bc49e85719d040da8806cd07839e22e434786ddac1e4f321af7d4b924f3c64282015cbfbf36ed3926d226bc7c1a16d909fa5f664d +binfiles arch=universal-darwin size=1924 bin/universal-darwin/eptex bin/universal-darwin/makejvf bin/universal-darwin/mendex @@ -256545,55 +261689,54 @@ binfiles arch=universal-darwin size=2782 bin/universal-darwin/ptftopl bin/universal-darwin/r-pmpost -name ptex.win32 -category Package -revision 59028 -shortdesc win32 files of ptex -containersize 1384700 -containerchecksum 8844e3d43838a9d6d9ffd09b47425569546a130618bef6ecee3ccbdf2115a39e618b4aedb6b490972675a132b4df89341a877378b63475687c54b5896fc72a7e -binfiles arch=win32 size=1231 - bin/win32/eptex.dll - bin/win32/eptex.exe - bin/win32/makejvf.exe - bin/win32/mendex.exe - bin/win32/pbibtex.exe - bin/win32/pdvitomp.exe - bin/win32/pdvitype.exe - bin/win32/pmpost.dll - bin/win32/pmpost.exe - bin/win32/ppltotf.exe - bin/win32/ptex.dll - bin/win32/ptex.exe - bin/win32/ptftopl.exe - bin/win32/r-pmpost.exe +name ptex.windows +category Package +revision 66043 +shortdesc windows files of ptex +containersize 1354824 +containerchecksum 261ded92d5a588ac1388421b05a27e04868acf89d276ddd804f52b3d69fdf7e44c37a0920798bd259e816c04686dc3f6afaf8d56f710c54cb5270bd05c8ea955 +binfiles arch=windows size=935 + bin/windows/eptex.dll + bin/windows/eptex.exe + bin/windows/makejvf.exe + bin/windows/mendex.exe + bin/windows/pbibtex.exe + bin/windows/pdvitomp.exe + bin/windows/pdvitype.exe + bin/windows/pmpost.dll + bin/windows/pmpost.exe + bin/windows/ppltotf.exe + bin/windows/ptex.exe + bin/windows/ptftopl.exe + bin/windows/r-pmpost.exe name ptex.x86_64-cygwin category Package -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of ptex -containersize 1401056 -containerchecksum 023207abe074414cfc7d2f6b0b7a646d59ef3960416d48ec4f8908e33db12f636544f9ae60d1d61f087d606d7f88abc2982b2b3594548b8daca99d44b3510e1d -binfiles arch=x86_64-cygwin size=974 +containersize 1176448 +containerchecksum bf7875e4c30e7dd5fcd79f2710138ee1ffd1cd306e690198c6da03734112316c6362f91e352941199ae9785d48d09a83f9f4758fae3137935f135f2bb1e3b7dd +binfiles arch=x86_64-cygwin size=778 bin/x86_64-cygwin/cygptexenc-1.dll bin/x86_64-cygwin/eptex.exe bin/x86_64-cygwin/makejvf.exe bin/x86_64-cygwin/mendex.exe - bin/x86_64-cygwin/pbibtex.exe + bin/x86_64-cygwin/pbibtex bin/x86_64-cygwin/pdvitomp - bin/x86_64-cygwin/pdvitype.exe + bin/x86_64-cygwin/pdvitype bin/x86_64-cygwin/pmpost.exe - bin/x86_64-cygwin/ppltotf.exe - bin/x86_64-cygwin/ptex.exe - bin/x86_64-cygwin/ptftopl.exe + bin/x86_64-cygwin/ppltotf + bin/x86_64-cygwin/ptex + bin/x86_64-cygwin/ptftopl bin/x86_64-cygwin/r-pmpost name ptex.x86_64-darwinlegacy category Package -revision 58850 +revision 66084 shortdesc x86_64-darwinlegacy files of ptex -containersize 1342432 -containerchecksum e11fd25b550fe8ef7b9488a4e1d8742b685ee54a2f037b0a9318947c29f4bfa8cf38f61c11dee99c57c23e4adee58d237e656899876577531e2ec0925ebd1f1d -binfiles arch=x86_64-darwinlegacy size=1062 +containersize 1117060 +containerchecksum 0cae3df6d25844627af0fad4c90c62d4f693c2abdbb5484144a6fc1c6e998e68d6352180652ebe4b8b0372553662f6cfe73d81cc6d634e70354758c68454f11a +binfiles arch=x86_64-darwinlegacy size=778 bin/x86_64-darwinlegacy/eptex bin/x86_64-darwinlegacy/makejvf bin/x86_64-darwinlegacy/mendex @@ -256608,11 +261751,11 @@ binfiles arch=x86_64-darwinlegacy size=1062 name ptex.x86_64-linux category Package -revision 58872 +revision 66084 shortdesc x86_64-linux files of ptex -containersize 1460872 -containerchecksum cb321bff636dcbf6c2f049edebb867b79d7066be8da4c719617148cab4dfc6f8db49f328dfa9d7222e7c4f84acc991d2c7faf5ec0f275e459387e1e71b2ffa7b -binfiles arch=x86_64-linux size=1138 +containersize 1222812 +containerchecksum 12bd677cdd57637a32960a5a3f94616779b70174b85e5e7406497ec2ef10ea6377662651b7de05d57e6ce4101ff476f876c5635b75b2d212af47851dee009728 +binfiles arch=x86_64-linux size=853 bin/x86_64-linux/eptex bin/x86_64-linux/makejvf bin/x86_64-linux/mendex @@ -256627,11 +261770,11 @@ binfiles arch=x86_64-linux size=1138 name ptex.x86_64-linuxmusl category Package -revision 58850 +revision 66084 shortdesc x86_64-linuxmusl files of ptex -containersize 1512588 -containerchecksum fc9ec36c772b94a09bec439bbfd2722664005cca3ce1f6fb7bc389485c6df5e10d7681b69d4810260833b4f16235c707eee17678b9b7ad28d948ef4e616f3d03 -binfiles arch=x86_64-linuxmusl size=1211 +containersize 1269628 +containerchecksum 10b83e93e32d83185d59f43c7863881d0cffabbf4be76d4da2cb5f5b743f49a7ed6ec4476f73b4fd585a51416b41d81333de043152f1eb5f493bb9ab9f796b57 +binfiles arch=x86_64-linuxmusl size=890 bin/x86_64-linuxmusl/eptex bin/x86_64-linuxmusl/makejvf bin/x86_64-linuxmusl/mendex @@ -256646,11 +261789,11 @@ binfiles arch=x86_64-linuxmusl size=1211 name ptex.x86_64-solaris category Package -revision 58850 +revision 66145 shortdesc x86_64-solaris files of ptex -containersize 1528460 -containerchecksum 01fd35f5cc7726f69bd1bb11dcfc37dc87719dff7dc55d2e3e4d2c1a4c7d2e6a35ca24f881b611e8467c7c48d28178c3045fff70ea3a383165dbe6604a8a3423 -binfiles arch=x86_64-solaris size=1203 +containersize 1260320 +containerchecksum 3eff2e5a8bb2f19f2d912ce2d9c331146ab6af3947b392d0782fab116b9ba91592c8683892d63796c8461b3515d27b1d4aa0fb994fcbcb7bb028f9b808bba294 +binfiles arch=x86_64-solaris size=882 bin/x86_64-solaris/eptex bin/x86_64-solaris/makejvf bin/x86_64-solaris/mendex @@ -256665,7 +261808,7 @@ binfiles arch=x86_64-solaris size=1203 name ptex2pdf category Package -revision 58632 +revision 65953 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 @@ -256674,10 +261817,10 @@ longdesc of the ptex-based programs (ptex, uptex, eptex, platex, longdesc uplatex) followed by dvipdfmx. depend ptex2pdf.ARCH postaction script file=tlpkg/tlpostcode/ptex2pdf-tlpost.pl -containersize 7844 -containerchecksum fce87deb2ee9477d81d9e7b69c2f934f9918c8a299d3e58ae8e9ba95121eaefedb935c1674ecb8bf1a081f6a21f7359e8cd158b0cfbc7faf234bd33925669939 +containersize 7848 +containerchecksum 6a4246d9fbc7cc6f37319d338df8320769cd4b1f0247186beea117b8bf228263f3a330146cf251a9e8e8c7232eb894ce6dad9eda840dd4a154f2502eae4c0f57 doccontainersize 8644 -doccontainerchecksum 83328ead3446c41e42687819d9dddd6f19ac0292fdc1ba99eaa9a75ad9e2fad8a05e2377c196d605e9360d383881194d03930d286c9c41706eea839d19d6ee66 +doccontainerchecksum 5635ead2dfa20ce9b616073272452de5c68c55104d88b2362b87cafe4762608d681b0c370169bff78466520d14f9055e509efdaa4ecdb083c3c3111ad829978c docfiles size=7 texmf-dist/doc/latex/ptex2pdf/COPYING texmf-dist/doc/latex/ptex2pdf/README.md details="Readme" @@ -256687,7 +261830,7 @@ runfiles size=7 catalogue-contact-bugs https://github.com/texjporg/ptex2pdf/issues catalogue-contact-home https://github.com/texjporg/ptex2pdf catalogue-contact-repository https://github.com/texjporg/ptex2pdf.git -catalogue-ctan /language/japanese/ptex2pdf +catalogue-ctan /macros/jptex/generic/ptex2pdf catalogue-license gpl2 catalogue-topics compilation japanese catalogue-version 20200520.0 @@ -256728,15 +261871,6 @@ containerchecksum fe9745e3d77302295c3ac22600e043bb7351db9318195b539e0bb93357b7e5 binfiles arch=armhf-linux size=1 bin/armhf-linux/ptex2pdf -name ptex2pdf.i386-cygwin -category Package -revision 29335 -shortdesc i386-cygwin files of ptex2pdf -containersize 340 -containerchecksum 7de67bd2b599ee3ebd56cc11efb8e29da863d2df771a1773e152eff2ba28967c9bbb09ae583483cc787643edecdb4e4d41bc2c24449b02a181c69202fe4d5545 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ptex2pdf - name ptex2pdf.i386-freebsd category Package revision 29335 @@ -256782,14 +261916,14 @@ containerchecksum b8b50292e4dc3ca7d5d3428706ba757937281320dc6e145ae89b0c0dd6693f binfiles arch=universal-darwin size=1 bin/universal-darwin/ptex2pdf -name ptex2pdf.win32 +name ptex2pdf.windows category Package -revision 29335 -shortdesc win32 files of ptex2pdf -containersize 684 -containerchecksum 8ed203a38c626e8e649458eb9df8af8386f17ff5beff484349ba1a8a2da0b97e50c0f489177eb94c05ee7206eb3d0c5459e88fe0acc5f1f3f54c75653e576a08 -binfiles arch=win32 size=1 - bin/win32/ptex2pdf.exe +revision 65891 +shortdesc windows files of ptex2pdf +containersize 2308 +containerchecksum 94847fbaac37e596b7a4aa24fc4623d6d58e2f28537b367d7acf261116daf4699e642ccb45a032d95899c65779ecbe76d765c9c208e809fabf1d6095e04b6f78 +binfiles arch=windows size=2 + bin/windows/ptex2pdf.exe name ptex2pdf.x86_64-cygwin category Package @@ -257090,15 +262224,6 @@ containerchecksum 23da41bf7f83f5387d2a11b2ac85ef2f9c51c601157a6d5fdb874f7d33d522 binfiles arch=armhf-linux size=1 bin/armhf-linux/purifyeps -name purifyeps.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of purifyeps -containersize 336 -containerchecksum fb24b387e844ba57123bf99d419dadedea2bd248d8c4e5531f4671b1f67ac1b04e26b3d69c9c8392ead5bd53263d5fc07cbc7dc9518247aa23acfbcbbfbe560f -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/purifyeps - name purifyeps.i386-freebsd category Package revision 16472 @@ -257144,14 +262269,14 @@ containerchecksum 9df760b6dd8f711ba8f2180c51c1f51430b26a5c081d30cd6333f74eec68bd binfiles arch=universal-darwin size=1 bin/universal-darwin/purifyeps -name purifyeps.win32 +name purifyeps.windows category Package -revision 15404 -shortdesc win32 files of purifyeps -containersize 684 -containerchecksum 3388691c325c0640d0e040211428c3dae7a66bd48897ed19be413dfabe20552b71bb082cdd26e1858924cb4ab15faef8469881430389d919306d0f51e0f4db1c -binfiles arch=win32 size=1 - bin/win32/purifyeps.exe +revision 65891 +shortdesc windows files of purifyeps +containersize 2304 +containerchecksum 377e59436038566a276a0a5b30740cd9cc77ddd585ac5dcfd23cb1679f7c1179b0efb67682e4c802d74f67593c055d431b8f8b33519b38adaf6e0be072fc0890 +binfiles arch=windows size=2 + bin/windows/purifyeps.exe name purifyeps.x86_64-cygwin category Package @@ -257228,7 +262353,7 @@ catalogue-version 1.0.1 name pwebmac category Package -revision 58478 +revision 63731 shortdesc Consolidated WEB macros for DVI and PDF output relocated 1 longdesc The original WEB system by Donald Knuth has the macros @@ -257250,46 +262375,46 @@ longdesc in the WEB sources. WEB programmers who want to use pwebmac.tex longdesc instead of the default webmac.tex in their programs have to longdesc change the first line in the TeX file created by weave. From longdesc there, all depends on the "TeX engine" you use. -containersize 7788 -containerchecksum 5b8b6825d84e6addce3491bdaaf30a6127d0becd26956066dbb2dc482d4942087b9423affe02654f28d5f7b1bd0e7743fd731ac2201b394630bf089deae8de59 -doccontainersize 9048 -doccontainerchecksum 6078a4a0263f3c342c9814f3ac8d5028f6d73871e89c64859e86a7c694a5a6392873e592f5daba7c6c2b89c3eaf6bdf1a745618999bf448edc8007d3d5a541a9 -docfiles size=10 +containersize 8644 +containerchecksum ab1351295df1586617b6efc850475c8bbde08ff935ef0a3f72f54402e3d16fc7aa01e80aab5a39330c4bfd9f6003f08a7e804c1caf6a21f4edd94cd1182e1d72 +doccontainersize 11340 +doccontainerchecksum 844a684b9e9d3eb148acce41d7385150f57ed22d802a04dcbad57f7d23cb8a08f6da556c9b3d8e1bff9525728249e64766c8e0af143ba05d59316da289676e3e +docfiles size=12 RELOC/doc/plain/pwebmac/README.md details="Readme" RELOC/doc/plain/pwebmac/Xerrorlog.tex RELOC/doc/plain/pwebmac/index.md RELOC/doc/plain/pwebmac/makeall RELOC/doc/plain/pwebmac/trapman.ch RELOC/doc/plain/pwebmac/webman.ch -runfiles size=5 +runfiles size=6 RELOC/tex/plain/pwebmac/pwebmac.tex catalogue-contact-repository https://github.com/ascherer/web catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /web/pwebmac catalogue-license pd catalogue-topics litprog -catalogue-version 4.6.2 +catalogue-version 4.8.1 name pxbase category Package -revision 44756 +revision 66187 shortdesc Tools for use with (u)pLaTeX relocated 1 longdesc The main purpose of this package is to provide auxiliary longdesc functions which are utilized by other packages created by the longdesc same author. It also provides a few user commands to assist in longdesc creating Japanese documents using (u)pLaTeX. -containersize 11640 -containerchecksum e567378515039b55eab0a12ca645ba5ff17c2dbaf56309c3273beb0d05c7e6e2dcf3d7d22091907df5636451df8e91d09673607918dd9ac091908cb6ef1e4de1 -doccontainersize 160380 -doccontainerchecksum d6d87123dce0a2afe3380cf32fffc8954e30d22e9822d0ff89500bea6a455c70a6699576265cebad29ba33c0fa5e7b63a40f26f7579d1fe9dc0cbcb528c45d00 -docfiles size=47 +containersize 12464 +containerchecksum 34fef6f30f53ea2c67394f931168025f7dae7f6e12904b862ef821040a15eb3eac0949ebfab7b1b3dfae8e9944fdb85b99294fc6214df0ce8c1b82eac2702ed2 +doccontainersize 167592 +doccontainerchecksum 4e1fd7e88d8e17dbc4f65a7dab0f3c4bbcccf3b24b55085fafc9f393cd99a653ec2c4fa41ca85760436a1c7c6121848c57912ff649c302db6966a5c907dc0209 +docfiles size=50 RELOC/doc/platex/pxbase/LICENSE RELOC/doc/platex/pxbase/README-ja.md details="Readme (Japanese)" language="ja" RELOC/doc/platex/pxbase/README.md details="Readme" RELOC/doc/platex/pxbase/pxbabel.pdf RELOC/doc/platex/pxbase/pxbabel.tex -runfiles size=16 +runfiles size=18 RELOC/tex/platex/pxbase/pxbabel.sty RELOC/tex/platex/pxbase/pxbase.def RELOC/tex/platex/pxbase/pxbase.sty @@ -257299,14 +262424,14 @@ runfiles size=16 RELOC/tex/platex/pxbase/pxjsfenc.def RELOC/tex/platex/pxbase/upkcat.sty catalogue-contact-home https://github.com/zr-tex8r/PXbase -catalogue-ctan /language/japanese/pxbase +catalogue-ctan /macros/jptex/latex/pxbase catalogue-license mit catalogue-topics japanese -catalogue-version 1.1b +catalogue-version 1.4 name pxchfon category Package -revision 56537 +revision 66064 shortdesc Japanese font setup for pLaTeX and upLaTeX relocated 1 longdesc This package enables users to declare in their document which @@ -257319,11 +262444,11 @@ longdesc for each new font. This package also supports setup for the longdesc fonts used in the japanese-otf package. System requirements: longdesc TeX format: LaTeX. TeX engine: pTeX or upTeX. DVIware: longdesc dvipdfmx. Prerequisite packages: atbegshi. -containersize 19104 -containerchecksum 0883ab31076052a9f970e8a2704d6fe69e4cc4d98e5e58528b48393c4878177cc206baa454539a6f228252c82199a409333ba9dc250b6c79d429e00f8da26cc1 -doccontainersize 312660 -doccontainerchecksum 4bfdcbf0eec187e6726978dfc55dab1217f00a06063d43fdcd6ba640739bedc72fcaa9f5d51f9471173f6d55085076155e7dd2f549739fd15cccf74bb03206f8 -docfiles size=101 +containersize 19952 +containerchecksum cdf96c0f64e85f42b84e2331042eed5a4dc97b956901e6e983b707ca50adb97bd702bc78e6a2475e52527697fa5b3baf4d1d1184c0e8978831dd6e5bdd32e8b3 +doccontainersize 323720 +doccontainerchecksum 01304d0abc8922b13aa1c236e1266d002e144bd5fa48f4d473d53dc1610a83e69d0f91139322399588df6e71cfece4225a2792ab23db8e04c135ff409de3ea5a +docfiles size=105 RELOC/doc/platex/pxchfon/LICENSE RELOC/doc/platex/pxchfon/README-ja.md details="Readme" language="ja" RELOC/doc/platex/pxchfon/README.md details="Readme" @@ -257335,7 +262460,7 @@ docfiles size=101 RELOC/doc/platex/pxchfon/sample-2004jis.tex RELOC/doc/platex/pxchfon/sample-pxchfon.pdf RELOC/doc/platex/pxchfon/sample-pxchfon.tex -runfiles size=106 +runfiles size=108 RELOC/fonts/sfd/pxchfon/PXcjk0.sfd RELOC/fonts/tfm/public/pxchfon/cfjam-r-l0j.tfm RELOC/fonts/tfm/public/pxchfon/cfjam-r-l5j.tfm @@ -257425,14 +262550,14 @@ runfiles size=106 RELOC/tex/platex/pxchfon/pxchfon0.def RELOC/tex/platex/pxchfon/pxjafont.sty catalogue-contact-repository https://github.com/zr-tex8r/PXchfon -catalogue-ctan /language/japanese/pxchfon +catalogue-ctan /macros/jptex/latex/pxchfon catalogue-license mit catalogue-topics japanese font-supp -catalogue-version 1.7e +catalogue-version 1.9a name pxcjkcat category Package -revision 47266 +revision 63967 shortdesc LaTeX interface for the CJK category codes of upTeX relocated 1 longdesc The package provides management of the CJK category code @@ -257440,22 +262565,22 @@ longdesc ('kcatcode'> table of the upTeX extended TeX engine. Package longdesc options are available for tailored use in the cases of longdesc documents that are principally written in Japanese, or longdesc principally written in English or other Western languages. -containersize 7152 -containerchecksum 59923115da33e18e2b29a10f664063755b42937ce601ed46103ec8edf16944056180a1aacdb296aceb5206d3dd453c0eec6f84f5b689ad68736c88479f928214 -doccontainersize 195556 -doccontainerchecksum 3c822359a68800a29fbc7ceda3293b6be902d9bc61f277003e6e20404c32e9bb6b34638a4bc11aeb943c4bdf6e361386972251b9b015fbe68ead824e5fdc67d6 -docfiles size=59 +containersize 10196 +containerchecksum 81a71b6cfdd280f65f392ad602291d468a8ffeda440609f513166b88bc1af298d6be546e953e4f3a9abac3f0bae235c12b124e11258c53c1abf778f3f78f3559 +doccontainersize 211444 +doccontainerchecksum 69fe6721aa9aa17aa1aac44680e7a520b7fd002c8fd06d2ccdde0e4d20a17875b9b585394159528fb9bf2c6e817c8e3762efce21a938217a199e49094592ec50 +docfiles size=65 RELOC/doc/latex/pxcjkcat/LICENSE RELOC/doc/latex/pxcjkcat/README-ja.md details="Readme (Japanese)" language="ja" RELOC/doc/latex/pxcjkcat/README.md details="Readme (English)" language="en" - RELOC/doc/latex/pxcjkcat/pxcjkcat.pdf + RELOC/doc/latex/pxcjkcat/pxcjkcat.pdf details="Package documentation" language="ja" RELOC/doc/latex/pxcjkcat/pxcjkcat.tex -runfiles size=7 +runfiles size=10 RELOC/tex/latex/pxcjkcat/pxcjkcat.sty -catalogue-ctan /macros/latex/contrib/pxcjkcat +catalogue-ctan /macros/jptex/latex/pxcjkcat catalogue-license mit catalogue-topics japanese multilingual -catalogue-version 1.1 +catalogue-version 1.4 name pxfonts category Package @@ -257692,35 +262817,36 @@ catalogue-version 1.0 name pxjahyper category Package -revision 57950 +revision 66272 shortdesc Hyperref support for pLaTeX relocated 1 longdesc This package adjusts the behavior of hyperref on (u)pLaTeX so longdesc that authors can properly create PDF documents that contain longdesc document information in Japanese. -containersize 14948 -containerchecksum 42b0383d98741bf3cbce1267b4ab4e32d48039b7497e87587f3adefc2da5e7316587e5b138758f0a6816f49588aa774bc4754f9509f7211d7ee3497c8f178324 -doccontainersize 121608 -doccontainerchecksum 00d954e31c1ad90f2953f9565d24112a8b108ed1d2ed43304813b36c6c3c0c05c10d44d02dd514f4cac055ae45889db8ae91187ace305870eee8266aa48c28d1 -docfiles size=36 +containersize 19376 +containerchecksum f6e62e0dd4a5da2e9c702fc09c311a0661d58668c4999eaf5209792d3c88001b9e7d80cc1a9c259ec5e2668a7139a4fe90dac2b23ea756f238a387a6c7e66772 +doccontainersize 163516 +doccontainerchecksum f08af33a25f837e86dcd6dcd0f96d9f7bb2570eeae9011201468fdc9bac50bb8ea72d4f069753bb0c93aa9d61952cebfbbe936f65220167e4648cb206b901aae +docfiles size=47 RELOC/doc/platex/pxjahyper/LICENSE RELOC/doc/platex/pxjahyper/README-ja.md details="Readme (Japanese)" language="ja" RELOC/doc/platex/pxjahyper/README.md details="Readme" RELOC/doc/platex/pxjahyper/pxjahyper.pdf details="Package documentation (Japanese)" language="ja" RELOC/doc/platex/pxjahyper/pxjahyper.tex -runfiles size=17 +runfiles size=23 RELOC/tex/platex/pxjahyper/pxjahyper-ajm.def RELOC/tex/platex/pxjahyper/pxjahyper-enc.sty + RELOC/tex/platex/pxjahyper/pxjahyper-uni.def RELOC/tex/platex/pxjahyper/pxjahyper.sty catalogue-contact-repository https://github.com/zr-tex8r/PXjahyper -catalogue-ctan /language/japanese/pxjahyper +catalogue-ctan /macros/jptex/latex/pxjahyper catalogue-license mit catalogue-topics japanese hyper -catalogue-version 0.7b +catalogue-version 1.3 name pxjodel category Package -revision 55006 +revision 64072 shortdesc Help change metrics of fonts from japanese-otf relocated 1 longdesc This package changes the setup of the japanese-otf package so @@ -257737,9 +262863,9 @@ longdesc using japanese-otf. So pxjodel is really about japanese-otf's longdesc "deluxe" option, hence the name. It is not related to yodel longdesc singing, although some sense of word-play is intended. containersize 12536 -containerchecksum dfd7032b250d85c37d983e4b0e8d480bf3a36822a7c9993e423ba2ce7320c1e1305106aa6abc5ad099a667c4821326792b4344d17e6a34f33e02b4612451f9e1 +containerchecksum a44871d5c059df8962a135b6f40c3ab4d5d751bcefa5565e428d4efd8f242f34bdbb142a065e011065a8791a141dcef022d5e6ddd6d22cf78e369413b62f046c doccontainersize 110152 -doccontainerchecksum e7f8c3ae9e32ac296116743feaf6cca0be3b376b3c34adaa2a90e41f0c4aa329f1330e257e99fbd43025f46e340be48c1d7cb2f1131c7a722a4f7913ddea1a81 +doccontainerchecksum 3a85af8fe9f557ae10468e5aab8c6a19c45cc1f99dbae5a3e66530484074ea91f152177ae3ba54cbff8869178055e53b7282674eb748d82d789e767f16e075e3 docfiles size=31 RELOC/doc/latex/pxjodel/LICENSE RELOC/doc/latex/pxjodel/README.md details="Readme" @@ -257804,7 +262930,7 @@ runfiles size=422 RELOC/fonts/vf/public/pxjodel/zu-jodhminr-hq.vf RELOC/tex/latex/pxjodel/pxjodel.sty catalogue-contact-repository https://github.com/zr-tex8r/PXjodel -catalogue-ctan /language/japanese/pxjodel +catalogue-ctan /macros/jptex/latex/pxjodel catalogue-license mit catalogue-topics font-mgmt japanese font-sel font-use font-cjk catalogue-version 0.3 @@ -257833,23 +262959,24 @@ catalogue-version 0.2 name pxpic category Package -revision 57445 +revision 65803 shortdesc Draw pixel pictures relocated 1 longdesc With pxpic you draw pictures pixel by pixel. It was inspired by longdesc a lovely post by Paulo Cereda, among other things (most notably longdesc a beautiful duck) showcasing the use of characters from the longdesc Mario video games by Nintendo in LaTeX. -containersize 2588 -containerchecksum f187fe6370e817ba7d3b6d7c0899bceaf898685d2ed2e1707ee18e0623d95489dbcfeacd1482ec540307ce5095f903e1499b4c01fb1634071f3edac626551c1e -doccontainersize 304304 -doccontainerchecksum 1ca68d3e7752fb37482c32cebaae0753c31284e593d3e161a46bab54d98ae564857ea80553e3937e3b7710036e722acc3eddc23fda4941079e050f20bf0ff5e1 -docfiles size=77 +containersize 3196 +containerchecksum 549dcda0e4667fba7d7ab6d34a46fc890f1c9c7ec168b015e8ce07d2cd6531880433dd657dd46ce63fea534d87f9597be365813446d9ea524fcfff61f139d6a0 +doccontainersize 358424 +doccontainerchecksum 4bb203443bfd227a7cb1d2aa2ae43dd69e3c52c7a81bb9a94fdb6ed41cc93d95016c33801bba28324a02b8533395f0affd90c9dbf07054def888c26a3aaf3425 +docfiles size=92 RELOC/doc/latex/pxpic/README.md details="Readme" + RELOC/doc/latex/pxpic/pxpic-parrot.csv RELOC/doc/latex/pxpic/pxpic.pdf details="Package documentation" -srccontainersize 11880 -srccontainerchecksum a9fbf50b12145c2169de1733862dbbec0870c0863caf3544117b8c87bb0dbe4d637ad8b8507102ce83b1f4fe2e6c03a704d289c8c7e15e74b8859b6988240a3f -srcfiles size=12 +srccontainersize 15020 +srccontainerchecksum 7a68bfc2fb2e2dff88d0515c050c32ec4fa13745efd9bad20a216a9425bda688a31a881b955e2cf94eac1fadcc54dd6df0d7968c90acdebad4101a871d3cf40b +srcfiles size=14 RELOC/source/latex/pxpic/pxpic.dtx runfiles size=3 RELOC/tex/latex/pxpic/pxpic.sty @@ -257857,11 +262984,11 @@ catalogue-contact-repository https://github.com/Skillmon/ltx_pxpic catalogue-ctan /graphics/pxpic catalogue-license lppl1.3c catalogue-topics graphics graphics-in-tex -catalogue-version 1.2 +catalogue-version 1.4 name pxrubrica category Package -revision 58168 +revision 66298 shortdesc Ruby annotations according to JIS X 4051 relocated 1 longdesc This package provides a function to add ruby annotations @@ -257871,14 +262998,14 @@ longdesc for Japanese Text Layout" ([JLREQ]) and the JIS specification longdesc JIS X 4051. Starting with version 1.3, this package also longdesc provides a function to add kenten (emphasis marks) to Japanese longdesc text. -containersize 13660 -containerchecksum bde5699cc92196e844b052c9116bd081960a34b239bd9fe5271f0866be3c4edf0a8bf8932a99c440dc58db7624c58fc3af4e2d2c0f76230f1248da21ce4410a9 -doccontainersize 723764 -doccontainerchecksum df0b339e6ea2ac03d47161fe7eb278df31b391fb129f2f763f87e9e27a6b78f8da8172baab154e9b9f3b62e7fed88b400654a7bc47aaf0222a47f4746a48f5a8 +containersize 13672 +containerchecksum 0ffdde0f17b1bcb90a858d6dd6ca204eea552b49e91cdc797e6364e8b59cca4808a293154426f9c3f52dd2bdc27e93c091bbddbe6c15862fec144b9e4cd6ea9e +doccontainersize 725496 +doccontainerchecksum e2a217a5029857d66882fb5a626e7846a2cd282b9cb2f5a65e6a61919bc7ce23a16294bfc27e9b189a8aee6bcc95cab24a94a6dca221f63d650f38c5e5fce28b docfiles size=204 RELOC/doc/platex/pxrubrica/LICENSE RELOC/doc/platex/pxrubrica/README-ja.md details="Readme" language="ja" - RELOC/doc/platex/pxrubrica/README.md details="Readme" language="en" + RELOC/doc/platex/pxrubrica/README.md details="Readme" RELOC/doc/platex/pxrubrica/pxrubrica-en.pdf details="Package documentation (English)" RELOC/doc/platex/pxrubrica/pxrubrica-en.tex RELOC/doc/platex/pxrubrica/pxrubrica.pdf details="Package documentation (Japanese)" language="ja" @@ -257890,59 +263017,57 @@ docfiles size=204 RELOC/doc/platex/pxrubrica/sample/test-sf.tex RELOC/doc/platex/pxrubrica/sample/test-toc.pdf RELOC/doc/platex/pxrubrica/sample/test-toc.tex -srccontainersize 38388 -srccontainerchecksum a51ae682aa72fc60d80c4f4ae9489d2cea5957dcb61d5ed09f505cd1023d9d40b89dc594cef7756c24b6a2aa9e11b5c3f53af178d0e885fa94344a8ace00d8f9 +srccontainersize 38436 +srccontainerchecksum f513b8bcc4e89323b199fd4c793a9405a94206e9498f3c298fd81a7fb07cc46a6e624e71d30b8a7951bb7b081be3ae8c621b992a0c290e0334c834d83244fed7 srcfiles size=53 RELOC/source/platex/pxrubrica/pxrubrica.dtx RELOC/source/platex/pxrubrica/pxrubrica.ins -runfiles size=20 +runfiles size=21 RELOC/tex/platex/pxrubrica/pxrubrica.sty catalogue-contact-home https://github.com/zr-tex8r/PXrubrica -catalogue-ctan /language/japanese/pxrubrica +catalogue-ctan /macros/jptex/latex/pxrubrica catalogue-license mit catalogue-topics japanese std-conform -catalogue-version 1.3d +catalogue-version 1.3e name pxtatescale category Package -revision 43009 +revision 63967 shortdesc Patch to graphics driver for scaling in vertical direction of pTeX relocated 1 longdesc Patch for graphics driver 'dvipdfmx' to support correct scaling longdesc in vertical direction of Japanese pTeX/upTeX. -containersize 1020 -containerchecksum 922aabc7fdd35d1b1a6199be0986ad6d42ffc0db138066a7b1607ec521cf22571abc752ce225c9d99e2e9f8685149a5b91c35d6914fbccdb293a2476797dbdc9 +containersize 996 +containerchecksum 5198b276ba052495662e7adfba51b039bfc355edc01c206b6b5745338dc43e977ce7a48cd11fab3a71f6e8683f554920bfa41a427d587742d2f64f18e058c5b5 doccontainersize 1620 -doccontainerchecksum be6998e53e5d8d92138e440de1c75e83671ea88316fb9b4dde0188dab198dc65301b4cd4f53368c277b782edf82f17ef89903eddfa6656669a5329a029907249 +doccontainerchecksum e3e3cf332727476e80c65118da7e7ad55f9f1c1f6658d2919aa37622bdbbc082858eef4ab718e0632752032e0f4e315c28ab8a218902509b3dbcc32377a02994 docfiles size=2 RELOC/doc/latex/pxtatescale/LICENSE RELOC/doc/latex/pxtatescale/README details="Readme" runfiles size=1 RELOC/tex/latex/pxtatescale/pxtatescale.sty -catalogue-ctan /macros/latex/contrib/pxtatescale +catalogue-ctan /macros/jptex/latex/pxtatescale catalogue-license mit catalogue-topics graphics-drv japanese catalogue-version 0.4 name pxtxalfa category Package -revision 54080 +revision 60847 shortdesc Virtual maths alphabets based on pxfonts and txfonts relocated 1 longdesc The package provides virtual math alphabets based on pxfonts longdesc and txfonts, with LaTeX support files and adjusted metrics. The longdesc mathalpha package offers support for this collection. -execute addMap pxtx.map -containersize 9024 -containerchecksum 6d03f8d9be9d07643de2ef1f35fe30981861d6c230793912b3d093334260e53b3bae9ff178e97442425e527d1dbd0eac366fad16b0276d44378511ddd97eff52 -doccontainersize 36132 -doccontainerchecksum 0ed329847a91c8164883b873fc7a98cdb1571cc733d9d71ddd9bbe52b591a71b03cf0d6bfe83d63e41f6524e01f38a91c67d370c661e02816622dd56eacfd462 -docfiles size=13 +containersize 8928 +containerchecksum 33dfd01f714a662f351fbd3a0e0f36c413360adac666ca5665c628bf5d3acf732cb61e18190d340d144e146fa04116373259403b9eca314f48dba5ea4e6aa032 +doccontainersize 209364 +doccontainerchecksum f547cbd3cc4a0e09034e98a27bfedf41e2e2ab9b6561e441d7656b99b6b883bb51f9fa24d731d403133358917428c53489eacf8c7ede08a963ff06c3d0404c1a +docfiles size=54 RELOC/doc/fonts/pxtxalfa/README details="Readme" - RELOC/doc/fonts/pxtxalfa/pxtxalfa.pdf details="Package documentation" - RELOC/doc/fonts/pxtxalfa/pxtxalfa.tex -runfiles size=28 - RELOC/fonts/map/dvips/pxtxalfa/pxtx.map + RELOC/doc/fonts/pxtxalfa/pxtxalfa-doc.pdf details="Package documentation" + RELOC/doc/fonts/pxtxalfa/pxtxalfa-doc.tex +runfiles size=29 RELOC/fonts/tfm/public/pxtxalfa/pxb-ds.tfm RELOC/fonts/tfm/public/pxtxalfa/pxr-ds.tfm RELOC/fonts/tfm/public/pxtxalfa/rtxmia.tfm @@ -257962,22 +263087,24 @@ runfiles size=28 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/ot1tx-ds.fd + RELOC/tex/latex/pxtxalfa/ot1tx-frak.fd 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-ds.sty RELOC/tex/latex/pxtxalfa/tx-of.sty RELOC/tex/latex/pxtxalfa/upx-ds.fd RELOC/tex/latex/pxtxalfa/utx-cal.fd - RELOC/tex/latex/pxtxalfa/utx-frak.fd RELOC/tex/latex/pxtxalfa/utx-of.fd catalogue-ctan /fonts/pxtxalfa catalogue-license lppl catalogue-topics font font-maths font-virtual -catalogue-version 1 +catalogue-version 2 name pxufont category Package -revision 53733 +revision 64072 shortdesc Emulate non-Unicode Japanese fonts using Unicode fonts relocated 1 longdesc The set of the Japanese logical fonts (JFMs) that are used as @@ -257994,9 +263121,9 @@ longdesc (such as Source Han Serif) that have a glyph encoding different longdesc from Adobe-Japan1, because mapping setups from non-Unicode JFMs longdesc to such physical fonts are difficult to prepare. containersize 126608 -containerchecksum bbbd7c0724e4b9a77ef731a4be2d014086aca61c78a439912ea20a630785fd8695ab9f287e07d0899ead8fe90614a806b0928a8cccfbd1cfb71c94b9b3c1266b -doccontainersize 2240 -doccontainerchecksum 850e3e336e1bc3f60a89325c66de38ea1171a2ba2f4444382dae12373c509579a5c686887cbab42b147b69a206b4ceb43af83f8d47446c4bca47cade5f9bfaf2 +containerchecksum 3c302158a0d2dd59d8268284dd3df3352ec2fd4bf102d7cad59276dd991fcf190ff7d54646185758ba19f2f38f61d23ab4c44e329c6f4b56651dd3929bd99008 +doccontainersize 2244 +doccontainerchecksum 63f824dbc203379179c57b948c7ff948bc0abb29f0f5c1c8e7d0e575302316b668a72cc9ca848e29687833a9c8b3510eaccf47bf27a3136bd978c8a94928643e docfiles size=2 RELOC/doc/latex/pxufont/LICENSE RELOC/doc/latex/pxufont/README.md details="Readme" @@ -258496,14 +263623,14 @@ runfiles size=14899 RELOC/tex/latex/pxufont/pxufont-ruby.sty RELOC/tex/latex/pxufont/pxufont.sty catalogue-contact-repository https://github.com/zr-tex8r/PXufont -catalogue-ctan /language/japanese/pxufont +catalogue-ctan /macros/jptex/latex/pxufont catalogue-license mit catalogue-topics japanese font-use font-cjk catalogue-version 0.6 name pygmentex category Package -revision 57190 +revision 64131 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. @@ -258511,11 +263638,11 @@ longdesc Pygments is a generic syntax highlighter for general use in all longdesc kinds of software such as forum systems, wikis or other longdesc applications that need to prettify source code. depend pygmentex.ARCH -containersize 7420 -containerchecksum 6dc3ca792953c15b2777457b62a08c8d3b0275df8f8da9442590f61b64cc0640ddeebd7190375dfdb8d4bbc8582ed6da5ab7035bb0ff6617a27c2ddc0824d523 -doccontainersize 594336 -doccontainerchecksum a4ef61d97ea11b6595ab94b68697091b88d4b1b83a150f7faf30863ef91e7d1681662410d7c45bad9426644b554fa078979d0a3b3c8baa11a6714d49b811f5d1 -docfiles size=173 +containersize 7560 +containerchecksum 097a1eec7e6a969b0c2aef3915d8231d7e6b6c234abe79caa7f7325df22f4976d1bcf2b111c87c9b457250a2c89b5b0a29afd7deb81ee309753901768fb3fd08 +doccontainersize 715568 +doccontainerchecksum 050bf2576a7305eda104ac928cb332e6fd1437e1852726442694fb7ec88ebe7fb9e7e54987a13b76aa103afcc446019a57b8e011f4e638469ea34a9788a8e7cf +docfiles size=206 texmf-dist/doc/latex/pygmentex/Factorial.java texmf-dist/doc/latex/pygmentex/README details="Readme" texmf-dist/doc/latex/pygmentex/blueshade.png @@ -258527,13 +263654,15 @@ docfiles size=173 texmf-dist/doc/latex/pygmentex/pygmentex_demo.pdf details="Package documentation" texmf-dist/doc/latex/pygmentex/pygmentex_demo.py texmf-dist/doc/latex/pygmentex/pygmentex_demo.tex + texmf-dist/doc/latex/pygmentex/pygmentex_demo_2.pdf details="Small example of use" + texmf-dist/doc/latex/pygmentex/pygmentex_demo_2.tex runfiles size=7 texmf-dist/scripts/pygmentex/pygmentex.py texmf-dist/tex/latex/pygmentex/pygmentex.sty catalogue-ctan /macros/latex/contrib/pygmentex catalogue-license lppl1.3 catalogue-topics listing synt-hlt -catalogue-version 0.10 +catalogue-version 0.11 name pygmentex.aarch64-linux category Package @@ -258571,15 +263700,6 @@ containerchecksum 87a59042dc3ec844d6d2724e0a5eb3f455d9275bd6fc1fd54903eb8e6cbe81 binfiles arch=armhf-linux size=1 bin/armhf-linux/pygmentex -name pygmentex.i386-cygwin -category Package -revision 34996 -shortdesc i386-cygwin files of pygmentex -containersize 340 -containerchecksum ed0d103d6e02118f8229e100c76ea71aa1b50a416ba6239cda4123aaef853aadd1f31d08f229ba5940ba2f4260486bbdcb0856c22889c5ed7da15eb3e6709144 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/pygmentex - name pygmentex.i386-freebsd category Package revision 34996 @@ -258625,14 +263745,14 @@ containerchecksum 645ffa63f0544d1dc8370f156846b749f7a3708888f6a3e4bf51a1b6688943 binfiles arch=universal-darwin size=1 bin/universal-darwin/pygmentex -name pygmentex.win32 +name pygmentex.windows category Package -revision 34996 -shortdesc win32 files of pygmentex -containersize 684 -containerchecksum 0b04226e50c632df65bf50c6222f823563f2eeca57372dc625e4e91f625d296279746f75f234f47299c283e6c65d85c4fcbd7828259667dd693e46e1b63c9809 -binfiles arch=win32 size=1 - bin/win32/pygmentex.exe +revision 65891 +shortdesc windows files of pygmentex +containersize 2308 +containerchecksum b7aef6b825bbff949bd801c95797351c7b422f74d68738843007b5e5b9190d3ef4c3f2b8356e08031e346b22357c41ad512128e93c316fd9932bcb9b16e1b97d +binfiles arch=windows size=2 + bin/windows/pygmentex.exe name pygmentex.x86_64-cygwin category Package @@ -258679,17 +263799,65 @@ containerchecksum eaf2d9b1fc456c04869f7788570042006373f53ba46a4e07ea4e2b139280c8 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/pygmentex +name pyluatex +category Package +revision 65855 +shortdesc Execute Python code on the fly in your LaTeX documents +relocated 1 +longdesc PyLuaTeX allows you to execute Python code and to include the +longdesc resulting output in your LaTeX documents in a single +longdesc compilation run. LaTeX documents must be compiled with LuaLaTeX +longdesc for this to work. PyLuaTeX runs a Python InteractiveInterpreter +longdesc (actually several if you use different sessions) in the +longdesc background for on-the-fly code execution. Python code from your +longdesc LaTeX file is sent to the background interpreter through a TCP +longdesc socket. This approach allows your Python code to be executed +longdesc and the output to be integrated in your LaTeX file in a single +longdesc compilation run. No additional processing steps are needed. No +longdesc intermediate files have to be written. No placeholders have to +longdesc be inserted. +containersize 5360 +containerchecksum be9b33158b87cbd95d2fd4eb15bf834f1c828bd58e4f6b8ae58f64de1495b83ae79315311789aaae3266b9f171c4d5ba156adca28735eb9f628b86f45f2f330e +doccontainersize 101536 +doccontainerchecksum 86623a834885fa548a6aa84f6e471134c4200ed4cb2b915f6aa7540b38bd91b2daef85c9b8a60a92b63e23b20ea8ed47cdf0cfe3b0e7f30c369024bffe59d959 +docfiles size=48 + RELOC/doc/lualatex/pyluatex/README.md details="Readme" + RELOC/doc/lualatex/pyluatex/example/beamer.tex + RELOC/doc/lualatex/pyluatex/example/data-visualization.tex + RELOC/doc/lualatex/pyluatex/example/matplotlib-external.tex + RELOC/doc/lualatex/pyluatex/example/matplotlib-pgf.tex + RELOC/doc/lualatex/pyluatex/example/population.csv + RELOC/doc/lualatex/pyluatex/example/readme-custom-env.tex + RELOC/doc/lualatex/pyluatex/example/readme-example.tex + RELOC/doc/lualatex/pyluatex/example/repl.tex + RELOC/doc/lualatex/pyluatex/example/sessions.tex + RELOC/doc/lualatex/pyluatex/example/typesetting-example.tex + RELOC/doc/lualatex/pyluatex/example/typesetting-listings.tex + RELOC/doc/lualatex/pyluatex/example/typesetting-minted.tex + RELOC/doc/lualatex/pyluatex/pyluatex.pdf details="Package documentation" + RELOC/doc/lualatex/pyluatex/pyluatex.tex +runfiles size=5 + RELOC/tex/lualatex/pyluatex/pyluatex-interpreter.py + RELOC/tex/lualatex/pyluatex/pyluatex.lua + RELOC/tex/lualatex/pyluatex/pyluatex.sty +catalogue-contact-bugs https://github.com/tndrle/PyLuaTeX/issues +catalogue-contact-repository https://github.com/tndrle/PyLuaTeX +catalogue-ctan /macros/luatex/latex/pyluatex +catalogue-license mit lppl1.3c +catalogue-topics luatex callback expl3 +catalogue-version 0.6.1 + name python category Package -revision 27064 +revision 60162 shortdesc Embed Python code in LaTeX relocated 1 longdesc The package enables you to embed Python code in LaTeX, and longdesc insert the script's output in the document. -containersize 1940 -containerchecksum 85c300c969fccdff036e2da59ada1040bee6f25c6a8ec3c173ce44084fb9fd812aab79b8fdc0b9fbe2ffbf9485abca57fc5d82caf4ac5a3ff922501b46dec164 +containersize 2012 +containerchecksum 3b2b55d1c8da0c253711ea5d6434ffe3537baf273d8a6798a5455b3170601aec0dfbb418969bd9d79f47ec502a73fa5bcbb3b74bbdd77d242859c0f7496bf8d0 doccontainersize 864 -doccontainerchecksum 8f88b9bc84a71c430486e2e3d2b33a4436cb1ac1257b9ea5629708438b8ac7488839d52fc138e4959575fe13388aa475770a62ca070b4746de8b78c53d5119a1 +doccontainerchecksum c6785b22dc6820a84a9edc573e308a79991b4a67ff1c5b17553c05a75155ea9b981380098335162a6a7c3c25d2dc20665e35b9cf74317b5c865bc6d4fbed7a8b docfiles size=1 RELOC/doc/latex/python/README details="Readme" runfiles size=1 @@ -258697,7 +263865,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/python catalogue-license gpl catalogue-topics callback -catalogue-version 0.21 +catalogue-version 0.22 name pythonhighlight category Package @@ -258719,31 +263887,74 @@ catalogue-ctan /macros/latex/contrib/pythonhighlight catalogue-license other-free catalogue-topics listing +name pythonimmediate +category Package +revision 66461 +shortdesc Library to run Python code +relocated 1 +longdesc Just like PerlTeX or PyLuaTeX (and unlike PythonTeX or +longdesc lt3luabridge), this only requires a single run, and variables +longdesc are persistent throughout the run. Unlike PerlTeX or PyLuaTeX, +longdesc there is no restriction on compiler or script required to run +longdesc the code. There are also debugging functionalities: TeX errors +longdesc result in Python traceback, and Python errors result in TeX +longdesc traceback. Errors in code executed with the pycode environment +longdesc give the correct traceback point to the Python line of code in +longdesc the TeX file. For advanced users, this package allows the user +longdesc to manipulate the TeX state directly from within Python, so you +longdesc don't need to write a single line of TeX code. CAUTION: In +longdesc addition to this LaTeX package you need the Python +longdesc pythonimmediate-tex package, which can be obtained from +longdesc https://pypi.org/project/pythonimmediate-tex/. +depend currfile +depend l3packages +depend precattl +depend saveenv +containersize 3672 +containerchecksum a6497acbf8b291e3f9c19a788d853725c9bb0283f4d8da67ccbd3b61302abf8a0d46f16eab2711e3767cbcdb79659d8ee35639d206ede7b578d2dbfb33a78ca0 +doccontainersize 438840 +doccontainerchecksum f12e6449f307c0229907085ba6d164a4f2f9ed861a9485e5af5d3a76a6dfcf08e7a38c56452e0ed0fc490d0a90bad151b3ac7e8fecbeb716f683e928a0cbb8ea +docfiles size=113 + RELOC/doc/latex/pythonimmediate/DEPENDS.txt + RELOC/doc/latex/pythonimmediate/README details="Readme" + RELOC/doc/latex/pythonimmediate/pythonimmediate.pdf details="Package documentation" + RELOC/doc/latex/pythonimmediate/pythonimmediate.tex +runfiles size=3 + RELOC/tex/latex/pythonimmediate/pythonimmediate.sty + RELOC/tex/latex/pythonimmediate/pythonimmediate_helper.lua +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/pythonimmediate +catalogue-license lppl1.3c +catalogue-topics callback expl3 +catalogue-version 0.4.0 + name pythontex category Package -revision 52174 +revision 59514 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. +longdesc original document. There is also support for Bash, JavaScript, +longdesc Julia, Octave, Perl, R, Raku (Perl 6), Ruby, Rust, and +longdesc SageMath. Code is only executed when it has been modified, or +longdesc when it meets user-specified criteria. Code may be divided into +longdesc user-defined sessions, which automatically run in parallel. +longdesc Errors and warnings are synchronized with the LaTeX document, +longdesc so that they refer to the document's line numbers. External +longdesc dependencies can be tracked, so that code is re-executed when +longdesc the data it depends on is modified. PythonTeX also provides +longdesc syntax highlighting for code in LaTeX documents via the +longdesc Pygments syntax highlighter. The package provides a depythontex +longdesc utility. This creates a copy of the document in which all +longdesc Python code has been replaced by its output. This is useful for +longdesc journal submissions, sharing documents, and conversion to other +longdesc formats. depend pythontex.ARCH -containersize 66856 -containerchecksum 27a3196f89ae04eb992817800f30dd26b275b65a2f9272907a2cc6a66708ee00290c3e0083bb537f0ee0152c93aee50728ea1ddab672aa08dfcef5f089bcf2b9 -doccontainersize 1550244 -doccontainerchecksum cdc5046cef480514417874ef5343a39f9e1c377d0e1f00e9df4ca8746670f2b222636afd58a06ef63086c3479b4d516f9d14074aabc1fa7876b2fb4f6599bef4 -docfiles size=406 +containersize 66988 +containerchecksum 2e67beb9974eb9a567726d8a68f7d565aeca97d20484ef6e36312100411eef9d9de937297399a98f367a756f6679314cc1a25201ff11936b8a61f8f1f148830b +doccontainersize 1553140 +doccontainerchecksum 3ec2fe0f095384734575c2c9fd1bc9d485b628485c8ee75cd8fb9ebd6d1f56edbec6f378c7c9e1d5ba9c10c4bbcc3934ddb957dc47a258ac81ca89b5ce3a2e92 +docfiles size=407 texmf-dist/doc/latex/pythontex/NEWS.rst texmf-dist/doc/latex/pythontex/README details="Readme" texmf-dist/doc/latex/pythontex/pythontex.pdf details="Package documentation" @@ -258752,8 +263963,8 @@ docfiles size=406 texmf-dist/doc/latex/pythontex/pythontex_quickstart.pdf details="Quick start documentation" texmf-dist/doc/latex/pythontex/pythontex_quickstart.tex texmf-dist/doc/latex/pythontex/syncpdb.py -srccontainersize 83716 -srccontainerchecksum 9acadbf5a18d56d24bd1300ff4b713325c43f163d2ac27e190461fbb74bbe023e31b2a3cb0bf3c6ead42c1275bfcbcbc8cc87914f623537e05773e9e641b7b03 +srccontainersize 83944 +srccontainerchecksum 8a3cf562716df588d4ada0273c3340b73e16a01524e02a9c83c4ca781b8dd1763a1deb9e303635878721831e0d57b780c0666b694629106650f639061d2f32f4 srcfiles size=98 texmf-dist/source/latex/pythontex/depythontex.bat texmf-dist/source/latex/pythontex/pythontex.bat @@ -258777,7 +263988,7 @@ catalogue-contact-repository https://github.com/gpoore/pythontex catalogue-ctan /macros/latex/contrib/pythontex catalogue-license lppl1.3 catalogue-topics callback -catalogue-version 0.17 +catalogue-version 0.18 name pythontex.aarch64-linux category Package @@ -258819,16 +264030,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/depythontex bin/armhf-linux/pythontex -name pythontex.i386-cygwin -category Package -revision 31638 -shortdesc i386-cygwin files of pythontex -containersize 360 -containerchecksum 737d26e507fc505566a16f7859fb4980497d87671d06b31b4862767f6ca80a6c55ee15791813e86b3a84bcd6117452aae89b940dec6edf61278f7067e3398ccb -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/depythontex - bin/i386-cygwin/pythontex - name pythontex.i386-freebsd category Package revision 31638 @@ -258879,15 +264080,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/depythontex bin/universal-darwin/pythontex -name pythontex.win32 +name pythontex.windows category Package -revision 31638 -shortdesc win32 files of pythontex -containersize 700 -containerchecksum c1acde42224b0eec9497b15b65c6080183b6e9eb42f88c78ca23fe9bada9d6f6cc4c27213d8c67b24bea7d11e23c1e0dee422ef368fff2f969d7d42ca8800f34 -binfiles arch=win32 size=2 - bin/win32/depythontex.exe - bin/win32/pythontex.exe +revision 65891 +shortdesc windows files of pythontex +containersize 2352 +containerchecksum e36fe8eca07e80c62882a9259b608c23f255a45a87b810a31b07293d1cac8341268027d0ae13943136d8d958cc73b43fa9a903913298b8d8ddeff4ef76d1cba9 +binfiles arch=windows size=4 + bin/windows/depythontex.exe + bin/windows/pythontex.exe name pythontex.x86_64-cygwin category Package @@ -258964,7 +264165,7 @@ catalogue-version 2.6.0 name qcm category Package -revision 15878 +revision 63833 shortdesc A LaTeX2e class for making multiple choice questionnaires relocated 1 longdesc QCM is a package for making multiple choices questionnaires @@ -258979,23 +264180,24 @@ longdesc slide and correct the questionnaires more easily by longdesc superimposing the mask on top of students' forms. QCM can also longdesc typeset exam corrections automatically, and comes with support longdesc for AUC-TeX. -containersize 3544 -containerchecksum 9fc1ac5b0b6fb819022f9e2ef625a73ed884ecd2c45b7c58283388ea0263d9f9c9045e14d9ee37e8a3c0036171284f30f7db5f99bacd01d4c65e1819bec6ab95 +containersize 3528 +containerchecksum f14457229f0cd0a291482b1fdab1970552257cc65955c9df43485c5af5a389d5323073c70b18ba0a6729ba4c7491fa4b2966f341b04ca6ea454d9e85e21ea904 doccontainersize 94864 -doccontainerchecksum d7935c763e9e5245eb68d915b39a2f91d785a1590a7cd807e0923d7d5763ef8216069bf1119f15f91521fd83786c86de7b227e90b6407d6799a6104fe466fd4a +doccontainerchecksum f60d3cf3581f7f2fbf7a4fc18994bfdf77b3ff16d148f6036694e477f7b8945b25bffdb107f4fa11d90b65498f8abd034e24a73fe8bf3e610e2d158a08ed429f docfiles size=33 RELOC/doc/latex/qcm/NEWS RELOC/doc/latex/qcm/README details="Readme" RELOC/doc/latex/qcm/qcm.el RELOC/doc/latex/qcm/qcm.pdf details="Package documentation" srccontainersize 9308 -srccontainerchecksum 7efcc841f6c990e7fb1979bfeed28289ff0290b9ab2d54248628a3e52f0eb3c35b9a3b8f91a4b06231577a957d1009522d4c9843c103720f590cfb617289fd23 +srccontainerchecksum 8cfe155d514e9b310b853b0c3b326104f26c207f49ebb0326e455e92e40f7848f3b3c89dffabe13f69cc73b9a561c79a334b4fdafa27cf8b3112977f1fe2960f srcfiles size=9 RELOC/source/latex/qcm/qcm.dtx RELOC/source/latex/qcm/qcm.ins runfiles size=4 RELOC/tex/latex/qcm/qcm.cls RELOC/tex/latex/qcm/qcm.sty +catalogue-also multiple-choice catalogue-ctan /macros/latex/contrib/qcm catalogue-license lppl catalogue-topics exam @@ -259071,7 +264273,7 @@ runfiles size=30 name qrbill category Package -revision 56190 +revision 66301 shortdesc Create QR bills using LaTeX relocated 1 longdesc This LaTeX package provides support for creating QR-bills for @@ -259081,21 +264283,24 @@ longdesc these regulations and can be adapted for international use. longdesc Packages loaded by qrbill are expl3, fontspec (except if one is longdesc using a custom font setup), graphicx, scrbase, qrcode, iftex, longdesc l3keys2e, and numprint. -containersize 6888 -containerchecksum a0b85af4d872348264b7a8ac673bbfc3f4e0a7c36fa7edfa2fba78ee144bdce908adff6d3c363182693bd4ad8a75c0cca978ecd52c1442656ec1cc72f1506f0c -doccontainersize 74584 -doccontainerchecksum 9aeafdc2506e7a885dbd1f54bc827f72c86b994bc766ef570ad82b16e960f54547bb6f970772dcd58b75304ae33c00d0d339a969c902fc75b8431037af9dd9b9 -docfiles size=22 +containersize 23060 +containerchecksum 7db81322f1124b4b7ef92c343aa514a077661a666d28cb3af424e7531d43e2f6d1acdb4776cd10c0681ceffe7a2d67b30b1bbfea3f23c9bc6684450d85f0708f +doccontainersize 86352 +doccontainerchecksum 0f9e5dbe5ca9567d6b978af2cd82a42ac02fc5fc8242cf2ecc037ed744e508c59aa679a00a63d7a9a767d437b5ad29179b22cb61865e943a74f3860aced2bdc5 +docfiles size=25 RELOC/doc/latex/qrbill/README.md details="Readme" RELOC/doc/latex/qrbill/qrbill-letter-demo.tex RELOC/doc/latex/qrbill/qrbill-standalone-demo.tex RELOC/doc/latex/qrbill/qrbill.pdf details="Package documentation" -srccontainersize 11564 -srccontainerchecksum 9849b7e74ce53c526b8d28122852ec9c5ceb9873c1f57d067aaa8bfe09f09a6d996a45695a6e564bf395275b0b0e3de039651669e2c287cca1095cc628bd27ea -srcfiles size=12 +srccontainersize 15420 +srccontainerchecksum 23927a3b080925ab8c6091c68626fd7862ea8747fe778b029a436c66fee5d994205e5300f039d4af17693b056583ab92ab5db09069dac31b54c5b978d7e07cac +srcfiles size=15 RELOC/source/latex/qrbill/qrbill.dtx RELOC/source/latex/qrbill/qrbill.ins -runfiles size=9 +runfiles size=26 + RELOC/scripts/qrbill/qrbill-latexluaqrcode.lua + RELOC/scripts/qrbill/qrbill-qrencode.lua + RELOC/tex/latex/qrbill/epc.qrbill-cfg.tex RELOC/tex/latex/qrbill/qrbill-vocab.csv RELOC/tex/latex/qrbill/qrbill.sty RELOC/tex/latex/qrbill/qrbill_swiss-cross.pdf @@ -259103,9 +264308,9 @@ runfiles size=9 catalogue-contact-bugs https://github.com/peitex/qrbill/issues catalogue-contact-repository https://github.com/peitex/qrbill catalogue-ctan /macros/latex/contrib/qrbill -catalogue-license lppl1.3c +catalogue-license lppl1.3c bsd3 catalogue-topics qrcode invoice swiss expl3 -catalogue-version 1.02 +catalogue-version 2.00 name qrcode category Package @@ -259464,7 +264669,7 @@ catalogue-version 0.9.6 name quantumarticle category Package -revision 56862 +revision 65242 shortdesc Document class for submissions to the Quantum journal relocated 1 longdesc This package provides the preferred document class for papers @@ -259472,33 +264677,48 @@ longdesc to be submitted to "Quantum -- the open journal of quantum longdesc science". It is based on the widely used article document class longdesc and designed to allow a seamless transition from documents longdesc typeset with the article, revtex4-1, and elsarticle document -longdesc classes. The quantumarticle document class also offers an -longdesc option to remove the Quantum-related branding. In that way, -longdesc users appreciating the esthetics of this document class can use -longdesc it for their notes as well. -containersize 14560 -containerchecksum 2d06c5ba42e81ff65171a37ad78e6bc8331bb4eb294056d6955bd1cc48e8c257c6eccf1055772147f6435094b934ea6792ea638c9eca58e94f3c1e387ecf3375 -doccontainersize 702388 -doccontainerchecksum 6de1d9d40a6055f5e7282b532c6f4078d749620fc720c9d23841f5a335bd7bf5d37017ee82fff8f91811b2ea32b8792936592de20c9e48001bbc942f673f09d7 -docfiles size=192 +longdesc classes. As a service to authors, the document class comes with +longdesc a predefined bibilography style quantum.bst that is optimized +longdesc to be used with the quantumarticle document class. +longdesc Additionally, the quantumview documentclass is provided, which +longdesc can be used as a proxy to typeset the HTML-only editorial +longdesc pieces in Quantum Views in a LaTeX editor. The quantumarticle +longdesc document class also offers an option to remove the +longdesc Quantum-related branding. In that way, users appreciating the +longdesc esthetics of this document class can use it for their notes as +longdesc well. +containersize 24896 +containerchecksum 432dd6c4365dd1e6dfbd9ea4de2f29f0bf0fe3bb7f29b110354ad7d42c4675acc4df84cbcdabc8a476ff8de260e083d32c1b3e63bf7b6122dbc0d5373847bef9 +doccontainersize 1284404 +doccontainerchecksum 791b37745fd91a13638cd1689478a35272e4b1b04ea1fc5dfe16d8d320576fbcfaf8b2929b3afa12e783fa148cf3d5f422354d8de0976d808f0921839ea3659a +docfiles size=339 RELOC/doc/latex/quantumarticle/README.md details="Readme" + RELOC/doc/latex/quantumarticle/example-plot.pdf + RELOC/doc/latex/quantumarticle/quantum-bibliographystyle-demo.bib + RELOC/doc/latex/quantumarticle/quantum-bibliographystyle-demo.pdf + RELOC/doc/latex/quantumarticle/quantum-bibliographystyle-demo.tex RELOC/doc/latex/quantumarticle/quantum-template.pdf details="Example of use (template)" RELOC/doc/latex/quantumarticle/quantum-template.tex RELOC/doc/latex/quantumarticle/quantumarticle.pdf details="Package documentation" RELOC/doc/latex/quantumarticle/quantumarticle.tex -runfiles size=15 + RELOC/doc/latex/quantumarticle/quantumview-template.bib + RELOC/doc/latex/quantumarticle/quantumview-template.pdf + RELOC/doc/latex/quantumarticle/quantumview-template.tex +runfiles size=36 + RELOC/bibtex/bst/quantumarticle/quantum.bst RELOC/tex/latex/quantumarticle/quantumarticle.cls + RELOC/tex/latex/quantumarticle/quantumview.cls catalogue-contact-bugs https://github.com/quantum-journal/quantum-journal/issues catalogue-contact-home https://quantum-journal.org catalogue-contact-repository https://github.com/quantum-journal/quantum-journal catalogue-ctan /macros/latex/contrib/quantumarticle catalogue-license lppl1.3c catalogue-topics class journalpub physics -catalogue-version 5.1 +catalogue-version 6.1 name quattrocento category Package -revision 56020 +revision 64372 shortdesc Quattrocento and Quattrocento Sans fonts with LaTeX support relocated 1 longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -259511,11 +264731,11 @@ longdesc sizes. Tiny details that only show up at bigger sizes make it longdesc also great for display use. Quattrocento Sans is the perfect longdesc sans-serif companion for Quattrocento. execute addMap quattrocento.map -containersize 729188 -containerchecksum 8ef86d388e28f0fcfd66bfbf190f4a997029224387d3c18e81f7f1790d6440aeff72125608b471817911cb2deec1f0641e7a1c166bd0e04b8ce550800169a691 -doccontainersize 142552 -doccontainerchecksum c4727b3aef74633921949c5efc9b7486cd3537fa8bc738b36be5005ba4dd599f907238a6ee6d1bca7907b1b23c64d1e7d32565959a2d172267bb0910339f09f7 -docfiles size=38 +containersize 729176 +containerchecksum cc6819b03992528b4a564757caf4767c92a00b8ecdd6053595c5561483287be88014b6cfe60c1eedde75160669981baaef1e71cc293d1585e9a7c54e0186fe35 +doccontainersize 147688 +doccontainerchecksum f3881de285a603b1fb11c470f0c16698cdb4a4b165750a2bcc17fd4deaf44d5d94a7af531ddb1135d12556317731639ea779d25663a81bd25b578241ae3fab1d +docfiles size=40 RELOC/doc/fonts/quattrocento/OFL.txt RELOC/doc/fonts/quattrocento/README details="Readme (the primary documentation)" RELOC/doc/fonts/quattrocento/quattrocento-samples.pdf details="Font samples" @@ -260131,7 +265351,7 @@ catalogue-version 1.3i name ragged2e category Package -revision 57638 +revision 66152 shortdesc Alternative versions of "ragged"-type commands relocated 1 longdesc The package defines new commands \Centering, \RaggedLeft, and @@ -260139,16 +265359,17 @@ longdesc \RaggedRight and new environments Center, FlushLeft, and longdesc FlushRight, which set ragged text and are easily configurable longdesc to allow hyphenation (the corresponding commands in LaTeX, all longdesc of whose names are lower-case, prevent hyphenation altogether). -containersize 2924 -containerchecksum 716cc6067273735be2f4c9922b043441076d37f7d08fac0603564c9cb8f082f5dd91bceb336ecb3ad69e6d9a88367067c71fd08678c1ff606c21109daa66a140 -doccontainersize 664008 -doccontainerchecksum ecc36350f01e86f63ca54a2ae5ca1ccd17851756731af3997d9b172753673f39c05e82d9b3f736896b2be1c971bdd0c700678a6d44aec2226a7f57bcdc085e51 -docfiles size=164 +containersize 3020 +containerchecksum 24f17ba539fe5b23cf5a4f75b0bec2ae7a1810562df80229727805b31d877709d65e2ceda5757dde970539c1f93a478927c9625941fbf99f9fb306afdbce6379 +doccontainersize 687784 +doccontainerchecksum f3aeceac054552375150317e3e4d7baaf1e7a23e2e03a0a97b1a210771b9d5ac381f59874e202a9bb1b39b6e043eee85de6e5fb15869fa7ecd7da77506a7cb2d +docfiles size=177 + RELOC/doc/latex/ragged2e/LICENSE.md RELOC/doc/latex/ragged2e/README.md details="Readme" RELOC/doc/latex/ragged2e/ragged2e.pdf details="Package documentation" -srccontainersize 11392 -srccontainerchecksum 2a9a755a3f3978c3e9077e3c36eb642e18895e3bd5fce44af71d2fb094f1a46c3e61cce21940eba5b6d7a3d51aadf6229fd9e0941610e9bc42dfdeb67ee49514 -srcfiles size=13 +srccontainersize 11932 +srccontainerchecksum 2f7bab3b8a4c3f41ccd368697eaf397e7516d73bd65cc3952864e0e21a3359ae361fa15cff3c317c928a4e6e6de6ac8bde40ea45ebd3d3a694caf2fe401ddc3d +srcfiles size=14 RELOC/source/latex/ragged2e/ragged2e.dtx RELOC/source/latex/ragged2e/ragged2e.ins runfiles size=3 @@ -260159,7 +265380,7 @@ catalogue-contact-repository https://gitlab.com/TeXhackse/ragged2e catalogue-ctan /macros/latex/contrib/ragged2e catalogue-license lppl1.3c catalogue-topics layout parshape -catalogue-version 3.0 +catalogue-version 3.4 name raleway category Package @@ -260936,7 +266157,7 @@ catalogue-version 1.4 name ran_toks category Package -revision 57520 +revision 59515 shortdesc Randomise token strings relocated 1 longdesc The package provides means of randomising lists of tokens, or @@ -260946,11 +266167,11 @@ longdesc containing tokens to be randomised; and the \bRTVToks/\eRTVToks longdesc commands delimit a collection of tokens for randomising; each longdesc group inside a rtVw constitutes one of these (typically larger) longdesc token sets. -containersize 5248 -containerchecksum 01bb17e3c2713e482670d3229878ba85bae5405476708b18367f0bfa85766b72b82471a8ff47993f88ef2bea72b1dc4019ed874185c94fab3171fe02f984c4c9 -doccontainersize 517980 -doccontainerchecksum 607924d3e8f09070318a5ef2354acd12fd0c57b3e7d42f45b84048f2cd0693b72811abe0485dfc45aab224c500fa4731111ae66c3e3aa25eaf27e1976b63d938 -docfiles size=159 +containersize 5324 +containerchecksum 25b78e30d7e6a2f082a7740fcdb968cd4032e6fd612bafdbeb58613f45882e788809457d0fcf29af76d3eb82c57d8772960ad84f9ed5940fe670f8662853364d +doccontainersize 524452 +doccontainerchecksum 7e837aba73d0d578494845f038f7616a64eaeecde059655c8ce3ed5a5bc2c5910086c955b6a16a42abd09dbbafb71409387959eaf2378618532d2e494bba42d2 +docfiles size=165 RELOC/doc/latex/ran_toks/README.md details="Readme" RELOC/doc/latex/ran_toks/docs/ran_toks.pdf RELOC/doc/latex/ran_toks/docs/rantoks_man.pdf details="Package documentation" @@ -260964,14 +266185,15 @@ docfiles size=159 RELOC/doc/latex/ran_toks/examples/mc-dbu-ctrld.tex RELOC/doc/latex/ran_toks/examples/mc-dbu.tex RELOC/doc/latex/ran_toks/examples/mytext.verb + RELOC/doc/latex/ran_toks/examples/nested-matching.tex RELOC/doc/latex/ran_toks/examples/ran-toks.tex RELOC/doc/latex/ran_toks/examples/rt-cb.tex RELOC/doc/latex/ran_toks/examples/rt-tst-eqe.tex RELOC/doc/latex/ran_toks/examples/rt-tst-qz.tex RELOC/doc/latex/ran_toks/examples/viewDB.tex -srccontainersize 11904 -srccontainerchecksum 5aba0e7472f214e367dab1a664f61fddc4b2a4b3eeb5737f2b476d6a196f33ccc4d28a6d3ab00f85c41291b27ef0699f362460fb6a0fe60dd28db67138b9560b -srcfiles size=11 +srccontainersize 12204 +srccontainerchecksum ad77e0842ddd144f49b26a548846f2058611336f51d7540e96ad63258ee46c2f0a139b6945c0fea1f26fbf61b5e1d21ec45f87a9f68009d87ea6b9b5634a2895 +srcfiles size=12 RELOC/source/latex/ran_toks/ran_toks.dtx RELOC/source/latex/ran_toks/ran_toks.ins runfiles size=6 @@ -261129,7 +266351,7 @@ catalogue-topics security name rank-2-roots category Package -revision 48515 +revision 61719 shortdesc Draw (mathematical) rank 2 root systems relocated 1 longdesc This package concerns mathematical drawings arising in @@ -261137,10 +266359,10 @@ longdesc representation theory. The purpose of this package is to ease longdesc drawing of rank 2 root systems, with Weyl chambers, weight longdesc lattices, and parabolic subgroups. Required packages are tikz, longdesc etoolbox, expl3, pgfkeys, pgfopts, xparse, and xstring. -containersize 4028 -containerchecksum 43d76c8461a724c48e5e510701032c01a5bfa645734402b0fa0d0766f2d0cb7520f2e3d29d6c3abfe44ec369988445aab9216135f70c43a18fdec152cb4ae92b +containersize 3984 +containerchecksum 5124c4185eab09ff6e855409bb9d8b235fa3c304864886eb7d96fb2bc3487214eb388e27b4a3cc25f6d3b12bc9b77a073e2404792d2b0654e243a540c5fa00e7 doccontainersize 400892 -doccontainerchecksum f9e58f16b30b075b19929a9ad1ac0c47e53b2aea038e34db69dde6d64e1cf3281fda597499dd07aea03b3bb325c06a1c7abbfdca42a80f03fa2a3d272bf52e5b +doccontainerchecksum b19096334754f7d02b0a16d936c885e9ada82adaf1ed4011df815bcd703b4e79dec62d133fa3b32cf9663e2ef69081a95ae647504d8b6eb0f27f86909980506a docfiles size=110 RELOC/doc/latex/rank-2-roots/README details="Readme" RELOC/doc/latex/rank-2-roots/rank-2-roots.bib @@ -261148,12 +266370,48 @@ docfiles size=110 RELOC/doc/latex/rank-2-roots/rank-2-roots.tex runfiles size=5 RELOC/tex/latex/rank-2-roots/rank-2-roots.sty -catalogue-contact-home http://euclid.ucc.ie/mckay/ catalogue-ctan /graphics/pgf/contrib/rank-2-roots catalogue-license lppl1.3c catalogue-topics maths pgf-tikz catalogue-version 1.0 +name rbt-mathnotes +category Package +revision 61193 +shortdesc Rebecca Turner's personal macros and styles for typesetting mathematics notes +relocated 1 +longdesc Styles for typesetting mathematics notes. Includes document +longdesc classes for typesetting homework assignments and "formula cheat +longdesc sheets" for exams. Several examples are included, along with +longdesc rendered PDFs. +containersize 12292 +containerchecksum 15e5b0c52a70b406cb6de6ff55740206dafb75c8cc20dd45820059dcdb112c03ea0df0884b6caa12db0f792b97e0507f90d06644a8f78cd7569f9489a896b3cc +doccontainersize 215032 +doccontainerchecksum effd703a23c4eee3ecb385cf8ca891c50e373fdb91834f45f7ba414d6e69b5fbef8a1833db4cf76e27dc316b734b714926078e4d92de08122dc79948ba928f77 +docfiles size=71 + RELOC/doc/latex/rbt-mathnotes/LICENSE.txt + RELOC/doc/latex/rbt-mathnotes/README.md details="Readme" + RELOC/doc/latex/rbt-mathnotes/examples/cheat-sheet.pdf + RELOC/doc/latex/rbt-mathnotes/examples/cheat-sheet.tex + RELOC/doc/latex/rbt-mathnotes/examples/multivar.pdf + RELOC/doc/latex/rbt-mathnotes/examples/multivar.tex + RELOC/doc/latex/rbt-mathnotes/examples/topology-hw-1.pdf + RELOC/doc/latex/rbt-mathnotes/examples/topology-hw-1.tex + RELOC/doc/latex/rbt-mathnotes/rbt-mathnotes.pdf details="Package documentation" + RELOC/doc/latex/rbt-mathnotes/rbt-mathnotes.tex +runfiles size=17 + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes-formula-sheet.cls + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes-hw.cls + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes-messages.sty + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes-util.sty + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes.cls + RELOC/tex/latex/rbt-mathnotes/rbt-mathnotes.sty +catalogue-contact-repository https://github.com/9999years/latex-mathnotes/ +catalogue-ctan /macros/latex/contrib/rbt-mathnotes +catalogue-license lppl1.3c +catalogue-topics class maths expl3 misc-paper +catalogue-version 1.0.2 + name rccol category Package revision 15878 @@ -261247,22 +266505,22 @@ catalogue-topics version-control doc-mgmt name rcs-multi category Package -revision 56291 +revision 64967 shortdesc Typeset RCS version control in multiple-file documents relocated 1 longdesc The package enables the user to typeset version control longdesc information provided by RCS keywords (e.g., $ID: ... $) in longdesc LaTeX documents that contain multiple TeX files. The package is longdesc based on the author's svn-multi package. -containersize 3044 -containerchecksum 4b8cda573edfeed6f5ca2c993aa72c6cbe42f8705e42e9004f6dd4ef85e2e6bb4b9ee9b6a865ca7966ce70d685ceb5255e87545c2159feb30986ff8e896ca41c +containersize 3032 +containerchecksum 597d15909aa4525608f649c08dcad66ea3e7bc41a5d3003c1fc2582ca459dab58bf9e8a909f92b3a5eb40397a2612d26601ef33fae3d151b7e5188a39ed3780f doccontainersize 651132 -doccontainerchecksum a2a2cf87235015aeed11a1f924fd7d719e568c99890fe7434dd1ecf7853247e50f8fab4c7a800a19e4390c953d940107de009e74695248251d76f773d37cabb4 +doccontainerchecksum 7ff57e19f66f665b1b2e35b32f109f091b21300495177fdd63e60b26a8c8e1d7532e40bcdb2e01d3499b753bbb53b1dec6f70ed3273c43d3fd541a1fe63f82f8 docfiles size=180 RELOC/doc/latex/rcs-multi/example.pdf RELOC/doc/latex/rcs-multi/rcs-multi.pdf details="Package documentation" -srccontainersize 13580 -srccontainerchecksum 2f72796d40de09422a67cadb68a093d44b5cff71f51c33c681117891fae080bcba43baffc4a12a7daf8b486c75e8d20c8b86612d411af67458a1f7e3c69e1d75 +srccontainersize 13584 +srccontainerchecksum f86425b317ce13680ceb9f8bff961074f081e2381bcd46bd947f711835b64210452e6a230f1b5914e464b827106d4c7a8be5dff78b988d4d49cb7ad9fa98d749 srcfiles size=14 RELOC/source/latex/rcs-multi/Makefile RELOC/source/latex/rcs-multi/example.tex @@ -261271,9 +266529,9 @@ srcfiles size=14 runfiles size=3 RELOC/tex/latex/rcs-multi/rcs-multi.sty catalogue-also rcs rcsinfo -catalogue-contact-bugs https://sourceforge.net/p/rcs-multi/tickets/ -catalogue-contact-home https://sourceforge.net/p/rcs-multi/ -catalogue-contact-repository https://sourceforge.net/p/rcs-multi/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/rcs-multi/issues +catalogue-contact-home https://github.com/MartinScharrer/rcs-multi +catalogue-contact-repository https://github.com/MartinScharrer/rcs-multi.git catalogue-ctan /macros/latex/contrib/rcs-multi catalogue-license lppl catalogue-topics version-control doc-mgmt @@ -261315,16 +266573,16 @@ catalogue-version 1.11 name readablecv category Package -revision 57433 +revision 61719 shortdesc A highly readable and good looking CV and letter class relocated 1 longdesc This class provides, what I have found, to be an extremely longdesc attractive and highly readable CV which will lead to your CV longdesc being read rather than disgarded. -containersize 3896 -containerchecksum 2165f742cfad485942ec3ce085c3f9eeb7de1b75028020f143661e69a8694ea4f321779c79ac04895771170310e85e4f9019a86ffea0cc4cce97eab2f4ae055a -doccontainersize 207536 -doccontainerchecksum 78d4721ac35a4361141f0a1d84a5d7d7a416976a1e8445f96c02963fbd924e86555f6c0c7a7beaba1573b9488086be4a3b65ae826ae7db3e16de6e386fee2fda +containersize 3884 +containerchecksum ca024cf78918406ca68a750832bf4046b22ca36cbd8ad7784cc2cc9aef6440de43c7d5c38aea95d738ec1f67685f02e1fd37440dc90d76046ee663cc475a187f +doccontainersize 207540 +doccontainerchecksum c7b793994b11ae49bc93c8b39c0e257c24c54ebf19026db125ff1ae236f9b8443290b31443baff3a587fff073259621b001a75b0bb4f8f4e4963245f7c739019 docfiles size=57 RELOC/doc/latex/readablecv/README.md details="Readme" RELOC/doc/latex/readablecv/ReadableCV.pdf details="Package documentation" @@ -261333,7 +266591,7 @@ docfiles size=57 RELOC/doc/latex/readablecv/sig.png runfiles size=4 RELOC/tex/latex/readablecv/ReadableCV.cls -catalogue-contact-home https://philipstone.co.uk/type.html +catalogue-contact-home https://www.typewithtex.com catalogue-ctan /macros/latex/contrib/readablecv catalogue-license lppl1.3 catalogue-topics class cv @@ -261341,7 +266599,7 @@ catalogue-version 3.0 name readarray category Package -revision 42467 +revision 60540 shortdesc Read, store and recall array-formatted data relocated 1 longdesc The package allows the user to input formatted data into @@ -261352,25 +266610,25 @@ longdesc While the package can be used for any application where indexed longdesc data is called for, the package proves particularly useful when longdesc elements of multiple arrays must be recallable and dynamically longdesc combined at time of compilation, rather than in advance. -containersize 4252 -containerchecksum 34a1a576a560ec5a66fd8b358e9f594e1971124023e9f88e67e5dbf7ff775e3950071c5f4daa004f8e59549f245934e4dd8a82e4a2928bcb1e9fff99f2b3bdd9 -doccontainersize 487380 -doccontainerchecksum 61bf2960c1a0058a5a64a679b4c17ac0e754f09f2ca1847fcee4cb0b0b9a0dd07e252a534768fcf3b098217afc4c52a8f65120dcf43e69f0907fff9b8638af99 -docfiles size=132 - RELOC/doc/latex/readarray/README +containersize 5492 +containerchecksum 615f0be7efb7cd6954d36ad1dafc9f0f0a1632159247e7d6feb064e272c5753b26c5e07af709240a6e5f8bd7ceb7ca2c2c29842a5bd6e9e9efae2470f7a94107 +doccontainersize 506352 +doccontainerchecksum d9f87dc14d40c33b06591b611e8a79df95fc62c32d16f72cff96222e7fe48f4c09c95bb0b02a6acddc8b4630158ed61c9375dd370c2f2d21ec8a9328f63fff47 +docfiles size=142 + RELOC/doc/latex/readarray/README details="Readme" RELOC/doc/latex/readarray/readarray.pdf details="Package documentation" RELOC/doc/latex/readarray/readarray.tex -runfiles size=4 +runfiles size=6 RELOC/tex/latex/readarray/readarray.sty catalogue-also getargs catalogue-ctan /macros/latex/contrib/readarray catalogue-license lppl1.3 catalogue-topics data-manip -catalogue-version 2.0 +catalogue-version 3.1 name realboxes category Package -revision 56291 +revision 64967 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 @@ -261383,23 +266641,23 @@ longdesc macros, like \Makebox, can also be used as environments, but longdesc not the "short-form" macros, like \Mbox. However, normally the longdesc long form uses the short form anyway when no optional arguments longdesc are used. -containersize 3028 -containerchecksum fa998a9ec7865f65c96fdd2c7015646db01f72a6a3d291c98c726fa295fb883f0e6d7fceecb1276bd2668729bfeaf0a9f9eaae19913ed6af2f54530243205d16 +containersize 3016 +containerchecksum 2705000ece0e4bdc9b96929e853733eb594d6d12b1bbee97b3068f46ba2c6c3b2d06ed0f0eb5e34bd3e26e331722e51c1fd98ff36fa5c53473e99a7fb1610c22 doccontainersize 175812 -doccontainerchecksum 43d982eeb7c7f6405b35c2b37ec20fc92fd46a1f3e1a1ac8fe69bc74dc5bcffb3bd50c791139621d9927b07fb80e78283f3e98d13a552c5bc29d5b147fa28b04 +doccontainerchecksum aa3d6f25505cf1dba7c5ae5c364524cbed6c6a588073fb29e7d9b14706b8ffbe5998dca4f17e1039aa242ad4bbc29871c72686f920610d8662491e1c91e339f5 docfiles size=48 RELOC/doc/latex/realboxes/README details="Readme" RELOC/doc/latex/realboxes/realboxes.pdf details="Package documentation" srccontainersize 7416 -srccontainerchecksum 5976fa640a0c85e837a606e286ab50baea1a75283dea9a0d152a901ca2f565327c27a0f30539b7536bf00614cc998e1c7b8c6b8a28f22fbd121beeb8f4503b47 +srccontainerchecksum 096371da7866350529304b9be81460a2e081d4725c29ad423070253b7623069ee0d7ef7af6b2a88dba650231d972dceb74a70254765753f4227e39946245cef2 srcfiles size=8 RELOC/source/latex/realboxes/realboxes.dtx RELOC/source/latex/realboxes/realboxes.ins runfiles size=3 RELOC/tex/latex/realboxes/realboxes.sty -catalogue-contact-bugs https://sourceforge.net/p/realboxes/tickets/ -catalogue-contact-home https://sourceforge.net/p/realboxes/ -catalogue-contact-repository https://sourceforge.net/p/realboxes/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/realboxes/issues +catalogue-contact-home https://github.com/MartinScharrer/realboxes +catalogue-contact-repository https://github.com/MartinScharrer/realboxes.git catalogue-ctan /macros/latex/contrib/realboxes catalogue-license lppl1.3 catalogue-topics boxing @@ -261407,34 +266665,38 @@ catalogue-version 0.2 name realhats category Package -revision 52865 +revision 63595 shortdesc Put real hats on symbols instead of ^ relocated 1 longdesc This LaTeX package makes \hat put real hats on symbols. The longdesc package depends on amsmath, calc, graphicx, ifthen, lcg, and longdesc stackengine. -containersize 22444 -containerchecksum 9f5c32cf6efc957f8cf7b577c77d953f7969589fd487032807bb2fd2e6dbc0f5c14ff24bd5ce14dfc14b69bfcfe39519a0ca6cdb73351bcbae561a9a01c93180 -doccontainersize 111684 -doccontainerchecksum 681b327aa1c563436821fd7c2e736d2f45c419b0dda38abe86e146ccd9af80d3b1b57302608a42f4e0c1c744b00ba4aa6cb319c32fef5d6fb43e8fd4ba10f409 -docfiles size=31 +containersize 1792272 +containerchecksum 4ea4abe044eff67e97bd4d93da93dabeeb23a22f4383577b5e2c4fa849ead43aad4cf9e31e99f6b5a2b57ddde41c09648f6d146fb31483049c43e37d01f0e1dc +doccontainersize 1877464 +doccontainerchecksum 9b80b31974a9004f4bf1e93be33cb0765f0dda42cf1dba13b1d6c965811d7e91f25fbd1ff026fa46f1c2f7bee652f84ab19855add50513586b01b710fe7d67dc +docfiles size=502 RELOC/doc/latex/realhats/README.md details="Readme" RELOC/doc/latex/realhats/readme_images/hats.png RELOC/doc/latex/realhats/realhats.pdf details="Package documentation" -srccontainersize 2672 -srccontainerchecksum be1f69bbc0bd6703ac5e2e56af54d14688d5a79aa0152f488faf86609fc0e530c0f3e31baf5c3be03593a4d826f8f06d5571453e9a55154116729956592cc08d -srcfiles size=3 +srccontainersize 2932 +srccontainerchecksum cfffc12867350233426a195b25880bf4b209b8c9320f2ab836457c366e40e94b5503260e548251465f5c58bcb7243d377a4487d4ef3aad6123cec0d7fe1baa2b +srcfiles size=4 RELOC/source/latex/realhats/realhats.dtx RELOC/source/latex/realhats/realhats.ins -runfiles size=18 +runfiles size=493 RELOC/tex/latex/realhats/hats/realhats-ash.pdf RELOC/tex/latex/realhats/hats/realhats-beret.pdf + RELOC/tex/latex/realhats/hats/realhats-birthday.pdf RELOC/tex/latex/realhats/hats/realhats-cowboy.pdf RELOC/tex/latex/realhats/hats/realhats-crown.pdf RELOC/tex/latex/realhats/hats/realhats-dunce.pdf RELOC/tex/latex/realhats/hats/realhats-fez.pdf RELOC/tex/latex/realhats/hats/realhats-makelatexgreatagain.pdf + RELOC/tex/latex/realhats/hats/realhats-mortarboard.pdf + RELOC/tex/latex/realhats/hats/realhats-policeman.pdf RELOC/tex/latex/realhats/hats/realhats-santa.pdf + RELOC/tex/latex/realhats/hats/realhats-scottish.pdf RELOC/tex/latex/realhats/hats/realhats-sombrero.pdf RELOC/tex/latex/realhats/hats/realhats-tophat.pdf RELOC/tex/latex/realhats/hats/realhats-witch.pdf @@ -261445,7 +266707,7 @@ catalogue-contact-repository https://github.com/mscroggs/realhats catalogue-ctan /macros/latex/contrib/realhats catalogue-license mit catalogue-topics amusements graphics graphics-incl -catalogue-version 5.0 +catalogue-version 6.0 name realscripts category Package @@ -261510,7 +266772,7 @@ catalogue-version 1.1 name rec-thy category Package -revision 58732 +revision 63982 shortdesc Commands to typeset recursion theory papers relocated 1 longdesc This package is designed to help mathematicians publishing @@ -261518,10 +266780,10 @@ longdesc papers in the area of recursion theory (aka Computability longdesc Theory) easily use standard notation. This includes easy longdesc commands to denote Turing reductions, Turing functionals, c.e. longdesc sets, stagewise computations, forcing and syntactic classes. -containersize 15068 -containerchecksum 6c7b66557d5d7b834c2838415744ee1da8eea05bd25292a9793b3a992174ff250f0f66b5ba09d962bc8d1abd0414ba0ef639539318ca1a30a877ef8c06a48a42 -doccontainersize 122696 -doccontainerchecksum a11ea08603dde4d2a8896c5ac392efc93de53f988b2d7dd458d06a66d91f8f014cb08b56349be4aae7d36dc29b47fb8d6a3e4d74978cddf85d12e596c42cf384 +containersize 15364 +containerchecksum 0497b8d382cf239b6b8d2f4bf2aeb3af34c8d1f1ad94640f930c316f9b7bd7e6a150c3d344a555313a88cc848fdafb3e392ff6cec0caf72d3517dd1db4b7c2c5 +doccontainersize 123836 +doccontainerchecksum 0733917542d683cddfe9651bc9187d2dfa7a57e2bfbfddca687a5bda10609451a3f58cbfd7f5308647f9a3014f0a4adc36e9075cfc1a5b7db48c7d1063cc9b5a docfiles size=49 RELOC/doc/latex/rec-thy/README details="Readme" RELOC/doc/latex/rec-thy/rec-thy.pdf details="Package documentation" @@ -261532,7 +266794,7 @@ catalogue-contact-repository https://github.com/TruePath/Recursion-Theory-Latex- catalogue-ctan /macros/latex/contrib/rec-thy catalogue-license pd catalogue-topics maths expl3 -catalogue-version 3.7 +catalogue-version 3.8.2 name recipe category Package @@ -261623,6 +266885,34 @@ catalogue-license lppl catalogue-topics cooking catalogue-version 2.0 +name recorder-fingering +category Package +revision 66008 +shortdesc Package to display recorder fingering diagrams +relocated 1 +longdesc This package provides support for generating and displaying +longdesc fingering diagrams for baroque fingering recorders. Standard +longdesc fingerings are provided for recorders in both C and F, along +longdesc with methods to create and display alternate fingerings for +longdesc trills, etc. +containersize 4872 +containerchecksum 212db519c021775478780fde280345166527abe6b1653b337ae8338745b05639cb972f2515d51bf9ce0ab7eee9225f73c96ec3057e75604a825376e05c500448 +doccontainersize 159640 +doccontainerchecksum 6f4156dbfc20302c3055d2d464ac672684d4f2ee99752fa111809761874ed56ab9856e1c095bcf56e5253b933d26f5806ad441cd2be24f8967bb654b640c860b +docfiles size=45 + RELOC/doc/latex/recorder-fingering/README.md details="Readme" + RELOC/doc/latex/recorder-fingering/recorder-fingering-RecorderInCchart.png + RELOC/doc/latex/recorder-fingering/recorder-fingering.pdf details="Package documentation" + RELOC/doc/latex/recorder-fingering/recorder-fingering.tex +runfiles size=5 + RELOC/tex/latex/recorder-fingering/recorder-fingering.sty +catalogue-contact-bugs https://github.com/amunn/recorder-fingering/issues +catalogue-contact-repository https://github.com/amunn/recorder-fingering +catalogue-ctan /macros/latex/contrib/recorder-fingering +catalogue-license lppl1.3 +catalogue-topics music diagram pgf-tikz +catalogue-version 1.1b + name rectopma category Package revision 19980 @@ -261990,7 +267280,7 @@ catalogue-version 1.0h name reledmac category Package -revision 58763 +revision 63105 shortdesc Typeset scholarly editions relocated 1 longdesc A package for typesetting scholarly critical editions, @@ -261999,11 +267289,11 @@ longdesc itself was a LaTeX port of the plain TeX EDMAC macros. The longdesc package supports indexing by page and by line numbers, and longdesc simple tabular- and array-style environments. The package is longdesc distributed with the related reledpar package. -containersize 54940 -containerchecksum 9e735a11d0538d2590ef9f4daa93df54fa40678e668129b79aad193c65374895f4a11a519b714c7c3d65174af054853bc777fb4d5bdf41ef456c7896028b0d0b -doccontainersize 10224112 -doccontainerchecksum 7c4d169751893332c65cfcd25b4f9bdc902ddd5581d9df9787149762cdb623e63c580f959bb40c03c5d18c1356d461b94ea13255faf0fc75f49ee35fd6e68acb -docfiles size=3329 +containersize 55372 +containerchecksum c7cabb0818baf51eafc4f4864019479925f2b1861435cb85f6a1d03a1ba542c565a25927a582dacf04508deb005ef40dd286126ae85cc918e7881d5aa589b0a6 +doccontainersize 10260936 +doccontainerchecksum 3cd4033ba53567e443c8b5f2b48ff11e63bcf21dd2c618c00e8cdc00004ba5806947e96cdc1c6f1125ca7eb28a505f18901311c3ae168f34abd1e4e7aa7bb96c +docfiles size=3377 RELOC/doc/latex/reledmac/README.md details="Readme" RELOC/doc/latex/reledmac/doc-include/migrate-mac.dtx RELOC/doc/latex/reledmac/doc-include/migrate-par.dtx @@ -262109,15 +267399,15 @@ docfiles size=3329 RELOC/doc/latex/reledmac/migration.pdf RELOC/doc/latex/reledmac/reledmac.pdf details="Package documentation" RELOC/doc/latex/reledmac/reledpar.pdf -srccontainersize 208160 -srccontainerchecksum ec3823d10f63ce6bac7090acfbb8f1965704fddb1a8164b435f355090490ecb69beab7af79bac9f30abcb21276120e6cc86f05057a30c5884baecb8f421b0035 -srcfiles size=297 +srccontainersize 208920 +srccontainerchecksum 96f3ca08dd9b0323b270a40dfcb63fff3b74a0c7c3dabb076c2a588b4041cb7052e4c84d2d4f04ab02f511e43db85dc39bbbd41faba78cf2553696fee9665553 +srcfiles size=298 RELOC/source/latex/reledmac/migration.dtx RELOC/source/latex/reledmac/reledmac.dtx RELOC/source/latex/reledmac/reledmac.ins RELOC/source/latex/reledmac/reledpar.dtx RELOC/source/latex/reledmac/reledpar.ins -runfiles size=99 +runfiles size=100 RELOC/tex/latex/reledmac/reledmac.sty RELOC/tex/latex/reledmac/reledpar.sty catalogue-also ednotes poemscol ledmac eledmac @@ -262127,7 +267417,7 @@ catalogue-contact-support http://geekographie.maieul.net/146 catalogue-ctan /macros/latex/contrib/reledmac catalogue-license lppl1.3 catalogue-topics crit-ed -catalogue-version 2.37.2 +catalogue-version 2.39.1 name relenc category Package @@ -262240,28 +267530,28 @@ catalogue-version 0.01 name repere category Package -revision 51363 -shortdesc Diagrams for school mathematics +revision 65769 +shortdesc MetaPost macros for secondary school mathematics teachers relocated 1 longdesc This package provides MetaPost macros for drawing secondary longdesc school mathematics figures in a coordinate system: axis, grids longdesc points, vectors functions (curves, tangents, integrals, longdesc sequences) statistic diagrams plane geometry (polygons, -longdesc circles) -containersize 16768 -containerchecksum 4bcfbea44ee34209ce95d6a64de3973eed864ac0e2453ab0afd8e1e05faa2d97fd8d90e90f4d2e1c8f1eb337321cba8c10b03975e1cd75aa32ec5c7373d54316 -doccontainersize 342484 -doccontainerchecksum 8a68f168573fa33ea635578aeeeb51060c3eae9f09ddd7dae1d49aca6de2a8eab7c857336eee1c17e2d4e1a7bb5f2440cd1901bf9aa61961966f727827cab38f -docfiles size=135 +longdesc circles) arrays and game boards +containersize 26564 +containerchecksum 75b3b8cf2ce499f7443626afc30615c790d0edebffaa604fa38d05970ec84957e57eba4d2cb1b16b53aa9d162ee922ae38e7271848313f2771c27f4cd5ae9a7e +doccontainersize 651244 +doccontainerchecksum 04ad845cf7a32a6f242612caf9b53230220c73c7854f46db0b3c35ee2533f6a0a6115a931d73a76e5c33f119216b3b75632454bf7b07992e3f38b4f2419726f1 +docfiles size=269 RELOC/doc/metapost/repere/README.md details="Readme" RELOC/doc/metapost/repere/repere-doc.pdf details="Package documentation (French)" language="fr" RELOC/doc/metapost/repere/repere-doc.tex -runfiles size=19 +runfiles size=33 RELOC/metapost/repere/repere.mp catalogue-ctan /graphics/metapost/contrib/macros/repere -catalogue-license lppl1.3 -catalogue-topics teaching -catalogue-version 19.06 +catalogue-license lppl1.3c +catalogue-topics teaching maths graphics-mpost +catalogue-version 23.02 name repltext category Package @@ -262293,24 +267583,24 @@ catalogue-version 1.1 name rerunfilecheck category Package -revision 54841 +revision 63869 shortdesc Checksum based rerun checks on auxiliary files relocated 1 longdesc The package provides additional rerun warnings if some -longdesc auxiliary files have changed. It is based on MD5 checksum, -longdesc provided by pdfTeX. +longdesc auxiliary files have changed. It is based on MD5 checksum +longdesc provided by pdfTeX, LuaTeX, XeTeX. depend atveryend depend uniquecounter -containersize 3124 -containerchecksum 0ac228620001a42add1da0ea4ee7511413789e6c8e139a8a8a9f5cd0423893b324c1ca3644cef7b16bb5d2d4df26baa73b61d7aea2592b752e446b7185ff0cf5 -doccontainersize 313676 -doccontainerchecksum 5aac852ec67c34b6b2f7d040f7791ff9d706446b5b2a395177753d279718d5685a99b25a6f4121d532a395a29ead4f62d76760de48b0beb65adac0c08fbe281e -docfiles size=79 +containersize 3140 +containerchecksum 464daf4ee4f443f4ff329e28b928df94e83e83696e3e5604de7b51beb61c25a0ce50dc00b35d2cc8d0cabb32d10bc28c3c06069f5dd7eafd9fdb2d44a3adf313 +doccontainersize 331404 +doccontainerchecksum 7c570d38c989aaeb7db5271501c5384ba8b8601396f629d7ffee32baaf1c289592bb5d69d2cb2784cfb2008fdc047098d43dc20803e4b90eac59848c15dd0cb7 +docfiles size=86 RELOC/doc/latex/rerunfilecheck/README.md RELOC/doc/latex/rerunfilecheck/rerunfilecheck-example.cfg RELOC/doc/latex/rerunfilecheck/rerunfilecheck.pdf details="Package documentation" -srccontainersize 7320 -srccontainerchecksum 5201946b44007bc115cd7840f20c9948dd1a6e403290c301e5e735be80eb91c8913630d0d1e41343bdfefdd18ba0a247869d28ab152a21de67b932f1d181fa39 +srccontainersize 7216 +srccontainerchecksum 2d987c01bc0f67708080d4578f308444ed3220a37ee11ef1a95c2a9bfa0ab49a46ab46d291153f0c748935f473124d70212a821233b22f1e606be6183e4afe81 srcfiles size=7 RELOC/source/latex/rerunfilecheck/rerunfilecheck.dtx runfiles size=3 @@ -262318,9 +267608,96 @@ runfiles size=3 catalogue-contact-bugs https://github.com/ho-tex/rerunfilecheck/issues catalogue-contact-repository https://github.com/ho-tex/rerunfilecheck catalogue-ctan /macros/latex/contrib/rerunfilecheck -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics compilation -catalogue-version 1.9 +catalogue-version 1.10 + +name rescansync +category Package +revision 63856 +shortdesc Re-scan tokens with synctex information +relocated 1 +longdesc Allow users to execute saved code to typeset text while +longdesc preserving SyncTeX information. +containersize 2096 +containerchecksum 4ad1b90e89a005930d1ad5500418c0d867a1100d21429af64edcc803811e29bf4cd79815fc0018505c8d9504069f7f17bf6e09465484bff5ddb3dbc79f54aab1 +doccontainersize 380868 +doccontainerchecksum 602eaceabe16b326a1e2546b3fea21f22c17b92d01500dfc30f0659f0cad8d93c4e919a18af4a96e8633afcc4c08346dec8f5e84f55fb1f54cc2067e2b54ca42 +docfiles size=96 + RELOC/doc/latex/rescansync/README details="Readme" + RELOC/doc/latex/rescansync/rescansync.pdf details="Package documentation" + RELOC/doc/latex/rescansync/rescansync.tex +runfiles size=2 + RELOC/tex/latex/rescansync/rescansync.sty +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/rescansync +catalogue-license lppl1.3c +catalogue-topics expl3 macro-supp +catalogue-version 0.0.0 + +name resmes +category Package +revision 65375 +shortdesc Measure restriction symbol in LaTeX +relocated 1 +longdesc This package provides a simple macro \resmes that prints the +longdesc measure restriction symbol. +containersize 940 +containerchecksum b55b0ed4883dacc78d7d4406fff05ac80421259e85297ae8050b6a77539fd38655caa6afe6afb7c3d8654d9da0d965d7cfe52cbbcc6ed9f7be4d87aa9cd6abc4 +doccontainersize 67908 +doccontainerchecksum f2faf70d393cead42f20aeb5fef487870c69c8fb557fcf6dc3c589fda448a73b2ca0a0a39e4d963e67a0b38f976cefe410b2c983f820dfe7aca2c255a24f4bbd +docfiles size=18 + RELOC/doc/latex/resmes/README.md details="Readme" + RELOC/doc/latex/resmes/resmes.pdf details="Package documentation" +srccontainersize 1404 +srccontainerchecksum 67d88b13822d35065708d68b57c2013fd19276bed7cd433235f94b9af0c47b92c13307177c78cd16e3a87a6db634a3c93a1d8e8b30e8bca1babdece0defc8a0d +srcfiles size=2 + RELOC/source/latex/resmes/resmes.dtx + RELOC/source/latex/resmes/resmes.ins +runfiles size=1 + RELOC/tex/latex/resmes/resmes.sty +catalogue-contact-bugs https://github.com/Loara/resmes/issues +catalogue-contact-home https://github.com/Loara/resmes +catalogue-contact-repository https://github.com/Loara/resmes.git +catalogue-contact-support https://github.com/Loara/resmes/discussions +catalogue-ctan /macros/latex/contrib/resmes +catalogue-license mit +catalogue-topics maths +catalogue-version 1.0 + +name resolsysteme +category Package +revision 66192 +shortdesc Work on linear systems using xint or pyluatex +relocated 1 +longdesc This package provides some commands (in French) to perform +longdesc calculations on small (2x2 or 3x3 or 4x4) linear systems, with +longdesc xint or pyluatex: \DetMatrice or \DetMatricePY to diplay the +longdesc determinant of a matrix (with formatting options); +longdesc \MatriceInverse or \MatriceInversePY to display the invers of a +longdesc matrix (with formatting options) ; \SolutionSysteme or +longdesc \SolutionSystemePY to display the solution of a linear system +longdesc (with formatting options); ... +containersize 8356 +containerchecksum b4d196ea41fd5f4c9d78df932516a8f1bcb2a8862a4b367a8a288678213fe7a7d6fa8f4ee531982dec11bf04576cc5836bf47368f282cd939464ea6df748eccb +doccontainersize 475044 +doccontainerchecksum 3fe3d927326acf296c5cafed3c7ab5902ba7c8c943e6bab280b1e0f0a997f90c3e2676522f3dc7dae0436845b4caeb2c58804280d546dd4e6223bd1984659aa2 +docfiles size=134 + RELOC/doc/latex/resolsysteme/README.md details="Readme" + RELOC/doc/latex/resolsysteme/ResolSysteme-doc.pdf details="Package documentation" language="fr" + RELOC/doc/latex/resolsysteme/ResolSysteme-doc.tex + RELOC/doc/latex/resolsysteme/ResolSysteme-exemples-pyluatex.pdf details="Example of use (with pyluatex)" language="fr" + RELOC/doc/latex/resolsysteme/ResolSysteme-exemples-pyluatex.tex + RELOC/doc/latex/resolsysteme/ResolSysteme-exemples.pdf details="Example of use (with xint)" language="fr" + RELOC/doc/latex/resolsysteme/ResolSysteme-exemples.tex +runfiles size=39 + RELOC/tex/latex/resolsysteme/ResolSysteme.sty +catalogue-contact-repository https://github.com/cpierquet/ResolSysteme +catalogue-contact-support https://github.com/cpierquet/ResolSysteme/issues +catalogue-ctan /macros/latex/contrib/resolsysteme +catalogue-license lppl1.3c +catalogue-topics maths matrix calculation use-luatex +catalogue-version 0.1.5 name resphilosophica category Package @@ -262476,22 +267853,27 @@ catalogue-version 0.2 name reverxii category Package -revision 24976 +revision 63753 shortdesc Playing Reversi in TeX relocated 1 longdesc Following the lead of xii.tex, this little (938 characters) longdesc program that plays Reversi. (The program incorporates some longdesc primitive AI.) -containersize 456 -containerchecksum fa6efb9655cda15356163a93ca89f2b6a114ea5bdc151774bc99910fabd3306781319f92a5b5728f29df136c73f994f49011e31ea9c1c01b4ef2fed10af10a93 -doccontainersize 206752 -doccontainerchecksum ff6b03b426de5508eb31fa5b2fe615fd5b7f0a6721e949bb48e1954c28cb547faa079461c0b1f885163bcba40c7f7d2a3fdc7dfb3946c08c308f5c37d33605a2 -docfiles size=55 - RELOC/doc/plain/reverxii/README details="Readme" - RELOC/doc/plain/reverxii/reverxii.pdf details="Package documentation" - RELOC/doc/plain/reverxii/reverxii.tex -catalogue-ctan /macros/plain/contrib/reverxii -catalogue-license lppl1.3 +containersize 1216 +containerchecksum 28117df00d778cfcc2ac035545c561ba1f078f024a8676e32d339f4c47b2206e2711474edde9c15987c397dc192528c8a584dc6bd4121e6da6588dc1a2bed71c +doccontainersize 229340 +doccontainerchecksum 4d47dde91731affbaaf168e1a3ed79160312d9533636a95c6f9736e6f8c01f2514ec4e4c015bc9d68d0abf637b39fc063820c856693e8876ff7aaa1935f009f9 +docfiles size=59 + RELOC/doc/generic/reverxii/README.md details="Readme" + RELOC/doc/generic/reverxii/reverxii.pdf details="Package documentation" +srccontainersize 7072 +srccontainerchecksum 2dd66631854044834677e0167545de184382c2f9a925b4761b041137ac957dfb2bc645f1065c675efc45e400f7d8ea2a79f0bdcbdc84bb29c1e4bad1d54769d7 +srcfiles size=4 + RELOC/source/generic/reverxii/reverxii.dtx +runfiles size=1 + RELOC/tex/generic/reverxii/reverxii.tex +catalogue-ctan /macros/generic/reverxii +catalogue-license lppl1.3c catalogue-topics games frivolous name revquantum @@ -262935,32 +268317,62 @@ catalogue-license gpl catalogue-topics geometry catalogue-version 0.92 +name robotarm +category Package +revision 63116 +shortdesc TikZ powered LaTeX package to draw parameterized 2D robot arms +relocated 1 +longdesc This LaTeX package uses TikZ to draw parameterized 2D robot +longdesc arms, for example to be used in educational material. +containersize 2924 +containerchecksum fa60eb073a9a47690935403a13da3570a4aa44e9ee13c12c5a4ff93a1f02509ab35b5f64a03a67be74190420d0b174fbb4b9a34070a646ea557f03a584fd354e +doccontainersize 184700 +doccontainerchecksum 2d2838b21c1b0c8201375e0e4e4599c7ca11bfbf05a55e070db236ddd3793e51d1f809cb9c5e92bb9faa2e3b90b01cdc9579bbb44c653294e384c66b7628ae5e +docfiles size=47 + RELOC/doc/latex/robotarm/README.md details="Readme" + RELOC/doc/latex/robotarm/robotarm.pdf details="Package documentation" +srccontainersize 6884 +srccontainerchecksum 02b928d574b29d2de845421b650156432911c3a917c7b2f5f13a1e3decc513abf5a73fd1d8bc27563885c9502e3a6058258a79e4fca2a1cfd59437a033b3d58d +srcfiles size=8 + RELOC/source/latex/robotarm/robotarm.dtx +runfiles size=4 + RELOC/tex/latex/robotarm/robotarm.sty +catalogue-contact-bugs https://github.com/max-sn/robotarm/issues +catalogue-contact-repository https://github.com/max-sn/robotarm +catalogue-ctan /graphics/pgf/contrib/robotarm +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 0.1 + name roboto category Package -revision 54512 +revision 64350 shortdesc Support for the Roboto family of fonts relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -longdesc support for the Roboto, RobotoCondensed, RobotoMono and -longdesc RobotoSlab families of fonts, designed by Christian Robertson -longdesc for Google. +longdesc support for the Roboto Sans, Roboto Condensed, Roboto Mono, +longdesc Roboto Slab and Roboto Serif families of fonts, designed by +longdesc Christian Robertson and Greg Gazdowicz for Google. execute addMap roboto.map -containersize 9903788 -containerchecksum 08e409a234850d70207bc7551d61bdfe40869af032bba2d81a99f7507d399badaeb9e8dd8d663127d01ec78520c7dbb1d60b5de8395ed5a180de2d7b8c59aef5 -doccontainersize 394584 -doccontainerchecksum f523a6017869c98991c766ea1ca3febc36e780fc66c0f9fbdd00036708865663670d6de178781489f49b2a0a0c7d3fc01c240fffe7cb06d6cb98fe355b15e549 -docfiles size=121 +containersize 25354284 +containerchecksum d82d9ce9480bf0c9d7f6559e7bcbb5fe8f22179adc44113121f67fc0daadd66c938b9fcf9a41073843e1cc981162972a79f15fe6162f68ba7a01b74732b0f01a +doccontainersize 514128 +doccontainerchecksum 2ceaedd2b273c252e8510a98cb05d581dad8aff94f3c8be1dc47fbbc9b52a0546ba8025c6bf0c51d97d0573d208af2f8a635c0cf405a980ae8cf8e4a1f13e499 +docfiles size=160 RELOC/doc/fonts/roboto/COPYRIGHT.txt RELOC/doc/fonts/roboto/ChangeLogLaTeX.txt RELOC/doc/fonts/roboto/DESCRIPTION.en_us.html RELOC/doc/fonts/roboto/LICENSE.txt + RELOC/doc/fonts/roboto/OFL.txt RELOC/doc/fonts/roboto/README details="Readme" RELOC/doc/fonts/roboto/RobotoSpecimenBook.pdf RELOC/doc/fonts/roboto/roboto-samples.pdf details="Font samples" RELOC/doc/fonts/roboto/roboto-samples.tex -runfiles size=6831 +runfiles size=21476 RELOC/fonts/enc/dvips/roboto/rbto_2cs4gp.enc + RELOC/fonts/enc/dvips/roboto/rbto_2uubtm.enc RELOC/fonts/enc/dvips/roboto/rbto_2ylw52.enc + RELOC/fonts/enc/dvips/roboto/rbto_33jnad.enc RELOC/fonts/enc/dvips/roboto/rbto_35j2t6.enc RELOC/fonts/enc/dvips/roboto/rbto_4jpen6.enc RELOC/fonts/enc/dvips/roboto/rbto_5au2tj.enc @@ -262970,6 +268382,7 @@ runfiles size=6831 RELOC/fonts/enc/dvips/roboto/rbto_6rxeh6.enc RELOC/fonts/enc/dvips/roboto/rbto_7juiin.enc RELOC/fonts/enc/dvips/roboto/rbto_a4rth4.enc + RELOC/fonts/enc/dvips/roboto/rbto_acwfoz.enc RELOC/fonts/enc/dvips/roboto/rbto_adklll.enc RELOC/fonts/enc/dvips/roboto/rbto_as7fdj.enc RELOC/fonts/enc/dvips/roboto/rbto_b5rac7.enc @@ -262978,9 +268391,12 @@ runfiles size=6831 RELOC/fonts/enc/dvips/roboto/rbto_ddkove.enc RELOC/fonts/enc/dvips/roboto/rbto_dfqeeu.enc RELOC/fonts/enc/dvips/roboto/rbto_dqsbwe.enc + RELOC/fonts/enc/dvips/roboto/rbto_dwsqhe.enc RELOC/fonts/enc/dvips/roboto/rbto_e24joy.enc RELOC/fonts/enc/dvips/roboto/rbto_el2qpt.enc + RELOC/fonts/enc/dvips/roboto/rbto_epkquw.enc RELOC/fonts/enc/dvips/roboto/rbto_ghuabv.enc + RELOC/fonts/enc/dvips/roboto/rbto_h4xxl2.enc RELOC/fonts/enc/dvips/roboto/rbto_h6xohf.enc RELOC/fonts/enc/dvips/roboto/rbto_hdhu7c.enc RELOC/fonts/enc/dvips/roboto/rbto_hlrajr.enc @@ -262989,12 +268405,26 @@ runfiles size=6831 RELOC/fonts/enc/dvips/roboto/rbto_imandq.enc RELOC/fonts/enc/dvips/roboto/rbto_iqgrsz.enc RELOC/fonts/enc/dvips/roboto/rbto_j2bk2t.enc + RELOC/fonts/enc/dvips/roboto/rbto_je7obu.enc + RELOC/fonts/enc/dvips/roboto/rbto_jsccdt.enc + RELOC/fonts/enc/dvips/roboto/rbto_ktqtin.enc + RELOC/fonts/enc/dvips/roboto/rbto_lbdvpp.enc + RELOC/fonts/enc/dvips/roboto/rbto_lfutjz.enc RELOC/fonts/enc/dvips/roboto/rbto_lhlrii.enc + RELOC/fonts/enc/dvips/roboto/rbto_lkebxp.enc + RELOC/fonts/enc/dvips/roboto/rbto_meyhpi.enc + RELOC/fonts/enc/dvips/roboto/rbto_muuaub.enc RELOC/fonts/enc/dvips/roboto/rbto_ocbbsb.enc RELOC/fonts/enc/dvips/roboto/rbto_ogts26.enc + RELOC/fonts/enc/dvips/roboto/rbto_pn7nyn.enc + RELOC/fonts/enc/dvips/roboto/rbto_pufewj.enc RELOC/fonts/enc/dvips/roboto/rbto_q5hjoy.enc + RELOC/fonts/enc/dvips/roboto/rbto_qb5szn.enc RELOC/fonts/enc/dvips/roboto/rbto_qhmgos.enc + RELOC/fonts/enc/dvips/roboto/rbto_qi3puo.enc + RELOC/fonts/enc/dvips/roboto/rbto_qtf2ec.enc RELOC/fonts/enc/dvips/roboto/rbto_qulak4.enc + RELOC/fonts/enc/dvips/roboto/rbto_r7pbwp.enc RELOC/fonts/enc/dvips/roboto/rbto_rehtu3.enc RELOC/fonts/enc/dvips/roboto/rbto_s5b5bo.enc RELOC/fonts/enc/dvips/roboto/rbto_schjax.enc @@ -263002,6 +268432,8 @@ runfiles size=6831 RELOC/fonts/enc/dvips/roboto/rbto_swa2hd.enc RELOC/fonts/enc/dvips/roboto/rbto_t46jwv.enc RELOC/fonts/enc/dvips/roboto/rbto_t4kqic.enc + RELOC/fonts/enc/dvips/roboto/rbto_tp43rw.enc + RELOC/fonts/enc/dvips/roboto/rbto_u4yc4h.enc RELOC/fonts/enc/dvips/roboto/rbto_uf77so.enc RELOC/fonts/enc/dvips/roboto/rbto_wkn3wn.enc RELOC/fonts/enc/dvips/roboto/rbto_wttfgh.enc @@ -263039,6 +268471,42 @@ runfiles size=6831 RELOC/fonts/opentype/google/roboto/RobotoMono-Regular.otf RELOC/fonts/opentype/google/roboto/RobotoMono-Thin.otf RELOC/fonts/opentype/google/roboto/RobotoMono-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Black.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-BlackItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-ExtraBold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-ExtraBoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-ExtraLight.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-ExtraLightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Medium.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-SemiBold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-SemiBoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-Thin.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif-ThinItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Black.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-BlackItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Bold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-BoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-ExtraBold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-ExtraBoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-ExtraLight.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-ExtraLightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Italic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Light.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-LightItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Medium.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-MediumItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Regular.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-SemiBold.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-SemiBoldItalic.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-Thin.otf + RELOC/fonts/opentype/google/roboto/RobotoSerif_Condensed-ThinItalic.otf RELOC/fonts/opentype/google/roboto/RobotoSlab-Bold.otf RELOC/fonts/opentype/google/roboto/RobotoSlab-Light.otf RELOC/fonts/opentype/google/roboto/RobotoSlab-Regular.otf @@ -264437,6 +269905,1626 @@ runfiles size=6831 RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-t1.tfm RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1--base.tfm RELOC/fonts/tfm/google/roboto/RobotoMono-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerif-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Black-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Light-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-sup-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-lgr--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-lgr.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ot1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ts1.tfm RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr--base.tfm RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-lgr.tfm RELOC/fonts/tfm/google/roboto/RobotoSlab-Bold-tlf-ly1--base.tfm @@ -264533,6 +271621,42 @@ runfiles size=6831 RELOC/fonts/type1/google/roboto/RobotoMono-Regular.pfb RELOC/fonts/type1/google/roboto/RobotoMono-Thin.pfb RELOC/fonts/type1/google/roboto/RobotoMono-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Black.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-BlackItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-ExtraBold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-ExtraLight.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-ExtraLightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Medium.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-SemiBold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-SemiBoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-Thin.pfb + RELOC/fonts/type1/google/roboto/RobotoSerif-ThinItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Black.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-BlackItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Bold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-BoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-ExtraBold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-ExtraBoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-ExtraLight.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-ExtraLightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Italic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Light.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-LightItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Medium.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-MediumItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Regular.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-SemiBold.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-SemiBoldItalic.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-Thin.pfb + RELOC/fonts/type1/google/roboto/RobotoSerifCondensed-ThinItalic.pfb RELOC/fonts/type1/google/roboto/RobotoSlab-Bold.pfb RELOC/fonts/type1/google/roboto/RobotoSlab-Light.pfb RELOC/fonts/type1/google/roboto/RobotoSlab-Regular.pfb @@ -265193,6 +272317,762 @@ runfiles size=6831 RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-sc-t1.vf RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-t1.vf RELOC/fonts/vf/google/roboto/RobotoMono-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Black-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerif-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Black-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BlackItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Bold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Italic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Light-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Medium-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Regular-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-Thin-tosf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-lf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-lf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-osf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-osf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-sup-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-sup-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-sup-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-lgr.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ly1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ot1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/google/roboto/RobotoSerifCondensed-ThinItalic-tosf-ts1.vf RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-lgr.vf RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-ly1.vf RELOC/fonts/vf/google/roboto/RobotoSlab-Bold-tlf-sc-lgr.vf @@ -265230,35 +273110,60 @@ runfiles size=6831 RELOC/tex/latex/roboto/LGRRoboto-TLF.fd RELOC/tex/latex/roboto/LGRRoboto-TOsF.fd RELOC/tex/latex/roboto/LGRRobotoMono-TLF.fd + RELOC/tex/latex/roboto/LGRRobotoSerif-LF.fd + RELOC/tex/latex/roboto/LGRRobotoSerif-OsF.fd + RELOC/tex/latex/roboto/LGRRobotoSerif-Sup.fd + RELOC/tex/latex/roboto/LGRRobotoSerif-TLF.fd + RELOC/tex/latex/roboto/LGRRobotoSerif-TOsF.fd RELOC/tex/latex/roboto/LGRRobotoSlab-TLF.fd RELOC/tex/latex/roboto/LY1Roboto-LF.fd RELOC/tex/latex/roboto/LY1Roboto-OsF.fd RELOC/tex/latex/roboto/LY1Roboto-TLF.fd RELOC/tex/latex/roboto/LY1Roboto-TOsF.fd RELOC/tex/latex/roboto/LY1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/LY1RobotoSerif-LF.fd + RELOC/tex/latex/roboto/LY1RobotoSerif-OsF.fd + RELOC/tex/latex/roboto/LY1RobotoSerif-Sup.fd + RELOC/tex/latex/roboto/LY1RobotoSerif-TLF.fd + RELOC/tex/latex/roboto/LY1RobotoSerif-TOsF.fd RELOC/tex/latex/roboto/LY1RobotoSlab-TLF.fd RELOC/tex/latex/roboto/OT1Roboto-LF.fd RELOC/tex/latex/roboto/OT1Roboto-OsF.fd RELOC/tex/latex/roboto/OT1Roboto-TLF.fd RELOC/tex/latex/roboto/OT1Roboto-TOsF.fd RELOC/tex/latex/roboto/OT1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/OT1RobotoSerif-LF.fd + RELOC/tex/latex/roboto/OT1RobotoSerif-OsF.fd + RELOC/tex/latex/roboto/OT1RobotoSerif-Sup.fd + RELOC/tex/latex/roboto/OT1RobotoSerif-TLF.fd + RELOC/tex/latex/roboto/OT1RobotoSerif-TOsF.fd RELOC/tex/latex/roboto/OT1RobotoSlab-TLF.fd RELOC/tex/latex/roboto/T1Roboto-LF.fd RELOC/tex/latex/roboto/T1Roboto-OsF.fd RELOC/tex/latex/roboto/T1Roboto-TLF.fd RELOC/tex/latex/roboto/T1Roboto-TOsF.fd RELOC/tex/latex/roboto/T1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/T1RobotoSerif-LF.fd + RELOC/tex/latex/roboto/T1RobotoSerif-OsF.fd + RELOC/tex/latex/roboto/T1RobotoSerif-Sup.fd + RELOC/tex/latex/roboto/T1RobotoSerif-TLF.fd + RELOC/tex/latex/roboto/T1RobotoSerif-TOsF.fd RELOC/tex/latex/roboto/T1RobotoSlab-TLF.fd RELOC/tex/latex/roboto/TS1Roboto-LF.fd RELOC/tex/latex/roboto/TS1Roboto-OsF.fd RELOC/tex/latex/roboto/TS1Roboto-TLF.fd RELOC/tex/latex/roboto/TS1Roboto-TOsF.fd RELOC/tex/latex/roboto/TS1RobotoMono-TLF.fd + RELOC/tex/latex/roboto/TS1RobotoSerif-LF.fd + RELOC/tex/latex/roboto/TS1RobotoSerif-OsF.fd + RELOC/tex/latex/roboto/TS1RobotoSerif-TLF.fd + RELOC/tex/latex/roboto/TS1RobotoSerif-TOsF.fd RELOC/tex/latex/roboto/TS1RobotoSlab-TLF.fd RELOC/tex/latex/roboto/roboto-mono.sty + RELOC/tex/latex/roboto/roboto-serif.sty RELOC/tex/latex/roboto/roboto.sty catalogue-ctan /fonts/roboto -catalogue-license apache2 lppl +catalogue-license apache2 ofl lppl catalogue-topics font font-body font-proportional font-mono font-sans font-serif font-multilingual font-greek font-type1 font-otf font-supp font-t1enc name robustcommand @@ -266513,7 +274418,7 @@ catalogue-topics font font-calligraphic font-mf font-type1 name rsfso category Package -revision 37965 +revision 60849 shortdesc A mathematical calligraphic font based on rsfs relocated 1 longdesc The package provides virtual fonts and LaTeX support files for @@ -266522,11 +274427,11 @@ longdesc fonts (which must also be present for successful installation, longdesc with the slant substantially reduced. The output is quite longdesc similar to that from the Adobe Mathematical Pi script font. execute addMap rsfso.map -containersize 3796 -containerchecksum ce6e600f2fd5ce1aba31092c43401feeadc7927d22ab630f0fb28f421bdea858fb9e382f4d0e36036f6f4ecbd1232265216c29b2edcd44583df6fb3340ce468d -doccontainersize 145708 -doccontainerchecksum ff045c68d70079df6d2b21368fe599beb9ac1ba0e339a8c448bd75565774c237520f79fd0e3d119209765eef29f5891dabf689c7756791a91bb7c7ea1d3dcf3e -docfiles size=38 +containersize 3780 +containerchecksum 7632b0cafcb0d28f5f4b742f8c457634a9cd1ec7fd59e61e01fd5f3da3964ae941fdf2fbaba94b0d0934270ba56a2224352e11075970e28bcf16bd9b6f97f236 +doccontainersize 149180 +doccontainerchecksum ccb3ce73add1f2a4f269728b8189569637327d85cd1a4d29a03904872cff10ce3057bd01a9d74a94373c3aaa52afe74a98d07bcad248fd18943efb0bace6db36 +docfiles size=39 RELOC/doc/fonts/rsfso/README details="Readme" RELOC/doc/fonts/rsfso/mh2scr0.png RELOC/doc/fonts/rsfso/rsfso-doc.pdf details="Package documentation" @@ -266547,8 +274452,8 @@ runfiles size=12 catalogue-also calrsfs mathrsfs catalogue-ctan /fonts/rsfso catalogue-license lppl -catalogue-topics font font-virtual font-calligraphic -catalogue-version 1.02 +catalogue-topics font-virtual font-calligraphic font-supp font-supp-maths +catalogue-version 1.03 name rterface category Package @@ -266737,15 +274642,6 @@ containerchecksum 677a59994a820a8509809d3eeff84a60447c5e72ac576c5aadc5d788605c38 binfiles arch=armhf-linux size=1 bin/armhf-linux/rubikrotation -name rubik.i386-cygwin -category Package -revision 32919 -shortdesc i386-cygwin files of rubik -containersize 344 -containerchecksum 6ed07f4e1adfdb1bb6ab9a3fbdb34f7d3e413c8b762fb38684f55088578bb2acc2d199ed42bc01698f4fd34eff054e79052cf07384a2d8210c5da8503c3b3d95 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/rubikrotation - name rubik.i386-freebsd category Package revision 32919 @@ -266791,14 +274687,14 @@ containerchecksum df71c26dcf4c75c9fab7a09db9b588d7043cd92973f1e3085b469d400e25fa binfiles arch=universal-darwin size=1 bin/universal-darwin/rubikrotation -name rubik.win32 +name rubik.windows category Package -revision 32919 -shortdesc win32 files of rubik -containersize 684 -containerchecksum 9b517494fc20ee689649d3d501f8b6a0df2bcb7ab2d795063da3dff68c5fd39c63f736ebe833eb91e2171c3294980ed9ee96ca0ab17672bf58a9e18ae33aba59 -binfiles arch=win32 size=1 - bin/win32/rubikrotation.exe +revision 65891 +shortdesc windows files of rubik +containersize 2308 +containerchecksum 75448115cd1ee5396cbb0fa4efed294b908c69a9a086492116fe5ae1a0bd43e59717668d302a746f6b42ef30bedbd433f49de7d99714643ba40f871551c4d93c +binfiles arch=windows size=2 + bin/windows/rubikrotation.exe name rubik.x86_64-cygwin category Package @@ -266975,7 +274871,7 @@ catalogue-version 1 name runcode category Package -revision 58908 +revision 65588 shortdesc Execute foreign source code and embed the result in the pdf file relocated 1 longdesc This LaTeX package executes programming source codes (including @@ -266988,21 +274884,31 @@ longdesc the Python talk2stat package. Currently, this server-mode longdesc supports Julia, MatLab, Python, and R. More languages will be longdesc added. For more details and usage examples, refer to the longdesc package's github repository. -containersize 3568 -containerchecksum d3ea947106e824d697e15f82466a36e36215a6a3b5c954cfd6250cb3a896e2de2ba6163cf9be5510bf4250a57809d27ae8c06915d9f601057608e7d57e08ea1e -doccontainersize 174012 -doccontainerchecksum 48e8847f7a50e14c809b08244cb9851c25a367799aa3ad673472a8e1b66aad2e4dc0ceaedc56fe2fb106c610f4fc825c10b05665a385ef7347bdc87a85338a0d -docfiles size=46 +containersize 4456 +containerchecksum a16f61affff0ab5d58df300b638d62fa0e48a8537ddfead3d7e76113e54f31c0f0c8424ef183233d109be014701ba57b78618ec131b5bd3c526b10645e1f35f3 +doccontainersize 408672 +doccontainerchecksum b48827b01c986fa1e11469a36f9426255f45699e11002d2826002d1745915a3e36a9919f901ca1a6b9d7a04a86aacbfbcf934732dfdce8ad20771b1b027b3e55 +docfiles size=119 RELOC/doc/latex/runcode/README details="Readme" + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln2.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln4.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln5.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln6.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln7.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln8.tex + RELOC/doc/latex/runcode/generated/runcode_troubleshoot_inln9.tex + RELOC/doc/latex/runcode/generated/testWithrunR.tex RELOC/doc/latex/runcode/runcode.pdf details="Package documentation" RELOC/doc/latex/runcode/runcode.tex -runfiles size=3 + RELOC/doc/latex/runcode/runcode_troubleshoot.pdf details="Troubleshooting" + RELOC/doc/latex/runcode/runcode_troubleshoot.tex +runfiles size=5 RELOC/tex/latex/runcode/runcode.sty catalogue-contact-repository https://github.com/Ossifragus/runcode catalogue-ctan /macros/latex/contrib/runcode catalogue-license lppl1.3c catalogue-topics exec-foreign callback -catalogue-version 1.1 +catalogue-version 1.8 name russ category Package @@ -267032,7 +274938,7 @@ catalogue-topics russian name rutitlepage category Package -revision 51073 +revision 62143 shortdesc Radboud University Titlepage Package relocated 1 longdesc This is an unofficial LaTeX package to generate titlepages for @@ -267040,15 +274946,15 @@ longdesc the Radboud University, Nijmegen. It uses official vector logos longdesc from the university. This package requires the following other longdesc LaTeX packages: geometry, graphicx, ifpdf, keyval, iflang, and, longdesc optionnaly, babel-dutch. -containersize 2658316 -containerchecksum e071bf5dfcb8572dac3287394be5052ca04c6ec90182e306f020ad02c8f4db134c92b41f064423c1063fe5c1c465cf952a8d0d8fec4e917aba82f76850cf38c9 -doccontainersize 191808 -doccontainerchecksum e6884d2eaa6e5fc9448c033f1a48ee218f171d5fc16e7a977db89f7807c0bb6d1bb4c212ee489bd882d87149003d9aea2da3170045e165150bb8f7578b719107 -docfiles size=48 +containersize 2658324 +containerchecksum fb7d3aa93191c443ba31e1a366f34efa7dfcc896c534d3696002ebc54f3b24cb34131c50fc7d584f4b725d3b56a323628441398b2e1116789437460b97e21fc7 +doccontainersize 198592 +doccontainerchecksum f8293227a99eb022a2c3a3ac75d7e8ba6f61880b62f5cce11eb791bb489386de93cefcc2b607cd4880ca58bb933328af66ad93b4c6ce0e16a842c56fed231206 +docfiles size=51 RELOC/doc/latex/rutitlepage/README.md details="Readme" RELOC/doc/latex/rutitlepage/rutitlepage.pdf details="Package documentation" -srccontainersize 3708 -srccontainerchecksum bff9526027292b6484d9a5ebe66d57400eace4fb94f39c97569aeda1c1dcb32e30ace085b07bfdac096ca0dcd587bd7ab8509190dfe9dcd08e4fa7d737fed66f +srccontainersize 3792 +srccontainerchecksum f42d310b3697077a842fc13f580adc605826c94984102769b6b27de26548792cfac59517319ebbd20719068c012389d0c0a10dc0a89986a89855c8ab8d039620 srcfiles size=4 RELOC/source/latex/rutitlepage/rutitlepage.dtx RELOC/source/latex/rutitlepage/rutitlepage.ins @@ -267069,7 +274975,7 @@ catalogue-contact-repository https://github.com/dopefishh/rutitlepage catalogue-ctan /macros/latex/contrib/rutitlepage catalogue-license lppl1.3 catalogue-topics titlepage logo -catalogue-version 2.3 +catalogue-version 3.0 name rviewport category Package @@ -267227,6 +275133,31 @@ catalogue-license lppl1.3 catalogue-topics graphics-use comp-net catalogue-version 0.7a +name sacsymb +category Package +revision 65768 +shortdesc "Sacred Symbols" prepared with TikZ +relocated 1 +longdesc The author tells us: This is "a package with symbols prepared +longdesc with TikZ. These symbols are the variables used in the space of +longdesc the collapse of the wave function of a quantum field associated +longdesc with the micro-tubule while exploring an Orchestrated, +longdesc objective reduction (Orch OR) theory of consciousness as +longdesc applied to the three brains model of psychological experience." +containersize 1364 +containerchecksum 59c61767c7f9cc782ca1a9cff78c0226f7860080453a772172f8dfba0c1deebfddba701704d15a2d05cfd010b4baae553d30207ff4701056a263a51f5a4e03e8 +doccontainersize 40936 +doccontainerchecksum 135724503c2c646bd49ad1e434f5e4c20335f23605839847b3c6729945e4550b6f855ea015e5020ff9de7ca4bc5a46d70e99dc9f372e6fbd2cbe8aaf55683984 +docfiles size=12 + RELOC/doc/latex/sacsymb/README.txt details="Readme" + RELOC/doc/latex/sacsymb/sacsymb-doc.pdf details="Package documentation" + RELOC/doc/latex/sacsymb/sacsymb-doc.tex +runfiles size=2 + RELOC/tex/latex/sacsymb/sacsymb.sty +catalogue-ctan /graphics/pgf/contrib/sacsymb +catalogue-license lppl1 +catalogue-topics graphics-symb pgf-tikz + name sageep category Package revision 15878 @@ -267263,7 +275194,7 @@ catalogue-version 1.0 name sanitize-umlaut category Package -revision 53292 +revision 63770 shortdesc Sanitize umlauts for MakeIndex and pdfLaTeX relocated 1 longdesc This package sanitizes umlauts to be used directly in index @@ -267271,38 +275202,38 @@ longdesc entries for MakeIndex and friends with pdfLaTeX. This means longdesc that inside \index an umlaut can be used as "U or as U. In both longdesc cases, the letter is written as "U into the raw index file for longdesc correct processing with MakeIndex and pdfLaTeX. -containersize 1596 -containerchecksum 5dfdecb98f1be63d358cb029f7428cde40daae2aec1c991b345b5f8097862e43e85f329bd371624a2022c15231db2c4e86ee144c6c76edb9214725cfc90ca798 -doccontainersize 372588 -doccontainerchecksum eba6143a88ce245d1e67d0205f5ce69b86a17c598daf1faa42e0f4675af6674b6a3559ebe4267efa0919eecda642c2d3bbc7ebb5d8650a53fd8d3868241bc813 -docfiles size=111 - RELOC/doc/latex/sanitize-umlaut/CHANGES - RELOC/doc/latex/sanitize-umlaut/README details="Readme" +containersize 1684 +containerchecksum 7521037e7dc35836b347e3e2387cefdc8acca4504dd9fd24c1efa9857039dd2314cdef0c2281506bc2d4e03dde4e994bec938851be0e9ebc9231990965199010 +doccontainersize 385128 +doccontainerchecksum a3a559be38b04dba0f9478ebf1cc7c437f457368ed4dedf16bc42038c95053cdac9d1dd0061c1eb30e8c88235d348ea9edf375aef30088e45635323e835c3e55 +docfiles size=119 + RELOC/doc/latex/sanitize-umlaut/CHANGES.md + RELOC/doc/latex/sanitize-umlaut/README.md details="Readme" RELOC/doc/latex/sanitize-umlaut/german.ist RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.doc.sty RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.pdf details="Package documentation" RELOC/doc/latex/sanitize-umlaut/sanitize-umlaut.tex -runfiles size=1 +runfiles size=2 RELOC/tex/latex/sanitize-umlaut/sanitize-umlaut.sty catalogue-contact-repository https://github.com/T-F-S/sanitize-umlaut catalogue-ctan /macros/latex/contrib/sanitize-umlaut catalogue-license lppl1.3 catalogue-topics utf8-adapt enc-juggle index-proc -catalogue-version 1.10 +catalogue-version 1.2.1 name sankey category Package -revision 58661 +revision 61874 shortdesc Draw Sankey diagrams with TikZ relocated 1 longdesc This package provides macros and an environment for creating longdesc Sankey diagrams, i.e. flow diagrams in which the width of the longdesc arrows is proportional to the flow rate. -containersize 9536 -containerchecksum be2f6f2ce386abeaba3537ac4f4c89b1c880241193661a3079f0603451ff8675409405717d5d8c34b7b6478d3b340c453929fa371ce2564215a7fd833749f1a8 -doccontainersize 922868 -doccontainerchecksum 4264cbfa8089740fbf05867886ac157383cc019eb61f9844158acd8fb7dd1a65b48fb648b8b4b258ae3c66e67f18a709502177aff35fd4f7ac3a676127258a9a -docfiles size=242 +containersize 9856 +containerchecksum 8a77f2ea3b4c2167d823a839fe2fda2c633ffeb775678e6fa9cb84558dad547f4fb03c3fda6c1f85c4984628ce1515ec874482e8a223385bf1c24b2c30dfb362 +doccontainersize 969684 +doccontainerchecksum a3d18d1a43f22470ea5498423c10246c780116769b0493356174c8e9acc6d9aaa32657f7582b795d2cd720fdbb6786319090303548661f899a650da4a0442629 +docfiles size=253 RELOC/doc/latex/sankey/README details="Readme" RELOC/doc/latex/sankey/sankey-example-energy.tex RELOC/doc/latex/sankey/sankey-example1.tex @@ -267311,9 +275242,9 @@ docfiles size=242 RELOC/doc/latex/sankey/sankey-example3.tex RELOC/doc/latex/sankey/sankey-example4.tex RELOC/doc/latex/sankey/sankey.pdf details="Package documentation" -srccontainersize 27248 -srccontainerchecksum 9a43e7b6bd6ead59a6fc56e27546b998565b97ce9e83821df9042295e7cf031f5f2506bf6f8ea6dc2ff306fe827b50b48aa38b4c76b6ecb45ea5d16099dcd98b -srcfiles size=40 +srccontainersize 27868 +srccontainerchecksum 92b3d428919f217c8c869d3896829e324670647c29321bd868753e3b408c5e227acdc15097c81dee01b3319c08fcd94da1cb5e11ceb5d5775a90235a54e997bf +srcfiles size=41 RELOC/source/latex/sankey/sankey.dtx RELOC/source/latex/sankey/sankey.ins runfiles size=12 @@ -267323,28 +275254,28 @@ runfiles size=12 catalogue-ctan /graphics/pgf/contrib/sankey catalogue-license lppl1.3 gpl catalogue-topics graphics diagram diagram-flow pgf-tikz -catalogue-version 3.0 +catalogue-version 3.0.1 name sanskrit category Package -revision 55475 +revision 64502 shortdesc Sanskrit support relocated 1 longdesc A font and pre-processor suitable for the production of longdesc documents written in Sanskrit. Type 1 versions of the fonts are longdesc available. -containersize 16284 -containerchecksum c435f80d675ceceb104166c11c1aac700f29fb315a87f992fdaee079eb2b92b20c18cd4ccf5eec3a87ae0306084f386b89ed69dde775b7a0b574f0447692100d -doccontainersize 526860 -doccontainerchecksum 73109f0b792b81d86a4db8e4ece3817709e22f5d9f60a6a97238b94faa3f620476c77a2820154719c0829d5d476d44bd608802634d379042434644af107353a3 -docfiles size=156 +containersize 16328 +containerchecksum 85b4c707f00cba5b9be49f228f0466e3f0482562d481763b9cc7f269e84e4018e3c00668483b6ba798b0336781555e45c06a6be116c2c4b23a978defa8c8141f +doccontainersize 543200 +doccontainerchecksum 16643e1c8e72e37ecdfae0176c415fd655619121cc75fe573dddf4a07a64161050a681f524747868101e72ee655de6935d3c21f68e74c31bcb7113d9942c818e +docfiles size=162 RELOC/doc/latex/sanskrit/README.md details="Readme" RELOC/doc/latex/sanskrit/README.pdf RELOC/doc/latex/sanskrit/build-ctan-dist.sh RELOC/doc/latex/sanskrit/sktdoc.pdf details="Package documentation" RELOC/doc/latex/sanskrit/sktdoc.skt -srccontainersize 22216 -srccontainerchecksum 6ddb854e0881d61e352bd4fd52ef1ae74b87475199a819433aa97ba720d88db0c52c045eaaf47833c82bc14e3937da7c40e060924cedfb370a1180148497996d +srccontainersize 22476 +srccontainerchecksum e7836d95d46335a3e809fce62211029addb84ad586fdd74f2f8ea924e767bd7c800edac5b74c8660c10eec46b5a8f0b287121e83b48e029b98ae69cc19bdb14b srcfiles size=28 RELOC/source/latex/sanskrit/skt.c runfiles size=40 @@ -267370,10 +275301,12 @@ runfiles size=40 RELOC/tex/latex/sanskrit/ot1skt.fd RELOC/tex/latex/sanskrit/skt.sty catalogue-also devanagari +catalogue-contact-bugs https://github.com/wilx/sanskrit/issues +catalogue-contact-repository https://github.com/wilx/sanskrit/ catalogue-ctan /language/sanskrit catalogue-license lppl catalogue-topics font font-mf indic sanskrit -catalogue-version 2.2.1 +catalogue-version 2.2.4 name sanskrit-t1 category Package @@ -267472,21 +275405,21 @@ catalogue-topics font font-virtual font-supp-maths font-cm font-sans name sansmathfonts category Package -revision 51356 -shortdesc Correct placement of accents in sans-serif maths +revision 64661 +shortdesc Extended Computer Modern sans serif fonts relocated 1 longdesc Sans serif small caps and math fonts for use with Computer longdesc Modern. execute addMap sansmathfonts.map -containersize 4275192 -containerchecksum 71d70b034c7e0da6f8e1876c40ce2821e05cc814e5d8e1194f5a76c4b490d8d191bf6b3c9bb7fe880d0273ec8e1f3211bd335b526b154116d7ccdcdf0b61d0d5 -doccontainersize 268192 -doccontainerchecksum e61cc601588681dc29113391426cb345c207eefb04562ea6eb8369cdb8ec4844b0bab586ed91bb2a1506c49c5a60661748de95cf792b07fd52ba23cbe58d254d -docfiles size=70 - RELOC/doc/fonts/sansmathfonts/README details="Readme" +containersize 4275704 +containerchecksum 1ef587f14a0b5d51dabacfc1717b84d221bbc3bfeca002cd58ed9c239838d888036fb26f404b5bf5d7a7fb82f70b0f5663ef06ce92059b32a67b1e0c31331e7f +doccontainersize 365128 +doccontainerchecksum de240522929a1b2942e3108c03a5523e42b0bdfd4365afabad98a22dcd73784070ba26d3a4ceb821749bd557b19b220f2785687f52ad47a502f8f67f05409839 +docfiles size=95 + RELOC/doc/fonts/sansmathfonts/README.txt details="Readme" RELOC/doc/fonts/sansmathfonts/sansmathfonts.pdf details="Package documentation" RELOC/doc/fonts/sansmathfonts/sansmathfonts.tex -runfiles size=1987 +runfiles size=1988 RELOC/fonts/map/dvips/sansmathfonts/sansmathfonts.map RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi10.mf RELOC/fonts/source/public/sansmathfonts/cmsmfIPiXi12.mf @@ -268011,54 +275944,45 @@ catalogue-topics font font-cm font-sans font-proportional font-maths font-mf fon name sapthesis category Package -revision 48365 +revision 63810 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 adhere to the publishing guidelines of the Sapienza University longdesc of Rome. -containersize 46664 -containerchecksum 92253d6532c6740ae1bd25fdc76b566ea2d488f31e6a24f90e3b55ddc15d471b6c4ce5c4e7ef29c9a416d9810af49b04ab51530e9594c39beb19fffdc066a917 -doccontainersize 203504 -doccontainerchecksum a1d8c40975283a7301c1a842355149f4ae291fd7fd72cc5a44a292f96558b79bae734ec12a78b429c333aadd6f433e9603f7cc75a71eba84d42294461e87767f -docfiles size=95 +containersize 30276 +containerchecksum 14ae91cff0c5487a6751d92f1ac4e252ba53feb74883c3e0f078f5269845fd85c906a4f962c4309f6765fcbadf934877a183659d68a88e1050fe636c0e5d54be +doccontainersize 276796 +doccontainerchecksum 04c294886ecc33f3725222d9a44953dd2c4be7a5dcc5c9d08d8cc05c2d8dc9c003bfa80a7ec027956b1e680a555b1fa70af64a91c27833a77ad4469a1cbc6111 +docfiles size=93 RELOC/doc/latex/sapthesis/README details="Readme" - RELOC/doc/latex/sapthesis/examples/Laurea.tex - RELOC/doc/latex/sapthesis/examples/LaureaMagistrale.tex - RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_eng.tex - RELOC/doc/latex/sapthesis/examples/LaureaMagistrale_ita.tex - RELOC/doc/latex/sapthesis/examples/Laurea_ita.tex - RELOC/doc/latex/sapthesis/examples/Master.tex - RELOC/doc/latex/sapthesis/examples/PhD.tex - RELOC/doc/latex/sapthesis/examples/Specialization.tex - RELOC/doc/latex/sapthesis/examples/TFA.tex RELOC/doc/latex/sapthesis/sapthesis-doc.pdf details="Package documentation" RELOC/doc/latex/sapthesis/sapthesis-doc.tex RELOC/doc/latex/sapthesis/sapthesis.layout -runfiles size=30 +runfiles size=23 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/sapienzalogo.pdf RELOC/tex/latex/sapthesis/sapthesis.cls +catalogue-contact-home http://biccari.altervista.org/c/informatica/latex/sapthesis.php catalogue-ctan /macros/latex/contrib/sapthesis catalogue-license lppl1.3 -catalogue-topics dissertation -catalogue-version 4.1 +catalogue-topics dissertation class +catalogue-version 5.1 name sasnrdisplay category Package -revision 45963 +revision 63255 shortdesc Typeset SAS or R code or output relocated 1 longdesc The SASnRdisplay package serves as a front-end to listings, longdesc which permits statisticians and others to import source code longdesc and the results of their calculations or simulations into LaTeX longdesc projects. The package is also capable of overloading the Sweave -longdesc and SASweave packages. -containersize 7312 -containerchecksum 58cac1a9ca8311c570f8261014a4cbc52b2b1386196d9c12de1f7f7ac780a163626a21081005bd4a02f70f95ad0e3873e844b8520104939e8b1116b674104ad9 +longdesc User Manual and SASweave packages. +containersize 7296 +containerchecksum 5f6483d066775682cd08b9f68b7f31f5e8bedaf9248b7345dd23a950d5e61e3d2664dc2cffe2a86b35273044f8d8df2694d4d3598d70b974d38e02ae8343a844 doccontainersize 211572 -doccontainerchecksum 5d6024b9bf8fe91cef2e0427f33d9fa8b5fff78e2721afc4884ee83a4ea302a5c7b3bfd38ad8be05ebf5b021885d13938bf9424369a44f5701b29ffb6c015d77 +doccontainerchecksum a99bda8628ed2b4cdc0ba24bdb0f514ecac643481d9d866c2992df131354a677ee6fe0244285ee4d9029eb10b219c9fd9dc5f7f93a01414a3db2cff8f58e08e9 docfiles size=61 RELOC/doc/latex/sasnrdisplay/README details="Readme" RELOC/doc/latex/sasnrdisplay/SASnRdisplay.pdf details="Package documentation" @@ -268240,6 +276164,31 @@ catalogue-ctan /macros/latex/contrib/sauterfonts catalogue-license gpl catalogue-topics font-supp +name saveenv +category Package +revision 65346 +shortdesc Save environment content verbatim +relocated 1 +longdesc This package provides tools to create your own verbatim +longdesc environments, and works for all values of \endlinechar. +depend precattl +containersize 2196 +containerchecksum e0e368dcf3add9d59b22d8e04da1de9110d6f1ad2e31cd2cd44f894ea1d7f0cbd4eb41b500637e896eb179539e19c4a1d0601035e2404726dfc98677f9db0927 +doccontainersize 399688 +doccontainerchecksum 2016c815add27dca5b498f4cca3ce69c9c18f544b9651305d5d9a9a7a10b30fe187c526da37813218388f8305fc3df83257b2e9b6289171febb770c7d59d9274 +docfiles size=102 + RELOC/doc/latex/saveenv/DEPENDS.txt + RELOC/doc/latex/saveenv/README details="Readme" + RELOC/doc/latex/saveenv/saveenv.pdf details="Package documentation" + RELOC/doc/latex/saveenv/saveenv.tex +runfiles size=2 + RELOC/tex/latex/saveenv/saveenv.sty +catalogue-contact-repository https://github.com/user202729/TeXlib +catalogue-ctan /macros/latex/contrib/saveenv +catalogue-license lppl1.3c +catalogue-topics expl3 verbatim +catalogue-version 0.0.1 + name savefnmark category Package revision 15878 @@ -268545,14 +276494,54 @@ depend collection-latex containersize 440 containerchecksum 027a1cd0dd4fc5da2427864bb49fc885a00bec6e8a74da24ce9cd781c69bf4288ddfc3c790307ed48052a8fc00c1989d3939b253da6638370adbb1c43348749b +name scheme-bookpub +category Scheme +revision 63547 +shortdesc book publishing scheme (core LaTeX and add-ons) +relocated 1 +longdesc This is a book publishing scheme, containing core (Lua)LaTeX +longdesc and selected additional packages likely to be useful for +longdesc non-technical book publication. It does not contain additional +longdesc fonts (different books need different fonts, and the packages +longdesc are large), nor does it contain additional mathematical or +longdesc other technical packages. +depend barcodes +depend biber +depend biblatex +depend bookcover +depend caption +depend collection-basic +depend collection-latex +depend enumitem +depend fontspec +depend latexmk +depend lipsum +depend listings +depend markdown +depend memoir +depend microtype +depend minted +depend novel +depend octavo +depend pdfpages +depend pgf +depend qrcode +depend shapes +depend titlesec +depend tocloft +depend tufte-latex +depend willowtreebook +containersize 620 +containerchecksum 0ea47f8907821e273a581c52494b6a4e9a511a71e11ebfb05756eaded6e5132fc548312cb6365cc4c1906b4e8ffb14ee5ed496484fe5e2a2611e154091d23cf6 + name scheme-context category Scheme -revision 54074 +revision 59636 shortdesc ConTeXt scheme relocated 1 longdesc This is the TeX Live scheme for installing ConTeXt. -depend Asana-Math depend antt +depend asana-math depend ccicons depend collection-context depend collection-metapost @@ -268573,7 +276562,7 @@ depend txfonts depend wasy depend xits containersize 440 -containerchecksum 2bc94138102c5c4926b4199e09afc0ae66ed32de5030ac9f64290b8b98ce1c39a2197cbc3361d4eb56614552af21c0a67ef9f3dd0af0767f4e1f91d6023e5206 +containerchecksum 0b041f3c27ef88e7baec105b7cb24fa65c4b1f092f155482d584d9041ced4f329251f0b0d32f7019c15fff3c57b4d17f057cf39781f8be16a4e8c0ce4838163e name scheme-full category Scheme @@ -268627,13 +276616,12 @@ containerchecksum bda507842fde5239d7f45169ff78690bd96066d1834cdcc6a0dcbd3e343930 name scheme-gust category Scheme -revision 54074 +revision 59755 shortdesc GUST TeX Live scheme relocated 1 longdesc This is the GUST TeX Live scheme: it is a set of files longdesc sufficient to typeset Polish plain TeX, LaTeX and ConTeXt longdesc documents in PostScript or PDF. -depend Type1fonts depend amslatex-primer depend amstex depend antt @@ -268655,6 +276643,7 @@ depend concrete depend cyklop depend dvidvi depend dviljk +depend fontinstallationguide depend gustprog depend impatient depend iwona @@ -268666,8 +276655,8 @@ depend seminar depend tds depend tex4ht depend texdoc -containersize 596 -containerchecksum 57928b06ade27a28ae171e90cbd60c315393adb38cfac93f61f4950cc344340f0837bad65a04b2a3bef08e9c5773509caa1302eb8c299e1327fd3a418e5f0a36 +containersize 604 +containerchecksum 2b3e2e3d31c8fca7297729e910ada06a0d0282b618c92487b7a0da686938dc1f6f3b0881c7d1f8f3d002806ad8860c25802637c77919e21ca54ae8a23ef08ae7 name scheme-infraonly category Scheme @@ -268792,12 +276781,11 @@ containerchecksum 6267151dd73cb8b751ad47b79f9c698b465ad5ae5494d462cf5b3b4e7446a3 name scheme-tetex category Scheme -revision 54074 +revision 59715 shortdesc teTeX scheme (more than medium, but nowhere near full) relocated 1 longdesc TeX Live scheme nearly equivalent to the teTeX distribution longdesc that was maintained by Thomas Esser. -depend SIunits depend acronym depend amslatex-primer depend bbm @@ -268849,6 +276837,7 @@ depend patgen depend pst-pdf depend rsfs depend seetexk +depend siunits depend subfigure depend supertabular depend tamethebeast @@ -268857,12 +276846,37 @@ depend tex-refs depend tie depend web depend xpdfopen -containersize 736 -containerchecksum 44bc102582ef5f6e0499efde6d3190b86988def41aa062a6239075b9371f6c9deef91e4f2bb299b3cc831dbcee9289fafd4c1c6d2a55a747d340fb580ae918e3 +containersize 732 +containerchecksum fe8b53391733392a72be2e2c80892ec68fbdb749c70636c307825c8bfd6284945c9961610fd19f8b5d6b03ec50f0a1543c7d159f5f2a19534d71b221addfb708 + +name schola-otf +category Package +revision 64734 +shortdesc Using the OpenType fonts TeX Gyre schola +relocated 1 +longdesc This package can only be used with LuaLaTeX or XeLaTeX. It does +longdesc the font setting for the OpenType font TeX Gyre Schola for text +longdesc and math. The missing typefaces like bold math and slanted text +longdesc are also defined +containersize 2340 +containerchecksum 3a59203e6586f2cdfed6d5a948e5c150da934a809c12ef7d55f04ba8a8b95b0f1365fe7e0d802d8097f48dbad753ae481c3e27d580eb050f75956d4d04ad10d2 +doccontainersize 485732 +doccontainerchecksum 14f9cc49ae04ec2f9d5ccb48d5267ef3843bf66a288e0dbc4e7cfd00b52331216e7ab179b506acd799b4031ef11feb7c333faebdafe9a3a94bf31da442bb4129 +docfiles size=133 + RELOC/doc/fonts/schola-otf/Changes + RELOC/doc/fonts/schola-otf/README.md details="Readme" + RELOC/doc/fonts/schola-otf/schola-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/schola-otf/schola-otf-doc.tex +runfiles size=3 + RELOC/tex/latex/schola-otf/schola-otf.sty +catalogue-ctan /fonts/schola-otf +catalogue-license lppl1.3 +catalogue-topics font font-otf font-maths luatex xetex +catalogue-version 0.01 name scholax category Package -revision 58733 +revision 61836 shortdesc Extension of TeXGyreSchola (New Century Schoolbook) with math support relocated 1 longdesc This package contains an extension of TeXGyreSchola with @@ -268872,11 +276886,11 @@ longdesc slanted and bold slanted faces. Math support is provided by one longdesc of two options to newtxmath, one of which uses an adaptation of longdesc the fourier math Greek letters. execute addMap ScholaX.map -containersize 1884268 -containerchecksum 67818d34da2803257ae4de877eeb696d34eb887bd6ab54613793f4f1737ababa1fdb657162588c6ec353bf9604113403fbeae2203bf662b888f5197032e57924 -doccontainersize 334084 -doccontainerchecksum fb9cf815fb45cb513f8322597e1deefefc77c1829d2ae2f8cffb52a225bfb6fe9712be523ed861aca096bbe80317979dffcdfce87970b66fb403343a5e5e43af -docfiles size=182 +containersize 1884328 +containerchecksum f7062ca975c2801c220c6c34844d87e410e501442313974c77281aaa0927b27fdfbd2328676405cd1820c809e0354edd332e9fba0d04fa1e9a8d28f91543905c +doccontainersize 341700 +doccontainerchecksum 7c64a884165087b72f052e7d3fe8c57857d62b92532bdfc6bcd46e66b12f8b12112bd71ab88d4a9603237b612d1eab5ad10e7de0c14e69ccabeefafcfd380302 +docfiles size=184 RELOC/doc/fonts/scholax/README details="Readme" RELOC/doc/fonts/scholax/scholax-doc.pdf details="Package documentation" RELOC/doc/fonts/scholax/scholax-doc.tex @@ -269503,11 +277517,11 @@ runfiles size=1914 catalogue-ctan /fonts/scholax catalogue-license lppl catalogue-topics font font-body font-maths font-serif font-proportional font-otf font-type1 font-supp font-t1enc -catalogue-version 1.030 +catalogue-version 1.033 name schooldocs category Package -revision 55838 +revision 65650 shortdesc Various layout styles for school documents relocated 1 longdesc The purpose of this package is to provide several layout styles @@ -269516,16 +277530,16 @@ longdesc course materials. The package sets the page geometry longdesc (dimensions of text and margins) and the title typesetting; the longdesc various styles define the header, footer and title formatting. longdesc Many features are freely configurable. -containersize 3028 -containerchecksum baaa044e2e70c65c91acbb5a2d1add045f24be9361bc4b1c4761a09974b070223144ed9b41a9e5c41cb1846a271cc3338b1f44ec7b8af35cd82e7cb7ee490236 -doccontainersize 904720 -doccontainerchecksum 6860607cbaa4205b41d0e4145c3579f6a40ba27a4047c1c614a2134fa2c34aae16fd4b56dce0720813f62ac7473711a32a2ff74d7cd5288694810942d99f9ca8 -docfiles size=226 +containersize 3008 +containerchecksum 1ae2af9d9f3a281f9d180bf75534f29990c9060322d65200344250651f71c43a1b854c6dd32f6a8c9c2d2e7238c44f76fd03d814d731d8c3faebd91160a6e0a9 +doccontainersize 516488 +doccontainerchecksum 253c22c65ef87537866c2162cf9a455123b90456e6581ddd1a5edafcd5ec2a52502c0d57f9626dc8ab0bb8781d41cfe806481c3a5fa8d387797aaf7240de5ba8 +docfiles size=137 RELOC/doc/latex/schooldocs/README.md details="Readme" RELOC/doc/latex/schooldocs/schooldocs-examples.pdf details="Example of use" RELOC/doc/latex/schooldocs/schooldocs.pdf details="Package documentation" -srccontainersize 10336 -srccontainerchecksum 078875026c92538b9086945c6b3b4d3a8121e834b81156baba3d454f3f6bf199b484718c3da7dcca3da837bc345ca80ea311448680720a87150c40f2f629062d +srccontainersize 10576 +srccontainerchecksum 09f1ef0dd304c229a7c5c6ce4cf841ccb50700b9af31381f4a4bbf32c8d8579d3cf2f4dc9397044428d1b4eff318541045c7698061d5c49997705e2988982957 srcfiles size=11 RELOC/source/latex/schooldocs/schooldocs.dtx RELOC/source/latex/schooldocs/schooldocs.ins @@ -269533,12 +277547,12 @@ runfiles size=4 RELOC/tex/latex/schooldocs/schooldocs.sty catalogue-ctan /macros/latex/contrib/schooldocs catalogue-license lppl1.3 -catalogue-topics exercise exam course-material -catalogue-version 1.0 +catalogue-topics teaching exercise exam course-material +catalogue-version 1.2 name schule category Package -revision 56683 +revision 60210 shortdesc Support for teachers at German schools relocated 1 longdesc The 'schule' bundle was built to provide packages and commands @@ -269552,11 +277566,11 @@ longdesc Nassi-Shneiderman diagrams, sequence diagrams, object diagrams, longdesc and class diagrams) as well as classes for written exams longdesc (tests, quizzes, teaching observations, information sheets, longdesc worksheets, and answer keys). -containersize 39696 -containerchecksum 7125beaddb825fca0c9ff686ab97fbe7cb3744b74bde693107e26fc2797ac9bd29146683174ac6d7703370cf7f5f09809165b2f371c56a8b27ae0de8980ab467 -doccontainersize 6242348 -doccontainerchecksum 11aa5b1eb25301e61f2438f4607cfba35721dcbb0904ce3fdb923f69f71b1f1e1ebc3a50706b09e306e2b9197194a3c6ebb12a1fa7dc27b94686df11be3501c2 -docfiles size=1976 +containersize 39592 +containerchecksum 01d62151d01b00dedaf63af9a2adcb91f293372064c43cdc0353f207923f471a45958f60cc9c16bdbaf4b78bad65f4ebfa7b8e2b851f307eccba60f9171e9207 +doccontainersize 6291584 +doccontainerchecksum a626078e2c8a268663bcd0148dc8c7d382a7e6e29e2f14ef0e34d75a1f460702c09042625378bfec482d8055e34b6661f137982e328c8cb21ddd29a0e9a69cf9 +docfiles size=1991 RELOC/doc/latex/schule/Abbildungen/table02600-026FF.pdf RELOC/doc/latex/schule/Abbildungen/table02600-026FF.tex RELOC/doc/latex/schule/Abbildungen/table02700-027BF.pdf @@ -269661,17 +277675,14 @@ docfiles size=1976 RELOC/doc/latex/schule/zusatzpaketRelaycircuit.tex RELOC/doc/latex/schule/zusatzpaketSchuleAlt.tex RELOC/doc/latex/schule/zusatzpakete.tex -runfiles size=119 - RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-4.xmp - RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-nc-sa-4.xmp - RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-nc-sa-eu-4.xmp - RELOC/tex/latex/schule/Lizenzen/lizenz-cc-by-sa-4.xmp +runfiles size=116 RELOC/tex/latex/schule/relaycircuit.sty RELOC/tex/latex/schule/schule.fach.EvReligion.code.tex RELOC/tex/latex/schule/schule.fach.Geschichte.code.tex RELOC/tex/latex/schule/schule.fach.Geschichte.pakete.tex RELOC/tex/latex/schule/schule.fach.Informatik.code.tex RELOC/tex/latex/schule/schule.fach.Informatik.pakete.tex + RELOC/tex/latex/schule/schule.fach.Physik.code.tex RELOC/tex/latex/schule/schule.fach.Physik.pakete.tex RELOC/tex/latex/schule/schule.mod.Aufgaben.code.tex RELOC/tex/latex/schule/schule.mod.Aufgaben.optionen.tex @@ -269739,28 +277750,30 @@ runfiles size=119 RELOC/tex/latex/schule/xsim-style/xsim.style.schule-randpunkte.code.tex RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tabelle-kurz.code.tex RELOC/tex/latex/schule/xsim-style/xsim.style.schule-tcolorbox.code.tex +catalogue-contact-bugs https://gitlab.com/gi-fg-ibnw/schule/-/issues +catalogue-contact-repository https://gitlab.com/gi-fg-ibnw/schule catalogue-ctan /macros/latex/contrib/schule catalogue-license lppl1.3 catalogue-topics teaching class -catalogue-version 0.8.2 +catalogue-version 0.8.3 name schulmathematik category Package -revision 58359 +revision 64108 shortdesc Commands and document classes for German-speaking teachers of mathematics and physics relocated 1 longdesc The schulmathematik bundle provides two LaTeX packages and six longdesc document classes for German-speaking teachers of mathematics longdesc and physics. -containersize 10188 -containerchecksum 283c5541f876edeea48201cff842d0d4b73ed1fff33f419371c9fd721cbd1711203f3449874d57573285a8e0e9a7386fcf586444030fee3c587b9d830ca2235d -doccontainersize 201444 -doccontainerchecksum 1f360107f14c7261c25c3806b4c5b762ec65b0d1818c4cc450784338119f0148b0319cdc3981c7cb29c776aa309f3b90782f28abde3c4b5cffe16e51bbc28f39 -docfiles size=63 +containersize 11840 +containerchecksum be532723f39a637b3f78163e849f8eb481a2137f1c11536efca63ab3b4aa9d3a723395805b6881965ea2e5e0e7e40fd4731325149a900074409919b8d11d41fa +doccontainersize 209440 +doccontainerchecksum f5088c8623ed263d017d4dd6432abbf8a271d58b096b8bc205a69b6ce44e03d2714bd53df74cd1f1406bba55d2d1d28f96e702dd15def17678575fc0a44e0bf4 +docfiles size=65 RELOC/doc/latex/schulmathematik/README details="Readme" RELOC/doc/latex/schulmathematik/schulmathematik.pdf details="Package documentation" RELOC/doc/latex/schulmathematik/schulmathematik.tex -runfiles size=17 +runfiles size=19 RELOC/tex/latex/schulmathematik/schulma-ab.cls RELOC/tex/latex/schulmathematik/schulma-gutachten.cls RELOC/tex/latex/schulmathematik/schulma-klausur.cls @@ -269769,14 +277782,16 @@ runfiles size=17 RELOC/tex/latex/schulmathematik/schulma-physik.sty RELOC/tex/latex/schulmathematik/schulma-praes.cls RELOC/tex/latex/schulmathematik/schulma.sty +catalogue-contact-bugs https://codeberg.org/wehr/schulmathematik/issues +catalogue-contact-repository https://codeberg.org/wehr/schulmathematik catalogue-ctan /macros/latex/contrib/schulmathematik catalogue-license lppl1.3 catalogue-topics maths physics teaching -catalogue-version 1.1 +catalogue-version 1.3 name schulschriften category Package -revision 35730 +revision 59388 shortdesc German "school scripts" from Suetterlin to the present day relocated 1 longdesc Das Paket enthalt im wesentlichen die Metafont-Quellfiles fur @@ -269785,10 +277800,10 @@ longdesc Deutsche Normalschrift, Lateinische Ausgangsschrift, longdesc Schulausgangsschrift, Vereinfachte Ausgangsschrift. Damit ist longdesc es moglich, beliebige deutsche Texte in diesen Schreibschriften longdesc zu schreiben. -containersize 48980 -containerchecksum baedf984b1d1cfeae56af4b9530b81d90653eee334a90f2a9a83a871240592ed6267668b6974033cedfc1e73166232201eaae8e4876d38b9fd94919e8262336a -doccontainersize 720152 -doccontainerchecksum b43f16b38c0417b074b7f45bd42290f3434275c23c6031f293101d907c2004805168d86137190300daa1ca62dd1b25cd2f795e712868b36e454cda134f680bbb +containersize 48836 +containerchecksum d24778c0ae93d06b42bc8d7eb8d84ab6e0f42b33352f2dbd79586a4ed9bb21fe99a61dc0eab375e56a20624fa5ad63ade3446d685dcf063d46c0f60264c431f3 +doccontainersize 720848 +doccontainerchecksum c9b6b43bff7a90f158b0a10c431cc52e65c4c2d49c773aafe7e54d1283d97c3badfca5315ff982cf0a524b514594faff5666063164483987973ce60d2edcadb8 docfiles size=972 RELOC/doc/fonts/schulschriften/README details="Readme" RELOC/doc/fonts/schulschriften/schulschriften.pdf details="Package documentation" @@ -269949,34 +277964,35 @@ runfiles size=307 catalogue-ctan /fonts/schulschriften catalogue-license lppl catalogue-topics font font-calligraphic font-mf -catalogue-version 4 +catalogue-version 5 name schwalbe-chess category Package -revision 53305 +revision 63708 shortdesc Typeset the German chess magazine "Die Schwalbe" relocated 1 longdesc The package is based on chess-problem-diagrams, which in its longdesc turn has a dependency on the bartel-chess-fonts. -containersize 7228 -containerchecksum 42f04e0fc134e4b429a7ddc2397e3c61ac1ff648670497f6ccbeb391748635c54648ab56645849a81b0002aec1a3f9ea74db631ab45972f69f2bde2dc92444fd -doccontainersize 190900 -doccontainerchecksum f5ff7c4a235cb5fca0a9d0c9e347c3e2a997c1994e56dab7b9410483935253d09fb72fc678c15e63465de6fe25db7a7dcf7dc445a594711f2072020379b87df5 -docfiles size=56 +containersize 8032 +containerchecksum ad2f033f018767556e8e4c2b76f1d2c80e14780cc4b483e73bd165c0cfab11453514065597fd7dbce05e8acfd4c307219156abcbb3d59ccead70df61a128961a +doccontainersize 211872 +doccontainerchecksum 2df38380cc26d4321d8b18facdc6c427d1986143ae1ef8227a2d536af2fda5f6bfb73ccc395156a7f018c9c9af20b3b89bc994d9021bb9ff3fe5d771f3a6bc59 +docfiles size=61 RELOC/doc/latex/schwalbe-chess/README details="Readme" RELOC/doc/latex/schwalbe-chess/schwalbe.pdf details="Package documentation (German)" language="de" -srccontainersize 14908 -srccontainerchecksum 653d06a3e25c1990e8f0b0a703c661fab8db592e757d101e340ba494ca88b61077b1eafa44885a162632831c8f5a0ab945d81679206aca0df96b035cf62f0a7f -srcfiles size=17 +srccontainersize 16896 +srccontainerchecksum a75dd975edceca279cf120a08d0666e9227af96732ff3d71dd82068b0c185842902244baebb074ad1ab611fed8064772cc65dc2353a9a79633f8bbe21955dc95 +srcfiles size=19 RELOC/source/latex/schwalbe-chess/schwalbe.dtx RELOC/source/latex/schwalbe-chess/schwalbe.ins -runfiles size=10 +runfiles size=12 RELOC/tex/latex/schwalbe-chess/schwalbe.cls RELOC/tex/latex/schwalbe-chess/schwalbe.sty + RELOC/tex/latex/schwalbe-chess/swruler.sty catalogue-ctan /macros/latex/contrib/schwalbe-chess catalogue-license lppl1.2 catalogue-topics journalpub games class -catalogue-version 2.7 +catalogue-version 2.12 name scientific-thesis-cover category Package @@ -270009,6 +278025,34 @@ catalogue-license lppl1.3c catalogue-topics dissertation journalpub scientific-docs catalogue-version 4.0.2 +name scikgtex +category Package +revision 65256 +shortdesc Mark research contributions in scientific documents and embed them in PDF metadata +relocated 1 +longdesc Scientific Knowledge Graph TeX (SciKgTeX) is a LuaLaTeX package +longdesc which makes it possible to annotate specific research +longdesc contributions in scientific documents. SciKGTeX will enrich the +longdesc document by adding the marked contributions to PDF metadata in +longdesc a structured XMP format which can be picked up by search +longdesc engines and knowledge graphs. +containersize 6680 +containerchecksum 5374ed0713db77cd6f84ef8709e0dc73ed411d8679cf7292015d0e0533d577fe7009c08e6d17f10a9c2422c67e56b1b547f46868d570c7ace6910fa7738179a0 +doccontainersize 1348 +doccontainerchecksum 960bbe9295e14c7ba1a9ed53d6df468c2dfafe3b84a0ada506e7fd26335b79880bb8e592463375490d2141fa62fb41aedd79aa3c85bcf0187d4ad2ef2be3ea71 +docfiles size=2 + RELOC/doc/lualatex/scikgtex/LICENSE + RELOC/doc/lualatex/scikgtex/README details="Readme" +runfiles size=7 + RELOC/tex/lualatex/scikgtex/scikgtex.lua + RELOC/tex/lualatex/scikgtex/scikgtex.sty +catalogue-contact-bugs https://github.com/Christof93/SciKGTeX/issues +catalogue-contact-repository https://github.com/Christof93/SciKGTeX +catalogue-ctan /macros/luatex/latex/scikgtex +catalogue-license mit +catalogue-topics metadata pdf-feat luatex +catalogue-version 2.1.1 + name sciposter category Package revision 15878 @@ -270110,26 +278154,26 @@ catalogue-version 0.1 name scontents category Package -revision 53504 +revision 62902 shortdesc Stores LaTeX contents in memory or files relocated 1 longdesc This package stores valid LaTeX code in memory (sequences) longdesc using the l3seq module of expl3. The stored content (including longdesc verbatim) can be used as many times as desired in the document, longdesc additionally can be written to external files if desired. -containersize 8844 -containerchecksum 3db5230a958ab9fc7cbc644e13e9861823f9a55c5426a9b3fc2c483e86f62369f4cbba869c2a0874684fe2d8ce1a6b0e8feb53b1a4c1d7d9fe94893a51c8ea03 -doccontainersize 358504 -doccontainerchecksum 1d9c515aa099baa507fb776492c59d94397e49ff8ed95de49ca8ef6b91ddf3a7a1e9df0484b2b9100d71788951f9016b9c5318778207d1c973c91867dc2107ae -docfiles size=93 +containersize 8172 +containerchecksum 692fbbe0cfe9153bb4782eabe8f1713e646d5a93d4b1b2fe0f7662bd995bfae25b8200acb9eccd0057b53bff7c33c0f9ff621cd37596e9aa4cd51f84c2a30dc7 +doccontainersize 367028 +doccontainerchecksum f978650de27e8306d70612331c2c98b5e0c047bbf91908c9968c6d613311c034dd00816afdc30b63d7673a8627651467af64a99fb7fd3978947113f8fb6eb563 +docfiles size=96 RELOC/doc/latex/scontents/README.md details="Readme" RELOC/doc/latex/scontents/scontents.pdf details="Package documentation" -srccontainersize 29576 -srccontainerchecksum 9a0f8133b8e7b04e4919ed4b32e0666ca6c31bf52449b5aef26ab36d9d20518981df40a4a59a8d38f1bfd364b19a4b9d6238f0b3f68f7e7c932d4bd68dda2d06 +srccontainersize 29640 +srccontainerchecksum d23c98c16b7f60a1a77c0dba32eb7886f5834c1d05455a172f38f984c7bb61ffc84bae147fa7d143c196179fd719887b160718e04ff3474c5ef176af4d99165a srcfiles size=34 RELOC/source/latex/scontents/scontents.dtx RELOC/source/latex/scontents/scontents.ins -runfiles size=16 +runfiles size=14 RELOC/tex/context/third/scontents/t-scontents.mkiv RELOC/tex/generic/scontents/scontents-code.tex RELOC/tex/generic/scontents/scontents.tex @@ -270139,7 +278183,68 @@ catalogue-contact-repository https://github.com/pablgonz/scontents catalogue-ctan /macros/latex/contrib/scontents catalogue-license lppl1.3c catalogue-topics file-mgmt expl3 -catalogue-version 1.9 +catalogue-version 2.0 + +name scrabble +category Package +revision 65507 +shortdesc Commands for Scrabble boards +relocated 1 +longdesc This package provides some commands (in English and in French) +longdesc to work with a Scrabble Board : \ScrabbleBoard and +longdesc \begin{EnvScrabble} and \ScrabblePutWord for the English +longdesc version, \PlateauScrabble and \begin{EnvScrabble} and +longdesc \ScrabblePlaceMot for the French version. +containersize 3072 +containerchecksum df992081a34554d1e26ec6eb227f2ac5beddb7fd88a4a8377aebdfebd9fd200d053c4e43db96450f20a7c23cac11d235f1acde3e4dc40a3c30b83ad2914eae5b +doccontainersize 883952 +doccontainerchecksum c61edf946eef82a7cde0af391eaca776784870be6a235e9752821f565b187a2a286ce1c7d7a7d5bc902550597e2a0906f25581bd8295b7dc5a546cf7bd8ee73b +docfiles size=253 + RELOC/doc/latex/scrabble/README.md details="Readme" + RELOC/doc/latex/scrabble/Scrabble-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/scrabble/Scrabble-doc-en.tex + RELOC/doc/latex/scrabble/Scrabble-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/scrabble/Scrabble-doc-fr.tex +runfiles size=3 + RELOC/tex/latex/scrabble/Scrabble.sty +catalogue-contact-repository https://github.com/cpierquet/Scrabble +catalogue-contact-support https://github.com/cpierquet/Scrabble/issues +catalogue-ctan /graphics/pgf/contrib/scrabble +catalogue-license lppl1.3c +catalogue-topics games pgf-tikz +catalogue-version 0.1.3 + +name scrambledenvs +category Package +revision 60615 +shortdesc Create and print scrambled environments +relocated 1 +longdesc This package allows you to create and print scrambled +longdesc environments for purposes such as randomized hint environments. +longdesc You can mark a location with a series of hints, and then print +longdesc the hints at the end in a pseudo-random order. The general +longdesc structure follows: there is an outer environment which creates +longdesc the label, an inner environment that creates the references, +longdesc and a print command that prints out all of the hints. This +longdesc generalizes beyond hints; one can create scrambled solutions as +longdesc well, etc. +containersize 2408 +containerchecksum 075792b5d0fc5201d672e622a958c600ff479caba2920a32ed3d3f469c525d799d8bdef20b3a08391a22ed3eead6ab3f30cebbed36c469e423e2ea844c170651 +doccontainersize 193772 +doccontainerchecksum 339d1cd398e62d65c1c92927a07dd4bed740916f2a98dd8ba2d913976d69a70b0340b9cab35250ac3ee862f4572438f87562cb6f7b2031cbe0252d8cc781009a +docfiles size=50 + RELOC/doc/latex/scrambledenvs/README.md details="Readme" + RELOC/doc/latex/scrambledenvs/scrambledenvs.pdf details="Package documentation" +srccontainersize 5752 +srccontainerchecksum 1a605abf62adf986a933b6d1723699e9920df07fe383527b5d8491aee5431b5f91354052a0810d8a0f8cb2b8b853a3945d38041fc6e9e573c159e7baeaf356dd +srcfiles size=6 + RELOC/source/latex/scrambledenvs/scrambledenvs.dtx +runfiles size=3 + RELOC/tex/latex/scrambledenvs/scrambledenvs.sty +catalogue-ctan /macros/latex/contrib/scrambledenvs +catalogue-license lppl1.3 +catalogue-topics notes random +catalogue-version 1.1.0 name scratch category Package @@ -270172,29 +278277,27 @@ catalogue-version 0.41 name scratch3 category Package -revision 56258 +revision 61921 shortdesc Draw programs like "scratch" relocated 1 longdesc This package permits to draw program charts in the style of the longdesc scatch project (scratch.mit.edu). It depends on the other LaTeX longdesc packages TikZ and simplekv. -containersize 8748 -containerchecksum 40d781fcb2ba3628e6e7825d48873917c6a138b46ec2b5c5be894639c1ada93eb3632e17e5be6dbb9974d092f3b75c891dccb33cd93fbdb61dc3261400065d2e -doccontainersize 518596 -doccontainerchecksum 93fecddc8a36f4ed1c302939678e314b178b600b5983754a9bf7b2b343a8e61174dd7c9aa7926c9c93714045e3e8b9fecc77889562f2f407fe2494283265d69e -docfiles size=134 +containersize 8832 +containerchecksum f33f18d725253b11097443116e6c0cf4930b7718a5f8678b0d8fd97d8e4854efb31bd016a40a7dec2701a99bf2b5ac6136a856798ead314a8c21cf38013bb513 +doccontainersize 528692 +doccontainerchecksum 97a8e684ff98c9aca2ab57cf93be2cf8bb4c0464fa772828c033622860e46d8c61bf563e346aeff1123665c878bf3fc68c58727ec2c1579e815c7a8ece078ff5 +docfiles size=138 RELOC/doc/latex/scratch3/README details="Readme" RELOC/doc/latex/scratch3/scratch3-fr.pdf details="Package documentation (French)" language="fr" RELOC/doc/latex/scratch3/scratch3-fr.tex runfiles size=12 RELOC/tex/latex/scratch3/scratch3.sty catalogue-also tikzcodeblocks -catalogue-contact-bugs https://framagit.org/unbonpetit/scratch3/issues -catalogue-contact-repository https://framagit.org/unbonpetit/scratch3/tree/master catalogue-ctan /macros/latex/contrib/scratch3 catalogue-license lppl1.3c catalogue-topics games pgf-tikz -catalogue-version 0.18 +catalogue-version 0.19 name scratchx category Package @@ -270284,6 +278387,38 @@ catalogue-license lppl1.3 catalogue-topics drama-script catalogue-version 1.1 +name scripture +category Package +revision 65493 +shortdesc A LaTeX style for typesetting Bible quotations +relocated 1 +longdesc The scripture package provides a set of macros for typesetting +longdesc quotations from the Bible. It provides many features commonly +longdesc seen in Bibles such as dropped text for chapter numbers, +longdesc superscripts for verse numbers, indented lines for poetry +longdesc sections, narrow sections and hanging paragraphs. A reference +longdesc for the quotation can optionally be added. +containersize 8396 +containerchecksum 3def680960181d2204bb7c99012af17cb6685a8c9145d5242408b82e9f30a84e0b922dd89cd26c36c0a08e820b09c5ee886cb0ec928c83cd68d4221519d011d7 +doccontainersize 910824 +doccontainerchecksum f4b54666759f4fb691632ff501f9eef1619624ee5b8c8292be6cd1cfb5c9f02ed68cb55239c55da5e4f80e8334ec404347747427eea6622515a2933d4fe80d68 +docfiles size=235 + RELOC/doc/latex/scripture/README.md details="Readme" + RELOC/doc/latex/scripture/scripture.pdf details="Package documentation" +srccontainersize 23220 +srccontainerchecksum b74f83fcbf83baab55a37ca39165265ad94dcdcfe30db94b7684352648b55e0953464e9366a958517539c90b38bb468f3b2f187a557a8fd4a2d55bf6ea69bdd1 +srcfiles size=41 + RELOC/source/latex/scripture/scripture.dtx + RELOC/source/latex/scripture/scripture.ins +runfiles size=18 + RELOC/tex/latex/scripture/scripture.sty +catalogue-contact-bugs https://github.com/dcpurton/scripture/issues +catalogue-contact-repository https://github.com/dcpurton/scripture +catalogue-ctan /macros/latex/contrib/scripture +catalogue-license lppl1.3c +catalogue-topics theology +catalogue-version 1.3 + name scrjrnl category Package revision 27810 @@ -270313,7 +278448,7 @@ catalogue-version 0.1 name scrlayer-fancyhdr category Package -revision 58746 +revision 63844 shortdesc Combining package fancyhdr with KOMA-Script's scrlayer relocated 1 longdesc This LaTeX package uses KOMA-Script's scrlayer to redefine the @@ -270321,17 +278456,18 @@ longdesc page styles of package fancyhdr. This allows the combination of longdesc features of fancyhdr with features of scrlayer. Before longdesc KOMA-Script v3.33 scrlayer-fancyhdr was part of KOMA-Script longdesc itself. -containersize 1420 -containerchecksum a8ad12d27eae43023f8cfd3d32dc22705e38869d9fa38bcc85a955334cc5f328c0b9a6db2070876cc5fd7dfd5c2bc24f1cc45b39fe90b62ecd3893c458399ee3 -doccontainersize 244532 -doccontainerchecksum d531044dd22635bca73e3ad22c5e523cada7e448269cb6f655a973302d7968cb463efc551fce33afda588a0fe0800d33bca601d736e7c97cd8fe00bb2e3c378f -docfiles size=62 +containersize 1424 +containerchecksum 4cd49bec1f3bec3bef5c54964b06fa78cb21cfe431a05741e69cfac59577a2d24cc5b32b6abd739a96a93441e8cab0db80640e5015dc70729ff32c27d26805f2 +doccontainersize 323932 +doccontainerchecksum d4711f5178d0e654f80d2771519d6ddeca8b883f9bf3d0ba6e9524ad4541a9fbf9179fb69c356d1ab0050b051c28cb074680a6322fef41ee765ebef8fe476651 +docfiles size=84 RELOC/doc/latex/scrlayer-fancyhdr/LICENSE.md + RELOC/doc/latex/scrlayer-fancyhdr/MANIFEST.md RELOC/doc/latex/scrlayer-fancyhdr/README.md details="Readme" RELOC/doc/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.pdf details="Package documentation" -srccontainersize 11100 -srccontainerchecksum 3bd0f2660293521eb094ab307e4ce0b685472b7f92656c5ddf027539649bfe3dffcf5fc4a53220ceafde62d0ac9180aa1a5285984dfc2d2d735ab201161b932a -srcfiles size=11 +srccontainersize 10672 +srccontainerchecksum 4d0ae176e9d191b3773a39d7d4982e6957ae95fcc8b06f4233764e57b8954aab4ff0186415f1d8ed988c1473a8850fb99515c0966dd2ce8a7c8d99e0ddff5d65 +srcfiles size=10 RELOC/source/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.dtx runfiles size=1 RELOC/tex/latex/scrlayer-fancyhdr/scrlayer-fancyhdr.sty @@ -270342,7 +278478,7 @@ catalogue-contact-repository https://github.com/komascript/scrlayer-fancyhdr.git catalogue-ctan /macros/latex/contrib/scrlayer-fancyhdr catalogue-license lppl1.3c catalogue-topics page-hf -catalogue-version 0.2.1 +catalogue-version 0.2.2 name scrlttr2copy category Package @@ -270373,24 +278509,21 @@ catalogue-version 0.3a name scsnowman category Package -revision 54080 +revision 66115 shortdesc Snowman variants using TikZ relocated 1 longdesc This LaTeX package provides a command \scsnowman which can longdesc display many variants of "snowman" ("yukidaruma" in Japanese). longdesc TikZ is required for drawing these snowmen. -containersize 6124 -containerchecksum 61d9ae5c1632d4fcf5058fd1bb004cadb1a1becfe75d00335509c68624a62cae6780528e2633c89e9a742ea885b207efe5e36d85c402bfd98825dbc8630f200a -doccontainersize 480336 -doccontainerchecksum 542deda691600da9cbea070436c5eb8eda2670cdfee2ac5d46d241a50de87ee6d89062c9f5c0e55341a5ea0224e44472fad867503470c3b52b6729f470b09972 -docfiles size=130 +containersize 6360 +containerchecksum 2335082e981929d24b2dd327db68f101a93b0c2b9176c116d6ca9430ea45bd85c9669921980090554406a658821f3c68305250894fd710058e15ac6aa8ede1c5 +doccontainersize 501308 +doccontainerchecksum e883b300888ebdf62af976a94ff29a3f621a92420c26553ca16497ffb57db0d1cec7f8a38a1996e080b660ee3ae0b7245688a7732c141b0a680b864f527069f6 +docfiles size=133 RELOC/doc/latex/scsnowman/LICENSE - RELOC/doc/latex/scsnowman/Makefile RELOC/doc/latex/scsnowman/README.md details="Readme" RELOC/doc/latex/scsnowman/scsnowman-sample.pdf details="Sample of use" language="ja" RELOC/doc/latex/scsnowman/scsnowman-sample.tex - RELOC/doc/latex/scsnowman/scsnowman-zrtest.pdf - RELOC/doc/latex/scsnowman/scsnowman-zrtest.tex RELOC/doc/latex/scsnowman/scsnowman.pdf details="Package documentation" RELOC/doc/latex/scsnowman/scsnowman.tex runfiles size=9 @@ -270401,11 +278534,11 @@ catalogue-contact-repository https://github.com/aminophen/scsnowman catalogue-ctan /graphics/pgf/contrib/scsnowman catalogue-license bsd2 catalogue-topics amusements graphics pgf-tikz -catalogue-version 1.2d +catalogue-version 1.3c name sdaps category Package -revision 54678 +revision 65345 shortdesc LaTeX support files for SDAPS relocated 1 longdesc This bundle contains LaTeX classes and packages to create @@ -270419,21 +278552,103 @@ longdesc complex layout features like rotating the headers to safe space longdesc Ability to exchange rows and columns on the fly Different longdesc question types: Freeform text Single/multiple choice questions longdesc Range questions Layouting questions in rows or columns -longdesc Possibility to pre-fill questionnaires from LaTeX Documentation -longdesc can be found online at https://sdaps.org/class-doc. -containersize 31940 -containerchecksum 506507e08aa6d3e4408c50bad4541feed8bd491f668ba10de131b4ecece0b23ed6666a117e6b5826e7a2e7e0cbe6b64072a5ed5b090d9c2568354ea7a50922d3 -doccontainersize 779648 -doccontainerchecksum 8c98eda0586c02497fbf4a2a0125064b1200f1b16506c720d8103b88b2256e517eb5553d2027fb4a1d8fd711e640b045a9e3a90f152e957b5c3dc6df53509424 -docfiles size=248 +longdesc Possibility to pre-fill questionnaires from LaTeX +depend environ +depend lastpage +depend pgf +depend qrcode +depend sectsty +depend translator +containersize 32028 +containerchecksum 57559707a9a5a2a924a767b25ed2f86759826a31788fb2662aa2e3ad2889b2266009ec9754c48ce923561c7587c78b23ab56731322a619b4a225775b7beb91b2 +doccontainersize 277328 +doccontainerchecksum fe1f636c2c21159e5c17aaa75ca0bc89fb1b6ab8dda8d475045efcb3eaf489a876fe9caa4cd077e27b51f37292c5141347233ed6103ebe4f20573ff0899e445b +docfiles size=631 RELOC/doc/latex/sdaps/README details="Readme" - RELOC/doc/latex/sdaps/sdapsarray.pdf - RELOC/doc/latex/sdaps/sdapsbase.pdf details="Package documentation" - RELOC/doc/latex/sdaps/sdapsclassic.pdf - RELOC/doc/latex/sdaps/sdapslayout.pdf - RELOC/doc/latex/sdaps/sdapspdf.pdf -srccontainersize 29356 -srccontainerchecksum 3c6687e548f86f4a96f88264841e33b670d6dcbbdf7debdda2e1d8751ba58abf1e56005f3ac2160f3bf88bd113fee7b72a186ebba3b30c40521ed0f52e7dbbcb + RELOC/doc/latex/sdaps/html/FAQ.html + RELOC/doc/latex/sdaps/html/_images/sdaps-0af490a3ed080fa7140be542f0aa6ef6566a7680.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-1395f613e9b0d555d4a73f1f91e950f35c0c7fbf.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-140b633ca968d1f54a6223f2fa226fc8e59a05f6.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-15a7c595951dc9c4d6cfe9d89f7174d3ae95bf57.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-15a7c595951dc9c4d6cfe9d89f7174d3ae95bf57.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-2c3a847be98e0b18c8f30e20a7f2031e80a45561.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-33cc9f194559178b6d8f6e8d6f092bcf0c81faf3.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-33cc9f194559178b6d8f6e8d6f092bcf0c81faf3.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-33dfefa58981354e1e92db235f30d93f630a87ca.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-45058fe18d19b32583523bb2185816768f37ddb9.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-49b0c5bc05b02f591b5a13cf5d1d27b20a0aef17.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-49b0c5bc05b02f591b5a13cf5d1d27b20a0aef17.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-4b5478f94507ac6c56e58574248ecab3aa49c6eb.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-4b5478f94507ac6c56e58574248ecab3aa49c6eb.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-55711c827f0e10a87ddf5733f44551a8d0723a99.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-55711c827f0e10a87ddf5733f44551a8d0723a99.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-57001c6bc38f0fa621278b10dceb4618c957f915.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-57001c6bc38f0fa621278b10dceb4618c957f915.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-5ef726a659f638b38aabe9893a665cf541e4117b.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-5f42eed06d6b1410d331c26cd6ee76d40ce7129d.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-5f42eed06d6b1410d331c26cd6ee76d40ce7129d.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-7b5f67fcc26f98d4c44cf020d79590112811dccc.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-7b5f67fcc26f98d4c44cf020d79590112811dccc.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-7e1e43f790675c82f7e2b5065f9650fd709e6f3b.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-7f0603689480961b8d497b11f52a0f5c96f37a09.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-8135129e3e381ce7e0709470caae15933f3f1578.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-82e64d3b5db11a81613e2242fc073ca0506aeec4.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-82e64d3b5db11a81613e2242fc073ca0506aeec4.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-8db1f62ade3508f33e8dc6385a9b25d2067ff275.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-8e319298bf95b525fb49d3908de87f9b64b7a1b7.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-994d531070d44373a381c5d15bcfbe632c3ff224.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-994d531070d44373a381c5d15bcfbe632c3ff224.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-a81d3fed988dc6e4d07f6553a88bb029c2a68ab5.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-b3d7aacf19c05aea886e6eb9b8a3eff001085a30.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-b7991d2b528a292b0e29ad477da88255d83dec4f.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-c561b59ed06e4787b2c57421bf3566668f4f99ce.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-d196d21d38b78b632d8ebed2fa3947c43e7f6fbc.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-d196d21d38b78b632d8ebed2fa3947c43e7f6fbc.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-d3d2ac4eea088d60f5d7fea1d2102a6f07432254.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-df7a1db8108564a499998148db3ba5f658896065.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-e0c44b7ccedea9b3cbbd2df1f1130048d795175a.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-e0c44b7ccedea9b3cbbd2df1f1130048d795175a.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-e6f41b54e84049a7613982bd4f6a7ac2c5e3fa53.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-e6f41b54e84049a7613982bd4f6a7ac2c5e3fa53.svg.meta + RELOC/doc/latex/sdaps/html/_images/sdaps-f7dfb3852940c0fc6d67392eafbf34972f585f86.svg + RELOC/doc/latex/sdaps/html/_images/sdaps-faa44b67d89e6956ec791297e12883a9ddd31c6b.svg + RELOC/doc/latex/sdaps/html/_sources/FAQ.rst.txt + RELOC/doc/latex/sdaps/html/_sources/customlayout.rst.txt + RELOC/doc/latex/sdaps/html/_sources/index.rst.txt + RELOC/doc/latex/sdaps/html/_sources/sdapsarray.rst.txt + RELOC/doc/latex/sdaps/html/_sources/sdapsbase.rst.txt + RELOC/doc/latex/sdaps/html/_sources/sdapsclassic.rst.txt + RELOC/doc/latex/sdaps/html/_sources/sdapslayout.rst.txt + RELOC/doc/latex/sdaps/html/_sources/sdapspdf.rst.txt + RELOC/doc/latex/sdaps/html/_static/basic.css + RELOC/doc/latex/sdaps/html/_static/classic.css + RELOC/doc/latex/sdaps/html/_static/css/sdapstex.css + RELOC/doc/latex/sdaps/html/_static/doctools.js + RELOC/doc/latex/sdaps/html/_static/documentation_options.js + RELOC/doc/latex/sdaps/html/_static/file.png + RELOC/doc/latex/sdaps/html/_static/jquery-3.5.1.js + RELOC/doc/latex/sdaps/html/_static/jquery.js + RELOC/doc/latex/sdaps/html/_static/language_data.js + RELOC/doc/latex/sdaps/html/_static/minus.png + RELOC/doc/latex/sdaps/html/_static/plus.png + RELOC/doc/latex/sdaps/html/_static/pygments.css + RELOC/doc/latex/sdaps/html/_static/searchtools.js + RELOC/doc/latex/sdaps/html/_static/sidebar.js + RELOC/doc/latex/sdaps/html/_static/underscore-1.3.1.js + RELOC/doc/latex/sdaps/html/_static/underscore.js + RELOC/doc/latex/sdaps/html/customlayout.html + RELOC/doc/latex/sdaps/html/genindex.html + RELOC/doc/latex/sdaps/html/index.html + RELOC/doc/latex/sdaps/html/sdapsarray.html + RELOC/doc/latex/sdaps/html/sdapsbase.html + RELOC/doc/latex/sdaps/html/sdapsclassic.html + RELOC/doc/latex/sdaps/html/sdapslayout.html + RELOC/doc/latex/sdaps/html/sdapspdf.html + RELOC/doc/latex/sdaps/html/search.html + RELOC/doc/latex/sdaps/html/searchindex.js + RELOC/doc/latex/sdaps/sdaps.html details="Package documentation" +srccontainersize 29416 +srccontainerchecksum 3f5d1073699a71e9e89a3c71704b8b2800925041145a60454cae0ce2fe7f468e5200c7273afb70c64306a347f4037bc0698b3af223f82d755658d54f2d8c08fe srcfiles size=49 RELOC/source/latex/sdaps/sdapsarray.dtx RELOC/source/latex/sdaps/sdapsarray.ins @@ -270472,7 +278687,7 @@ catalogue-contact-repository https://github.com/sdaps/sdaps-class/ catalogue-ctan /macros/latex/contrib/sdaps catalogue-license lppl1.3c catalogue-topics class macro-supp package-devel exam pdf-forms table-long -catalogue-version 1.9.8 +catalogue-version 1.9.10 name sdrt category Package @@ -270540,6 +278755,55 @@ catalogue-license lppl1.3 catalogue-topics dissertation class chinese catalogue-version 1.2.1 +name se2thesis +category Package +revision 65645 +shortdesc A Thesis Class for the Chair of Software Engineering II at the University of Passau, Germany +relocated 1 +longdesc The se2thesis bundle provides a document class for writing a +longdesc theses with the Chair of Software Engineering II at the +longdesc University of Passau, Germany. The class is based on Markus +longdesc Kohm's KOMA-Script classes and provides several additions and +longdesc customizations to these classes. While the class provides some +longdesc basic settings, mostly regrading the type area, fonts, and the +longdesc title page, it still provides large degrees of freedom to its +longdesc users. However, the package's documentation also provides +longdesc recommendations regarding several aspects, for example, +longdesc recommending BibLaTeX for bibliographies. +containersize 8240 +containerchecksum 16a351d895fd84b9d4a0aea1ab2ac51c2cb1bf6eb19a837ef2a856be79b5ffc03aebf40671332016e1c5475871eb508720703d40b9ad8035850225b07e0cf47a +doccontainersize 1420024 +doccontainerchecksum 88745bde86537fad6895372d9ac1ae8a22df42fd152a959314c059604bbf2604f9fadf5b9f96ea8528e7800e6159f6703f4b32f65c524ca0e4257f6465203bbe +docfiles size=371 + RELOC/doc/latex/se2thesis/CHANGELOG.md + RELOC/doc/latex/se2thesis/LICENSE.txt + RELOC/doc/latex/se2thesis/README.md details="Readme" + RELOC/doc/latex/se2thesis/se2thesis-master-thesis-example.pdf details="Example document" + RELOC/doc/latex/se2thesis/se2thesis-master-thesis-example.tex + RELOC/doc/latex/se2thesis/se2thesis.pdf details="Package documentation" + RELOC/doc/latex/se2thesis/se2thesis.tex + RELOC/doc/latex/se2thesis/test.pdf + RELOC/doc/latex/se2thesis/test.tex +srccontainersize 20964 +srccontainerchecksum d6051f999ef046e52d15716d3f9a594683a9203b3c3811238f1f8f7b3b1b332499a8c6259750d3e5593abfb2fe2fac0f37f18498a5a8592b420c9c11eb07dd68 +srcfiles size=25 + RELOC/source/latex/se2thesis/se2colors.dtx + RELOC/source/latex/se2thesis/se2fonts.dtx + RELOC/source/latex/se2thesis/se2thesis.dtx + RELOC/source/latex/se2thesis/se2thesis.ins +runfiles size=12 + RELOC/tex/latex/se2thesis/se2colors.sty + RELOC/tex/latex/se2thesis/se2fonts.sty + RELOC/tex/latex/se2thesis/se2thesis.cls + RELOC/tex/latex/se2thesis/se2translations-english.trsl + RELOC/tex/latex/se2thesis/se2translations-german.trsl +catalogue-contact-bugs https://github.com/se2p/se2thesis/issues +catalogue-contact-repository https://github.com/se2p/se2thesis +catalogue-ctan /macros/latex/contrib/se2thesis +catalogue-license lppl1.3c +catalogue-topics class dissertation expl3 +catalogue-version 2.1.0 + name secdot category Package revision 20208 @@ -270566,25 +278830,25 @@ catalogue-version 1.0 name secnum category Package -revision 53657 +revision 61813 shortdesc A macro to format section numbering intuitively relocated 1 longdesc This package provides a macro \setsecnum to format section longdesc numbering intuitively. \setsecnum{1.1.1} will set the section longdesc numbering format to arabic.arabic.arabic and the depth to 3. longdesc The package uses LaTeX3. -containersize 1732 -containerchecksum 8e54eb92f9f9c2a07f50e11fc3c68bc39fe4da3eabee3658f24b76c85e8effa8c4cf72a26dc30a8fff9a002a5f66fa1cf349f2ff5ef1dc51eec7c1ae3c0ffe15 -doccontainersize 382656 -doccontainerchecksum e9c44b617d479f9850ad0e408c1c2edc36025f2e1f1e812ecc8370586b22c9aa05f74381e0fa6b1ab39f239bb18e53cc4665482f2b1f3f3057fbeac0f01945d2 -docfiles size=95 +containersize 2268 +containerchecksum 543d290e5ae38ac65cd22217aec417f4c1098d629ce9acfe03340b529a7bb89ca012e2edf5321fd90331d79bd87cb5e6f15eef3e599857c2aaaad22bdfd1be78 +doccontainersize 445424 +doccontainerchecksum da4ec2a79e7a04bbf4296f1fd0929971bd577cf4f55d0852923a0bbb73e78e28eba392d203f1abaad1fcbcdffa9e2206fb7d78003b10a2ed428c87562b01de02 +docfiles size=113 RELOC/doc/latex/secnum/README.md details="Readme" RELOC/doc/latex/secnum/secnum.pdf details="Package documentation" -srccontainersize 4184 -srccontainerchecksum eb4e6c55332e822b4e0b36fcafbe9fcc8a52e3cc5bad9abf538aa87ce6e0318123c0030f5b6e041701b07abc5cd6ba95a7629eff07c27f220e2188c8f6e4b7e4 -srcfiles size=4 +srccontainersize 5876 +srccontainerchecksum ca61cea878ed892f46b4defcd0a05176578d01b01b5f3924dfe6278278fb77ed89df3d41bd788a06bd7af389904421439ca06afac2440ba557948aa4e80a5817 +srcfiles size=7 RELOC/source/latex/secnum/secnum.dtx -runfiles size=2 +runfiles size=3 RELOC/tex/latex/secnum/secnum.sty catalogue-contact-repository https://github.com/GauSyu/secnum catalogue-ctan /macros/latex/contrib/secnum @@ -270765,10 +279029,10 @@ catalogue-topics dvi-proc name seetexk.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of seetexk containersize 25560 -containerchecksum 727e80b9062f69d9363442c4b69aaf3c575abdb103f5af263140aa426c9f857d1f038e5e010f3cc35340f38d496e655107f111ce8271ad248030a5744f002c44 +containerchecksum 0ecc1ccf493bea41ad51b449f951d86c2e06ad2afa0b4ab473e1aaac8ccc2d1de2cb34240eca6d5727feef42e4a966cc30ba36748f435864cbc39e5b584f0584 binfiles arch=aarch64-linux size=29 bin/aarch64-linux/dvibook bin/aarch64-linux/dviconcat @@ -270777,11 +279041,11 @@ binfiles arch=aarch64-linux size=29 name seetexk.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of seetexk -containersize 42456 -containerchecksum 36f4784c773aa0dbb48a41072445dedb9129a4c9be8a1ee4dfb9122765b0d2bd1039d15958751e14fc75978e5371a29973d6f0c85eeb857ddaf840877e7b849f -binfiles arch=amd64-freebsd size=48 +containersize 41600 +containerchecksum c3a8a54687bb91b3649ac8d86ed9971571a8ec1d3ce34223fd288f0263f27fc73660ed43b29aec5d51ce42f7686fd6709f8b138d97b773c314f7cd35bec22985 +binfiles arch=amd64-freebsd size=46 bin/amd64-freebsd/dvibook bin/amd64-freebsd/dviconcat bin/amd64-freebsd/dviselect @@ -270789,10 +279053,10 @@ binfiles arch=amd64-freebsd size=48 name seetexk.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of seetexk -containersize 31516 -containerchecksum 9c064ba23a7c8596fb8e1bd84c43cb655eccd8c959d460f03b3c2c3d6924637b0486012ae744ea9b984223ba6a6fbbfee2ae77558b7b72580ff817506f57492e +containersize 31564 +containerchecksum b5cbb24b22007522abb77fbe87fd92f13043a20c6c6c05f4801ad4adbd0882c3edeb34e6e310a6c26cb38708f8d17718df8cb7ec5493243dcca824ae0ce927b6 binfiles arch=amd64-netbsd size=40 bin/amd64-netbsd/dvibook bin/amd64-netbsd/dviconcat @@ -270801,34 +279065,22 @@ binfiles arch=amd64-netbsd size=40 name seetexk.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of seetexk -containersize 21252 -containerchecksum 64650d909d1fca40a501241ec67181dd397e27d257dc2791453d08d99947e4f4a5a06f0252a7ceba877f46b2b1b8457809f4b5bb109eccb0ca0a642eb28b7df9 +containersize 21216 +containerchecksum ca3349073f28b0919d53d887ce2bc2129c134c07144ed4693a9f242e777bd3517f5e5a0de0eac88e8844ea7351888f2d15ac933eeab516c6dc2a0c966f460631 binfiles arch=armhf-linux size=24 bin/armhf-linux/dvibook bin/armhf-linux/dviconcat bin/armhf-linux/dviselect bin/armhf-linux/dvitodvi -name seetexk.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of seetexk -containersize 23124 -containerchecksum 60928a6d136791f316a64122d65929805dbc0d91ddcea9142f5057c70fd5c6dfcef31407e101b8baeb4f4893104c78fa9f9fad44b363f360c77842bf9fbfb796 -binfiles arch=i386-cygwin size=29 - bin/i386-cygwin/dvibook.exe - bin/i386-cygwin/dviconcat.exe - bin/i386-cygwin/dviselect.exe - bin/i386-cygwin/dvitodvi.exe - name seetexk.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of seetexk -containersize 36048 -containerchecksum e4c05b97875658c7fe7a933615849ccbd7fc0d6888752c85083c780ee78db10862a70308ed1ec3f2086203897209597b8a3840863d17a8c6112d907084f1425f +containersize 37336 +containerchecksum d6e10c8036ed510e9dcb1b537cde88a9b040b27110451836f6ada07cfdb38b251a8cd9810ee1944ded79ceeb249ad7c123b1fc138513d87034fada40e3b82ae5 binfiles arch=i386-freebsd size=40 bin/i386-freebsd/dvibook bin/i386-freebsd/dviconcat @@ -270837,11 +279089,11 @@ binfiles arch=i386-freebsd size=40 name seetexk.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of seetexk -containersize 26796 -containerchecksum 0111d5ccb4feaf64deadcda7265c40956c8edb01c7e06548f1f54586aa9987de8f71210ab8dfe8c0b85654069a75de7840461156995fb357a36ba9fc4412965d -binfiles arch=i386-linux size=26 +containersize 26332 +containerchecksum 2e55a035d41909d052c35f0edf74b68cf5589c79fe79dd9c6e54be2dcb6f12c48d159e134485ebde9054a1d706e3b90c42a1dc6d0c70e4375310391449de56ab +binfiles arch=i386-linux size=29 bin/i386-linux/dvibook bin/i386-linux/dviconcat bin/i386-linux/dviselect @@ -270849,10 +279101,10 @@ binfiles arch=i386-linux size=26 name seetexk.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of seetexk -containersize 27208 -containerchecksum 69b0d560d28bf4d6ef9297c3d6585be053fd7cdf909d9cdf943d456f67b002715cac027e31be436f2994584c83a26e7710a8272486765ae03fce6443cb31901e +containersize 27240 +containerchecksum bf4e6bce435ceddf8be63db6337d16fe1ea301624c83f4e4efc4776d31a951bc387fdc55aebb36bbed78c92e324de8e3a448136fc103f5863ab9ce5aad9c924c binfiles arch=i386-netbsd size=34 bin/i386-netbsd/dvibook bin/i386-netbsd/dviconcat @@ -270861,10 +279113,10 @@ binfiles arch=i386-netbsd size=34 name seetexk.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of seetexk -containersize 37360 -containerchecksum 824ce77da080033accd809a3d2151db7f97514574ab5263645604a24c1c008f3df83415c4a2377e95bab38c1f152f8e0fcb63f4dca22d24d985923a0d889ed42 +containersize 37348 +containerchecksum dd1426beb08ad7f637d827f890ed073df02d51ec8f4372475b399f08c4c4e97daee446775e116a9902a69e42ab6109aa9956a438f6f7b80845546dac20b4ac9f binfiles arch=i386-solaris size=36 bin/i386-solaris/dvibook bin/i386-solaris/dviconcat @@ -270873,34 +279125,34 @@ binfiles arch=i386-solaris size=36 name seetexk.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of seetexk -containersize 66780 -containerchecksum b7bafa4c68589ab61cf31c93772efc608623b87de4da3e59bfbee3fd96ae4c833b431d72942308fd6ab4f2502ffef91817a6b0df1fd683773f9bc5e2a43e96c0 -binfiles arch=universal-darwin size=152 +containersize 66876 +containerchecksum 95f04c7d5a363d6c737f9b3fb3f7f3966c34a5ceace57f1251cfde5b1c89c49534589ffe4d67cb3691a85e4154e151d698aafe3e93d3f4210577534c30bbdf54 +binfiles arch=universal-darwin size=164 bin/universal-darwin/dvibook bin/universal-darwin/dviconcat bin/universal-darwin/dviselect bin/universal-darwin/dvitodvi -name seetexk.win32 +name seetexk.windows category TLCore -revision 58783 -shortdesc win32 files of seetexk -containersize 26656 -containerchecksum 19a7cf157216411097797131939ebc0341d2042f52e80759e3038c6dabb5bd9d51c7aad11b99dd3f7a2aeec150e5169e361683d28fa153ab2b38b7b5af3a4183 -binfiles arch=win32 size=27 - bin/win32/dvibook.exe - bin/win32/dviconcat.exe - bin/win32/dviselect.exe - bin/win32/dvitodvi.exe +revision 65891 +shortdesc windows files of seetexk +containersize 26220 +containerchecksum 339d974445e54d82e1fbdc8f016850eee27548f68e6fb4dde24466e0898c60efd04c336e22e5d85e4f3c55d211f33242c4697b7c58a2e0fd14cddfec4b138ec5 +binfiles arch=windows size=28 + bin/windows/dvibook.exe + bin/windows/dviconcat.exe + bin/windows/dviselect.exe + bin/windows/dvitodvi.exe name seetexk.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of seetexk -containersize 26016 -containerchecksum 2de5456b6c26e071a6c1bdd9d86485fb027002d8a669c778e6e7a838f0b8c1bb45d88f60d31e9322141bb1a74d7c5761fad9dcc0df260725422b53befd6f2305 +containersize 26004 +containerchecksum 7ca926c9030fa9d476119acee4cfb3f6ccb4d06e41e3d5447440ba294ccceb30de2ce9c91357ea33153360d36eb1ab2213434b7e028407a0a3fdc1dfa31c3c3c binfiles arch=x86_64-cygwin size=28 bin/x86_64-cygwin/dvibook.exe bin/x86_64-cygwin/dviconcat.exe @@ -270909,10 +279161,10 @@ binfiles arch=x86_64-cygwin size=28 name seetexk.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of seetexk -containersize 29888 -containerchecksum a3f9c9f5e8bf02d30277b5bb4bc55754014547cf6b4b72baecb9b0989b7b27a0cc4405fb1816a4abd807e8eeae59e0a4065475f17989718a81d80fb009fe41e2 +containersize 29952 +containerchecksum 5de07f03e443f9ccd7a422087c3c566a935ee2e655b4ecd52edc5715a66856cd6a9ea539dd8899fc97eb4443ac6a98ecb7529dbef6634acfcf16b8567c47807b binfiles arch=x86_64-darwinlegacy size=33 bin/x86_64-darwinlegacy/dvibook bin/x86_64-darwinlegacy/dviconcat @@ -270921,11 +279173,11 @@ binfiles arch=x86_64-darwinlegacy size=33 name seetexk.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of seetexk -containersize 27536 -containerchecksum 9d42fc604b0157ab496878eecfc265e9e4886b69317830955c4047a8b8105dba5700e5046eb18d9fa66f6edffbbb2306be08d9d55774d942526faa95ae7358c7 -binfiles arch=x86_64-linux size=27 +containersize 27228 +containerchecksum 5f0078b8e994ccbdd5e0ad43518a53338b6b6e76f32e49494867db1f278feeb13876f9d382ade41544dc2fcad8e6f2a8fceba84ea1ebbd08445dd3bd27a251fc +binfiles arch=x86_64-linux size=31 bin/x86_64-linux/dvibook bin/x86_64-linux/dviconcat bin/x86_64-linux/dviselect @@ -270933,11 +279185,11 @@ binfiles arch=x86_64-linux size=27 name seetexk.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of seetexk -containersize 31228 -containerchecksum b5adf92ee50db357a95214d7a0c161352fafa5e9e3f61150f1469db52d685af3ad33d12dd1b91a3677e15efc626bfecfcb6d9c2c676de4facbbec37adfe212c8 -binfiles arch=x86_64-linuxmusl size=33 +containersize 31356 +containerchecksum 920b9c3eca0e2b2378379830c46ebdf8ef12d729326ca2cff336a6f6acdf5123ac7401219e84e3efb3c50df54c0ac1138f0984a11010ff317483deb955b7874f +binfiles arch=x86_64-linuxmusl size=32 bin/x86_64-linuxmusl/dvibook bin/x86_64-linuxmusl/dviconcat bin/x86_64-linuxmusl/dviselect @@ -270945,10 +279197,10 @@ binfiles arch=x86_64-linuxmusl size=33 name seetexk.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of seetexk -containersize 36464 -containerchecksum 72ed0499d7b2f73f991763a89e0aef5480d473febcfd47bb1cbdcbc22b2e260c6728bbd7c4fd43cba1804ebe1018f2a22ccdfce93da7e109319b9c506f3b3c39 +containersize 36496 +containerchecksum 7c72182696a8da7f4bf69998fd08255f5bd620b7288842b1ba45573ace9756f14fe38fc89133751a8f60e8fd2fa69b34255ab1235a7d53f069f704b646ee3b64 binfiles arch=x86_64-solaris size=36 bin/x86_64-solaris/dvibook bin/x86_64-solaris/dviconcat @@ -271061,7 +279313,7 @@ catalogue-version 0.302 name semantex category Package -revision 56863 +revision 65679 shortdesc Semantic, keyval-based mathematics relocated 1 longdesc The SemanTeX package for LaTeX delivers a more semantic, @@ -271078,22 +279330,23 @@ longdesc considered feature-complete and more or less stable, so using longdesc it at this point should be safe. Still, suggestions, ideas, and longdesc bug reports are more than welcome! depend semtex -containersize 23004 -containerchecksum d09b5dc2e6b8031c03b59254b442a8c5502cacd2d24c91f47ae6243cf5908062e79ab0e7a521c2208848ae7f9acb147716cd8a399b362a91a5cfdec87e213814 -doccontainersize 390728 -doccontainerchecksum 829286b336f1d05afa9561d3937fa526b6062b03950b3f350fb4fc586f45fa253d93939b6432685a08c967eb85c053d07c6fe3e08126869ef63fb43bd0acd992 -docfiles size=134 +containersize 26512 +containerchecksum 156ef55009e52bc91bead46963d5f383c9b760d4c72a45097de1e3ce3fcb1aae4686386efbf8a3abc2f18d16f59d02f297acd825a9cfa21e544ba2dde9986c13 +doccontainersize 420772 +doccontainerchecksum 1f94edb17be3e148a913e98ce020f5273085507537b51b4737c5c4d1589e415aa361cdb25264c412af8b93025b6dde204c625180c5182d319c199d5e8e591757 +docfiles size=144 RELOC/doc/latex/semantex/README.md details="Readme" RELOC/doc/latex/semantex/semantex.pdf details="Package documentation" RELOC/doc/latex/semantex/semantex.tex -runfiles size=59 +runfiles size=79 RELOC/tex/latex/semantex/semantex.sty RELOC/tex/latex/semantex/stripsemantex.lua RELOC/tex/latex/semantex/stripsemantex.sty +catalogue-contact-repository https://github.com/sorsted/SemanTeX catalogue-ctan /macros/latex/contrib/semantex catalogue-license lppl1.3c catalogue-topics maths expl3 -catalogue-version 0.463 +catalogue-version 0.525 name semantic category Package @@ -271344,7 +279597,7 @@ catalogue-version 1.0 name seminar category Package -revision 34011 +revision 59801 shortdesc Make overhead slides relocated 1 longdesc A class that produces overhead slides (transparencies), with @@ -271356,11 +279609,11 @@ longdesc recent classes such as powerdot or beamer, both of which are longdesc tuned to 21st-century presentation styles. Note that the longdesc seminar distribution relies on the xcomment package, which was longdesc once part of the bundle, but now has a separate existence. -containersize 29936 -containerchecksum 63173000935f741b7d1e7dab2fa0091bcb758ba36dfca0b6c745ae165f6b5f3aeea7972319078f175e231d3e0ebd3454d2241a2bc4f0f36ee51bac7bb7287a56 -doccontainersize 356048 -doccontainerchecksum 0bc4ea04a561c8a8c17f4f6ea493fa98e12e93cefd58b0aeeb0b09823f2b97028d945f1c9199fd1a5ab10e0b695079a8d97608474a4d04640496737640a9993c -docfiles size=157 +containersize 30320 +containerchecksum 28795c64e4af5296e228986c28115305cb76087d241e91312cfff351f7e51833a0d76b2acd667fc5f7616dcb1685cd02b2d9352ef7f0e36d5bffdaa5f421e6eb +doccontainersize 348624 +doccontainerchecksum 8b7364dc568d1fd78cce21ff1846a6369fe3fccf07bf16ece8383c941492404d6fdf3be1607aa2279a10d670803536474d7cc318b9b3dda24142fbcc69fe69e0 +docfiles size=154 RELOC/doc/latex/seminar/Changes RELOC/doc/latex/seminar/README details="Readme" RELOC/doc/latex/seminar/run.sh @@ -271368,7 +279621,6 @@ docfiles size=157 RELOC/doc/latex/seminar/sem-make.tex RELOC/doc/latex/seminar/seminar-doc.pdf details="Package documentation" RELOC/doc/latex/seminar/seminar-doc.tex - RELOC/doc/latex/seminar/seminar.bg3 RELOC/doc/latex/seminar/seminar.con RELOC/doc/latex/seminar/seminar.doc RELOC/doc/latex/seminar/semlayer.doc @@ -271378,7 +279630,7 @@ docfiles size=157 RELOC/doc/latex/seminar/semsamp2.tex RELOC/doc/latex/seminar/semsamp3.pdf RELOC/doc/latex/seminar/semsamp3.tex -runfiles size=48 +runfiles size=53 RELOC/tex/latex/seminar/npsfont.sty RELOC/tex/latex/seminar/sem-a4.sty RELOC/tex/latex/seminar/sem-dem.sty @@ -271386,6 +279638,7 @@ runfiles size=48 RELOC/tex/latex/seminar/semcolor.sty RELOC/tex/latex/seminar/semhelv.sty RELOC/tex/latex/seminar/seminar.bg2 + RELOC/tex/latex/seminar/seminar.bg3 RELOC/tex/latex/seminar/seminar.bug RELOC/tex/latex/seminar/seminar.cls RELOC/tex/latex/seminar/seminar.sty @@ -271400,7 +279653,7 @@ catalogue-also foiltex slidenotes catalogue-ctan /macros/latex/contrib/seminar catalogue-license lppl1.2 catalogue-topics presentation -catalogue-version 1.62 +catalogue-version 1.63a name semioneside category Package @@ -271769,7 +280022,7 @@ catalogue-version 0.1 name setspace category Package -revision 24881 +revision 65206 shortdesc Set space between lines relocated 1 longdesc Provides support for setting the spacing between lines in a @@ -271778,21 +280031,51 @@ longdesc onehalfspacing, and doublespacing. Alternatively the spacing longdesc can be changed as required with the \singlespacing, longdesc \onehalfspacing, and \doublespacing commands. Other size longdesc spacings also available. -containersize 7584 -containerchecksum d7e7f2ea7ea8ad3c0b2437a04a965a25b37d96fcc03e92a524f823e80316569db67ca4b1d9313c27e487d4914f4a7e1b4d088ba8fb6c1cb27040552cbb4c8697 -doccontainersize 932 -doccontainerchecksum 6af94bda31c7276e7872286a1199363dc1de52c04f8cc8eb5825abda675657454f1349b619309014e934a9e5d3b80dd8d4b7a590c05d6ca2993ad3d8ceabd7fe -docfiles size=2 - RELOC/doc/latex/setspace/README details="Readme" - RELOC/doc/latex/setspace/setspace-test.tex +containersize 7360 +containerchecksum 9462cb011a2a13a962c08d7d962c120f2b459630f8ec1f96704c2878facf01a37118e9c94ff9cefcc9ac0e0e3c1bbedc158aaca24dcf13cad0973a6544e79651 +doccontainersize 196928 +doccontainerchecksum 0ff85289fb5ed620f208e3ba84e82efacc91da32611e95a4a99aa5c939c0400ddd3a118d460ef65d77b483678e5ce8c71b901ed0ee1f711cfaa29f26141089fd +docfiles size=51 + RELOC/doc/latex/setspace/README.md details="Readme" + RELOC/doc/latex/setspace/setspace-doc.pdf details="Package documentation" + RELOC/doc/latex/setspace/setspace-doc.tex runfiles size=6 RELOC/tex/latex/setspace/setspace.sty -catalogue-contact-repository https://github.com/rf-latex/setspace -catalogue-contact-support https://github.com/rf-latex/setspace/issues +catalogue-contact-repository https://github.com/latex-package-repositories/setspace +catalogue-contact-support https://github.com/latex-package-repositories/setspace/issues catalogue-ctan /macros/latex/contrib/setspace catalogue-license lppl1.3 catalogue-topics line-space -catalogue-version 6.7a +catalogue-version 6.7b + +name seu-ml-assign +category Package +revision 62933 +shortdesc Southeast University Machine Learning Assignment template +relocated 1 +longdesc This is a template for the Southeast University Machine +longdesc Learning Assignment that can be easily adapted to other usages. +longdesc This template features a colorful theme that makes it look +longdesc elegant and attractive. You can also find the template +longdesc available on Overleaf. +containersize 4772 +containerchecksum 929cf4aa8b1a55a74cc13e4f823f6d814fadb425f7a6ea53c18cf4244a14b9bee8afd8c06327add62b016ff36e7ecfddc29323105362a63342d382febbabc428 +doccontainersize 175096 +doccontainerchecksum fa1d6be46bac0c2075b8e43c1f39d74092cf86b975b4c281c57b778ba16aa6345258261e26690fc84f79fdfd57082eba64d894002a723ee8bd821fd9d99e7774 +docfiles size=53 + RELOC/doc/latex/seu-ml-assign/README.md details="Readme" + RELOC/doc/latex/seu-ml-assign/seu-ml-assign-doc.pdf details="Package documentation" + RELOC/doc/latex/seu-ml-assign/seu-ml-assign-doc.tex + RELOC/doc/latex/seu-ml-assign/seu-ml-assign-sample.tex +runfiles size=4 + RELOC/tex/latex/seu-ml-assign/seu-ml-assign.cls +catalogue-contact-bugs https://github.com/Teddy-van-Jerry/SEU-ML-Assign_LaTeX_Template/issues +catalogue-contact-home https://seu-ml-assign.github.io +catalogue-contact-repository https://github.com/Teddy-van-Jerry/SEU-ML-Assign_LaTeX_Template +catalogue-ctan /macros/latex/contrib/seu-ml-assign +catalogue-license mit +catalogue-topics class exercise doc-templ +catalogue-version 1.1 name seuthesis category Package @@ -272705,32 +280988,65 @@ catalogue-license lppl1.2 catalogue-topics listing macro-demo catalogue-version 0.3s -name showhyphens +name showhyphenation +category Package +revision 63578 +shortdesc Marking of hyphenation points +relocated 1 +longdesc The package shows the hyphenation points in the document by +longdesc either inserting small triangles below the baseline or by +longdesc typesetting explicit hyphens. The markers are correctly placed +longdesc even within ligatures and their size adjusts to the font size. +longdesc By option the markers can be placed behind or in front of the +longdesc glyphs. The package requires LuaLaTeX. +containersize 2912 +containerchecksum b1370cb5b483bb206248f06cb0fba3acc23abc445c655b486e174bbbe572397897d4c803f25b68e9babd6a162f1d2abd98a11909062f846cb194b8c4b4ca001b +doccontainersize 59840 +doccontainerchecksum 416be8f4e134eb4eb4bd5512fc50469051eb6792e929f1aa21fcd4fc9025e1be2a69c7f188e26e4522683f5b527ac468fbea08eb7963f0e3a8ff4480d44d5be0 +docfiles size=21 + RELOC/doc/lualatex/showhyphenation/DEPENDS.txt + RELOC/doc/lualatex/showhyphenation/README.md details="Readme" + RELOC/doc/lualatex/showhyphenation/showhyphenation.pdf details="Package documentation" + RELOC/doc/lualatex/showhyphenation/showhyphenation.tex +runfiles size=4 + RELOC/tex/lualatex/showhyphenation/showhyphenation.lua + RELOC/tex/lualatex/showhyphenation/showhyphenation.sty +catalogue-ctan /macros/luatex/latex/showhyphenation +catalogue-license lppl1.3c +catalogue-topics hyphenation luatex debug-supp +catalogue-version 0.1a + +name showkerning category Package -revision 39787 -shortdesc Show all possible hyphenations in LuaLaTeX +revision 63708 +shortdesc Showing kerns in a document relocated 1 -longdesc With this package, LuaLaTeX will indicate all possible -longdesc hyphenations in the printed output. -containersize 1784 -containerchecksum e3dc83cf25d0006e4ed0b2181a7cfaa81a2c7d6a7152d9202b2d9ccc876a773045abcb055709a33d69f1efd80c11edd642364e13fde7991730755d944c35afe4 -doccontainersize 86248 -doccontainerchecksum 2e87bf2fb7eb014d28e44634fa8c307bcbfa4e774c1b279a5242b3c99e569dc1eb64d5f0ba30958d0ca84c5c2bd770ce3de81af98981a3e01a2c5bc8575c9e02 -docfiles size=28 - RELOC/doc/lualatex/showhyphens/README details="Readme" - RELOC/doc/lualatex/showhyphens/showhyphens-doc.pdf details="Package documentation" - RELOC/doc/lualatex/showhyphens/showhyphens-doc.tex - RELOC/doc/lualatex/showhyphens/showhyphens-sample.pdf details="Sample output" -runfiles size=1 - RELOC/tex/lualatex/showhyphens/showhyphens.sty -catalogue-ctan /macros/luatex/latex/showhyphens -catalogue-license mit -catalogue-topics hyph-gen luatex -catalogue-version 0.5c +longdesc The package displays all kerning values in the form of colored +longdesc bars directly at the respective position in the document. +longdesc Positive values are displayed in green, negative values in red. +longdesc The width of the bars corresponds exactly to the respective +longdesc kerning value. By option the bars can be placed behind or in +longdesc front of the glyphs. The package requires LuaLaTeX. +containersize 2660 +containerchecksum f0a758741d71ec8ed3664527720a1dffb34bc3ef4c4583faad782d0034202d22ca0e4d6648a4a9bb82b9def441871f9305ec9d230b1e3aaca42c0154c913eb71 +doccontainersize 45620 +doccontainerchecksum 1a85df418d58aad6e7fef73f7f6920ee68021ff83d99a9d82ab440e5a16cb8a7ac65f42a914e8533d6034f1b23a8a9996bdb0ca028b22cfd10888c54de0b9ac5 +docfiles size=17 + RELOC/doc/lualatex/showkerning/DEPENDS.txt + RELOC/doc/lualatex/showkerning/README.md details="Readme" + RELOC/doc/lualatex/showkerning/showkerning.pdf details="Package documentation" + RELOC/doc/lualatex/showkerning/showkerning.tex +runfiles size=3 + RELOC/tex/lualatex/showkerning/showkerning.lua + RELOC/tex/lualatex/showkerning/showkerning.sty +catalogue-ctan /macros/luatex/latex/showkerning +catalogue-license lppl1.3c +catalogue-topics luatex +catalogue-version 0.1 name showlabels category Package -revision 41322 +revision 63940 shortdesc Show label commands in the margin relocated 1 longdesc This package helps you keep track of all the labels you define, @@ -272739,29 +281055,32 @@ longdesc \label command is used. The package allows you to do the same longdesc thing for other commands. The only one for which this is longdesc obviously useful is the \cite command, but it's easy to do it longdesc for others, such as the \ref or \begin commands. -containersize 3180 -containerchecksum 4d805bcd319df51219c956fce18fffe3b91aad3f468f54f5b6fd9ca15f8c24df10e1092252ba6870fd406c024deb054c60d7f64dfef7194c45b92a8a78a9da1d -doccontainersize 169108 -doccontainerchecksum 0a8cf29e85526e92df738364607e31927223458a969c117d40a0e9cf3470e5c4050107b9fe915ad2a23720a2dd4f5faa1d43d9737b9b7a6f6105de3a36e9888b -docfiles size=53 +containersize 3236 +containerchecksum 285389ed8ef5efcfc4855e2b8003cf94275de536c8f28a237fbdf856947d55c935bfde721a00eb3e2a0187bfe552ff97671197bf1c40492a2e5e700f9536e3e8 +doccontainersize 232956 +doccontainerchecksum 0e624e36f96b8f0d06abc41c301753e3d71671daac4ab01a3914cbd45a5b07f4574011f93c5ce62129fbd77021712fb39364c240eb9b394b204597033ab13df1 +docfiles size=69 RELOC/doc/latex/showlabels/README details="Readme" RELOC/doc/latex/showlabels/VERSION RELOC/doc/latex/showlabels/lppl.txt RELOC/doc/latex/showlabels/showlabels.html details="Package documentation (HTML)" RELOC/doc/latex/showlabels/showlabels.pdf details="Package documentation (PDF)" RELOC/doc/latex/showlabels/style.css -srccontainersize 12656 -srccontainerchecksum eb0dd894327bd6f4591a3a57c52af10e73ae07f7d933ff3310012d46b09d1572adac0eb6a8a22ff03ced5f7832a017b58ef809d5fd914103fb569b42cfb2abfa -srcfiles size=12 +srccontainersize 16256 +srccontainerchecksum b3bd2c4e750662b7a1728f0b100fdb1c78bd33ac95e976211156786833345f2b5a3b5744a29cc134d31b166f85064607d812f7ba1d73c00be421301f4e41031e +srcfiles size=15 RELOC/source/latex/showlabels/showlabels.drv RELOC/source/latex/showlabels/showlabels.dtx RELOC/source/latex/showlabels/showlabels.ins runfiles size=3 RELOC/tex/latex/showlabels/showlabels.sty +catalogue-contact-bugs https://todo.sr.ht/~nxg/showlabels +catalogue-contact-home https://purl.org/nxg/dist/showlabels +catalogue-contact-repository https://heptapod.host/nxg/showlabels catalogue-ctan /macros/latex/contrib/showlabels -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics label-ref bibtex-supp macro-supp -catalogue-version 1.8 +catalogue-version 1.9.2 name showtags category Package @@ -272785,7 +281104,7 @@ catalogue-version 1.05 name shtthesis category Package -revision 57740 +revision 62441 shortdesc An unofficial LaTeX thesis template for ShanghaiTech University relocated 1 longdesc This package, forked from ucasthesis, is an unofficial LaTeX @@ -272794,12 +281113,39 @@ longdesc format requirements of the school. The user just needs to set longdesc \documentclass{shtthesis} and to set up mandatory information longdesc via \shtsetup, then his or her thesis document will be typeset longdesc properly. -containersize 11540 -containerchecksum 50a81503c33b2d38f04315335c4184f8949b23e0a535297b611c1c28248a87871ca288c1953db0edefa50cc4de238b270400a47e530339601207bb9cc2560429 -doccontainersize 2179340 -doccontainerchecksum e4817b159e7b449f440750bb9bf2fc479f61e0532bfb832b34af989bddaada5d45be5a1be7dc24baca11c0338c4fb91219454b93f9024eef5dc861f2caf844f4 -docfiles size=558 +depend alphalph +depend biber +depend biblatex +depend biblatex-gb7714-2015 +depend booktabs +depend caption +depend colortbl +depend ctex +depend datetime +depend enumitem +depend fancyhdr +depend fmtcount +depend lastpage +depend latexmk +depend listings +depend lua-alt-getopt +depend lualatex-math +depend mathtools +depend ntheorem +depend tex-gyre +depend tocvsec2 +depend transparent +depend undolabl +depend unicode-math +depend xits +depend xstring +containersize 11700 +containerchecksum da3b02cc3558a337d7d35018fad00faf6d9183f3f4bc5b5b31e168a11dcfa705a77cad6c42f3fe3d98ce67f50d94ca1f75a82999d5a27837ea8fba6c01602594 +doccontainersize 2123460 +doccontainerchecksum 04f1ccf2bef9e11364d7f066ed1a7fc218e39ef7a08824eb65537d88ed03097399eb01d07ba6d0a34e7456fc6de1291ea4f1c9264074eecd2e1af341c42e9197 +docfiles size=549 RELOC/doc/latex/shtthesis/CHANGELOG.md + RELOC/doc/latex/shtthesis/DEPENDS.txt RELOC/doc/latex/shtthesis/LICENSE RELOC/doc/latex/shtthesis/README.md details="Readme" RELOC/doc/latex/shtthesis/shtthesis-user-guide.pdf details="Package documentation" language="zh" @@ -272812,7 +281158,7 @@ catalogue-contact-repository https://github.com/lirundong/shtthesis catalogue-ctan /macros/latex/contrib/shtthesis catalogue-license gpl3 catalogue-topics dissertation class chinese -catalogue-version 0.3.2 +catalogue-version 0.3.3 name shuffle category Package @@ -272849,38 +281195,39 @@ catalogue-version 1.0 name sidecap category Package -revision 15878 +revision 65618 shortdesc Typeset captions sideways relocated 1 longdesc Defines environments called SCfigure and SCtable (analogous to longdesc figure and table) to typeset captions sideways. Options include longdesc outercaption, innercaption, leftcaption and rightcaption. -containersize 3448 -containerchecksum c0b775c16ea9acc7de952c6d08d49f57ac4517d5a78e822255176ee1f570c17d584b34821a255ec10e7fbb9334fc7904147bc4d613ad4db9553a3917f737b924 -doccontainersize 151364 -doccontainerchecksum 5bee3d448386a2bd508dcae495c6fb83806542680db7c5fe8cf35ea09a955df01e5c01fa64c28b64f0bb9a3dc0411fc68a835e1b0ae9d46c1387f544538d26de -docfiles size=47 - RELOC/doc/latex/sidecap/README details="Readme" - RELOC/doc/latex/sidecap/sc-test-common.tex +containersize 3424 +containerchecksum 3133ceaf7db89d57e7dbdabc016491795b2dd67ecd614fc4125f41dfd08ba0a03371c446d1fd7e22d1c491ac3ba6ced2856c6c3c9497304f4c041c21c0c7f558 +doccontainersize 320340 +doccontainerchecksum 2ecf3e41c8840ab87b49f771d590f8ba0d05d205bd435571dd71f2ad1d1aa727f7151b9bd913c4d33ec16ccb5cbf513bb170e59e600bf64b7c69a08273580eef +docfiles size=88 + RELOC/doc/latex/sidecap/README.md details="Readme" 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/scraggeddemo.tex RELOC/doc/latex/sidecap/sidecap.pdf details="Package documentation" -srccontainersize 8216 -srccontainerchecksum b69fcf81ba9d05c20c64b7d71369ff25a0cc8185c914935cc986635ccf1ca9ce709cbe2f12f5e671a5b946f121950b3f6c6edb9d28e736959c5ccdf7fdbea405 -srcfiles size=9 - RELOC/source/latex/sidecap/Makefile +srccontainersize 7852 +srccontainerchecksum e961f8965d2f28da04a8c5369370ae6d07e54c1091ec28da87639c6ca737f028010b85d93943fa84a0472f6f42d52d0254fa3e916acada22358e06c420a60d57 +srcfiles size=8 RELOC/source/latex/sidecap/sidecap.dtx RELOC/source/latex/sidecap/sidecap.ins runfiles size=3 RELOC/tex/latex/sidecap/sidecap.sty +catalogue-contact-bugs https://github.com/rolfn/sidecap/issues +catalogue-contact-repository https://github.com/rolfn/sidecap catalogue-ctan /macros/latex/contrib/sidecap -catalogue-license lppl +catalogue-license lppl1.3 catalogue-topics caption rotation -catalogue-version 1.6f +catalogue-version 1.7a name sidenotes category Package @@ -272913,6 +281260,55 @@ catalogue-license lppl1.3 catalogue-topics marginal catalogue-version 1.00a +name sidenotesplus +category Package +revision 63867 +shortdesc Place referenced notes, alerts, figures and tables into the document margin +relocated 1 +longdesc Sidenotesplus is a comprehensive package for placing labeled or +longdesc referenced notes, temporary alerts, bibliography references, +longdesc figures and tables into the margin. Marginals can be either +longdesc floated or at fixed positions relative to the text. Twoside +longdesc symmetry is preserved. For BibLaTeX users, macros for side +longdesc references are provided. Three margin styles are provided. +longdesc Two-page symmetric layouts either as (i) Ragged outer with note +longdesc reverences in the margin separator or (ii) justified with last +longdesc line ragged outer. And (iii) a classic look, justified with +longdesc last line ragged right and note reference to the left of the +longdesc note, but two-page symmetry is lost. The command \sidenote +longdesc mimics the \footnote command and provides labelled (numbers, +longdesc alphabetic, roman) references. However, un-numbered and custom +longdesc symbols can also be specified. Temporary sidealerts are +longdesc rendered only if the package option alerton is specified. +longdesc Alerts are useful as to do reminders during document +longdesc development. Furthermore, captions for figures and tables can +longdesc also be placed into margin. Also, full width environments for +longdesc figures, tables and text are provided. The text environment can +longdesc be partially widened, suitable if that extra space for an +longdesc equation is required. +containersize 5524 +containerchecksum cca775bb5e82d63d2e475c4329f5d4a6ca72caf02f0dc3ba0ff6acc33564ef856a25dbbe4c558d2b761106ba1407967a77063f98aee937b26d50269f86b0b847 +doccontainersize 413056 +doccontainerchecksum 62b0158838ef5f16361c2fb2b5ed8cfaf0eee42c9f3409937ec2034da0436b2a9038670ff857a1c7629687bee7f05a14793084d9a1713e8d6ace2510291be025 +docfiles size=116 + RELOC/doc/latex/sidenotesplus/README.txt details="Readme" + RELOC/doc/latex/sidenotesplus/sidenotesplus.pdf details="Package documentation" + RELOC/doc/latex/sidenotesplus/tests-sidenoteplus.pdf + RELOC/doc/latex/sidenotesplus/tests-sidenoteplus.tex +srccontainersize 9676 +srccontainerchecksum a8e72d6161e48ccfe0a0db76d9c4d98a9de655f2c5a015597ea0b54701bff280b7488b836320f2285be9469ff3bb12c3726c182fe04bdb5e2cf5dc5d1df689e8 +srcfiles size=11 + RELOC/source/latex/sidenotesplus/sidenotesplus.dtx + RELOC/source/latex/sidenotesplus/sidenotesplus.ins +runfiles size=6 + RELOC/tex/latex/sidenotesplus/sidenotesplus.sty +catalogue-contact-bugs https://github.com/anton-vrba/sidenotesplus +catalogue-contact-repository https://github.com/anton-vrba/sidenotesplus +catalogue-ctan /macros/latex/contrib/sidenotesplus +catalogue-license lppl1.3c +catalogue-topics marginal +catalogue-version 1.02 + name sides category Package revision 15878 @@ -272994,6 +281390,38 @@ catalogue-license lppl catalogue-topics compilation catalogue-version 1.5b +name sillypage +category Package +revision 66349 +shortdesc John Cleese's Silly Walk as page numbering style +relocated 1 +longdesc This simple LaTeX package provides John Cleese's iconic silly +longdesc walk routine as a page numbering style. Other counters, as well +longdesc as integers, can be typeset in this "silly" style, too. +containersize 16588 +containerchecksum 5ca2f89c924dadaa727aee6b6bf5b0a3c06fe1d841ec37cf1a6fbb7d3516cfe8f4e2823ad8f9acbdd85a333e3736985d139e44b907d3bcf793340d49a164405a +doccontainersize 291288 +doccontainerchecksum fd4ed28957de74aac2f90d2aa37e5014f423738f783f837fdea9c28db0d4b9ebc65c8017fbcb596f86610f712dcd38864356838c1e8da123c2eda1be4932b936 +docfiles size=82 + RELOC/doc/latex/sillypage/README.md details="Readme" + RELOC/doc/latex/sillypage/sillypage-example.pdf details="Example of use" + RELOC/doc/latex/sillypage/sillypage-example.tex + RELOC/doc/latex/sillypage/sillypage.pdf details="Package documentation" +srccontainersize 4624 +srccontainerchecksum 460ed2ec718e74921711b29010138f5e6e544da8e91631b32144f3ee0ad377b815a3d974fdfea47ab231dbdf17d4894e6a73ea78b00ee03e8934219858ce43ee +srcfiles size=4 + RELOC/source/latex/sillypage/sillypage.dtx + RELOC/source/latex/sillypage/sillypage.ins +runfiles size=8 + RELOC/tex/latex/sillypage/sillypage.sty + RELOC/tex/latex/sillypage/sillywalk-map.pdf +catalogue-contact-bugs https://github.com/cereda/sillypage/issues +catalogue-contact-repository https://github.com/cereda/sillypage +catalogue-ctan /macros/latex/contrib/sillypage +catalogue-license cc-by-sa-4 lppl1.3c +catalogue-topics amusements page-nos numbers +catalogue-version 1.6 + name simple-resume-cv category Package revision 43057 @@ -273052,7 +281480,7 @@ catalogue-topics dissertation class name simplebnf category Package -revision 56761 +revision 65485 shortdesc A simple package to format Backus-Naur form (BNF) relocated 1 longdesc This package provides a simple way to format Backus-Naur form @@ -273060,11 +281488,11 @@ longdesc (BNF). The included bnfgrammar environment parses BNF longdesc expressions (possibly annotated), so users can write readable longdesc BNF expressions in their documents. The package requires expl3, longdesc xparse, and mathtools. -containersize 2204 -containerchecksum f306851371767da793a60cb604776aa7f537401a3dcbdca899b347d090baee3d3e6d28550f8d95a287e722a92550137f9241d2c207d955b47fe0b392a44b5ed8 -doccontainersize 135860 -doccontainerchecksum cd4c3786d953669b53e9a3b5f6e13591ed67efcfbda7eac37f3e7c3709a8b6599f3e9f363e91658019fc03b91c4ed190ed40c81cc9e935bee697a77b51f4238a -docfiles size=36 +containersize 2656 +containerchecksum 2f78a17109b817eba036c52e924ba66c0bb1f5f752660b968270c5decd39c1e19aef50e83617247db1b94064d46f5c774e0acbcd444c8d03ddb8f133c6a667ac +doccontainersize 154692 +doccontainerchecksum 7ee5f4b33fc0739a9da0bd8e3d488e1bf7e71b798b6665535d18821377b76752d5a0183b8f2d495ee0285381594a5e53aa1090676bde84c9afc2049a29bf8ca8 +docfiles size=43 RELOC/doc/latex/simplebnf/LICENSE RELOC/doc/latex/simplebnf/README.md details="Readme" RELOC/doc/latex/simplebnf/simplebnf-doc.pdf details="Package documentation" @@ -273077,7 +281505,7 @@ catalogue-contact-support https://github.com/Zeta611/simplebnf/issues catalogue-ctan /macros/latex/contrib/simplebnf catalogue-license mit catalogue-topics expl3 formal-spec -catalogue-version 0.2.0 +catalogue-version 0.3.2 name simplecd category Package @@ -273139,6 +281567,69 @@ catalogue-license lppl catalogue-topics cv lyx class catalogue-version 1.6a +name simpleicons +category Package +revision 66328 +shortdesc Simple Icons for LaTeX +relocated 1 +longdesc Similar to FontAwesome icons being provided on LaTeX by the +longdesc fontawesome package, this package aims to do the same with +longdesc Simple Icons. For reference, visit their website: +longdesc https://simpleicons.org/. +execute addMap simpleicons.map +containersize 2736496 +containerchecksum 7591c1c47cc1a1c7c33dc3585f8b75e076b5a5f4091f7865895d539863c82b75cd2ec0d6b0dbe3cdb9dc395569cba3e72ec36d08693ce9f4bb2e265891daa65f +doccontainersize 2007060 +doccontainerchecksum b25953bd4cb0ac852ae9ce415f0c2e7c17d09c9dcceb27efc9b94b3143e43bcb76258d302ce56174931e4816da0d8faa81d89499089378a5fdaf2e964c5c607c +docfiles size=522 + RELOC/doc/fonts/simpleicons/README.md details="Readme" + RELOC/doc/fonts/simpleicons/bindings.tex + RELOC/doc/fonts/simpleicons/simpleicons.pdf details="Package documentation" + RELOC/doc/fonts/simpleicons/simpleicons.tex +runfiles size=1034 + RELOC/fonts/enc/dvips/simpleicons/simpleiconsEight.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsFive.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsFour.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsNine.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsOne.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsOneZero.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsSeven.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsSix.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsThree.enc + RELOC/fonts/enc/dvips/simpleicons/simpleiconsTwo.enc + RELOC/fonts/map/dvips/simpleicons/simpleicons.map + RELOC/fonts/opentype/public/simpleicons/SimpleIcons.otf + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsEight.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsFive.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsFour.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsNine.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsOne.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsOneZero.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsSeven.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsSix.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsThree.tfm + RELOC/fonts/tfm/public/simpleicons/SimpleIcons--simpleiconsTwo.tfm + RELOC/fonts/type1/public/simpleicons/SimpleIcons.pfb + RELOC/tex/latex/simpleicons/simpleicons.sty + RELOC/tex/latex/simpleicons/simpleiconsglyphs-pdftex.tex + RELOC/tex/latex/simpleicons/simpleiconsglyphs-xeluatex.tex + RELOC/tex/latex/simpleicons/usimpleiconsEight.fd + RELOC/tex/latex/simpleicons/usimpleiconsFive.fd + RELOC/tex/latex/simpleicons/usimpleiconsFour.fd + RELOC/tex/latex/simpleicons/usimpleiconsNine.fd + RELOC/tex/latex/simpleicons/usimpleiconsOne.fd + RELOC/tex/latex/simpleicons/usimpleiconsOneZero.fd + RELOC/tex/latex/simpleicons/usimpleiconsSeven.fd + RELOC/tex/latex/simpleicons/usimpleiconsSix.fd + RELOC/tex/latex/simpleicons/usimpleiconsThree.fd + RELOC/tex/latex/simpleicons/usimpleiconsTwo.fd +catalogue-contact-bugs https://github.com/ineshbose/simple-icons-latex/issues +catalogue-contact-repository https://github.com/ineshbose/simple-icons-latex +catalogue-ctan /fonts/simpleicons +catalogue-license cc-by-1 +catalogue-topics font font-symbol font-supp-symbol font-otf font-type1 +catalogue-version 8.6.0 + name simpleinvoice category Package revision 45673 @@ -273170,16 +281661,16 @@ catalogue-topics invoice name simplekv category Package -revision 54915 +revision 64578 shortdesc A simple key/value system for TeX and LaTeX relocated 1 longdesc The package provides a simple key/value system for TeX and longdesc LaTeX. -containersize 2908 -containerchecksum e24f82c6cf65677bee7a55e43c731c26fc05bceb5add86fb79cfbf0d05d09aba34f6cb0c72074a012096875bccc4a51360eed584e3b812e88d772b22676504de -doccontainersize 332620 -doccontainerchecksum 8a92af8cecf0d3be86c5a2f1abc4b1ad675f920956a99cf3a99bed61eaa56655eff0f3a2cefc728252dc7c346fbb4fea17a49a4eb4f2e9722409784aeb92a364 -docfiles size=85 +containersize 2912 +containerchecksum 5b070b0408c002eca4bf530cc264f3d08885b5e7bfbe6531f7ce66312c01a23c78aff365c16d946786ccffa099094046edc5257f85ffb7cdbccc42137f2b8420 +doccontainersize 130940 +doccontainerchecksum 0dff9d5ec8625d9d99d9e249ac8fbfd05bf200c8c1312a57526b694919c855d528028635523e1e55757b633dce7d63727b42d35909cbbdd369bafe2c519c2b48 +docfiles size=36 RELOC/doc/generic/simplekv/README details="Readme" RELOC/doc/generic/simplekv/simplekv-fr.pdf details="Package documentation" language="fr" RELOC/doc/generic/simplekv/simplekv-fr.tex @@ -273191,19 +281682,48 @@ catalogue-contact-repository https://framagit.org/unbonpetit/simplekv/tree/maste catalogue-ctan /macros/generic/simplekv catalogue-license lppl1.3c catalogue-topics keyval -catalogue-version 0.2 +catalogue-version 0.2a + +name simplenodes +category Package +revision 62888 +shortdesc Simple nodes in four colors written in TikZ for LaTeX +relocated 1 +longdesc This is a LaTeX macro package for generating simple node-based +longdesc flow graphs or diagrams built upon the TikZ package. The +longdesc package provides two basic commands, one to generate a node and +longdesc one to create links between nodes. The positioning of the nodes +longdesc is not handled by the package itself but is preferably done in +longdesc a tabular environment. In total, four simple node types are +longdesc defined, loosely based on the nomenclature and color patterns +longdesc of the popular Java script Bootstrap. +containersize 2172 +containerchecksum e92bb0c87e0c490702201fe8328f065d4307f4adfbc06a2e9dd74ee698434274ddbc065a600c5c0a36bca0c55b9cdcd7e3bd469af276585c09ba7d918b711e51 +doccontainersize 208680 +doccontainerchecksum df7900304a63225b51ceebb02d387f172cc415c09a65209cc850485668f893e4effb3befe424164dc291e283f80054eb6ae18785024278e93739e9d98562eb21 +docfiles size=56 + RELOC/doc/latex/simplenodes/LICENSE + RELOC/doc/latex/simplenodes/README.md details="Readme" + RELOC/doc/latex/simplenodes/simplenodes.org + RELOC/doc/latex/simplenodes/simplenodes.pdf details="Package documentation" +runfiles size=1 + RELOC/tex/latex/simplenodes/simplenodes.sty +catalogue-contact-repository https://github.com/user9856749/simplenodes +catalogue-ctan /graphics/pgf/contrib/simplenodes +catalogue-license mit +catalogue-topics pgf-tikz diagram diagram-flow name simpleoptics category Package -revision 54080 +revision 62977 shortdesc Drawing lenses and mirrors for optical diagrams relocated 1 longdesc This package provides some of macros for drawing simple lenses longdesc and mirrors for use in optical diagrams. containersize 1100 -containerchecksum c5e87774fa8003af6e1c81a83e9f63d71934723bf1dc7aebc553c838e30463d0b7dd3a41f76a644ca291cf7f59e50366e291cf1bb618a1321df4157f6ecea987 -doccontainersize 83472 -doccontainerchecksum 55c29a218edad811dd2c8d2109ec70d4ee95570db0336fda88e74456fd8c6d549cd3355ccada4fe55097b6c074082fb4dfa57ddcd6559ff5e8bb7e67d70fa376 +containerchecksum 2b53c2ccab2dbece85653ac4d40802a41c7dc9aabbb16022f08e351e77e7bd464e47a54005889707de15041a5f3565f40c97355dc3953249a951dd984311121b +doccontainersize 83476 +doccontainerchecksum 36aa19521be45853d96c9a0406afa60a934ff5a701993fb33d2c4070e3e99822097b9daf100e9364f80a0779158a81f5acd6904f5050dc190fe22eb4ed65deca docfiles size=28 RELOC/doc/latex/simpleoptics/README details="Readme" RELOC/doc/latex/simpleoptics/simpleoptics.pdf details="Package documentation" @@ -273213,7 +281733,7 @@ runfiles size=2 catalogue-also tikz-optics catalogue-ctan /graphics/pgf/contrib/simpleoptics catalogue-license lppl1.3c -catalogue-topics pgf-tikz physics +catalogue-topics pgf-tikz physics optics catalogue-version 1.1.1 name simpler-wick @@ -273248,6 +281768,38 @@ catalogue-license lppl1.3 catalogue-topics physics catalogue-version 1.0.0 +name simples-matrices +category Package +revision 63802 +shortdesc Define matrices by given list of values +relocated 1 +longdesc Macros to define and write matrices whose coefficients are +longdesc given row by row in a list of values separated by commas. +containersize 2508 +containerchecksum 859e5e8c221deb1a40f08a0cc2ac6949cbb055791ae5435f97675aff4bb1e97caa2fa8c49b5735d31ee7b11ae8638af839affdd795d052d022890b267131dc75 +doccontainersize 1527324 +doccontainerchecksum 8350ce5c4b504f955e7e2b214dfc7938e010ae440b0e51389f2013b8c9229db362938743e8da08d7fafaf1be67d29231d7fe6f92507399b838c65ce3890ec29e +docfiles size=465 + RELOC/doc/latex/simples-matrices/LISEZMOI.md details="Readme" language="fr" + RELOC/doc/latex/simples-matrices/MANIFEST.md + RELOC/doc/latex/simples-matrices/README.md details="Readme" language="en" + RELOC/doc/latex/simples-matrices/simples-matrices-eng.pdf details="User guide" language="en" + RELOC/doc/latex/simples-matrices/simples-matrices-eng.tex + RELOC/doc/latex/simples-matrices/simples-matrices-fra.pdf details="User guide" language="fr" + RELOC/doc/latex/simples-matrices/simples-matrices-fra.tex + RELOC/doc/latex/simples-matrices/simples-matrices.pdf details="Package documentation" +srccontainersize 14124 +srccontainerchecksum f88a1b06657e40cae2c505f56e35c8696f4f4d962376b5f8886965066fe21a4bc36edb7f467c29cfcd511b5564643699a54179b44f5187f1c193690485598a15 +srcfiles size=15 + RELOC/source/latex/simples-matrices/simples-matrices.dtx + RELOC/source/latex/simples-matrices/simples-matrices.ins +runfiles size=3 + RELOC/tex/latex/simples-matrices/simples-matrices.sty +catalogue-ctan /macros/latex/contrib/simples-matrices +catalogue-license lppl1.3c +catalogue-topics maths matrix expl3 +catalogue-version 1.0.1 + name simplewick category Package revision 15878 @@ -273295,35 +281847,34 @@ catalogue-topics tut-latex name simplivre category Package -revision 58414 +revision 65475 shortdesc Write your books in a simple and clear way relocated 1 longdesc This package provides a LaTeX class for typesetting books with -longdesc a simple and clear design. Currently, it has native support to -longdesc English, French, and Chinese typesetting. It compiles with -longdesc either XeLaTeX or LuaLaTeX. This is part of the minimalist -longdesc class series and depends on minimalist.sty from the minimalist -longdesc package. The package name "simplivre" is taken from the French -longdesc words "simple" and "livre" (= "book"). +longdesc a simple and clear design. Currently, it has native support for +longdesc Chinese (simplified and traditional), English, French, German, +longdesc Italian, Japanese, Portuguese (European and Brazilian), Russian +longdesc and Spanish typesetting. It compiles with either XeLaTeX or +longdesc LuaLaTeX. This is part of the minimalist class series and +longdesc depends on minimalist.sty from the minimalist package. The +longdesc package name "simplivre" is taken from the French words +longdesc "simple" and "livre" (= "book"). depend minimalist -containersize 3072 -containerchecksum cdcaa2083a2005e7b3dfb3b2e931a49da6f18c7860fad8dd0411bf88251a799836b6032382e661611487f6cd549a1d916977542f448ac689d976dd194c0a49a3 -doccontainersize 271784 -doccontainerchecksum 8bacd8834d8b54707d564b2a16a4f7d177205e9ab9704d2a47a42be399c0bf5e0ca1728f1b44e48e3957a69285615587df40d3ce9f98147bbb692ec06ac7875b -docfiles size=78 +containersize 4864 +containerchecksum 45fd5adc80b471310cb81961199e4565d40e6302c4069a19016f46367013c587b54ae7af58bed5d2c37812d9aed9deee9b9ffde0762cd2927b96ce311598e7d0 +doccontainersize 7056 +doccontainerchecksum 507ae125225f775b635a9762369083b5de38a7790b959d7d5c6d0f993b350bda97081e26a4377633ca1a609e1ae2759f34598714de32e31dba17b6c7f54a7f9b +docfiles size=7 + RELOC/doc/latex/simplivre/DEPENDS.txt RELOC/doc/latex/simplivre/LICENSE RELOC/doc/latex/simplivre/README.md details="Readme" - RELOC/doc/latex/simplivre/simplivre-doc-cn.pdf details="Package documentation (Chinese)" language="zh" - RELOC/doc/latex/simplivre/simplivre-doc-cn.tex - RELOC/doc/latex/simplivre/simplivre-doc-en.pdf details="Package documentation (English)" - RELOC/doc/latex/simplivre/simplivre-doc-en.tex -runfiles size=2 +runfiles size=8 RELOC/tex/latex/simplivre/simplivre.cls catalogue-also minimalist catalogue-contact-repository https://github.com/Jinwen-XU/minimalist catalogue-ctan /macros/unicodetex/latex/simplivre catalogue-license lppl1.3c -catalogue-topics class book-pub chinese +catalogue-topics class book-pub multilingual expl3 name simurgh category Package @@ -273423,6 +281974,40 @@ catalogue-license gpl2 catalogue-topics persian luatex catalogue-version 0.01b +name sistyle +category Package +revision 59682 +shortdesc Package to typeset SI units, numbers and angles +relocated 1 +longdesc This package typesets SI units, numbers and angles according to +longdesc the ISO requirements. Care is taken with font setup and +longdesc requirements, and language customisation is available. Note +longdesc that this package is (in principle) superseded by siunitx; +longdesc sistyle has maintenance-only support, now. +containersize 3544 +containerchecksum 0423402d3fea5dbbb60abf6c763bd037982479557b84b6ff38f795168234cd3dc6eb0708fb7b5e76abb1f68560a884e7d8b4e3a256d78b23aa81dba9b6e70d4d +doccontainersize 323456 +doccontainerchecksum 94fea0a472ccd43396921d957544ce6b0a1d6b9ca5ee63a01fb0f1fdd61e1cafeeca4c85366302117d852f20798c51b76966097bee3c2d7f6509e339720b744f +docfiles size=126 + RELOC/doc/latex/sistyle/README details="Readme" + RELOC/doc/latex/sistyle/SIstyle-2.3a.pdf details="Package documentation" + RELOC/doc/latex/sistyle/fig1.eps + RELOC/doc/latex/sistyle/fig1.mps + RELOC/doc/latex/sistyle/fig2.eps + RELOC/doc/latex/sistyle/fig2.mps + RELOC/doc/latex/sistyle/graphs_scr.zip +srccontainersize 18220 +srccontainerchecksum bda83997fcdebffe1792ecf0678cb8065ec0f4dc37b2662fb515c8f314884799650a38efafea97e4103cc915d421b9cbc60ef9c4c81bc34a6b083548ebbf691c +srcfiles size=19 + RELOC/source/latex/sistyle/sistyle.dtx + RELOC/source/latex/sistyle/sistyle.ins +runfiles size=3 + RELOC/tex/latex/sistyle/sistyle.sty +catalogue-ctan /macros/latex/contrib/sistyle +catalogue-license lppl +catalogue-topics typesetting scientific-docs +catalogue-version 2.3a + name sitem category Package revision 22136 @@ -273448,9 +282033,42 @@ catalogue-license lppl1.3 catalogue-topics list catalogue-version 1.0 +name siunits +category Package +revision 59702 +shortdesc International System of Units +relocated 1 +longdesc Typeset physical units following the rules of the International +longdesc System of Units (SI). The package requires amstext, for proper +longdesc representation of some values. Note that the package is now +longdesc superseded by siunitx; siunits has maintenance-only support, +longdesc now. +containersize 6040 +containerchecksum 01b2b83edba4482a6d0434efd4590b3b0fbbb596da6075632a215d60a16cc48d66f0f47d3ca61a0e73290e933952cac15fa2048f6ac12112dc603956f123f5b2 +doccontainersize 250232 +doccontainerchecksum d6c34f20671b68a1ffdf47b32e037d7660b660fb8a8e3768083ee7e33b08e7c313eb5f2c585657dcfa258f85574bf6b13a86ef81e49c2ed1b407e4dfc8dc5d04 +docfiles size=82 + RELOC/doc/latex/siunits/README details="Readme" + RELOC/doc/latex/siunits/SIunits.pdf details="Package documentation" +srccontainersize 34532 +srccontainerchecksum 8cd5d556cc4c6abc503b9882a7c2ff19052a9004d703b37383d6a6c6ec671ea434b03f6f1df362aef2fec06dfeefb7b231072c975eb946262b71b15131f38daa +srcfiles size=40 + RELOC/source/latex/siunits/SIunits.drv + RELOC/source/latex/siunits/SIunits.dtx + RELOC/source/latex/siunits/SIunits.ins +runfiles size=8 + RELOC/tex/latex/siunits/SIunits.cfg + RELOC/tex/latex/siunits/SIunits.sty + RELOC/tex/latex/siunits/binary.sty +catalogue-also sistyle +catalogue-ctan /macros/latex/contrib/SIunits +catalogue-license lppl1.3 +catalogue-topics typesetting scientific-docs +catalogue-version 1.36 + name siunitx category Package -revision 58909 +revision 66365 shortdesc A comprehensive (SI) units package relocated 1 longdesc Typesetting values with units requires care to ensure that the @@ -273475,21 +282093,40 @@ longdesc The package relies on LaTeX 3 support from the l3kernel and longdesc l3packages bundles. depend l3kernel depend l3packages -containersize 34728 -containerchecksum 1b5766cf67cfafc1179570b4463812274cbb8d3c54e09e707907d57d697599832080a52027e7d459047fb084dedaaa6774eca8af0f68090fa1cf3c16f125402b -doccontainersize 636932 -doccontainerchecksum a12c9311581f1096c052d9fdce7d987e9b3a559369a5d0c0a07778e1d5ca8669617620bfc81e54c05f30f329b0f7040b159bd3144197ec0ca5b69e2a04772039 -docfiles size=166 +containersize 66040 +containerchecksum df3b313ee35cec3872cd767f0188d9e4ab5be7931e8431373a968af25773b427097d7f8ae4dd48572ffe872dc4e3067f53fdfd03e0551f753bead07d5da8a164 +doccontainersize 1268400 +doccontainerchecksum 2bbec925bf415049ae17e8a4952d30cc122da946be320deb780560e813db4b175e8401b186b7f23129a92fd69114e9a2b68f8500d1f4843e3af6a17c353a2a94 +docfiles size=345 RELOC/doc/latex/siunitx/CHANGELOG.md RELOC/doc/latex/siunitx/README.md details="Readme" + RELOC/doc/latex/siunitx/siunitx-code.pdf details="Code documentation" RELOC/doc/latex/siunitx/siunitx.pdf details="User manual" -srccontainersize 103384 -srccontainerchecksum 83ad306d973ff33ca327bb5f35ef019471967d3798f341bf5ae384244b448729afcf6602291cc94f56ec0b8ee2b52e32e3023e4b4c049537b5a7f254f5e78dd9 -srcfiles size=151 +srccontainersize 117800 +srccontainerchecksum f1f298d9beb883695cfbae4b79451f84de277f7e251bb40699116e1b82af7312254a7731e20fff80b0b7fa38f09115fe5f178b08c6f59a6b98b6fbc909e9ab86 +srcfiles size=183 + RELOC/source/latex/siunitx/siunitx-abbreviation.dtx + RELOC/source/latex/siunitx/siunitx-angle.dtx + RELOC/source/latex/siunitx/siunitx-binary.dtx + RELOC/source/latex/siunitx/siunitx-code.tex + RELOC/source/latex/siunitx/siunitx-command.dtx + RELOC/source/latex/siunitx/siunitx-complex.dtx + RELOC/source/latex/siunitx/siunitx-compound.dtx + RELOC/source/latex/siunitx/siunitx-emulation.dtx + RELOC/source/latex/siunitx/siunitx-locale.dtx + RELOC/source/latex/siunitx/siunitx-number.dtx + RELOC/source/latex/siunitx/siunitx-print.dtx + RELOC/source/latex/siunitx/siunitx-quantity.dtx + RELOC/source/latex/siunitx/siunitx-symbol.dtx + RELOC/source/latex/siunitx/siunitx-table.dtx + RELOC/source/latex/siunitx/siunitx-unit.dtx RELOC/source/latex/siunitx/siunitx.dtx -runfiles size=78 + RELOC/source/latex/siunitx/siunitx.ins + RELOC/source/latex/siunitx/siunitx.tex +runfiles size=155 RELOC/tex/latex/siunitx/siunitx-abbreviations.cfg RELOC/tex/latex/siunitx/siunitx-binary.cfg + RELOC/tex/latex/siunitx/siunitx-v2.sty RELOC/tex/latex/siunitx/siunitx-version-1.cfg RELOC/tex/latex/siunitx/siunitx.sty catalogue-contact-bugs https://github.com/josephwright/siunitx/issues @@ -273498,11 +282135,11 @@ catalogue-contact-repository https://github.com/josephwright/siunitx catalogue-ctan /macros/latex/contrib/siunitx catalogue-license lppl1.3c catalogue-topics units scientific-docs expl3 -catalogue-version 2.8e +catalogue-version 3.2.2 name skak category Package -revision 46259 +revision 61719 shortdesc Fonts and macros for typesetting chess games relocated 1 longdesc This package provides macros and fonts in Metafont format which @@ -273515,10 +282152,10 @@ longdesc implementation of skak's fonts is available as package skaknew; longdesc an alternative chess notational scheme is available in package longdesc texmate, and a general mechanism for selecting chess fonts is longdesc provided in chessfss. -containersize 20744 -containerchecksum 7bf473f1f35fa05c1cc7cccec212b035619382ce850c287a6b0734cd52182046df35133bd919a335532db9fd5327d2038ce1c3e98342055d93a5dc3b16028697 +containersize 20756 +containerchecksum df1a6adea32b01c8ad8ad7509c68e025ad2e1005d9aaf26cc35c67f82d21f510d1e414831f5df0a2f0703e295fb4c187d359ef7dbfe8afd76a8ce75a90f3b4bb doccontainersize 200108 -doccontainerchecksum 443d98538fb732bfe9f3df26e05e46be54641006df255d3084697301cfa93f48cb8d307a9a5b58f25742b96065658f446b52968c3bd8ce14fdc864f32cb920e4 +doccontainerchecksum ffcb56dfae0a0ea91e716b99d1d91d4f20fedab8eb7b637f62630dbc4a8fad0562120cc02a754df475dc16c4b1a09fb2da48b8a9e22112d0c69550016026f76f docfiles size=90 RELOC/doc/latex/skak/ChangeLog.md RELOC/doc/latex/skak/LICENSE @@ -273565,6 +282202,7 @@ runfiles size=38 RELOC/fonts/tfm/public/skak/skakf10b.tfm RELOC/tex/latex/skak/skak.fd RELOC/tex/latex/skak/skak.sty +catalogue-contact-repository https://github.com/lehoff/skak catalogue-ctan /fonts/chess/skak catalogue-license lppl catalogue-topics font font-mf font-chess games @@ -274146,6 +282784,40 @@ catalogue-ctan /macros/latex/contrib/smalltableof catalogue-license lppl catalogue-topics toc-etc +name smart-eqn +category Package +revision 61719 +shortdesc Automatic math symbol styling for LaTeX documents +relocated 1 +longdesc In LaTeX typesetting, one usually needs to use different +longdesc variants of a math symbol to clarify the meanings. For example, +longdesc in linear algebra literature, it is common to use boldfaced +longdesc symbols to represent vectors, and normal symbols to represent +longdesc scalars. However, applying these variants by typing \mathbf, +longdesc \mathrm commands manually can be daunting. This package aims to +longdesc provide an automatic and customizable approach for math symbol +longdesc styling which eliminates the need to enter style commands +longdesc repeatedly. +containersize 2556 +containerchecksum 03f69303ec66b59a7425e06a4e8941a5c93414514b5f80cbc138a75a5619791dfa3ff2f1435ddbfbe7fe5af298a1af5325f279f36d924e97a5074ef930b42997 +doccontainersize 84356 +doccontainerchecksum 85eb6e8ccbea66cb6e30f862491adc02316af9071753459eb56e8f19011e9ab7865f87868ed348e5b0f6192b2305dffe5272d885486b881e2d286ceb211c77dd +docfiles size=22 + RELOC/doc/latex/smart-eqn/README.md details="Readme" + RELOC/doc/latex/smart-eqn/smart-eqn.pdf details="Package documentation" +srccontainersize 5804 +srccontainerchecksum f7bd8c3b2e616a739b0d5ad459e1041c492b1e00cb9258b55ce4631465e510e71c166a3f6a94b8244a7e1b4bf098ede5c9379a7a5a6baa90eb28026e9be0bad3 +srcfiles size=6 + RELOC/source/latex/smart-eqn/smart-eqn.dtx + RELOC/source/latex/smart-eqn/smart-eqn.ins +runfiles size=2 + RELOC/tex/latex/smart-eqn/smart-eqn.sty +catalogue-contact-repository https://github.com/xziyue/smart-eqn +catalogue-ctan /macros/latex/contrib/smart-eqn +catalogue-license lppl1.3c +catalogue-topics maths expl3 +catalogue-version 1.0 + name smartdiagram category Package revision 42781 @@ -274316,25 +282988,55 @@ catalogue-license lppl1.3c catalogue-topics file-mgmt archival catalogue-version 2.14 +name snaptodo +category Package +revision 61155 +shortdesc A todo that snaps to the closer side +relocated 1 +longdesc This package is an alternative to todonotes, from which it +longdesc differs in the following ways: Depending on where you call +longdesc \snaptodo, the note is put in the left or the right margin, +longdesc whichever is closer. The notes bump each other so they never +longdesc overlap; the lines never overlap either. Aesthetic and +longdesc customizable style. +containersize 1932 +containerchecksum 10d9e3d154a3713c1f494ae626c61a1275b902892ad7cb34f41c65a36335a7ea21bc9d7d77d00845c2e5f270edc91d1be5bfdfa34189a2ac6bd88ab83e78212b +doccontainersize 213112 +doccontainerchecksum ed3df0276b44e2539b9b8cd0b5f6b46f86b18723d0913ed29fba45e30a132b53f8e0206add2d31bc152c78f319b8f7671ea000a1f344dc7f7d80ad9de32cd66b +docfiles size=64 + RELOC/doc/latex/snaptodo/README details="Readme" + RELOC/doc/latex/snaptodo/snaptodo.pdf details="Package documentation" + RELOC/doc/latex/snaptodo/snaptodo.tex + RELOC/doc/latex/snaptodo/test/before_after.tex + RELOC/doc/latex/snaptodo/test/circle_testing.tex + RELOC/doc/latex/snaptodo/test/minimal_testing.tex + RELOC/doc/latex/snaptodo/test/stress_testing.tex +runfiles size=2 + RELOC/tex/latex/snaptodo/snaptodo.sty +catalogue-contact-bugs https://github.com/Symbol1/snaptodo/issues +catalogue-contact-repository https://github.com/Symbol1/snaptodo +catalogue-ctan /macros/latex/contrib/snaptodo +catalogue-license lppl1.3c +catalogue-topics notes editorial + name snotez category Package -revision 57147 +revision 61992 shortdesc Typeset notes, in the margin relocated 1 longdesc The package provides a macro \sidenote, that places a note in longdesc the margin of the document, with its baseline aligned with the longdesc baseline in the body of the document. These sidenotes are longdesc numbered (both in the text, and on the notes themselves). The -longdesc package loads the package etoolbox, pgfopts, marginnote and -longdesc perpage. -containersize 3148 -containerchecksum f55e6af23e02c4a56827b405cefff308087be9a78c1c171b4d8a20d9669cff44d43cb60f522694708b39b8b010576ab0ea6ad2d2355f5b9113ba9e19ef913a87 -doccontainersize 447892 -doccontainerchecksum b68442cfbe57907bf3bd1843cfd4006fc3fd0947d5ff06c18afa50d206f4f2890f7e804f55bb9a3c4f16677deca81f3fc41c75bcc5fa4d55e4aec23a644a86ec -docfiles size=115 +longdesc package loads the package etoolbox, pgfopts and marginnote. +containersize 3216 +containerchecksum 8e827171eb8ae6281d0be97bddd251db57349f935ac6309eace72396be37c33e8bd79d792701f56a5e338eccfae452411de520bdab5f5747e6fb741e5215c1bd +doccontainersize 481648 +doccontainerchecksum 230cd4f3f8922fe520c7b476f8f7b31e3965029e72e58828107e5f7c761b87a64f5c5df9faadb610277d45ff95052878c070e690932759850da34fd82fb028d0 +docfiles size=123 RELOC/doc/latex/snotez/README details="Readme" - RELOC/doc/latex/snotez/snotez_en.pdf details="Package documentation" - RELOC/doc/latex/snotez/snotez_en.tex + RELOC/doc/latex/snotez/snotez-manual.pdf details="Package documentation" + RELOC/doc/latex/snotez/snotez-manual.tex runfiles size=3 RELOC/tex/latex/snotez/snotez.sty catalogue-also sidenotes @@ -274343,7 +283045,7 @@ catalogue-contact-repository https://github.com/cgnieder/snotez/ catalogue-ctan /macros/latex/contrib/snotez catalogue-license lppl1.3c catalogue-topics marginal -catalogue-version 0.5a +catalogue-version 0.7 name songbook category Package @@ -274408,6 +283110,44 @@ catalogue-license lgpl2.1 catalogue-topics music chords catalogue-version 4.5 +name songproj +category Package +revision 64966 +shortdesc Generate Beamer slideshows with song lyrics +relocated 1 +longdesc This package, together with the Beamer class, is used to +longdesc generate slideshows with song lyrics. This is typically used in +longdesc religious services in churches equipped with a projector, for +longdesc which this package has been written, but it can be useful for +longdesc any type of singing assembly. It provides environments to +longdesc describe a song in a natural way, and formatting it into slides +longdesc with overlays. The package comes with an additional Python +longdesc script that can be used to convert plain-text song lyrics to +longdesc the expected LaTeX markup. +containersize 3844 +containerchecksum 404dae04055402b3ba312fac9cd115465ec73dda4d7b7a2550afc088a12465c4a55893a107a85c185286335fa4a9963c38febdc7511bd33548db29ba079e8e73 +doccontainersize 100256 +doccontainerchecksum 99c4b6bbd9d76ceebe91d3631121a6c1197143e23f6cf771d29ada608bb208173e1656276453ba781a81481ed86c382ca9bdae0db4f424c152ca15b3225bcebe +docfiles size=30 + RELOC/doc/latex/songproj/LICENSE + RELOC/doc/latex/songproj/README.md details="Readme" + RELOC/doc/latex/songproj/examples/clementine.txt + RELOC/doc/latex/songproj/song2tex.py + RELOC/doc/latex/songproj/songproj.pdf details="Package documentation" +srccontainersize 9260 +srccontainerchecksum 005835a9319c80acb3575d644675f1311c0a78918612e1151904f6b715c23fa333c1a67e8f566d7bcb01dce212884454120a52abd0ad15049ade3dbf9e5cf810 +srcfiles size=12 + RELOC/source/latex/songproj/Makefile + RELOC/source/latex/songproj/songproj.dtx + RELOC/source/latex/songproj/songproj.ins +runfiles size=4 + RELOC/tex/latex/songproj/songproj.sty +catalogue-contact-repository https://git.ortolo.eu/songproj.git/ +catalogue-ctan /macros/latex/contrib/songproj +catalogue-license bsd3 +catalogue-topics verse music presentation expl3 +catalogue-version 1.0.1 + name songs category Package revision 51494 @@ -274510,40 +283250,46 @@ catalogue-version 0.1 name soul category Package -revision 56495 +revision 65908 shortdesc Hyphenation for letterspacing, underlining, and more relocated 1 -longdesc Provides hyphenatable spacing out (letterspacing), underlining, -longdesc striking out, etc., using the TeX hyphenation algorithm to find -longdesc the proper hyphens automatically. The package also provides a -longdesc mechanism that can be used to implement similar tasks, that -longdesc have to treat text syllable by syllable. This is shown in two -longdesc examples. The package itself does not support UTF-8 input in -longdesc ordinary (PDF)LaTeX; some UTF-8 support is offered by package -longdesc soulutf8 -containersize 5976 -containerchecksum 91b2f65fa3cc1ead06d4450c273d279c8d3428a71fd895beb8b675b76b02139ed8db2d01f64352ed26bd13428c0aef8b0e542d39e8ffe6afb31d05d0f63bdd72 -doccontainersize 308320 -doccontainerchecksum 282fb6039f870e869f650ad2c4523dd4222c9d5c01359c6242c33c2b4d29b494e0c047e67ec44adc0830043ab0594d49e9251c6c9b256ff9709e9764d7432e19 -docfiles size=96 +longdesc The package provides hyphenable spacing out (letterspacing), +longdesc underlining, striking out, etc., using the TeX hyphenation +longdesc algorithm to find the proper hyphens automatically. It also +longdesc provides a mechanism that can be used to implement similar +longdesc tasks, that have to treat text syllable by syllable. This is +longdesc shown in two examples. This version is a merge of the original +longdesc soul package from Melchior Franz and the soulutf8 package from +longdesc Heiko Oberdiek and supports also UTF8. +containersize 8940 +containerchecksum 5e21da200db0e4c714f4f3431418cf11bceb99468f07ad9af7cc86c96816c9aaf400ce0e213eea27ee2e61086d61a61f4ec0c4ad3c957cb6792ae0fa4c8dafcf +doccontainersize 822736 +doccontainerchecksum 9cc277dff738325baef2e8a481e48b82421e68600b295e7e83e696bdbc48c27eccede5362e9f4d40d8ad3f263e55cf60abe438b8a8f9fc66054469f68ad04299 +docfiles size=219 + RELOC/doc/generic/soul/README.md + RELOC/doc/generic/soul/soul-ori.pdf details="Package documentation (Old soul package)" RELOC/doc/generic/soul/soul.pdf details="Package documentation" - RELOC/doc/generic/soul/soul.txt -srccontainersize 35876 -srccontainerchecksum 0dba1d0c988a6e66b34b897337480588da1466c672e9423d2370a18403cdee587916c969b04169f86a1818be27574aec3f26111b8b431338ca93e51436471bf2 -srcfiles size=35 - RELOC/source/generic/soul/Makefile +srccontainersize 40420 +srccontainerchecksum 659c8f326562d733a908e448281c8b0783cba64fe9c7f3198f3d03dfa9a6f666c7993b8d6eb6bda6698464751716c6e4e6b545b3e02c9b784447167002771049 +srcfiles size=42 + RELOC/source/generic/soul/soul-ori.dtx RELOC/source/generic/soul/soul.dtx RELOC/source/generic/soul/soul.ins -runfiles size=6 +runfiles size=13 + RELOC/tex/generic/soul/soul-ori.sty RELOC/tex/generic/soul/soul.sty + RELOC/tex/generic/soul/soulutf8.sty +catalogue-alias soulutf8 +catalogue-contact-bugs https://github.com/ho-tex/soul/issues +catalogue-contact-repository https://github.com/ho-tex/soul catalogue-ctan /macros/generic/soul -catalogue-license lppl -catalogue-topics underline letterspace macro-gen -catalogue-version 2.4 +catalogue-license lppl1.3 +catalogue-topics underline letterspace +catalogue-version 3.0 name soulpos category Package -revision 52663 +revision 60772 shortdesc A fancy means of underlining relocated 1 longdesc The package combines the use of soul with the savepos mechanism @@ -274554,11 +283300,11 @@ longdesc soul underlines, which are built by repeating small elements, longdesc here each chunk of text to be underlined is a single element. depend oberdiek depend soul -containersize 3200 -containerchecksum 1187494b2c65535c47f88f2387df8cf4f835222ad19718a4fc6ba7c4dd9a30d7d6aeb972f35b5c9350b873056b87a6a93ced5f69ded272c6aac82e467da6cd81 -doccontainersize 164048 -doccontainerchecksum 10a6999a68ebe21d4e9621a11c63154dc720332cefe8f64728b51dbabfdcda2f638e456c517374bf892b21354f3fca8a746c1539e5745ac42a0228d900b19700 -docfiles size=44 +containersize 3220 +containerchecksum 2b4d2fcaa687ff7d229706e563f739356a450a8ef02180f3c98432b11d027cd097fa895c3c971a944329b8657c74b4d2cf566110919e511e6883706561332678 +doccontainersize 177844 +doccontainerchecksum 9577aa2c77e9cafea54eee0ee032acd7c1343d6eb66b76fc25d694b524630bd2f41043187671cd444c9cdd0ccc8b9064e6c71365492cbdbd46517a061efc87cc +docfiles size=48 RELOC/doc/latex/soulpos/README.md details="Readme" RELOC/doc/latex/soulpos/soulpos.pdf details="Package documentation" RELOC/doc/latex/soulpos/soulpos.tex @@ -274569,34 +283315,6 @@ catalogue-contact-repository https://github.com/jbezos catalogue-ctan /macros/latex/contrib/soulpos catalogue-license mit catalogue-topics underline letterspace -catalogue-version 1.1 - -name soulutf8 -category Package -revision 53163 -shortdesc Permit use of UTF-8 characters in soul -relocated 1 -longdesc This package extends package soul and adds some support for -longdesc UTF-8. Namely the input encodings in 'utf8.def' from package -longdesc inputenc and 'utf8x.def' from package ucs are supported. -containersize 3948 -containerchecksum 777ebf7b4215b9a6e31ec284d27345de2ffc7c5d303db0e21bd31376692e528688deac59c2b49b84bf2088ab42523523adc284dd1d8fd5aaf7a074923bf7be9e -doccontainersize 347016 -doccontainerchecksum eb3c81518312b6c0cc5b622bbf2b7ae954e42b2a813097d8c3fa681daea0a24c9df14d189ca5d5f2adcbfe479029bb985c3d85278beb6d9694bd61aaefd32103 -docfiles size=87 - RELOC/doc/latex/soulutf8/README.md - RELOC/doc/latex/soulutf8/soulutf8.pdf details="Package documentation" -srccontainersize 8044 -srccontainerchecksum a6b804099f59c6d67b5abe4146577f608176569ca4cd92fd27d43878ee012165ac65acdbf462f8a84d4e6a8d6e61c5bf7f0f5d0dc667ff97656a5d7fbf159997 -srcfiles size=9 - RELOC/source/latex/soulutf8/soulutf8.dtx -runfiles size=5 - RELOC/tex/generic/soulutf8/soulutf8.sty -catalogue-contact-bugs https://github.com/ho-tex/soul/issues -catalogue-contact-repository https://github.com/ho-tex/soul -catalogue-ctan /macros/latex/contrib/soulutf8 -catalogue-license lppl1.3 -catalogue-topics underline letterspace catalogue-version 1.2 name soup @@ -277993,33 +286711,59 @@ catalogue-license ofl lppl1.3 catalogue-topics font font-serif font-type1 font-otf font-t1enc font-proportional catalogue-version 1.4 +name spacekern +category Package +revision 63552 +shortdesc Kerning between words and against space +relocated 1 +longdesc This package provides two shorthands for typesetting breaking +longdesc and non-breaking small spaces, where both hyphenation and +longdesc kerning against space are correctly applied. Additionally, +longdesc interword kerning can be applied. +containersize 2504 +containerchecksum 99e74e5cdc59eeb4a5d3718af573db1b53f1e22b3c554cb70ccbce25599133c10b4d8979e6ab7fedb7a1af5700046b027618e5bcf1e56e37b1e63006b9b37ca3 +doccontainersize 60068 +doccontainerchecksum 7aa1a221d863d31e520c2bc2379c2befc4ca99b091793ce183e2478077d447d1ca47d4d7b29c819780faf2197049fb37e7711b21ec5aad3fee2733538e9233d5 +docfiles size=21 + RELOC/doc/lualatex/spacekern/DEPENDS.txt + RELOC/doc/lualatex/spacekern/README.md details="Readme" + RELOC/doc/lualatex/spacekern/spacekern.pdf details="Package documentation" + RELOC/doc/lualatex/spacekern/spacekern.tex +runfiles size=3 + RELOC/tex/lualatex/spacekern/spacekern.lua + RELOC/tex/lualatex/spacekern/spacekern.sty +catalogue-ctan /macros/luatex/latex/spacekern +catalogue-license lppl1.3c +catalogue-topics letterspace +catalogue-version 0.1a + name spacingtricks category Package -revision 56840 +revision 66393 shortdesc Dealing with some spacing issues relocated 1 longdesc This package provides macros for dealing with some spacing longdesc issues, e.g. centering a single line, making a variable strut, longdesc indenting a block, typesetting a compact list, placing two longdesc boxes side by side with vertical adjustment. -containersize 1628 -containerchecksum 9cb9ef080cb14f9a4c7004221cdf8f3d5b90a74ba90a37960b6efa3a33aed501a68e2d8ae23d3262e8fb17816e4565e26722b78e1caa14b7455199e52d8fd3cd -doccontainersize 98196 -doccontainerchecksum d5ab0e38687f00099830015bc469060e6e7a96ef5a199b0352e4a6ce82d50ff6df0b04de20bd683a03d9980a3c45c63905043177fd8ca9cf1f009e978d5dc12f -docfiles size=32 +containersize 1980 +containerchecksum 8cf231d181554338e1e82ee6216a06ef35778f839336dc7a91058d1196a5715fd5927557c24ebcfd876850707f58f6468fa0d01bb8b3a590ba90aa1067edea79 +doccontainersize 155540 +doccontainerchecksum 4370111ee285f888a43969c5bfb998e4cd88da8a60495e22a66fb14a2ea70f74110a158882acca38a1079771130f181afd5b72507c08d0e18fb6311705010e1b +docfiles size=45 RELOC/doc/latex/spacingtricks/README.md details="Readme" RELOC/doc/latex/spacingtricks/spacingtricks.pdf details="Package documentation" -srccontainersize 8472 -srccontainerchecksum dcdc75265a9cf0131cf90beae018f35a54fdd201a641368c5380f82258e7c1bb5a680d1b104146c886df56f148921db0ca304063b2cc9532b0aa32b3288812c7 -srcfiles size=7 +srccontainersize 11912 +srccontainerchecksum 5c11ba0f97376fbf334044771f6bb4b562d03f3241908416b9b4d7d6b6d5400a2dd84ac82f438ba25ee8c2f1497fbfc6ce4f037156addb5da51bd19bb272759e +srcfiles size=10 RELOC/source/latex/spacingtricks/spacingtricks.dtx RELOC/source/latex/spacingtricks/spacingtricks.ins -runfiles size=1 +runfiles size=2 RELOC/tex/latex/spacingtricks/spacingtricks.sty catalogue-ctan /macros/latex/contrib/spacingtricks catalogue-license lppl1.3 catalogue-topics typesetting footnote list layout abbrev -catalogue-version 1.3 +catalogue-version 1.6 name spalign category Package @@ -278060,7 +286804,7 @@ catalogue-topics maths matrix maths-syseqn maths-theorem typeset-grid name spark-otf category Package -revision 51005 +revision 62481 shortdesc Support OpenType Spark fonts relocated 1 longdesc The package supports the free fonts from "After the Flood" @@ -278068,22 +286812,37 @@ longdesc which are available from AtF Spark. The following fonts are longdesc supported: Spark -- Bar -- Medium Spark -- Bar -- Narrow Spark longdesc -- Bar -- Thin Spark -- Dot-line -- Medium Spark -- Dot -- longdesc Medium Spark -- Dot -- Small -containersize 2068 -containerchecksum 863587da0d6a03267dd36437b112be4a1391537d7186db0f9acae2d5c3721b2a303d7b2ca86d47a619b9265930fb4795f87522498cd34c80d057ef56d1b8daa2 -doccontainersize 104112 -doccontainerchecksum 2b3a9fab8e29c1fd9bf1b3a3f729d4d728fd22d6dba86aa746febac2eafe59df1afe65f557c9e3c816983eeeab8d798bb4f54712be8f5590706bcc49a2e50199 -docfiles size=33 +containersize 174132 +containerchecksum 787774aebfb3834f1477a8afc61d2f81c32fca5f69e5828b403b58a60c2047a5afb79d50f33be0376cee57fd30ee1c3af2a6428c08abc9a058e6a3b04b8fee0b +doccontainersize 93948 +doccontainerchecksum 69fa7131b247a93b26fb98a8a4fc69b11fc8f9f05905948f530d78abebea76852baf4535768ea925839b0e3332fe9ac61e94ef7b10762afd61024bfa934f243d +docfiles size=31 RELOC/doc/fonts/spark-otf/Changes RELOC/doc/fonts/spark-otf/README.md details="Readme" RELOC/doc/fonts/spark-otf/spark-otf-doc.bib RELOC/doc/fonts/spark-otf/spark-otf-doc.pdf details="Package documentation" RELOC/doc/fonts/spark-otf/spark-otf-doc.tex -runfiles size=2 +runfiles size=594 + RELOC/fonts/opentype/public/spark-otf/Sparks-Bar-Extranarrow.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Bar-Extrawide.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Bar-Medium.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Bar-Narrow.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Bar-Wide.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dot-Extralarge.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dot-Extrasmall.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dot-Large.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dot-Medium.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dot-Small.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dotline-Extrathick.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dotline-Extrathin.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dotline-Medium.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dotline-Thick.otf + RELOC/fonts/opentype/public/spark-otf/Sparks-Dotline-Thin.otf RELOC/tex/latex/spark-otf/spark-otf.sty catalogue-ctan /fonts/spark-otf -catalogue-license lppl1.3 +catalogue-license ofl lppl1.3 catalogue-topics font-absent font-symbol font-otf font-use -catalogue-version 0.05 +catalogue-version 0.05a name sparklines category Package @@ -278116,18 +286875,18 @@ catalogue-version 1.7 name spath3 category Package -revision 57842 +revision 64818 shortdesc Manipulate "soft paths" in PGF relocated 1 longdesc The spath3 library provides methods for manipulating the "soft longdesc paths" of TikZ/PGF. Packaged with it are two TikZ libraries longdesc that make use of the methods provided. These are libraries for longdesc drawing calligraphic paths and for drawing knot diagrams. -containersize 21472 -containerchecksum f6e1dde75534c8f29db02afca9ebbf288d55bfe3468aaab889ec8bac8519c2183026354a17a709accf9a7de6047e8cc4ce2be072dd5a5f27175a0259547af92b -doccontainersize 1371428 -doccontainerchecksum fbc4ad198e31907bac75115e232aad20ea3e29d5485f17d199e20fda6fc721447b03c404aa664b4668ed588f8fac88d654a536087d6511363c5e95cef69f8ce3 -docfiles size=406 +containersize 25528 +containerchecksum c066ebfc25685d450caeddced161ad5b4170453307cfd21fc2c85c113bab3271b001514481827149757e536863fc2bf9814e03720d9a934c4df02321d6c5bbd5 +doccontainersize 1669756 +doccontainerchecksum ce6fde7f6fe42711a2c685582dda0bb9a4715b12a43483a76824361561cf1f20b40bc85a3c2facc90783cbc46b632848a9701d28381f0eba343463ac03ac443d +docfiles size=492 RELOC/doc/latex/spath3/README details="Readme" RELOC/doc/latex/spath3/README.txt RELOC/doc/latex/spath3/calligraphy.pdf details="Use for calligraphy" @@ -278137,12 +286896,12 @@ docfiles size=406 RELOC/doc/latex/spath3/spath3.pdf RELOC/doc/latex/spath3/spath3.tex RELOC/doc/latex/spath3/spath3_code.pdf details="Package documentation" -srccontainersize 31740 -srccontainerchecksum 173c53c0bfdbe07fa17326a14249e7df2b7a20be58b6e9f7572b075b5c38242443b161f038da9778b0fbf5d91ba71a3eb868b0f8105c0019ec7fa125ae8889c3 -srcfiles size=66 +srccontainersize 37180 +srccontainerchecksum 5d85d1f8370009e0ff5f7cc25f95a1daf3604ebf03e2dea28d3ca4f08f69bf4f86859cd63796b43eab7104945204f70448a90cf95234b574f8ab11f883a1bf09 +srcfiles size=78 RELOC/source/latex/spath3/spath3_code.dtx RELOC/source/latex/spath3/spath3_code.ins -runfiles size=60 +runfiles size=71 RELOC/tex/latex/spath3/spath3.sty RELOC/tex/latex/spath3/tikzlibrarycalligraphy.code.tex RELOC/tex/latex/spath3/tikzlibraryknots.code.tex @@ -278153,11 +286912,36 @@ catalogue-contact-repository https://github.com/loopspace/spath3 catalogue-ctan /graphics/pgf/contrib/spath3 catalogue-license lppl1.3c catalogue-topics pgf-tikz graphics-curve expl3 -catalogue-version 2.4 +catalogue-version 2.7 + +name spbmark +category Package +revision 64706 +shortdesc Customize superscripts and subscripts +relocated 1 +longdesc This package provides three commands \super, \sub and \supersub +longdesc to improve the layout of superscripts and subscripts which can +longdesc be adjusted with respect to relative position and format, and +longdesc can be used in text and math mode. +containersize 3420 +containerchecksum 7981e8bb14b2599f1ab53ea58fe1d29570fc902726993b7d2403626222726f974c1080ab73d1b6f55ac255323d9ef147d28efad039f722af56f9aaead57ee2d3 +doccontainersize 88280 +doccontainerchecksum aad5d9d1c80104a53ffce390174d0f1b55c715df8f5bfe3eb28e2a2f8613d03f5dded36b3d851fed7546b023d1167668ca8b49b932dcc66e81a47492a3b5fa24 +docfiles size=26 + RELOC/doc/latex/spbmark/README.md details="Readme" + RELOC/doc/latex/spbmark/spbmark.pdf details="Package documentation" + RELOC/doc/latex/spbmark/spbmark.tex +runfiles size=4 + RELOC/tex/latex/spbmark/spbmark.sty +catalogue-contact-repository https://github.com/texno3/spbmark +catalogue-ctan /macros/latex/contrib/spbmark +catalogue-license cc-by-4 +catalogue-topics subsup-pos expl3 +catalogue-version 1.42 name spectral category Package -revision 57296 +revision 64528 shortdesc Spectral fonts with LaTeX support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -278166,10 +286950,10 @@ longdesc Jean-Baptiste Levee at the Production Type digital type design longdesc agency. Spectral is a new and versatile serif face available in longdesc seven weights of roman and italic, with small caps. execute addMap spectral.map -containersize 3545232 -containerchecksum 46f6aba88425deb74e921ceafa578e9e8c467a5f9ada72b1372f6e70957946adb56bb05700a839249b2387472f4059a2dfbf4b83cb9979a4936442dac5c9258c -doccontainersize 80960 -doccontainerchecksum 6166a19151b57d2fe23833a5583b838fff6af01d96c1056bd79532af45efa8cb58f75d9c2993c7512f69fc7716d746d16de8bc5b2143cb07790cd19997bba5bc +containersize 3545188 +containerchecksum e260d7605cb89a7ff33f530c5f6448f2ae512e9ac1b22880f3d76147701ae458fa5acb3525d49cae3973c24b51858ad687b76f5a00ca8d914edf4e329f3dabc7 +doccontainersize 80968 +doccontainerchecksum 4fba6fa0576a84b05d0a0bc3520ac6e08dbedb7f37e5af5a0cc961c80deb98d53065be3c645c0eb0dc08a495d113e72f4474de32dad5d080ce67b000aaf4042d docfiles size=24 RELOC/doc/fonts/spectral/OFL.txt RELOC/doc/fonts/spectral/README details="Readme" @@ -279467,7 +288251,7 @@ catalogue-topics font font-body font-serif font-proportional font-ttf font-type1 name spectralsequences category Package -revision 50072 +revision 65667 shortdesc Print spectral sequence diagrams using PGF/TikZ relocated 1 longdesc The package is a specialized tool built on top of PGF/TikZ for @@ -279484,11 +288268,11 @@ longdesc turn off most of the automated layout features and draw longdesc replacements using TikZ commands. The package also provides a longdesc carefully designed error reporting system intended to ensure longdesc that it is as clear as possible what is going wrong. -containersize 69124 -containerchecksum 71677e3cba37f228acc096ae916793cf214f90d30809019efc67ba0793b5176da1a3fe8fab592ca80a077164948c4be777237f71e895515e519f399534cc0cd6 -doccontainersize 2635988 -doccontainerchecksum 80eda3718c3cb2daf9f3a96a6def78011be1d7882eb50db692c2d34332a5aa79a44e0201445f67d1623bcfc3618f79f6d158a98a91572796674071143f017789 -docfiles size=903 +containersize 72236 +containerchecksum 797f7ded1824a025337a12b47a8b85d16d69b8e0f7999015c0b8618ce639f97a5883f1a694a22b56de4a237901e1a43b7cb0f387bb02f567301e59203b16d31b +doccontainersize 2103268 +doccontainerchecksum 4c876bfdbdb40b6d1b58d1640aa39f02a29097f0ddc1015bbd6b415d0d7aa88c90c0d45edc444c69baeeb68741320745157466bff3242daa48526a1ebe21eaf1 +docfiles size=627 RELOC/doc/latex/spectralsequences/README.md details="Readme" RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.pdf RELOC/doc/latex/spectralsequences/examples/ANSS-S_2.tex @@ -279524,16 +288308,12 @@ docfiles size=903 RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-imJ.tex RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-insert.tex RELOC/doc/latex/spectralsequences/manual/examples/spectralsequencesmanual-tikz.tex - RELOC/doc/latex/spectralsequences/manual/pgfmanual-en-macros.tex - RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.pdf RELOC/doc/latex/spectralsequences/manual/spectralsequences-howitworks.tex - RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-draftmode.pdf RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual-layoutcharts.tex RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.pdf details="Package documentation" RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanual.tex RELOC/doc/latex/spectralsequences/manual/spectralsequencesmanualpreamble.tex - RELOC/doc/latex/spectralsequences/manual/sseqmanualtest.tex -runfiles size=98 +runfiles size=103 RELOC/tex/latex/spectralsequences/spectralsequences.sty RELOC/tex/latex/spectralsequences/sseqcheckdefinitions.code.tex RELOC/tex/latex/spectralsequences/sseqdrawing.code.tex @@ -279544,11 +288324,11 @@ runfiles size=98 RELOC/tex/latex/spectralsequences/sseqmain.code.tex RELOC/tex/latex/spectralsequences/sseqmessages.code.tex RELOC/tex/latex/spectralsequences/sseqparsers.code.tex -catalogue-contact-repository https://github.com/hoodmane/spectralsequences +catalogue-contact-repository https://github.com/SpectralSequences/latex catalogue-ctan /graphics/pgf/contrib/spectralsequences catalogue-license lppl catalogue-topics pgf-tikz -catalogue-version 1.2.2 +catalogue-version 1.3.3 name spelling category Package @@ -279673,7 +288453,7 @@ catalogue-version 3.25 name spix category Package -revision 55933 +revision 65050 shortdesc Yet another TeX compilation tool: simple, human readable, no option, no magic longdesc SpiX offers a way to store information about the compilation longdesc process for a tex file inside the tex file itself. Just write @@ -279683,11 +288463,11 @@ longdesc file (so that you are not missing some piece of information longdesc that is located somewhere else), in a human-readable format (no longdesc need to know SpiX to understand it). depend spix.ARCH -containersize 2276 -containerchecksum c8128bbee3f0dfbc009e74e46427c394a2c354eea63fc1abe6efd426aee8d0c091fefceb14de8ad97556686be702552a3ef5a10d540a57c1e8bcdaae9be8f22b -doccontainersize 1551716 -doccontainerchecksum 3a1fc0f7186c0662271a5add51f08f0173c9d0f80cac632a484a30c8774fb3c4385edea2ecf184b2898d20431b7944c0a2e863bc4242ee4270b67eb4d8f3573d -docfiles size=391 +containersize 2332 +containerchecksum e0447cedced73a9544b837c555f3d42995b5fa5e23ba737b6794e11e7fa391969c2156ae89d6e7e18140dae0e0c9b0f2d5d6036c4fda3d236790abb21fc8d9ed +doccontainersize 1550884 +doccontainerchecksum b783636e01e976f3a0020d6e5b8c87918277fb0caae09057e68b2e216e504618f0b784b1214fdf99fde79cae5a6169c585bacf093de149a99534ef7069e6cb2a +docfiles size=390 texmf-dist/doc/man/man1/spix.1 texmf-dist/doc/man/man1/spix.man1.pdf texmf-dist/doc/support/spix/CHANGELOG.md @@ -279697,12 +288477,13 @@ docfiles size=391 runfiles size=2 texmf-dist/scripts/spix/spix.py catalogue-contact-bugs https://framagit.org/spalax/spix/issues +catalogue-contact-home https://framagit.org/spalax/spix catalogue-contact-repository https://framagit.org/spalax/spix catalogue-contact-support https://framagit.org/spalax/spix/issues catalogue-ctan /support/spix catalogue-license gpl3+ catalogue-topics compilation -catalogue-version 1.1.0 +catalogue-version 1.3.0 name spix.aarch64-linux category Package @@ -279740,15 +288521,6 @@ containerchecksum a23a4c8c6c2e00b4f3c10ed36856de2978c0bd9d2ba350a46ac2583fa9cf33 binfiles arch=armhf-linux size=1 bin/armhf-linux/spix -name spix.i386-cygwin -category Package -revision 55933 -shortdesc i386-cygwin files of spix -containersize 336 -containerchecksum e4b3b7618037e3b059b5dd8cae38b63a927bd6d6b96f731ef29547a165fc3a4839caf3badc635ace2388c33c192f99ebb63e16ecbc0e7c54aca023a2d626ecc0 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/spix - name spix.i386-freebsd category Package revision 55933 @@ -279794,14 +288566,14 @@ containerchecksum 76622469db2378a73c26c998cb7b8fec2f7aa2ca5d21351df7fccc2ad35f2c binfiles arch=universal-darwin size=1 bin/universal-darwin/spix -name spix.win32 +name spix.windows category Package -revision 55933 -shortdesc win32 files of spix -containersize 676 -containerchecksum a696c18d8e1ebdbdb0765c12f7861c71ce909f70d60e2fd864f22f2ff412f28b966d4793044c21547ab9183923da132b8f2b69ca67f69362ac969adba5c3b4bb -binfiles arch=win32 size=1 - bin/win32/spix.exe +revision 65891 +shortdesc windows files of spix +containersize 2304 +containerchecksum 5b825f10bf89895836f1fd42379e0b250a74f9849906de0d32b5dda674e8cd896bfc413b9b0e2c8ae9fe2449a915761db255a5a82d91ec07c37c9d147a66a8f5 +binfiles arch=windows size=2 + bin/windows/spix.exe name spix.x86_64-cygwin category Package @@ -279986,15 +288758,6 @@ containerchecksum 0d16db703cae4444d0b6dd35aa531bfb586fd143f3fb45a05f348e69a33696 binfiles arch=armhf-linux size=1 bin/armhf-linux/splitindex -name splitindex.i386-cygwin -category Package -revision 29688 -shortdesc i386-cygwin files of splitindex -containersize 340 -containerchecksum 990bfdf7e2965d28bf2c514e839e0aa2fa5b26177eccab3542e608924f6e3a11b26aa86084b970de2da1b92ee88959dc172079939e07a5cbefff841502930e19 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/splitindex - name splitindex.i386-freebsd category Package revision 29688 @@ -280040,14 +288803,14 @@ containerchecksum b227fea95ecb2454184a2aa0c132c5bf653d55b2e0face61166aa03521832a binfiles arch=universal-darwin size=1 bin/universal-darwin/splitindex -name splitindex.win32 +name splitindex.windows category Package -revision 15404 -shortdesc win32 files of splitindex -containersize 688 -containerchecksum 1d66c05e385fac18df6db7acbf7317e2307c4a55712ef2ba8cbba27fe276ad3138f6b792623bca2e444beeddf075cc09f3fb7c8ba9745e567816106d4ec304d0 -binfiles arch=win32 size=1 - bin/win32/splitindex.exe +revision 65891 +shortdesc windows files of splitindex +containersize 2304 +containerchecksum cd511f03d2194a0d421a2dcff73cc4c8d1a5edb0b1ed12505c5928a54134cfd007df817306452047bc81cc02f70537b003d4102020299604b5f3fde0152e1412 +binfiles arch=windows size=2 + bin/windows/splitindex.exe name splitindex.x86_64-cygwin category Package @@ -280210,7 +288973,7 @@ catalogue-version 1.0 name sr-vorl category Package -revision 39529 +revision 59333 shortdesc Class for Springer books relocated 1 longdesc This package provides a LaTeX class and templates for books to @@ -280219,28 +288982,28 @@ longdesc Research, Springer Spektrum Research, Springer VS Research, or longdesc Springer VS Forschung. It may be used to produce monographs in longdesc different formats and "several-authors-books" fitting the longdesc conditions of the aforementioned publishers. -containersize 3720 -containerchecksum 135186b501bcf2a9b338ff13e330401ae3ca39db4225f639549cc929991d2177804b44ddbaec805ec1cd56982b140cec4625e7564fad7f4de89d2c2e06ad60d8 -doccontainersize 447828 -doccontainerchecksum a65dc0b7a12b5435d753aeeaca7643747c94463835cf1706e042710272cc0eef66d4f5f827c99034f9126bcbbf7e41293196f9ee29ed3f9961b9af27e2879747 -docfiles size=115 +containersize 4280 +containerchecksum 8a9b0833bc518b12019d2d474a70760e3b44766751485215c746b8a7c3b9ee1f9e92a5cee09c5f961fe97387855627c6a385b7484564556e0901c08c922410dd +doccontainersize 452688 +doccontainerchecksum 774c91361a95510a356fb7fbb70f753954d30d1ac309c1cf09727a2c9ea647b65f046d3eded8e631b512190f5705eab020abe8b7923ee9d6230c6c9fd782dea5 +docfiles size=116 RELOC/doc/latex/sr-vorl/README details="Readme" RELOC/doc/latex/sr-vorl/backmatter_sr-vorl.tex RELOC/doc/latex/sr-vorl/frontmatter_sr-vorl.tex RELOC/doc/latex/sr-vorl/hauptdatei_sr-vorl.tex RELOC/doc/latex/sr-vorl/mainmatter_sr-vorl.tex RELOC/doc/latex/sr-vorl/sr-vorl.pdf details="Package documentation" -srccontainersize 17404 -srccontainerchecksum f41d126426035fa0d1cf6564d9eb4966618a1c8f805bca3097a5f7e72c62a12c9d8e39b6830f9b1e356940b67bd99803e869d849949854a1a17da4c7ba971195 -srcfiles size=17 +srccontainersize 18872 +srccontainerchecksum fafacdaf874ec094aea5451962c3c79584da5fdc1e0aec34b9965b9c8531d19538d362b68ff1d07073aaa3c24483214168b942b6b4e0391384c69c690620d9a7 +srcfiles size=20 RELOC/source/latex/sr-vorl/sr-vorl.dtx RELOC/source/latex/sr-vorl/sr-vorl.ins -runfiles size=3 +runfiles size=4 RELOC/tex/latex/sr-vorl/sr-vorl.cls catalogue-ctan /macros/latex/contrib/springer/sr-vorl -catalogue-license lppl1.3 -catalogue-topics book-pub class -catalogue-version 1.1 +catalogue-license lppl1.3c +catalogue-topics book-pub class doc-templ +catalogue-version 1.2 name srbook-mem category Package @@ -280268,6 +289031,56 @@ catalogue-ctan /macros/latex/contrib/srbook-mem catalogue-license gpl catalogue-topics book-pub serbian +name srbtiks +category Package +revision 63308 +shortdesc Font STIX2 for Serbian and Macedonian +relocated 1 +longdesc The srbtiks package is the extension of the stix2-type1 package +longdesc that enables usage of the STIX2 font in LaTeX for the Serbian +longdesc and Macedonian languages (therefore, it is required to have the +longdesc stix2-type1 package installed). +execute addMap srbtiks.map +containersize 19200 +containerchecksum 7caf4046990b6708f753ffe9eda73f564fd1d18a97fbb78d72fc0db72e0b8a2af2974e6348ab2f62973805398581c7bacf6b9937fcfffb33057cc3586e4de6cf +doccontainersize 905120 +doccontainerchecksum 1b393eddee48395dcd94889c3e5d530c9c4ec736e41f901bf6a66ebb9d4929f363407d026ac9824ae82c852823e9f4d87a618ab4aaa0cc25247c3be03ec00f31 +docfiles size=228 + RELOC/doc/fonts/srbtiks/README.md details="Readme" + RELOC/doc/fonts/srbtiks/srbtiks.pdf details="Package documentation" + RELOC/doc/fonts/srbtiks/srbtiks.tex +runfiles size=37 + RELOC/fonts/enc/dvips/srbtiks/srbtiks-t1-it.enc + RELOC/fonts/enc/dvips/srbtiks/srbtiks-t1-sc.enc + RELOC/fonts/enc/dvips/srbtiks/srbtiks-t1.enc + RELOC/fonts/map/dvips/srbtiks/srbtiks.map + RELOC/fonts/tfm/public/srbtiks/t1srbtiksb-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksb.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksc-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksc.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksi-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksi.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksr-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksr.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksx-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksx.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksy-base.tfm + RELOC/fonts/tfm/public/srbtiks/t1srbtiksy.tfm + RELOC/fonts/vf/public/srbtiks/t1srbtiksb.vf + RELOC/fonts/vf/public/srbtiks/t1srbtiksc.vf + RELOC/fonts/vf/public/srbtiks/t1srbtiksi.vf + RELOC/fonts/vf/public/srbtiks/t1srbtiksr.vf + RELOC/fonts/vf/public/srbtiks/t1srbtiksx.vf + RELOC/fonts/vf/public/srbtiks/t1srbtiksy.vf + RELOC/tex/latex/srbtiks/srbtiks.sty + RELOC/tex/latex/srbtiks/t1srbtiks.fd + RELOC/tex/latex/srbtiks/ts1srbtiks.fd +catalogue-also stix2-type1 +catalogue-ctan /fonts/srbtiks +catalogue-license ofl lppl1.3 +catalogue-topics font font-serif font-supp font-body font-type1 font-cyrillic +catalogue-version 1.0 + name srcltx category Package revision 15878 @@ -280380,15 +289193,6 @@ containerchecksum a176b2669baf38b90c0aaa94d1322acbce24ec2bf360333d3e381b4f5f6c1f binfiles arch=armhf-linux size=1 bin/armhf-linux/srcredact -name srcredact.i386-cygwin -category Package -revision 38710 -shortdesc i386-cygwin files of srcredact -containersize 336 -containerchecksum 63f21d722a509af23985fd49074bb9bbd395a5d9f0e7adf077f7d5b6121de3df953d176cd7ba9b22887a29b14482ea4429d90f5ce7778ea0286bc012c72ed0b7 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/srcredact - name srcredact.i386-freebsd category Package revision 38710 @@ -280434,14 +289238,14 @@ containerchecksum f3414f56e093b5330d56f0b3d0cf671c23a97436491fba775125716f2df73a binfiles arch=universal-darwin size=1 bin/universal-darwin/srcredact -name srcredact.win32 +name srcredact.windows category Package -revision 38710 -shortdesc win32 files of srcredact -containersize 684 -containerchecksum 8736d8d3d36f4e2d321f913831f4ecd28ecf4c97d1f2d425f04b5777d1b5a871d31b7105f8fb4fbee41d1599b5c2b15364dd4fa4b9443b6d3cb8d1c44ee85668 -binfiles arch=win32 size=1 - bin/win32/srcredact.exe +revision 65891 +shortdesc windows files of srcredact +containersize 2308 +containerchecksum aafc7f6717009d2fad1b82229116fa299fe4285bd099a099f87e611aecec240b492960692e326588ba6519682384f8bc5b0de9ef8f693032828001deac2d6c96 +binfiles arch=windows size=2 + bin/windows/srcredact.exe name srcredact.x86_64-cygwin category Package @@ -280490,7 +289294,7 @@ binfiles arch=x86_64-solaris size=1 name srdp-mathematik category Package -revision 58734 +revision 65293 shortdesc Typeset Austrian SRDP in mathematics relocated 1 longdesc This package provides basic commands for the defined formats of @@ -280499,20 +289303,21 @@ longdesc mathematics. Furthermore, it includes ways to implement answers longdesc in the tex file which can optionally be displayed in the pdf longdesc file, and it offers a way to vary the answers in order to longdesc create different groups (e. g. for tests) easily. -containersize 7456 -containerchecksum c6a37c722985c09980fb6487f46603a2b7475ce1d2bda4ab9eaea36c106fe19146b6b961e9406b76aea626ef0d09babb25193340a87bf4fc428c0a3314e04f34 -doccontainersize 147900 -doccontainerchecksum 7886d6da7321cfc19f364b730a54def58250138d81538a74512416a8adceea299a36b517a0ac0b660041b85a9f9f2ef2125d613f3efc899b73d6717d69d81163 -docfiles size=57 - RELOC/doc/latex/srdp-mathematik/README.txt details="Readme" - RELOC/doc/latex/srdp-mathematik/srdp-mathematik.pdf details="Package documentation" +containersize 30708 +containerchecksum 6735976156214b80e55e17f6100b8961c2851c6caeb339dfe86c9d68865f243718cb5e4a74e4f7592fb8902b843cf917e93233d43032f2b69a17402d5e5c5613 +doccontainersize 151244 +doccontainerchecksum a2fcd471120ca30a329c20793cc86a1ae8de33b7a1507b3204921d5d0e8620ed9e9d546db9d4b98194122cd2ff35f3d9e8d448b2493849a1cda8351d86ee1604 +docfiles size=58 + RELOC/doc/latex/srdp-mathematik/README.md details="Readme" + RELOC/doc/latex/srdp-mathematik/srdp-mathematik.pdf details="Package documentation" language="de-at" RELOC/doc/latex/srdp-mathematik/srdp-mathematik.tex -runfiles size=18 +runfiles size=48 RELOC/tex/latex/srdp-mathematik/srdp-mathematik.sty + RELOC/tex/latex/srdp-mathematik/srdp-tables.sty catalogue-ctan /macros/latex/contrib/srdp-mathematik catalogue-license lppl1.3c catalogue-topics exam maths std-conform -catalogue-version 1.9.0 +catalogue-version 1.11.0 name sseq category Package @@ -280594,7 +289399,7 @@ catalogue-version 1.00 name stackengine category Package -revision 53843 +revision 60019 shortdesc Highly customised stacking of objects, insets, baseline changes, etc relocated 1 longdesc The package provides a versatile way to stack objects @@ -280602,38 +289407,38 @@ longdesc vertically in a variety of customizable ways. A number of longdesc useful macros are provided, all of which make use of the longdesc stackengine core. depend listofitems -containersize 5064 -containerchecksum 13ce66f2a3335c62db5bb2872596480572e106e1cd594d8b787684f1fd3ea4b57ee015737e7e5dd053b526bf52b6ad20a84f4d4db49d9b888f55ad5b637894c4 -doccontainersize 339824 -doccontainerchecksum 8a32a4a5e75023ab1750a6e85cb23b919f44ee838d24c0883fd4b8945d57a9e3a91b456503642544676eb4100de68a0ba4547d8e2c45a0ae90b3ab7b36acaf6d -docfiles size=102 +containersize 5356 +containerchecksum 15327eda5a6eda2b58055efc419ef50b8d8cf8c35283bcc41ee85e354f61ede6efeabf5e75bbb4cd022b95e52109bce1ee2e28fc701c5940723f3b15dd44c75a +doccontainersize 367108 +doccontainerchecksum a0edeaed3766af88d1c5e0508fd285382850bfd072cf4f6fdc1c329c8ca9f5e1eb5fe75357d9a86dd8b2476381747c9a3f7cd7dad0d7c32419bef0d37849928b +docfiles size=111 RELOC/doc/latex/stackengine/README details="Readme" RELOC/doc/latex/stackengine/stackengine.pdf details="Package documentation" RELOC/doc/latex/stackengine/stackengine.tex -runfiles size=4 +runfiles size=5 RELOC/tex/latex/stackengine/stackengine.sty catalogue-ctan /macros/latex/contrib/stackengine catalogue-license lppl1.3 catalogue-topics macro-supp -catalogue-version 4.01 +catalogue-version 4.11 name stage category Package -revision 53915 +revision 62929 shortdesc A LaTeX class for stage plays relocated 1 longdesc Stage.cls is a LaTeX class for creating plays of any length in longdesc a standard manuscript format for production and submission. -containersize 2824 -containerchecksum 3e59c8794ba63b4ed5ff0a0e99fadfba4371a93ec2076a818dc0c84b00b5f555ddd09caa89128ef52f59bf888609a045c522adb24417040a321407e4d7d2b679 -doccontainersize 153640 -doccontainerchecksum f047288e15f2ded21da1a6e1288951f3ff480c60b31dd3e43aff030e8a3fb111d87ce13b5f98a07e03123ac4f0a81e3661dfb433b389f088e8318134a5677712 -docfiles size=41 +containersize 2800 +containerchecksum 8472bc96265ea7fd3be748f147238b6852079ba002f9c7548f5a5e8cb0f34a8155a799635ee5e31b22bb30554795a6fd08e62312b25ce83e727e10f6ccd13f37 +doccontainersize 158680 +doccontainerchecksum 82df4a8fa154a09cd8231c21f3a450a089796306e8275b17291bfc903ef00b316a1ae0a4175637294ecbed0dd6eeffa7baf134d60352284aa07e0a1a0224c205 +docfiles size=42 RELOC/doc/latex/stage/README details="Package README" RELOC/doc/latex/stage/stage-documentation.pdf details="Package documentation" RELOC/doc/latex/stage/stage-documentation.tex -srccontainersize 420 -srccontainerchecksum f69a495f6e49bdccef6d69e5740bb548d1f5f10cedc86865a16e4110dc78ce32176e96432fedb8247500357099e6ce3e88e6de71ab1510e470b4c32ca40d7f18 +srccontainersize 436 +srccontainerchecksum 82255aaf0407da34f219f220deb5b12edd5dea55f168a4ae11a5bc5fbc6144fb45d7e79a4d9562405f838955e72efc3a5533269f05b493a48027bd35713ddd65 srcfiles size=1 RELOC/source/latex/stage/Makefile runfiles size=2 @@ -280644,12 +289449,12 @@ catalogue-contact-home https://github.com/rrthomas/stage catalogue-contact-repository https://github.com/rrthomas/stage catalogue-ctan /macros/latex/contrib/stage catalogue-license lppl1.3 -catalogue-topics drama-script -catalogue-version 1.01 +catalogue-topics class drama-script +catalogue-version 1.03 name standalone category Package -revision 56291 +revision 64677 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 @@ -280662,15 +289467,21 @@ longdesc package is used to display the typeset code without margins. longdesc The behaviour in standalone mode may adjusted using a longdesc configuration file standalone.cfg to redefine the standalone longdesc environment. -containersize 11884 -containerchecksum d9fd4051c18908b69041805c4a4c631a14d8e3c35b6161ca6731962f2ad0d343db3d1dcf6a8e012d6a96971b3e0a0f00204634ac9c836b3bd28c0a96e132d946 -doccontainersize 270488 -doccontainerchecksum 5e1696289be97de97c4c68cf81933bd15ed542e3943b9a718d8f04c8ea16b9a31ddeaf5360e45d356110c7e6663872f354302cb07ca38bf0900380f575ea76bd -docfiles size=68 +depend adjustbox +depend currfile +depend filemod +depend gincltex +depend xkeyval +containersize 11904 +containerchecksum 8e74a676232ffe9fbe93ee3a1095c0c29cd65bd23f8e4602308d8fc1abfde9025c01e8ba379782d4c79d3349b4298806419735c624436a7b0c93e2170c592efb +doccontainersize 278396 +doccontainerchecksum 358fb3b29f4c2d37d03b7d98ee02b35ff8571ffaf30b8d3fa1a9b0f74965ca4b0bcbf2a7172b8771dd3f1240c7dad1acccc7710dad302411dc43a301149597cd +docfiles size=71 + RELOC/doc/latex/standalone/DEPENDS.txt RELOC/doc/latex/standalone/README details="Readme" RELOC/doc/latex/standalone/standalone.pdf details="Package documentation" -srccontainersize 38568 -srccontainerchecksum a921b3956908990f216f5d8da1449e7a47c4d74f34284f2c58b7c3cfa601c57de880d78e3680947349f3b5d20e0366f020d70b7c1348a9a374d2d0b57b58ef9c +srccontainersize 38588 +srccontainerchecksum a29880dfca00e77b19ee828333c72f7c95a26470b8edd5ecea53bae3300868266ad4aa0db2bc6e16f72c14493b43659434ef4880b025b5bccad3305d0ea18b33 srcfiles size=47 RELOC/source/latex/standalone/standalone.dtx RELOC/source/latex/standalone/standalone.ins @@ -280678,15 +289489,14 @@ runfiles size=18 RELOC/tex/latex/standalone/standalone.cfg RELOC/tex/latex/standalone/standalone.cls RELOC/tex/latex/standalone/standalone.sty - RELOC/tex/plain/standalone/standalone.tex + RELOC/tex/latex/standalone/standalone.tex catalogue-also combine docmute includex newclude -catalogue-contact-bugs https://sourceforge.net/p/standalone/tickets/ -catalogue-contact-home https://sourceforge.net/p/standalone/ -catalogue-contact-repository https://sourceforge.net/p/standalone/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/standalone/issues +catalogue-contact-repository https://github.com/MartinScharrer/standalone catalogue-ctan /macros/latex/contrib/standalone catalogue-license lppl1.3 catalogue-topics subdocs class -catalogue-version 1.3a +catalogue-version 1.3b name stanli category Package @@ -280792,28 +289602,6 @@ catalogue-license pd catalogue-topics format catalogue-version 1.04 -name startlatex2e -category Package -revision 56809 -shortdesc A guide to getting started with LaTeX2e -relocated 1 -longdesc "Getting Started with LaTeX2e" is a short document aimed at -longdesc helping complete novices with LaTeX create a document, format -longdesc the text, then compile it into PostScript or pdf format. It -longdesc contains information on writing the preamble, formatting the -longdesc text, creating tables and inserting figures. -containersize 496 -containerchecksum e8946fbe61c9c52a3fe5cc7b6b4adfdd8a90312fc146f331f0dff774e819ed1a789ad047c2587816b7b8568f4a520b2c0600a4b39ff3586254bfb6f15db28b79 -doccontainersize 243844 -doccontainerchecksum 767c9defb727f206c8e2090a1501e8435bf77859b6546690c7a8d1cb6481ae4c576346449fe760423eaf126858e521b020404cbe84ab2f02c95f07e1af8f93c5 -docfiles size=83 - RELOC/doc/latex/startlatex2e/README details="Readme" - RELOC/doc/latex/startlatex2e/StartLaTeX2e.pdf details="The document itself" - RELOC/doc/latex/startlatex2e/StartLaTeX2e.tex -catalogue-ctan /info/startlatex2e -catalogue-license lppl1.3 -catalogue-topics tut-latex - name statex category Package revision 20306 @@ -281056,7 +289844,7 @@ catalogue-version 0.6 name stealcaps category Package -revision 46434 +revision 64967 shortdesc "Steal" small capitals relocated 1 longdesc This little package is mainly meant to be used when there is a @@ -281069,31 +289857,33 @@ longdesc those from another font better. To achieve the borrowing, one longdesc only needs to load the package and specify the name of the longdesc target font via the from option. Package dependencies: pgfopts, longdesc iftex, fontspec. -containersize 1548 -containerchecksum 83296141df9f56d0e38d04bcc948cb4a9b5e308f5a71ef3080b4b53392792d42c142a2cc5b69140233d6f00bcf7804dd1c9dff686df3debbca857d765d7639b7 -doccontainersize 2993416 -doccontainerchecksum 3dd77d36d16fbfaf10993bf36c1a286506b6f80b795c721ce15b7854453af0b6041c586bbb653e7707eb057664885a9027135d199a9df7b748d23c6106175477 -docfiles size=743 +containersize 1696 +containerchecksum 483580c347831e7623c75dd087fd6ce57f3af84d0bc28afb5a95f5193ac4e4594f8d9b6a45b8b62e988519208510e0acc7e32f720df3e1f90065e90d06b33900 +doccontainersize 439092 +doccontainerchecksum 3fea8ed1b6a50a2f5a95da2d9d65e26688886b55bad60e71404af7fb8d83664383e3e0b19cf3e52433ddad75da57a99abd16b6b40a89d620464b5cc4a64347fa +docfiles size=275 RELOC/doc/latex/stealcaps/README.md details="Readme" RELOC/doc/latex/stealcaps/stealcaps.pdf details="Package documentation" - RELOC/doc/latex/stealcaps/testfile/EBGaramond.ttf.zip - RELOC/doc/latex/stealcaps/testfile/brelaregular.otf - RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.pdf - RELOC/doc/latex/stealcaps/testfile/stealcapitals-test.tex -srccontainersize 3280 -srccontainerchecksum 8afa57a79a3bb38a04ebb681df5c7976e9ea275e379c00308b6672459ac61ebfe745f16d334beb4d3627438487446f638bd00788d60fd68b22f0026a7a87d4d8 + RELOC/doc/latex/stealcaps/testfile/CormorantSC-Regular.ttf + RELOC/doc/latex/stealcaps/testfile/EBGaramond-Regular.ttf + RELOC/doc/latex/stealcaps/testfile/stealcaps-test.pdf details="Example of use" + RELOC/doc/latex/stealcaps/testfile/stealcaps-test.tex +srccontainersize 3612 +srccontainerchecksum 7dbbb83039cd65e127705d7512cdc4bd4aedbce7837bee7f0372070aed8373dffd4fa0087c34707c0d5c18d3afc72e597e6514d82d390fa3e3ac1c308a1bb637 srcfiles size=3 RELOC/source/latex/stealcaps/stealcaps.dtx RELOC/source/latex/stealcaps/stealcaps.ins runfiles size=1 RELOC/tex/latex/stealcaps/stealcaps.sty +catalogue-contact-announce https://github.com/giannotr/stealcaps/discussions/2 catalogue-contact-bugs https://github.com/giannotr/stealcaps/issues -catalogue-contact-home https://github.com/giannotr/stealcaps +catalogue-contact-development https://github.com/giannotr/stealcaps/pulls catalogue-contact-repository https://github.com/giannotr/stealcaps.git +catalogue-contact-support https://github.com/giannotr/stealcaps/discussions/1 catalogue-ctan /macros/latex/contrib/stealcaps catalogue-license lppl1.3c catalogue-topics font-supp font-use -catalogue-version 1.0 +catalogue-version 1.1 name steinmetz category Package @@ -281126,7 +289916,7 @@ catalogue-version 1.0 name stellenbosch category Package -revision 36696 +revision 66379 shortdesc Stellenbosch thesis bundle relocated 1 longdesc The usthesis class/style files are provided to typeset reports, @@ -281145,10 +289935,10 @@ longdesc options to typeset documents in Afrikaans or in English. longdesc Additional packages are provided for bibliographic matter, note longdesc title pages, lists of symbols, as well as various graphic files longdesc for logos. -containersize 703392 -containerchecksum 44b6b8149d4a5aa34ce4bc2e9e66b9bd3a1381b17ffea213b5d0f3afe5b71a62a3b85b4feb6caee4711119fbe27d46b3fcbad2a892e662ee9aac184336677d0a +containersize 703372 +containerchecksum 6fea9dc3b82f1c4ec6a70a9a14099e538d222097a678748babd58bfc66e2b46ed14af6e430a2d7ed1222d9362953c9214ffae21e21eeb02672fb394316bc2811 doccontainersize 3071164 -doccontainerchecksum 6af215b7af75e04bf24ecf9f83c6e4b5a12013a84435e65872d4d84dadfc2231d341153b05f069d9ca927370a686b6642f4654c9924521f5d93d0d1772f48059 +doccontainerchecksum 2616b92b62dfcc7633013a8b48927cb6ceeaffb5a8b284baf08a534d845087fdfb60645026e42b828914d36b19428fc581a00dc7a707271ff2d28713d179b563 docfiles size=835 RELOC/doc/latex/stellenbosch/CHANGELOG RELOC/doc/latex/stellenbosch/README details="Bundle README" language="en" @@ -281160,8 +289950,8 @@ docfiles size=835 RELOC/doc/latex/stellenbosch/UStitle-1.0.pdf details="UStitle package documentation" language="en" RELOC/doc/latex/stellenbosch/templates/masters-sample.zip RELOC/doc/latex/stellenbosch/templates/report-sample.zip -srccontainersize 415320 -srccontainerchecksum a4df0b0c1adc1477be9a8a0d2ee3c03c152e3a2a9c9bff5337accace9562a0b117f2ddd09ecf29bfef99ab3bf0a4a394f8780ef57fb693d98fc269cad2f940d0 +srccontainersize 415324 +srccontainerchecksum 9d4ee2a57103d76328fedc46bfda63c480dba87e21f79db02206f209e656a8b551d056d0fb534f929262a5aa9df0ac5e88af6675fc020d9e99e8af8efe10a5e4 srcfiles size=108 RELOC/source/latex/stellenbosch/USbib-1.0-scr.zip RELOC/source/latex/stellenbosch/USlogos-4.0-src.zip @@ -281786,194 +290576,125 @@ catalogue-version 3.0b1 name stex category Package -revision 50489 +revision 64383 shortdesc An Infrastructure for Semantic Preloading of LaTeX Documents relocated 1 longdesc The sTeX package collection is a version of TeX/LaTeX that longdesc allows to markup TeX/LaTeX documents semantically without longdesc leaving the document format, essentially turning it into a longdesc document format for mathematical knowledge management (MKM). -containersize 41256 -containerchecksum 43d9cb084f47b1fc2bfab9eb11ec9253fda495f29640d333c00de5d7a5681bf37e0331002938e141679b0ab10345e23d5cbff19cb33fbfa01d25be62295b18dc -doccontainersize 5856944 -doccontainerchecksum 3e936e5905f5dac9a16030af94037398c60b6b79feeb6180af4b7542eb8293a681a213115dd082d9e2df8264771d6d92544e6ec514cf40cf4a136cf74a0a6e51 -docfiles size=1816 - RELOC/doc/latex/stex/cmath/README details="Readme" - RELOC/doc/latex/stex/cmath/cmath.pdf - RELOC/doc/latex/stex/dcm/README details="Readme" - RELOC/doc/latex/stex/dcm/dcm.pdf - RELOC/doc/latex/stex/example/Makefile - RELOC/doc/latex/stex/example/README details="Readme" - RELOC/doc/latex/stex/example/background/Makefile - RELOC/doc/latex/stex/example/background/all.pdf - RELOC/doc/latex/stex/example/background/all.tex - RELOC/doc/latex/stex/example/background/functions.omdoc - RELOC/doc/latex/stex/example/background/functions.pdf - RELOC/doc/latex/stex/example/background/functions.tex - RELOC/doc/latex/stex/example/background/post.tex - RELOC/doc/latex/stex/example/background/pre.tex - RELOC/doc/latex/stex/example/background/reals.pdf - RELOC/doc/latex/stex/example/background/reals.tex - RELOC/doc/latex/stex/example/paper/Makefile - RELOC/doc/latex/stex/example/paper/continuous.pdf - RELOC/doc/latex/stex/example/paper/continuous.tex - RELOC/doc/latex/stex/example/paper/differentiable.pdf - RELOC/doc/latex/stex/example/paper/differentiable.tex - RELOC/doc/latex/stex/example/paper/intro.pdf - RELOC/doc/latex/stex/example/paper/intro.tex - RELOC/doc/latex/stex/example/paper/paper.tex - RELOC/doc/latex/stex/hwexam/README details="Readme" - RELOC/doc/latex/stex/hwexam/hwexam.pdf - RELOC/doc/latex/stex/metakeys/README details="Readme" - RELOC/doc/latex/stex/metakeys/metakeys.pdf - RELOC/doc/latex/stex/mikoslides/README details="Readme" - RELOC/doc/latex/stex/mikoslides/mikoslides.pdf - RELOC/doc/latex/stex/modules/README details="Readme" - RELOC/doc/latex/stex/modules/modules.pdf - RELOC/doc/latex/stex/omdoc/README details="Readme" - RELOC/doc/latex/stex/omdoc/omdoc.pdf - RELOC/doc/latex/stex/omtext/README details="Readme" - RELOC/doc/latex/stex/omtext/omtext.pdf - RELOC/doc/latex/stex/presentation/README details="Readme" - RELOC/doc/latex/stex/presentation/presentation.pdf - RELOC/doc/latex/stex/problem/README details="Readme" - RELOC/doc/latex/stex/problem/problem.pdf - RELOC/doc/latex/stex/rfdmeta/README details="Readme" - RELOC/doc/latex/stex/rfdmeta/certification.pdf - RELOC/doc/latex/stex/rfdmeta/certification.tex - RELOC/doc/latex/stex/rfdmeta/rdfmeta.pdf - RELOC/doc/latex/stex/smglom/README details="Readme" - RELOC/doc/latex/stex/smglom/smglom.pdf - RELOC/doc/latex/stex/smultiling/README details="Readme" - RELOC/doc/latex/stex/smultiling/smultiling.pdf - RELOC/doc/latex/stex/sproof/README details="Readme" - RELOC/doc/latex/stex/sproof/sproof.pdf - RELOC/doc/latex/stex/sref/README details="Readme" - RELOC/doc/latex/stex/sref/book.pdf - RELOC/doc/latex/stex/sref/book.tex - RELOC/doc/latex/stex/sref/idc.pdf - RELOC/doc/latex/stex/sref/idc.tex - RELOC/doc/latex/stex/sref/idcmain.tex - RELOC/doc/latex/stex/sref/scr.pdf - RELOC/doc/latex/stex/sref/scr.tex - RELOC/doc/latex/stex/sref/scrmain.tex - RELOC/doc/latex/stex/sref/sref.pdf - RELOC/doc/latex/stex/statements/README details="Readme" - RELOC/doc/latex/stex/statements/statements.pdf - RELOC/doc/latex/stex/stex/README details="Readme" - RELOC/doc/latex/stex/stex/stex.pdf details="Package documentation" - RELOC/doc/latex/stex/structview/README details="Readme" - RELOC/doc/latex/stex/structview/structview.pdf - RELOC/doc/latex/stex/tikzinput/README details="Readme" - RELOC/doc/latex/stex/tikzinput/tikzinput.pdf - RELOC/doc/latex/stex/workaddress/README details="Readme" - RELOC/doc/latex/stex/workaddress/workaddress.pdf -srccontainersize 495572 -srccontainerchecksum 5cf2ccb75d699f86a095481c4fdefe0d2a981340d3df72c09ddfc4acd3798a35546674eca62c8aea07431b50edd643c514af901d86513a3e5d0d3af9588f24ed -srcfiles size=628 - RELOC/source/latex/stex/bin/Modparse.pm - RELOC/source/latex/stex/bin/README - RELOC/source/latex/stex/bin/checksum - RELOC/source/latex/stex/bin/filedate - RELOC/source/latex/stex/bin/installFonts.sh - RELOC/source/latex/stex/bin/sms - RELOC/source/latex/stex/cmath/cmath.dtx - RELOC/source/latex/stex/cmath/cmath.ins - RELOC/source/latex/stex/dcm/dcm.dtx - RELOC/source/latex/stex/dcm/dcm.ins - RELOC/source/latex/stex/hwexam/hwexam.dtx - RELOC/source/latex/stex/hwexam/hwexam.ins - RELOC/source/latex/stex/lib/bib/extcrossrefs.bib - RELOC/source/latex/stex/lib/bib/extpubs.bib - RELOC/source/latex/stex/lib/bib/kwarccrossrefs.bib - RELOC/source/latex/stex/lib/bib/kwarcpubs.bib - RELOC/source/latex/stex/lib/make/Makefile - RELOC/source/latex/stex/lib/make/Makefile.base.in - RELOC/source/latex/stex/lib/make/Makefile.base.vars - RELOC/source/latex/stex/lib/make/Makefile.in - RELOC/source/latex/stex/lib/make/Makefile.latex.in - RELOC/source/latex/stex/lib/make/Makefile.latex.vars - RELOC/source/latex/stex/lib/make/Makefile.latexml.in - RELOC/source/latex/stex/lib/make/Makefile.latexml.vars - RELOC/source/latex/stex/lib/make/Makefile.subdirs - RELOC/source/latex/stex/lib/make/Makefile.vars - RELOC/source/latex/stex/lib/make/README - RELOC/source/latex/stex/metakeys/metakeys.dtx - RELOC/source/latex/stex/metakeys/metakeys.ins - RELOC/source/latex/stex/mikoslides/mikoslides.dtx - RELOC/source/latex/stex/mikoslides/mikoslides.ins - RELOC/source/latex/stex/modules/modules.dtx - RELOC/source/latex/stex/modules/modules.ins - RELOC/source/latex/stex/omdoc/omdoc.dtx - RELOC/source/latex/stex/omdoc/omdoc.ins - RELOC/source/latex/stex/omtext/omtext.dtx - RELOC/source/latex/stex/omtext/omtext.ins - RELOC/source/latex/stex/presentation/presentation.dtx - RELOC/source/latex/stex/presentation/presentation.ins - RELOC/source/latex/stex/problem/problem.dtx - RELOC/source/latex/stex/problem/problem.ins - RELOC/source/latex/stex/rfdmeta/rdfmeta.dtx - RELOC/source/latex/stex/rfdmeta/rdfmeta.ins - RELOC/source/latex/stex/smglom/smglom.dtx - RELOC/source/latex/stex/smglom/smglom.ins - RELOC/source/latex/stex/smultiling/smultiling.dtx - RELOC/source/latex/stex/smultiling/smultiling.ins - RELOC/source/latex/stex/sproof/sproof.dtx - RELOC/source/latex/stex/sproof/sproof.ins - RELOC/source/latex/stex/sref/sref.dtx - RELOC/source/latex/stex/sref/sref.ins - RELOC/source/latex/stex/statements/statements.dtx - RELOC/source/latex/stex/statements/statements.ins - RELOC/source/latex/stex/stex/stex.dtx +containersize 79884 +containerchecksum e3e1c32f1d74dbf72793b6187e4b94ebdbb8d9e7f11e4b2d3e41e4803ba6b3dbd9d71c69c757ffc85cd4eb1c5a340c111a4e23f83bfb0fcf6574ee7dc0e51d07 +doccontainersize 2755852 +doccontainerchecksum c5356065843fd7bb9367c52119b61d9b86aa10c8f099969d0e5efa31f2a709df680c43b41e6266922f2835175ddbf2a719b2fd94f55bfa7af139969d5840c270 +docfiles size=906 + RELOC/doc/latex/stex/Makefile + RELOC/doc/latex/stex/Makefile.top + RELOC/doc/latex/stex/README.md details="Readme" + RELOC/doc/latex/stex/img/vsc1.png + RELOC/doc/latex/stex/img/vsc2.png + RELOC/doc/latex/stex/img/vsc3.png + RELOC/doc/latex/stex/packages/stex-basics.tex + RELOC/doc/latex/stex/packages/stex-document-structure.tex + RELOC/doc/latex/stex/packages/stex-features.tex + RELOC/doc/latex/stex/packages/stex-hwexam.tex + RELOC/doc/latex/stex/packages/stex-idesetup.tex + RELOC/doc/latex/stex/packages/stex-inheritance.tex + RELOC/doc/latex/stex/packages/stex-mathhub.tex + RELOC/doc/latex/stex/packages/stex-mathhubsetup.tex + RELOC/doc/latex/stex/packages/stex-metatheory.tex + RELOC/doc/latex/stex/packages/stex-modules.tex + RELOC/doc/latex/stex/packages/stex-notesslides.tex + RELOC/doc/latex/stex/packages/stex-problem.tex + RELOC/doc/latex/stex/packages/stex-proofs.tex + RELOC/doc/latex/stex/packages/stex-references.tex + RELOC/doc/latex/stex/packages/stex-setup.tex + RELOC/doc/latex/stex/packages/stex-statements.tex + RELOC/doc/latex/stex/packages/stex-symbols.tex + RELOC/doc/latex/stex/packages/stex-terms.tex + RELOC/doc/latex/stex/packages/stex-tikzinput.tex + RELOC/doc/latex/stex/stex-abstract.tex + RELOC/doc/latex/stex/stex-doc.pdf details="Complete package documentation" + RELOC/doc/latex/stex/stex-doc.tex + RELOC/doc/latex/stex/stex-docheader.tex + RELOC/doc/latex/stex/stex-ide.pdf + RELOC/doc/latex/stex/stex-ide.tex + RELOC/doc/latex/stex/stex-manual.pdf details="User manual" + RELOC/doc/latex/stex/stex-manual.tex + RELOC/doc/latex/stex/stex-tutorial.tex +srccontainersize 63628 +srccontainerchecksum fe3a69ce18eb50a24972bff6695e7b1297defa1c99d53b05ba5a04abf249e44bea4a7ab8b191ebd3f02f71891eb97c88e8ef685363f4677471a38c282fad6566 +srcfiles size=111 + RELOC/source/latex/stex/Makefile + RELOC/source/latex/stex/extensions/Makefile + RELOC/source/latex/stex/extensions/document-structure.dtx + RELOC/source/latex/stex/extensions/hwexam.dtx + RELOC/source/latex/stex/extensions/notesslides.dtx + RELOC/source/latex/stex/extensions/problem.dtx + RELOC/source/latex/stex/extensions/stex-extensions.ins + RELOC/source/latex/stex/extensions/tikzinput.dtx + RELOC/source/latex/stex/stex/Makefile + RELOC/source/latex/stex/stex/stex-basics.dtx + RELOC/source/latex/stex/stex/stex-features.dtx + RELOC/source/latex/stex/stex/stex-inheritance.dtx + RELOC/source/latex/stex/stex/stex-mathhub.dtx + RELOC/source/latex/stex/stex/stex-metatheory.dtx + RELOC/source/latex/stex/stex/stex-modules.dtx + RELOC/source/latex/stex/stex/stex-others.dtx + RELOC/source/latex/stex/stex/stex-proofs.dtx + RELOC/source/latex/stex/stex/stex-references.dtx + RELOC/source/latex/stex/stex/stex-statements.dtx + RELOC/source/latex/stex/stex/stex-symbols.dtx + RELOC/source/latex/stex/stex/stex-terms.dtx RELOC/source/latex/stex/stex/stex.ins - RELOC/source/latex/stex/structview/structview.dtx - RELOC/source/latex/stex/structview/structview.ins - RELOC/source/latex/stex/tikzinput/tikzinput.dtx - RELOC/source/latex/stex/tikzinput/tikzinput.ins - RELOC/source/latex/stex/workaddress/workaddress.dtx - RELOC/source/latex/stex/workaddress/workaddress.ins -runfiles size=50 - RELOC/tex/latex/stex/cmath/cmath.sty - RELOC/tex/latex/stex/dcm/dcm.sty - RELOC/tex/latex/stex/hwexam/hwexam.cls - RELOC/tex/latex/stex/hwexam/hwexam.sty - RELOC/tex/latex/stex/metakeys/metakeys.sty - RELOC/tex/latex/stex/mikoslides/beamerthemeJacobs.sty - RELOC/tex/latex/stex/mikoslides/cc-by-sa.png - RELOC/tex/latex/stex/mikoslides/cc_somerights.png - RELOC/tex/latex/stex/mikoslides/dangerous-bend.png - RELOC/tex/latex/stex/mikoslides/jacobs-logo.png - RELOC/tex/latex/stex/mikoslides/mikoslides.cls - RELOC/tex/latex/stex/mikoslides/mikoslides.sty - RELOC/tex/latex/stex/mikoslides/shading-l2r.png - RELOC/tex/latex/stex/modules/modules.sty - RELOC/tex/latex/stex/omdoc/omdoc.cls - RELOC/tex/latex/stex/omdoc/omdoc.sty - RELOC/tex/latex/stex/omtext/omtext.sty - RELOC/tex/latex/stex/presentation/presentation.sty - RELOC/tex/latex/stex/problem/problem.sty - RELOC/tex/latex/stex/rfdmeta/rdfmeta.sty - RELOC/tex/latex/stex/smglom/smglom.cls - RELOC/tex/latex/stex/smultiling/smultiling.sty - RELOC/tex/latex/stex/sproof/sproof.sty - RELOC/tex/latex/stex/sref/sref.sty - RELOC/tex/latex/stex/statements/statements.sty - RELOC/tex/latex/stex/stex/stex.sty - RELOC/tex/latex/stex/structview/structview.sty - RELOC/tex/latex/stex/tikzinput/tikzinput.sty - RELOC/tex/latex/stex/workaddress/workaddress.sty +runfiles size=111 + RELOC/tex/latex/stex/document-structure.sty + RELOC/tex/latex/stex/etc/beamerthemesTeX.sty + RELOC/tex/latex/stex/etc/hwexam-default.header + RELOC/tex/latex/stex/etc/lststex.sty + RELOC/tex/latex/stex/etc/rustex.sty + RELOC/tex/latex/stex/etc/stex-backend-latexml.cfg + RELOC/tex/latex/stex/etc/stex-backend-pdflatex.cfg + RELOC/tex/latex/stex/etc/stex-backend-rustex.cfg + RELOC/tex/latex/stex/etc/stex-backend-tex4ht.cfg + RELOC/tex/latex/stex/etc/stex-logo.sty + RELOC/tex/latex/stex/etc/stexthm.sty + RELOC/tex/latex/stex/hwexam.sty + RELOC/tex/latex/stex/img/sTeX-logo.png + RELOC/tex/latex/stex/img/stex-cc-by-sa.png + RELOC/tex/latex/stex/img/stex-cc_somerights.png + RELOC/tex/latex/stex/img/stex-dangerous-bend.png + RELOC/tex/latex/stex/ldf/document-structure-ngerman.ldf + RELOC/tex/latex/stex/ldf/hwexam-finnish.ldf + RELOC/tex/latex/stex/ldf/hwexam-french.ldf + RELOC/tex/latex/stex/ldf/hwexam-ngerman.ldf + RELOC/tex/latex/stex/ldf/hwexam-russian.ldf + RELOC/tex/latex/stex/ldf/problem-finnish.ldf + RELOC/tex/latex/stex/ldf/problem-french.ldf + RELOC/tex/latex/stex/ldf/problem-ngerman.ldf + RELOC/tex/latex/stex/ldf/problem-russian.ldf + RELOC/tex/latex/stex/ldf/sproof-finnish.ldf + RELOC/tex/latex/stex/ldf/sproof-french.ldf + RELOC/tex/latex/stex/ldf/sproof-ngerman.ldf + RELOC/tex/latex/stex/ldf/sproof-russian.ldf + RELOC/tex/latex/stex/notesslides.cls + RELOC/tex/latex/stex/notesslides.sty + RELOC/tex/latex/stex/problem.sty + RELOC/tex/latex/stex/stex-tikzinput.sty + RELOC/tex/latex/stex/stex.cls + RELOC/tex/latex/stex/stex.sty + RELOC/tex/latex/stex/tikzinput.sty catalogue-contact-announce https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex -catalogue-contact-bugs https://github.com/KWARC/sTeX/issues -catalogue-contact-development https://lists.informatik.uni-erlangen.de/mailman/listinfo/stex -catalogue-contact-home https://github.com/KWARC/sTeX -catalogue-contact-repository https://github.com/KWARC/sTeX +catalogue-contact-bugs https://github.com/slatex/sTeX/issues +catalogue-contact-repository https://github.com/slatex/sTeX catalogue-ctan /macros/latex/contrib/stex catalogue-license lppl -catalogue-topics struc-mkup format +catalogue-topics struc-mkup format expl3 +catalogue-version 3.2.0 name stickstoo category Package -revision 57193 +revision 60793 shortdesc A reworking of STIX2 relocated 1 longdesc SticksToo is a reworking of the STIX2 fonts with support files @@ -281983,11 +290704,11 @@ longdesc the newtxmath package (version 1.55) provides a matching math longdesc package using STIX2 letters (Roman and Greek) with newtxmath longdesc symbols. execute addMap SticksTooText.map -containersize 2667960 -containerchecksum 5da4a3d412ee4c015e0f15939edf71bd8dd16f218ca3d8d236cb071554af2dac9fb4e71de4b18626578134e94262582dfb62071c1cc4af5ef2fb6111b6430d92 -doccontainersize 557228 -doccontainerchecksum 0a36ffbe112993a90054e3ba413725abb4259e10a3f439eff694c05ce8b99592e7d1001fda13cf49d1ce0e89f388e1726962b58e74e13eea4b918ee85303b24a -docfiles size=156 +containersize 2668304 +containerchecksum aa2ede628a273b4fc0796153d243bf89dce6d3c1b0097b29327bf21836340d11f6e6368f312d76ff726030c05d012c3890f86277ac7eef79d5c5ca579f47cea7 +doccontainersize 406344 +doccontainerchecksum e1437dd3b47c8799b4a8a60fcfc215a303f1eb289e0424e51d29fad78c9fb4cc4890896baa77251681d000f2eb08365f9f16a2fbc1c37881b852790257432088 +docfiles size=119 RELOC/doc/fonts/stickstoo/OFL-FAQ.txt RELOC/doc/fonts/stickstoo/OFL.txt RELOC/doc/fonts/stickstoo/README details="Readme" @@ -282562,7 +291283,7 @@ runfiles size=6094 catalogue-ctan /fonts/stickstoo catalogue-license ofl lppl1.3 catalogue-topics font font-body font-serif font-proportional font-maths font-type1 font-supp font-t1enc -catalogue-version 1.034 +catalogue-version 1.035 name stix category Package @@ -282991,7 +291712,7 @@ catalogue-topics comp-theory font font-symbol-maths font-mf font-type1 name storebox category Package -revision 56291 +revision 64967 shortdesc Storing information for reuse relocated 1 longdesc The package provides "store boxes" whose user interface matches @@ -283000,24 +291721,24 @@ longdesc store box appears at most once in the output PDF file, however longdesc often it is used. The present version of the package supports longdesc pdfLaTeX and LuaLaTeX; when DVI is output, store boxes behave longdesc the same as save boxes. -containersize 2996 -containerchecksum 68feeea2592f31d3aed2b8431ab9e6c15d61151d3db7f59d54d6904e8db0f11c424b22ea6ff99e19032688c7910debed25280dde11f7a5858186772f118f0a18 +containersize 2980 +containerchecksum 8f414a7bef1e3b2be8c526e67dcec5a5878430891323ad5c4820e0b304fde35e9eb8ca69e2d1c6dca623387220114f7371ff54d2ba4297b8e7d923354d6e5ea5 doccontainersize 194352 -doccontainerchecksum 08116b59ab292150381e1dc3e766d5ac7fbe8e1ec7a32236af4ebbd6ed410f76fff74648477615dddb8bf55281fdf918bafd25c04bab4d2be08b86c5b937a5f7 +doccontainerchecksum 09b0b2914d8cd87b6cf070d012a5e9581a399cdee4cf73e38b5f53dae613b3957a8fb8e0a2df6ec2953038ca984e3800b7ebe839ca01af556c655ec5e27f3065 docfiles size=49 RELOC/doc/latex/storebox/README details="Readme" RELOC/doc/latex/storebox/storebox.pdf details="Package documentation" -srccontainersize 6220 -srccontainerchecksum bfc6c15b82ec637d8a76f705b7e443c734fc274b6de15d93dbc5b96eb35653e7a24a1f2abc628ef0d314ea791e04d1db9efe3f8e481cfb40a30fb0a345a82e38 +srccontainersize 6216 +srccontainerchecksum a48bd8d8d3fcca367265706cccf14e5b8e90a9d74528754ce96436ac1925457a78e5d1fbd73a6ebae998121b6da27595b573f15a46c573f1aae06168e0100836 srcfiles size=7 RELOC/source/latex/storebox/storebox.dtx RELOC/source/latex/storebox/storebox.ins runfiles size=4 RELOC/tex/latex/storebox/storebox-pgf.sty RELOC/tex/latex/storebox/storebox.sty -catalogue-contact-bugs https://sourceforge.net/p/storebox/tickets/ -catalogue-contact-home https://sourceforge.net/projects/storebox/ -catalogue-contact-repository https://sourceforge.net/p/storebox/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/storebox/issues +catalogue-contact-home https://github.com/MartinScharrer/storebox +catalogue-contact-repository https://github.com/MartinScharrer/storebox.git catalogue-ctan /macros/latex/contrib/storebox catalogue-license lppl1.3 catalogue-topics pdf-feat macro-supp @@ -283048,6 +291769,34 @@ catalogue-license lppl1.3 catalogue-topics macro-supp catalogue-version 0.0.2 +name strands +category Package +revision 59906 +shortdesc Draw objects constructed from strands +relocated 1 +longdesc This package permits to draw objects constructed from strands, +longdesc like set partitions, permutations, braids, etc. It depends on +longdesc forarray, ifthen, TikZ, xfp, xstring, and xkeyval. +containersize 7268 +containerchecksum bc902fcd06413468d2dd3f23aa774824602a910749bc2b2cc8d4c24decc184a088190422c0f2ea58995fe627f855f6fa6e0b5ad0490b1084fdd122abebb77cef +doccontainersize 142224 +doccontainerchecksum 95cbfbe360a515fa94d0222eaaffc2cb5920a8a2f5b0ca0a052f29f7237b58214c8f39288d08db88e97ba0694f3ac6793c7c8c90d47295841e009db46b037b91 +docfiles size=37 + RELOC/doc/latex/strands/README.md details="Readme" + RELOC/doc/latex/strands/strands.pdf details="Package documentation" +srccontainersize 9124 +srccontainerchecksum 7e95d4132e4d1c4bb319d3ae2f4ddb10b65ca7b30d2ba6942274e0169a8d69f39d7d552c7470adadf006ee0725bbc0862a1c1190f425643bba108542bd8e4b75 +srcfiles size=15 + RELOC/source/latex/strands/strands.dtx + RELOC/source/latex/strands/strands.ins +runfiles size=12 + RELOC/tex/latex/strands/strands.sty +catalogue-contact-repository https://github.com/arcisd/Strands-Package +catalogue-ctan /graphics/pgf/contrib/strands +catalogue-license lppl1.3 +catalogue-topics graphics pgf-tikz +catalogue-version 1.1 + name stricttex category Package revision 56320 @@ -283255,7 +292004,7 @@ catalogue-version 2.3c-0-g7d3fc5b name sttools category Package -revision 56774 +revision 60736 shortdesc Various macros relocated 1 longdesc A collection of tools and macros, providing: miscellaneous @@ -283263,11 +292012,11 @@ longdesc float control, page styles for floats, multipage tabulars, even longdesc columns at end of twocolumn region, switching between one- and longdesc two-column anywhere, simulating the effect of "midfloats", a longdesc package to manipulate numerical lists and arrays. -containersize 13432 -containerchecksum d9707fc22ad26d291288debdb2d9bb492175dade76ed398c3c0ffd1d4ba256d8c691bc2fb9d537ff01af4de7bf1352d4b1f62cc6c54afa8c02eea8b69185382b -doccontainersize 764344 -doccontainerchecksum b32bd4fa10599b3ace5bc8e1b2dae79750aace26a98806de275fdd358554b6f26fde48c9e7b0fbb108de0a771728a68f6c09fa9c568a5e2fce7b9aaa1fb1f58f -docfiles size=231 +containersize 13620 +containerchecksum 4e52219c4d3d668dd52d9a1e8e0de4f547871efb9f5515851b44e1c968cd564080c87c631d8cb53c76cdcfb8df884af0e9ea1492228929098a390b6184f5ed37 +doccontainersize 744196 +doccontainerchecksum c07922c52f57ffeeb57a9bf3b444e251f01f859f2218933889112b86d9dadc5791d7d926091eb3a2753a6ebebe439bc7037ef857b6d19a1e6e7b516fe879f4d4 +docfiles size=240 RELOC/doc/latex/sttools/README.md details="Readme" RELOC/doc/latex/sttools/cuted.pdf RELOC/doc/latex/sttools/floatpag.pdf @@ -283277,9 +292026,9 @@ docfiles size=231 RELOC/doc/latex/sttools/stfloats.pdf RELOC/doc/latex/sttools/sttools.pdf details="Overview of the bundle" RELOC/doc/latex/sttools/texsort.pdf -srccontainersize 21348 -srccontainerchecksum 56a096fbc8f28a0ea2f1ef31ebf277204319eaf6fb9bfcbd5449d24b2689a111f192ee1c723adcf8800c9ca2069c934cde8d0bdefae473e6eced2b043b7fd8d8 -srcfiles size=42 +srccontainersize 21112 +srccontainerchecksum 65616cdefbe3d5b53f7f888412f8ada24860d33c2cd5babff26a3ae71c6c56a4d1a5eb5dd355d557c8fd947db82401746a4928a16587a88c3dfcc19f712f5e59 +srcfiles size=41 RELOC/source/latex/sttools/cuted.dtx RELOC/source/latex/sttools/floatpag.dtx RELOC/source/latex/sttools/flushend.dtx @@ -283289,7 +292038,7 @@ srcfiles size=42 RELOC/source/latex/sttools/sttools.dtx RELOC/source/latex/sttools/sttools.ins RELOC/source/latex/sttools/texsort.dtx -runfiles size=28 +runfiles size=27 RELOC/tex/latex/sttools/cuted.sty RELOC/tex/latex/sttools/floatpag.sty RELOC/tex/latex/sttools/flushend.sty @@ -283300,20 +292049,20 @@ runfiles size=28 catalogue-ctan /macros/latex/contrib/sttools catalogue-license lppl1.3 catalogue-topics collection -catalogue-version 2.1 +catalogue-version 3.0 name stubs category Package -revision 19440 +revision 66204 shortdesc Create tear-off stubs at the bottom of a page relocated 1 longdesc The \stubs command creates as many repetitions as possible of longdesc its argument, at the bottom of the page; these stubs may be longdesc used (for example) for contact information. -containersize 1720 -containerchecksum 13d9fbb0eb8fed9b92f1307db189e9f65df92470d0ed21a0c84dea2f53ebd1b4d665919372476b737184df4f9faab0a982e681a0f9cb5a99e40b5f80194d448e +containersize 1696 +containerchecksum 38b435a934f98550293595b0bc8f56e6dc2a06d40adf09d3f79c8d28f5f0011016b024d00a092bc1454d542820455b7a7aadbdc04598d309925c4ddf1840c3ed doccontainersize 23904 -doccontainerchecksum a427047460a92a436b21c23c112bc4ed8608a9916b613530e5ee5cc56bc833a18c6336943ccba475b7854269680eb7d685bdf2f0641478e46cc4e8fd9a6e8260 +doccontainerchecksum 10c9e132486b343405cea592feb9164102b1f8196f81c5237a6a6379cd4e6e4ea122ab8e786dca7be1b7600e4cd7e660919255a787e814b3d19e0e45a178b492 docfiles size=14 RELOC/doc/latex/stubs/COPYING RELOC/doc/latex/stubs/README @@ -283368,7 +292117,7 @@ catalogue-version 1.0 name sty2dtx category Package -revision 56291 +revision 64967 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 @@ -283380,29 +292129,29 @@ 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 file from dtxtut is used. User level macros are added +longdesc automatically to the "Usage" section of the .dtx file. A longdesc corresponding .ins file can be generated as well. depend sty2dtx.ARCH -containersize 8720 -containerchecksum a7e42340744a348c88bb3cde7e23d428259f4fe7c644093e4bdabf8c49bc7f9c929a2271cd14daed9be233a04f62b60602a9fa778d05b11dba716d886286e8e1 -doccontainersize 151548 -doccontainerchecksum 2fb33ea4fcc9b5e940b46cb1b53cb56692528d8926d9bf22d3615958946763a63be101a5cf146a14ade43e2dce11b8fc25866d563d844570863dce54f48472b5 -docfiles size=43 +containersize 8764 +containerchecksum f95ad4f6260657ce329c10ae1306e5ec50965c2766c3c28f5a6dd77f4884637c36ecfae28b7853dfaf4e2e5bc256713abe4c8b3525e194fed1eccdd1ea24e1ac +doccontainersize 184132 +doccontainerchecksum 1bc66506350b07341c8c4b858c6b1c637d9f0bf48323714ee7dedd701faf20e3cadb318f56bfb1a05f4fcaf84cdd6e9db18299801a69e0359937d7852ac6a824 +docfiles size=52 texmf-dist/doc/man/man1/sty2dtx.1 texmf-dist/doc/man/man1/sty2dtx.man1.pdf - texmf-dist/doc/support/sty2dtx/README details="Readme" + texmf-dist/doc/support/sty2dtx/README.txt details="Readme" texmf-dist/doc/support/sty2dtx/sty2dtx.pdf runfiles size=8 texmf-dist/scripts/sty2dtx/sty2dtx.pl catalogue-also makedtx -catalogue-contact-bugs https://sourceforge.net/p/sty2dtx/tickets/ -catalogue-contact-home https://sourceforge.net/p/sty2dtx/ -catalogue-contact-repository https://sourceforge.net/p/sty2dtx/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/sty2dtx/issues +catalogue-contact-home https://github.com/MartinScharrer/sty2dtx +catalogue-contact-repository https://github.com/MartinScharrer/sty2dtx.git catalogue-ctan /support/sty2dtx catalogue-license gpl3 catalogue-topics package-devel -catalogue-version 2.3 +catalogue-version 2.4 name sty2dtx.aarch64-linux category Package @@ -283440,15 +292189,6 @@ containerchecksum 80cdefa3609834c196d739983010ebef83080f4cd94a601f2710ff41197004 binfiles arch=armhf-linux size=1 bin/armhf-linux/sty2dtx -name sty2dtx.i386-cygwin -category Package -revision 21215 -shortdesc i386-cygwin files of sty2dtx -containersize 340 -containerchecksum cbca0441d505adf28ffe8940d9d5bded9fce126e013dd1f8e1c413025719aa3105b0ccbc6df74c86b407369e5026dca73c4450c88f010a21adc5c6565ae1042b -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/sty2dtx - name sty2dtx.i386-freebsd category Package revision 21215 @@ -283494,14 +292234,14 @@ containerchecksum 2e0a3cef5843c61d4a71fa058ad2b486326d511c40525f49a07083bb022369 binfiles arch=universal-darwin size=1 bin/universal-darwin/sty2dtx -name sty2dtx.win32 +name sty2dtx.windows category Package -revision 21215 -shortdesc win32 files of sty2dtx -containersize 680 -containerchecksum de8418cb30fea8228b11fe638086954c9684f41e0978731ec87f14eeb193ab2d96d1af4c54d266193fe77354ed88f13197500721b904e6587194ef0b1261db64 -binfiles arch=win32 size=1 - bin/win32/sty2dtx.exe +revision 65891 +shortdesc windows files of sty2dtx +containersize 2304 +containerchecksum e3ae13929eee5de7d82eb9d14f277bf3165c89338fb132cda70cdce4fa3202b8ec68278c2df8e805d4c84623565979a5a93b9ab2d7806ac0b6832143b7413e36 +binfiles arch=windows size=2 + bin/windows/sty2dtx.exe name sty2dtx.x86_64-cygwin category Package @@ -283548,6 +292288,39 @@ containerchecksum c07e73b141df36e37e7006b62a448113104092877dae7ced982d55d6389c0c binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/sty2dtx +name styledcmd +category Package +revision 65262 +shortdesc Handling multiple versions of user-defined macros +relocated 1 +longdesc This package allows creating and maintaining different versions +longdesc of the same command, in order to choose the best option for +longdesc every document. This includes expandable and protected +longdesc commands. +containersize 2636 +containerchecksum 7111296b41df8849fcc01820dc10468a05597d5e7db5f0e45ac4bebc2c6a66dceb3042d645b51dd65fc2cf4987fc38c724a539f292a95c0f552e374128649830 +doccontainersize 368320 +doccontainerchecksum c85d0fbec0e9927c29f1684f715b2c6a9897ad6ea41580b09d9af4cab293bfa7f16b65d1439706ed85282698ab245112050cc212813cb2835666380802ab7a79 +docfiles size=107 + RELOC/doc/latex/styledcmd/README.md details="Readme" + RELOC/doc/latex/styledcmd/styledcmd.pdf details="Package documentation" +srccontainersize 6120 +srccontainerchecksum e1bec216d87d2e1649b9206dc2facb99486c6d1f2bcddcebd9c1dd9db9f2551c3043493df36bb64367a6e71066f16fb0ab3a48979f6554482a824cd8a83e3597 +srcfiles size=7 + RELOC/source/latex/styledcmd/styledcmd.dtx + RELOC/source/latex/styledcmd/styledcmd.ins +runfiles size=3 + RELOC/tex/latex/styledcmd/styledcmd.sty +catalogue-contact-announce https://github.com/Loara/styledcmd/discussions/categories/announcements +catalogue-contact-bugs https://github.com/Loara/styledcmd/issues +catalogue-contact-home https://github.com/Loara/styledcmd +catalogue-contact-repository https://github.com/Loara/styledcmd.git +catalogue-contact-support https://github.com/Loara/styledcmd/discussions +catalogue-ctan /macros/latex/contrib/styledcmd +catalogue-license gpl3+ +catalogue-topics macro-def +catalogue-version 2.0 + name suanpan category Package revision 15878 @@ -284089,29 +292862,29 @@ catalogue-version 1.0a name suftesi category Package -revision 57650 +revision 60991 shortdesc A document class for typesetting theses, books and articles relocated 1 longdesc The class can be used to typeset any kind of book (originally longdesc designed for use in the humanities). -containersize 14104 -containerchecksum 831ef011581a27693ec114b66e1f5a80f0605f4228eb31755d9ca202a7b1881530be2ea89b1ba9d0b71ddca88c109da20919d65e5705adac143fb381f19a4180 -doccontainersize 990468 -doccontainerchecksum bf83d581ee054dbc74c2f685c9461bf6233b674a49d2b4d7a989c51f28728b25f3fff7c2f9c53110bb00b91a10b5f978ecb9180d2d5ba93cd6cd01f0be0cc4ec -docfiles size=363 +containersize 14812 +containerchecksum 12f9eed31e58856352c2625daf0ffe51d8df084a4ee255c8a19c17d1debee06873127136a49cfacfa3941e25546811216eb943e17717052ba369a3f34811687b +doccontainersize 1040136 +doccontainerchecksum 01fd5a4e862960a219619a57adfb7b34ee71fd953f79178e6c77f6c27b404d9c11eecc7d302c9a8a23b4f746220acc9ee1a465e1b921dfeb3a9119d45b96b8fa +docfiles size=375 RELOC/doc/latex/suftesi/README details="Readme" RELOC/doc/latex/suftesi/suftesi.pdf details="Package documentation" language="en" RELOC/doc/latex/suftesi/templates.zip -srccontainersize 40176 -srccontainerchecksum 8c4ce79fefe4ad379cbc97dca4d6e046c266c5abc46e2e8422abe145e74199c7518d0c2523015a06eef3f1350880dc2a259c488c60c1a2610b10fdb372dce342 -srcfiles size=52 +srccontainersize 43076 +srccontainerchecksum d0a66c2920a9f7e0ad2a54b47015b89e7792b8f0fa39011414ac80a58a826d038b29e5d0170803be3f00c61347dbf287c9608c59f1354895bf94a24a08d506f8 +srcfiles size=57 RELOC/source/latex/suftesi/suftesi.dtx -runfiles size=24 +runfiles size=25 RELOC/tex/latex/suftesi/suftesi.cls catalogue-ctan /macros/latex/contrib/suftesi catalogue-license lppl1.3 -catalogue-topics book-pub class dissertation -catalogue-version 3.0.2 +catalogue-topics class book-pub dissertation +catalogue-version 3.2.0 name sugconf category Package @@ -284207,7 +292980,7 @@ catalogue-version 4.1g name suppose category Package -revision 58819 +revision 59281 shortdesc Abbreviate the word "Suppose" relocated 1 longdesc This package provides commands for abbreviating the word @@ -284216,10 +292989,10 @@ longdesc recommends only using these commands when the immediately longdesc succeeding strings are mathematical in nature. He does not longdesc recommend using them in formal work. The package requires longdesc amsmath, amsfonts, and graphicx. -containersize 2216 -containerchecksum 2a38f9cde5456c19f66cf9ba1feea38f0bc984f1682a2b96671aef1fa0a302e6448d84965d5dab7a2e3c7f8af7691b7d3d4a3a682215bf6509af4e022710e6e4 -doccontainersize 196768 -doccontainerchecksum e75042a55c93a317214e5691734cd22cff0f9a7891cb7e7705c24b57f39d8ae223030b8fcca3a246a83b2cc6af73e8881c415dfc676fd7de224d43ba98d70ee7 +containersize 2448 +containerchecksum b78fab6e7784cec1ad8c44c0ea6b2dabf7aeed133ae5dbf9c8044a5fd8af8509b68a1fb615a8bc33459676e4eb6f6d13f097cd689c35acf37beca4750ee09c36 +doccontainersize 197208 +doccontainerchecksum c59de255274f2a8fb961b57e4c59e7020f990b15a54ef008b251380b63d3564cfab7ce434a3782d3f467561557eca9884745e12f3886416967ad26b0a95b1f5a docfiles size=53 RELOC/doc/latex/suppose/README.md details="Readme" RELOC/doc/latex/suppose/suppose-doc.pdf details="Package documentation" @@ -284229,7 +293002,7 @@ runfiles size=3 catalogue-ctan /macros/latex/contrib/suppose catalogue-license lppl1.3c catalogue-topics maths abbrev -catalogue-version 1.2.1 +catalogue-version 1.2.2 name susy category Package @@ -284378,7 +293151,7 @@ catalogue-version 43 name svn-multi category Package -revision 56291 +revision 64967 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. @@ -284388,10 +293161,10 @@ longdesc uses the author's filehook and currfile packages. The package longdesc interacts with an external Perl script, to retrieve information longdesc necessary for the required output. depend svn-multi.ARCH -containersize 12464 -containerchecksum 237955b5606c5c4fbca7a5c06d4cb1b180ad33647d39337a6814c95a43ecb84004715f3b639353608bd52a64ee3ea70f392ba831ff64499b5162aed64a85da9d +containersize 12452 +containerchecksum cb2b1c9a95445b1b2cae4b4f8b7d22a417c766b8158a229712a2ecf8b5b2c731c4c4ee348e626a734406487327d7e0288df458329d1231aaa9c63c1283636930 doccontainersize 401628 -doccontainerchecksum 2ae2947a0b15e82a9b241a757ffc60cf5a5be04bb49c4ae5ef7de9dcf9e1ef4082c83e2a57058dd431d16c56eae7647ec4c43dd47a4f0c2a925f4f989a7f6844 +doccontainerchecksum 6fb5e19bc88ab89fb7363587121374f08ebac0d3bc2868e27c43a8deb986cb5b1e82a665adfa56810ff70a49104007b056aefbb3e55cb821e0039eef0bf941eb docfiles size=104 texmf-dist/doc/latex/svn-multi/README details="Readme" texmf-dist/doc/latex/svn-multi/example_chap1.tex @@ -284400,7 +293173,7 @@ docfiles size=104 texmf-dist/doc/latex/svn-multi/svn-multi.pdf details="Package documentation" texmf-dist/doc/support/svn-multi/svn-multi-pl.pdf details="Perl script documentation" srccontainersize 39000 -srccontainerchecksum 45e948ed51554b3b12b883238b628ab6dc43a0ae6a0eea093399d1f771bfc368b2839c568a7183abc3a8cdf687095692e0063cac26869c2fc2b89087096b412e +srccontainerchecksum b50a0401ac6e0f056fc029ae78ffd8cd4e64bbf677b654c0462d1d160d8f4b2a2895594b8f591fe6aa4acab0c01aa5633af9d9f7a24fbd6f177d2a717cd0f2a4 srcfiles size=42 texmf-dist/source/latex/svn-multi/svn-multi-pl.dtx texmf-dist/source/latex/svn-multi/svn-multi.dtx @@ -284410,9 +293183,9 @@ runfiles size=15 texmf-dist/tex/latex/svn-multi/svn-multi.sty texmf-dist/tex/latex/svn-multi/svnkw.sty catalogue-also svn svninfo -catalogue-contact-bugs https://sourceforge.net/p/svn-multi/tickets/ -catalogue-contact-home https://sourceforge.net/p/svn-multi/ -catalogue-contact-repository https://sourceforge.net/p/svn-multi/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/svn-multi/issues +catalogue-contact-home https://github.com/MartinScharrer/svn-multi +catalogue-contact-repository https://github.com/MartinScharrer/svn-multi.git catalogue-ctan /macros/latex/contrib/svn-multi catalogue-license lppl catalogue-topics version-control doc-mgmt @@ -284454,15 +293227,6 @@ containerchecksum a50dd4fa60f9f880fe4e0de13c1b00fbbacb9a2bbeeab66d94f3a3a43b2281 binfiles arch=armhf-linux size=1 bin/armhf-linux/svn-multi -name svn-multi.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of svn-multi -containersize 340 -containerchecksum 75255ac80c3a7f949532ed8f84f7f5022fba352947b2aee3fd0a4c8c00a7a372c349b1c05961ebd02872abc31745858ae0d357a847fbae8f7df96a8079140897 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/svn-multi - name svn-multi.i386-freebsd category Package revision 16472 @@ -284508,14 +293272,14 @@ containerchecksum d1bada3f858c3f9005471c3720cd44ee4074d972da8435fe2446288b6c57b3 binfiles arch=universal-darwin size=1 bin/universal-darwin/svn-multi -name svn-multi.win32 +name svn-multi.windows category Package -revision 15404 -shortdesc win32 files of svn-multi -containersize 684 -containerchecksum 3cbc1fbcd5c116b6787b787a2f5c7ed4743e9fe97b9787f92358b3a6dae84bac9a00e81729992b195d496409bdeb14ef59e3bdd87018b731efee27e8221db78e -binfiles arch=win32 size=1 - bin/win32/svn-multi.exe +revision 65891 +shortdesc windows files of svn-multi +containersize 2312 +containerchecksum a067807d4116324732e34db47af51526ecf14c76ad0eb04eee431256da58c931a67eda424c076901fb33497d725f2baf49afac56857180ac928eee44bd23216a +binfiles arch=windows size=2 + bin/windows/svn-multi.exe name svn-multi.x86_64-cygwin category Package @@ -284564,7 +293328,7 @@ binfiles arch=x86_64-solaris size=1 name svn-prov category Package -revision 56291 +revision 64967 shortdesc Subversion variants of \Provides... macros relocated 1 longdesc The package introduces Subversion variants of the standard @@ -284572,23 +293336,23 @@ longdesc LaTeX macros \ProvidesPackage, \ProvidesClass and \ProvidesFile longdesc where the file name and date is extracted from Subversion Id longdesc keywords. The file name may also be given explicitly as an longdesc optional argument. -containersize 2420 -containerchecksum 0ac31432d148e5b05cadb041ee238fdd27b695a5be2e9553d062084443f97b961e1d9530ce3e5bc0b97ca8cc1bedecf9abb6f189f4e75184816e4ca36f8117d8 +containersize 2412 +containerchecksum 319bd5de2870a3c8237aa5013f7807bf3c2c5ef7fa4618a400cd5ab60ec8cb88b94510b0129862c5d98a11e2241f9790f8c84473447df8e21cbe711d52268e98 doccontainersize 242148 -doccontainerchecksum 78e6d352d0e19c48d98edb5e5b12ddae32e906cf0693ca3b57ecc9647dd5dde7a6dab394160b9242f2503a7dde54505fff4d38687a06689a463b152e6708f70c +doccontainerchecksum 01cfb48533e07065f477724efe4c3fcff13691da0393a0d8a9dc9cf4b5d3e3953ce233f8331c1e5857c2259ac6dd7e4859793bb194d750f35ecf3723dd7b4b0d docfiles size=74 RELOC/doc/latex/svn-prov/svn-prov.pdf details="Package documentation" srccontainersize 9996 -srccontainerchecksum e67a24270a79b47c853c492b2d72b451a9041e6202fcbe59c20c5203dccaf8d865215a01cf48aebacd8367e2d5a7d1f2efafa93e729d7d3d7269c4d008bce7a1 +srccontainerchecksum 1e0206e1506082c8ca5ece1e66b9c85650b986e92e5906a96e7156964f3004af2d008815f86c609eba48f02a0750403fa3860ef2a3bc14689140c8826cb3881b srcfiles size=10 RELOC/source/latex/svn-prov/Makefile RELOC/source/latex/svn-prov/svn-prov.dtx RELOC/source/latex/svn-prov/svn-prov.ins runfiles size=2 RELOC/tex/latex/svn-prov/svn-prov.sty -catalogue-contact-bugs https://sourceforge.net/p/svn-prov/tickets/ -catalogue-contact-home https://sourceforge.net/p/svn-prov/ -catalogue-contact-repository https://sourceforge.net/p/svn-prov/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/svn-prov/issues +catalogue-contact-home https://github.com/MartinScharrer/svn-prov +catalogue-contact-repository https://github.com/MartinScharrer/svn-prov.git catalogue-ctan /macros/latex/contrib/svn-prov catalogue-license lppl catalogue-topics version-control doc-mgmt @@ -284596,23 +293360,22 @@ catalogue-version 3.1862 name svninfo category Package -revision 17554 +revision 62157 shortdesc Typeset Subversion keywords relocated 1 longdesc A package for incorporating the values of Subversion keywords longdesc into typeset documents. Information about Subversion (a -longdesc replacement for CVS) is available from -longdesc http://subversion.tigris.org/ -containersize 3940 -containerchecksum efb2b358bbf5a05b17a591114d0f45a38ff42837751d00b88183265d9bf595ba39377fc53dfe69ca01ae8c1776e6d4ded9c0f636e0e697b946f1d193b39c1537 +longdesc replacement for CVS) is available from the project's home site. +containersize 3916 +containerchecksum ca2e0a3d0a5f4ab6950d5995b39f785ba071294134d947a47ca3e1f7e0bedc69398f9d0fc2162f349a635aa19ce8c963ec7c88d4bed2100d8f3da05219235655 doccontainersize 258436 -doccontainerchecksum f8f20578da98d54181475d23be625a80c35af5e464fdcfca80643f8701a029bfdf03cfb13ec42be34312eafc372e42e5bbb4260aaa5066fe004b2fd6fcb2acc7 +doccontainerchecksum aa4bd06d31bad0a2441623b80f52702d67fdef03912b6f96058f3a89d00f4601cc4bae76a24f49540169ad30883177d038ddc7dedabd8d643b59df5c94be4a65 docfiles size=70 RELOC/doc/latex/svninfo/README details="Readme" RELOC/doc/latex/svninfo/svninfo.init RELOC/doc/latex/svninfo/svninfo.pdf details="Package documentation" srccontainersize 12712 -srccontainerchecksum 7ce865a81c8fcd47ff2cf00b5304e40ca0d534ee63b23cf24eb716926f3258a8081ec6aa9bf160a3fce741f1dab6c62e069ada8f5298f9a354d92c34ab36058b +srccontainerchecksum f9f65dcc56ae6b9cf2f5cd9dac27e3760f12428bee623e70018a767dbbf0b919178994349051893e52a04de75b8455b1c218b0f779f4a0ae4930480ba0ed24d1 srcfiles size=14 RELOC/source/latex/svninfo/Makefile RELOC/source/latex/svninfo/svninfo.dtx @@ -284689,17 +293452,17 @@ catalogue-topics bibtex-sty swedish name swfigure category Package -revision 57213 +revision 63255 shortdesc Insert large images that do not fit into a single page relocated 1 longdesc Five different display modes are defined in order to place in a longdesc document large figures that do not fit into a single page. A longdesc single user macro is defined to handle all five display modes. -containersize 4120 -containerchecksum 128965eab86a5028904bb2486c7adfead525ccc26a912cd4f69b63a11e18fadb3f8b0f42a9ba3e8296952afd3be0be052fa721a0edd6df320827acda82e6271a -doccontainersize 1547640 -doccontainerchecksum 968b87d733ec7bfabab4a7996482c54b184e8e46c8f5e30078e9c8957923c2fda3f136b65d5b1be392b62fce5fd1e016066dd86d42da3e43997b04a723a491fd -docfiles size=651 +containersize 4148 +containerchecksum 0cc77bbb379aca7561a6cff50be46dc43a1e064d6d4ea5f5b2115dc5907ceabb012d951c7dc5ee33bf0c8e824eb51a3eac54cd1b31e4dd974d226eb4bdb5ae52 +doccontainersize 2926592 +doccontainerchecksum 64f3f91acb388322ab4ea30d4f0c65e029b1c32755e7769d7d4388d4971f518459106acbde1b4c4b0cd3d4796769289aecaac34be32383778d913cc628d9f57a +docfiles size=989 RELOC/doc/latex/swfigure/DFscreenshot.pdf RELOC/doc/latex/swfigure/FSFakeA3.pdf RELOC/doc/latex/swfigure/FSFakeA3horiz.pdf @@ -284715,16 +293478,16 @@ docfiles size=651 RELOC/doc/latex/swfigure/swfigure-examples.pdf details="Example of use" RELOC/doc/latex/swfigure/swfigure-examples.tex RELOC/doc/latex/swfigure/swfigure.pdf details="Package documentation" -srccontainersize 20900 -srccontainerchecksum fa34afb85d7380539e283d5f1aca26468c31b6d631d28618a3cde73e3bfa493a3106f4321a5cbe172d86ef547165fc255f02f44957b28abf15c1b08d36e72952 -srcfiles size=18 +srccontainersize 21240 +srccontainerchecksum 02a5c33997f249a3f41065af3187516b27621c65f2b2ec82020b90b721221a2cc4c52e9b8ed65ae6d89559fbceb51da9f7eef00514bce7040822b280c3d6e505 +srcfiles size=19 RELOC/source/latex/swfigure/swfigure.dtx runfiles size=5 RELOC/tex/latex/swfigure/swfigure.sty catalogue-ctan /macros/latex/contrib/swfigure catalogue-license lppl1.3c catalogue-topics graphics-incl -catalogue-version 0.9.18 +catalogue-version 0.9.20 name swimgraf category Package @@ -284805,6 +293568,37 @@ catalogue-ctan /macros/generic/misc/swrule.sty catalogue-license other-free catalogue-topics decoration +name swungdash +category Package +revision 64204 +shortdesc Typeset a swung dash in LaTeX +relocated 1 +longdesc The swung dash (U+2053) is a useful character traditionally +longdesc used in typsetting dictionaries, but not supported by most +longdesc typefaces. This package provides one simple command to typeset +longdesc a swung dash in XeLaTeX and LuaLaTeX, by applying +longdesc transformations to the given font's glyph for a tilde. +containersize 1240 +containerchecksum fbfef096e662d2987dd9e4989fad28a93387722b29bf7974e47cb3a5c13b535df63113cfab6883d2c3c98cfb4b3272ad1de6c961e2818dab5e59661ca5d14630 +doccontainersize 65076 +doccontainerchecksum 6bb0c45931d2d028d5b337b7295e5645fb709eee6c30c3cf3bc539c7142cd8fa4a9543ce70a54cec9b12e7cb565366df674da7b85d32a24839d8bdd0d1cdee10 +docfiles size=19 + RELOC/doc/latex/swungdash/README details="Readme" + RELOC/doc/latex/swungdash/swungdash-documentation.pdf details="Package documentation" + RELOC/doc/latex/swungdash/swungdash-documentation.tex +runfiles size=1 + RELOC/tex/latex/swungdash/swungdash.sty +catalogue-contact-announce https://github.com/ezgranet/swungdash +catalogue-contact-bugs https://github.com/ezgranet/swungdash +catalogue-contact-development https://github.com/ezgranet/swungdash +catalogue-contact-home https://github.com/ezgranet/swungdash +catalogue-contact-repository https://github.com/ezgranet/swungdash +catalogue-contact-support https://github.com/ezgranet/swungdash +catalogue-ctan /macros/unicodetex/latex/swungdash +catalogue-license lppl1.3c +catalogue-topics typesetting +catalogue-version 1.0.0 + name syllogism category Package revision 15878 @@ -284830,11 +293624,38 @@ catalogue-license lppl catalogue-topics logic catalogue-version 1.2 +name symbats3 +category Package +revision 63833 +shortdesc Macros to use the Symbats3 dingbats fonts +relocated 1 +longdesc This package makes available for LaTeX the glyphs in Feorag's +longdesc OpenType Symbats3 neopagan dingbats fonts. +containersize 6152 +containerchecksum bf967082ea372ad1c752b6f4bc4201c0617390f23517cfc00fd5fc802d6e728f4ef81c1787fa86bd4aac4f8adeff89127b6bf1615b70f4733bd8d5b203b8a033 +doccontainersize 188116 +doccontainerchecksum e7a1a3f915000ad773f47a5529fc0aa97fa6dc2a56feefb8ae55815580301704a3c49eb7ae92b7f1248fd7115d7d55a54a6f2b38f05825be57b1e155ab8997ee +docfiles size=75 + RELOC/doc/fonts/symbats3/MANIFEST + RELOC/doc/fonts/symbats3/README.md details="Readme" + RELOC/doc/fonts/symbats3/VERSION + RELOC/doc/fonts/symbats3/codepoint.tex + RELOC/doc/fonts/symbats3/latexname.tex + RELOC/doc/fonts/symbats3/symbats3.pdf details="Package documentation" + RELOC/doc/fonts/symbats3/symbats3.tex + RELOC/doc/fonts/symbats3/unicodename.tex +runfiles size=13 + RELOC/tex/latex/symbats3/symbats3.sty +catalogue-contact-home http://latex.silmaril.ie/packages/symbats3 +catalogue-ctan /fonts/symbats3 +catalogue-license lppl1.3c +catalogue-topics font-absent font-symbol font-supp-symbol + name symbol category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -284847,8 +293668,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap usy.map -containersize 36132 -containerchecksum d942031f4a865c9db3f1deb68e9468132e811c88a4de67661a25431506a8ea41b2a9cd36ae0855208802d5b7cd4495b3cc27e9e18996dbf96f2529fecf4683e0 +containersize 36104 +containerchecksum 1a2d3239cf7c9910b19db527d5c2b43af2b399114b3186505e790a139ae5ef82c2ff1ecd5adc858a46febaf2e46e028037ba65bd5b84fec0737edd89d5061c09 runfiles size=25 RELOC/dvips/symbol/config.usy RELOC/fonts/afm/adobe/symbol/psyb.afm @@ -284899,7 +293720,7 @@ catalogue-version 0.3 name synctex category TLCore -revision 54074 +revision 66203 shortdesc engine-level feature synchronizing output and source longdesc SyncTeX allows navigating between the TeX source and (usually longdesc PDF) output, in both directions, given a SyncTeX-aware front @@ -284907,9 +293728,9 @@ longdesc end. It is compiled into most engines and can be enabled with longdesc the --synctex=1 option. It is developed as part of TeX Live. depend synctex.ARCH containersize 464 -containerchecksum 1cc1900df90ceebc6865ce7c4a4befc86d1aa5aeb0f19808526a6cb369d7bd2ecf3c4789817da937e84fdf1fa3c921660e64e3e8a8e215d4f6dd97b2371743c5 -doccontainersize 41740 -doccontainerchecksum 37b7f0e3b86494715763c0d230a076aeec1f41ad658432099871d26b933cd8d0e8e831064cbe462a31a30260004c6dfe9b6b4d555d281d909615910470a2b1ef +containerchecksum cbe1f8c6d64619f742003c01566d55b675724f5d03681ad53dc1f58ff7314af88000ba25ea74e4fcfb07ece6160be6976ac8e69a9a1b524f223f5b80f350deb0 +doccontainersize 41936 +doccontainerchecksum 14e1f266182ee0be47a7b3841435f79594cdeb959245e6226520e81248691beeaa73f365c1112ef3bb4eacf4ca77e55265bd0d13c190858144bdc3064fa88a59 docfiles size=17 texmf-dist/doc/man/man1/synctex.1 texmf-dist/doc/man/man1/synctex.man1.pdf @@ -284918,146 +293739,137 @@ docfiles size=17 name synctex.aarch64-linux category TLCore -revision 58149 +revision 66237 shortdesc aarch64-linux files of synctex -containersize 71160 -containerchecksum 104c568c84b6cbe7fe16c5303ff061292dd2c0c383d5947ed484670538cd2b822b632096a0053cfa6bbfc10836636ab24933330841f708ebe166e3254fe3bf17 +containersize 72628 +containerchecksum 39cce82cbc33199410426aa84f90124484e4a5da4540ad6941d3440ebdab22fdbcf5fada0c61858fe2e312eb683b0715e0c26ac174947b455cf73447d8e60f73 binfiles arch=aarch64-linux size=49 bin/aarch64-linux/synctex name synctex.amd64-freebsd category TLCore -revision 58156 +revision 65877 shortdesc amd64-freebsd files of synctex -containersize 77920 -containerchecksum 4cfe9547c5b36363903fc61907ea904330e2567d82b9e67380a529fa9c84b6f2932ec6c0f90de3659e49d93a1cdb0e37e5ec037d6c611fa49f5ee1a602f5444e -binfiles arch=amd64-freebsd size=51 +containersize 79476 +containerchecksum ed0a20d198b6ab6b06ca2ffc6d94bbf87bbfee04ecbc07fc2ffab4b84f58b1bdf576aa646b25cc4b9633fa06fdcfba3c61712d9ffe9f08529147f25edc654ddf +binfiles arch=amd64-freebsd size=52 bin/amd64-freebsd/synctex name synctex.amd64-netbsd category TLCore -revision 58145 +revision 66083 shortdesc amd64-netbsd files of synctex -containersize 65416 -containerchecksum a9d4bb5a25aab4ff11d5997f4fe2eb18d0e35c87a644ad02e4481d45f9a00027cd77fc26358ee6fc4243b5050417b11387175b883fa58612d4d1fc94d2cc2808 -binfiles arch=amd64-netbsd size=59 +containersize 76480 +containerchecksum c277c4e0939a28799a9461580123eee633bb94503d5fef3aac321143131ca651259f4771dcbe33b58b655af1724bece0e89046890755c824f6948631545ed024 +binfiles arch=amd64-netbsd size=64 bin/amd64-netbsd/synctex name synctex.armhf-linux category TLCore -revision 58180 +revision 66237 shortdesc armhf-linux files of synctex -containersize 61672 -containerchecksum 7ee1c40aea7730a32c4e6d1120116abc8d8e9bf4d809c947250af2fe2f96e6f76a6c98842be551a031f30e6cec5da72c4432c1f98c4e0986fc5dc8f0d042c15e -binfiles arch=armhf-linux size=40 +containersize 58768 +containerchecksum e092ea54e8e854d0a29001b0a7572fd735f993c3ecefeb1f9fe20f0fe1a48debc270aa8a4159c0a022bee16e0bd24fdd9d807b21831199b369cc792a3550207c +binfiles arch=armhf-linux size=39 bin/armhf-linux/synctex -name synctex.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of synctex -containersize 73136 -containerchecksum ee65a1eadb01f4098ed2a7a16ab3017b2428444f25cadce134ef42d8abe395b0c226c073fcb70b0c9e6d062c9b70fe1964fb3790a978a23c1332d5f3528975dd -binfiles arch=i386-cygwin size=45 - bin/i386-cygwin/synctex.exe - name synctex.i386-freebsd category TLCore -revision 58156 +revision 65877 shortdesc i386-freebsd files of synctex -containersize 72768 -containerchecksum 744502e1809521f9d327310f44e93558df402b4193a296ab54ef7f4e2e44e8a94334e702a7f1958c39ffa810d8049602727d5a14f522e3e3fb6b7555460397c8 +containersize 70588 +containerchecksum 5ed3cb78126e950a5515c9923ece68c46614b8a53709a391b0fe9f3ed6bbee7570b977037a0d8d37dada79caca02534c29f58230706cf2bcb186a9a7f1c2de00 binfiles arch=i386-freebsd size=45 bin/i386-freebsd/synctex name synctex.i386-linux category TLCore -revision 58136 +revision 66084 shortdesc i386-linux files of synctex -containersize 76204 -containerchecksum 8766137daeec796d6d1669d65b79762f467db39a9856c60cc67a5875fa621d44bac48cf4db475a516bc923a91f95c93535c89d18f423615e91b07d39c276e99a +containersize 74440 +containerchecksum 6f01f1637698524b73229ab3a63f9d5b5d44574bf68ecd696989a9446bca723c1c67f88566d82b55aab8a215f94185c027b096a919ad5a959c3e8ed23575fa8f binfiles arch=i386-linux size=47 bin/i386-linux/synctex name synctex.i386-netbsd category TLCore -revision 58145 +revision 66083 shortdesc i386-netbsd files of synctex -containersize 62240 -containerchecksum 415f6a3cdbfd690ca43fb3ef2db24dfd08f0464b0b98a57e9d2022f528fde8cce54a46f9180bc049acf739e70f1a14aa1f8c5738aee3cab0b7e299950246fa30 -binfiles arch=i386-netbsd size=52 +containersize 64648 +containerchecksum f5840bcce86f67c02288f45f1f574215afd07ebd79358f6791ed5874f06503d0bd6d8c9d71162f49cdb3ff02324fe5ea75c7a71d19228008cb992e6538e1eb9b +binfiles arch=i386-netbsd size=53 bin/i386-netbsd/synctex name synctex.i386-solaris category TLCore -revision 58156 +revision 65877 shortdesc i386-solaris files of synctex -containersize 69152 -containerchecksum 2bdc44fd80073772206fe366ec2a66e6bc807e06a427964157ba488e2e38be12de85734197f508ebecd0e33a1074dc9da8fa525be3f3f37e1ad8332923d67d52 +containersize 66584 +containerchecksum b39f5f84d7bdb459241715e9ccac456b3bcfca3bdcb62e973147b724a6d817de6a2679fbe8e815aab994733670ecc561eb7d3cee6142a5b482189a5774a1fa8e binfiles arch=i386-solaris size=39 bin/i386-solaris/synctex name synctex.universal-darwin category TLCore -revision 58157 +revision 65895 shortdesc universal-darwin files of synctex -containersize 133616 -containerchecksum 5be0a5394ede820e1f666d78db5801522c762a76372bda6ad97842fbf4e01f1fe321f6aa7e8aa01ac791190236d50a6710a4dfd00bd1c1588a9b9caff2906254 -binfiles arch=universal-darwin size=115 +containersize 135872 +containerchecksum 0e770728a81d4cbd87f106613b2625574be936e6fb72f554e70aa203c2fdd02145e546441804be7398bd6242e85334ab595eafdc76ae8555f624e077da45f1cb +binfiles arch=universal-darwin size=119 bin/universal-darwin/synctex -name synctex.win32 +name synctex.windows category TLCore -revision 58783 -shortdesc win32 files of synctex -containersize 133472 -containerchecksum 892e36cea18af5f6cd9bdfd4ccc8be9a0564e6a16dab45df478674670e62823db235a0d1037c762215a2d2b225a5230f57264e447c0116c4539173a734654c05 -binfiles arch=win32 size=74 - bin/win32/synctex.exe +revision 66111 +shortdesc windows files of synctex +containersize 175600 +containerchecksum 886ea5613db8a1a2165bbef60d677546db92a963993b7b8f1a9e617c937c3dc9c734d7e1ad36eb77dc38da6352d8b930758783bbd955d6bdba693a144c84612a +binfiles arch=windows size=109 + bin/windows/synctex.exe name synctex.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of synctex -containersize 72148 -containerchecksum e932034b9b225cb0bc9cfbd296234c7c06303129eabdaea30f07f5bc519c71826a11a463e85b6b1298c5d100d0bdd658299e1285e87951b4b098d5edaf05516e +containersize 73920 +containerchecksum 13a39816389b7881b067ccb50e73b2245b14e81831ba23c773e5619dd5c6c2a6022d5ee440b29735a4871f2a619fe34ff1c3d8719cdb0311e96f61ca6b226f2f binfiles arch=x86_64-cygwin size=44 bin/x86_64-cygwin/synctex.exe name synctex.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of synctex -containersize 67524 -containerchecksum 89986c63a2f1e574944deab48443e0fabadf14585f9c4ac548194b25387ec82f6a854b7c1216c2c5ca3912e641bdf7eeeae26649aaaf273afb96473cf99a17bc -binfiles arch=x86_64-darwinlegacy size=42 +containersize 69204 +containerchecksum 5ddd5f52d34a13eeec949b7909bf1a036af846109d031bb387126d8dd5dd5a6b3fd966cb3a62a4bcd9aeb5b1c5c2c33a28b37732488efc0943a35755ab91f3e1 +binfiles arch=x86_64-darwinlegacy size=43 bin/x86_64-darwinlegacy/synctex name synctex.x86_64-linux category TLCore -revision 58136 +revision 66084 shortdesc x86_64-linux files of synctex -containersize 72812 -containerchecksum 5dad93eb9940981b98ee72ccb08f051b8ead5c9d1c12ffb66264a648221a323cf67f80d1821d9d24683fd766e3dd8ec0cf86e59ef3b75f69ff185a81c5d71739 -binfiles arch=x86_64-linux size=46 +containersize 75780 +containerchecksum 0fed0f04f751ea2e7b2982aa0d41d2544e594691473aa6995963fca693f66c843fef7b06a8b3a8ca58a5bb2226f08943f241af6edfcb40b71a329ad58345e584 +binfiles arch=x86_64-linux size=47 bin/x86_64-linux/synctex name synctex.x86_64-linuxmusl category TLCore -revision 58136 +revision 65877 shortdesc x86_64-linuxmusl files of synctex -containersize 74536 -containerchecksum db172eeeb64e76c5922e7afbf8e571793c7066a43d2d63ed48f8cbef0ca9febc3e5ca7fe23341fc6d2056616400a474c4dc3fbda7044a658fd49a91823994993 +containersize 75808 +containerchecksum 62e1ddfd965020756ab4a6a24fcb5c4ce414a3d45732d08f0c7823ffcc21d9833b5338a155acc8b5e37b540aac820a9b0a96eef2470708eaf6510bb4eee1ab60 binfiles arch=x86_64-linuxmusl size=48 bin/x86_64-linuxmusl/synctex name synctex.x86_64-solaris category TLCore -revision 58156 +revision 65877 shortdesc x86_64-solaris files of synctex -containersize 75080 -containerchecksum b5f2d984686cb3d916d3383b023aaab567896c42e68f03114e71b3b3ec8cdb03e41ae1a73ec604c31c27becec055ed5120b9c05da3e121d1e78eea2dfb3138ff -binfiles arch=x86_64-solaris size=46 +containersize 76580 +containerchecksum e8f862923e403a3a98d515209456c401b6ee5a734b071c4fcff72cc3ba1d83ee14d5cfacf4ec811e5089e96561dc7ca9a1ea692007df8f0b937a822902c49946 +binfiles arch=x86_64-solaris size=47 bin/x86_64-solaris/synctex name synproof @@ -285281,10 +294093,10 @@ catalogue-topics ps-manip name t1utils.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of t1utils -containersize 40048 -containerchecksum e8e429cb7bdc2ea3c16a33099d69f6cbb184404965cee73a21c8834a1442c52d9d82278658abf315b54066ef7943ee479220b1c0f0c0d1347aed633514d7ec8a +containersize 40004 +containerchecksum b56597060601543cd000ac29c1efde6bf08770e9570f1f789009504720e39381cbef8dbe2d4333da06f439ae500333ce1ddbb0b83542e765fed86ab815c16c95 binfiles arch=aarch64-linux size=64 bin/aarch64-linux/t1ascii bin/aarch64-linux/t1asm @@ -285295,10 +294107,10 @@ binfiles arch=aarch64-linux size=64 name t1utils.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of t1utils -containersize 51700 -containerchecksum a606c1764479eccb7d31b4a01a2fd5e58698404b2af6d9c6ec66c50878f25a3aea13015ffa1e57cbdce6fbaf1a4e2c39668bf8e8b2a3fbd920c677263a6ed1c5 +containersize 53244 +containerchecksum a600836169e46d9239863d558a7a6365fb535b9db646f31a881a791ef36a11dfb1c6d85da7af5671267a7436537218333a40b760babacd8ca2e81e99e6d60b54 binfiles arch=amd64-freebsd size=82 bin/amd64-freebsd/t1ascii bin/amd64-freebsd/t1asm @@ -285309,10 +294121,10 @@ binfiles arch=amd64-freebsd size=82 name t1utils.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of t1utils -containersize 40032 -containerchecksum c07da2460c0f53697b8ee9649d830d6e3aa457444b080f463fb08856bc0752195fa225d5c59970ca1231e7e101eb35ace34f7d6c8bafeb0277ea53e5cdb5d13b +containersize 40024 +containerchecksum 539d330eb94619f4750000f56d7dbe8660215800947aba4e886867472a3bc8615f0c023d0fec60ee870ae6bb52e1581d4fafe81bc47a26dfba921dfa54ee53b1 binfiles arch=amd64-netbsd size=82 bin/amd64-netbsd/t1ascii bin/amd64-netbsd/t1asm @@ -285323,10 +294135,10 @@ binfiles arch=amd64-netbsd size=82 name t1utils.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of t1utils -containersize 32248 -containerchecksum d0119e69f7bf30ebd09fc2dc322f8101e753f00b3941f14bf3efc3384a077edb54aa9e76e48fc50cc17425151e9e8dc89470ba1819cd16aa27321c103f66605f +containersize 32220 +containerchecksum 1835a0070ab235a1da745c446a30a7637c56301dd18537370e938f6730da35ddb5a9a994481b70df8840f0b3894dc3ed7623306fcc6dfeceb02862173bd48c6b binfiles arch=armhf-linux size=53 bin/armhf-linux/t1ascii bin/armhf-linux/t1asm @@ -285335,27 +294147,13 @@ binfiles arch=armhf-linux size=53 bin/armhf-linux/t1mac bin/armhf-linux/t1unmac -name t1utils.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of t1utils -containersize 36388 -containerchecksum badd004d541acd5a6280d52e49020cc4b19e9cf397378a65bf7d9d1eca46e840541b5961c513700cdb31371f1de2d7c6ca2fb7302a821cfbb39d71e0ea240644 -binfiles arch=i386-cygwin size=64 - bin/i386-cygwin/t1ascii.exe - bin/i386-cygwin/t1asm.exe - bin/i386-cygwin/t1binary.exe - bin/i386-cygwin/t1disasm.exe - bin/i386-cygwin/t1mac.exe - bin/i386-cygwin/t1unmac.exe - name t1utils.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of t1utils -containersize 46980 -containerchecksum ff6762978ab7643860a7ac5fae3c8d3007fe929ee31acf5785f779fcef43508227b41fd88c153a448e311a4418119e271edfc18eb0c60a76dcc6d227e72567cd -binfiles arch=i386-freebsd size=70 +containersize 50576 +containerchecksum bec55a417de61dccd61f0becbd5e2c54a22a96e5721177ba9b2949cf6d477728a3b9bb148a684f37cb91bf21e3cf1e3d6325359af21bebeb58ffdc2e18bdb698 +binfiles arch=i386-freebsd size=69 bin/i386-freebsd/t1ascii bin/i386-freebsd/t1asm bin/i386-freebsd/t1binary @@ -285365,11 +294163,11 @@ binfiles arch=i386-freebsd size=70 name t1utils.i386-linux category TLCore -revision 57878 +revision 62210 shortdesc i386-linux files of t1utils -containersize 41472 -containerchecksum 763ebd4fc0cea90f3d03a31630121510b552e966cbb8f845af0b6f382c2b90f529f496d135dce78c0db0a6f185bb79cf9025264f845901006608c9519c9b087a -binfiles arch=i386-linux size=59 +containersize 42160 +containerchecksum 9c1bca68b6e711e0ed59985cd8439ed7298fb3beeed3d7557b0521fd9aa4f9d1ba9a442fe48600b57881753bb2c25166421292202f8028ac24b1c8b01e44d63e +binfiles arch=i386-linux size=65 bin/i386-linux/t1ascii bin/i386-linux/t1asm bin/i386-linux/t1binary @@ -285379,10 +294177,10 @@ binfiles arch=i386-linux size=59 name t1utils.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of t1utils -containersize 36848 -containerchecksum d1e4836136b1a831d86c0bbea2ac325a385b29fbc076e8b963508131e84858b8172230c6788ab40b55d1c6baac4201c9cd03227f19581dc501f31af7d1f19009 +containersize 36892 +containerchecksum 6b0fce368599b670fe1d9c518055122b5d494aa5f2b919afa65f9fe50ea30d40200a6e9f6afd0528f5a6abd2962b0115dae377c61421ac87b3dd6023257ff17a binfiles arch=i386-netbsd size=69 bin/i386-netbsd/t1ascii bin/i386-netbsd/t1asm @@ -285407,11 +294205,11 @@ binfiles arch=i386-solaris size=58 name t1utils.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of t1utils -containersize 104728 -containerchecksum cf043510abe5f36be6983df3f7c3aaa1883f1152ecbf31335a138eead952b95ee5b595124ca5de78c3525e122789f90d7deb4f65caf88ab3177f7fe8325da052 -binfiles arch=universal-darwin size=276 +containersize 105820 +containerchecksum 954022439cf57c35ecf3a7fc40f38afc2e6cc96f321fb99220e862ba89ddd8f4aed8d73e5aadf36f3e1a206028f4d1f4ec65c9a33b0209058f0ca7b0685d1804 +binfiles arch=universal-darwin size=296 bin/universal-darwin/t1ascii bin/universal-darwin/t1asm bin/universal-darwin/t1binary @@ -285419,26 +294217,26 @@ binfiles arch=universal-darwin size=276 bin/universal-darwin/t1mac bin/universal-darwin/t1unmac -name t1utils.win32 +name t1utils.windows category TLCore -revision 57883 -shortdesc win32 files of t1utils -containersize 35772 -containerchecksum 3beee05d06190fa6110d5d72a6a2c638f25303fcd5b69f4345014acca92e838923f544886854c032d2dacbc6fefea31540a4e8141c2552163278ef365db069b3 -binfiles arch=win32 size=47 - bin/win32/t1ascii.exe - bin/win32/t1asm.exe - bin/win32/t1binary.exe - bin/win32/t1disasm.exe - bin/win32/t1mac.exe - bin/win32/t1unmac.exe +revision 65891 +shortdesc windows files of t1utils +containersize 41080 +containerchecksum 2cdcf55ea318ea960e87a86c5649bc5dfaa2e05921d2216470c0b9cf5dd526e00793322d205e7f2a4ddd9e72287a295335aeee98f6b416f6f999e6d94ca935ed +binfiles arch=windows size=53 + bin/windows/t1ascii.exe + bin/windows/t1asm.exe + bin/windows/t1binary.exe + bin/windows/t1disasm.exe + bin/windows/t1mac.exe + bin/windows/t1unmac.exe name t1utils.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of t1utils -containersize 36904 -containerchecksum f9cf91d7a7bfd2753d7cbc1a90c2669ac5905de0b02326452eff2f976ff646ed89d3719feba1d5b4b61e2b3ded28d8562770bc1df2efe25670937d7b691a4de6 +containersize 37392 +containerchecksum 41c1d27af9e726259e5ac50b4ebad4cca54589e7e35d059d8a9c6f7a89138338f4311f8d902c8dd27dbba2e8e69288607dcc00b531f445788a4b8f40ea68ee53 binfiles arch=x86_64-cygwin size=59 bin/x86_64-cygwin/t1ascii.exe bin/x86_64-cygwin/t1asm.exe @@ -285463,11 +294261,11 @@ binfiles arch=x86_64-darwinlegacy size=61 name t1utils.x86_64-linux category TLCore -revision 57878 +revision 62187 shortdesc x86_64-linux files of t1utils -containersize 42460 -containerchecksum 5444ab057c1a7b45e287bbd82b45152f40a593de58ead7ea17ed900cd19f5ea9792149f05cf06839439d853dd0c2d7fc167466f485ef79c8a985cb3621e32ca0 -binfiles arch=x86_64-linux size=64 +containersize 40216 +containerchecksum d046902669a53356ceffc4a4e9656702b730634e1c6cd3ebaf1269f3b4f9a3fee6653ed930c9e498c11ced3384cc3c47f2dd471044c21007a6e687109871d063 +binfiles arch=x86_64-linux size=69 bin/x86_64-linux/t1ascii bin/x86_64-linux/t1asm bin/x86_64-linux/t1binary @@ -285477,11 +294275,11 @@ binfiles arch=x86_64-linux size=64 name t1utils.x86_64-linuxmusl category TLCore -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of t1utils -containersize 43336 -containerchecksum 914236dc97746b893405ee03d6839fe5f977e776f41ceab5334cb1a8a5edf43f022a14ce2ea79371f9d5e07450f3bbbe3f4c0211577eda32e97ffadb5becc94c -binfiles arch=x86_64-linuxmusl size=66 +containersize 42596 +containerchecksum 4743f03906fd5c5ec7ee0d232a0d8d641a05093d4a24cba5b9d2f7c961f9e67a5b2f209ca1d657a43a47ac7e8c23c474f7aabe8bedbcbf5fe4b33b76e1459946 +binfiles arch=x86_64-linuxmusl size=65 bin/x86_64-linuxmusl/t1ascii bin/x86_64-linuxmusl/t1asm bin/x86_64-linuxmusl/t1binary @@ -285629,6 +294427,35 @@ catalogue-ctan /macros/latex/contrib/t2 catalogue-license lppl catalogue-topics fontenc cyrillic +name tabbing +category Package +revision 59715 +shortdesc Tabbing with accented letters +relocated 1 +longdesc By default, some of the tabbing environment's commands clash +longdesc with default accent commands; LaTeX provides the odd commands +longdesc \a', etc., to deal with the clash. The package offers a variant +longdesc of the tabbing environment which does not create this +longdesc difficulty, so that users need not learn two sets of accent +longdesc commands. +containersize 1336 +containerchecksum dcb4bf112afc6a2221030ee7cf0f0b3043dd12a178195ba57afd10702b3efd65948d58607334dd9445270cf69862011d97b72a0f8ca5868748174b1462988132 +doccontainersize 216508 +doccontainerchecksum e056f857e62c1fe3f6b0183c0929e617525586068c62beee604b904695274d4c271d4b973a8a8c9b046792227df389a61591b528a8a4c1cb5c9916618206de48 +docfiles size=58 + RELOC/doc/latex/tabbing/00readme + RELOC/doc/latex/tabbing/Tabbing.pdf details="Package documentation (English)" language="en" +srccontainersize 3736 +srccontainerchecksum 7ed54e677b3dbd8e10e85e84c69791339fefc223a753164c0e9aa8c47301ded6c0737cf62b25cd9d3b152eb63bc32406d9a8a86a620b0e8e00d562ee795f6aa8 +srcfiles size=3 + RELOC/source/latex/tabbing/Tabbing.dtx + RELOC/source/latex/tabbing/Tabbing.ins +runfiles size=1 + RELOC/tex/latex/tabbing/Tabbing.sty +catalogue-ctan /macros/latex/contrib/Tabbing +catalogue-license lppl1 +catalogue-topics alignment macro-supp + name tabfigures category Package revision 25202 @@ -285742,7 +294569,7 @@ catalogue-version 1.1c name tableof category Package -revision 48815 +revision 59837 shortdesc Tagging tables of contents relocated 1 longdesc The package provides the commands to flag chapters or sections @@ -285754,53 +294581,24 @@ longdesc document that uses a class where \tableofcontents may only be longdesc used once, the command longdesc \tableoftaggedcontents{req1,req2,...}{excl1,excl2,...} may be longdesc used to provide several tables. -containersize 2528 -containerchecksum 3eb5dd3a3399825a85280c79c9f013dc9615a534e475d64777ec84924c9257aa930b7fe677a85c32b158b4099d5b61f306ea54f610fa1c9db42764fbf5b683da -doccontainersize 56988 -doccontainerchecksum 609011dc53d37fbad2abf84531ab99d8f60b636222debdf0466b33ed85964326b688a7e5d957500a970e1e974d5fbcf1dfc198e146360b6d43b58f6f3d67c845 -docfiles size=15 +containersize 2512 +containerchecksum e577e1e8df3fd1ad12a2cbfcd05ffb1184fcd3555124986481c62a33ed7f5789bf1858a1370888887d2aae0d2a508a891e5e67bb0a4a1d9a924b3817c2d9e234 +doccontainersize 60652 +doccontainerchecksum bd568b16c6e708e4d0ee9810ba97f8363c842c22156dc90a257fdb0319eb49cab4f6ac9faee0700687a8a6ee54ea02b9660635cfeddd5275365d9c7f38218784 +docfiles size=18 RELOC/doc/latex/tableof/README.md details="Readme" RELOC/doc/latex/tableof/tableof.pdf details="Package documentation" -srccontainersize 10884 -srccontainerchecksum b55b6834b7dcc3ba83f3e8620ffa9ee66b0a6962a4c1b95d7b74ac164300334db89f432af7407268d00190e79333fb3e305074feaf116344957a5a986c842d17 + RELOC/doc/latex/tableof/tableoftest.tex +srccontainersize 11388 +srccontainerchecksum 5086e314c042757a5e90bcbde9fdbcedeee689f89524df43ab390eefc7bf10eea6a9c5bc83b359b00c3ae351fa10f8e8a64b356adb8e7131d48568e06a8ed0d3 srcfiles size=10 RELOC/source/latex/tableof/tableof.dtx - RELOC/source/latex/tableof/tableof.ins -runfiles size=2 +runfiles size=3 RELOC/tex/latex/tableof/tableof.sty catalogue-ctan /macros/latex/contrib/tableof catalogue-license lppl1.3 catalogue-topics toc-etc -catalogue-version 1.4b - -name tablestyles -category Package -revision 34495 -shortdesc Styles for tables with new commands -relocated 1 -longdesc This package tries to introduce a separation of text and style -longdesc in tables by defining reusable table commands and a simple -longdesc interface to define a style for a table. Furthermore the -longdesc package defines commonly used column styles and a bugfix -longdesc command for lists in tables. -containersize 2112 -containerchecksum 429d9e66e9dcc06814e75b08d1fcc9630de6cc614337c73fdc06588479e47e7df72dfab33a91fb7cb230f9e1ed0bade3d8e56fa423c1f2fcf0bac6f246620069 -doccontainersize 452888 -doccontainerchecksum 43c5dedd804a0aec1b7ad289d8113bca94d6fac7e9b5b8628880e2d7d7e4f0e29cde12864747cfcdf24ceeee0e143652c2acb2b448bfce0630b6915e2bed237c -docfiles size=113 - RELOC/doc/latex/tablestyles/README details="Readme" - RELOC/doc/latex/tablestyles/tablestyles.pdf details="Package documentation" -srccontainersize 9872 -srccontainerchecksum 26b5e4b276a202ba2b351287ce310b52a256659c55f88f68259ec358636c117d36dd8834542d385450c531d4db1d5e42e053a11e2a9c21c43fc72ce38c453072 -srcfiles size=12 - RELOC/source/latex/tablestyles/tablestyles.dtx - RELOC/source/latex/tablestyles/tablestyles.ins -runfiles size=2 - RELOC/tex/latex/tablestyles/tablestyles.sty -catalogue-ctan /macros/latex/contrib/tablestyles -catalogue-license lppl1.3 -catalogue-topics table -catalogue-version 0.1 +catalogue-version 1.4c name tablists category Package @@ -286107,7 +294905,7 @@ catalogue-version 1.4 name tabu category Package -revision 56615 +revision 61719 shortdesc Flexible LaTeX tabulars relocated 1 longdesc The package provides an environment, tabu, which will make any @@ -286131,21 +294929,20 @@ longdesc column type indication (p, m and b). \begin{tabu} to longdesc specifies a target width, and \begin{tabu} spread longdesc enlarges the environment's "natural" width. depend varwidth -containersize 23896 -containerchecksum cee6894fac19a98293402b714cc52eaf8ec0b9965a8e9ab9f5125388a2e4709e5d33063286eac9e45a3470f551d1aeeb41d09623b5dddd6563c1c462c2582ba3 -doccontainersize 1458872 -doccontainerchecksum 9e10613a8ca8b29d61ab5a394ece8e25e0e8abea4b7a70b01382935650c86e9554712635c78f3b097afc5f9560cef2fceb984b383826e206233c28144f332c2f +containersize 23900 +containerchecksum b40dc1e91084912df03175a6529223c6f24ae3c0ec77cfb8f1f8625816ea78c044c8f01f1b473e84696421d6772d9201fa4b59aa93e6f014b73598d16c09a6cd +doccontainersize 1458868 +doccontainerchecksum 5ef0a71d643bf5069a622aa8c807bf87db7445caab1f17b5202ee25ddab5368e94e796eb16de4fb183f294cedc232d48cbdba68f45d2451e01a2483d6869822d docfiles size=618 RELOC/doc/latex/tabu/README.md details="Readme" RELOC/doc/latex/tabu/tabu.pdf details="Package documentation" -srccontainersize 76076 -srccontainerchecksum 7b88f0fee52dead2555b4dcc11699ff167207f210f663faccccc1f951e40a53a5a572840c43070d4f86bd183c5e0d9e456c548013160a39264bcda10e71ca49d +srccontainersize 76080 +srccontainerchecksum 7c80ee8d25933e5d1c579357cffdf7177b0a419a847ca1e671cb1dda19fbde9b3680658df6b814d5d92953dd13eeee5100a5aa2fdb5fec3cbc1e213545cb3a78 srcfiles size=86 RELOC/source/latex/tabu/tabu.dtx runfiles size=29 RELOC/tex/latex/tabu/tabu.sty -catalogue-contact-bugs https://github.com/tabu-fixed/tabu/issues -catalogue-contact-repository https://github.com/tabu-fixed/tabu +catalogue-contact-repository https://github.com/tabu-issues-for-future-maintainer/tabu catalogue-ctan /macros/latex/contrib/tabu catalogue-license lppl1.3 catalogue-topics table table-long @@ -286234,6 +295031,44 @@ catalogue-license lppl catalogue-topics table catalogue-version 0.1 +name tabularray +category Package +revision 66276 +shortdesc Typeset tabulars and arrays with LaTeX3 +relocated 1 +longdesc LaTeX tables are implemented using TeX commands such as +longdesc \halign, \noalign, \span, and \omit. In order to implement new +longdesc features, many macro packages have modified the inner table +longdesc commands inside LaTeX. This makes package code complicated, +longdesc difficult to maintain, and often conflicts with each other. At +longdesc present, the LaTeX3 programming layer is basically mature. This +longdesc tabularray package will discard the old \halign commands and +longdesc directly use LaTeX3 functions to parse the table, and then +longdesc typeset the entire table. Under the premise of being compatible +longdesc with the basic syntax of LaTeX2 tables, this macro package will +longdesc completely separate the content and style of the table, and the +longdesc style of the table can be completely set in keyval way. +containersize 36208 +containerchecksum 49171a748b9fa046d874bfb2aa44d2696120fae78c55314853090163228d6484507c281f65c7ddb1ba952b22c14d91e3904e779116adea69166322b91188b980 +doccontainersize 725780 +doccontainerchecksum 98d37bdd677cac76657848d0ef5f638f77c44017c6320bb4122696672dfbfd459afc3c2ef44431da7340d9831c319998f88390300ce2f53a355239203390a448 +docfiles size=243 + RELOC/doc/latex/tabularray/README.txt details="Readme" + RELOC/doc/latex/tabularray/tabularray.pdf details="Package documentation" + RELOC/doc/latex/tabularray/tabularray.tex +runfiles size=119 + RELOC/tex/latex/tabularray/tabularray-2021.sty + RELOC/tex/latex/tabularray/tabularray.sty +catalogue-contact-announce https://github.com/lvjr/tabularray/wiki/ChangeLog +catalogue-contact-bugs https://github.com/lvjr/tabularray/issues +catalogue-contact-home https://github.com/lvjr/tabularray/wiki +catalogue-contact-repository https://github.com/lvjr/tabularray +catalogue-contact-support https://topanswers.xyz/tex +catalogue-ctan /macros/latex/contrib/tabularray +catalogue-license lppl1.3c +catalogue-topics table table-long expl3 +catalogue-version 2023A + name tabulary category Package revision 34368 @@ -286267,42 +295102,39 @@ catalogue-version 0.10 name tabvar category Package -revision 28908 +revision 63921 shortdesc Typesetting tables showing variations of functions relocated 1 longdesc This LaTeX package is meant to ease the typesetting of tables longdesc showing variations of functions as they are used in France. execute addMap tabvar.map -containersize 8888 -containerchecksum c03d57d066a5955ffe24900f97de82f9bd96d8ebc20ff7b9c11c1e5a858d8f4a50b171f687e041d629a7dbf43da708bd03aa0405419c9879b9a5bddf23021cb7 -doccontainersize 590652 -doccontainerchecksum 700e42e3e8d37e1b4e11af90f8f76bc2c3234984aa39b229138b5bd86418797bb8102b4624a43d3ca1738a7f848f1e09164c077d7224819250c7e034c10b4103 -docfiles size=151 +containersize 8484 +containerchecksum 255b93a8eda59386b798e85741422c529903acfc0d06cb77f4b128c2e32e4a68ef32097888e921397c3e22434b581de30bb79c8cc6dc8357eaef94f26e6da04f +doccontainersize 619144 +doccontainerchecksum 117158275aef7f9e5ee3e423e65d9ada5c2f6d28b660941a3d5d80ebb9716f4e35658e070911280e375b29290e2056ad3521acefa1eabfeda95ca9051d64a0c4 +docfiles size=162 RELOC/doc/latex/tabvar/README details="Readme" RELOC/doc/latex/tabvar/demo.pdf details="Package demo" RELOC/doc/latex/tabvar/demo.tex RELOC/doc/latex/tabvar/tabvar.pdf details="Package documentation (French)" language="fr" -srccontainersize 11240 -srccontainerchecksum 2f20de4b18e444112088d089c92675f3f5ed4f93c1e630b708e3e88a777aa38e2c84d98ec0605a7e446cfc7a99c346190b559e72f4735c7d776151e76a38a987 +srccontainersize 11084 +srccontainerchecksum 48fd599f93d6a5310ebb7dab44aedc9ac017878bbd85d2f1bdb21a676ba95ce717be96f8a26f24d67c4ac4530d233fa8b9842f13fb124a8cc8ce3badf44c6bb8 srcfiles size=10 RELOC/source/latex/tabvar/tabvar.dtx RELOC/source/latex/tabvar/tabvar.ins -runfiles size=13 +runfiles size=10 RELOC/fonts/afm/public/tabvar/tabvar.afm RELOC/fonts/map/dvips/tabvar/tabvar.map RELOC/fonts/tfm/public/tabvar/tabvar.tfm RELOC/fonts/type1/public/tabvar/tabvar.pfb RELOC/metapost/tabvar/tabvar.mp - RELOC/tex/latex/tabvar/tabvar.1 - RELOC/tex/latex/tabvar/tabvar.2 - RELOC/tex/latex/tabvar/tabvar.3 RELOC/tex/latex/tabvar/tabvar.cfg RELOC/tex/latex/tabvar/tabvar.sty catalogue-also tablor tableaux tableauvariations tkz-tab catalogue-ctan /macros/latex/contrib/tabvar catalogue-license lppl1.3 catalogue-topics maths-tabvar -catalogue-version 1.7 +catalogue-version 1.8 name tagging category Package @@ -286361,34 +295193,38 @@ catalogue-version 1.1 name tagpdf category Package -revision 57954 +revision 66461 shortdesc Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX relocated 1 longdesc The package offers tools to experiment with tagging and -longdesc accessibility using pdfLaTeX and LuaTaX. It is not intended for -longdesc production use, but allows the user to try out how difficult it -longdesc is to tag some structures. -containersize 21048 -containerchecksum ed62165f65bbcb159d727a41a02473ba32523f2d8f256a7ada5634fab4cfb1d037eff900dbbf271c7efbad78b306c71a9104dad1fb47662fee85f850afcaa450 -doccontainersize 596684 -doccontainerchecksum 3630a123d98ebe9efd15729beb88e5a7d6c92fa485d416d2023a9d732feaf54548649551a9b428ac1fa25824cbbbfcbdd11b5920509985847a0e8f922f433580 -docfiles size=860 +longdesc accessibility using pdfLaTeX and LuaTeX. It isn't meant for +longdesc production but allows the user to try out how difficult it is +longdesc to tag some structures; to try out how much tagging is really +longdesc needed; to test what else is needed so that a pdf works e.g. +longdesc with a screen reader. Its goal is to get a feeling for what has +longdesc to be done, which kernel changes are needed, how packages +longdesc should be adapted. +containersize 33384 +containerchecksum 9ee8a21fe711a46bbcb7606c13ef430753353d08cbc3cb5ae03609dece6b30333f14e3d50b9e370ad715af6cb34502b223ca6e7d691ca333f11b1c613ce8926a +doccontainersize 2069860 +doccontainerchecksum eec1f37441ad7dab6ef8fbbb963c5b42cf602658a87be267a46e435088f769b454db09653ad338aaf2425ae1dcc8902de27638aee4b0a9c87460bd93aa97cf61 +docfiles size=758 RELOC/doc/latex/tagpdf/README.md details="Readme" + RELOC/doc/latex/tagpdf/acrobat.png RELOC/doc/latex/tagpdf/ex-AF-file.pdf RELOC/doc/latex/tagpdf/ex-AF-file.tex RELOC/doc/latex/tagpdf/ex-alt-actualtext-luatex.pdf RELOC/doc/latex/tagpdf/ex-alt-actualtext.tex RELOC/doc/latex/tagpdf/ex-attribute-luatex.pdf - RELOC/doc/latex/tagpdf/ex-attribute.pdf RELOC/doc/latex/tagpdf/ex-attribute.tex RELOC/doc/latex/tagpdf/ex-formula-problem-luatex.pdf RELOC/doc/latex/tagpdf/ex-formula-problem.tex - RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.pdf - RELOC/doc/latex/tagpdf/ex-mc-manual-para-split.tex + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split-obsolete.pdf + RELOC/doc/latex/tagpdf/ex-mc-manual-para-split-obsolete.tex RELOC/doc/latex/tagpdf/ex-patch-list-luatex.pdf + RELOC/doc/latex/tagpdf/ex-patch-list-obsolete.tex RELOC/doc/latex/tagpdf/ex-patch-list.tex RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma-luatex.pdf - RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.pdf RELOC/doc/latex/tagpdf/ex-patch-sectioning-koma.tex RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.pdf RELOC/doc/latex/tagpdf/ex-patch-sectioning-memoir.tex @@ -286396,52 +295232,58 @@ docfiles size=860 RELOC/doc/latex/tagpdf/ex-softhyphen.tex RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.pdf RELOC/doc/latex/tagpdf/ex-spaceglyph-listings.tex - RELOC/doc/latex/tagpdf/ex-structure-luatex.pdf - RELOC/doc/latex/tagpdf/ex-structure.tex + RELOC/doc/latex/tagpdf/ex-structure-obsolete.tex RELOC/doc/latex/tagpdf/ex-tagpdf-template.pdf RELOC/doc/latex/tagpdf/ex-tagpdf-template.tex - RELOC/doc/latex/tagpdf/example-input-file.tex + RELOC/doc/latex/tagpdf/global-ex.png RELOC/doc/latex/tagpdf/link-figure-input.tex RELOC/doc/latex/tagpdf/pac3.PNG + RELOC/doc/latex/tagpdf/tagpdf-code.pdf + RELOC/doc/latex/tagpdf/tagpdf-code.tex RELOC/doc/latex/tagpdf/tagpdf.bib RELOC/doc/latex/tagpdf/tagpdf.pdf details="Package documentation" RELOC/doc/latex/tagpdf/tagpdf.tex -srccontainersize 22772 -srccontainerchecksum 9bef63a003833525c6b1a6e983ba53f362eb818b0ddc1006a0eda80a27ee46a1ca90b321bbce1e5cc83d67493f74db04d63f6d50b90863915b574c1ab0da7300 -srcfiles size=31 +srccontainersize 62096 +srccontainerchecksum 09cf569ec326bdb2395e7e0e8b8bde3b3c046ac1803287ee4ec718982f7eee828ce1ecb4a2bd0312a100630e1341ac33cca62b22e00abbe4c7a68b5e0d5501ad +srcfiles size=91 RELOC/source/latex/tagpdf/tagpdf-backend.dtx RELOC/source/latex/tagpdf/tagpdf-checks.dtx - RELOC/source/latex/tagpdf/tagpdf-mc.dtx + RELOC/source/latex/tagpdf/tagpdf-data.dtx + RELOC/source/latex/tagpdf/tagpdf-mc-generic.dtx + RELOC/source/latex/tagpdf/tagpdf-mc-luacode.dtx + RELOC/source/latex/tagpdf/tagpdf-mc-shared.dtx RELOC/source/latex/tagpdf/tagpdf-roles.dtx RELOC/source/latex/tagpdf/tagpdf-space.dtx RELOC/source/latex/tagpdf/tagpdf-struct.dtx RELOC/source/latex/tagpdf/tagpdf-tree.dtx + RELOC/source/latex/tagpdf/tagpdf-user.dtx RELOC/source/latex/tagpdf/tagpdf.dtx RELOC/source/latex/tagpdf/tagpdf.ins -runfiles size=35 - RELOC/tex/latex/tagpdf/tagpdf-attr-code.sty - RELOC/tex/latex/tagpdf/tagpdf-checks-code.sty - RELOC/tex/latex/tagpdf/tagpdf-deprecated.def +runfiles size=62 + RELOC/tex/latex/tagpdf/tagpdf-base.sty + RELOC/tex/latex/tagpdf/tagpdf-debug-generic.sty + RELOC/tex/latex/tagpdf/tagpdf-debug-lua.sty + RELOC/tex/latex/tagpdf/tagpdf-debug.sty RELOC/tex/latex/tagpdf/tagpdf-luatex.def RELOC/tex/latex/tagpdf/tagpdf-mc-code-generic.sty RELOC/tex/latex/tagpdf/tagpdf-mc-code-lua.sty - RELOC/tex/latex/tagpdf/tagpdf-mc-code-shared.sty - RELOC/tex/latex/tagpdf/tagpdf-pdftex.def - RELOC/tex/latex/tagpdf/tagpdf-roles-code.sty - RELOC/tex/latex/tagpdf/tagpdf-space-code.sty - RELOC/tex/latex/tagpdf/tagpdf-struct-code.sty - RELOC/tex/latex/tagpdf/tagpdf-tree-code.sty - RELOC/tex/latex/tagpdf/tagpdf-user.sty + RELOC/tex/latex/tagpdf/tagpdf-ns-latex-book.def + RELOC/tex/latex/tagpdf/tagpdf-ns-latex-inline.def + RELOC/tex/latex/tagpdf/tagpdf-ns-latex.def + RELOC/tex/latex/tagpdf/tagpdf-ns-mathml.def + RELOC/tex/latex/tagpdf/tagpdf-ns-pdf.def + RELOC/tex/latex/tagpdf/tagpdf-ns-pdf2.def + RELOC/tex/latex/tagpdf/tagpdf-parent-child-2.csv + RELOC/tex/latex/tagpdf/tagpdf-parent-child.csv RELOC/tex/latex/tagpdf/tagpdf.lua RELOC/tex/latex/tagpdf/tagpdf.sty RELOC/tex/latex/tagpdf/tagpdfdocu-patches.sty -catalogue-contact-bugs https://github.com/u-fischer/tagpdf/issues catalogue-contact-repository https://github.com/u-fischer/tagpdf catalogue-contact-support https://github.com/u-fischer/tagpdf/issues catalogue-ctan /macros/latex/contrib/tagpdf catalogue-license lppl1.3c -catalogue-topics tagged-pdf accessible -catalogue-version 0.80 +catalogue-topics tagged-pdf accessible expl3 +catalogue-version 0.98e name talk category Package @@ -286488,6 +295330,33 @@ catalogue-license lppl catalogue-topics presentation catalogue-version 1.1 +name talos +category Package +revision 61820 +shortdesc A Greek cult font from the eighties +relocated 1 +longdesc A cult Greek font from the eighties, used at the University of +longdesc Crete, Greece. It belonged to the first TeX installation in a +longdesc Greek University and most probably the first TeX installation +longdesc that supported the Greek language. +containersize 97120 +containerchecksum 50a35159c65afa43900ee8633d2b86effa5aec6a430f2e8fa85f77442da35b140012b27959155564e29286aba465d9bab17c9f5ce5ec0a889ec4ed5dff1b4dcb +doccontainersize 64584 +doccontainerchecksum 9bdbd72f86e0b957580bb008ba349eb428721913010e9fe2cd9ee9b01733d6259914712b60a4a7f0f5804041e6cf876d8bdda2910de1b191715c1d9c8d8fbf77 +docfiles size=18 + RELOC/doc/fonts/talos/README details="Readme" + RELOC/doc/fonts/talos/talos-doc.pdf details="Package documentation" + RELOC/doc/fonts/talos/talos-doc.tex +runfiles size=43 + RELOC/fonts/opentype/public/talos/Talos-Bold.otf + RELOC/fonts/opentype/public/talos/Talos-BoldItalic.otf + RELOC/fonts/opentype/public/talos/Talos-Italic.otf + RELOC/fonts/opentype/public/talos/Talos-Regular.otf +catalogue-ctan /fonts/greek/talos +catalogue-license gfl +catalogue-topics font font-greek font-otf font-proportional +catalogue-version 1.0 + name tamefloats category Package revision 27345 @@ -286548,6 +295417,34 @@ catalogue-license lppl1.3 catalogue-topics bibtex-doc catalogue-version 1.4 +name tangramtikz +category Package +revision 66183 +shortdesc Tangram puzzles, with TikZ +relocated 1 +longdesc This package provides some commands (with English and French +longdesc keys) to work with tangram puzzles: \begin{EnvTangramTikz} and +longdesc \PieceTangram to position a piece, \TangramTikz to display a +longdesc predefined Tangram. +containersize 5848 +containerchecksum 81446f01dd97ef332003f8cce4becb670fe3fa284e540c0dcefd6627b03efcc87874d12c7c7e399947a269cd4fd66deff2064cd1ba64cd34d6cac2b4c587e802 +doccontainersize 744776 +doccontainerchecksum 45435423e7b0a7d7aaf9db5cdbc682b9f62721b7fb333c64cd76a773fd67bb7faebe1bb11a6424c15a495f2c2269a78698a7846f2e8902c16023f2af91c9be9f +docfiles size=234 + RELOC/doc/latex/tangramtikz/README.md details="Readme" + RELOC/doc/latex/tangramtikz/TangramTikz-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/tangramtikz/TangramTikz-doc-en.tex + RELOC/doc/latex/tangramtikz/TangramTikz-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/tangramtikz/TangramTikz-doc-fr.tex +runfiles size=13 + RELOC/tex/latex/tangramtikz/TangramTikz.sty +catalogue-contact-bugs https://github.com/cpierquet/TangramTikz/issues +catalogue-contact-repository https://github.com/cpierquet/TangramTikz +catalogue-ctan /graphics/pgf/contrib/tangramtikz +catalogue-license lppl1.3c +catalogue-topics puzzle games pgf-tikz +catalogue-version 0.1.5 + name tap category Package revision 31731 @@ -286626,7 +295523,7 @@ catalogue-version 0.2 name tasks category Package -revision 57835 +revision 61541 shortdesc Horizontally columned lists relocated 1 longdesc The reason for the creation of the tasks environment was an @@ -286634,12 +295531,13 @@ longdesc unwritten agreement in German maths textbooks (especially longdesc (junior) high school textbooks) to organize exercises in longdesc columns counting horizontally rather than vertically. This is longdesc what the tasks package helps to achieve. -containersize 7388 -containerchecksum 995da480ba215f79bf989524f3fe8d66919529aa8cd9bf40d5e42276f3fa0ec27c4a0da51281b8070dd956af1cf80403fdea0916d39e54a9f21796c16773ebc5 -doccontainersize 479388 -doccontainerchecksum 2ac26058e157163991fee0704d4f22e8f0480a22391f029e29aeb5fb76772955b753ba29261db58918391129e24c5a31efaae6273aab653ef13a34f863347dfc -docfiles size=123 +containersize 7500 +containerchecksum 0625dd459eaf53f842f6c36a550808c3efa8004a76cf25bc892b4c50a640ba588c2d069ce8df10f5c8febf5461390517357040b8a472532fd1f9b9ceddd9e5c3 +doccontainersize 495524 +doccontainerchecksum a3240edd6bd7e87b7e1b6292fc227e166b54cbda7f130dc5f03c92707577a9b51f4da5377375419feda6a91a710f48b787dc3da90a1befe1d1328ea9a799f649 +docfiles size=128 RELOC/doc/latex/tasks/README details="Readme" + RELOC/doc/latex/tasks/tasks-manual.cls RELOC/doc/latex/tasks/tasks-manual.pdf details="Package documentation" RELOC/doc/latex/tasks/tasks-manual.tex runfiles size=9 @@ -286650,7 +295548,7 @@ catalogue-contact-repository https://github.com/cgnieder/tasks/ catalogue-ctan /macros/latex/contrib/tasks catalogue-license lppl1.3c catalogue-topics list list-enum expl3 -catalogue-version 1.3a +catalogue-version 1.4a name tcldoc category Package @@ -286698,7 +295596,7 @@ catalogue-version 2.40 name tcolorbox category Package -revision 56610 +revision 65800 shortdesc Coloured boxes, for LaTeX examples and theorems, etc relocated 1 longdesc This package provides an environment for coloured and framed @@ -286710,14 +295608,14 @@ longdesc output. Another common use case is the setting of theorems. The longdesc package supports saving and reuse of source code and text longdesc parts. The package depends on the pgf, verbatim, environ, and longdesc etoolbox packages. -containersize 230544 -containerchecksum 70647656ee420fcb3c832e8552c2340229b0586a638f7c55404f96f20dcb3e8fd2c561a44ece09e6f507a3c4e2be189aa4cb3a3c4d8bc338ca4396e5d4b9416d -doccontainersize 4716812 -doccontainerchecksum 5ec6c748b48b0166555437e0f75203e616e43a8b15787890b00d36df7c86de1971d2a876c5e7228f60f9ccd2e14c7b30ec061f35127a76f6194722c7103c9c0f -docfiles size=2321 +containersize 232404 +containerchecksum d5e985b0a8f9e7756579b92268a3b9a5a5ce0169b1b8608996c3dbc4264dcf23f17256789cce7db712cde014cdb9a024e649fd3ac6ac53ef4d6131599d49fb55 +doccontainersize 4846688 +doccontainerchecksum 96cc807a6130a741b861a738639e24dbb31e7194065e2e62b2ebf17bbaf2de0a38b7b9feaca948e9e36eb9bc6736d963aa1db33f82187759cab384f31966c924 +docfiles size=2452 RELOC/doc/latex/tcolorbox/Basilica_5.png - RELOC/doc/latex/tcolorbox/CHANGES - RELOC/doc/latex/tcolorbox/README details="Readme" + RELOC/doc/latex/tcolorbox/CHANGES.md + RELOC/doc/latex/tcolorbox/README.md details="Readme" RELOC/doc/latex/tcolorbox/lichtspiel.jpg RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.pdf RELOC/doc/latex/tcolorbox/tcolorbox-example-poster.tex @@ -286751,6 +295649,7 @@ docfiles size=2321 RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_main.sty RELOC/doc/latex/tcolorbox/tcolorbox.doc.s_snippet.sty RELOC/doc/latex/tcolorbox/tcolorbox.doc.sidebyside.tex + RELOC/doc/latex/tcolorbox/tcolorbox.doc.skincatalog.tex RELOC/doc/latex/tcolorbox/tcolorbox.doc.skins.tex RELOC/doc/latex/tcolorbox/tcolorbox.doc.technical.tex RELOC/doc/latex/tcolorbox/tcolorbox.doc.theorems.tex @@ -286759,7 +295658,7 @@ docfiles size=2321 RELOC/doc/latex/tcolorbox/tcolorbox.doc.xparse.tex RELOC/doc/latex/tcolorbox/tcolorbox.pdf details="Package documentation" RELOC/doc/latex/tcolorbox/tcolorbox.tex -runfiles size=143 +runfiles size=148 RELOC/tex/latex/tcolorbox/blueshade.png RELOC/tex/latex/tcolorbox/crinklepaper.png RELOC/tex/latex/tcolorbox/goldshade.png @@ -286787,7 +295686,7 @@ catalogue-contact-bugs https://github.com/T-F-S/tcolorbox/issues catalogue-ctan /macros/latex/contrib/tcolorbox catalogue-license lppl1.3 catalogue-topics boxing colour verbatim listing macro-demo -catalogue-version 4.42 +catalogue-version 6.0.1 name tdclock category Package @@ -286817,21 +295716,21 @@ catalogue-version 2.5 name tds category Package -revision 15878 +revision 64477 shortdesc The TeX Directory Structure standard relocated 1 longdesc Defines a structure for placement of TeX-related files on an longdesc hierarchical file system, in a way that is well-defined, and is longdesc readily implementable. -containersize 488 -containerchecksum 20b739d69ba9804c12761c0eb76c0b7961657d2ba2fb00db9d083022279cca2b2b176fc7aaba11fceb77da4b7a23ba53c80e98a492fb4929adb545d56f5e8958 -doccontainersize 232652 -doccontainerchecksum ab08ea4220a30ac896add47e5422dbf2ff3eb65c3c89e90c87983c5dff75dfae6fc4d6f8cda58f2da51dae505f537ea07cee0e2378da845c20e790f8a1724f7c -docfiles size=129 +containersize 468 +containerchecksum b03911aa9711eb5eeed77c026c4bbcf952da80322b855ac631e78c07a48ad2ff1a4afdd6e25a00257d1b70e054645f07f65c98fe74f6b1389be46625f5eb8487 +doccontainersize 260804 +doccontainerchecksum f4078e3b1693fedcbe139b67c50824845644a2b1e57dd27f9e46e44504d8fe8ac0ca706590e9149c06e71794a188b20777bfd6bf1afe85f16c806ba4f9b99cd8 +docfiles size=150 RELOC/doc/generic/tds/ChangeLog RELOC/doc/generic/tds/Makefile RELOC/doc/generic/tds/README details="Readme" - RELOC/doc/generic/tds/index.html + RELOC/doc/generic/tds/packages.zip RELOC/doc/generic/tds/tds.dvi RELOC/doc/generic/tds/tds.html details="The standard, converted to HTML" RELOC/doc/generic/tds/tds.pdf details="The standard specification" @@ -286839,8 +295738,9 @@ docfiles size=129 RELOC/doc/generic/tds/tds.tex RELOC/doc/generic/tds/tds2texi.el RELOC/doc/generic/tds/tdsguide.cls -catalogue-contact-home http://tug.org/tds/ -catalogue-ctan /tds + RELOC/doc/info/tds.info +catalogue-contact-home https://tug.org/tds/ +catalogue-ctan /info/tds catalogue-license other-free catalogue-topics std-spec catalogue-version 1.1 @@ -287499,6 +296399,31 @@ catalogue-license lppl1.3c catalogue-topics calendar german catalogue-version 2.0 +name termes-otf +category Package +revision 64733 +shortdesc Using the OpenType fonts TeX Gyre Termes +relocated 1 +longdesc This package provides the OpenType version of the TeX Gyre +longdesc Termes font, including text and math fonts. The package needs +longdesc LuaLaTeX or XeLaTeX. The missing typefaces like bold math and +longdesc slanted text are also defined. +containersize 2320 +containerchecksum df52961346796914dca6c8f7c45671aa5da8c8ae4d55b951b5dcec6168c90082c02734db1133a119c951e50507ff1edf777b8976e34da1fc1cbc7ad783d4ae4c +doccontainersize 464160 +doccontainerchecksum 221decd0f8193912d30032544095c3f30c4d8fd3b52ab74dd167bec1de528c8c9b753681985259dba859f8fd3d06ba239665bbdcc93d80904235c6f62685dba2 +docfiles size=128 + RELOC/doc/fonts/termes-otf/Changes + RELOC/doc/fonts/termes-otf/README.md details="Readme" + RELOC/doc/fonts/termes-otf/termes-otf-doc.pdf details="Package documentation" + RELOC/doc/fonts/termes-otf/termes-otf-doc.tex +runfiles size=3 + RELOC/tex/latex/termes-otf/termes-otf.sty +catalogue-ctan /fonts/termes-otf +catalogue-license lppl1.3 +catalogue-topics font font-otf font-maths luatex xetex +catalogue-version 0.02 + name termlist category Package revision 18923 @@ -287554,6 +296479,39 @@ catalogue-ctan /macros/generic/termmenu catalogue-license lppl1.3 catalogue-topics comp-mgmt expl3 +name termsim +category Package +revision 61414 +shortdesc Simulate Win10, Ubuntu, and Mac terminals +relocated 1 +longdesc This LaTeX3 package provides environments terminal and +longdesc terminal*, and macros \termfile and \termfile* to simulate +longdesc Win10, Ubuntu and Mac terminals. It is based on tcolorbox, +longdesc minted and listings. +containersize 3860 +containerchecksum 132615cbdbe257f2c7643414ef4b577053425e457a2e2ee2a9b4d8d56a7e6758db587b7f5223ef1a324931f5468ac5365b7dde7b971312bc8b8ea069ee5efb9e +doccontainersize 390080 +doccontainerchecksum af5047a490608fbb5769b6b4d3dad3fac6b9b20abb5dbaf20d08a633045ea45ca1a01f572d3f0701567a91a8429ae0c7279fa82f054e6fe0802d413765c46ccc +docfiles size=111 + RELOC/doc/latex/termsim/README.md details="Readme" + RELOC/doc/latex/termsim/build.sh + RELOC/doc/latex/termsim/ctxdoc-en.cls + RELOC/doc/latex/termsim/termsim-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/termsim/termsim-doc-en.tex + RELOC/doc/latex/termsim/termsim.pdf details="Package documentation (Chinese)" language="zh" +srccontainersize 9472 +srccontainerchecksum 45ad375a19ca939496f6f6546c9d2568367b3cd49c11fe1b2d94785448eb679d3e82c41a3282df054027636ca367b86b82dc3d937b42056398c23622ffa6e34a +srcfiles size=12 + RELOC/source/latex/termsim/termsim.dtx +runfiles size=4 + RELOC/tex/latex/termsim/termsim.sty +catalogue-contact-bugs https://github.com/registor/termsim/issues +catalogue-contact-repository https://github.com/registor/termsim +catalogue-ctan /macros/latex/contrib/termsim +catalogue-license lppl1.3c +catalogue-topics listing boxing comp-sci expl3 +catalogue-version 1.1.1 + name testhyphens category Package revision 38928 @@ -287587,7 +296545,7 @@ catalogue-version 0.7 name testidx category Package -revision 52213 +revision 60966 shortdesc Dummy text for testing index styles and indexing applications relocated 1 longdesc This is a LaTeX package that provides a command to produce @@ -287599,11 +296557,11 @@ longdesc characters, depending on the setup, to allow for testing longdesc extended Latin alphabets. The supplementary package longdesc testidx-glossaries.sty uses the indexing interface provided by longdesc the glossaries package. -containersize 27180 -containerchecksum 003179c0efebe0bb84cf1ddc80db6d905af6cbbbf59753b4102e5f7a760b5e7c90057976e2d0aac138b001e2a211da8758f8e2285866ac34c8287e1d3b82d1e4 -doccontainersize 3342856 -doccontainerchecksum deab83c1eb6f77b379b38bc81e680e18b9fb02a4b147363e05646849af1fe402249c50a8eb41e6ecf60fb1cc505cd82593ae90c356cd4bf43fa5685cf5162f44 -docfiles size=1362 +containersize 44064 +containerchecksum e4179ab827eb21f27fabdd06674302ac141b6abf889e87c4183b4d86253ae35b5ea277ecb8ac36e66d51a4e25556fae092f98bfdd768d34728412f3bb8b5faf7 +doccontainersize 3323724 +doccontainerchecksum 60761fa19984e3ab2a0b5420320a43b84c1174a4e6722c75523fcaff43206ca2bd01f24af74ee307b5cd7d12196238f86539f8cfafc27168bf134df74e2736df +docfiles size=1320 RELOC/doc/latex/testidx/CHANGES RELOC/doc/latex/testidx/README details="Readme" RELOC/doc/latex/testidx/samples/sample-idx-a4.pdf @@ -287647,26 +296605,26 @@ docfiles size=1362 RELOC/doc/latex/testidx/samples/sample-noidxgloss.pdf RELOC/doc/latex/testidx/samples/sample-noidxgloss.tex RELOC/doc/latex/testidx/testidx-code.pdf details="Code documentation" - RELOC/doc/latex/testidx/testidx-glossaries-diglyphs-utf8.bib - RELOC/doc/latex/testidx/testidx-glossaries-diglyphs.tex - RELOC/doc/latex/testidx/testidx-glossaries-markers.bib - RELOC/doc/latex/testidx/testidx-glossaries-mathsym.bib - RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs-utf8.bib - RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.bib - RELOC/doc/latex/testidx/testidx-glossaries-nodiglyphs.tex - RELOC/doc/latex/testidx/testidx-glossaries-numbers.bib - RELOC/doc/latex/testidx/testidx-glossaries-samples-ascii.bib - RELOC/doc/latex/testidx/testidx-glossaries-samples-utf8.bib - RELOC/doc/latex/testidx/testidx-glossaries-samples.bib - RELOC/doc/latex/testidx/testidx-glossaries-samples.tex RELOC/doc/latex/testidx/testidx-manual.pdf details="User manual" RELOC/doc/latex/testidx/testidx-manual.tex -srccontainersize 51648 -srccontainerchecksum de09a92aefaff5ad23898b7b5c4ef447280c3664eb468c433161cc82bb040f2c3fb265ec976f4d985914804a96422748b2dc20863805e066cfefb976110a1a6b +srccontainersize 51652 +srccontainerchecksum 358c712d4073983f872dc9664bd6e138c7c66a420d1253ec36646cefa584c9148573fd978026de87d98806c71ea8f8f45c1cd0160b3be738d6fb9cd535d774c1 srcfiles size=98 RELOC/source/latex/testidx/testidx.dtx RELOC/source/latex/testidx/testidx.ins -runfiles size=48 +runfiles size=90 + RELOC/bibtex/bib/testidx/testidx-glossaries-diglyphs-utf8.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-markers.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-mathsym.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-nodiglyphs-utf8.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-nodiglyphs.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-numbers.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-samples-ascii.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-samples-utf8.bib + RELOC/bibtex/bib/testidx/testidx-glossaries-samples.bib + RELOC/tex/latex/testidx/testidx-glossaries-diglyphs.tex + RELOC/tex/latex/testidx/testidx-glossaries-nodiglyphs.tex + RELOC/tex/latex/testidx/testidx-glossaries-samples.tex RELOC/tex/latex/testidx/testidx-glossaries.sty RELOC/tex/latex/testidx/testidx.sty catalogue-also blindtext @@ -287703,7 +296661,7 @@ catalogue-version 1 name teubner category Package -revision 57684 +revision 64600 shortdesc Philological typesetting of classical Greek relocated 1 longdesc An extension to babel greek option for typesetting classical @@ -287713,19 +296671,19 @@ longdesc from that of the fonts used in printers' shops in Lispia. The longdesc package name honours the publisher B.G. Teubner longdesc Verlaggesellschaft whose Greek text publications are of high longdesc quality. -containersize 9644 -containerchecksum 9f83b38366047a36b064162abce047026bf71341ab4d0ae1f3f827b1b73e790d25a5deaa1a5c724c80a75a081d82ffbc6e24b1b41c5c09efe4e10ffbd1ed5a65 -doccontainersize 1051276 -doccontainerchecksum 16e3c96b9a6da29e06a80cf1e98cb2b993d1f98b5827ab05cacba7f29dc1e28dfb704d096295bdf6b995408d83ad42af6b8a59eecc78be41a4e5219fded64627 -docfiles size=278 +containersize 9968 +containerchecksum d6e7eb1affbc544b04b279a2f0047863eebbfcd758ca69b470e7ed0b45128ac6935509240b7bc86674f9f83da445993c854d72ee9e1197ae80bc93a5b6e5f72c +doccontainersize 1109568 +doccontainerchecksum cb573c57d090d21b77ccbf90c4da3b64fe532d55b011356d4ec1b396545646e9d176aa4f21ac4e22604a3513eaf974cc627f7836afeae0ba3b6c21cf36fa0fd7 +docfiles size=297 RELOC/doc/latex/teubner/README details="Readme" RELOC/doc/latex/teubner/teubner-doc.pdf details="User manual" RELOC/doc/latex/teubner/teubner-doc.tex RELOC/doc/latex/teubner/teubner.pdf details="Package documentation" RELOC/doc/latex/teubner/teubner.txt -srccontainersize 40464 -srccontainerchecksum 807b8754730c20c0327eee6bef45a83ff8ba8134477fbecd4b5f3cc9c0ad95bad74a698c12a0906d0211a4d9a0b0a0ac3d74864db375e42879cc32821c363e23 -srcfiles size=43 +srccontainersize 41792 +srccontainerchecksum f84c0b7e3bd1630d022d578374cecd9212915c2a42e493cb25986295d6cefb0cf80be47dfad9a2cf47541fa1592497be89048972f6e791bff14477da21a43b22 +srcfiles size=41 RELOC/source/latex/teubner/teubner.dtx runfiles size=14 RELOC/tex/latex/teubner/teubner.sty @@ -287733,11 +296691,11 @@ runfiles size=14 catalogue-ctan /macros/latex/contrib/teubner catalogue-license lppl1.3c catalogue-topics greek multilingual-addon -catalogue-version 5.4 +catalogue-version 5.7.3 name tex category TLCore -revision 57972 +revision 66186 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 @@ -287758,17 +296716,17 @@ depend kpathsea depend plain depend tex.ARCH execute AddFormat name=tex engine=tex options="tex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain -containersize 896 -containerchecksum e38f62fcc5ccee22a909eae5ea196e055eae59eedc652ce9788a3b4520995e97f64c683f1ba940853a06030a7ea6f1d749ed4dda1cb30433f87f5f9cdce5a9a7 -doccontainersize 43540 -doccontainerchecksum 3056263569276ca7a62ccb03542eac99b648d36c398ded17204a2624f06920c506985aedd1a639a48bc60af6394d091cdfd9ec44000730bd8e8c83c2234bb569 +containersize 892 +containerchecksum 028cf62dc7bd7f62acdd005c1121b4fcd55f9130db61d3bfd782cdae22e2e51581cd66a43a827ce76f6e4fed09f2050ee81c13594f6df64817c3a48ca3d1d088 +doccontainersize 43528 +doccontainerchecksum 69e9a2068eb63d7a503be0aa3d94cc270485370be0342d5adf6fac714743a90b705622b8cfbd7e62e52c15f9a663fc3101d11a116c1af9c4f9f3f5c5d3dbfc77 docfiles size=27 texmf-dist/doc/man/man1/initex.1 texmf-dist/doc/man/man1/initex.man1.pdf texmf-dist/doc/man/man1/tex.1 texmf-dist/doc/man/man1/tex.man1.pdf catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/tex catalogue-license knuth @@ -287824,7 +296782,7 @@ catalogue-version 0.1 name tex-gyre category Package -revision 48058 +revision 65956 shortdesc TeX Fonts extending freely available URW fonts relocated 1 longdesc The TeX-GYRE bundle consists of six font families: TeX Gyre @@ -287861,11 +296819,11 @@ execute addMap qhv.map execute addMap qpl.map execute addMap qtm.map execute addMap qzc.map -containersize 7748428 -containerchecksum 7e8ab25cd563e2be7f333f5f4232a7d64e9cd8ef2b5b898ad5e33af96d455f3bb0214184650dde76770cb95f3bfc6b10f35286e0263e52a6f43affa289920327 -doccontainersize 6673112 -doccontainerchecksum ebfea3bfa958175078b78ee0f2ea36a4de289b967f8fc900268dce7b3d356d2faae9d9a1123c48a06e3ec78b05863626fa97cb3e249d1b87c036fe00c194ceec -docfiles size=2369 +containersize 7748404 +containerchecksum a14e23d369070ee11c6d5fd4b047d5c1b551bdbb50438170b9b675a69191c2cf12482f0f5587f6466dc7d9b2de697546e2297516e88ef1bed8fa827b516bc279 +doccontainersize 11141772 +doccontainerchecksum a48c2bbd2c017a3ee8f421fb4707225c14b46528fd850f86cc9f50c355546a3a6cc8b5907106dabe59d2ecb0baae494076731fe0eccf2ae852353cbcc7888dd1 +docfiles size=3466 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 @@ -287937,8 +296895,9 @@ docfiles size=2369 RELOC/doc/fonts/tex-gyre/qzc-test.pdf RELOC/doc/fonts/tex-gyre/qzc-test.tex RELOC/doc/fonts/tex-gyre/qzcmi.fea + RELOC/doc/fonts/tex-gyre/tex-gyre-info-src.zip srccontainersize 1016896 -srccontainerchecksum 68a06261fed419e106e8f6958a38bb0f5b78c3ee10b8b68365b3bf9925360cf726c4715954590f0b0b86faadfe636f50bce0ebf4b3b00162ffb4df54a2adc803 +srccontainerchecksum 6a498ccedb12363e076421a4873cc760f4027d4b6f09f66011cdef323e844425f52aaf1fd3466b9bcccf35c1b2c50ae3b738bc8167002121e708c869e7ccb926 srcfiles size=3204 RELOC/source/fonts/tex-gyre/texgyreadventor-bold.fea RELOC/source/fonts/tex-gyre/texgyreadventor-bold.sfd @@ -288973,7 +297932,7 @@ catalogue-version 1.0 name tex-nutshell category Package -revision 58471 +revision 63336 shortdesc A short document about TeX principles relocated 1 longdesc This document is meant for users who are looking for @@ -288981,18 +297940,18 @@ longdesc information about the basics of TeX. Its main goal is its longdesc brevity. The pure TeX features are described, no features longdesc provided by macro extensions. Only the last section gives a longdesc summary of plain TeX macros. -containersize 512 -containerchecksum 63075927692bcb796c0aaa29303682f9bcd0984e41a344a4dbe7c21ac467ea2fbb5ea952655373e877d8125c676b867f8f26786bc3e40eafddc446a0e92ba4e6 -doccontainersize 265580 -doccontainerchecksum 0e73d7735132f81ffe5aec90254e640e3da839da8fa6b5e72afbc45266cdd806f0c1ac5ef0d88b1a2e606164f37ca5086082f1e12af28726847e39fd5bd61387 -docfiles size=87 +containersize 516 +containerchecksum 4eb68fe292ca246efb1398ecae471831147834928338f6f964febcae5ef2833270a5e39d22aa803ab770d3ab21db3d60d4010912ebc79399f029c45ecbeac9fc +doccontainersize 284232 +doccontainerchecksum cf610ee44e4b4e8a8cfa94aa9cdfe622d12fc7949f62c567e833f5f5affb42a99ef1a0f296fd1f1bccd2594d864f9bf965d89df642dee45346810363e6ccf4c4 +docfiles size=93 RELOC/doc/plain/tex-nutshell/README details="Readme" RELOC/doc/plain/tex-nutshell/tex-nutshell.pdf details="The document itself" RELOC/doc/plain/tex-nutshell/tex-nutshell.tex catalogue-ctan /info/tex-nutshell catalogue-license pd catalogue-topics documentation tut-plaintex -catalogue-version 0.6 +catalogue-version 0.8 name tex-overview category Package @@ -289546,180 +298505,200 @@ catalogue-ctan /info/tex-virtual-academy-pl catalogue-license fdl catalogue-topics documentation polish-doc +name tex-vpat +category Package +revision 63560 +shortdesc TeX Accessibility Conformance Report +relocated 1 +longdesc TeX Accessibility Conformance Report based on ITI VPAT(R) +longdesc guidelines. Currently it covers TeX Live. Other distributions +longdesc can be added if needed. +containersize 516 +containerchecksum c215b5745c023c9c79694c61d6ac961356fa921b671e774e3adbd75f0445682255570c7e269cc425bd8745304f1df4acc543bc22bd12ab61a594c3f34ca55628 +doccontainersize 184164 +doccontainerchecksum 87a5870f9b313548e8a8f8f2ec757bb287d0d9bafd1461067ab3d767874c7dd7b482d19557b48f43790b644506b7f1106a68bebf1eb7980479fd5133fadfbf6d +docfiles size=95 + RELOC/doc/latex/tex-vpat/LICENSE + RELOC/doc/latex/tex-vpat/Makefile + RELOC/doc/latex/tex-vpat/README.md details="Readme" + RELOC/doc/latex/tex-vpat/texlive-vpat.css + RELOC/doc/latex/tex-vpat/texlive-vpat.html + RELOC/doc/latex/tex-vpat/texlive-vpat.pdf details="Package documentation" + RELOC/doc/latex/tex-vpat/texlive-vpat.tex +catalogue-contact-bugs https://github.com/TeXUsersGroup/TeX-VPAT/issues +catalogue-contact-development https://github.com/TeXUsersGroup/TeX-VPAT/pulls +catalogue-contact-repository https://github.com/TeXUsersGroup/TeX-VPAT +catalogue-ctan /info/tex-vpat +catalogue-license cc-by-3 +catalogue-topics std-conform std-spec +catalogue-version 2.1, June 2022 + name tex.aarch64-linux category TLCore -revision 58389 +revision 65927 shortdesc aarch64-linux files of tex -containersize 175256 -containerchecksum 354deffab49db602cdb3231d7947ccfcdfa26eae3da370ee70b08246649b92e850a9dafc0513275d986dd3701b01879f84b6933fda6fa752daafe31ea61942b1 -binfiles arch=aarch64-linux size=113 +containersize 175620 +containerchecksum 85f8e341a5a48d984c9097a1ae016420c754a794a4009f778163e832d3cf8164f9ad1dc8ffb5dac962f566c033a48d252f584b094a322acf7413a52150a0807f +binfiles arch=aarch64-linux size=114 bin/aarch64-linux/initex bin/aarch64-linux/tex name tex.amd64-freebsd category TLCore -revision 58388 +revision 65877 shortdesc amd64-freebsd files of tex -containersize 231528 -containerchecksum 907ec52ceda611c8c601cdd821efa152fba931541929a3f28a6de3de67992adcc4bf4f5d42cbbf568679901bcc884902393d6128415027b6696230d2eaa6eb0b -binfiles arch=amd64-freebsd size=151 +containersize 231172 +containerchecksum 0bad33ac55b32944c011589bc707f860ed17f094fbd14a13826ca53af6b761565176516c2e221767631dfb0e6fccd0b1df9398d40f3c804e7f8c4d600236b598 +binfiles arch=amd64-freebsd size=152 bin/amd64-freebsd/initex bin/amd64-freebsd/tex name tex.amd64-netbsd category TLCore -revision 58386 +revision 65923 shortdesc amd64-netbsd files of tex -containersize 156368 -containerchecksum aad8090fdc8edd6302499864c1f34677a89b8c272f4f2814e0e620c95d20b80495d1d45b8cdbbe4c577b35ac57e4f9e11c1d50ce7067c210153717fffb780fc4 +containersize 156544 +containerchecksum c83f047cae647e6daaba7e534b12c90b4a9935d39bb217a6fb0718a3a107f5c81284025d1106b985c142b9e644e86e8964f939c665c724292d2471b6e82a9952 binfiles arch=amd64-netbsd size=115 bin/amd64-netbsd/initex bin/amd64-netbsd/tex name tex.armhf-linux category TLCore -revision 58428 +revision 65877 shortdesc armhf-linux files of tex -containersize 149084 -containerchecksum 9f832158c02f6684a0eb0d6a9d71c9a575a57febb2fa32136728d8fc6dba6a9b2532e6480caa30a011b872ff44fdecd1fd92210502f3cb1157a9a8d75c5138d5 +containersize 149348 +containerchecksum 6d4f6b36380cc6298a424ee6f95a828f4edd3bb778868b9cc8dee4aff81d566714a63405e68c3e4c765f32cd5d7cad4fbb8de51689e9d0c5abd9a3d49550cf14 binfiles arch=armhf-linux size=86 bin/armhf-linux/initex bin/armhf-linux/tex -name tex.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of tex -containersize 144544 -containerchecksum ff3ea5524f85b673769787cc8ab3337093e3000e9eb9d5d7020643a1de37079ac0a013a9526c2a0c82ffd106cb98333cb6491cf9b7054399dc12d173e5eb253c -binfiles arch=i386-cygwin size=94 - bin/i386-cygwin/initex - bin/i386-cygwin/tex.exe - name tex.i386-freebsd category TLCore -revision 58388 +revision 65877 shortdesc i386-freebsd files of tex -containersize 173856 -containerchecksum 8d54afc127d4a4eaa82d2cb777247962f7b47a3b5e6a54eb9e36b717a81c1c607de46e9c478ef1b5da86f400d8b4ae194d4cacee31d1493dd5db9391b96d06fd -binfiles arch=i386-freebsd size=136 +containersize 175760 +containerchecksum 198a98d99ee8bf51c3720bdf7e36247b054460201f0629dee9991a4b73dffc0377dfc8cad56cd69af042e5c40ffaa839a68f13dfa11fbc1d2f77f5d4ecc05377 +binfiles arch=i386-freebsd size=137 bin/i386-freebsd/initex bin/i386-freebsd/tex name tex.i386-linux category TLCore -revision 58378 +revision 65877 shortdesc i386-linux files of tex -containersize 169216 -containerchecksum ad903106169d8c58facfe5ef6ccd7b5971be2c19d085d1d0cae824d0aea607a291c861723be1d13c7d9ef8a9caad4de909b1a882ec94a95e62e5c0d25ef945cc -binfiles arch=i386-linux size=102 +containersize 171972 +containerchecksum 568c1f2ccacabda0781729a13c7a7123718acbbb1542fe8cde8f02bd0f672b1c5eb82104f027338f19e458f47a5cc06be7d8121ed4a61d5ae2535e3d3cb6bcf9 +binfiles arch=i386-linux size=104 bin/i386-linux/initex bin/i386-linux/tex name tex.i386-netbsd category TLCore -revision 58386 +revision 65923 shortdesc i386-netbsd files of tex -containersize 128536 -containerchecksum dd3dec2496dc04b60c7b701ace48942701e34a1d22da745c758416416d89333ba42617b946e3ab5af310d09c8704eb1159611624f190341e2d80ed5748d9b844 +containersize 128772 +containerchecksum 7d06b86f0c26329ea04b774e1bdb464021c36937e3bbccfd43674bd548959e002d36c124729bb2e0657643d3cedf99a210497531397bf3040655181abbae1865 binfiles arch=i386-netbsd size=105 bin/i386-netbsd/initex bin/i386-netbsd/tex name tex.i386-solaris category TLCore -revision 58388 +revision 65877 shortdesc i386-solaris files of tex -containersize 164816 -containerchecksum a9817dc6f30bfbbe9ea7f440b56e432e86a40b71e59425898168d3151d384871725d66187312000d528a1c46cb0b9d5e15f6bb1e4f8f8444535c7bca9c32c5af +containersize 164944 +containerchecksum e47cfee24dafb3540779d7cf8bd0a2ca1283f51516b40721aaef3d906e973d6bc3545bb68c82629b55ee6121ad2fb072309dbdcc9ca07c8792a0b38c78ef7315 binfiles arch=i386-solaris size=94 bin/i386-solaris/initex bin/i386-solaris/tex name tex.universal-darwin category TLCore -revision 58418 +revision 65895 shortdesc universal-darwin files of tex -containersize 435528 -containerchecksum a7be896bcec7fa2cd159ed6002fdac3cf5cf2d6ff3d993365c30778865477e5cff6be75cd2f204f9639f3b70626f8a9cd0fc268df9ede13ddd35c99b178a7aed -binfiles arch=universal-darwin size=333 +containersize 437072 +containerchecksum 6468716b53b041a7e26ac5c0bfb28aa548543ae1bb0d03f745af82b35d97baed0e3627e7be48bc4513af33ab786001e97026716e4127ce05600952c0462ca652 +binfiles arch=universal-darwin size=337 bin/universal-darwin/initex bin/universal-darwin/tex -name tex.win32 +name tex.windows category TLCore -revision 59028 -shortdesc win32 files of tex -containersize 133076 -containerchecksum b5365192590f94e7be8d760ef93c1a27b233a4fc35eafed0a754499c7bf6164cfe7fe721454a34c6c39495abe1a0a86328231d9ddb81245be1e602a55647fff7 -binfiles arch=win32 size=76 - bin/win32/initex.exe - bin/win32/tex.dll - bin/win32/tex.exe +revision 65891 +shortdesc windows files of tex +containersize 156612 +containerchecksum 35f6ca5219f512f3d56c1ee144f005adc0582479f7cd8d0b02e6cb1def274b40b40fa4c570023f71469a32d08048270eaafaac40891e2ea502578efc1f36eb90 +binfiles arch=windows size=86 + bin/windows/initex.exe + bin/windows/tex.dll + bin/windows/tex.exe name tex.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of tex -containersize 171028 -containerchecksum e8794cb24a97a5a49bae227853ce6296c7e43f71a8fa241154c383f3ca0e3b15efa28d7ac244543eff92edfc805592875471532b16bda87291f8d285f25f0efc -binfiles arch=x86_64-cygwin size=96 +containersize 171808 +containerchecksum 084c652d6317e77042e0f8cd93ecae6d8ffb66252c6bd6c2ab623c68683631b6804b86f174ed98bc5c7eb9e1c616619444ba8c08a75e00ec97278d4196e7e9ba +binfiles arch=x86_64-cygwin size=97 bin/x86_64-cygwin/initex bin/x86_64-cygwin/tex.exe name tex.x86_64-darwinlegacy category TLCore -revision 58388 +revision 65877 shortdesc x86_64-darwinlegacy files of tex -containersize 170520 -containerchecksum ff146ae3fde7ea2ef9154494225502398a9f5b7a6756e7a856f5239c227d92684bda201bc974e8c47d4e86d07473d718e709c90f296bc93b11700526a046830a +containersize 170672 +containerchecksum c5d3d8954c8094aca6c1cb078f9f529133f765448f1ea927d62e8bccd2f28478df8b344c0be345f9beca7df608e7070528da8fee0cfaf66906773661087d26f8 binfiles arch=x86_64-darwinlegacy size=92 bin/x86_64-darwinlegacy/initex bin/x86_64-darwinlegacy/tex name tex.x86_64-linux category TLCore -revision 58378 +revision 65877 shortdesc x86_64-linux files of tex -containersize 176388 -containerchecksum 1a6d9bc9f6e2e626649e38e231cb95318a2f99e5253e9a07ff99ca592c9d1f4536c5fe8c2030a91087627a0dfc3418f3675f30ecd2c54c957910f109f67e3e55 -binfiles arch=x86_64-linux size=95 +containersize 178336 +containerchecksum ccccf8929eb8a92a7d9ef28d01e059c1fac6851dabd11e0be2515ebc71f5596cd923261a2882cc6b77427c0c239e2562df108488eb417c5fb44ae1a0148b9721 +binfiles arch=x86_64-linux size=96 bin/x86_64-linux/initex bin/x86_64-linux/tex name tex.x86_64-linuxmusl category TLCore -revision 58378 +revision 65877 shortdesc x86_64-linuxmusl files of tex -containersize 187064 -containerchecksum 8b4eed71fbc7eef1d591131beb57174fabc2919d768782f0e03278bcace410c29448f131e2021608f18d903def74efb3e86354466cc154c040299ddfe2ec20ad -binfiles arch=x86_64-linuxmusl size=107 +containersize 187672 +containerchecksum a17ba83f1caa136a91eb0265f9d5ca38c4d5f8e9cc38938c5ed948d5bcb9adbb1ebbfdc45b2fc726468816241e09ea0d933524b1b0b17e026f855c06c175bbc3 +binfiles arch=x86_64-linuxmusl size=104 bin/x86_64-linuxmusl/initex bin/x86_64-linuxmusl/tex name tex.x86_64-solaris category TLCore -revision 58388 +revision 65877 shortdesc x86_64-solaris files of tex -containersize 192736 -containerchecksum 5e3e928ddb617b98a66a56480978ee2507bc0d7bda1c6ce72731e9e7b4c26f1d72797aa18ec973b4ae8e12b94c441d0b889f6db62912f5bbe277bbfb5d6a2181 +containersize 192964 +containerchecksum 58b0d34222ee370c29e9178d5f9d8a8ca99aeb1daadf07702822d50176316e9f40eb4064ecc445f196ab6088f05be561152f2ed06a895bef7a06cebfc4492fba binfiles arch=x86_64-solaris size=107 bin/x86_64-solaris/initex bin/x86_64-solaris/tex name tex4ebook category Package -revision 56878 -shortdesc Convertor from LaTeX to ebook formats -longdesc This is a bundle of lua scripts and LaTeX packages for +revision 66332 +shortdesc Converter 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. +longdesc and epub3. tex4ht is used as the conversion engine. +depend make4ht depend tex4ebook.ARCH -containersize 16960 -containerchecksum 9ef3a2b820f1f7015b61b8cff017affbf8cdc07fb1d4c39f629e46e2457a08875dd83252526e75465ec75a42d6580b7ec75b085455e5ba62dd14dd13a898a8f2 -doccontainersize 88140 -doccontainerchecksum 0a01620564aa41d076a998910eff5a1fc45b7a0f2a3b2f606191e1442c49ed6685c8ac51a099834da2765de030d2f099a79fd03d6aebe08f78837f18638bc9d2 -docfiles size=33 +depend tex4ht +containersize 17964 +containerchecksum 2a0d11b9b86594e65100b5c6670533e42e10e81d1b8a4e29b2c628b40c8d3d8be69280b64c576f2b47cc06d47236bcd3e4213a5b551c616f9fc6072929eaf428 +doccontainersize 101180 +doccontainerchecksum 4f7ab8795e1f6d848fc2bfa4d2cd772b68ba1b8cae18b86e20720930d56bf645c89aa2a188cab8c9c081ea497b7c4382ae8384db278291cfdb913533911e3d12 +docfiles size=39 texmf-dist/doc/support/tex4ebook/README details="Readme" texmf-dist/doc/support/tex4ebook/changelog.tex texmf-dist/doc/support/tex4ebook/readme.tex @@ -289736,12 +298715,13 @@ runfiles size=20 texmf-dist/tex/latex/tex4ebook/tex4ebook-epub3.4ht texmf-dist/tex/latex/tex4ebook/tex4ebook.4ht texmf-dist/tex/latex/tex4ebook/tex4ebook.sty +catalogue-also make4ht tex4ht catalogue-contact-bugs https://github.com/michal-h21/tex4ebook/issues catalogue-contact-repository https://github.com/michal-h21/tex4ebook catalogue-ctan /support/tex4ebook catalogue-license lppl1.3 catalogue-topics ebook -catalogue-version 0.3c +catalogue-version 0.3i name tex4ebook.aarch64-linux category Package @@ -289779,15 +298759,6 @@ containerchecksum 6d6c2c3e018c293cd52ec96b3e95f0b77324a1f9e946fad7e812dc50c26817 binfiles arch=armhf-linux size=1 bin/armhf-linux/tex4ebook -name tex4ebook.i386-cygwin -category Package -revision 37771 -shortdesc i386-cygwin files of tex4ebook -containersize 336 -containerchecksum be76dc4b72009ee6756ac08f9428660a1fbc9b03ac6d803725feb228883e84ad365ec9d21a1dae1453cf32c882044131a3de55bc2daa8953aae69977322c7650 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/tex4ebook - name tex4ebook.i386-freebsd category Package revision 37771 @@ -289833,14 +298804,14 @@ containerchecksum 6b61ea8679eb9cc8dc255d7c0bee404f0d82090fb4b2126b2fc978e2f6ddc8 binfiles arch=universal-darwin size=1 bin/universal-darwin/tex4ebook -name tex4ebook.win32 +name tex4ebook.windows category Package -revision 37771 -shortdesc win32 files of tex4ebook -containersize 684 -containerchecksum a09fa5d0d8797cbe40b0925dffa8d4f177175400719558a9d3c26be44989c2b46f6e792ef8b247efd74e242816f539ae302b63dab71be6d419454ebc9a5a2868 -binfiles arch=win32 size=1 - bin/win32/tex4ebook.exe +revision 65891 +shortdesc windows files of tex4ebook +containersize 2308 +containerchecksum 7c47da249b40ebfe9b10eff48bead90bdb6f24699d77e2641a8b6eb02dd3f0a7572ad1970c2f4460b371fa733ce81ae8d15c1e5e62d59edae616395a836ac289 +binfiles arch=windows size=2 + bin/windows/tex4ebook.exe name tex4ebook.x86_64-cygwin category Package @@ -289889,25 +298860,31 @@ binfiles arch=x86_64-solaris size=1 name tex4ht category Package -revision 59071 +revision 66530 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 (X)HTML, MathML, OpenDocument, and Docbook, providing a longdesc configurable (La)TeX-based authoring system for hypertext. -longdesc TeX4ht does not parse (La)TeX source (so that it avoids the -longdesc difficulties encountered by many other converters, arising from -longdesc the irregularity of (La)TeX syntax). Instead, TeX4ht uses -longdesc (La)TeX itself (with myriad macro modifications) to produce a -longdesc helper DVI file that it can then process. This technique allows -longdesc TeX4ht to approach the robustness characteristic of -longdesc restricted-syntax systems such as hyperlatex and gellmu. Note -longdesc that CTAN no longer holds the definitive sources of the -longdesc package: see the 'Readme' file. +longdesc TeX4ht does not independently parse (La)TeX source (so it +longdesc avoids the difficulties encountered by many other converters, +longdesc arising from the irregularity of (La)TeX syntax). Instead, +longdesc TeX4ht uses (La)TeX itself (with myriad macro modifications) to +longdesc produce a helper DVI file that it can then process. This +longdesc technique allows TeX4ht to approach the robustness +longdesc characteristic of restricted-syntax systems such as gellmu. +longdesc Full releases of TeX4ht are no longer made, both because it is +longdesc technically difficult to do so and because their utility is +longdesc questionable. Nevertheless, TeX4ht is actively maintained. So, +longdesc current source files are held on CTAN, and updated from the +longdesc development repository frequently. Creating the myriad derived +longdesc files from them is nontrivial, and generally done with the +longdesc Makefile in development, from which the TeX4ht package in TeX +longdesc Live is updated. depend tex4ht.ARCH -containersize 906804 -containerchecksum 7b4b31d69cceb108946f27a549e5ccee1657dba4ba1733e7b271544ec6c457d2e19b83aa5468e26f0b81992b2a5f22b251de7867a658f82b3214ded4f29077bb +containersize 1103844 +containerchecksum 57ea737b006b20e326e409e55dba3ac3231181bee9b3dd5a725533cedcd4030f10ef44461003673964aa2a78c79a979057be03c6238575f3d832d8e69cec25e0 doccontainersize 136384 -doccontainerchecksum eadf79734ea3df71f2f6f0d8a901c77bc1a9616a437424163bff2c7f1c6b6c6fa76dff71fb0b591d145a3862a7db1596308187cba4706ec45e0f19a3cc62e38b +doccontainerchecksum 1d207661007626fdcbbdb91387611c8333908d4daa83b5322b0c5320c8b83694255b8e59f6c1bf94d7bc0c956711a801f049c60ee54e5dd6b3c2ceb7082ecae0 docfiles size=260 texmf-dist/doc/generic/tex4ht/Makefile texmf-dist/doc/generic/tex4ht/README details="Readme" @@ -289979,9 +298956,9 @@ docfiles size=260 texmf-dist/doc/generic/tex4ht/mn56.html texmf-dist/doc/generic/tex4ht/mn5x.png texmf-dist/doc/generic/tex4ht/mn6x.png -srccontainersize 1204676 -srccontainerchecksum ca78387d73af725b7965d07dce7f860687eff64e91415edcb50d4c61362286dbcac0305b30a2c508ec992922bb10466f9a777e4e2c4f215368255e360c2e8026 -srcfiles size=3622 +srccontainersize 1445176 +srccontainerchecksum dc0ccc71e9a75d5f9f5ed306e59e45e4c60ebc1647b8dd02216e1c1e80171493d6ddffccf8b1ca16307d51614a6a1153989dd824fc147bfa0982a5011794d687 +srcfiles size=4378 texmf-dist/source/generic/tex4ht/ChangeLog texmf-dist/source/generic/tex4ht/Makefile texmf-dist/source/generic/tex4ht/README @@ -290005,15 +298982,21 @@ srcfiles size=3622 texmf-dist/source/generic/tex4ht/tex4ht-docbook.tex texmf-dist/source/generic/tex4ht/tex4ht-env.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-4hf.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-arphic.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-cjk-utf8.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-cjk.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-mnsymbol.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-opensans.tex texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-stix.tex + texmf-dist/source/generic/tex4ht/tex4ht-fonts-stix2.tex texmf-dist/source/generic/tex4ht/tex4ht-htcmd.tex texmf-dist/source/generic/tex4ht/tex4ht-html-speech-xtpipes.tex texmf-dist/source/generic/tex4ht/tex4ht-html-speech.tex @@ -290051,9 +299034,10 @@ srcfiles size=3622 texmf-dist/source/generic/tex4ht/tex4ht-word.tex texmf-dist/source/generic/tex4ht/tex4ht-xhtml-xtpipes.tex texmf-dist/source/generic/tex4ht/tex4ht-xhtmml-xtpipes.tex + texmf-dist/source/generic/tex4ht/update-htfonts texmf-dist/source/generic/tex4ht/wripro.tex texmf-dist/source/generic/tex4ht/xtpipes.tex -runfiles size=9795 +runfiles size=12209 texmf-dist/scripts/tex4ht/ht.sh texmf-dist/scripts/tex4ht/htcontext.sh texmf-dist/scripts/tex4ht/htcopy.pl @@ -290113,14 +299097,18 @@ runfiles size=9795 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/arydshln.4ht texmf-dist/tex/generic/tex4ht/austrian.4ht texmf-dist/tex/generic/tex4ht/authblk.4ht texmf-dist/tex/generic/tex4ht/awesomebox.4ht + texmf-dist/tex/generic/tex4ht/babel-sty-hooks.4ht texmf-dist/tex/generic/tex4ht/babel.4ht + texmf-dist/tex/generic/tex4ht/backref.4ht texmf-dist/tex/generic/tex4ht/beamer.4ht texmf-dist/tex/generic/tex4ht/beamerbasefont.4ht texmf-dist/tex/generic/tex4ht/beamerbasetoc.4ht texmf-dist/tex/generic/tex4ht/beton.4ht + texmf-dist/tex/generic/tex4ht/biblatex-chicago-hooks.4ht texmf-dist/tex/generic/tex4ht/biblatex-chicago.4ht texmf-dist/tex/generic/tex4ht/biblatex-hooks.4ht texmf-dist/tex/generic/tex4ht/biblatex.4ht @@ -290129,11 +299117,15 @@ runfiles size=9795 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/bookmark-hooks.4ht texmf-dist/tex/generic/tex4ht/booktabs.4ht texmf-dist/tex/generic/tex4ht/boxedminipage.4ht texmf-dist/tex/generic/tex4ht/braket.4ht + texmf-dist/tex/generic/tex4ht/breakurl-hooks.4ht + texmf-dist/tex/generic/tex4ht/breqn.4ht texmf-dist/tex/generic/tex4ht/bussproofs.4ht texmf-dist/tex/generic/tex4ht/byname.4ht + texmf-dist/tex/generic/tex4ht/cancel.4ht texmf-dist/tex/generic/tex4ht/caption-hooks.4ht texmf-dist/tex/generic/tex4ht/caption.4ht texmf-dist/tex/generic/tex4ht/catalan.4ht @@ -290160,12 +299152,16 @@ runfiles size=9795 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/csbulletin.4ht texmf-dist/tex/generic/tex4ht/csquotes.4ht texmf-dist/tex/generic/tex4ht/ctex-hooks.4ht texmf-dist/tex/generic/tex4ht/ctex.4ht + texmf-dist/tex/generic/tex4ht/ctexart-hooks.4ht + texmf-dist/tex/generic/tex4ht/ctexart.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/datetime2-hooks.4ht texmf-dist/tex/generic/tex4ht/dcolumn.4ht texmf-dist/tex/generic/tex4ht/debug.4ht texmf-dist/tex/generic/tex4ht/diagram.4ht @@ -290183,6 +299179,8 @@ runfiles size=9795 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/embedfile-hooks.4ht + texmf-dist/tex/generic/tex4ht/embedfile.4ht texmf-dist/tex/generic/tex4ht/emulateapj.4ht texmf-dist/tex/generic/tex4ht/endfloat.4ht texmf-dist/tex/generic/tex4ht/endnotes.4ht @@ -290222,7 +299220,11 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/float.4ht texmf-dist/tex/generic/tex4ht/floatflt.4ht texmf-dist/tex/generic/tex4ht/floatpag.4ht + texmf-dist/tex/generic/tex4ht/floatrow.4ht texmf-dist/tex/generic/tex4ht/foils.4ht + texmf-dist/tex/generic/tex4ht/fontawesome5-hooks.4ht + texmf-dist/tex/generic/tex4ht/fontawesome5-utex-helper-hooks.4ht + texmf-dist/tex/generic/tex4ht/fontawesome5.4ht texmf-dist/tex/generic/tex4ht/fontmath.4ht texmf-dist/tex/generic/tex4ht/fontspec-4ht.lua texmf-dist/tex/generic/tex4ht/fontspec-hooks.4ht @@ -290231,6 +299233,8 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/fontspec.4ht texmf-dist/tex/generic/tex4ht/footmisc.4ht texmf-dist/tex/generic/tex4ht/footnote-dw.4ht + texmf-dist/tex/generic/tex4ht/footnotebackref-hooks.4ht + texmf-dist/tex/generic/tex4ht/footnotebackref.4ht texmf-dist/tex/generic/tex4ht/framed.4ht texmf-dist/tex/generic/tex4ht/francais.4ht texmf-dist/tex/generic/tex4ht/french.4ht @@ -290246,6 +299250,7 @@ runfiles size=9795 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/graphbox-hooks.4ht texmf-dist/tex/generic/tex4ht/graphics-hooks.4ht texmf-dist/tex/generic/tex4ht/graphics.4ht texmf-dist/tex/generic/tex4ht/graphicx.4ht @@ -290267,18 +299272,20 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/html4-math.4ht texmf-dist/tex/generic/tex4ht/html4-russian-accents.4ht texmf-dist/tex/generic/tex4ht/html4-svg.4ht - texmf-dist/tex/generic/tex4ht/html4-uni.4ht texmf-dist/tex/generic/tex4ht/html4.4ht texmf-dist/tex/generic/tex4ht/html5.4ht texmf-dist/tex/generic/tex4ht/htmlw.4ht texmf-dist/tex/generic/tex4ht/hypcap.4ht texmf-dist/tex/generic/tex4ht/hyperref-hooks.4ht texmf-dist/tex/generic/tex4ht/hyperref.4ht + texmf-dist/tex/generic/tex4ht/hyperxmp-hooks.4ht + texmf-dist/tex/generic/tex4ht/hyperxmp.4ht texmf-dist/tex/generic/tex4ht/idxmake.4ht texmf-dist/tex/generic/tex4ht/ifthen.4ht texmf-dist/tex/generic/tex4ht/imakeidx-hooks.4ht texmf-dist/tex/generic/tex4ht/imakeidx.4ht texmf-dist/tex/generic/tex4ht/index.4ht + texmf-dist/tex/generic/tex4ht/indextools.4ht texmf-dist/tex/generic/tex4ht/info4ht.4ht texmf-dist/tex/generic/tex4ht/infoht4.4ht texmf-dist/tex/generic/tex4ht/infojh.4ht @@ -290319,6 +299326,8 @@ runfiles size=9795 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/lua-widow-control-hooks.4ht + texmf-dist/tex/generic/tex4ht/luatexja-hooks.4ht texmf-dist/tex/generic/tex4ht/m-tex4ht.tex texmf-dist/tex/generic/tex4ht/magyar.4ht texmf-dist/tex/generic/tex4ht/makeidx.4ht @@ -290334,6 +299343,7 @@ runfiles size=9795 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/menukeys.4ht texmf-dist/tex/generic/tex4ht/mex.4ht texmf-dist/tex/generic/tex4ht/mfpic.4ht texmf-dist/tex/generic/tex4ht/microtype.4ht @@ -290342,7 +299352,6 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/minted.4ht texmf-dist/tex/generic/tex4ht/mkht-scripts.4ht texmf-dist/tex/generic/tex4ht/mkht.4ht - texmf-dist/tex/generic/tex4ht/mktex4ht.4ht texmf-dist/tex/generic/tex4ht/mla.4ht texmf-dist/tex/generic/tex4ht/mls.4ht texmf-dist/tex/generic/tex4ht/moreverb.4ht @@ -290350,6 +299359,7 @@ runfiles size=9795 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/musicography.4ht texmf-dist/tex/generic/tex4ht/mwart.4ht texmf-dist/tex/generic/tex4ht/mwbk.4ht texmf-dist/tex/generic/tex4ht/mwrep.4ht @@ -290378,7 +299388,10 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/pctex32.4ht texmf-dist/tex/generic/tex4ht/pd1enc.4ht texmf-dist/tex/generic/tex4ht/pdfbase-hooks.4ht + texmf-dist/tex/generic/tex4ht/pdfpages.4ht + texmf-dist/tex/generic/tex4ht/pdfx-hooks.4ht texmf-dist/tex/generic/tex4ht/pgf.4ht + texmf-dist/tex/generic/tex4ht/physics.4ht texmf-dist/tex/generic/tex4ht/picins.4ht texmf-dist/tex/generic/tex4ht/pictex.4ht texmf-dist/tex/generic/tex4ht/pifont.4ht @@ -290415,6 +299428,7 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/scrartcl.4ht texmf-dist/tex/generic/tex4ht/scrbook.4ht texmf-dist/tex/generic/tex4ht/scrjura.4ht + texmf-dist/tex/generic/tex4ht/scrlayer.4ht texmf-dist/tex/generic/tex4ht/scrreprt.4ht texmf-dist/tex/generic/tex4ht/sectionbreak.4ht texmf-dist/tex/generic/tex4ht/seminar-a.4ht @@ -290424,7 +299438,9 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/showframe-hooks.4ht texmf-dist/tex/generic/tex4ht/sig-alternate.4ht texmf-dist/tex/generic/tex4ht/sistyle.4ht + texmf-dist/tex/generic/tex4ht/siunitx.4ht texmf-dist/tex/generic/tex4ht/skak.4ht + texmf-dist/tex/generic/tex4ht/slashbox.4ht texmf-dist/tex/generic/tex4ht/slides.4ht texmf-dist/tex/generic/tex4ht/slidesec.4ht texmf-dist/tex/generic/tex4ht/slovak.4ht @@ -290436,6 +299452,7 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/subcaption.4ht texmf-dist/tex/generic/tex4ht/subeqnarray.4ht texmf-dist/tex/generic/tex4ht/subfigure.4ht + texmf-dist/tex/generic/tex4ht/subfiles.4ht texmf-dist/tex/generic/tex4ht/subscript.4ht texmf-dist/tex/generic/tex4ht/supertabular.4ht texmf-dist/tex/generic/tex4ht/sverb.4ht @@ -290445,10 +299462,14 @@ runfiles size=9795 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/tablefootnote.4ht texmf-dist/tex/generic/tex4ht/tabu.4ht + texmf-dist/tex/generic/tex4ht/tabularray.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/tagpdf-hooks.4ht + texmf-dist/tex/generic/tex4ht/tasks.4ht texmf-dist/tex/generic/tex4ht/tcilatex.4ht texmf-dist/tex/generic/tex4ht/tcolorbox.4ht texmf-dist/tex/generic/tex4ht/tei-math.4ht @@ -290458,11 +299479,14 @@ runfiles size=9795 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/texmate.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/threeparttable.4ht texmf-dist/tex/generic/tex4ht/tikz-hooks.4ht + texmf-dist/tex/generic/tex4ht/titlesec-hooks.4ht texmf-dist/tex/generic/tex4ht/titlesec.4ht texmf-dist/tex/generic/tex4ht/titling.4ht texmf-dist/tex/generic/tex4ht/tocloft.4ht @@ -290474,6 +299498,7 @@ runfiles size=9795 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-math-hooks.4ht texmf-dist/tex/generic/tex4ht/unicode.4ht texmf-dist/tex/generic/tex4ht/url.4ht texmf-dist/tex/generic/tex4ht/usepackage-fontspec.4ht @@ -290495,10 +299520,12 @@ runfiles size=9795 texmf-dist/tex/generic/tex4ht/xcolor-hooks.4ht texmf-dist/tex/generic/tex4ht/xcolor.4ht texmf-dist/tex/generic/tex4ht/xecjk-hooks.4ht + texmf-dist/tex/generic/tex4ht/xifthen.4ht texmf-dist/tex/generic/tex4ht/xr-hooks.4ht texmf-dist/tex/generic/tex4ht/xr-hyper.4ht texmf-dist/tex/generic/tex4ht/xr.4ht texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht + texmf-dist/tex/generic/tex4ht/xskak.4ht texmf-dist/tex/generic/tex4ht/xy.4ht texmf-dist/tex4ht/base/unix/tex4ht.env texmf-dist/tex4ht/base/win32/tex4ht.env @@ -290514,515 +299541,1039 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncri8t.htf texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncro8c.htf texmf-dist/tex4ht/ht-fonts/alias/Century_Schoolbook_L/pncro8t.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Bold-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Italic-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Medium-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-Regular-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBold-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-t1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ts1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramondInitials-tlf-ot1.htf - texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond/EBGaramondInitials-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Initials/EBGaramondInitials-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Initials/EBGaramondInitials-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-lgr.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ts1.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmib.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmii.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/fncmiib.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmib.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmii.htf texmf-dist/tex4ht/ht-fonts/alias/Fourier-Math-Letters/futmiib.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Ex/jkpbex.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Exa/jkpbexa.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Sy/jkpbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Sy/jkpbsyw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Sy/jkpsyw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Sya/jkpbsya.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpbsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpssbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpssbsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpsssyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpsssybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syb/jkpsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syc/jkpbsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syc/jkpsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syd/jkpbsyd.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syd/jkpbsydw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syd/jkpsyd.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M-Syd/jkpsydw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpbmiaw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpbmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpbmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpbmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpmiaw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssvosbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssvosbmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssvosmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpssvosmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosbmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosbmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosbmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp--M/jkpvosmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbxit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbxn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbxsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbxscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpbxsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpmit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpmsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpmscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Companion/jkpmsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpfosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkposnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Expert/jkpvosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbxit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbxn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbxsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbxscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplbxsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplmit7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplmn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplmsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplmscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Companion/jkplmsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplfosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbxit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosmit7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-Expert/jkplvosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Ex/jkplbex.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Exa/jkplbexa.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Exa/jkplexa.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Sy/jkplbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Sy/jkplsy.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Sy/jkplsyw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkplbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkplbsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkplsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkpsslbsyb.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkpsslbsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syb/jkpsslsybw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syc/jkplbsyc.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syd/jkplbsyd.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syd/jkplbsydw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M-Syd/jkplsydw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmia.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmiaw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplbmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplmiaw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosbmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosbmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosbmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosbmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosmi.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosmif.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosmifw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-M/jkplvosmiw.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplkosnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SC-Expert/jkplosnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplkosnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light-SmallCaps/jkplosnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplfosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-Light/jkplvosmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpkosnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkpmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SC-Expert/jkposnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpkosnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkpmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp-SmallCaps/jkposnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpfosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkposnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbxit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosmit8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Kp/jkpvosmsl8t.htf texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi.htf texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi0.htf texmf-dist/tex4ht/ht-fonts/alias/LibertineMath/nxlbmi01.htf @@ -291379,6 +300930,97 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-sc-t1.htf texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-t1.htf texmf-dist/tex4ht/ht-fonts/alias/Linux_Libertine_T/LinLibertineTZI-tosf-ts1.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolA9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolB9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolC9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolD9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolE9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolF9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS-Bold9.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS10.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS12.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS5.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS6.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS7.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS8.htf + texmf-dist/tex4ht/ht-fonts/alias/MnSymbol/MnSymbolS9.htf texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-osf-ot1.htf texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-tlf-ot1.htf texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntx-BoldItalic-tosf-ot1.htf @@ -291391,6 +301033,598 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi.htf texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi5.htf texmf-dist/tex4ht/ht-fonts/alias/NewTXMath/ntxmi7.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Bold-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-BoldItalic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Italic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans/OpenSans-Regular-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed/OpenSansCondensed-Bold-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-Light-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Condensed_Light/OpenSansCondensed-LightItalic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBold-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_ExtraBold/OpenSans-ExtraBoldItalic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-Light-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_Light/OpenSans-LightItalic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBold-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-LGR-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-LGR-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-LGR-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-OT1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-OT1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-OT1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2A-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2A-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2A-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2B-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2B-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2B-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2C-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2C-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-T2C-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-TS1-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-TS1-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-TS1-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-X2-OsF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-X2-TLF.htf + texmf-dist/tex4ht/ht-fonts/alias/Open_Sans_SemiBold/OpenSans-SemiBoldItalic-X2-TOsF.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot1-stixgeneral-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot1-stixgeneral-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot1-stixgeneral-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot1-stixgeneralsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot2-stixgeneral-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot2-stixgeneral-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot2-stixgeneral-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ot2-stixgeneralsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/stix-mathbb-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/stix-mathex-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/stix-mathtt-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/t1-stixgeneral-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/t1-stixgeneral-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/t1-stixgeneral-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/t1-stixgeneralsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX/ts1-stixgeneral-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot1-stix2text-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot1-stix2text-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot1-stix2text-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot1-stix2textsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot2-stix2text-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot2-stix2text-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot2-stix2text-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ot2-stix2textsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/t1-stix2text-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/t1-stix2text-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/t1-stix2text-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/t1-stix2textsc-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ts1-stix2text-bold.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ts1-stix2text-bolditalic.htf + texmf-dist/tex4ht/ht-fonts/alias/STIX_Two/ts1-stix2text-italic.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Comp/jkpssmn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Comp/jkpssmsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Comp/jkpssmscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Comp/jkpssmsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbxn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbxsc7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbxscsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Companion/jkpssbxsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssfosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosbxn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosbxsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosmn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Exp/jkpssvosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpsskosnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnbsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnbscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnbxsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnbxscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc-Exp/jkpssosnmscsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpsskosnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnbsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnbscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnbxsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnbxscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnmsc8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp-Sc/jkpssosnmscsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssfosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosbxn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosbxsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Sf-Kp/jkpssvosmsl8t.htf texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-ly1.htf texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-ot1.htf texmf-dist/tex4ht/ht-fonts/alias/Spectral/Spectral-Bold-lf-sc-ly1.htf @@ -291861,6 +302095,35 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tlf-t1.htf texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tosf-ly1.htf texmf-dist/tex4ht/ht-fonts/alias/TeXGyreTermesX/ntx-Regular-tosf-t1.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Comp/jkpttbn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Comp/jkpttbsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Comp/jkpttmn7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Comp/jkpttmsl7c.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosnbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosnbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttosnmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttvosbn7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttvosbsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp-Exp/jkpttvosmsl7t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosnbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosnbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosnmn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttosnmsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttvosbn8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttvosbsl8t.htf + texmf-dist/tex4ht/ht-fonts/alias/Tt-Kp/jkpttvosmsl8t.htf texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb8c.htf texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb8t.htf texmf-dist/tex4ht/ht-fonts/alias/Utopia/futb9c.htf @@ -292456,6 +302719,298 @@ runfiles size=9795 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/arphic/bkaimp00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaimpv.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu02.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu03.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu20.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu21.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu22.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu25.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu26.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu30.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu31.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu32.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu33.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu4e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu4f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu50.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu51.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu52.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu53.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu54.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu55.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu56.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu57.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu58.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu59.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu5f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu60.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu61.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu62.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu63.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu64.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu65.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu66.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu67.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu68.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu69.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu6f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu70.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu71.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu72.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu73.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu74.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu75.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu76.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu77.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu78.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu79.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu7f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu80.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu81.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu82.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu83.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu84.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu85.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu86.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu87.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu88.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu89.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu8f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu90.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu91.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu92.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu93.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu94.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu95.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu96.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu97.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu98.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu99.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiu9f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuee.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuf6.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuf7.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuf8.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiufa.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiufe.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuff.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bkaiuv.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp01.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp02.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp03.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp04.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp05.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp06.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp07.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp08.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp09.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp10.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp11.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp12.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp13.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp14.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp15.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp16.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp17.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp18.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp19.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp20.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp21.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp22.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp23.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp25.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp26.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp27.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp28.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp29.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp30.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp31.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp32.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp33.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp34.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp35.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp36.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp37.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp38.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp39.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp40.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp41.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp42.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp43.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp44.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp45.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp46.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp47.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp48.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp49.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp50.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp51.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp52.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp53.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp54.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilp55.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/bsmilpv.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp01.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp02.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp03.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp04.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp06.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp07.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp08.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp09.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp10.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp11.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp12.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp13.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp14.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp15.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp16.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp17.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp18.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp19.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp20.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp21.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp22.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp23.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp24.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp25.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp26.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp27.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp28.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp29.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp30.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp31.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnlp32.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu01.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu02.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu03.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu04.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu20.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu21.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu22.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu23.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu24.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu25.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu26.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu30.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu31.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu32.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu4e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu4f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu50.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu51.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu52.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu53.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu54.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu55.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu56.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu57.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu58.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu59.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu5f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu60.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu61.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu62.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu63.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu64.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu65.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu66.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu67.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu68.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu69.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu6f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu70.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu71.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu72.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu73.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu74.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu75.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu76.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu77.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu78.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu79.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu7f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu80.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu81.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu82.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu83.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu84.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu85.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu86.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu87.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu88.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu89.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8d.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu8f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu90.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu91.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu92.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu93.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu94.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu95.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu96.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu97.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu98.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu99.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu9a.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu9b.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu9c.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu9e.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnu9f.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnufe.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gbsnuff.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gkaimp00.htf + texmf-dist/tex4ht/ht-fonts/alias/arphic/gkaiu31.htf texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8r.htf texmf-dist/tex4ht/ht-fonts/alias/bera/fveb8t.htf texmf-dist/tex4ht/ht-fonts/alias/bera/fver8r.htf @@ -294248,6 +304803,82 @@ runfiles size=9795 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/mlm/ec-mlm.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/ec-mlmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/mlmbsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/mlmex.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/mlmmi.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/mlmsy.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/rm-mlm.htf + texmf-dist/tex4ht/ht-fonts/alias/mlm/rm-mlmvt.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/musix13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/musix16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/musix20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/musix29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xadf13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xadf16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xadf20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xadf24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xadf29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xgreg13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xgreg16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xgreg20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xgreg24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xgreg29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld11.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld11d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld13d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld16d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld20d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld24d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsld29d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xsldu20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd11.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd11d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd13d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd16d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd20d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd24d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhd29d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu11.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu11d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu13d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu16d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu20d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu24d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhu29d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslhz20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu11.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu11d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu13.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu13d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu16.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu16d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu20d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu24.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu24d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu29.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslu29d.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslud20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslup20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xslz20.htf + texmf-dist/tex4ht/ht-fonts/alias/musix/xtie20.htf texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-ly1.htf texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-ot1.htf texmf-dist/tex4ht/ht-fonts/alias/ntxsups/ntxsups-Bold-t1.htf @@ -296143,31 +306774,75 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncr8c.htf texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncr8t.htf texmf-dist/tex4ht/ht-fonts/unicode/Century_Schoolbook_L/pncrc8t.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Italic-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-inf-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-sc-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-swash-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-titling-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-lf-ts1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-ly1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-ot1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramond-Regular-sup-t1.htf - texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond/EBGaramondInitials-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Initials/EBGaramondInitials-tlf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Italic/EBGaramond-Italic-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-lgr.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-t1.htf texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Extension/fourier-mex.htf texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Letters/fncmi.htf texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Letters/futmi.htf texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Symbols/fncsy.htf texmf-dist/tex4ht/ht-fonts/unicode/Fourier-Math-Symbols/futsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Ex/jkpex.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Ex/jkpssbex.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Ex/jkpssex.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Exa/jkpexa.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Sy/jkpsy.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M-Sya/jkpsya.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpbmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpmi.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpmif.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpssbmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpssbmif.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpssmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp--M/jkpssmif.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Companion/jkpmn7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Expert/jkpmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Expert/jkposmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Expert/jkpvosmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Ex/jkplex.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Sy/jkplbsyw.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Syb/jkplsyb.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Syb/jkpsslsyb.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Syc/jkplsyc.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M-Syd/jkplsyd.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-M/jkplmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-Light-SmallCaps/jkplosmsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SC-Expert/jkpkosmsc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SC-Expert/jkpmsc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SC-Expert/jkposnmsc7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SmallCaps/jkpkmsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SmallCaps/jkpkosmsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp-SmallCaps/jkpmsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp/jkpmn8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp/jkposmn8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Kp/jkpvosmn8t.htf texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlbmi02.htf texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlbmia.htf texmf-dist/tex4ht/ht-fonts/unicode/LibertineMath/nxlmia.htf @@ -296255,17 +306930,105 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-ly1.htf texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-ot1.htf texmf-dist/tex4ht/ht-fonts/unicode/MinLib/MinLibReg-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolA-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolB-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolC-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolD-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolE-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolF-Bold10.htf + texmf-dist/tex4ht/ht-fonts/unicode/MnSymbol/MnSymbolS-Bold10.htf texmf-dist/tex4ht/ht-fonts/unicode/NCXFourierMath/zncfbmia.htf texmf-dist/tex4ht/ht-fonts/unicode/NCXFourierMath/zncfmia.htf texmf-dist/tex4ht/ht-fonts/unicode/NewTXMath/ntx-BoldItalic-lf-ot1.htf texmf-dist/tex4ht/ht-fonts/unicode/NewTXMath/ntx-Italic-lf-ot1.htf texmf-dist/tex4ht/ht-fonts/unicode/Nimbus_Roman_No9_L/tcxsl.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_ExtraBold/OpenSans-ExtraBold-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-LGR-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-OT1-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-T1-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-T2A-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-T2B-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-T2C-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-TS1-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/Open_Sans_Light/OpenSans-LightItalic-X2-LF.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ot1-stixgeneral.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ot1-stixgeneralsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ot2-stixgeneral.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ot2-stixgeneralsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathbb.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathbbit-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathbbit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathcal-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathcal.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathex.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathfrak-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathfrak.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathit-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathrm-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathscr-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathscr.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathsf-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathsf.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathsfit-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathsfit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/stix-mathtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/t1-stixgeneral.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/t1-stixgeneralsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ts1-stixgeneral-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ts1-stixgeneral-italic.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX/ts1-stixgeneral.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/ot1-stix2text.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/ot1-stix2textsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/ot2-stix2text.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/ot2-stix2textsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathbb.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathbbit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathcal.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathex.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathfrak-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathfrak.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathit-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathrm-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathrm.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathscr-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathscr.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathsf-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathsf.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathsfit-bold.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathsfit.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/stix2-mathtt.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/t1-stix2text.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/t1-stix2textsc.htf + texmf-dist/tex4ht/ht-fonts/unicode/STIX_Two/ts1-stix2text.htf + texmf-dist/tex4ht/ht-fonts/unicode/Sf-Kp-Sc/jkpsskosbsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Sf-Kp-Sc/jkpssosbsc8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-sc-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-sc-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-sc-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-lf-ts1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-orn-u.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-sup-ly1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-sup-ot1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Spectral/Spectral-Regular-sup-t1.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermes/ts1-qtmb.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntx-Bold-lf-ly1.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntx-Bold-lf-t1.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-ly1.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-ot1.htf texmf-dist/tex4ht/ht-fonts/unicode/TeXGyreTermesX/ntxdenoms-Regular-t1.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp-Exp/jkpttmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp-Exp/jkpttosmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp-Exp/jkpttosnmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp-Exp/jkpttvosmn7t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp/jkpttmn8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp/jkpttosmn8t.htf + texmf-dist/tex4ht/ht-fonts/unicode/Tt-Kp/jkpttvosmn8t.htf texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi7t.htf texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi8c.htf texmf-dist/tex4ht/ht-fonts/unicode/URW_Chancery_L/pzcmi8r.htf @@ -296317,6 +307080,290 @@ runfiles size=9795 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/arphic/bkaimp01.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp02.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp03.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp04.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp05.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp06.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp07.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp08.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp09.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp10.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp11.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp12.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp13.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp14.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp15.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp16.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp17.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp18.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp19.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp20.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp21.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp22.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp23.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp25.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp26.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp27.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp28.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp29.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp30.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp31.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp32.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp33.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp34.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp35.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp36.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp37.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp38.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp39.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp40.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp41.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp42.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp43.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp44.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp45.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp46.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp47.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp48.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp49.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp50.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp51.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp52.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp53.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp54.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bkaimp55.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu00.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu02.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu03.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu20.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu21.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu22.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu25.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu26.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu30.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu31.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu32.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu33.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu4e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu4f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu50.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu51.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu52.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu53.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu54.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu55.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu56.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu57.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu58.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu59.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu5f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu60.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu61.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu62.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu63.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu64.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu65.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu66.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu67.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu68.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu69.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu6f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu70.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu71.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu72.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu73.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu74.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu75.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu76.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu77.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu78.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu79.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu7f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu80.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu81.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu82.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu83.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu84.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu85.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu86.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu87.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu88.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu89.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu8f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu90.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu91.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu92.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu93.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu94.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu95.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu96.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu97.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu98.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu99.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiu9f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuee.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuf6.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuf7.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuf8.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiufa.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiufe.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuff.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/bsmiuv.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp01.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp02.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp03.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp04.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp06.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp07.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp08.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp09.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp10.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp11.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp12.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp13.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp14.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp15.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp16.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp17.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp18.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp19.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp20.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp21.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp22.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp23.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp24.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp25.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp26.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp27.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp28.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp29.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp30.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp31.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaimp32.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu00.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu01.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu02.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu03.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu04.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu20.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu21.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu22.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu23.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu24.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu25.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu26.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu30.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu32.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu4e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu4f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu50.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu51.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu52.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu53.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu54.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu55.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu56.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu57.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu58.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu59.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu5f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu60.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu61.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu62.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu63.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu64.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu65.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu66.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu67.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu68.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu69.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu6f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu70.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu71.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu72.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu73.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu74.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu75.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu76.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu77.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu78.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu79.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu7f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu80.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu81.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu82.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu83.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu84.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu85.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu86.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu87.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu88.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu89.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8d.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu8f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu90.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu91.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu92.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu93.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu94.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu95.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu96.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu97.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu98.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu99.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu9a.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu9b.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu9e.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiu9f.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiufe.htf + texmf-dist/tex4ht/ht-fonts/unicode/arphic/gkaiuff.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 @@ -296482,257 +307529,257 @@ runfiles size=9795 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/cjk/utf8/unisong01.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong02.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong03.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong04.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong05.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong06.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong07.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong08.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong09.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong0f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong10.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong11.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong12.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong13.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong14.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong15.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong16.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong17.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong18.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong19.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong1f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong20.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong21.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong22.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong23.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong24.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong25.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong26.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong27.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong28.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong29.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong2f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong30.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong31.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong32.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong33.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong34.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong35.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong36.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong37.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong38.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong39.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong3f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong40.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong41.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong42.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong43.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong44.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong45.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong46.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong47.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong48.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong49.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong4f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong50.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong51.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong52.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong53.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong54.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong55.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong56.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong57.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong58.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong59.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong5f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong60.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong61.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong62.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong63.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong64.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong65.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong66.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong67.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong68.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong69.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong6f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong70.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong71.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong72.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong73.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong74.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong75.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong76.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong77.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong78.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong79.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong7f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong80.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong81.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong82.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong83.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong84.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong85.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong86.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong87.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong88.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong89.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong8f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong90.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong91.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong92.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong93.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong94.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong95.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong96.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong97.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong98.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong99.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9a.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9b.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9c.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9d.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9e.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisong9f.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonga9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongaa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongab.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongac.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongad.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongae.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongaf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongb9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongba.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongbb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongbc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongbd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongbe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongbf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongc9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongca.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongcb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongcc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongcd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongce.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongcf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongd7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongdc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongdd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongde.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongdf.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonge9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongea.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongeb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongec.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisonged.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongee.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongef.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf0.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf1.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf2.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf3.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf4.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf5.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf6.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf7.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf8.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongf9.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongfa.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongfb.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongfc.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongfd.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongfe.htf + texmf-dist/tex4ht/ht-fonts/unicode/cjk/utf8/unisongff.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 @@ -296762,6 +307809,7 @@ runfiles size=9795 texmf-dist/tex4ht/ht-fonts/unicode/ebg/ntxebgmia.htf texmf-dist/tex4ht/ht-fonts/unicode/ec/eccc-uni.htf texmf-dist/tex4ht/ht-fonts/unicode/erewMath/zutmia.htf + texmf-dist/tex4ht/ht-fonts/unicode/fontawesome/fa5.htf texmf-dist/tex4ht/ht-fonts/unicode/fourier-orns/futrorn.htf texmf-dist/tex4ht/ht-fonts/unicode/futr-sup/futr-sup.htf texmf-dist/tex4ht/ht-fonts/unicode/futrc9d/futrc9d.htf @@ -296877,6 +307925,7 @@ runfiles size=9795 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/mathkerncmssi/mathkerncmssi.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 @@ -296888,6 +307937,19 @@ runfiles size=9795 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/musix/MuseJazzText.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/frenchtab.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/musix11.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/musix24.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/musixsps.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/musixspx.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/mxsk.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xadf11.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xgreg11.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xppff10.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xsldd20.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xslhz20d.htf + texmf-dist/tex4ht/ht-fonts/unicode/musix/xslz20d.htf texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Italic-t1.htf texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Regular-ly1.htf texmf-dist/tex4ht/ht-fonts/unicode/ntxsups/ntxsups-Regular-ot1.htf @@ -296967,6 +308029,7 @@ runfiles size=9795 texmf-dist/tex4ht/xtpipes/xtpipes-default.4xt texmf-dist/tex4ht/xtpipes/xtpipes-map.dtd texmf-dist/tex4ht/xtpipes/xtpipes.dtd +catalogue-also make4ht tex4ebook catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=tex4ht catalogue-contact-home https://tug.org/tex4ht catalogue-contact-repository https://puszcza.gnu.org.ua/projects/tex4ht/ @@ -296977,10 +308040,10 @@ catalogue-topics cvt-html name tex4ht.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of tex4ht -containersize 84256 -containerchecksum e21524b807950f290534bc66154ed505f836fa817a49eff67418ab71fa1bc9443b51af29294ba343384e2bad348da58eb6833cc3cfc4f4d732f919d6adfab27f +containersize 84260 +containerchecksum 46e9cbcf5522bfdc81c0ea388627c02057cdedfdb34bba1209c95f140d8eb727c4cf506494b6b9a1ff0ecb7b3d670de9b97656e2ae7a3fc3a7e05fd0dbb9fecc binfiles arch=aarch64-linux size=75 bin/aarch64-linux/ht bin/aarch64-linux/htcontext @@ -296997,11 +308060,11 @@ binfiles arch=aarch64-linux size=75 name tex4ht.amd64-freebsd category Package -revision 57941 +revision 62206 shortdesc amd64-freebsd files of tex4ht -containersize 109184 -containerchecksum bb979865e83f75d817812758761084c9c8126529d54ec4115a04aed20beadec7e8d911c9f55f2954392dd9a533cd96aade7b56ae0548cd6f75bf156eb143ae6d -binfiles arch=amd64-freebsd size=91 +containersize 108804 +containerchecksum 91b6a35efc50930cbd76d07635b2fcdd5d0708373a37cec54b22a7bde5e4269b0e3427466205f8e4e632ca73d47d75cf7c905859acd27e5ffd584b5025a76f8c +binfiles arch=amd64-freebsd size=92 bin/amd64-freebsd/ht bin/amd64-freebsd/htcontext bin/amd64-freebsd/htlatex @@ -297017,10 +308080,10 @@ binfiles arch=amd64-freebsd size=91 name tex4ht.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of tex4ht -containersize 87364 -containerchecksum d21419094e9c5a54c0375deaf564e6f60d11ff8b6509bfe2c8601b4d8e5f0c4628281b4f39bd64d589bde5fb261fb477674a77febf0f9d46d886958998eb43ce +containersize 87356 +containerchecksum fd3f6de89767dbd27d359ba646fe959a2378a165d44e086879a266bab8df36ff47145569594720cb5ac49436f4c69f0b2e060e87ef7fdd7cd5d7ab782ff33384 binfiles arch=amd64-netbsd size=96 bin/amd64-netbsd/ht bin/amd64-netbsd/htcontext @@ -297037,10 +308100,10 @@ binfiles arch=amd64-netbsd size=96 name tex4ht.armhf-linux category Package -revision 57957 +revision 63092 shortdesc armhf-linux files of tex4ht -containersize 69944 -containerchecksum 6c276247523ff31ee7249aa29b53ded1435f1cd00c40b3a095e358f4a84043883353a9bd4be3c6540d7a1ea9a3e199289c298bfd6dc16b1d1b0ef7227a28e727 +containersize 69948 +containerchecksum 523d52e5854c19172afe3cdf7843b00a372f08e45cce286dadc69a2891f6e0533571f7ef19a56cfc76d5851cf13c54ae35c9350580b8d6cf54ed5c30b717525e binfiles arch=armhf-linux size=65 bin/armhf-linux/ht bin/armhf-linux/htcontext @@ -297055,33 +308118,13 @@ binfiles arch=armhf-linux size=65 bin/armhf-linux/tex4ht bin/armhf-linux/xhlatex -name tex4ht.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of tex4ht -containersize 51080 -containerchecksum b004e48cba17cf1405692b2e4bc788678b919cb605c7baa81ffa87baf92e8b7d18686644f92ac8ee97962ce71fa272b35cf4aa89a96b5c07f666a3c996e625f4 -binfiles arch=i386-cygwin size=42 - bin/i386-cygwin/ht - bin/i386-cygwin/htcontext - bin/i386-cygwin/htlatex - bin/i386-cygwin/htmex - bin/i386-cygwin/httex - bin/i386-cygwin/httexi - bin/i386-cygwin/htxelatex - bin/i386-cygwin/htxetex - bin/i386-cygwin/mk4ht - bin/i386-cygwin/t4ht.exe - bin/i386-cygwin/tex4ht.exe - bin/i386-cygwin/xhlatex - name tex4ht.i386-freebsd category Package -revision 57961 +revision 62206 shortdesc i386-freebsd files of tex4ht -containersize 93092 -containerchecksum 7628a85b2306b8b1592896f9aa23561caaa0f5e815c002e7ac4306797d51badc0360f7c442c7b0e4a4e4956450edd6374f06a514839463a7827d8818bb8c2d71 -binfiles arch=i386-freebsd size=81 +containersize 93760 +containerchecksum 6016648b7184bb448ba82ac6e27f86ee7aba4a96d2300b09c343f401d81ba42e331ada8568983e07bc73f403fe70b718865b08a70731759e6676b03fe2cef65a +binfiles arch=i386-freebsd size=82 bin/i386-freebsd/ht bin/i386-freebsd/htcontext bin/i386-freebsd/htlatex @@ -297097,11 +308140,11 @@ binfiles arch=i386-freebsd size=81 name tex4ht.i386-linux category Package -revision 57878 +revision 62210 shortdesc i386-linux files of tex4ht -containersize 89116 -containerchecksum ed1e4e6a44d3848c59e9689ef73c07775a2a507d48cab3cd300f9541e7a7449be24b59aa37fdb7df34b8b92a21011ad0a6407ca19026c762e6049c5be2d57d66 -binfiles arch=i386-linux size=79 +containersize 91280 +containerchecksum 87d25100c89793448479bfe30c00d055b09563810a68ee242a68e78fb97e2cbfb9cd94288911b32dc37164a39d2efcd319a13bcd85898058e05e53b0b028102d +binfiles arch=i386-linux size=81 bin/i386-linux/ht bin/i386-linux/htcontext bin/i386-linux/htlatex @@ -297117,10 +308160,10 @@ binfiles arch=i386-linux size=79 name tex4ht.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of tex4ht -containersize 76196 -containerchecksum 36a0a00eba3e9f94abf478131dafe79bb131b06ea6efe4dedb8ed90dea7db0ef5d0554de93094e9f321f47d97e0572c6819452411a330f666734ee824cb1fd87 +containersize 76164 +containerchecksum ab12faad97844e360f4f3cc5c3bc8c9f182cd2db6599c6623594467750f502e1ba6f4f25e9ffd016b17098c8d942418df9c12d9e00f0c1b397b18a9ff5447438 binfiles arch=i386-netbsd size=89 bin/i386-netbsd/ht bin/i386-netbsd/htcontext @@ -297137,10 +308180,10 @@ binfiles arch=i386-netbsd size=89 name tex4ht.i386-solaris category Package -revision 57938 +revision 62206 shortdesc i386-solaris files of tex4ht -containersize 83896 -containerchecksum c1f91703c3971905ab6520cea22b366a816bf37800f90a688d97326a483af899f6947f419b6ac15669836dcedff27f4ef75ff485ebb1420f82b261b85c6e1d93 +containersize 83964 +containerchecksum bc02ccf43d0e56d8b53e6b2f858314945c973c889a780b9bb85669f51271d322aea863d8a2a7476c064b87d704ca0f09954cf1eaa803233b769b9ee14dae3c18 binfiles arch=i386-solaris size=69 bin/i386-solaris/ht bin/i386-solaris/htcontext @@ -297157,11 +308200,11 @@ binfiles arch=i386-solaris size=69 name tex4ht.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of tex4ht -containersize 185088 -containerchecksum 075ac815399569dc7f740d7b369b72dbda9a7480c4def94b267e9c13925b36a42116d8cbac7725ed50d724bf9520820a80e1d28101315ff29f63301c26b5f784 -binfiles arch=universal-darwin size=188 +containersize 184636 +containerchecksum 55651cb8b7ef723abd1f91edf49c55f2fc5c8a40ab585fe99f75609f793e33afae93ba9bfd70328b15102feed778e11437cf66600f41be4a637354dd5a607ec7 +binfiles arch=universal-darwin size=192 bin/universal-darwin/ht bin/universal-darwin/htcontext bin/universal-darwin/htlatex @@ -297175,41 +308218,41 @@ binfiles arch=universal-darwin size=188 bin/universal-darwin/tex4ht bin/universal-darwin/xhlatex -name tex4ht.win32 -category Package -revision 58783 -shortdesc win32 files of tex4ht -containersize 57760 -containerchecksum af0ad6feb323996923ce9cb1a93d9c8e55a8cccad2ede5259340151324e398b1ee2de84d8644da40467a77a0a686df39f58cd178e2d1e965c4fc18b30ad7d1be -binfiles arch=win32 size=51 - bin/win32/ht.bat - bin/win32/ht.exe - bin/win32/htcontext.bat - bin/win32/htcontext.exe - bin/win32/htlatex.bat - bin/win32/htlatex.exe - bin/win32/htmex.bat - bin/win32/htmex.exe - bin/win32/httex.bat - bin/win32/httex.exe - bin/win32/httexi.bat - bin/win32/httexi.exe - bin/win32/htxelatex.bat - bin/win32/htxelatex.exe - bin/win32/htxetex.bat - bin/win32/htxetex.exe - bin/win32/mk4ht.exe - bin/win32/t4ht.exe - bin/win32/tex4ht.exe - bin/win32/xhlatex.bat - bin/win32/xhlatex.exe +name tex4ht.windows +category Package +revision 65891 +shortdesc windows files of tex4ht +containersize 62196 +containerchecksum b32ac6abd80f87959a659c54bff4ed92c8b5bbc24b4f7ce9ac45247de1aa56b5eb20191102e44a07d9e86262287ffa2eaed93deadfc5e2eaccf5a44f31ba47f3 +binfiles arch=windows size=62 + bin/windows/ht.bat + bin/windows/ht.exe + bin/windows/htcontext.bat + bin/windows/htcontext.exe + bin/windows/htlatex.bat + bin/windows/htlatex.exe + bin/windows/htmex.bat + bin/windows/htmex.exe + bin/windows/httex.bat + bin/windows/httex.exe + bin/windows/httexi.bat + bin/windows/httexi.exe + bin/windows/htxelatex.bat + bin/windows/htxelatex.exe + bin/windows/htxetex.bat + bin/windows/htxetex.exe + bin/windows/mk4ht.exe + bin/windows/t4ht.exe + bin/windows/tex4ht.exe + bin/windows/xhlatex.bat + bin/windows/xhlatex.exe name tex4ht.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of tex4ht -containersize 58360 -containerchecksum f1f325d0f02682e671b70696773c7d103cab13d152d53603391b7a61bd4ec8491ea877170428b6ac271f5f1b884609c864a2a00fd870319907ee97e0b02686bb +containersize 58016 +containerchecksum 6c5cf7a37bf9fa80fa786a823651082b702b3cde0b49dcf6d1d9f03b8a0d42d62744866f4cc214e6bcbf6d2a0e5070c1f0a317bb81ade842949acc5d166568c1 binfiles arch=x86_64-cygwin size=42 bin/x86_64-cygwin/ht bin/x86_64-cygwin/htcontext @@ -297226,10 +308269,10 @@ binfiles arch=x86_64-cygwin size=42 name tex4ht.x86_64-darwinlegacy category Package -revision 58231 +revision 62206 shortdesc x86_64-darwinlegacy files of tex4ht -containersize 84832 -containerchecksum a7fdb7d8bfa1ce3a6425f28d8264882f31df2d0d2ed81e54a5b953828eba9e30e09e207bf3da0f123d8411fd9cd476757d72514174b963563391c8f680294557 +containersize 84796 +containerchecksum 4269451f548d1d3f6131f732c491edd50888eff44b67c8bea43ecd228ab8f6fb25ac43ba3a3e6c28b0ed6a671b8a4366ffb429b9572a6c98911a3f8c822d2c3e binfiles arch=x86_64-darwinlegacy size=73 bin/x86_64-darwinlegacy/ht bin/x86_64-darwinlegacy/htcontext @@ -297246,11 +308289,11 @@ binfiles arch=x86_64-darwinlegacy size=73 name tex4ht.x86_64-linux category Package -revision 57878 +revision 62187 shortdesc x86_64-linux files of tex4ht -containersize 92628 -containerchecksum 71aa44bf19e515ae4219d1698d8d75776909b242994f6110d601a4bd2cc5a1a612d06534cd4c54db8e528490d0a991e0bf732663c507412a091828ca02828477 -binfiles arch=x86_64-linux size=73 +containersize 93204 +containerchecksum 7fc88f1de95745672660a4760a3ddc868c38558db375e42a47c062c8da4af3215ed68b895f6925d38e55c285e8ffd66fd7c05244fd1cef03fed9d82efc1938a8 +binfiles arch=x86_64-linux size=78 bin/x86_64-linux/ht bin/x86_64-linux/htcontext bin/x86_64-linux/htlatex @@ -297266,10 +308309,10 @@ binfiles arch=x86_64-linux size=73 name tex4ht.x86_64-linuxmusl category Package -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of tex4ht -containersize 94868 -containerchecksum 0e097e41da8d1480f5e2a06b00d3478097767e3a8b816168312a3985f2789a33dda627f2d843d7b93a7293bd3f1e3339596e2b50eefec2e79c5ebd97a7d3ae97 +containersize 94492 +containerchecksum a4ac05349364e155d875f9eec8dc224c85c8bac35f2b5bfa024409a3f3e08fa08ce84e523ba1159a390799b7b3de7a79fdb7f11a0a330289ac7f86364933b774 binfiles arch=x86_64-linuxmusl size=77 bin/x86_64-linuxmusl/ht bin/x86_64-linuxmusl/htcontext @@ -297286,10 +308329,10 @@ binfiles arch=x86_64-linuxmusl size=77 name tex4ht.x86_64-solaris category Package -revision 57938 +revision 62206 shortdesc x86_64-solaris files of tex4ht -containersize 95240 -containerchecksum 2ba36c276e52acf2e8f4da038ab551a510851f2c112a76144ea25b5bc1f7690efe40be3640aaff85402565617a9f09be0091a4ef1d4e45dc4b9d5dbd4ef90e84 +containersize 95288 +containerchecksum d23a6e51a0c92d7886b74e509b9069103970df4984e2de2bb2df28a6ae36494d661825dadbf24d292d9b90323239eb2845806f66c2e01fbe0fc482c30ed87baa binfiles arch=x86_64-solaris size=77 bin/x86_64-solaris/ht bin/x86_64-solaris/htcontext @@ -297304,6 +308347,178 @@ binfiles arch=x86_64-solaris size=77 bin/x86_64-solaris/tex4ht bin/x86_64-solaris/xhlatex +name texaccents +category Package +revision 64447 +shortdesc Convert composite accented characters to Unicode +longdesc This small utility, written in SNOBOL, converts the composition +longdesc of special characters to Unicode, e. g. \"{a} - a, \k{a} - a, +longdesc ... +depend texaccents.ARCH +containersize 4752 +containerchecksum 5a2a79c9faddebd523939cb3cf42236b1d2c441a036cd7fc6f6f62422e5142cdbc0a45ddaa9e642266c41c9fe5b723fc440d0372639cffd399a89d489bd11b66 +doccontainersize 68972 +doccontainerchecksum 87bc11f186513adbf32c15af2f1c1253dd72802fb2008b76b9d7d67fc0a039aab0d2424fb853b6bd8e968cd4e9c1cd93bff786fa07e84593fbda99191b053eaa +docfiles size=29 + texmf-dist/doc/man/man1/texaccents.1 + texmf-dist/doc/man/man1/texaccents.man1.pdf + texmf-dist/doc/support/texaccents/LICENSE + texmf-dist/doc/support/texaccents/README.md details="Readme" + texmf-dist/doc/support/texaccents/testaccents-in + texmf-dist/doc/support/texaccents/texaccents.md + texmf-dist/doc/support/texaccents/texaccents.pdf details="Package documentation" + texmf-dist/doc/support/texaccents/texaccents.spt + texmf-dist/doc/support/texaccents/texaccents.tex +srccontainersize 2344 +srccontainerchecksum 8bf5d4957008833d54f87eff9feb14f60694ea02e7e9fd2cd5c5d2e2db3f6de3a33784121208ffab516763fbf578125399cbd6f39750e6bb0162a65c2fc44f24 +srcfiles size=5 + texmf-dist/source/support/texaccents/compiler.inc + texmf-dist/source/support/texaccents/delete.inc + texmf-dist/source/support/texaccents/grepl.inc + texmf-dist/source/support/texaccents/newline.inc + texmf-dist/source/support/texaccents/systype.inc +runfiles size=4 + texmf-dist/scripts/texaccents/texaccents.sno +catalogue-ctan /support/texaccents +catalogue-license mit +catalogue-topics inputenc +catalogue-version 1.0.1 + +name texaccents.aarch64-linux +category Package +revision 64447 +shortdesc aarch64-linux files of texaccents +containersize 340 +containerchecksum e4ba868fc7bd82d2315fe96a4124888e38500171db7dc95df1be75124da160ad4ac2733e222e41e8aa97505073e4ab5234909290c9f3a94d7454be639a4b9dad +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texaccents + +name texaccents.amd64-freebsd +category Package +revision 64447 +shortdesc amd64-freebsd files of texaccents +containersize 340 +containerchecksum 8b5db6df08011f7c49e5e9a7db8295155989d18820b9f58cf92ac96f0d8a86b4c4a500e135d1c1e326f8af57da25ecfd353dfe2d31719330e2781f3c2936190c +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texaccents + +name texaccents.amd64-netbsd +category Package +revision 64447 +shortdesc amd64-netbsd files of texaccents +containersize 340 +containerchecksum 7b418499732f6fb2df3abe772ffc011b7dc74d4425b16771abb2da0b6cb9cbe95506a9781237072de2b812e533e2ffc2e7f3544eb8ce0b5bcaac79be5d94558d +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texaccents + +name texaccents.armhf-linux +category Package +revision 64447 +shortdesc armhf-linux files of texaccents +containersize 340 +containerchecksum 7ebb2ad3911efa85d535bdb13f8a5a8cfb68ddc63b10788ac1983f9b99e6446a2bc94031f8d066b9dd0cbfe9aa7360f0ea36fa028629bb2eaa22c2bf50f7287d +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texaccents + +name texaccents.i386-freebsd +category Package +revision 64447 +shortdesc i386-freebsd files of texaccents +containersize 340 +containerchecksum a7230f29fe7232acb194edb7df8f55225e556f5008f17e39b8d0739b8179ecc0b4d052155c7ce3147d6ecc26f557ea60da6dfdae1cfa7a39de5184658eb79fcb +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texaccents + +name texaccents.i386-linux +category Package +revision 64447 +shortdesc i386-linux files of texaccents +containersize 340 +containerchecksum 164f13080a1ff5df9e170f4d5e5200f950b7e40b6a0cf0c103e7d33004ff4d6f1cbc613210054541130ec1ec735fb0acbf68c64baebf59d1e6f9577cc13aea89 +binfiles arch=i386-linux size=1 + bin/i386-linux/texaccents + +name texaccents.i386-netbsd +category Package +revision 64447 +shortdesc i386-netbsd files of texaccents +containersize 336 +containerchecksum a6b5f9f36f8ed69b010d26c4398c60e38063a11cee9039d6aa201ae4c72fb5036d4985e616fcc542ecb443954fd699349d6d6ca2d7ed99f8e0bd56d093546fbb +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texaccents + +name texaccents.i386-solaris +category Package +revision 64447 +shortdesc i386-solaris files of texaccents +containersize 340 +containerchecksum 3a25a007d3eacd319ae21c08f7900e3bdae33d61dd59ba9a1626efcca187fe0ecc173650efaedf25d57a1676d811b09f8cdd14dcd19327650da74394bf001466 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texaccents + +name texaccents.universal-darwin +category Package +revision 64447 +shortdesc universal-darwin files of texaccents +containersize 344 +containerchecksum db9597141b34da4930040c9a999542bc3b1025506e59b810ddf5a90f3add7cf8b80092f8a51dd980db6464dfe0440cc7379cfce15d533d49300aae10454d649a +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texaccents + +name texaccents.windows +category Package +revision 65891 +shortdesc windows files of texaccents +containersize 84952 +containerchecksum 4349e15e9fa8374cc15f0f0e08b9e19ee12cd75e120c192ea2e11aea6b27ceeb47f28052653891abea29d036fd9f5d0b8ed3ea45c96c7a2fe278ae9ac5fdd17e +binfiles arch=windows size=39 + bin/windows/texaccents.exe + +name texaccents.x86_64-cygwin +category Package +revision 64447 +shortdesc x86_64-cygwin files of texaccents +containersize 340 +containerchecksum 59df278522c1e588964e2ec42f4bda983a413e3cc914728c63e1b97265b3582b040fe187257bd327062cdcdfe806631cc9b5c6916f3c6ad34f67eac2deda1e53 +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texaccents + +name texaccents.x86_64-darwinlegacy +category Package +revision 64447 +shortdesc x86_64-darwinlegacy files of texaccents +containersize 348 +containerchecksum 73fd9fa80e259248b2bfaaf84ff5ea605e2d39b5e0797f36a255e92429a1b15a168a1f1e8b6b99e826e1fb2fa52ec69dff833503f02cf5182f3a93e4e339ea8e +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texaccents + +name texaccents.x86_64-linux +category Package +revision 64447 +shortdesc x86_64-linux files of texaccents +containersize 340 +containerchecksum d687ad876d3d09effc74ede293f85836cdd2b68fb946fe59586d21e5106a10578e53b69e59fe384ebae24f88b4879aee3e75ce418ab4a1714a78ecb36748cbda +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texaccents + +name texaccents.x86_64-linuxmusl +category Package +revision 64447 +shortdesc x86_64-linuxmusl files of texaccents +containersize 344 +containerchecksum 72cadcfafbf1a08f9dcc2ada95244c2bb07da4b60774023210f0569b75499d148588ec1f23951aca44bfe7a5c5f6684e7ef496d237735732cdf58dc6be2fea4b +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texaccents + +name texaccents.x86_64-solaris +category Package +revision 64447 +shortdesc x86_64-solaris files of texaccents +containersize 340 +containerchecksum b8f41910d310e63c8cd9713df45ae754ac7783aba329b40e32affcf83ec647f8200186a19af607ca4ad238b5251fcb5b537db32cf00c8e508e0175c72bcd2513 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texaccents + name texapi category Package revision 54080 @@ -297435,15 +308650,6 @@ containerchecksum 6704f8e561d39ff4e59b87b765f096749e4b4fd8d9b9016b1787611fc59eb4 binfiles arch=armhf-linux size=1 bin/armhf-linux/texcount -name texcount.i386-cygwin -category Package -revision 13103 -shortdesc i386-cygwin files of texcount -containersize 340 -containerchecksum 4c7e9842e80160793bd96e31a225ecb47d52072109adc747f5feba0e8ffb75ec3e82bf5514c92ee0bba0199d333fafe53c79148d7cce0e489c8bbeca0f36f0cd -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texcount - name texcount.i386-freebsd category Package revision 16472 @@ -297489,14 +308695,14 @@ containerchecksum 6ff4421cece57ff3e8e0718c4826a6d5890c71315b3e7f1428c0cc66a27e99 binfiles arch=universal-darwin size=1 bin/universal-darwin/texcount -name texcount.win32 +name texcount.windows category Package -revision 15404 -shortdesc win32 files of texcount -containersize 684 -containerchecksum ac70c3ec9a89ddf896a005c0bccaa2dca6bafd72347b65b3f9b832fc5f7bf305aad0a0ef5b8d227f1879465cd6d05e005bb92f8561d0a1f0578e528805c61964 -binfiles arch=win32 size=1 - bin/win32/texcount.exe +revision 65891 +shortdesc windows files of texcount +containersize 2304 +containerchecksum efd43f5cf09035df63ecb614b06151ff557084da0c6c18ddd1a0408a67b8918a008f7ac7d6f5794b6f9b63397eac07abe1381ab117f1b0f4b1e205de47165962 +binfiles arch=windows size=2 + bin/windows/texcount.exe name texcount.x86_64-cygwin category Package @@ -297580,7 +308786,7 @@ catalogue-version 2.0 name texdef category Package -revision 56466 +revision 64967 shortdesc Display the definitions of TeX commands longdesc This (Perl) script displays the definitions of (La)TeX command longdesc sequences/macros. Various options allow the selection of the @@ -297600,23 +308806,23 @@ longdesc The flavour can be selected using a command line option, or via longdesc the script name: latexdef will use LaTeX as default, etc. depend texdef.ARCH containersize 9468 -containerchecksum cc85ae5298a72c337c1c4571f2af698b62b182521cc65d0ffa459b89121e9eeae7d6f033456278ec6f61f91cbc2a6feed18005786e5b9943a8b0893111e61017 -doccontainersize 156088 -doccontainerchecksum dbb3516132d0779f657a051b0140491d8baf1bd6ddbeef92d94414a791894696d9ce39d49b3cd689dfcea2d387a221e1b27cb486764b011c7068d7a1d352f679 +containerchecksum ad6b67da367b1cef01db4e7d912685ccfde58babd7dc4868325624114d85e89f5daf3a47fd855dc084ffff66e332ca85c5d77f682d7bfe1b507c43e0a0612977 +doccontainersize 156084 +doccontainerchecksum bf84f04183654db606a7ebcd30d4986bca69e633439511cc7d9cf57a3a1210231ed158d2bcd86c5014065d355ec94faf3d5f9ab08be568eadc6637ae9cb72aaf docfiles size=42 texmf-dist/doc/support/texdef/CHANGELOG texmf-dist/doc/support/texdef/INSTALL texmf-dist/doc/support/texdef/README details="Readme" texmf-dist/doc/support/texdef/texdef.pdf details="Package documentation" -srccontainersize 4884 -srccontainerchecksum ebf0284c4c8fdc35c8b6895f054d5055568a5e4b8edb061c91da4627b017dc7cb033943c11390f3d05923761a617354ea56ef95d3bf1a02cde66e55ecd734e1d +srccontainersize 4888 +srccontainerchecksum d8c20d77f5b5c68e0acf2fc26a8a0d142aec1377554c3f6b6cf469aef28ae2b82ab4c6844ed8414cad073dada8a035175d6e48b53699daf029ca181cea41f112 srcfiles size=4 texmf-dist/source/support/texdef/texdef.tex runfiles size=9 texmf-dist/scripts/texdef/texdef.pl -catalogue-contact-bugs https://sourceforge.net/p/texdef/tickets/ -catalogue-contact-home https://sourceforge.net/projects/texdef/ -catalogue-contact-repository https://sourceforge.net/p/texdef/code/ +catalogue-contact-bugs https://github.com/MartinScharrer/texdef/issues +catalogue-contact-home https://github.com/MartinScharrer/texdef +catalogue-contact-repository https://github.com/MartinScharrer/texdef.git catalogue-ctan /support/texdef catalogue-license gpl3 catalogue-topics debug-supp @@ -297662,16 +308868,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/latexdef bin/armhf-linux/texdef -name texdef.i386-cygwin -category Package -revision 45011 -shortdesc i386-cygwin files of texdef -containersize 360 -containerchecksum cbaa5c433370725b0c0a845d729964c329471487fd6f434252aff194ac2fa2043b5c969d3e0ca62c0a0c219d7be364edc381a4a0c456d9dea10678e5f3a48fea -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/latexdef - bin/i386-cygwin/texdef - name texdef.i386-freebsd category Package revision 45011 @@ -297722,15 +308918,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/latexdef bin/universal-darwin/texdef -name texdef.win32 +name texdef.windows category Package -revision 45011 -shortdesc win32 files of texdef -containersize 704 -containerchecksum f1253afa06877ef2bcca2952aee932721d8b4d5ea99b974c8206300ca322df99bfc5a14490c4c8e48d67ef2da032e1dae55f938c93e3f2870fa00da5e481c362 -binfiles arch=win32 size=2 - bin/win32/latexdef.exe - bin/win32/texdef.exe +revision 65891 +shortdesc windows files of texdef +containersize 2352 +containerchecksum 92db84d4914a6fc1bbb51cdb1aee5fccb258e513b465bd31f681a62ba22c2181615c0ad78c3eca837998b6433642775293bab0a629e18ec653fa0c9194b3edd1 +binfiles arch=windows size=4 + bin/windows/latexdef.exe + bin/windows/texdef.exe name texdef.x86_64-cygwin category Package @@ -297845,15 +309041,6 @@ containerchecksum 7cff575aa832283d82e52aff831cce528b51d2cb1ece8de32e63789526f19b binfiles arch=armhf-linux size=1 bin/armhf-linux/texdiff -name texdiff.i386-cygwin -category Package -revision 15506 -shortdesc i386-cygwin files of texdiff -containersize 336 -containerchecksum 1d44781a8c6a16458af0fd291d16a8c6191b0b17c00fae0c359f699afe60cf004b29e18c5905ac555427bcb255aec74c39c57f8f3f10f19f04e06671e3d15c18 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texdiff - name texdiff.i386-freebsd category Package revision 16472 @@ -297899,14 +309086,14 @@ containerchecksum 74fec0dff6b7815e263843119d488a8fff96940f56e607173162fb011faee8 binfiles arch=universal-darwin size=1 bin/universal-darwin/texdiff -name texdiff.win32 +name texdiff.windows category Package -revision 15506 -shortdesc win32 files of texdiff -containersize 684 -containerchecksum bdaf06cca1793cbcf8bcf9a794266001bfad0eb0bec1ef9737d88bdb26794a84dcf2edf6a7c167d140e88fbf77b129ffeeb471c6386db5287a3324b1faf0655b -binfiles arch=win32 size=1 - bin/win32/texdiff.exe +revision 65891 +shortdesc windows files of texdiff +containersize 2300 +containerchecksum c7319023407ee6c660269ca62fd34d8f54a9a93398cb4e3b96633983b5e74b50376ee10444722ff8ea3fc91c6dcd98f883eb9742c8de07fbf5735c3c02626447 +binfiles arch=windows size=2 + bin/windows/texdiff.exe name texdiff.x86_64-cygwin category Package @@ -297953,6 +309140,33 @@ containerchecksum a366f2b680f8b299cb351beeb474a00cef6fbeff4f8e18780e408a5ef9f633 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/texdiff +name texdimens +category Package +revision 61070 +shortdesc Conversion of TeX dimensions to decimals +relocated 1 +longdesc Utilities and documentation related to TeX dimensional units, +longdesc usable both with Plain (\input texdimens) and with LaTeX +longdesc (\usepackage{texdimens}). +containersize 11436 +containerchecksum 737074790de5c16de0e30dd6f708d6b8ec43e8d387ced2dc6b16b64f38854fad7367884abeab71fd41eaa79dc0c5939904314deed97331f9919a1fbefb0108d3 +doccontainersize 121624 +doccontainerchecksum 3ab30a8de33cedd4bdb9aa0a84104eb5b02be164de9f6fb81a51dbaa6caabe0029228c311970a3287cfbcf270a5430d6883756e9c28fc924a3286d76bb71217e +docfiles size=39 + RELOC/doc/generic/texdimens/LICENSE.md + RELOC/doc/generic/texdimens/README.md details="Readme" + RELOC/doc/generic/texdimens/texdimens.md + RELOC/doc/generic/texdimens/texdimens.pdf details="Package documentation" +runfiles size=11 + RELOC/tex/generic/texdimens/texdimens.sty + RELOC/tex/generic/texdimens/texdimens.tex +catalogue-contact-bugs https://github.com/jfbu/texdimens/issues +catalogue-contact-repository https://github.com/jfbu/texdimens +catalogue-ctan /macros/generic/texdimens +catalogue-license lppl1.3c +catalogue-topics units etex +catalogue-version 1.1 + name texdirflatten category Package revision 55064 @@ -298020,15 +309234,6 @@ containerchecksum fcb7c72a63afc80cacdf759e38b26d0f9a1dd3a22116a38c889f1546db984c binfiles arch=armhf-linux size=1 bin/armhf-linux/texdirflatten -name texdirflatten.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of texdirflatten -containersize 340 -containerchecksum 70469d5a726b67e05b1e135128880634b065c50c79db03d0ff2da0446772b49b3a262099af6ec8835eafa61f408d91da630a58ee4d5be2fb978f11736ebaaf82 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texdirflatten - name texdirflatten.i386-freebsd category Package revision 16472 @@ -298074,14 +309279,14 @@ containerchecksum 9ed03767f6502d5a5f1937c347845be5d11a9f7748da0084ee84aae5c506a2 binfiles arch=universal-darwin size=1 bin/universal-darwin/texdirflatten -name texdirflatten.win32 +name texdirflatten.windows category Package -revision 15404 -shortdesc win32 files of texdirflatten -containersize 692 -containerchecksum d1ed5738b38e35cd0bb2b48cb177a7d34989ed6b877dda343df9b4a54a8da273668aa59acbbd7872e7d29de5c8f3583c99697c81c9e9d4a2f96d5d04188a6620 -binfiles arch=win32 size=1 - bin/win32/texdirflatten.exe +revision 65891 +shortdesc windows files of texdirflatten +containersize 2308 +containerchecksum 11cdf083f68dd521b4fd3bcbbac2f04ad10fb3fd15f80cac3dec233c44375a0946c6077797bca70a406359f195a3f4ae4aa8a554bb3d645812688dd00e8afd42 +binfiles arch=windows size=2 + bin/windows/texdirflatten.exe name texdirflatten.x86_64-cygwin category Package @@ -298130,7 +309335,7 @@ binfiles arch=x86_64-solaris size=1 name texdoc category TLCore -revision 58477 +revision 66227 shortdesc Documentation access for TeX Live longdesc texdoc is a Lua script providing easy access to the longdesc documentation in TeX Live: PDF, DVI, plain text files, and @@ -298140,11 +309345,11 @@ longdesc program by the same name to do the same job, but its longdesc implementation is unrelated. depend kpathsea depend texdoc.ARCH -containersize 26808 -containerchecksum ace120045a48c29b207e94fa6a08956b63f4994374fbe5572a1e655046408126d094c0c89f9bb0350a6619b54912a89f4f72bd177451c84a9c3d182eddd9b5de -doccontainersize 134156 -doccontainerchecksum ac14e4a9f5bc96d8d3baf1d8ff41dd1c996838cb6e8e5aad5c6e9bda0a93af9e7c5a86d6da7b5bd6342e866c48babe76023c659a36234a2a0b5787a84c389c4e -docfiles size=52 +containersize 29668 +containerchecksum 02e7d23e20983f96d05725eb91a4f8bed6bdad0051e9f3c152f945e22255c70e7c0b2d93eeca1fdbbc2ca550a7a15d46540ecbb383575b03a4da9bfcea4e42aa +doccontainersize 140932 +doccontainerchecksum 80ddcd5d32e02ac87ebba175b3f2e253ca02daf70e38ec5a6db1a0e595349ad33d6b7cf7e95f8af7de621600a58b952927edde04319adec13fa139fa0b634970 +docfiles size=54 texmf-dist/doc/man/man1/texdoc.1 texmf-dist/doc/man/man1/texdoc.man1.pdf texmf-dist/doc/support/texdoc/COPYING @@ -298153,7 +309358,7 @@ docfiles size=52 texmf-dist/doc/support/texdoc/texdoc-doc.cls texmf-dist/doc/support/texdoc/texdoc.pdf details="Package documentation" texmf-dist/doc/support/texdoc/texdoc.tex -runfiles size=30 +runfiles size=34 texmf-dist/scripts/texdoc/texdoc.tlu texmf-dist/scripts/texdoc/texdoclib-alias.tlu texmf-dist/scripts/texdoc/texdoclib-cli.tlu @@ -298173,7 +309378,7 @@ catalogue-contact-support https://lists.tug.org/texdoc catalogue-ctan /support/texdoc catalogue-license gpl catalogue-topics view-doc -catalogue-version 3.3 +catalogue-version 4.0.1 name texdoc.aarch64-linux category TLCore @@ -298211,15 +309416,6 @@ containerchecksum 3d63f1585dbee7c20cb2043fb9cc369039e89c8fa1d89c904d7cbf207e654c binfiles arch=armhf-linux size=1 bin/armhf-linux/texdoc -name texdoc.i386-cygwin -category TLCore -revision 47948 -shortdesc i386-cygwin files of texdoc -containersize 336 -containerchecksum 400afe75ca64bf1a127790a076e0e5b2f8c6584603f650b20e348b69b48aa97612efa76d9a7a7fa0ffbb4694667f9b410a84828354b1f065262ae7dfc9ecdce4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texdoc - name texdoc.i386-freebsd category TLCore revision 47948 @@ -298265,14 +309461,14 @@ containerchecksum e6afb179f3baff3867a8e28b7962e062c4aaf648ced536e5d1e987405270f8 binfiles arch=universal-darwin size=1 bin/universal-darwin/texdoc -name texdoc.win32 +name texdoc.windows category TLCore -revision 47948 -shortdesc win32 files of texdoc -containersize 680 -containerchecksum b03dc5aae34e0bd841c27883dc15af7c9a0f759027f1a04cc775894b8dc6bed0f2e91e881fc606d4a59c51245aa010219487ec55cfd9f27672838397e24593b9 -binfiles arch=win32 size=1 - bin/win32/texdoc.exe +revision 65891 +shortdesc windows files of texdoc +containersize 2304 +containerchecksum e017c41dcac2699ec1252afa5015a9d133bf3023bb0f934f22aec3c3210d7ef9e1bc2174bdd1ef145c5bd869060e2f2e4c0807157a091f3e8a58cab44de984f4 +binfiles arch=windows size=2 + bin/windows/texdoc.exe name texdoc.x86_64-cygwin category TLCore @@ -298321,7 +309517,7 @@ binfiles arch=x86_64-solaris size=1 name texdoctk category TLCore -revision 54557 +revision 62186 shortdesc Easy access to package documentation longdesc A Perl/Tk-based GUI for easy access to package documentation longdesc for TeX on Unix platforms; the databases it uses are based on @@ -298336,10 +309532,10 @@ longdesc only distributed as part of TeX Live, which includes a Windows longdesc executable. depend kpathsea depend texdoctk.ARCH -containersize 26828 -containerchecksum 6fee47f51fe3d98051d7098d17e3c5c37b3969fc5a2c78bd5d5a2b97f9de97cdbaaeda274792d1bbc10653bf1d3daf6447c66a13b4b31f8e80d26e433c405936 +containersize 26712 +containerchecksum f3300a088f5ecedfe66ca277f793d3565b5b0f111721a0d73a788d65b72f09d0103a11edda13679fb9e919f11ce9ed3662717c18e46be99a83b744a1f7ec88fe doccontainersize 30728 -doccontainerchecksum 54fe4ca2618e4b8d6eb1f5590745fbb6ed6264a9e6ab4b34040bac52062ce4d7e8214a4fa3010cb6c78ad0003afcc3f929b112528940396973647a6672a0422e +doccontainerchecksum fb403dc17ad839ea64bcf6da84e59288a8745b5eb731051d7df8593138aa5d3b6891d56f52bdbe5c9a41e590f1f36db390e7e7a825d9aaf00d4fbc01c8dc16ba docfiles size=11 texmf-dist/doc/man/man1/texdoctk.1 texmf-dist/doc/man/man1/texdoctk.man1.pdf @@ -298389,15 +309585,6 @@ containerchecksum 2d3405048185ce3f7f8a67e6cfaf883a065b3a60acfb21779e941d821b0d47 binfiles arch=armhf-linux size=1 bin/armhf-linux/texdoctk -name texdoctk.i386-cygwin -category TLCore -revision 29836 -shortdesc i386-cygwin files of texdoctk -containersize 340 -containerchecksum facd8bcb82cf0e37e0a0677c3b9d5fbdf66628dd37cc63f52d49eef868dfb2ff7076a6b10df3339c92d0b883da3db0d630a070fbe927520710a0c6584521634a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texdoctk - name texdoctk.i386-freebsd category TLCore revision 29785 @@ -298443,14 +309630,14 @@ containerchecksum 934b94a52795d30174b438e101e76685b9e9d2c03a5fc6b4df0ca7ab79e782 binfiles arch=universal-darwin size=1 bin/universal-darwin/texdoctk -name texdoctk.win32 +name texdoctk.windows category TLCore -revision 18918 -shortdesc win32 files of texdoctk -containersize 2008 -containerchecksum f82158ef9eef0972fe1d9cafac26261acb53c17035592d2267ebea85b3945d40f7782abe4d79162bdf10f998748db779c86362fca759dbc3f800a7014209e875 -binfiles arch=win32 size=2 - bin/win32/texdoctk.exe +revision 65891 +shortdesc windows files of texdoctk +containersize 2440 +containerchecksum 49f6ed55c66fc1c9f8d30892f506a0b78434911e666b993833e18be5e4f274797206dee59717f7790627f1a2c59b52afbd576072f6015a058cb9fa01c16f5cde +binfiles arch=windows size=2 + bin/windows/texdoctk.exe name texdoctk.x86_64-cygwin category TLCore @@ -298499,7 +309686,7 @@ binfiles arch=x86_64-solaris size=1 name texdraw category Package -revision 51030 +revision 64477 shortdesc Graphical macros, using embedded PostScript relocated 1 longdesc TeXdraw is a set of macro definitions for TeX, which allow the @@ -298511,10 +309698,10 @@ longdesc PostScript, drawing segments allow for local changes to the longdesc scaling and line parameters. Using TeX's macro definition longdesc capability, new drawing commands can be constructed from longdesc drawing segments. -containersize 15548 -containerchecksum 30cc546b259f93bec3f5d3efea5e73cdf7e34f9f76cac8946d82fff3123abb6f5bc7c70c48987bab24e154c56f6145fef0680b416e7cf2aaa79f5aa673600f59 -doccontainersize 243680 -doccontainerchecksum 28a7028a28749e2d7c8b5176dd473b749230750fe1ead78a731c9f4a40db299c4bd034be18e0587ab1dd79b6b0802abff19d12fdf44dab5e1a64e26d48185771 +containersize 15528 +containerchecksum f4d160e494b1579743a83b2a0926df9e8dd69fdaa79d3f4f97e0ed5f4ece31ab380ff6994a1c9015e0af9b842bdfb9b066442ca4b3018df6659922af9f746b0b +doccontainersize 243624 +doccontainerchecksum e177209a937fa1d9d683eb805e9e8929612b4b1ff750955d38ca681b657662712a59609990f77021063a223ce61a92fdd567eee91376ef4b67fd3a322db09463 docfiles size=126 RELOC/doc/info/texdraw.info RELOC/doc/support/texdraw/ChangeLog @@ -298538,17 +309725,17 @@ catalogue-version v2r3 name texfot category Package -revision 59040 +revision 65545 shortdesc Filter clutter from the output of a TeX run longdesc The package provides a small Perl script to filter the online longdesc output from a TeX run, attempting to show only those messages longdesc which probably deserve some change in the source. The TeX longdesc invocation itself need not change. depend texfot.ARCH -containersize 6320 -containerchecksum 101a37bb79e58f25c2a9198f1327ca911ab292578fb7d80769cee8d0b4459bec9e3b49addd64ac1064523de0685a595c4bce86cb272fd02294d3168b3db28bf4 -doccontainersize 32296 -doccontainerchecksum 883a70368bbc9797e7e2967a4c451f6ab735cba63d92d1ec65ce954cfdf7235ca2ad4291dd2fb50cc09eb0e6c3831e6befd67839ba9b9c522f1199f995cae772 +containersize 6688 +containerchecksum e7553ab1e2368f1ee54cebe94ef1cc6675a6dd6f76f1bb94b1d79a742ddbbfb30215c97b7aa08165ec0e94b4468491d6cbbe6e1d8d77c24e37f3ec46104cc12f +doccontainersize 33500 +doccontainerchecksum 07cbd86a5f4731257804a8a62fab247a5a091fbdb51b5f618b42200c06ac8293e809ba19fc98f844dbfe6321e733aae5671b5a8318892608687a454cac15bd10 docfiles size=13 texmf-dist/doc/man/man1/texfot.1 texmf-dist/doc/man/man1/texfot.man1.pdf @@ -298557,8 +309744,8 @@ runfiles size=4 texmf-dist/scripts/texfot/texfot.pl catalogue-ctan /support/texfot catalogue-license pd -catalogue-topics comp-mgmt -catalogue-version 1.43 +catalogue-topics comp-mgmt log-manip +catalogue-version 1.48 name texfot.aarch64-linux category Package @@ -298596,15 +309783,6 @@ containerchecksum 8f691f5a0a8af6cad6b761804f743a1b4bb913d7870e79fbd1de2a04a43a11 binfiles arch=armhf-linux size=1 bin/armhf-linux/texfot -name texfot.i386-cygwin -category Package -revision 33155 -shortdesc i386-cygwin files of texfot -containersize 336 -containerchecksum 8883c4b4a4b222e3eb8f9ab181b696505cacd675de66a59f263589d5af3c00d65c51724335192ece630b09980490ef6ec84b9aba6db2de401f830e3c89d0e4bc -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texfot - name texfot.i386-freebsd category Package revision 33155 @@ -298650,14 +309828,14 @@ containerchecksum 6162ae59da3af1ba7c988faa0514143172fd140dd2d721e859d6411c97bfc9 binfiles arch=universal-darwin size=1 bin/universal-darwin/texfot -name texfot.win32 +name texfot.windows category Package -revision 33155 -shortdesc win32 files of texfot -containersize 684 -containerchecksum c1b4eb2cdb93c91794010087c8ab3a6493da26785c50aebc5fc43f671c67ec4769736fb299a81fa9be3eef4e49ac7377a72fdcd7c2e451bad1d86cc8d9c01e37 -binfiles arch=win32 size=1 - bin/win32/texfot.exe +revision 65891 +shortdesc windows files of texfot +containersize 2304 +containerchecksum addb2c91df1db8f7690a06f1bd20add1b47a87b27ef4683db66127a3ecdf84b6a0dcbefedce5cd0b53efbe6e0c98f3e373e17843da118f53f7ac57bfc2838fc0 +binfiles arch=windows size=2 + bin/windows/texfot.exe name texfot.x86_64-cygwin category Package @@ -298740,7 +309918,7 @@ catalogue-version 0.1 name texinfo category Package -revision 57911 +revision 66354 shortdesc Texinfo documentation system relocated 1 longdesc Texinfo is the preferred format for documentation in the GNU @@ -298748,12 +309926,12 @@ longdesc project; the format may be used to produce online or printed longdesc output from a single source. The Texinfo macros may be used to longdesc produce printable output using TeX; other programs in the longdesc distribution offer online interactive use (with hypertext -longdesc linkages in some cases). Note that a developers' snapshot of -longdesc the latest release of the Texinfo macros may be found in the -longdesc Texinfo 'latest' package. -containersize 98652 -containerchecksum 9bcff364b4f7e505f4301d54f8acd5fa248dabafe246c649abf4f229ad12c2e041935684741717e29f22a02ed3181b5619a3ddfe6e2047b16f928ab69b1b4295 -runfiles size=109 +longdesc linkages in some cases). The latest release of the texinfo.tex +longdesc macros and texi2dvi script may be found in the texinfo-latest +longdesc package, which are usually newer than the last full release. +containersize 97624 +containerchecksum aeb3cb891ab37846dab1a0ecc6bf7ce6511cc90297bb091522a5e73f1e72238b4a4e7de9f18d32ebc4b37826a42442cdbd135e76c005835e2a41906a683954d5 +runfiles size=110 RELOC/tex/texinfo/texinfo.ini RELOC/tex/texinfo/texinfo.tex RELOC/tex/texinfo/txi-cs.tex @@ -298771,23 +309949,23 @@ runfiles size=109 RELOC/tex/texinfo/txi-sr.tex RELOC/tex/texinfo/txi-tr.tex RELOC/tex/texinfo/txi-uk.tex -catalogue-contact-home http://www.gnu.org/software/texinfo/ +catalogue-contact-home https://www.gnu.org/software/texinfo/ catalogue-ctan /macros/texinfo/texinfo catalogue-license gpl catalogue-topics doc-supp format -catalogue-version 5.1 +catalogue-version 6.8 name texlive-common category TLCore -revision 59073 +revision 66324 shortdesc TeX Live documentation (common elements) relocated 1 postaction shortcut type=menu name="TeX Live documentation" cmd=TEXDIR/texmf-dist/doc/texlive/index.html -containersize 348 -containerchecksum 4b34ce5639e3d7d47f4c8be4e90abe43c2cee611ab3aaf57da6f34420c1a20af7f5e3ab449beeebbac7e9ebd40288e4becb20814a144557179f2bb85cb3a49c4 -doccontainersize 577640 -doccontainerchecksum 4871c4ac92808de513174af31f4150d105e7e2b1e06e7cce5dba878424d8ff7fc6e7aa46694157b45e7e19e6f11cbbcd5e4350b32cf4455f0ad3542b60d5c674 -docfiles size=188 +containersize 344 +containerchecksum bab173c9693cd8a078957bf0c415cc03630a7ef47298b83aae6f4ac9ab1540bca68a3a775782a6613ac8789493a1dced8252bad06bb9a462a8d159c6291103d6 +doccontainersize 708168 +doccontainerchecksum f671b7ff41064cbf3d5f0c7e8bbd68624bc67d5d56d3fae7abe32eea56139dc30b1d14eb01da8e58d44b885b803abedbd1c1e60fc30d5c89f143c6eb634157e6 +docfiles size=224 RELOC/doc/texlive/index.html RELOC/doc/texlive/install-tl.html RELOC/doc/texlive/texlive-common/advanced-lnx.png @@ -298801,20 +309979,21 @@ docfiles size=188 RELOC/doc/texlive/texlive-common/stdcoll.png RELOC/doc/texlive/texlive-common/tlcockpit-packages.png RELOC/doc/texlive/texlive-common/tlmgr-gui.png + RELOC/doc/texlive/texlive-common/tlshell-linux.png RELOC/doc/texlive/texlive-common/tlshell-macos.png RELOC/doc/texlive/texlive-common/tray-menu.png RELOC/doc/texlive/tlmgr.html name texlive-cz category TLCore -revision 54496 +revision 62854 shortdesc TeX Live manual (Czech/Slovak) relocated 1 -containersize 280 -containerchecksum d4332dc9fe838cc3dd6bf28bbde16f0f41b6f7f75877c358fadae2584cbd1d1fc4fe810569ac5c26dde3eba1fd26447eb6928fc8533a1c4304309a83b734131d -doccontainersize 1197876 -doccontainerchecksum ecfc4149bddfb665c6f48e65b719cc3d2240d0be151bec94676a188da08a203e84443b4c8e77590476c3194fae55ea23753a248c6f60ddd0b27895dea703a219 -docfiles size=424 +containersize 276 +containerchecksum 5491e3ebe9c70887450f8404b64c01a8f4c4c54314d2acf3d33b8921f088b8885074d53bdb42351198daa9cd2c72b1ef97b1e9af5092aabded700ea6f2b995f1 +doccontainersize 1266160 +doccontainerchecksum ff1124b30be77782b5c5a1b80ae69c852a5a9e81446c0574007bc28910ea6202662514a34a85858c577bb528f9fbcc11f798614d11914876151d5aeadb3fcd7d +docfiles size=453 RELOC/doc/texlive/texlive-cz/Makefile RELOC/doc/texlive/texlive-cz/csquote.sty RELOC/doc/texlive/texlive-cz/live4ht.cfg @@ -298826,14 +310005,14 @@ docfiles size=424 name texlive-de category TLCore -revision 58648 +revision 66573 shortdesc TeX Live manual (German) relocated 1 containersize 272 -containerchecksum eb70ac7400ce4cbc18d3ddf2c37dffa175d0af2a8eb36bfa17b9868e606d1be7b1994496143e1a1444d17f2e2ac1c20cade92485cb846aa16a52974dd9692a6e -doccontainersize 1554012 -doccontainerchecksum d51df93981312475c5c4b4976e4de00441d6ed4ea9e51d30d5c8360e314417f9b33c5804acae3c6d50c714bc76966120de37095b3ef33c78c06744ca17e3855e -docfiles size=619 +containerchecksum 30bfb04c3dc7b05fad2154692bf2a5aa7087ef5a559b39de195620c12145ca4cee9f2b246e73e7350aa335988c3c2a810c2f9c09d8a0dd07329290c91c3802b9 +doccontainersize 1638076 +doccontainerchecksum 13423fe03898b0aa14e6a1e7e659aefc08553861bf18a97a52663feb700968d4eb302e0a242632697218942cd7c25db9f5b864263eef5c8871ba2b24a0d074c4 +docfiles size=654 RELOC/doc/texlive/texlive-de/Makefile RELOC/doc/texlive/texlive-de/advanced-lnx.png RELOC/doc/texlive/texlive-de/basic-w32.png @@ -298857,32 +310036,19 @@ docfiles size=619 RELOC/doc/texlive/texlive-de/tray-menu.png RELOC/doc/texlive/texlive-de/wizard-w32.png -name texlive-docindex -category TLCore -revision 59083 -shortdesc top-level TeX Live doc.html, etc. -longdesc These files are regenerated as needed, which is often, so we -longdesc make them a separate package. See the tl-update-auto script for -longdesc the process. -containersize 388 -containerchecksum 3cf73604111a0db40c1f11bfa867001fdbd4bace6a0f2c3baadda3b513f0136c16d1daea289580051c61f1f2f77d2768131012946a2483b6f9e9663ad851ccaf -doccontainersize 174864 -doccontainerchecksum a4d2edd00d2ffdb0b7d6800e3fc20bbc60d2fe417a5246525c67825eba40830c1c1fe081687debc10179420319071d02a95b68ade2649e3afc6f51c871773eab -docfiles size=348 - doc.html - name texlive-en category TLCore -revision 59056 +revision 66572 shortdesc TeX Live manual (English) relocated 1 containersize 276 -containerchecksum 815a16b86ef0b8086b5a56bd43b2997cd6692aa4ca6fa9236510a1297ede24baec671af196797c2bfb0ee3a614dd8fe54043cbe2c3ce048bb42fbfa231a54300 -doccontainersize 1937260 -doccontainerchecksum 2319817120e11f7aaca1e2ed617ec72da9919d2452151fc79d40ed28f86364a17f27ae28ce9a5de825c750669d5625cd4cc6bf72a0bb5e94e3c1caa963879d5a -docfiles size=1459 +containerchecksum 053a420627be7e56c4f4c9d262aeed9c3e0865561e6024157c410da831828dbe862dbcb8dc09197c57d73cb6d785010d4e99354c4bb1291cea0a6c0a5f13bb67 +doccontainersize 1978968 +doccontainerchecksum dc38f273ba39e0cd69ffa9b755651073acbe0bfe8d5a4ffd0d267971aa82a711b74ed9cb03c5d779c06b859d0944611a541cbd22d40bf2db0841b01d27b5b9a3 +docfiles size=1600 RELOC/doc/info/tlbuild.info RELOC/doc/texlive/texlive-en/.dict.pws + RELOC/doc/texlive/texlive-en/ChangeLog RELOC/doc/texlive/texlive-en/Makefile RELOC/doc/texlive/texlive-en/README RELOC/doc/texlive/texlive-en/archive/bv-live.tex @@ -298906,8 +310072,11 @@ docfiles size=1459 RELOC/doc/texlive/texlive-en/archive/live-2018.tex RELOC/doc/texlive/texlive-en/archive/live-2019.tex RELOC/doc/texlive/texlive-en/archive/live-2020.tex + RELOC/doc/texlive/texlive-en/archive/live-2021.tex + RELOC/doc/texlive/texlive-en/archive/live-2022.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/live4ht.cfg-2021 RELOC/doc/texlive/texlive-en/archive/mod.pl RELOC/doc/texlive/texlive-en/archive/nocites.tex RELOC/doc/texlive/texlive-en/archive/picture.tex @@ -298929,6 +310098,8 @@ docfiles size=1459 RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2018 RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2019 RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2020 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2021 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2022 RELOC/doc/texlive/texlive-en/archive/texlive.pl RELOC/doc/texlive/texlive-en/live4ht.cfg RELOC/doc/texlive/texlive-en/tex-live.css @@ -298942,14 +310113,14 @@ docfiles size=1459 name texlive-es category TLCore -revision 58221 +revision 66059 shortdesc TeX Live manual (Spanish) relocated 1 containersize 276 -containerchecksum 899baa7c3fc2ac174fca5e06ed37306d00d95683e75a2529ec657b9fa23ee3ca9e101679c5646fc1182762cef65ee6ab445fb0e12d543428a1facd5b708bb039 -doccontainersize 3667820 -doccontainerchecksum 2c4fd6aae61efa3c9f2c51590bc2d86c391c11cbf2844d1f6c36fb69cea46c1bccb82d861a157ea50973cba7107fc6bb44b3035b98e2703a601c4ec84e280e19 -docfiles size=1911 +containerchecksum d055fbb5a4cee9d207f60ee27033534917a0e91dd2e37791290737bd2727b47ccbb3199c0e18f4a564f15e5dbed3599203a7b3611558a26f784713714262311c +doccontainersize 5182012 +doccontainerchecksum f124848f80289190abadca35a259d60781b5ae75771687ee44e863ddaace61227217a7c1ba888a85afd28583f1eadd4c91b03e224f5cb1b4516772243ac0fe63 +docfiles size=2733 RELOC/doc/texlive/texlive-es/Makefile RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.html RELOC/doc/texlive/texlive-es/archive/2017/texlive-es.pdf @@ -298965,6 +310136,13 @@ docfiles size=1911 RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.html RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.pdf RELOC/doc/texlive/texlive-es/archive/2020/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2021/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2021/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2021/texlive-es.tex + RELOC/doc/texlive/texlive-es/archive/2022-march-2022-dec/texlive-es.css + RELOC/doc/texlive/texlive-es/archive/2022-march-2022-dec/texlive-es.html + RELOC/doc/texlive/texlive-es/archive/2022-march-2022-dec/texlive-es.pdf + RELOC/doc/texlive/texlive-es/archive/2022-march-2022-dec/texlive-es.tex RELOC/doc/texlive/texlive-es/tex-live.css RELOC/doc/texlive/texlive-es/texlive-es.css RELOC/doc/texlive/texlive-es/texlive-es.html @@ -298973,14 +310151,14 @@ docfiles size=1911 name texlive-fr category TLCore -revision 58579 +revision 66571 shortdesc TeX Live manual (French) relocated 1 -containersize 272 -containerchecksum 17fe7383de6528d9f57b98694a8635aa77886e1b8c51c673ee24ccbcc9bd4dfbb59146f6693f126e5bd23acbfd112a771b948897529c2856505f6f84f3b1e6ce -doccontainersize 1379000 -doccontainerchecksum f74e92d2a5509da3d74435a86cedac62659d15f49cc5f29464586f70013dfe31585cbfda34ccd1a33e71945cdbc43461a24c578953022af3ebb2b41aaa15082d -docfiles size=480 +containersize 276 +containerchecksum 2b5f6f94f9e9b3af2a18de94b85615bd09cab31d9e3f01b9ac78df5d22fae6ff84d300cc39aa92d1dac02d858c69e86d9d3dbda422574a4c3ce4652b08990090 +doccontainersize 1398796 +doccontainerchecksum 5463c1ecd592e7d304325276f950964cb52cedeab20084137deb0f4b7de1b17b536e4b030cd0e961191d61912f9c4db27f16e6e196104c84ad16ff7b545a7e9b +docfiles size=507 RELOC/doc/texlive/texlive-fr/Makefile RELOC/doc/texlive/texlive-fr/live4ht.cfg RELOC/doc/texlive/texlive-fr/notes @@ -299007,14 +310185,14 @@ docfiles size=449 name texlive-ja category TLCore -revision 58581 +revision 66482 shortdesc TeX Live manual (Japanese) relocated 1 containersize 276 -containerchecksum d1d9ac0e82802d1021d7644b83f81395e9cecbfabcd4bf8b37c77d108b5a1b9ae10fb4bef628adffaefef34279b521b1b883c4bb98e657bcddc6d7326fe4ee7b -doccontainersize 1845596 -doccontainerchecksum 1445ec4257d202f77452df48e70105e423e048ae9150ad70acbcfea350f8b8686ca395e9452d40eedbd6824df7a2d8560c5c761fc867cdda0d2ba9182eba5f16 -docfiles size=539 +containerchecksum 92f3767daa4e88bcbcff86aee215bac0ea945645a626e9612e033ad12513e41d15ce8074c22cd39b0fbff9d951608bee799dbefa431c31ca9e8f4681f15242fd +doccontainersize 1945084 +doccontainerchecksum 464442dd7f1e77598e7bdbb6884453f5a4a2f57d5d8b028d0126e5bed50b3c19f9fefe13b602ad1aff3334e45e8082f2a1328f884ade2ea92ba4b054a41c4b5a +docfiles size=558 RELOC/doc/texlive/texlive-ja/Makefile RELOC/doc/texlive/texlive-ja/img/advanced-macos-ja.png RELOC/doc/texlive/texlive-ja/img/basic-macos-ja.png @@ -299026,15 +310204,15 @@ docfiles size=539 name texlive-msg-translations category TLCore -revision 59050 +revision 66593 shortdesc translations of the TeX Live installer and TeX Live Manager longdesc This package contains the translated messages of the TeX Live longdesc installer and TeX Live Manager. For information on creating or longdesc updating translations, see longdesc http://tug.org/texlive/doc.html#install-tl-xlate. -containersize 146428 -containerchecksum 55f1b16743b49bbc97a0a8749ede1850fdf8ebb133bb192b99d0d979a6097bf4feebb2121a5eebeea7579febea00014bae569b65592cc6a0b77cafd965767601 -runfiles size=364 +containersize 150056 +containerchecksum 5cc62cbddb61710840d1104f7da3f6acc9a7ff42521be412bd3c4c08a87c3abe95d52b5997dca649748dcc77737ae98ea9869dad71262ffc2f47e249d2d7e650 +runfiles size=373 tlpkg/translations/README tlpkg/translations/cs.po tlpkg/translations/da.po @@ -299059,14 +310237,14 @@ runfiles size=364 name texlive-pl category TLCore -revision 58649 +revision 66576 shortdesc TeX Live manual (Polish) relocated 1 containersize 276 -containerchecksum d2d548ea077b26ebcff1e75070b3638c3b2e0210c8bb9869706adbe8e321e3db4fe1429af06a070c7dd586baf652372cf019416807ae90808d36169848ab4349 -doccontainersize 976100 -doccontainerchecksum c373d58f0a5d958e81ad2f968585711d74b513693d2e7125422abba3bc26957aa0eea3bfa81c46bce839358db1978da5bfc7de9f38bd847c0e3a9ff4fdf7c3b1 -docfiles size=375 +containerchecksum b43de2e6d5fe66c53370a4c43ab1a66cb08f353944f58756debc40d6651cb5df11824d1eb4ec79890b449ed611b8674c0773a4e477ad4abf30f162906c1f75ec +doccontainersize 1279592 +doccontainerchecksum 09319f848fe28ca344367f70c826380b3927aa26df7eeb195f6eb176d4951ded181cc47c772f401e1e7936de5fb3a9be3339c69f5bb4e8a5f9785f7313e6baa8 +docfiles size=457 RELOC/doc/texlive/texlive-pl/Makefile RELOC/doc/texlive/texlive-pl/live4ht.cfg RELOC/doc/texlive/texlive-pl/tex-live.css @@ -299095,7 +310273,7 @@ docfiles size=376 name texlive-scripts category TLCore -revision 59083 +revision 66584 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. @@ -299103,11 +310281,12 @@ depend texlive-scripts.ARCH depend texlive.infra execute addMap mathpple.map postaction shortcut type=menu name="TeX Live command-line" cmd=TEXDIR/tlpkg/installer/tl-cmd.bat -containersize 107216 -containerchecksum 9b172ad7074c07c5295fbbc24afb21d45231b95a56c40cb0fa320c42f9b93120f0820396d24ffc4c67554c6b695b45731a6ecc1c5975f545e5a16c41ed5e53e4 -doccontainersize 218532 -doccontainerchecksum ea88cf467d8c67c754f83a547bdc9e50af029992d51f9a8c2ca23790dbe88244e0da79c5911086a799d11501638bccc9d86dffd754de10626340ec7ec0e39d3b -docfiles size=137 +containersize 114052 +containerchecksum 90eebdbc0e1cab8046faefaaaf0f78523b614ea35559eb189432f5fa052eeca73ea2d4a89e57add9519b0280e88b6617d282047ce5af95c672c3c08ee55fecda +doccontainersize 422328 +doccontainerchecksum 1ed7a1468a152ee1dffe304922df52110800b4ef6fbd75cde71e5a822ecf6b187559448f3dbed89eb3bb4ee4eb5c5c4e89e25f41811f0d8a2b006d19eab30e91 +docfiles size=535 + doc.html texmf-dist/doc/man/man1/fmtutil-sys.1 texmf-dist/doc/man/man1/fmtutil-sys.man1.pdf texmf-dist/doc/man/man1/fmtutil-user.1 @@ -299136,7 +310315,7 @@ docfiles size=137 texmf-dist/doc/man/man5/fmtutil.cnf.man5.pdf texmf-dist/doc/man/man5/updmap.cfg.5 texmf-dist/doc/man/man5/updmap.cfg.man5.pdf -runfiles size=156 +runfiles size=163 install-tl texmf-dist/dvips/tetex/config.builtin35 texmf-dist/dvips/tetex/config.dfaxhigh @@ -299176,7 +310355,7 @@ runfiles size=156 texmf-dist/scripts/texlive/mktexmf texmf-dist/scripts/texlive/mktexpk texmf-dist/scripts/texlive/mktextfm - texmf-dist/scripts/texlive/rungs.tlu + texmf-dist/scripts/texlive/rungs.lua texmf-dist/scripts/texlive/updmap-sys.sh texmf-dist/scripts/texlive/updmap-user.sh texmf-dist/scripts/texlive/updmap.pl @@ -299188,17 +310367,17 @@ runfiles size=156 name texlive-scripts-extra category TLCore -revision 54744 +revision 62517 shortdesc TeX Live scripts longdesc Miscellaneous scripts maintained as part of TeX Live, but not longdesc important for the infrastructure. Thus, this is not part of longdesc scheme-infraonly or tlcritical, just a normal package. depend texlive-scripts-extra.ARCH containersize 23540 -containerchecksum e46691aa10b961d2359359fdf00ebc86a1b881b3d1126c52f3863343d21eba00110cd9500fb03a4a9544a3d8fb443bbdc90aa2f6216b8e62a3edb0acc58e4c75 -doccontainersize 195144 -doccontainerchecksum 56f9be73e3318ea684c536b90645b572caf437b16339104bcedfb7517c94745a514a8e185033c2338aeccae868a123a5a137b9b07b20d661fa473bde2c28797b -docfiles size=107 +containerchecksum 46ac37826d3c60de6c9260bf83d6275d49a35cbde88fb03481a050f92e87b698e9a94b2e520a74edc0417419f5a2dee53000a529b9c81ea6f6244a83480e56e7 +doccontainersize 197196 +doccontainerchecksum 22cf59bf4dafc7ad9425086bc0aaedb2bf5f7d8aa6ea9c65abde2d523be37665b9c9bee4acb399857eae03613e7241ca1d6099f43cab77a95c10eced8813ad80 +docfiles size=108 texmf-dist/doc/man/man1/allcm.1 texmf-dist/doc/man/man1/allcm.man1.pdf texmf-dist/doc/man/man1/allec.1 @@ -299358,32 +310537,6 @@ binfiles arch=armhf-linux size=18 bin/armhf-linux/texconfig-sys bin/armhf-linux/texlinks -name texlive-scripts-extra.i386-cygwin -category TLCore -revision 53577 -shortdesc i386-cygwin files of texlive-scripts-extra -containersize 916 -containerchecksum 01e7a58ec5a557e9a97f0257c64e58dc97f62f7e9fc180ce01a1525534af890ee6b754b0159496c4a72fe87499b87d206dab1d7be7414d82b9897612ff7778f1 -binfiles arch=i386-cygwin size=18 - bin/i386-cygwin/allcm - bin/i386-cygwin/allec - bin/i386-cygwin/allneeded - bin/i386-cygwin/dvi2fax - bin/i386-cygwin/dvired - bin/i386-cygwin/e2pall - bin/i386-cygwin/kpsepath - bin/i386-cygwin/kpsetool - bin/i386-cygwin/kpsewhere - bin/i386-cygwin/kpsexpand - bin/i386-cygwin/mkocp - bin/i386-cygwin/mkofm - bin/i386-cygwin/ps2frag - bin/i386-cygwin/pslatex - bin/i386-cygwin/texconfig - bin/i386-cygwin/texconfig-dialog - bin/i386-cygwin/texconfig-sys - bin/i386-cygwin/texlinks - name texlive-scripts-extra.i386-freebsd category TLCore revision 53577 @@ -299514,16 +310667,16 @@ binfiles arch=universal-darwin size=18 bin/universal-darwin/texconfig-sys bin/universal-darwin/texlinks -name texlive-scripts-extra.win32 +name texlive-scripts-extra.windows category TLCore -revision 58783 -shortdesc win32 files of texlive-scripts-extra -containersize 4732 -containerchecksum b8c3cfaa4282e40fef9f9d9145d80aeb85c74790e26c950711f16882349e83fb5939965ab23259bdb77180ccf8de7244ba9a59cfe95230c299a0bef66c65476d -binfiles arch=win32 size=5 - bin/win32/e2pall.exe - bin/win32/mkocp.exe - bin/win32/mkofm.exe +revision 65891 +shortdesc windows files of texlive-scripts-extra +containersize 5068 +containerchecksum 0b359c58036f235d3229403903b5af201fc20c32de811bbc33b21692f871ce30ba69548890009deb4921d64e45bc022977eed84f15389b760a61a0cdbd799f3e +binfiles arch=windows size=6 + bin/windows/e2pall.exe + bin/windows/mkocp.exe + bin/windows/mkofm.exe name texlive-scripts-extra.x86_64-cygwin category TLCore @@ -299657,10 +310810,10 @@ binfiles arch=x86_64-solaris size=18 name texlive-scripts.aarch64-linux category TLCore -revision 55172 +revision 64356 shortdesc aarch64-linux files of texlive-scripts -containersize 588 -containerchecksum f42b2d260459477c2691e37ebedcb8a8c70df2d4699275fd75f0f9bb2bd6ed40edd49e68afe67c38fe72eb463443e650c4926ebcda52ca08c8f12ee3d1ac01e8 +containersize 596 +containerchecksum 89c7839762c6cd8b80a7bbe6a967eddfa943d2b948f84eae21cdcbab5f36b2bd8286405bdd62b8b0a92b29daa029bfc593138ec5a81c4802cf02391362c5203a binfiles arch=aarch64-linux size=13 bin/aarch64-linux/fmtutil bin/aarch64-linux/fmtutil-sys @@ -299678,10 +310831,10 @@ binfiles arch=aarch64-linux size=13 name texlive-scripts.amd64-freebsd category TLCore -revision 55172 +revision 64356 shortdesc amd64-freebsd files of texlive-scripts -containersize 592 -containerchecksum 185374e71dff788bba327be28aaee945fa24d6d504086fa78b613eb2146c09a4c45cf982244012b73c2607e0b165729f00a17420cb40dc1ab75a803ab8ba0cde +containersize 600 +containerchecksum 9a7dd20f570a71188cd67e08256798cd010661269f08b6a3087b701cb1df552e20029ed51f827a4dc6bb7984d5d3bc8af2ca21f7a0868202b4d8377510242b70 binfiles arch=amd64-freebsd size=13 bin/amd64-freebsd/fmtutil bin/amd64-freebsd/fmtutil-sys @@ -299699,10 +310852,10 @@ binfiles arch=amd64-freebsd size=13 name texlive-scripts.amd64-netbsd category TLCore -revision 55172 +revision 64356 shortdesc amd64-netbsd files of texlive-scripts -containersize 588 -containerchecksum 917f7265ddaedcdead5157a25dec7982b0afe1aeca479ff02fa4c4faf338aa588c967eb295d1d505d4371c32911a4b0eb0b7ee7ee1ebd0f1ef25ae706610865b +containersize 596 +containerchecksum 918b3227d84bb54c327f1cbbccaf2ba59dba8d1c47acb8aa02822ce28c905830030a5370dde59f59d8471b2b63efac965ca76acff4c3d4c41f369129c4754880 binfiles arch=amd64-netbsd size=13 bin/amd64-netbsd/fmtutil bin/amd64-netbsd/fmtutil-sys @@ -299720,10 +310873,10 @@ binfiles arch=amd64-netbsd size=13 name texlive-scripts.armhf-linux category TLCore -revision 55172 +revision 64356 shortdesc armhf-linux files of texlive-scripts -containersize 592 -containerchecksum 865462f93f7ed15101334e3d8d8f6891ed79504e8307e0ffd5be3b10eb7421628e9a988dcf2f81709d9a4b9faf329ee39aeb241b622352c1635c6f2de3e7928b +containersize 596 +containerchecksum aef8196dca5c8c7ed60aa97c5d2168d783df90d5157e3dfc71ab53fd1ada9985e269d56de4f2630bd1ddb9dd7094789c3f1aa046882fc91896f585664ed748e5 binfiles arch=armhf-linux size=13 bin/armhf-linux/fmtutil bin/armhf-linux/fmtutil-sys @@ -299739,33 +310892,12 @@ binfiles arch=armhf-linux size=13 bin/armhf-linux/updmap-sys bin/armhf-linux/updmap-user -name texlive-scripts.i386-cygwin -category TLCore -revision 55172 -shortdesc i386-cygwin files of texlive-scripts -containersize 592 -containerchecksum cff68cd2cabff016bbb74de7e258f520f3e6c4eb02bc384e7c2f34631dbe7ec9f454bf2f0003340eaaff78978b2e09611e2ff6bb84982e421b8f6062a1747c78 -binfiles arch=i386-cygwin size=13 - bin/i386-cygwin/fmtutil - bin/i386-cygwin/fmtutil-sys - bin/i386-cygwin/fmtutil-user - bin/i386-cygwin/man - bin/i386-cygwin/mktexfmt - bin/i386-cygwin/mktexmf - bin/i386-cygwin/mktexpk - bin/i386-cygwin/mktextfm - bin/i386-cygwin/rungs - bin/i386-cygwin/texhash - bin/i386-cygwin/updmap - bin/i386-cygwin/updmap-sys - bin/i386-cygwin/updmap-user - name texlive-scripts.i386-freebsd category TLCore -revision 55172 +revision 64356 shortdesc i386-freebsd files of texlive-scripts -containersize 592 -containerchecksum 3c8117b02ec260ad40be343210d6829712a994dd60cebf9ee931ad54bec9c24761210b72d3b4850967ed92cc107254ec9924a4cee544252027d357faac39bcec +containersize 596 +containerchecksum 7f32d0f37cbc0542512a364b06adc5426970fa364f727fe8cdd3235104cf1308215c4bef862c0d23f2bf4f0629fcc21ab57c7178f4ae3e7738988d093822594f binfiles arch=i386-freebsd size=13 bin/i386-freebsd/fmtutil bin/i386-freebsd/fmtutil-sys @@ -299783,10 +310915,10 @@ binfiles arch=i386-freebsd size=13 name texlive-scripts.i386-linux category TLCore -revision 55172 +revision 64356 shortdesc i386-linux files of texlive-scripts -containersize 588 -containerchecksum 51fcbb0453a3e2ccf4afef744701942b1b63d9915f35d8de0a88d0fcea602c6e2338fa6b96cf002bd1d5d02bafe857ae51de03e7d1cdb52643c8b62a5e1d9b52 +containersize 592 +containerchecksum daf4deb5c8f8a8453196f431e0908fb366c36ff9355a2a9254accf8019d41bb3727c93dd575ffc29d0b0df93a200ddf8f88c2163f127f40141c0e8a5371f8506 binfiles arch=i386-linux size=13 bin/i386-linux/fmtutil bin/i386-linux/fmtutil-sys @@ -299804,10 +310936,10 @@ binfiles arch=i386-linux size=13 name texlive-scripts.i386-netbsd category TLCore -revision 55172 +revision 64356 shortdesc i386-netbsd files of texlive-scripts -containersize 592 -containerchecksum e8388f9a61db42a1276f5ef9047d885d24bf05caeb26a24596abb09d966ca6fefb3375879a20d2004542cf8705e515bae10e6759ac2daa649c08448b128860a3 +containersize 596 +containerchecksum aaaac532a106932e4bbced0dbc62bc42ac50097c4154b33447848f28810fe4cae478355ab1e823416d09e3fe3cb170bb17deb8df4d1fa4f1e65eabadbec1f844 binfiles arch=i386-netbsd size=13 bin/i386-netbsd/fmtutil bin/i386-netbsd/fmtutil-sys @@ -299825,10 +310957,10 @@ binfiles arch=i386-netbsd size=13 name texlive-scripts.i386-solaris category TLCore -revision 55172 +revision 64356 shortdesc i386-solaris files of texlive-scripts -containersize 588 -containerchecksum 2fb310480ba958b8cf6ee943021a85c09e3b93f364934878268e285dcc6d848e5df2fa0f0edd9bf1c99c70ff6e2c3584f892ed86a9644fbf46a3cc7addece2d0 +containersize 596 +containerchecksum 5abada22a36dce84d86bb272f9117c18d6ba67af95dcf76aacc34059c2b887347f05e4de27f6bf2a7aa4e1955a9c6dda1d800db044ac50eaa4b000c6c7204546 binfiles arch=i386-solaris size=13 bin/i386-solaris/fmtutil bin/i386-solaris/fmtutil-sys @@ -299846,10 +310978,10 @@ binfiles arch=i386-solaris size=13 name texlive-scripts.universal-darwin category TLCore -revision 57908 +revision 64356 shortdesc universal-darwin files of texlive-scripts -containersize 572 -containerchecksum 48490aa11d6b3cf386b628d4eb3ec73a2f8b5a41a1e715efc7cef249e44b610671fb8bc4e25f47cca7aca47dee5d0ccdac6229c15331ec6d6a54177a9b6c06d7 +containersize 580 +containerchecksum b690e013b2fffec8c1380d5050c185631efc3fc3b7bf159ab6de770fbe98c2353ab42ffae97971c0412f99b566aee06d81030d2bcf5d712c6cabc028b6cc2985 binfiles arch=universal-darwin size=13 bin/universal-darwin/fmtutil bin/universal-darwin/fmtutil-sys @@ -299865,25 +310997,25 @@ binfiles arch=universal-darwin size=13 bin/universal-darwin/updmap-sys bin/universal-darwin/updmap-user -name texlive-scripts.win32 -category TLCore -revision 58829 -shortdesc win32 files of texlive-scripts -containersize 36308 -containerchecksum 79231b3b328dbbb9e32c28a466d7afa982b2c4e8a584ef324bc79b12d2bdb7b0737b2393adcdb9896b1f98dab004c82f726a9f442ab6ebef8bcb113bb5a56a6c -binfiles arch=win32 size=40 - bin/win32/fmtutil-sys.exe - bin/win32/fmtutil-user.exe - bin/win32/fmtutil.exe - bin/win32/mktexfmt.exe - bin/win32/mktexmf.exe - bin/win32/mktexpk.exe - bin/win32/mktextfm.exe - bin/win32/rungs.exe - bin/win32/texhash.exe - bin/win32/updmap-sys.exe - bin/win32/updmap-user.exe - bin/win32/updmap.exe +name texlive-scripts.windows +category TLCore +revision 66427 +shortdesc windows files of texlive-scripts +containersize 60300 +containerchecksum 1eb4c83501471740f30fe37058bf15a5d2f51ebe994914983c9cdb763307a55e3d7fd9a7f9c36b5935c526347c86a5c33a4119de9cc978facc88f2a56adef1fa +binfiles arch=windows size=55 + bin/windows/fmtutil-sys.exe + bin/windows/fmtutil-user.exe + bin/windows/fmtutil.exe + bin/windows/mktexfmt.exe + bin/windows/mktexmf.exe + bin/windows/mktexpk.exe + bin/windows/mktextfm.exe + bin/windows/rungs.exe + bin/windows/texhash.exe + bin/windows/updmap-sys.exe + bin/windows/updmap-user.exe + bin/windows/updmap.exe install-tl-windows.bat tl-tray-menu.exe tlpkg/installer/tl-cmd.bat @@ -299891,10 +311023,10 @@ binfiles arch=win32 size=40 name texlive-scripts.x86_64-cygwin category TLCore -revision 55172 +revision 64356 shortdesc x86_64-cygwin files of texlive-scripts -containersize 588 -containerchecksum 198d75e8723986769b6af3e0fa8a5075e6cf30cccded63b098a0415d96b7a93ab69ebb4e0b3b77e1e5771b810d126f3467b2ccfd9119c93b20a68a5438931488 +containersize 596 +containerchecksum b81b618d2750ba2fa1a2c333ff362f1da32cc37081955a3a8374a4128bb7d96eb6525ff605f796d89f84bfac2fc17e36e9c8c032766e4fda089fb651b990a851 binfiles arch=x86_64-cygwin size=13 bin/x86_64-cygwin/fmtutil bin/x86_64-cygwin/fmtutil-sys @@ -299912,10 +311044,10 @@ binfiles arch=x86_64-cygwin size=13 name texlive-scripts.x86_64-darwinlegacy category TLCore -revision 55117 +revision 64356 shortdesc x86_64-darwinlegacy files of texlive-scripts -containersize 592 -containerchecksum e8355ee745e80e4f68a795f297482c96e6fab4d619190c7b753776688a80a633c15d233643813b92c163ac3db36e158980d004442ce184e88dc6bb171951b934 +containersize 600 +containerchecksum aa28b97c27b3792a2417357cd6da685faadbf77bfd7022618602663b82c0e1e0971d053810d8f8c1e6f3809cdaaed080435c91bb48e12b71eaad8d1915c56b77 binfiles arch=x86_64-darwinlegacy size=13 bin/x86_64-darwinlegacy/fmtutil bin/x86_64-darwinlegacy/fmtutil-sys @@ -299933,10 +311065,10 @@ binfiles arch=x86_64-darwinlegacy size=13 name texlive-scripts.x86_64-linux category TLCore -revision 55172 +revision 64356 shortdesc x86_64-linux files of texlive-scripts -containersize 592 -containerchecksum 4fcfbb98e6a880498a5127f7b62fa2633c7ba29523cf00cfe06d34a2f351e916275e78f603e131bf61bd4b4c46f8f547d42aba2849355959144a2ae04b3876e3 +containersize 596 +containerchecksum e9905c021a34725cff15168a29f1d396c120b2b1c4b95acb1b95e3d8f73fe2b8187da30ff5eb17cb7eb0af5e8e63b7cf751f2082f5e5fbc4652e4f9bc3237d26 binfiles arch=x86_64-linux size=13 bin/x86_64-linux/fmtutil bin/x86_64-linux/fmtutil-sys @@ -299954,10 +311086,10 @@ binfiles arch=x86_64-linux size=13 name texlive-scripts.x86_64-linuxmusl category TLCore -revision 55172 +revision 64356 shortdesc x86_64-linuxmusl files of texlive-scripts -containersize 596 -containerchecksum e6a5809c0d6df15ac6cddfdeb75ce3e05170e6017ca3a15599c93e2c6c1a0ae28f1e6d2c61cc15d3e593df5a873c83a94da8f48bd2f1ba33aa2429444d595a10 +containersize 608 +containerchecksum a7403c4f228863d3e4c6dbc050cc006087075747c69d135428bd2c921638cc626dac33c6f59c3735f05aef3f9fefb080093794c31658fef2d42b7dc37317ff43 binfiles arch=x86_64-linuxmusl size=13 bin/x86_64-linuxmusl/fmtutil bin/x86_64-linuxmusl/fmtutil-sys @@ -299975,10 +311107,10 @@ binfiles arch=x86_64-linuxmusl size=13 name texlive-scripts.x86_64-solaris category TLCore -revision 55172 +revision 64356 shortdesc x86_64-solaris files of texlive-scripts -containersize 592 -containerchecksum 29a295d3b479893cdfbd51c183a274f1952bf6d5476305e7793fca2ff8d9745e43ee0a01d3be899fbc01006b497ba83cbfd43b011a743a84a9e3f6ff318ab448 +containersize 596 +containerchecksum a4ffa4a40e052e3aa0940acda6ebc4e3f4f06c9da5062142d1d2b3bba57257d8aadd3babd7ad1da2745bf1a7bd6a22bb435b24645263f5742e2fe76ff07ccea0 binfiles arch=x86_64-solaris size=13 bin/x86_64-solaris/fmtutil bin/x86_64-solaris/fmtutil-sys @@ -300034,7 +311166,7 @@ docfiles size=302 name texlive.infra category TLCore -revision 58938 +revision 66512 shortdesc basic TeX Live infrastructure longdesc This package contains the files needed to get tlmgr running: longdesc perl modules, xz binaries, plus (sometimes) tar, wget, lz4, and @@ -300042,11 +311174,11 @@ longdesc various other support files. This package also represents the longdesc tlcritical recovery scripts. The standalone installer is close, longdesc but not the same; it's defined in 00texlive.installer. depend texlive.infra.ARCH -containersize 228208 -containerchecksum 6c92900b06718143c50d33595adbc0bc2829b6ee508c2d29d9ae241bc8dd08e64aa54d522c11bfb2e03e0b684ffc3fb09cca435ba29bcc04cd4a746afdb5cfcb -doccontainersize 207600 -doccontainerchecksum f9e59ff1cc0da2248fe2c302c970e9b3e2698a451c38ce2549bcb803178f7669a1457e633a1e7e75b79f9ab094870210a52aa979e20b119d0e927f7dc45ba1a8 -docfiles size=138 +containersize 352940 +containerchecksum a71b92deef545eea40aa523ea337e77df2bad58cd8be77ddafc7f0bf6f1469a30d5e12d33d4e4d5d89d004c3d008630d1673aeba6f80e6e8a65e19a5446d000c +doccontainersize 206432 +doccontainerchecksum 14b7c89dd015fe0455ad8291736a53687598a4e3aaca413950eb334eafac91eb63b213967684778d2e2a3b46ff79909311797116be10a587c016646c40fea835 +docfiles size=139 README README.usergroups index.html @@ -300087,7 +311219,7 @@ docfiles size=138 texmf-dist/scripts/texlive/NEWS tlpkg/README tlpkg/installer/COPYING.MinGW-runtime.txt -runfiles size=262 +runfiles size=322 LICENSE.CTAN LICENSE.TL release-texlive.txt @@ -300095,7 +311227,7 @@ runfiles size=262 texmf-dist/scripts/texlive/tl-errmess.vbs texmf-dist/scripts/texlive/tlmgr.pl texmf-dist/scripts/texlive/tlmgrgui.pl - texmf-dist/scripts/texlive/uninstall-win32.pl + texmf-dist/scripts/texlive/uninstall-windows.pl texmf-dist/scripts/texlive/uninstq.vbs texmf-dist/web2c/fmtutil-hdr.cnf texmf-dist/web2c/updmap-hdr.cfg @@ -300118,13 +311250,14 @@ runfiles size=262 tlpkg/gpg/tl-key-extension.txt tlpkg/gpg/trustdb.gpg tlpkg/installer/config.guess + tlpkg/installer/curl/curl-ca-bundle.crt name texlive.infra.aarch64-linux category TLCore -revision 57930 +revision 61925 shortdesc aarch64-linux files of texlive.infra -containersize 82732 -containerchecksum 50de5963b3dad7b08525821fa037d30154704f1a101646cc5ec6dfbcd1e488585062df16176c71823134e3b1c70f0b9ab1402f93d5ab9f2f4b068998e1bbc169 +containersize 82736 +containerchecksum 3a5b4da86c5ef5f186f0caf5ce9339dc396d70cccccea9bef25d545178c24f0dffef946563be78723f80a57972bc7e3994bcf60af8156bb1616d3da3106b76eb binfiles arch=aarch64-linux size=49 bin/aarch64-linux/mktexlsr bin/aarch64-linux/tlmgr @@ -300132,10 +311265,10 @@ binfiles arch=aarch64-linux size=49 name texlive.infra.amd64-freebsd category TLCore -revision 58165 +revision 61925 shortdesc amd64-freebsd files of texlive.infra containersize 342980 -containerchecksum de2d8ba6ea6fdd68d4154c623f3b5c61b20057cb2c4d7ba15c0098183e15ffd47d1cd94132b8fdc0ff46c1251b0f8689818700d829c11564ddf51fea9147c56b +containerchecksum 386cf3a64d71c2098025725867d3a07011da5648a2c345667de73d780106b13764ccf0ad91e80daf7d33ae0419eef5aa0a136a458ee1f52a408138a65524baa5 binfiles arch=amd64-freebsd size=265 bin/amd64-freebsd/mktexlsr bin/amd64-freebsd/tlmgr @@ -300145,11 +311278,11 @@ binfiles arch=amd64-freebsd size=265 name texlive.infra.amd64-netbsd category TLCore -revision 58183 +revision 62368 shortdesc amd64-netbsd files of texlive.infra -containersize 357788 -containerchecksum 991592cedbf78e6fc88de51a03c54c5fca7ac21c2a8d0f80f345b732b0724d7248db2d1098ab22ba351604907dfdbcbaa760deb07498eb051a86ee779b3168f4 -binfiles arch=amd64-netbsd size=228 +containersize 377636 +containerchecksum fa6ea632798d574aba653e2e05e3d681df356ba8e5b275e6910cbe67180f1baac1e54558121c0b28b50c0e57790fa6efb231c4ef7e9dfffa899e8dcca4170186 +binfiles arch=amd64-netbsd size=240 bin/amd64-netbsd/mktexlsr bin/amd64-netbsd/tlmgr tlpkg/installer/lz4/lz4.amd64-netbsd @@ -300158,34 +311291,22 @@ binfiles arch=amd64-netbsd size=228 name texlive.infra.armhf-linux category TLCore -revision 57956 +revision 61925 shortdesc armhf-linux files of texlive.infra -containersize 159560 -containerchecksum 31326d9c0ed50fab9a8f309623b6a127867c9c2b7198179f0b878eb1adc089df5af5b3ee9ed06caf5343415ed0bdee47f87906cf66994902f1f165a5379451bf +containersize 159564 +containerchecksum e6a3181b04161f4f783a1da553cc90191648fe630e4e6965d03ebc02a53d7b36b320fa84e1928c5d734bac04010d87593b3db8628b469a5c2837280f1d6cf91d binfiles arch=armhf-linux size=101 bin/armhf-linux/mktexlsr bin/armhf-linux/tlmgr tlpkg/installer/lz4/lz4.armhf-linux tlpkg/installer/xz/xz.armhf-linux -name texlive.infra.i386-cygwin -category TLCore -revision 57940 -shortdesc i386-cygwin files of texlive.infra -containersize 169248 -containerchecksum 3dfaff0239e4272c3e7772b5d969a0cc6fb843ca7edb2cb1b3dd5eeb8bc536cff58f063b7b51c0049f5b929afd9d5134c5f6e567883dca612ccf899d0b7b1bb5 -binfiles arch=i386-cygwin size=107 - bin/i386-cygwin/mktexlsr - bin/i386-cygwin/tlmgr - tlpkg/installer/lz4/lz4.i386-cygwin.exe - tlpkg/installer/xz/xz.i386-cygwin.exe - name texlive.infra.i386-freebsd category TLCore -revision 58166 +revision 61925 shortdesc i386-freebsd files of texlive.infra containersize 310740 -containerchecksum d4a26576ee9f185aaa4b8f2f2404dd4af62bebc1ad77c216b0231175e4dfe518c629dda2e1e88536bc4f2535f19abc14f8f93b3b567cc67d85870a8d6511ab04 +containerchecksum 41f80752afe03a4921b329896be5d6146f9b65ea9b5bd806db1227318af4d839a2afdc047ec30660f1dd4613e9680447356602f505efb99e525ad5e40c9e486e binfiles arch=i386-freebsd size=227 bin/i386-freebsd/mktexlsr bin/i386-freebsd/tlmgr @@ -300195,10 +311316,10 @@ binfiles arch=i386-freebsd size=227 name texlive.infra.i386-linux category TLCore -revision 57933 +revision 61925 shortdesc i386-linux files of texlive.infra -containersize 155748 -containerchecksum c252c9dbef9a0d6d31a85039bb605e663e338bd487981246fcbfc2a9a5b48eef2692337dc31575c84b8db910ddc57da70570a5abb5c8c3bc9746f47fe1851196 +containersize 155752 +containerchecksum 723de926cafecd2388f1f820ea6d1ea98a2afbb6ce2f4d28329d50d2211dd6de3099472a52482dab62c1ab78f1edd84c6657d6561a250cdc2d44c436c55f3c7a binfiles arch=i386-linux size=96 bin/i386-linux/mktexlsr bin/i386-linux/tlmgr @@ -300207,11 +311328,11 @@ binfiles arch=i386-linux size=96 name texlive.infra.i386-netbsd category TLCore -revision 58183 +revision 62368 shortdesc i386-netbsd files of texlive.infra -containersize 344784 -containerchecksum d094bb490cdfb328cba11e15c0c199ccd1f05c33fa7d8a8b197b697cee6f158f498f470282b7bc2711f537b06a18b32e314d06202c9aa6f7efe8bc446825006f -binfiles arch=i386-netbsd size=219 +containersize 362812 +containerchecksum 4da854d5944020ad8e7cd595d95c4b86eb4575279dfe7a8a68148f776901080602ff1c81985f6388f4aa98f71ee2df59309088000f7cd020c79d4dbb413aae55 +binfiles arch=i386-netbsd size=232 bin/i386-netbsd/mktexlsr bin/i386-netbsd/tlmgr tlpkg/installer/lz4/lz4.i386-netbsd @@ -300220,10 +311341,10 @@ binfiles arch=i386-netbsd size=219 name texlive.infra.i386-solaris category TLCore -revision 58212 +revision 61925 shortdesc i386-solaris files of texlive.infra containersize 306488 -containerchecksum c8627ea0dcf3d36ce293f130b573c5b909dec968efab82c337aa539c7f962e9fe685ff8045639875f0457aebe75e32e157d08bf5c83edb78f4443c451e737880 +containerchecksum c239a81423b16bf2358de3a0dc5ff193439f1b09326d6e44ada55bbc063d21dcfb1bf2699025fef076c8c73ae6cad1c4e579c6bcdcd704cfe50973b45c4fc3ff binfiles arch=i386-solaris size=211 bin/i386-solaris/mktexlsr bin/i386-solaris/tlmgr @@ -300233,31 +311354,29 @@ binfiles arch=i386-solaris size=211 name texlive.infra.universal-darwin category TLCore -revision 57908 +revision 62358 shortdesc universal-darwin files of texlive.infra -containersize 644044 -containerchecksum 3923162b0ee7adb2ec3d5d2e773e72373e198e6fbdf03f8d4c14ce1bd5d6b0633f23f717725e8eb4ac4a0399fe38f9a8dc819310fba4f81e08266445d0073617 -binfiles arch=universal-darwin size=481 +containersize 308304 +containerchecksum 2236a86836f174159cffa4083abf8b1af053548402f60a1db18bf7959ec14896935e0be83a134042ffb69b60e8653381b085b33028794df7d40ed43fd80768fc +binfiles arch=universal-darwin size=246 bin/universal-darwin/mktexlsr bin/universal-darwin/tlmgr tlpkg/installer/lz4/lz4.universal-darwin - tlpkg/installer/wget/wget.universal-darwin tlpkg/installer/xz/xz.universal-darwin -name texlive.infra.win32 -category TLCore -revision 58810 -shortdesc win32 files of texlive.infra -containersize 2759064 -containerchecksum ea3ad1e9f7c1ce14bd421e29363c5ffe2c01a532e22570362b2237929e6488180359dbd0c216018c432550f71e56463907450504eae9e32912ff5d6950cf649f -binfiles arch=win32 size=1587 - bin/win32/mktexlsr.exe - bin/win32/runscript.dll - bin/win32/runscript.exe - bin/win32/runscript.tlu - bin/win32/tlmgr.bat - bin/win32/wrunscript.exe - tlpkg/installer/curl/curl-ca-bundle.crt +name texlive.infra.windows +category TLCore +revision 65931 +shortdesc windows files of texlive.infra +containersize 3084040 +containerchecksum 8d3ea18aab799c47b4ad0cebb33f3a30b8c56817d87915344ccde9809d6a95f7aaa24bfc60cc438e55aa433b9973620c238839064a0664e4ffaac14fb5d4ece0 +binfiles arch=windows size=1940 + bin/windows/mktexlsr.exe + bin/windows/runscript.dll + bin/windows/runscript.exe + bin/windows/runscript.tlu + bin/windows/tlmgr.bat + bin/windows/wrunscript.exe tlpkg/installer/curl/curl.exe tlpkg/installer/lz4/lz4.exe tlpkg/installer/tar.exe @@ -300266,10 +311385,10 @@ binfiles arch=win32 size=1587 name texlive.infra.x86_64-cygwin category TLCore -revision 57940 +revision 61925 shortdesc x86_64-cygwin files of texlive.infra containersize 180056 -containerchecksum c052348185f08a05da5da99252f837654318e59630a89aec0fe9e8704a4f725e21a887e673b86deeb6d8787696ff5d7b2a073a42bb5e544c4603980961fdd5ac +containerchecksum 18cb2795782e668c343fab8de01817cf1f965e4f5eab6f94f115f90dd9550b0af316ea2aa0ff98c11df75fd4be1e2a4e34473c21c4989c2e27ee6eb18c024d43 binfiles arch=x86_64-cygwin size=111 bin/x86_64-cygwin/mktexlsr bin/x86_64-cygwin/tlmgr @@ -300278,10 +311397,10 @@ binfiles arch=x86_64-cygwin size=111 name texlive.infra.x86_64-darwinlegacy category TLCore -revision 58164 +revision 61925 shortdesc x86_64-darwinlegacy files of texlive.infra -containersize 326744 -containerchecksum 113dcc28a9c9df46680831a624ca4820bc3eea8dea371039ff58049f971407a5e88920aae2a2ab5693e31233de4da0290379d7390fbcca3cf0a0b17712431b61 +containersize 326740 +containerchecksum 5e38ad9a37d0099855c0c3c9f926f376ec9947951f3193eefdf2fd2c15477f9bbc82ab1d9ee60a40b73a4c73847ef9da24548fc44336a34b4b6e28cc64e9c5c2 binfiles arch=x86_64-darwinlegacy size=221 bin/x86_64-darwinlegacy/mktexlsr bin/x86_64-darwinlegacy/tlmgr @@ -300291,10 +311410,10 @@ binfiles arch=x86_64-darwinlegacy size=221 name texlive.infra.x86_64-linux category TLCore -revision 57933 +revision 61925 shortdesc x86_64-linux files of texlive.infra -containersize 145504 -containerchecksum 3611f63adc970c8737414cf9b024165520f03b40eb60dcaddba70b3706b1c6d2e57b718dc29f2466ccae258d04660d483504886e535ee9062ceeb0114ca17cf3 +containersize 145512 +containerchecksum cf9b809403543294e859fe298d77386cff0853faa6180c9ecf52c5834bd5a246521460cab88b51a2bc20b3d3e4e33843eeb693e2939861d83f1a7ba118f2d9b5 binfiles arch=x86_64-linux size=85 bin/x86_64-linux/mktexlsr bin/x86_64-linux/tlmgr @@ -300303,10 +311422,10 @@ binfiles arch=x86_64-linux size=85 name texlive.infra.x86_64-linuxmusl category TLCore -revision 53254 +revision 61925 shortdesc x86_64-linuxmusl files of texlive.infra -containersize 536824 -containerchecksum 4ec14b45fbe8c5972cb313fe46eb16984310cdbe5dd618ddf3d72fac98d48e19c83b4d11426c5700c56393d2ee08c8c518f30cf5e904a24638566872809c9071 +containersize 536828 +containerchecksum ba4f6301d0850e4c1b36b0812f198c1161b3ef14d57b16304ac3d74d49cecbcd764c6e161232d37c5ba3133e5788483f19b95d994fec17c4ec0067c6090ca2e7 binfiles arch=x86_64-linuxmusl size=474 bin/x86_64-linuxmusl/mktexlsr bin/x86_64-linuxmusl/tlmgr @@ -300316,10 +311435,10 @@ binfiles arch=x86_64-linuxmusl size=474 name texlive.infra.x86_64-solaris category TLCore -revision 58212 +revision 61925 shortdesc x86_64-solaris files of texlive.infra containersize 332292 -containerchecksum a852ddfa048af6881717254ea2e159323fa0875beaaa3f572401ad894b6c2f745729e257b659336c5a0ee3adf2c8913f65024e0555307d337d046b376dbab791 +containerchecksum 479bd6f8b32569d2583a02d95d98d71bca9919e251e5885fece51567f79cbe4b406cf81f6cd1c964ecdf3eccbc13ef2064eb2bb9997a087c9e1d8706dc374fc7 binfiles arch=x86_64-solaris size=248 bin/x86_64-solaris/mktexlsr bin/x86_64-solaris/tlmgr @@ -300389,15 +311508,6 @@ containerchecksum 1b22cc157eb393e8fa2af93cc3064a9fd687c44631c0838b5574236883c95b binfiles arch=armhf-linux size=1 bin/armhf-linux/texliveonfly -name texliveonfly.i386-cygwin -category Package -revision 24062 -shortdesc i386-cygwin files of texliveonfly -containersize 344 -containerchecksum 810b373b4956f56ccd989e04c287df150ea97159f53c8af06872e52f633b3cfb1f5fc7b6f05dfa78a5f97d9deb078278d733789912d817f05c8271227325d566 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texliveonfly - name texliveonfly.i386-freebsd category Package revision 24062 @@ -300443,14 +311553,14 @@ containerchecksum 124fc29242894e0e0608ccd3f54bcecd8a37d2e87b32689cc64f4c05e79cfd binfiles arch=universal-darwin size=1 bin/universal-darwin/texliveonfly -name texliveonfly.win32 +name texliveonfly.windows category Package -revision 24062 -shortdesc win32 files of texliveonfly -containersize 688 -containerchecksum 00a147553e234ef7aa13d5fdb14c603a94ed54e57cea63dbd1b12cae76cc2b0e1cfd7c011180b04bf76622a5a0293c077910f5ee1ba9246d35e96569a5f48af5 -binfiles arch=win32 size=1 - bin/win32/texliveonfly.exe +revision 65891 +shortdesc windows files of texliveonfly +containersize 2312 +containerchecksum 3d4080b7e906b6342ac5c48ff1e18db25b71a5b36f09b920697f874ebe641a2f703041108fbaa6e23db3e34f1e796e8bc461af518f3bc35cda903806e16988bc +binfiles arch=windows size=2 + bin/windows/texliveonfly.exe name texliveonfly.x86_64-cygwin category Package @@ -300553,15 +311663,6 @@ containerchecksum 47192f4c3387edd367e1b9cafc54d2b3046ad97fddbf09ca845f2cbfbd77b1 binfiles arch=armhf-linux size=1 bin/armhf-linux/texloganalyser -name texloganalyser.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of texloganalyser -containersize 340 -containerchecksum ec0d3e98b1cc4848b741e53efeca460eea9e90bf9867e55769b2f86a02c02d0570bc4ac2f48e7c061f30d033710d89982c4baa2d4144ae0615bd2b0f17a9c01b -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texloganalyser - name texloganalyser.i386-freebsd category Package revision 16472 @@ -300607,14 +311708,14 @@ containerchecksum f46379f38fc4f1dd4f9641c406d2b66c1911ad63b16e90e55ec2d63928111b binfiles arch=universal-darwin size=1 bin/universal-darwin/texloganalyser -name texloganalyser.win32 +name texloganalyser.windows category Package -revision 15404 -shortdesc win32 files of texloganalyser -containersize 692 -containerchecksum 293dcf9679eb09bf361463c4ce26e762f173b154df2d4692ad9e6a85deed9edd1f647ea9e011a2cc484c336df3b4bf68009a9db31a72a12a736b309c2f969dac -binfiles arch=win32 size=1 - bin/win32/texloganalyser.exe +revision 65891 +shortdesc windows files of texloganalyser +containersize 2312 +containerchecksum 21252cc6acac71040db62a20721a0c895561146499f0b32f73b1ae9ea5332c1ddd22ebe6496be1d54a4d2e9bb121aabb05c5d88a3a03e23a2d853e7baacbd493 +binfiles arch=windows size=2 + bin/windows/texloganalyser.exe name texloganalyser.x86_64-cygwin category Package @@ -300661,6 +311762,170 @@ containerchecksum a14d86a5267e04a76abd8f45f196ee727bcd1be12e83a02d8866a6482f3306 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/texloganalyser +name texlogfilter +category Package +revision 62792 +shortdesc Filter LaTeX engines output or log file +longdesc texlogfilter is a Perl script designed to filter LaTeX engines +longdesc output or log file (LaTeX, pdfLaTeX, LuaLaTeX or XeLaTeX). It +longdesc reduces the LaTeX output or log to keep only warnings and +longdesc errors. The result is colorised. Options allow to mask specific +longdesc warnings, such as box or references/citations warnings. It's +longdesc also possible to add custom filter patterns. +depend texlogfilter.ARCH +containersize 3716 +containerchecksum 8012a0cca2e408c60a5ead5d59af92ba4befffe184f298ba16f6b57f1487d1e4cb22301a88d61748c8db0fca444bf861e01dbae5335aabaeb2c25e3f94f1ff8d +doccontainersize 31060 +doccontainerchecksum 76fbce938945ebfd6bfb78022219fe217b7e6f0ae3c298e1bd9d0c570bfff1100d34034475f2577a9676e01a5bf64428664bb5cce4fd65c7d0cd350c9f156d5f +docfiles size=16 + texmf-dist/doc/man/man1/texlogfilter.1 + texmf-dist/doc/man/man1/texlogfilter.man1.pdf + texmf-dist/doc/support/texlogfilter/LICENSE + texmf-dist/doc/support/texlogfilter/README details="Readme" + texmf-dist/doc/support/texlogfilter/texlogfilter.html details="Package documentation" +runfiles size=3 + texmf-dist/scripts/texlogfilter/texlogfilter +catalogue-contact-home https://gricad-gitlab.univ-grenoble-alpes.fr/labbeju/latex-packages/ +catalogue-ctan /support/texlogfilter +catalogue-license lppl1.3 +catalogue-topics log-manip +catalogue-version 1.1 + +name texlogfilter.aarch64-linux +category Package +revision 61780 +shortdesc aarch64-linux files of texlogfilter +containersize 340 +containerchecksum 4d314c94112c95eb6ce20f46cdd752441c13b2070da826c38627c85baa9decab51c3fe31293739157ac6fad23f460d1bb0c559fabb0b470f59a0c6e10f8c9d8c +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texlogfilter + +name texlogfilter.amd64-freebsd +category Package +revision 61780 +shortdesc amd64-freebsd files of texlogfilter +containersize 344 +containerchecksum e665dfeff158a6d39cf8c3ef4e4b67f55000964372f03fdf2e5ade9c0dbc85b3b4e1ead60b98226777a18fec3481624c39cf611139d9ad7dce67cb519a67c32d +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texlogfilter + +name texlogfilter.amd64-netbsd +category Package +revision 61780 +shortdesc amd64-netbsd files of texlogfilter +containersize 340 +containerchecksum c8a42238e10ddd947ba0fd8683f7f923a0d4c03982b17e89ec76acbfb0fb3d9132735b5dfbee7eb7770ac8aff7fe0a73c50abaac112fa7d932e542c3f27c6cb1 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texlogfilter + +name texlogfilter.armhf-linux +category Package +revision 61780 +shortdesc armhf-linux files of texlogfilter +containersize 340 +containerchecksum 90e87f40d6bb8d535f74130e857e69edb4d288f09d4ef4a51551d5f5306b80954496279552f2a5a97e40a3c09b686b4a490392617d727d6798dcb773fee5c9b8 +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texlogfilter + +name texlogfilter.i386-freebsd +category Package +revision 61780 +shortdesc i386-freebsd files of texlogfilter +containersize 340 +containerchecksum 3ecf040de4fb8b5f258c326cb5ce5ff198a134cee90bfdb50641dc3770c391e90a77e8002b17f7e18d8e61bbd0cd56a98632581e42d1409933707107583ab9df +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texlogfilter + +name texlogfilter.i386-linux +category Package +revision 61780 +shortdesc i386-linux files of texlogfilter +containersize 336 +containerchecksum 7c7e12ea0e7ef8bf603d5abae16f72140d8307f049100d3a2fc27ff713c8b32c29ca52152a4197d9ca160a85cddc1cecf7a8de0ff1b9b37be034c38679258f79 +binfiles arch=i386-linux size=1 + bin/i386-linux/texlogfilter + +name texlogfilter.i386-netbsd +category Package +revision 61780 +shortdesc i386-netbsd files of texlogfilter +containersize 340 +containerchecksum 292b89b6bd8e2b0c36ad01a2abd914ada3dcdd764393d0a3894b11251272ec92b9232980949c67914f541d9497a3568183695884576b4a5185c5d552c58a1a11 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texlogfilter + +name texlogfilter.i386-solaris +category Package +revision 61780 +shortdesc i386-solaris files of texlogfilter +containersize 340 +containerchecksum ec57b7e147edf8c983ce6b40b45af45496b8a9cb7431da9169beeee22ad2600d794e2f64fb12fe402ac0d6219327091ebce8f6b2cf0e330382a239352173df81 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texlogfilter + +name texlogfilter.universal-darwin +category Package +revision 61780 +shortdesc universal-darwin files of texlogfilter +containersize 344 +containerchecksum 63bd7218cf9ffef45cc3505f8371f3df6d8dd6c831f2396d8184bcb2ad83763065bc11bc1434ec53da647c04d33fda9bdba1da77edb30c58b0de709b3c63cf88 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texlogfilter + +name texlogfilter.windows +category Package +revision 65891 +shortdesc windows files of texlogfilter +containersize 2308 +containerchecksum 1456e9551c39726b2c15c1c1099d17c0c16c4f2fdda86a047e0a1414c664f35be38ab7dd2af8b777bb20337be5fd0ad2cb1c66232f95ce8920ab064b4dbedc93 +binfiles arch=windows size=2 + bin/windows/texlogfilter.exe + +name texlogfilter.x86_64-cygwin +category Package +revision 61780 +shortdesc x86_64-cygwin files of texlogfilter +containersize 344 +containerchecksum f6fd2bb6492ea39ef6da565d5d184e54c10142b1b2512333b4e149264071f4e2eddfa8d988acd8e432159358c68437005c6620446a62f08406a66da816215f1b +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texlogfilter + +name texlogfilter.x86_64-darwinlegacy +category Package +revision 61780 +shortdesc x86_64-darwinlegacy files of texlogfilter +containersize 348 +containerchecksum c6221938621fbcf548363edd06017eaf85ddc97686fb9bf1fcc33ea0503805405df94d15f40677b8061813c83ae314d4ef7a960814365a39280bdaf40fc4ce15 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texlogfilter + +name texlogfilter.x86_64-linux +category Package +revision 61780 +shortdesc x86_64-linux files of texlogfilter +containersize 340 +containerchecksum e21e5a049e5069193d8e810742a6af22a7bd18a2192e75b2f956ef6c2843c1ba33ca7b0da8cb7713114416f4d1fe906687ec279f72b5e830ebb37c3e26823cc2 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texlogfilter + +name texlogfilter.x86_64-linuxmusl +category Package +revision 61780 +shortdesc x86_64-linuxmusl files of texlogfilter +containersize 344 +containerchecksum 70dadd6eaf4f0c31eff9ca853ac1c295adc77b1882f609ca2213153b50364d3edd003bdcdb5377fe07a703cf91f7a8e6ce6a8c3d2ea26bcc21d557e371491488 +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texlogfilter + +name texlogfilter.x86_64-solaris +category Package +revision 61780 +shortdesc x86_64-solaris files of texlogfilter +containersize 340 +containerchecksum 7d4b92f83e5e6116472ac4c37427f7c573b6caeb0b8349cf5990920d82bada8ab491febac6c062e2d5fed31c6648b0d0bb1c815c4951a1580faeea0c5c2ab5d5 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texlogfilter + name texlogos category Package revision 19083 @@ -300684,6 +311949,178 @@ catalogue-license lppl catalogue-topics logo catalogue-version 1.3.1 +name texlogsieve +category Package +revision 64301 +shortdesc Filter and summarize LaTeX log files +longdesc texlogsieve reads a LaTeX log file (or the standard input if no +longdesc file is specified), filters out less relevant messages, and +longdesc displays a summary report. It is a texlua script, similar in +longdesc spirit to tools such as texfot, texloganalyser, rubber-info, +longdesc textlog_extract, texlogparser, and others. Highlights: Two +longdesc reports: the most important messages from the log file followed +longdesc by a summary of repeated messages, undefined references etc.; +longdesc The program goes to great lengths to correctly handle TeX line +longdesc wrapping and does a much better job at that than existing +longdesc tools; Multiline messages are treated as a single entity; +longdesc Several options to control which messages should be filtered +longdesc out; No messages are accidentally removed; The summary report +longdesc is currently simple, but useful. +depend texlogsieve.ARCH +containersize 45392 +containerchecksum 8017144da38d3e7b011b1620b4165e62159cb2975a418b350bf8a5d87e8d519166fb87b916a96ef6ec203df12834e72a31e21c41a84e113e8ebe620bd5eb8860 +doccontainersize 114240 +doccontainerchecksum 7a744ba4bdbcda04c1adf53c07acb5d20799268f31aebf2234203251ac56a96ad6cd0574d1c25c983eec0d7191dcb49bc9f11dbb2aa6aedccf31c7499400fd9f +docfiles size=45 + texmf-dist/doc/man/man1/texlogsieve.1 + texmf-dist/doc/man/man1/texlogsieve.man1.pdf + texmf-dist/doc/support/texlogsieve/LICENCE.txt + texmf-dist/doc/support/texlogsieve/README.md details="Readme" + texmf-dist/doc/support/texlogsieve/texlogsieve.pdf details="Package documentation" + texmf-dist/doc/support/texlogsieve/texlogsieve.tex +runfiles size=50 + texmf-dist/scripts/texlogsieve/texlogsieve +catalogue-contact-repository https://gitlab.com/lago/texlogsieve +catalogue-ctan /support/texlogsieve +catalogue-license gpl3+ +catalogue-topics comp-mgmt log-manip use-lua +catalogue-version 1.3.1 + +name texlogsieve.aarch64-linux +category Package +revision 61328 +shortdesc aarch64-linux files of texlogsieve +containersize 340 +containerchecksum 0c4cb0b2bb98e5d704bb7aace94b0d1e8910816a36444cea1c27b2eaff120bee71a2e63581708bc3a9f81a636098f4d96c8a61f5553a437c5a07d7b23009f6e9 +binfiles arch=aarch64-linux size=1 + bin/aarch64-linux/texlogsieve + +name texlogsieve.amd64-freebsd +category Package +revision 61328 +shortdesc amd64-freebsd files of texlogsieve +containersize 340 +containerchecksum 03040526081779d4505de9a2a7cbbad62be1492ae4cb3599de76d255fb92f67f0b38af1b56be4b8b256e477489d4df5b0f8054fecc1a3a644a2d8b45a14a0764 +binfiles arch=amd64-freebsd size=1 + bin/amd64-freebsd/texlogsieve + +name texlogsieve.amd64-netbsd +category Package +revision 61328 +shortdesc amd64-netbsd files of texlogsieve +containersize 340 +containerchecksum 852eafe3aa14783c488ba1fbf31f23eb3e1518d9b8782a9dd436e0b30275c9e43fc83fc8a1c9b08b30b3e94d43766e446ea988939d6bb3d9e75abdba678c0b54 +binfiles arch=amd64-netbsd size=1 + bin/amd64-netbsd/texlogsieve + +name texlogsieve.armhf-linux +category Package +revision 61328 +shortdesc armhf-linux files of texlogsieve +containersize 336 +containerchecksum 562cc1afd34e0942a7c7e7f48b44982594989fb9e794e095f99e7b35d4fb483e063ee381236f75cf174b124df12485dc356e2173a0e9cb604e092febfb1b08fc +binfiles arch=armhf-linux size=1 + bin/armhf-linux/texlogsieve + +name texlogsieve.i386-freebsd +category Package +revision 61328 +shortdesc i386-freebsd files of texlogsieve +containersize 340 +containerchecksum f39d48ad539f6204db29aba26899abefbb922e9e80912858192e0ef2b13e77c67ccb10682db643e1dd00c6c702434465c7a94c1cf24e63cfb44fedd1425d46ef +binfiles arch=i386-freebsd size=1 + bin/i386-freebsd/texlogsieve + +name texlogsieve.i386-linux +category Package +revision 61328 +shortdesc i386-linux files of texlogsieve +containersize 340 +containerchecksum cf003bd2cc1bc3d7f7e22621f648d477e6226962621467d88b882f251a4d5a02f0c913b4dbd9c561fdab26652bc1549a645f309a7ab7abeeebfb0a855aebf9bf +binfiles arch=i386-linux size=1 + bin/i386-linux/texlogsieve + +name texlogsieve.i386-netbsd +category Package +revision 61328 +shortdesc i386-netbsd files of texlogsieve +containersize 336 +containerchecksum 8c2fc776f43d24c711e05c4904ac1e8d026d09128521e6f0456c1317aa85b73ad9b8a00946e08c41beec8d1142f89bad1dda1bed10df8ac2043b81b3701c9f54 +binfiles arch=i386-netbsd size=1 + bin/i386-netbsd/texlogsieve + +name texlogsieve.i386-solaris +category Package +revision 61328 +shortdesc i386-solaris files of texlogsieve +containersize 336 +containerchecksum 0d0341fe7187c1ea742bc151a74405f46f6a42b6ccf8b5f154377c962c587653186ac205e37780a54419f555dbd5f0ff12211058d0863100abbbe20e13d56cb4 +binfiles arch=i386-solaris size=1 + bin/i386-solaris/texlogsieve + +name texlogsieve.universal-darwin +category Package +revision 61328 +shortdesc universal-darwin files of texlogsieve +containersize 340 +containerchecksum 6da42d5d5f3bb25ae28b3362a474e0d587dd51377ae3d2b0d8fed4818a364ce5aecf262c78b6f5ec20c4862fd659c836efa5de19d44753c255fa8ad564808619 +binfiles arch=universal-darwin size=1 + bin/universal-darwin/texlogsieve + +name texlogsieve.windows +category Package +revision 65891 +shortdesc windows files of texlogsieve +containersize 2308 +containerchecksum 208f196643fa799af8a469040783e4035cb51703580f8f5f77cd815115cb9044d33921860b8085988d948b4c159ec18bb6b0bf48d4c19348b48fdc058976aaef +binfiles arch=windows size=2 + bin/windows/texlogsieve.exe + +name texlogsieve.x86_64-cygwin +category Package +revision 61328 +shortdesc x86_64-cygwin files of texlogsieve +containersize 340 +containerchecksum ae74d3b7a37deccb951533a13903ec15887096f090e5ac13182feb7e36dfc0fde234ec8151462513c981dd7eebae3a60fb7bde971111d6d8ecd0a1fc29d6e49d +binfiles arch=x86_64-cygwin size=1 + bin/x86_64-cygwin/texlogsieve + +name texlogsieve.x86_64-darwinlegacy +category Package +revision 61328 +shortdesc x86_64-darwinlegacy files of texlogsieve +containersize 348 +containerchecksum 40eb25fc0ec60320fc63d5fd8774024e459323b8ddaab63eb4b47b120fe3928fdf2885580bf49a4763ac8c2c01871181f66040c905274b82b881d0b2e601b038 +binfiles arch=x86_64-darwinlegacy size=1 + bin/x86_64-darwinlegacy/texlogsieve + +name texlogsieve.x86_64-linux +category Package +revision 61328 +shortdesc x86_64-linux files of texlogsieve +containersize 340 +containerchecksum b7a8756f7243c3707a8222b65e4f980ddb4d45e62091cc3ead52bcba35478102a96e32d5446dfc9fc8cb81cbe9acd319780332310efebe7861b48977053cf1f3 +binfiles arch=x86_64-linux size=1 + bin/x86_64-linux/texlogsieve + +name texlogsieve.x86_64-linuxmusl +category Package +revision 61328 +shortdesc x86_64-linuxmusl files of texlogsieve +containersize 344 +containerchecksum 506c27945ed587fcd9fc0cc0f95d1559bf55acd35edd202fb7b932b672ba52611675cd7b9ddd84fbdf8b48659787a2ea8444b6883e9ddf6e8c19dded61b349ee +binfiles arch=x86_64-linuxmusl size=1 + bin/x86_64-linuxmusl/texlogsieve + +name texlogsieve.x86_64-solaris +category Package +revision 61328 +shortdesc x86_64-solaris files of texlogsieve +containersize 340 +containerchecksum 6781e138271a2e529d02ffa5e9a2269da2e40a11e1fdffcc53f4b5ad565e653daea5d9a47756642b25b9177cb25dd5bb8154a2a276db84f519cd7077d2507fa2 +binfiles arch=x86_64-solaris size=1 + bin/x86_64-solaris/texlogsieve + name texmate category Package revision 15878 @@ -300961,17 +312398,6 @@ binfiles arch=armhf-linux size=3 bin/armhf-linux/texosquery-jre5 bin/armhf-linux/texosquery-jre8 -name texosquery.i386-cygwin -category Package -revision 43596 -shortdesc i386-cygwin files of texosquery -containersize 380 -containerchecksum 95c73c14fcf01b1032e9dfbc0ce0cb180c43d5f4fbfec5817a67a00b7b3e9491b16ada933ebfe9d7d01b103610df7e1aae6e58eec9ce175598ae8b254dc735da -binfiles arch=i386-cygwin size=3 - bin/i386-cygwin/texosquery - bin/i386-cygwin/texosquery-jre5 - bin/i386-cygwin/texosquery-jre8 - name texosquery.i386-freebsd category Package revision 43596 @@ -301027,16 +312453,16 @@ binfiles arch=universal-darwin size=3 bin/universal-darwin/texosquery-jre5 bin/universal-darwin/texosquery-jre8 -name texosquery.win32 +name texosquery.windows category Package -revision 43601 -shortdesc win32 files of texosquery -containersize 712 -containerchecksum 1940f414bd28dfe866606a01903cf289826be32a007c2d578228d30a3a13fba5a7092de90aeae3d9541f26bae6ee0993a36f7148142f6dcab3deceda4df7b318 -binfiles arch=win32 size=3 - bin/win32/texosquery-jre5.exe - bin/win32/texosquery-jre8.exe - bin/win32/texosquery.exe +revision 65959 +shortdesc windows files of texosquery +containersize 2384 +containerchecksum c530f15429f5a3e5582ba7f18b26b6ef047f5869f9983c9d2310a4db6e38779622944fd07a8a25f1274b9f43854c96bb6c56d291ecf29d0ddf7a05f594616e01 +binfiles arch=windows size=6 + bin/windows/texosquery-jre5.exe + bin/windows/texosquery-jre8.exe + bin/windows/texosquery.exe name texosquery.x86_64-cygwin category Package @@ -301095,7 +312521,7 @@ binfiles arch=x86_64-solaris size=3 name texplate category Package -revision 56083 +revision 61719 shortdesc A tool for creating document structures based on templates longdesc TeXplate is a tool for creating document structures based on longdesc templates. The application name is a word play on TeX and @@ -301107,16 +312533,16 @@ longdesc theses: the application is powerful enough to generate any longdesc text-based structure, given that a corresponding template longdesc exists. depend texplate.ARCH -containersize 3031472 -containerchecksum dc7f998438ad699af41d1a83214ba5b62399c5390ad1672b40ecaf9bc48fd04ca91bf4ceb1bf75c89351d612d8c9f0acd3bd145b5560673bb864fdb4c18375f2 -doccontainersize 110368 -doccontainerchecksum 620f820e08f000032608280ad4e93d5aabbcf6e42008c1f74d2b876d5fd67724ca1d6ce22d6046184cd4e0ec205f4aad767a24db79d11e6c40269df32b5644b6 -docfiles size=35 +containersize 3243156 +containerchecksum 5b19c1f2d5bdaacb1c842e78b1980ecb3f4fc548873e6a36fc9c5a70c3e3649b812819cc0d3bf68622acf31ac6c687cc4ba657ce2a4682bd13faba4070b0a1d7 +doccontainersize 114612 +doccontainerchecksum e28f0f3476e710fcec772206138a2f423ea6f9df903bfd4c4a278453f217752b7f4ffd7e68f10821ee36a9251a14e6226887ed5aa7a5fb53e5deb7a1685a04e8 +docfiles size=36 texmf-dist/doc/support/texplate/README.md details="Readme" texmf-dist/doc/support/texplate/texplate-manual.pdf details="Package documentation" texmf-dist/doc/support/texplate/texplate-manual.tex -srccontainersize 8428 -srccontainerchecksum e87854021487832cecab1cb8a5585d44c25a80c52ed4d020cebaae9b7c1c938c3ffd43ed51a1910442440131e4d8f6acf2af095b58d2a119ea279e3de78736b6 +srccontainersize 8436 +srccontainerchecksum 658467f513fc37799df279d636f5927477c51cf0adfbff2ea1597bc8bbd4d9edc3f5f22e2f09d9049a6015a6825bde043ae10e8b55ef78ba8dbbfb04604de0b5 srcfiles size=21 texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/Main.kt texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/TemplateProcessing.kt @@ -301136,7 +312562,7 @@ srcfiles size=21 texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/util/ValidatorUtils.kt texmf-dist/source/support/texplate/main/resources/org/islandoftex/texplate/templates/texplate-article.toml texmf-dist/source/support/texplate/main/resources/org/islandoftex/texplate/templates/texplate-standalone.toml -runfiles size=822 +runfiles size=878 texmf-dist/scripts/texplate/texplate.jar texmf-dist/scripts/texplate/texplate.sh catalogue-contact-bugs https://gitlab.com/islandoftex/texplate/issues @@ -301144,7 +312570,7 @@ catalogue-contact-repository https://gitlab.com/islandoftex/texplate catalogue-ctan /support/texplate catalogue-license bsd3 catalogue-topics doc-gen gentex doc-templ -catalogue-version 1.0.3 +catalogue-version 1.0.4 name texplate.aarch64-linux category Package @@ -301182,15 +312608,6 @@ containerchecksum d320e71a7e08762c8432c1ae7d564a55a297f338e5af6241ced27c50016edf binfiles arch=armhf-linux size=1 bin/armhf-linux/texplate -name texplate.i386-cygwin -category Package -revision 53444 -shortdesc i386-cygwin files of texplate -containersize 336 -containerchecksum 3b22156cba0c8f31e26a1dc148ac0ae3d9f42dec12e7e1a520e3600bebd0733bc1299ceab372327449943465a1d01b68caf6438119d1235b82d19c42359f8456 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texplate - name texplate.i386-freebsd category Package revision 53444 @@ -301236,14 +312653,14 @@ containerchecksum 95f64530d444b24136965bab49bcd1a189a95824a02b8cee7a7d5f536bfbb5 binfiles arch=universal-darwin size=1 bin/universal-darwin/texplate -name texplate.win32 +name texplate.windows category Package -revision 53444 -shortdesc win32 files of texplate -containersize 680 -containerchecksum 1b90b1f46888aa2808ba6dd0c55c840f80679d8d5accc6d6600893caa33f8b07793e45c92e3ea96ded5e751d5e7707d771a2b180c7623b417618b28ae64ca767 -binfiles arch=win32 size=1 - bin/win32/texplate.exe +revision 65891 +shortdesc windows files of texplate +containersize 2304 +containerchecksum 485f4f3e77bf842623371bfd5ccd64fbb34d924a4b6a18f7c1d8e3b0ebcd4b418c7cbe6e02c29ba78d9140cf447d92bce3119855a87e73a72aa906f7d8676a8e +binfiles arch=windows size=2 + bin/windows/texplate.exe name texplate.x86_64-cygwin category Package @@ -301443,7 +312860,7 @@ catalogue-version 1.4 name texshade category Package -revision 58789 +revision 64242 shortdesc Package for setting nucleotide and peptide alignments relocated 1 longdesc TeXshade is alignment shading software completely written in @@ -301456,11 +312873,11 @@ longdesc legends; it even allows the user to define completely new longdesc shading modes. TeXshade combines highest flexibility with TeX longdesc output quality -- all in a bundle that does not demand longdesc excessive development time of the user. -containersize 61740 -containerchecksum e42833c13430228e775bc1a0310d47f72044ef5ba6bfb71a011acb0247506f372619639e0bd51d3f9b629d382175a4d59fe6d400ffa55124c60a2ef8206f7459 -doccontainersize 921548 -doccontainerchecksum a0b6a162432841cceb5a344250335d630222129a1e47dde01ad4df4fd38c4b147a138c9344d7e95153e01047fad7624e9c05022bc0f4601f800ee1f8f7953bb9 -docfiles size=323 +containersize 61900 +containerchecksum 47ee4ea722ac6063c6927f0b896bd17e25df1aa75d6eabc2877ad628ec224bd9d2c8af1e6964b763d13dfea99ea3bd08007b1a9d9f43ef19da5c53e34e4b7a6e +doccontainersize 1247384 +doccontainerchecksum a9e2130ae217816a4b8d653c32ae14beaab0ed35fac5e1a43c10d6453b2774a3449008b118f1f97d8c88d48c3708c5d96edfd5698e9a09046311919191fc240f +docfiles size=441 RELOC/doc/latex/texshade/AQP1.phd RELOC/doc/latex/texshade/AQP1.top RELOC/doc/latex/texshade/AQP2spec.ALN @@ -301473,20 +312890,22 @@ docfiles size=323 RELOC/doc/latex/texshade/AQPpro.MSF RELOC/doc/latex/texshade/README details="Readme" RELOC/doc/latex/texshade/ciliate.cod + RELOC/doc/latex/texshade/meme.eps RELOC/doc/latex/texshade/standard.cod RELOC/doc/latex/texshade/texshade.pdf details="Package documentation" language="en" -srccontainersize 152840 -srccontainerchecksum f37d1837938ee3cd2451f4a797bcb1dfd933cfaaea53a58a52503bb9cf2288e5ec53c977b6f54382fbba398b9ddfe9bdb6226db75e0bafe19eeb8e916d7a8e3c -srcfiles size=284 +srccontainersize 315880 +srccontainerchecksum 2559fac03618b74230b00b4d2229199e6bc92256547024884cb6aa4fa2ddd8f361281b372c1054e10375c82960d0d53742ab333348e63ef3f92008031e907246 +srcfiles size=362 RELOC/source/latex/texshade/texshade.dtx RELOC/source/latex/texshade/texshade.ins runfiles size=165 RELOC/tex/latex/texshade/texshade.def RELOC/tex/latex/texshade/texshade.sty +catalogue-contact-home https://www.pharmazie.uni-kiel.de/en/pharmceitica/prof-dr-eric-beitz/biotex catalogue-ctan /macros/latex/contrib/texshade catalogue-license gpl2 catalogue-topics chemistry molbio -catalogue-version 1.26 +catalogue-version 1.26a name texsis category Package @@ -301646,15 +313065,6 @@ containerchecksum a137d58698be313eb46a2a24b0ea0e1375fdb55af5aad7679fc5b9b6122abd binfiles arch=armhf-linux size=1 bin/armhf-linux/texsis -name texsis.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of texsis -containersize 324 -containerchecksum df3ba60393feca16612835a058c6868e806271e576905e3cf1d0e7942022c9dac1dde3237381e1974052658ab3c3e58b446a609fc2d116443aea6a5c8c8aecc7 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/texsis - name texsis.i386-freebsd category Package revision 16472 @@ -301700,14 +313110,14 @@ containerchecksum 3bcee7eea567bdd7d5113dc041824345bf4d16499714ad9dd4547a3f2a757a binfiles arch=universal-darwin size=1 bin/universal-darwin/texsis -name texsis.win32 +name texsis.windows category Package -revision 57883 -shortdesc win32 files of texsis -containersize 864 -containerchecksum 02c6f63cb1a7b898b11a991d4a344f2f0b678a1887b5a37be9096753585fe50468804ae23b45205019c9ca4bb3f356840c40379b583935ac54b0c1a203c0b277 -binfiles arch=win32 size=1 - bin/win32/texsis.exe +revision 65891 +shortdesc windows files of texsis +containersize 2332 +containerchecksum f938949177a169f9c5d328cbbe03ea7e84ea8e188fc9f1407aad091e03c14641e22e26c05c9bd404a6bd4aa37ce1c4b5866e01cff7775c1d0b0672638c2aa122 +binfiles arch=windows size=2 + bin/windows/texsis.exe name texsis.x86_64-cygwin category Package @@ -301754,30 +313164,61 @@ containerchecksum e2cb92a5f17721fe8fc797f0ca386aea05e9320a59470dbc9ae494c3c92125 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/texsis +name texsurgery +category Package +revision 59885 +shortdesc A LaTeX companion to the "texsurgery" python project +relocated 1 +longdesc This LaTeX library is a companion to the texsurgery python +longdesc project. It will make sure that "pdflatex document.tex" will +longdesc work, with reasonable defaults, for a document that is intended +longdesc to work with texsurgery, and also has other uses, always in +longdesc tandem with the texsurgery pypi package. +containersize 2236 +containerchecksum 39c270382bb228beeb9ec61f744f66805c76a7fb1522158a59daa5dbbf29b3f4151c20d7dbadf404cab8ca023456b9988d45e53f65a1396da9259832390a0980 +doccontainersize 136868 +doccontainerchecksum 76fe49291714772ac56097e5869f82868d149959bc091d3e9b1810013c92440c05825e2d585841a3e7fe015d66e09c3e8a92847fe7fbb8bfbe308c62919e8c26 +docfiles size=35 + RELOC/doc/latex/texsurgery/README.md details="Readme" + RELOC/doc/latex/texsurgery/texsurgery.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/latex/texsurgery/texsurgery.sty +catalogue-contact-announce https://framagit.org/pang/texsurgery/-/releases +catalogue-contact-bugs https://framagit.org/pang/texsurgery/-/issues +catalogue-contact-development https://framagit.org/pang/texsurgery/-/project_members +catalogue-contact-repository https://framagit.org/pang/texsurgery +catalogue-ctan /macros/latex/contrib/texsurgery +catalogue-license bsd3 +catalogue-topics preprocessor callback graphics-inline +catalogue-version 0.6.0 + name textcase category Package -revision 52092 +revision 63868 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 \MakeTextLowercase which are similar to the standard +longdesc \MakeUppercase and \MakeLowercase, but they do not change the +longdesc case of any sections of mathematics, or the arguments of \cite, +longdesc \label and \ref commands within the argument. A further command longdesc \NoCaseChange does nothing but suppress case change within its longdesc argument, so to force uppercase of a section including an longdesc environment, one might say: longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}} -longdesc ...\NoCaseChange{\end{foo}}...} -containersize 1508 -containerchecksum 9cb8145b46343c34c4ac7c7ec64dc6d69f08e329cfae2c1ac41902a74e92cee715b5b171bbf26b92efc0a8a4500d11d317d8c927ffee623450b39e4ee6555483 -doccontainersize 193892 -doccontainerchecksum 737c03d99e03a188c80aa8478abb64f05e6a3241185d03746682bf3c5e2e48ed8181e46d1b10c9170b98882bafcfe61e37a0409d42d2506125e9515bc44f0e2c -docfiles size=49 +longdesc ...\NoCaseChange{\end{foo}}...} In current LaTeX this package +longdesc is obsolete. You can use the standard \MakeUppercase and +longdesc \MakeLowercase, but it defines legacy names \MakeTextUppercase +longdesc and \MakeTextLowercase. +containersize 1624 +containerchecksum 0086fd3c6601f03d730f195915f1ac9902bb2e8555690395719da58643a6a2f9f5ca28d05f79941d8afccf517564301336e017341da6a9ceb19755db8e17db65 +doccontainersize 215640 +doccontainerchecksum e2a9c7cb58109336c889ee7f87a3926cc885453c0c0472f70ca5a303cb203dc46f5c1330fe90282b0f9f790b02ca139931a944cfd9016c65aa8c8075460b4a1b +docfiles size=55 RELOC/doc/latex/textcase/README details="Readme" RELOC/doc/latex/textcase/textcase.pdf details="Package documentation" -srccontainersize 4828 -srccontainerchecksum 2f68a69bb41a0af207522cf554fdbc8858a675b8f9c97e72836bf62d69640aa55aafdc70b8f014ee3bfd526f155695722d4191b70b570b309bc789622b19b53a +srccontainersize 5124 +srccontainerchecksum e2f98025e4dab32916318403ff3e31f308bd2e867b94c011a70bbbb09d5728047018cfc146722c6b837949e3e878136f8d39d89fc515b692ab6560388540ea32 srcfiles size=5 RELOC/source/latex/textcase/textcase.dtx RELOC/source/latex/textcase/textcase.ins @@ -301788,7 +313229,33 @@ catalogue-contact-repository https://github.com/davidcarlisle/dpctex catalogue-ctan /macros/latex/contrib/textcase catalogue-license lppl catalogue-topics macro-supp -catalogue-version 1.00 +catalogue-version 1.03 + +name textcsc +category Package +revision 64935 +shortdesc Simple commands for caps-to-small-caps text +relocated 1 +longdesc This package provides a simple command (\textcsc and \cscshape) +longdesc for caps-to-small-caps text, to allow for small caps acronyms +longdesc to be presented as uppercase in text (useful for things like +longdesc copying and pasting from a PDF). +containersize 1120 +containerchecksum 461d0e22efb4a80e1e76b6d209cb0247724d9cf9471875f612d4a664875a2055da58151ab6a0a763b7d73dbdf47c63bcb9f7c3e648e1bf074dc4758a7b01b071 +doccontainersize 51964 +doccontainerchecksum d10191e310550a7d4f83bbbaa9413be0448d38349839b8cff46f4fc3cd1c76c0b20ef002d01a5e78919fc019f33a8069fb6fd1c53ef32c81d12d65806c55439f +docfiles size=16 + RELOC/doc/latex/textcsc/README details="Readme" + RELOC/doc/latex/textcsc/textcsc-documentation.pdf details="Package documentation" + RELOC/doc/latex/textcsc/textcsc-documentation.tex + RELOC/doc/latex/textcsc/textcsc.pdf +runfiles size=1 + RELOC/tex/latex/textcsc/textcsc.sty +catalogue-contact-home https://github.com/ezgranet/textcsc +catalogue-ctan /macros/unicodetex/latex/textcsc +catalogue-license lppl1.3 cc-by-sa-3 +catalogue-topics typesetting unicode +catalogue-version 1.0.1 name textfit category Package @@ -301979,22 +313446,21 @@ catalogue-version 1.6 name textpos category Package -revision 56441 +revision 63967 shortdesc Place boxes at arbitrary positions on the LaTeX page relocated 1 longdesc A package to facilitate placement of boxes at absolute longdesc positions on the LaTeX page. There are several reasons why this longdesc might be useful, an important one being to help the creation of -longdesc large-format conference posters. The package depends on -longdesc everyshi and keyval. -containersize 4196 -containerchecksum b7213e61a54addaafac6bf831273a000bf300939d74311e25a1412744e2baabcc35594b084a9ccb6eb5e8b91b105e0acf97686323f89f0623a8ee9749e33bbf9 -doccontainersize 331632 -doccontainerchecksum 45d9b91df10531c4fa45d9eb668613417baf132f3153ef6fa4de27292730580c46eaf722e6998f9d8129e37db3f5f8828bd70eefd9a74e88571290f95b04eef7 -docfiles size=102 +longdesc large-format conference posters. +containersize 4216 +containerchecksum 77451d38b88f76b80b063267e2dde1e6e6c771c3e4b176a006d3e38351b823a9ac735455dffd6ffb3e23d6198ea7e2e7828c5d9a4e0b0bcfd5c07567901a05aa +doccontainersize 354044 +doccontainerchecksum 0b17032df1840b6659c85e3d4801d36e3eb2c5887d03f6c37fcbcc1f030d75fb32991850ae39fccf4e2e9a6498500659ba5fbacad971071de608f4137900a392 +docfiles size=109 RELOC/doc/latex/textpos/LICENCE RELOC/doc/latex/textpos/README details="Package README" - RELOC/doc/latex/textpos/VERSION-1.10 + RELOC/doc/latex/textpos/VERSION- RELOC/doc/latex/textpos/examples/README.examples RELOC/doc/latex/textpos/examples/t1.tex RELOC/doc/latex/textpos/examples/t10.tex @@ -302012,20 +313478,20 @@ docfiles size=102 RELOC/doc/latex/textpos/textpos-example.tex RELOC/doc/latex/textpos/textpos.html details="Version history, etc. (HTML)" RELOC/doc/latex/textpos/textpos.pdf details="Package documentation (PDF)" -srccontainersize 24148 -srccontainerchecksum 6f917452d588253acf6576a4603b6e4513c9c5b951e2440879d4a68e6d413b9ebeaeac92b0b03636d094f7758400694481bd52a68cfd5fb92431809eb4271eaf -srcfiles size=22 +srccontainersize 24744 +srccontainerchecksum 569ec215d0b9d8ea250b5f8fff39a332fcb5ec6dd2830b8d65145428bfd5de9c3f2320ef342a887b712d7e7078063ac3b3157609b57b947fbbfa8d5badd578fe +srcfiles size=23 RELOC/source/latex/textpos/textpos.drv RELOC/source/latex/textpos/textpos.dtx RELOC/source/latex/textpos/textpos.ins runfiles size=4 RELOC/tex/latex/textpos/textpos.sty -catalogue-contact-home https://nxg.me.uk/dist/textpos/ -catalogue-contact-repository https://code.nxg.name/nxg/tex/textpos/ +catalogue-contact-home https://purl.org/nxg/dist/textpos +catalogue-contact-repository https://heptapod.host/nxg/textpos catalogue-ctan /macros/latex/contrib/textpos -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics layout -catalogue-version 1.10 +catalogue-version 1.10.1 name textualicomma category Package @@ -302090,7 +313556,7 @@ catalogue-version 1.1 name texware category TLCore -revision 57972 +revision 66186 shortdesc Utility programs for use with TeX longdesc Basic utitility programs, comprising: dvitype, which converts a longdesc TeX output (DVI) file to a plain text file (see also the DVI @@ -302100,16 +313566,16 @@ longdesc tftopl and pltotf, which convert TeX Font Metric (TFM) file to longdesc human readable Property List (PL) files and vice versa. depend texware.ARCH containersize 636 -containerchecksum 981a66b9f52d53ca1b9a5059d5cacdb325663a5eaf6ea5c15902e687bcfee894005b274064f662252a0689222c62937c2841ee2aef5e38cfd88f2169f7b01893 -doccontainersize 34408 -doccontainerchecksum 3ddb71949ce4c8dd406f65e547a5099851c9b8ba00aec1fa65ca3f40093c49d34ea13955e3970683d1937569d0dbd3d6abca65fef8bf15f255063703262421ca +containerchecksum 532cf8cfb19ea5c8ed0fe6939fba0ddfaed58989a588acef18ef38c587d8485295e9d438487fd2225a0f68c12d0dd8c6263d597c2e94cbdc96ed074ddd296729 +doccontainersize 34540 +doccontainerchecksum c4be0bdc3490a0bee08d6a99907f7abe1145ae8f8f89dd8665cf6a8738d07c7a537c0d7e767b56a6eed3a00ea169729b4d78208aab2aa883c9fb422e4dde3383 docfiles size=13 texmf-dist/doc/man/man1/dvitype.1 texmf-dist/doc/man/man1/dvitype.man1.pdf texmf-dist/doc/man/man1/pooltype.1 texmf-dist/doc/man/man1/pooltype.man1.pdf catalogue-contact-bugs https://lists.tug.org/tex-k -catalogue-contact-repository http://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ +catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/ catalogue-contact-support https://lists.tug.org/tex-k catalogue-ctan /systems/knuth/dist/texware catalogue-license pd @@ -302117,167 +313583,157 @@ catalogue-topics debug-supp name texware.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of texware -containersize 48864 -containerchecksum 1d708d258a049a11a09e85b4167354cd93d281cb853cc2b234ef6817d96f861d3f3c358bfc9dfa5fda3fa9ce4346b034349b29df232d9a996d0328ec7db0d73f +containersize 48856 +containerchecksum 0c09408e5a274c864a1aeeb1ad4d02f4f3c30f5927916734e4120dd99c0975b737acdb72372db5d6e72a9fa04882ae7dacaaaab0cd01ddd84beab83e86b5d237 binfiles arch=aarch64-linux size=36 bin/aarch64-linux/dvitype bin/aarch64-linux/pooltype name texware.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of texware -containersize 54412 -containerchecksum 27eff6e112640f94bc50519a1e82d775992f61d3b421c0ea7865f0ed2ea7085a3c0cbc365e610aa894b9593874e7b1ec4a0183bc36f0e99e920da83cab885246 -binfiles arch=amd64-freebsd size=36 +containersize 54700 +containerchecksum 88e93368e5fb680a17fcaaeed3ab273a03fea00a37effdd2bf2dd7b088bbc9cac8dd276eca489900d49d4c75e8572f24fabe7e55d4233968e573288fe377b8a0 +binfiles arch=amd64-freebsd size=38 bin/amd64-freebsd/dvitype bin/amd64-freebsd/pooltype name texware.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of texware -containersize 47856 -containerchecksum 835054003dbedcade36a4c1760d6e76856db06c786565728fe5893d1eecb728a2ec1bf73a6dcfc583ab2311421bc764d8512965e8d73c02cca14c1f46895a1cd +containersize 48044 +containerchecksum 159dd7246de5f759bc31f53520c6763cd1dd7b82604a00b01d62b98a349aaa1bb2d5de9b8cee1431867d8373a5eef008b63b4216b24b968905c5534d6da90df7 binfiles arch=amd64-netbsd size=42 bin/amd64-netbsd/dvitype bin/amd64-netbsd/pooltype name texware.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of texware -containersize 40948 -containerchecksum 5c21b1723ae5533fbf64b5ff3fe2ead25e3013d2f978fac2f85b06e7178dbf3a76616b76e7319eac3700ff263eff6f411de9ed3aee67b26b66f85a2d00c1d3c4 -binfiles arch=armhf-linux size=28 +containersize 41104 +containerchecksum f6da8b4f115f7856832c016a8718913eb879afa8352ebeae3bd4a1bcce8b8529b52b8cfb177a011c3df71e418180271c722573f7ee988c4b14a2426d3d2efb27 +binfiles arch=armhf-linux size=29 bin/armhf-linux/dvitype bin/armhf-linux/pooltype -name texware.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of texware -containersize 17948 -containerchecksum 35ae1efde1350593f1f68f1f536c991e5cf1ac2494e972174b52177b6bfd9a42088573653e2a537e8df280b2af97b1171addb52e34a6e1203a785d29944c817b -binfiles arch=i386-cygwin size=15 - bin/i386-cygwin/dvitype.exe - bin/i386-cygwin/pooltype.exe - name texware.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of texware -containersize 46640 -containerchecksum f7214db13cb10757dad6130c0706faccb354925a2a3450462f327e1dcb17e180622fb26da74b921cc91f918d7763575036e69029e7996d0ee4f745acfb07a3e5 -binfiles arch=i386-freebsd size=31 +containersize 48156 +containerchecksum a5a6e92878488c00ccd6667e727cc5a1b98af2b07c07049cad4a0974f56a78c1283aa1bf8733ff177be7098c78b6f505390d91322a60038f7ef01f5ffd1a602f +binfiles arch=i386-freebsd size=32 bin/i386-freebsd/dvitype bin/i386-freebsd/pooltype name texware.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of texware -containersize 50844 -containerchecksum 26f2997ac4f1372a6790e490bfd672551f41fbed6639c3fe0cc290d4f2d722a6228c8b7ce99f3c9654bd3684d6c444be5f6c43a1fa71e40391d40939630bc13d -binfiles arch=i386-linux size=36 +containersize 51908 +containerchecksum f388d437f1208191007832c46dbab773d4d4832d732fa2b04bb57e8e218c913a51f31a4910eb57da4f905088df85d402e196996cc3940ff22d12714b0feaaf6d +binfiles arch=i386-linux size=38 bin/i386-linux/dvitype bin/i386-linux/pooltype name texware.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of texware -containersize 43192 -containerchecksum 45bfd1ce49c7cc2e1c6e43c380c23db30558e228cc80e43c7e57fdbf7aa7ca2308987a72e94d3910a4b27c15df99d4cb32414c460a260a6ed847001f7462bfa7 +containersize 43348 +containerchecksum fcca755848379109bf5501b9d575324b8a26e531e4bfadaaabaf5635d002bd7b52b5ea4db8a3c1d3ce0c0e607319b436eed09b6b9b5efc02177c750ab31df19d binfiles arch=i386-netbsd size=40 bin/i386-netbsd/dvitype bin/i386-netbsd/pooltype name texware.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of texware -containersize 50728 -containerchecksum aec94405528a2338e1120aff896aeeb95276d10f9dfbf81537fcc4ff655f6e48798198aeb7042e2b56f9d1c11eff4b03ea4038fa1d39829cfda6dbd8cd5789d4 +containersize 50912 +containerchecksum bcbc0b201138a771f3db8c127901b377525de64923173e5344b925d91489abfcf04092ce54ed6289f126cae924a9db7e17fedbd9fbcf796bbc28ac180317c992 binfiles arch=i386-solaris size=34 bin/i386-solaris/dvitype bin/i386-solaris/pooltype name texware.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of texware -containersize 102656 -containerchecksum add2a947d73004e714daccd321c059fe26b664344dfda2a90766837bb7e7f0dc5149ca4ddb6afdfa4474813801c26846545c1d135888ed5ee3094b10237bc338 +containersize 103112 +containerchecksum c2911c1c4bf62818b4fcf2efc9007d914ad8f792c353d8eee47a2e233bce309e78fe5705edf0b1d2ca3565dee80e8ed4655935b329c55f77bdaccc2e503b4b0b binfiles arch=universal-darwin size=113 bin/universal-darwin/dvitype bin/universal-darwin/pooltype -name texware.win32 +name texware.windows category TLCore -revision 58783 -shortdesc win32 files of texware -containersize 18864 -containerchecksum eddcae6d3361b63fef95f61fce0cdde2fd6653448491e639a46cca70cada14d45c6151a1ce36b6799078a92ec0d27f019f3b5729828c0bb835ea3bdfd4ac59a2 -binfiles arch=win32 size=12 - bin/win32/dvitype.exe - bin/win32/pooltype.exe +revision 65891 +shortdesc windows files of texware +containersize 21204 +containerchecksum 395c1cc4724a089063af9d19b2ae2042d384ba9a90969d72119f120bdd13b15b56872230b53f1057b61996273081ed34ef61ff175e06bd28e882e6a11586d5dc +binfiles arch=windows size=14 + bin/windows/dvitype.exe + bin/windows/pooltype.exe name texware.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of texware -containersize 20628 -containerchecksum f9ca92f07bfa40f2fffdd7021cbbff2c6130695f6d6e6ace65a0af11c8e110da783434bca491492c4bc98b0502e34be766a79d5df1c7b7e5c8047856cd504cae +containersize 20644 +containerchecksum dd153e90184ebc7b40ed446fcde83f2132b03046f084944b3cecbff878ab5c89f1dd0766b6a9d0e94e5735ecd2985fe109a70201f73be9102dbe5c7b7ff498e8 binfiles arch=x86_64-cygwin size=15 bin/x86_64-cygwin/dvitype.exe bin/x86_64-cygwin/pooltype.exe name texware.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of texware -containersize 50592 -containerchecksum f7501303514b0bed82dd9bfde13402dbbf089cc1d7ddb21b18ec4007868685f5720cd00e8f81cf4426abff0a453250e8d4a9384647daaca17c18944306eaa4ca +containersize 50712 +containerchecksum b2d4fabab0406dd0a492ad4b43baf58833c029af5129e8863522417b4cedf1ba0b34093b4ccc51e35512ef13a34b13f18ed4b6f48dadb4eea1f842042e07efbb binfiles arch=x86_64-darwinlegacy size=35 bin/x86_64-darwinlegacy/dvitype bin/x86_64-darwinlegacy/pooltype name texware.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of texware -containersize 50156 -containerchecksum e910d3a52d1c0c2d168368b1ddc160132f475cb2e03905803c86a7f7242d298175efd126e4c208032336c6f750518daa5cac63634abd3754f28fcb49d4e00036 -binfiles arch=x86_64-linux size=33 +containersize 50468 +containerchecksum 5f10f2eb304a086346460c374dfbd35dd37f789a20315d44a9aa17aa22882be95b88b3692ede593e9e29807a9f6fc11c42e655841b4d985cefa0c0f023a502a7 +binfiles arch=x86_64-linux size=35 bin/x86_64-linux/dvitype bin/x86_64-linux/pooltype name texware.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of texware -containersize 55484 -containerchecksum eca7e00b683da8cc0eabc5ebf655163e44f997585fd25fff310f4625a72e58a208eb2ee7b0a1e87b0d57dedc0e842b4b13ac1c1f80016008961da97a54e859c7 -binfiles arch=x86_64-linuxmusl size=38 +containersize 54892 +containerchecksum 6093acc5276c2d9e9866de91a3dcce8e77ba6bab971660dff4536ba2cd9bacb609b846e3fc2e5c811043204d9adda98091981d22e178fcd1fc916d5bf9b145d5 +binfiles arch=x86_64-linuxmusl size=37 bin/x86_64-linuxmusl/dvitype bin/x86_64-linuxmusl/pooltype name texware.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of texware -containersize 56068 -containerchecksum 9503469c23cdf10abb9b53e513a093fa3e11f6931145563d29e74c656936b56ec954f92b3c84717d7dda66847f8b30c4591b350aa2e483fb78cbfbca696f530a +containersize 56320 +containerchecksum 6b082e5dd31175e49cecfbfb83bd60980fbb6281dbb34ce395280e78426d2c55b782a0ac0200000f5cdbd7f5bc937580ac9ba221a17f790a9d937341d559cc9c binfiles arch=x86_64-solaris size=39 bin/x86_64-solaris/dvitype bin/x86_64-solaris/pooltype name texworks category TLCore -revision 54074 +revision 65952 shortdesc friendly cross-platform front end longdesc See http://tug.org/texworks for information and downloads. TeX longdesc Live includes executables and support files only for Windows. @@ -302285,23 +313741,23 @@ depend texworks.ARCH postaction fileassoc extension=.cls filetype=TL.TeXworks.edit postaction fileassoc extension=.sty filetype=TL.TeXworks.edit postaction fileassoc extension=.tex filetype=TL.TeXworks.edit -postaction filetype name=TL.TeXworks.edit cmd='"TEXDIR/bin/win32/texworks.exe" "%1"' -postaction shortcut type=menu name="TeXworks editor" cmd=TEXDIR/bin/win32/texworks.exe +postaction filetype name=TL.TeXworks.edit cmd='"TEXDIR/bin/windows/texworks.exe" "%1"' +postaction shortcut type=menu name="TeXworks editor" cmd=TEXDIR/bin/windows/texworks.exe containersize 492 -containerchecksum 4867a2f6ca333fc42d774154179f438970d392857b0f631f58211b7174c4b56c7fe9c43cac534cac1828d3edf18069fa781d4760ca472a99b5abfe4c7a6f72c9 -doccontainersize 736 -doccontainerchecksum 554afc96a17b407e415d85138e4074b6f1f82ab8e918db6e4d2e2dfa44e67b0d10ac1b548ceffeadc245de28b564cc4c4c431ec9d9c92241d1f500477fc72a64 +containerchecksum 2d0f90699f7ee4fa6dfa9eca4a62c8deadd9ee8303e17603bd32d0b2cd41875e76d1cb28879139dd62e534575f1dc8e71d6ec401a65ecc333f5b4bb636ea5a67 +doccontainersize 732 +doccontainerchecksum 767bca3619a0f645f23b029e1d8b84fd7333bfff5df073026423e83681abb2c3e60a50f843aeecf95aaa54b29018f145a7b655e2dccae0465626e84ca00d1b99 docfiles size=1 texmf-dist/doc/texworks/README -name texworks.win32 +name texworks.windows category TLCore -revision 58285 -shortdesc win32 files of texworks -containersize 17923264 -containerchecksum 0bddc66f264242fca0a391f5c422d3c55de88334a4f32c2677593e96287076e23ba14acaf43ddfe424aa2d7ab11450bf6a8c0cfd5177c5bce81d7f08358a35da -binfiles arch=win32 size=14459 - bin/win32/texworks.exe +revision 66345 +shortdesc windows files of texworks +containersize 18875804 +containerchecksum dd64882466e9bf180ab5546d362b2ff0920bea7005d59b5467b9f1a8753c5257f6a0b325f296c40f0cb1d145fe5bc63181020579321ea73d008b0955002a890d +binfiles arch=windows size=15048 + bin/windows/texworks.exe tlpkg/texworks/COPYING tlpkg/texworks/README.txt tlpkg/texworks/share/fonts/README @@ -302842,46 +314298,41 @@ catalogue-version 2021.03.01 name thalie category Package -revision 51789 +revision 65249 shortdesc Typeset drama plays relocated 1 longdesc The package provides tools to typeset drama plays. It defines longdesc commands to introduce characters' lines, to render stage longdesc directions, to divide a play into acts and scenes and to build longdesc the dramatis personae automatically. -containersize 5056 -containerchecksum 193f59cc9fcad15ca4fd52e011152a08066329ed496ad55d4245f232a701692b8c3a33f24d457358d696ec540041beb90ef37696a77b1685f22f15031665585f -doccontainersize 428224 -doccontainerchecksum 104972514a171a25557b5a0ba6501be9556f77eb7fdedc60843797ba7fc53873b75cbf4e470dfb76866e6042f77c5c39ae86367a119f64b34a18183eb0ef1be8 -docfiles size=111 +containersize 5592 +containerchecksum 695d16e6630efa10363d6c94f410cdf11947dd0c0e59987cdf01e0c699c53c994a702b3802b8830e38b6f5b0ce654af5710ef93b094fbc08954eb8d9bc5d2915 +doccontainersize 258292 +doccontainerchecksum f2fce885e0aa65d42413ad7ba26a38ff787fed8c1ac5d6434e949e229d4f728a055a6a2ed80f36fe94f6fdf11cac3bafbd2a945cb9bf2ec0b436eacbe1ba58aa +docfiles size=81 RELOC/doc/latex/thalie/CHANGELOG.md RELOC/doc/latex/thalie/LICENSE.txt RELOC/doc/latex/thalie/README.md details="Readme" RELOC/doc/latex/thalie/thalie.pdf details="Package documentation" -srccontainersize 18596 -srccontainerchecksum 31b0a6d7452e3b5b8affa9e4e89146c90b7e9f2af60eb7f741d4bc5722147c0ca2a902fb61b23d9a47c3bc32e2e5b38a170f3a194049cd8a1009a7d4cc199995 -srcfiles size=19 - RELOC/source/latex/thalie/thalie.dtx - RELOC/source/latex/thalie/thalie.ins -runfiles size=9 + RELOC/doc/latex/thalie/thalie.tex +runfiles size=10 RELOC/tex/latex/thalie/thalie-english.trsl RELOC/tex/latex/thalie/thalie-fallback.trsl RELOC/tex/latex/thalie/thalie-french.trsl RELOC/tex/latex/thalie/thalie-german.trsl + RELOC/tex/latex/thalie/thalie-italian.trsl RELOC/tex/latex/thalie/thalie.sty catalogue-also drama dramatist play catalogue-contact-bugs https://framagit.org/spalax/thalie/issues -catalogue-contact-development https://framagit.org/spalax/thalie -catalogue-contact-home https://framagit.org/spalax/thalie catalogue-contact-repository https://framagit.org/spalax/thalie catalogue-ctan /macros/latex/contrib/thalie catalogue-license lppl1.3 catalogue-topics drama-script -catalogue-version 0.10b +catalogue-version 0.13a name theanodidot category Package -revision 54512 +revision 64518 shortdesc TheanoDidot fonts with LaTeX support relocated 1 longdesc This package provides the TheanoDidot font designed by Alexey @@ -302901,10 +314352,10 @@ longdesc designer. The strong clear forms of this alphabet display longdesc objective, rational characteristics and are representative of longdesc the time and philosophy of the Enlightenment. execute addMap TheanoDidot.map -containersize 377204 -containerchecksum daeb092b73d0a9aac15c917aa72bee060fdf879aae0c2df9b391822f765983f0c048b1a15643a3aa7075e3c5a51eeabdb06ebf3b568930d7edb8e64bbf8f473c -doccontainersize 44204 -doccontainerchecksum 77c32df3bf56f8d38f27823eca098c968b203fb1ca2e4682f76a4071821952631b0187893f4636879808903e262bd2b01b53a50b517cc7098011d9f0262739d0 +containersize 377196 +containerchecksum f7c8f9506516c52ef1714e0abbf594f1f6be8492aced3f502a7f49c2a1b12c69b6c57c01300f71f582639f42001c3ece2bad4f9b4ff2b1a1266c3e36e9bd0d91 +doccontainersize 44216 +doccontainerchecksum 0396291a9213e2b80607572a2313801a6a93f4ca2f54889a4c18e8330ffe9f057b856ff957d58d61ddc2828838c6db9e45e26cf611ff88ee80f3b2073668ed64 docfiles size=14 RELOC/doc/fonts/theanodidot/README details="Readme" RELOC/doc/fonts/theanodidot/SILOpenFontLicense.txt @@ -302980,7 +314431,7 @@ catalogue-topics font font-body font-serif font-proportional font-greek font-mul name theanomodern category Package -revision 54512 +revision 64520 shortdesc Theano Modern fonts with LaTeX support relocated 1 longdesc This package provides the TheanoModern font designed by Alexey @@ -302991,10 +314442,10 @@ longdesc no italic variants. The package is named after Theano, a famous longdesc Ancient Greek woman philosopher, who was first a student of longdesc Pythagoras, and supposedly became his wife. execute addMap TheanoModern.map -containersize 401128 -containerchecksum a306f5b0145c1304157403de3a1ba0e0c350b1cb2bf467c5fbc5a0f4427622029c1c37b6b139f4e0fcdd145f30a979fe821353eb0782a0fdbaac6d614d041b78 -doccontainersize 33260 -doccontainerchecksum c2181c14b43a5a9670ed13e9f2828c4effabaf06a9377789c3510072c779251e3d857bbbc5655bd0285cd7f05b23c0a669292f4ef5667dfb35ae89ea70cd838a +containersize 401120 +containerchecksum c940c73df2143395fc4f2887e0273850787cda96cf586b0a2067ae39efdcde999338eb7826fac9af5e97bca978bb309b0478e1dcda43cae0a0b3266430d3348b +doccontainersize 33272 +doccontainerchecksum 934ad9a47609277dc1a10bd20f55f0ca01b6f1167a574ee8609352d94f4aff6305db9ca0e3ca5b83cad1f1eac74e5227fa92acd65df9de3f91abcb653f60d21e docfiles size=12 RELOC/doc/fonts/theanomodern/README details="Readme" RELOC/doc/fonts/theanomodern/SILOpenFontLicense.txt @@ -303069,7 +314520,7 @@ catalogue-topics font font-body font-greek font-multilingual font-serif font-pro name theanooldstyle category Package -revision 54512 +revision 64519 shortdesc Theano OldStyle fonts with LaTeX support relocated 1 longdesc This package provides the Theano OldStyle font designed by @@ -303080,10 +314531,10 @@ longdesc no italic variants. The package is named after Theano, a famous longdesc Ancient Greek woman philosopher, who was first a student of longdesc Pythagoras, and supposedly became his wife. execute addMap TheanoOldStyle.map -containersize 493064 -containerchecksum b8890a2f8af2700c042d1953fbf8c8cf0d499d7458985476bba4a1ad83c9b4c6ec9f8d6f30986b57ca532b0b41208ce07d4d76687f52fa8863da75cc39f24d24 +containersize 493056 +containerchecksum b2df891fef113bcd50ba63cea16942738a9c8665a1644187401ba471e53c2f35070c8a339c1281e4d679dae39e22497de92d854ab311720903e676dd7e7b7413 doccontainersize 34680 -doccontainerchecksum ceb00e62d2e9adeab0244ba58b052fcc0a068f7afd8e3936767909b8377da11c8178eaa9015d1d84dd95cc4b5c63c01654e032855b707c03197b63c9e2097d55 +doccontainerchecksum cb896fd78684c8c21ae5579da4b510636336e4959c0943577657aa90d2d843415eaaa2eb42e7d1cc031f6a50044a7702c7d01abb8af7dabd4b6132545c799a07 docfiles size=12 RELOC/doc/fonts/theanooldstyle/README details="Readme" RELOC/doc/fonts/theanooldstyle/SILOpenFontLicense.txt @@ -303216,27 +314667,75 @@ catalogue-ctan /macros/latex/contrib/theoremref catalogue-license lppl gpl2 catalogue-topics label-ref maths-theorem +name thermodynamics +category Package +revision 63188 +shortdesc Macros for multicomponent thermodynamics documents +relocated 1 +longdesc This package makes typesetting quantities found in +longdesc thermodynamics texts relatively simple. The commands are +longdesc flexible and intended to be relatively intuitive. It handles +longdesc several sets of notation for total, specific, and molar +longdesc quantities; allows changes between symbols (e.g., A vs. F for +longdesc Helmholtz free energy); and greatly simplifies the typesetting +longdesc of symbols and partial derivatives commonly encountered in +longdesc mixture thermodynamics. Changes of one's notes from one +longdesc textbook to another can be achieved relatively easily by +longdesc changing package options. The package offers a collection of +longdesc macros and environments which are intended to make typesetting +longdesc thermodynamics documents faster, more convenient, and more +longdesc reliable. Macros include symbols for extensive, molar, +longdesc specific, and partial molar properties; exces and residual +longdesc (departure) properties; partial derivatives; heat capacities, +longdesc compressibilities, and expansivities; saturation, mixture, and +longdesc pure-component properties; Henry's Law parameters and activity +longdesc coefficients; and changes on mixing, fusion, reaction, +longdesc sublimation, and vaporization; and sets of all moles/mole +longdesc fractions/masses/etc. being held constant in derivatives. +longdesc Conversion of notes between textbooks is trivial for textbooks +longdesc supported by the package, and more general changes in notation +longdesc are also possible through package options. +containersize 6556 +containerchecksum eaff530ff327020bc067435669a84f0614fc09a9a7027451b5407a80466c488105ffa4eaf40caf8e0ff7d6beb715ee1064190e371479e319a5da6f827e21713c +doccontainersize 202180 +doccontainerchecksum 48100b4af357710e037426983f3ee7c7961980d284cf53fc50194de7d7e81d6ab9d2ceedd47b2521571fa1ef63c263fd828a6229246116c54f8955967641c360 +docfiles size=53 + RELOC/doc/latex/thermodynamics/README.md details="Readme" + RELOC/doc/latex/thermodynamics/thermodynamics-examples.tex + RELOC/doc/latex/thermodynamics/thermodynamics.pdf details="Package documentation" +srccontainersize 28040 +srccontainerchecksum c940d93724b127128f1824047daf5b22f17e0316f1ee0f1e0e73ffd79796cdd3588a52eb8a470fcaa8611015e7728d5da37862e888cb58904eedcc7700d8e1a1 +srcfiles size=35 + RELOC/source/latex/thermodynamics/thermodynamics.dtx + RELOC/source/latex/thermodynamics/thermodynamics.ins +runfiles size=9 + RELOC/tex/latex/thermodynamics/thermodynamics.sty +catalogue-ctan /macros/latex/contrib/thermodynamics +catalogue-license lppl1.3 +catalogue-topics chemistry physics +catalogue-version 1.00 + name thesis-ekf category Package -revision 57207 -shortdesc Thesis class for Eszterhazy Karoly University +revision 60228 +shortdesc Thesis class for Eszterhazy Karoly Catholic University relocated 1 longdesc This is a class file for theses and dissertations at the -longdesc Eszterhazy Karoly University (Eger, Hungary). It is based on -longdesc the report class. The documentation is in Hungarian. -containersize 59556 -containerchecksum 34f9f72bd8ef813c0ef6a01956304ef99f8a0fecf17786f9aa51fc6aac4655f5a76aa030509379699f6dcbe6a7245cd1d01f2fd0df8fd3bc77e5f8ddaa0ffb8c -doccontainersize 313284 -doccontainerchecksum 48989f4df56a2820c048651831b598fd3c956ffb2733a9d3e8a68891e7c410a72425ba3a32a4a0ecd6f7640f7054d85016c7c9dd129ad59849588cdc09547548 -docfiles size=78 +longdesc Eszterhazy Karoly Catholic University (Eger, Hungary). The +longdesc documentation is in Hungarian. +containersize 113096 +containerchecksum 7ef62e88cf25c1b7c37dcbdba00dca0fe522727cd6d1b5bf27cdea73e4638defd2430c2440879479427b2faea91315203179b8f45224d68067ad46810dfd6da0 +doccontainersize 322100 +doccontainerchecksum 50220e7cdded7a36703fe4e0965d19e18c6aca7a8f738b4808efc28d472f01522b456474bfb6c4d43ecc61d81173f0025918b302083829e849059fbcac5e096f +docfiles size=81 RELOC/doc/latex/thesis-ekf/README details="Readme" RELOC/doc/latex/thesis-ekf/thesis-ekf.pdf details="Package documentation" language="hu" srccontainersize 9064 -srccontainerchecksum 45c2329fa7994a119e1c8c2d3e777b4ab1083496c538edcda3382d2321a4b7cea97daddde8efd75bad12b79d95d635f45bd79f1db682a384ef320d4b000c1ec1 +srccontainerchecksum a479e92491a962f549ba9a2863504efadfa5a1515d209eb26a541ad88a5bd8657ee3f3492e99068f3dca869e8394ca9008a074c17d139e2a22325364b0a7d89b srcfiles size=10 RELOC/source/latex/thesis-ekf/thesis-ekf.dtx RELOC/source/latex/thesis-ekf/thesis-ekf.ins -runfiles size=43 +runfiles size=71 RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.eps RELOC/tex/latex/thesis-ekf/eszterhazy-logo-de.pdf RELOC/tex/latex/thesis-ekf/eszterhazy-logo-en.eps @@ -303247,7 +314746,7 @@ runfiles size=43 catalogue-ctan /macros/latex/contrib/thesis-ekf catalogue-license lppl1.2 catalogue-topics dissertation class hungarian -catalogue-version 4.1 +catalogue-version 4.2 name thesis-gwu category Package @@ -303300,7 +314799,7 @@ catalogue-version 1.7.0 name thesis-qom category Package -revision 49124 +revision 63524 shortdesc Thesis style of the University of Qom, Iran relocated 1 longdesc This package provides a class file for writing theses and @@ -303311,11 +314810,11 @@ longdesc current requirements and is updated whenever the university longdesc guidelines change. The class needs XeLaTeX in conjunction with longdesc the following fonts: XB Niloofar, IranNastaliq, IRlotus, XB longdesc Zar, XB Titre, and Yas. -containersize 14060 -containerchecksum 5afaa0d05b88dbe2d3e5dc2450d1d01b57a24f54be4437c2e9c71afa6c8b1f10144c674de2d8062c6d4a5b7a5140b1fac6ba82bb68c03ecb6560d8afd1384cae -doccontainersize 1248052 -doccontainerchecksum 7bfe521b8f1df650304080e50805f48437e9b22b5b06f3f2fc309bc770ea0370d0e5acf2977c4332e0ca3d7b664c2dc8161f31f057a910069ba1cb585225145d -docfiles size=428 +containersize 13320 +containerchecksum 71aab07394cd5e4a433c02d80ae1b81c059edaec926e242861bd9a902ada1af25352f660d892718c88f0de05c4eb4a4dfe2c07f68f63f8d28d2d0c2923949294 +doccontainersize 1292672 +doccontainerchecksum 47148e246b917849db3c280a1b6af3485d24a5d809cb252c597b4c731a058eda5824c99374bfe2bdb199057f1c9493506ef757f6c25e3f2d38a11c8bb8a5613d +docfiles size=439 RELOC/doc/xelatex/thesis-qom/Print-PDF.png RELOC/doc/xelatex/thesis-qom/README details="Readme" RELOC/doc/xelatex/thesis-qom/Xindy_Make_Index.png @@ -303345,13 +314844,14 @@ docfiles size=428 RELOC/doc/xelatex/thesis-qom/thesis-qom.pdf details="Package documentation" language="fa-ir" RELOC/doc/xelatex/thesis-qom/thesis-qom.tex RELOC/doc/xelatex/thesis-qom/xindy_shellescape.png -runfiles size=15 +runfiles size=14 RELOC/tex/xelatex/thesis-qom/thesis-qom.cls +catalogue-contact-bugs https://github.com/javadr/thesis-qom/issues catalogue-contact-repository https://github.com/javadr/thesis-qom catalogue-ctan /macros/xetex/latex/thesis-qom catalogue-license lppl1.3c catalogue-topics dissertation class xetex -catalogue-version 0.42 +catalogue-version 0.5 name thesis-titlepage-fhac category Package @@ -303445,7 +314945,7 @@ catalogue-topics maths-theorem decoration name thmtools category Package -revision 56070 +revision 65863 shortdesc Extensions to theorem environments relocated 1 longdesc The bundle provides several packages for commonly-needed @@ -303455,20 +314955,20 @@ longdesc theorem and amsthm packages. Features of the bundle include: a longdesc key-value interface to \newtheorem; a \listoftheorems command; longdesc hyperref and autoref compatibility; a mechanism for restating longdesc entire theorems in a single macro call. -containersize 13276 -containerchecksum e7b4a7b97e7ace18e6d02d63d1e6014d0f702dfeca27f6e921a70a7c34797104c6bc26ca3717fe8237923f1c66fbb010b9e76a192d49f1600fd3362badb6261a -doccontainersize 253364 -doccontainerchecksum 602711e37b3ff9a46c0e19cd99b1d4e3b40406192fef9746bca7d667273907c1f9aceb97078bb877ba52dc75dcd8cf13cfd31de3c184e2ea7760b9a721cf991a -docfiles size=77 +containersize 13416 +containerchecksum 371801b9ab63eb0ce401bbb56e9b2b52cebf927e7d433d10e94c60c3649187b88957cbe05f2c9995d9bf687a6e6708f8a26f02596dbdd2759107ca61171bcd6b +doccontainersize 265140 +doccontainerchecksum 753143eda92a887d6217f2dd3b727e78ff7441b109e8fc99eb0a672674a4ce0e3d7a1efd10f3252c2a14ebc87a37687511589e0f91cd4bd79a8298edfc7ad299 +docfiles size=81 RELOC/doc/latex/thmtools/COPYING RELOC/doc/latex/thmtools/README.md details="Readme" RELOC/doc/latex/thmtools/VERSION.tex RELOC/doc/latex/thmtools/changes.txt RELOC/doc/latex/thmtools/thmtools-manual.pdf details="Package documentation" RELOC/doc/latex/thmtools/thmtools-manual.tex -srccontainersize 20484 -srccontainerchecksum 58cc1f1259bcaaad68cd0316bf786822ca34325e965a5a0cb2c825b841ef327bc4c31e20e9c6bf3bc183d06cbca565cdb2c99e1fc8d1bd4c9625b265d97fcad8 -srcfiles size=28 +srccontainersize 20756 +srccontainerchecksum 1114b1aee91c98ec2fa19858cc108ec264e717b525cc86a19e985abf74eb29123c0f7d3f9a0e5bbee9984c062adeb1de95344c579e3675d6181d125b7db69bf7 +srcfiles size=30 RELOC/source/latex/thmtools/aliasctr.dtx RELOC/source/latex/thmtools/parseargs.dtx RELOC/source/latex/thmtools/thm-amsthm.dtx @@ -303508,7 +315008,7 @@ catalogue-contact-repository https://github.com/muzimuzhi/thmtools catalogue-ctan /macros/latex/contrib/thmtools catalogue-license lppl1.3c catalogue-topics maths maths-theorem -catalogue-version 72 +catalogue-version 75 name threadcol category Package @@ -303643,6 +315143,53 @@ catalogue-license lppl1.3 catalogue-topics logo pgf-tikz catalogue-version 1.2 +name thubeamer +category Package +revision 61071 +shortdesc A beamer theme for Tsinghua University +relocated 1 +longdesc This package provides a beamer theme designed for Tsinghua +longdesc University. +containersize 121904 +containerchecksum 8391507179c7237588645f08c0611ab441cb4f426808bece8122ddcccdec8c94457efb8db75f7078b6b2adb6430350d5279bf9efa091cecbc263d31fbbfc11c4 +doccontainersize 695128 +doccontainerchecksum fb2383dc358f2d0990a3f697746b6941a04116af8f184dbc37cccb100bfb19fc72ecd876bc581234c6dafc2c897576992fe8f741fea07ee0889bb1f51555601a +docfiles size=236 + RELOC/doc/latex/thubeamer/License + RELOC/doc/latex/thubeamer/README.md details="Readme" + RELOC/doc/latex/thubeamer/dtx-style.sty + RELOC/doc/latex/thubeamer/macros.tex + RELOC/doc/latex/thubeamer/reference.bib + RELOC/doc/latex/thubeamer/thubeamer-example-en.pdf details="Example of use (English)" + RELOC/doc/latex/thubeamer/thubeamer-example-en.tex + RELOC/doc/latex/thubeamer/thubeamer-example.pdf details="Example of use (Chinese)" language="zh" + RELOC/doc/latex/thubeamer/thubeamer-example.tex + RELOC/doc/latex/thubeamer/thubeamer.pdf details="Package documentation" language="zh" +srccontainersize 8136 +srccontainerchecksum 775b719a02f4ce703a37844cbff77e476c35dc105f8c370e6213f157053a397ac80295cf67c84229ff565e997bb89d89f7db209c7f84d8e47b4c92acca98ff48 +srcfiles size=12 + RELOC/source/latex/thubeamer/Makefile + RELOC/source/latex/thubeamer/makebeamer-en.bat + RELOC/source/latex/thubeamer/makebeamer.bat + RELOC/source/latex/thubeamer/makeclean.bat + RELOC/source/latex/thubeamer/makecleanall.bat + RELOC/source/latex/thubeamer/makedoc.bat + RELOC/source/latex/thubeamer/thubeamer.dtx +runfiles size=68 + RELOC/bibtex/bst/thubeamer/thubeamer.bst + RELOC/tex/latex/thubeamer/beamercolorthemethubeamer.sty + RELOC/tex/latex/thubeamer/beamerinnerthemethubeamer.sty + RELOC/tex/latex/thubeamer/beamerouterthemethubeamer.sty + RELOC/tex/latex/thubeamer/beamerthemethubeamer.sty + RELOC/tex/latex/thubeamer/thulogo.pdf +catalogue-contact-announce https://github.com/YangLaTeX/thubeamer/releases +catalogue-contact-bugs https://github.com/YangLaTeX/thubeamer/issues +catalogue-contact-repository https://github.com/YangLaTeX/thubeamer +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/thubeamer +catalogue-license lppl1.3c +catalogue-topics presentation chinese +catalogue-version 1.1.0 + name thucoursework category Package revision 56435 @@ -303711,7 +315258,7 @@ catalogue-version 1.0 name thumbpdf category Package -revision 48625 +revision 62518 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 @@ -303720,11 +315267,11 @@ longdesc read by the package thumbpdf.sty to automatically include the longdesc thumbnails. This arrangement works with both plain TeX and longdesc LaTeX. depend thumbpdf.ARCH -containersize 18876 -containerchecksum f3eaaa9ad4287d58ab89b98e1889f99dbabd82153f99921a9249b2cfb741c0cc45bfdd1903590c66bf0b63c77490017c36f552e34d7d15290cbc5904e57a3bc8 -doccontainersize 14604 -doccontainerchecksum fa2a7cbf80f7b76e63aff8ce5584e698e9f88a0d5a902895afa22a100202fb30bc857f5a1b88e190ff2dbf5ca9cf2338f6ca96a7b80a6d3e6e549040fc3ece7d -docfiles size=10 +containersize 18860 +containerchecksum 74d1b32b1a48825c423d4346258f6f1eea60d2054ed38b3d9d4e207a3375e35b6e80d87706bc2d265f62606a449a0a665c8698f4e1615b39df98f6f54b309fff +doccontainersize 31216 +doccontainerchecksum 26f698eef73b85181abbd155e8ec8f6057f7ec0c5ed1448a256e4fc2e41cffc77474fe4c3695d611e8993bbb1afdf238e3db3a90bc2b7af145535f726af027ed +docfiles size=14 texmf-dist/doc/generic/thumbpdf/README texmf-dist/doc/man/man1/thumbpdf.1 texmf-dist/doc/man/man1/thumbpdf.man1.pdf @@ -303775,15 +315322,6 @@ containerchecksum ca03668974012331f2289a82dd5bbfed0cca57aa067eb827209fc8cdb5ec35 binfiles arch=armhf-linux size=1 bin/armhf-linux/thumbpdf -name thumbpdf.i386-cygwin -category Package -revision 25941 -shortdesc i386-cygwin files of thumbpdf -containersize 340 -containerchecksum 7e4dfed78f257ec49df47d9258f32cab5b6316989ee103e97bd9c08c4fbd29b063df6face26c0646877d077d460705fb4d5e7c6e424bbd40ad2a80192e5ce7d5 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/thumbpdf - name thumbpdf.i386-freebsd category Package revision 16472 @@ -303829,14 +315367,14 @@ containerchecksum f90c5d463bc6e7661230e29d8eeb32d79cb6091946e7068fe21cbfeaad13a2 binfiles arch=universal-darwin size=1 bin/universal-darwin/thumbpdf -name thumbpdf.win32 +name thumbpdf.windows category Package -revision 15404 -shortdesc win32 files of thumbpdf -containersize 684 -containerchecksum 19f001794e022666e365fc0a38d343cb0c53475508e9daabb316e56e57541040619c897dd9bf2051d342e16405658e9e6a94e2a5bbd6778d4d7f96143754a3bf -binfiles arch=win32 size=1 - bin/win32/thumbpdf.exe +revision 65891 +shortdesc windows files of thumbpdf +containersize 2308 +containerchecksum 08858ef8ed5197871c375cd2bdee111fbc96755c8605a36b18d55d8fdb6a464669d927f1228f88eb704b17baddc763191c31ed323fee45e18b65cb824c8b7bcc +binfiles arch=windows size=2 + bin/windows/thumbpdf.exe name thumbpdf.x86_64-cygwin category Package @@ -303951,18 +315489,18 @@ catalogue-version 0.1 name thuthesis category Package -revision 58750 +revision 64628 shortdesc Thesis template for Tsinghua University relocated 1 longdesc This package establishes a simple and easy-to-use LaTeX longdesc template for Tsinghua dissertations, including general longdesc undergraduate research papers, masters theses, doctoral longdesc dissertations, and postdoctoral reports. -containersize 41476 -containerchecksum 96dc085764a25d523d12cf695c5aea632b26b32229f2c5e02ffc9f2bf3836c12275dda9b99d0e73255da84ab26fd5a6a77f4523dee3051097e84cf450cac0bc5 -doccontainersize 1580176 -doccontainerchecksum f8e4d36746018a60dec5295d34c319122451ba771965fe51a85ae99704c52a2e71b9aeb4380361b38b0f91e6369dcc1f29cdc7f2490b1cd82b989a446479a6bd -docfiles size=430 +containersize 43556 +containerchecksum 1e3874a1b6e2e7f465244d1a7249b233ecb2d85f72a52719c6986a9a7a744563094c552718483f1508bd6cd67ca602b821f0e071427db790b43af92e6d369efe +doccontainersize 1599328 +doccontainerchecksum 20936d1dc56b506b66f3ec35d91654637a9468a777c9830afaae97e07cd98e7df16f83ea806f2651cd374939e9cd8af57d96e0c1b5d92700d8d034be26f6ab24 +docfiles size=434 RELOC/doc/latex/thuthesis/CHANGELOG.md RELOC/doc/latex/thuthesis/LICENSE RELOC/doc/latex/thuthesis/Makefile @@ -303990,12 +315528,12 @@ docfiles size=430 RELOC/doc/latex/thuthesis/thuthesis-example.pdf details="Example of use (Chinese)" language="zh" RELOC/doc/latex/thuthesis/thuthesis-example.tex RELOC/doc/latex/thuthesis/thuthesis.pdf details="Package documentation (Chinese)" language="zh" -srccontainersize 46016 -srccontainerchecksum 03a297ecedb3b5ed980544d0afbf47a4ca0561f3323451a4bb4d5e80e9ba55c0830db81b3d2a5012ee088882ce05d58991fbbd37ee9d2f793e3b7fe2d2ae8be2 -srcfiles size=51 +srccontainersize 47824 +srccontainerchecksum 0b6939673f935662e9337cd43349eeb575c50003b104569d119bccb58c242e6e7c134e8b6ac5b4cc08508cf948ee6001af9b675ec633a6df085acc19eab26222 +srcfiles size=53 RELOC/source/latex/thuthesis/thuthesis.dtx RELOC/source/latex/thuthesis/thuthesis.ins -runfiles size=71 +runfiles size=76 RELOC/bibtex/bst/thuthesis/thuthesis-author-year.bst RELOC/bibtex/bst/thuthesis/thuthesis-bachelor.bst RELOC/bibtex/bst/thuthesis/thuthesis-numeric.bst @@ -304014,7 +315552,7 @@ catalogue-contact-repository https://github.com/tuna/thuthesis catalogue-ctan /macros/latex/contrib/thuthesis catalogue-license lppl1.3c catalogue-topics dissertation class doc-templ std-conform chinese -catalogue-version 7.2.2 +catalogue-version 7.3.1 name ticket category Package @@ -304096,9 +315634,32 @@ catalogue-license lppl catalogue-topics pgf-tikz doc-supp catalogue-version 1.0 +name tidyres +category Package +revision 65789 +shortdesc Create formal resumes easily +relocated 1 +longdesc This LaTeX package aims to provide users with a simple +longdesc interface to create multi-column formal resumes. +containersize 1084 +containerchecksum 092cc495292263e9e87eb3253d918466ab80b1d9187361a73c01bae0131848488876145747753dbf6129db129bda881968200102e16fcae5456d48f3524ccbda +doccontainersize 193288 +doccontainerchecksum 94a5c27d8ef9abac35f97f230964e305b24ac50ea5f30491db828f5675ad3128a8b75b423573f6c9f6d273f14b2d244b364997c5d75cf6e19772b0c995af22ed +docfiles size=55 + RELOC/doc/latex/tidyres/README.md details="Readme" + RELOC/doc/latex/tidyres/tidyres-doc.pdf details="Package documentation" + RELOC/doc/latex/tidyres/tidyres-doc.tex +runfiles size=1 + RELOC/tex/latex/tidyres/tidyres.sty +catalogue-contact-repository https://github.com/futurelyf/tidyres +catalogue-ctan /macros/latex/contrib/tidyres +catalogue-license cc-by-4 +catalogue-topics cv +catalogue-version 1.0.0 + name tie category TLCore -revision 57972 +revision 66186 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 @@ -304107,9 +315668,9 @@ longdesc incorporates existing changes. depend kpathsea depend tie.ARCH containersize 476 -containerchecksum 39d0e9ddb47505d9a3cdb00e6d667b7273901eadd02db0637d1d3996ad8e90d7b8d6a1c094b62c371f24ab954239b43d6bbdcd9a6d689c3fe70d8959fcf56d6b -doccontainersize 15368 -doccontainerchecksum 686b05f4b7ac88dd663f5fc3157a21810e46b4382cc01271cf9ddc091ae44e76b4f3b94c93bdb4ff5366f19fee5d9818d1b0fe05d354b5c710bc2908f22f0fa4 +containerchecksum ca58ca773fd1e4e786f12e1acf9b0e39afe1709c73cc7a0da4331576933c1a4aafd9eed3a0181bcb20b6087d409c73f78fc2a77d96bb75d183996593b8aadadc +doccontainersize 15564 +doccontainerchecksum 66e92b91bcf9b6c44d8d2af141d4980a2b0e0ee3a9dcab778eae118debe4ce4459c933cde6a5cb8cf07af8b5d5d001bc1bcafa2776ae64121ba6308a7b19b3cf docfiles size=6 texmf-dist/doc/man/man1/tie.1 texmf-dist/doc/man/man1/tie.man1.pdf @@ -304120,145 +315681,136 @@ catalogue-version 2.4 name tie.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of tie -containersize 32724 -containerchecksum c8e03df7e590c21fdc398f61561d44c027a4817e04c29bd7aaa07768b120b5849d628f0e8c3499a54299958f85011e9162c8e92e9315b8fb2267729d7068071d +containersize 32736 +containerchecksum c949ee691ae76af15463484d5fe59e697f54ee8a7e758320bf2d0903af3efd6733cea0f116a270dfa4d3e9da121a633d4623cba233e701f275df000322f1f67d binfiles arch=aarch64-linux size=21 bin/aarch64-linux/tie name tie.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of tie -containersize 33612 -containerchecksum 12f6bd63050ee74c6c46e40949c266974afa97af0c4ca7be672cc81e3d14dea2b0be3df2cebade9e71e2266aba2fe1b154b80972ed9638fe9759306d305549d1 +containersize 33772 +containerchecksum dffd57d9f3f7f90e431716ec34b506ee8bd8e5a894f27865175c92aaced7a943a5339267713a905b7618d0112cb2085e68c0f7eb82b6cfa2adcecba476a66f85 binfiles arch=amd64-freebsd size=20 bin/amd64-freebsd/tie name tie.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of tie -containersize 30920 -containerchecksum b01cb740ca5955e5c212d497dd1d537f482d6c252e3179928032d1d6f53293c59853744e30ccfc17db73613c421954483d3649bba36e8d832e4d93de42dd0ca3 +containersize 30892 +containerchecksum 6f46f5cf2433d00d7703d7a4ed81b38b60e52a7f1cfe968ab02cbec70c34d270524848846766e9f5f4c5a55eb72d63d5e7394c3debbfebcf2c5116bb5116f10f binfiles arch=amd64-netbsd size=25 bin/amd64-netbsd/tie name tie.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of tie -containersize 27336 -containerchecksum 343778da761de93cea8c49c982882f08a2b47f9098484d3a9ef0d1902c5e84d4531fde262aa12962a5796440b2dd1f747339af95f8350df45ad10a6192e511c2 +containersize 27344 +containerchecksum db56edb21574eeab640df14319fb135b97a7815b88f14c1383ce14ad39b1ead4adc41cbc75db492b6f561b465af4dee121bb13d2801eef69d65a2960375bd864 binfiles arch=armhf-linux size=17 bin/armhf-linux/tie -name tie.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of tie -containersize 5220 -containerchecksum e2ee614b939a8f60eb47cdc0eb4b2f5384ae458870d07cab7155f7453b4994b5c748e5cde611a3a5823c9641aa60ad6b78a9e3f43b51b93ca56921f212a59e3f -binfiles arch=i386-cygwin size=4 - bin/i386-cygwin/tie.exe - name tie.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of tie -containersize 30196 -containerchecksum a07fb3db512a7c2b9d925bbe8b418c3c972d388855c247972d3727598a82f5fe6108e7cf8cffdf2e48f3d252601aa1a73a2c8eb24d6fa281e5e68d91dc3eb886 +containersize 31036 +containerchecksum c4894c73fc89df20ef499116d78e6243aea16896e271adf477af9e4039996e8003de8dffec6cd97296b4aa7a4d0f1d146915ac7553ae74ac78ff25ed1c2205a4 binfiles arch=i386-freebsd size=18 bin/i386-freebsd/tie name tie.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of tie -containersize 36552 -containerchecksum dfd5dfa51f5c1c05248d705a326e28d1fead418f6784ed1f369671a7d8a5159220c384a86a909a826b768240846a20ecd989c2262ac81a24d19e8afdc0e13cbd +containersize 37044 +containerchecksum 5c500d1903394566c6ddb4c43e8f4815ac27bcf0d80b837b56612e64a48ed061a40893b6b8118e8f452f45abb180c4989f285bc74d463cff5af4453a48b84ff8 binfiles arch=i386-linux size=23 bin/i386-linux/tie name tie.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of tie -containersize 28612 -containerchecksum b2768ef204293c42635c4c0beea3ab7ed6bd1af63194e08ba6f978331ad5f29ea65dc22a6c41fc9d6d37d09d99f73cacb62bbe6171cfb6b3cad78036d692a43e +containersize 28620 +containerchecksum 80bb7b8626127a91c58e366d7516c0c3d7a9f5f3c79ae8e133c9bcd44a7ee0a3d6cf89b08e82283606296b73ac89793a3f4620cdeba1aa084b6222c4ff0212ab binfiles arch=i386-netbsd size=23 bin/i386-netbsd/tie name tie.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of tie -containersize 32556 -containerchecksum 7bf5bc42739f8c6532d122bead2e9b432ec41ca9479f1457a96436dd7f47ae809080bde4c1d79b2a002116f57bfa97ec8a62759a54b196dc750891a30be5e9fb +containersize 32560 +containerchecksum f3b0121b6ac0e37a3dfb96edd476915999ac42ec06d8105eae4fea6256b4b90d1fdd35a76d63586113d9a05ba2fb37621888f807a4ca53f299f5f02ebfa8e4b5 binfiles arch=i386-solaris size=18 bin/i386-solaris/tie name tie.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of tie -containersize 63324 -containerchecksum 8a9b600fd9063e16ed74680d0ba5833d46e739d648d70a69dddc3a01516ecca23ade7aced005e74cb46debce404a1936c10034bb7531b0cbaef6fc0acf4f4b43 +containersize 63508 +containerchecksum e04943f047a7014e75b18067702ccb3e7756dfad78dc69a49b9344353a48c79b1749c05682a119938a330f81205157f9e59503c2d3a56314bfa9b8e192ae2284 binfiles arch=universal-darwin size=59 bin/universal-darwin/tie -name tie.win32 +name tie.windows category TLCore -revision 58783 -shortdesc win32 files of tie -containersize 5980 -containerchecksum 483ee2cef31e1eaf460fef0db0ccaab0bc7619a6dfffc02dd2ddedf0a14aa9e49a2b40e0e674e1c602ee2bffe8233855fb33a1bcdf07dfbf87f76594c3e624ed -binfiles arch=win32 size=3 - bin/win32/tie.exe +revision 65891 +shortdesc windows files of tie +containersize 5688 +containerchecksum febbb8a17b33b50a18d5a5b9ab0e196d8a9c895e4782247a9e4bc1d2192b65a55d75a7921c9dffdc18c782e620b489321cc7d3a6cc384579461c4a003a36dc52 +binfiles arch=windows size=4 + bin/windows/tie.exe name tie.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of tie -containersize 5204 -containerchecksum b19a75e7923b9ad2477a4a5e17be615002fea40d60279999fecdd28a473767315686dd56a5c4ef4c724faa626c288d299d9fd80f8a7213830e6bcce1f33eb1d5 +containersize 5212 +containerchecksum 79af375ca67f5a57bfe4db72403b1e54533e55aeb0b0458583e1a6c4da8de159422491c8038fbe431b0a6347c93579036edc4fb79e0a0b698f1ebe688b7286f1 binfiles arch=x86_64-cygwin size=4 bin/x86_64-cygwin/tie.exe name tie.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of tie -containersize 31928 -containerchecksum 083de1274dc00d1c0c3a69eed84bf3b883cc0fa4bb170e2603b4e86ab3f9a9d6a0b81bb2e708fac9413f5189f90ab29fecdebed5158ab670f7cf7ef8bc3d202e +containersize 31912 +containerchecksum 3770c23deb44e6adedbf7c6ba560dc72f84fd8de951fbf9dc5dadd555f79ffbc5ceaba9a721be531c55334b6aa269c046b1327c80c6cb23176bc6f5631f1e45d binfiles arch=x86_64-darwinlegacy size=21 bin/x86_64-darwinlegacy/tie name tie.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of tie -containersize 34564 -containerchecksum 91ff50d17c17aa15093509db237401dba05b9df311f4296b152584a371378b9cb11dd0dcf69c9cd446e207ac9020f1e0db5eeb8b67980eb3154eec167bb6cd79 -binfiles arch=x86_64-linux size=20 +containersize 34396 +containerchecksum ded08f8cd628ce502fb055d237020a423cfaa9291fcfd23c8f2c73c455834b5ddb519f0a27471e351e20cc69f3d4126ecaa6e8fdc58a5b8ed7a7f9ed9bfe5152 +binfiles arch=x86_64-linux size=21 bin/x86_64-linux/tie name tie.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of tie -containersize 35684 -containerchecksum cb4b2567908ebbadc0519f174d6062fbccd6fa169fc0a42bd2843d779289a27e9713648f80f19201b05756cc11cc330584bcdd0bb9a5b6007b66149457eb2799 +containersize 35184 +containerchecksum a4ac14bfd6fcabdee7ad9f67681321ece6728e459539bf6b63273bc4bfafd7b97457d74b2dbed46606e23ba1263f4fe8167c719d82281216ab82a8a126f4e7db binfiles arch=x86_64-linuxmusl size=21 bin/x86_64-linuxmusl/tie name tie.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of tie -containersize 35436 -containerchecksum f980fff4a542a0a03238f632160f60e2d050a019f9c7ae79a316f4351060c6e088901060bb5bb97d1968f29a8339a29780a330d4f6c3ff86441afab207abd16b +containersize 35416 +containerchecksum 0a79b0f46faa234e269d14c7bc0bab4330776ff571b0bd9eb2b65c3b56333555228187e2a7b4bf0a6fa138d688c4c3c26da866a27082399c459dc13c47a94395 binfiles arch=x86_64-solaris size=22 bin/x86_64-solaris/tie @@ -304296,17 +315848,17 @@ catalogue-topics graphics-use graphics-3d pgf-tikz name tikz-among-us category Package -revision 56820 +revision 60880 shortdesc Create some AmongUs characters in TikZ environments relocated 1 longdesc This package recreates some AmongUs characters in TikZ longdesc environments. Some interesting uses alongside other packages longdesc are also supported. -containersize 5968 -containerchecksum 70eb06187c5146c9238e2074acdc39df7b40b9bef3cf34cd820d925ed482df07a1b3042b3f83e6cece15eefda4d28b483888c1b9628a55fb57cc0788ca263746 -doccontainersize 5075820 -doccontainerchecksum c272447fed242f2d6539c665684732b0953587924e4b921872bc420ea09a2c178779903c5f44ca72bf7a310ac03c6367fb5e801f4c30000406dd93c8a43098ab -docfiles size=1370 +containersize 6536 +containerchecksum 13e082734e52205e78e804b708c920836c04e9b11dac23e49a8e86d40209ce1e074ab5ff30d97b528c027fd45252824a41daa850d1a9669987a7a59210f7b2cf +doccontainersize 5137144 +doccontainerchecksum 6146f3ee670400e39771a264eaa81a9b4b701a47487c7a4f9ec26ef26a93641062bc61893f71c4f66c8a035d52d763aa94740d9a00f5ce5b402272d67af93ff7 +docfiles size=1391 RELOC/doc/latex/tikz-among-us/README.md details="Readme" RELOC/doc/latex/tikz-among-us/fig_AmongUs_01.PNG RELOC/doc/latex/tikz-among-us/fig_AmongUs_02.PNG @@ -304324,14 +315876,43 @@ docfiles size=1370 RELOC/doc/latex/tikz-among-us/tikz-among-us.cwl RELOC/doc/latex/tikz-among-us/tikz-among-us.pdf details="Package documentation" RELOC/doc/latex/tikz-among-us/tikz-among-us.tex -runfiles size=11 +runfiles size=12 RELOC/tex/latex/tikz-among-us/tikz-among-us-fancyhdr.sty RELOC/tex/latex/tikz-among-us/tikz-among-us-watermark-eso-pic.sty RELOC/tex/latex/tikz-among-us/tikz-among-us.sty catalogue-ctan /graphics/pgf/contrib/tikz-among-us catalogue-license lppl1.3c catalogue-topics graphics pgf-tikz games amusements -catalogue-version 1.1.0 +catalogue-version 1.2.0 + +name tikz-bagua +category Package +revision 64103 +shortdesc Draw Bagua symbols in Yijing +relocated 1 +longdesc This package provides commands for drawing symbols in Yijing (I +longdesc Ching) or Zhouyi using TikZ. There is no need for extra special +longdesc fonts for showing these symbols. The package relies on TikZ, +longdesc bitset, xintexpr, xparse, and xstring. +containersize 2036 +containerchecksum bb9444547aee41fe90a4f8b8dbdff080b594d05182798ce87274dab5cf3f0510d428c79ee21eb90107ce9b98a0cc906376d1b49ffa80ea57598c4418152f9ac9 +doccontainersize 179120 +doccontainerchecksum 894fcec05e43df7fd13fdcd5f51e50128defa5a3ac67c2681f509740906449322862d885e5188861a1b92d6aeee9b6d4454ab1aefad74c5585efd937fa789e0f +docfiles size=49 + RELOC/doc/latex/tikz-bagua/README.md details="Readme" + RELOC/doc/latex/tikz-bagua/tikz-bagua-en.pdf + RELOC/doc/latex/tikz-bagua/tikz-bagua-en.tex + RELOC/doc/latex/tikz-bagua/tikz-bagua.pdf details="Package documentation" language="zh" + RELOC/doc/latex/tikz-bagua/tikz-bagua.tex +runfiles size=2 + RELOC/tex/latex/tikz-bagua/tikz-bagua.sty +catalogue-contact-development https://github.com/duplli +catalogue-contact-home https://github.com/duplli/tikz-bagua +catalogue-contact-repository https://github.com/duplli/tikz-bagua +catalogue-ctan /graphics/pgf/contrib/tikz-bagua +catalogue-license lppl1.3c +catalogue-topics pgf-tikz numbers +catalogue-version 1.01 name tikz-bayesnet category Package @@ -304390,7 +315971,7 @@ catalogue-version 0.1 name tikz-cd category Package -revision 49201 +revision 59133 shortdesc Create commutative diagrams with TikZ relocated 1 longdesc The general-purpose drawing package TiKZ can be used to typeset @@ -304401,11 +315982,11 @@ longdesc providing a convenient set of macros and reasonable default longdesc settings. This package also includes an arrow tip library that longdesc match closely the arrows present in the Computer Modern longdesc typeface. -containersize 6452 -containerchecksum 3fbfa7731eeb6d2b9cbe67cbc4d5470e235f6f990b76b3c82961df172fbba9a8f62ec6055743098cbdb2d3d8aaa3b94f5d4dd8f735624c7d9562de6aa72fdda3 -doccontainersize 276360 -doccontainerchecksum 63be72c0d55112e8328d40ae4fbd1e3c92133615e28f032f9f5efcf2432b6cc440b3c4de4ba46f3eb9e65725caf7de3623a8b49f3b9a87ef780dbeacc536df46 -docfiles size=80 +containersize 6364 +containerchecksum abe5952a90172dd74ddfd02834ec9fc632f26da00450c310eab2528d5b52750e80225219b75e778d1f87b2279e654bb743804da19ec7da91f12e4105f9ec3447 +doccontainersize 279924 +doccontainerchecksum ec354963bf8915a0c0b68fa0223c48ac48fc0450aff936c34e4c95fe15641319b711b753da7da542352e0fc6e9bbeec627de5a3023b4b90828ee05a81ca5d255 +docfiles size=81 RELOC/doc/latex/tikz-cd/README.md details="Readme" RELOC/doc/latex/tikz-cd/tikz-cd-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-cd/tikz-cd-doc.tex @@ -304414,9 +315995,9 @@ runfiles size=7 RELOC/tex/latex/tikz-cd/tikz-cd.sty catalogue-contact-repository https://github.com/astoff/tikz-cd/ catalogue-ctan /graphics/pgf/contrib/tikz-cd -catalogue-license gpl3 -catalogue-topics diagram-comm graphics-in-tex pgf-tikz -catalogue-version 0.9f +catalogue-license lppl1.3 +catalogue-topics graphics graphics-in-tex pgf-tikz diagram-comm +catalogue-version 1.0 name tikz-dependency category Package @@ -304477,6 +316058,81 @@ catalogue-license other-free catalogue-topics pgf-tikz catalogue-version 1.0 +name tikz-ext +category Package +revision 64920 +shortdesc A collection of libraries for PGF/TikZ +relocated 1 +longdesc This is a collection of libraries for PGF/TikZ. Currently these +longdesc are transformations.mirror, paths.arcto, paths.ortho, +longdesc paths.timer, patterns.images, topaths.arcthrough and misc. Most +longdesc of these libraries were developed in response to questions on +longdesc TeX.stackexchange.com. +containersize 24036 +containerchecksum bdbb8a58a00c7d72abb5e469b578e8ba982e5b04e9e63881bb7e6b17e631874646c123444619e24e1c1ec713bd0ad996bc11a4940e47ae2b159092441b072389 +doccontainersize 443120 +doccontainerchecksum faffce06a891b5c8ce09168dbd7c9502ef76c37f2006072e5f7e488c5221c38d80f482a85e7c03f476810840118b86d25c32f8f29a2dfc530e7dfd8126f6814f +docfiles size=149 + RELOC/doc/latex/tikz-ext/README.md details="Readme" + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-calendar.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-intro.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-calendar-plus.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-misc.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-node-families.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-paths.arcto.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-paths.ortho.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-paths.timer.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-patterns.images.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-positioning-plus.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-scalepicture.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-topaths.arcthrough.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-library-trans.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-main-body.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-main-preamble.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-circlearrow.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-circlecrosssplit.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-heatmark.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-rectround.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-superellipse.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-shapes-uncentered.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual-en-pgf-trans.tex + RELOC/doc/latex/tikz-ext/tikz-ext-manual.bib + RELOC/doc/latex/tikz-ext/tikz-ext-manual.pdf details="Package documentation" + RELOC/doc/latex/tikz-ext/tikz-ext-manual.tex +runfiles size=54 + RELOC/tex/generic/tikz-ext/pgfcalendar-ext.code.tex + RELOC/tex/generic/tikz-ext/pgfkeyslibraryext.pgfkeys-plus.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.pgfkeys-plus.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.circlearrow.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.circlecrosssplit.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.heatmark.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.rectangleroundedcorners.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.superellipse.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.shapes.uncenteredrectangle.code.tex + RELOC/tex/generic/tikz-ext/pgflibraryext.transformations.mirror.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.calendar-plus.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.misc.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.node-families.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.node-families.shapes.geometric.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.paths.arcto.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.paths.ortho.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.paths.timer.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.patterns.images.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.positioning-plus.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.scalepicture.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.topaths.arcthrough.code.tex + RELOC/tex/generic/tikz-ext/tikzlibraryext.transformations.mirror.code.tex + RELOC/tex/latex/tikz-ext/pgfcalendar-ext.sty + RELOC/tex/plain/tikz-ext/pgfcalendar-ext.tex +catalogue-contact-bugs https://github.com/Qrrbrbirlbel/tikz-extensions/issues +catalogue-contact-development https://github.com/Qrrbrbirlbel/tikz-extensions +catalogue-contact-home https://github.com/Qrrbrbirlbel/tikz-extensions +catalogue-contact-repository https://github.com/Qrrbrbirlbel/tikz-extensions +catalogue-ctan /graphics/pgf/contrib/tikz-ext +catalogue-license fdl lppl +catalogue-topics pgf-tikz +catalogue-version 0.4.2 + name tikz-feynhand category Package revision 51915 @@ -304642,40 +316298,49 @@ catalogue-version 0.4f name tikz-karnaugh category Package -revision 47026 +revision 62040 shortdesc Typeset Karnaugh maps using TikZ relocated 1 longdesc The tikz-karnaugh package is a LaTeX package used to draw -longdesc Karnaugh maps. It uses TikZ to produce high quality graph up to -longdesc 12 variables, but this limit depends on the TeX memory usage -longdesc and can be different for you. It is very good for presentation -longdesc since TikZ allows for a better control over the final -longdesc appearance of the map. You can control colour, styles and -longdesc distances. It can be considered as an upgrade of Andreas W. -longdesc Wieland's karnaugh package towards TikZ supporting. Also, -longdesc complex maps with solution (prime implicants) pointed out can -longdesc be generated with external java software. It supports both -longdesc America and traditional styles, though American style requires -longdesc a little extra effort. -containersize 4532 -containerchecksum aef1c5e3fe96191d0dbe55ea9f2307b05c328b92621e9dcebf4f8fb862ae501bc6dabd4f96915a800532723b447632e21110cbfb9483bd73dcef928b102bfec3 -doccontainersize 273192 -doccontainerchecksum b17971734dac21649b75c140dc1dca832de35460ba5de9e83f8907ed075fbd0fc2872edd39da7aaa5631b126ca0d59d1ad440e4fb2e68ad277d7ea4bb8975440 -docfiles size=89 +longdesc Karnaugh maps. It uses TikZ to produce high quality graph from +longdesc 1 to 12 variables, but this upper limit depends on the TeX +longdesc memory usage and can be different for you. It is very good for +longdesc presentation since TikZ allows for a better control over the +longdesc final appearance of the map. You can control colour, styles and +longdesc distances. It can be considered as an upgrade and extension of +longdesc Andreas W. Wieland's karnaugh package towards TikZ supporting. +longdesc Upgrade because uses TikZ for more option on typesetting and +longdesc overall higher quality. Extension because it also supports +longdesc American style and inputting the values as they would appear in +longdesc the map or in the truth table. Complex maps with solution +longdesc (implicants) pointed out can be generated with external java +longdesc software (see documentation for details). It supports both +longdesc American and traditional (simplified labels) styles and from +longdesc version 1.3 on American style is natively supported, therefore, +longdesc no more addition work is required to typeset Gray coded labels, +longdesc variable names etc. From version 1.4, two new macros allow +longdesc typesetting a map much more similarly as it should appear. +longdesc Original order, as the values appear in the truth table, still +longdesc being supported. +containersize 6712 +containerchecksum aa7bb0cbaebbae2657002c01098e9904c21483bb9e67a415834d54b2bcdeae75514a2e98a53e98ba87996b3147af84226e43ec9d121eff52b4f77d57d1802db5 +doccontainersize 358532 +doccontainerchecksum 25ccf7b40c1e808bf5fc45241d3f811e603bdeb770b21e5d98779e04ccce1ff67e73012816b763a083d07f1c62a16cce8feffc0e1c87ced8b83339de84d4cd4f +docfiles size=121 RELOC/doc/latex/tikz-karnaugh/README.txt details="Readme" RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-karnaugh/tikz-karnaugh-doc.tex -runfiles size=5 +runfiles size=10 RELOC/tex/latex/tikz-karnaugh/tikzlibrarykarnaugh.code.tex catalogue-also karnaugh karnaugh-map karnaughmap catalogue-ctan /graphics/pgf/contrib/tikz-karnaugh catalogue-license lppl1 catalogue-topics maths engineering pgf-tikz -catalogue-version 1.2 +catalogue-version 1.5 name tikz-ladder category Package -revision 46555 +revision 62992 shortdesc Draw ladder diagrams using TikZ relocated 1 longdesc The tikz-ladder package contains a collection of symbols for @@ -304685,11 +316350,11 @@ longdesc (for representing functions and function blocks) besides longdesc contacts and coils. It extends the circuit library of TikZ and longdesc allows you to draw a ladder diagram in the same way as you longdesc would draw any other circuit. -containersize 4544 -containerchecksum b01bd48b4e8dbf5e3549bd24949b81b3731b32d715dcf3d3141e2e2eca5a98c1f5e5369c10cfdc62791280aa3349cb5409f582d71701ff03dced0688cad1847c -doccontainersize 236908 -doccontainerchecksum 9133c29850f486ea62be8ef9b61bf67907e88c9557fbac132ad04501616efee97725fc58585fce64c59707b4828a4953d926860af7c99fde9e3e73a479b28d0c -docfiles size=101 +containersize 4880 +containerchecksum c18340557f53f0617831e7e6dc904840e6f1e04938684a21f2897297c8a70b95cacabe4a00e66d632026d8ce7728334eadaf02cf5bfe4ffc0e746f3ceec36fb1 +doccontainersize 292640 +doccontainerchecksum d77c8771b36df84e61cfada1f56300b10908727a164788b3c0665f14a26db5b03a3ea7f4a0fabf5ecc820e90a27a73c0ff0a7985e37e755852ac401b7143e7c9 +docfiles size=124 RELOC/doc/latex/tikz-ladder/README.txt details="Readme" RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.pdf details="Package documentation" RELOC/doc/latex/tikz-ladder/tikz-ladder-doc.tex @@ -304699,7 +316364,7 @@ catalogue-also ladder catalogue-ctan /graphics/pgf/contrib/tikz-ladder catalogue-license lppl1 catalogue-topics pgf-tikz diagram diagram-circ engineering -catalogue-version 1.1 +catalogue-version 1.3 name tikz-lake-fig category Package @@ -304752,6 +316417,38 @@ catalogue-license lppl1.3 catalogue-topics pgf-tikz graphics catalogue-version 0.9 +name tikz-mirror-lens +category Package +revision 65500 +shortdesc Spherical mirrors and lenses in TikZ +relocated 1 +longdesc This package allows the automatic drawing of the image of +longdesc objects in spherical mirrors and lenses from the data of the +longdesc focus, from the position and height of the object. It +longdesc calculates the position and height of the image, and also +longdesc displays the notable rays. +containersize 2876 +containerchecksum 133199223a6b40d9f07dfffcf842bf3cc5b37f58858aaf96fc5304f72d590f7ea4c45349455fb41ecadcffbcfeb8dae2fcea79cc282038d2bedd589a3a7cceeb +doccontainersize 1213548 +doccontainerchecksum 6515311c8514384e205bb3f3f0859e33c05f3b4b1815c56d84c6c01aeaefce2fa9b4d8a87a882ab38afb6fdde7aa236966bc6ef775d4a29aa35fc8c1611d0eae +docfiles size=689 + RELOC/doc/latex/tikz-mirror-lens/README.md details="Readme" + RELOC/doc/latex/tikz-mirror-lens/input_pacotes.tex + RELOC/doc/latex/tikz-mirror-lens/input_tab_configuracoes_espelhos.tex + RELOC/doc/latex/tikz-mirror-lens/input_tab_configuracoes_lentes.tex + RELOC/doc/latex/tikz-mirror-lens/input_tab_configuracoes_lentesL.tex + RELOC/doc/latex/tikz-mirror-lens/tikz-mirror-lens-PT.pdf details="Package documentation (Portuguese)" language="pt-br" + RELOC/doc/latex/tikz-mirror-lens/tikz-mirror-lens-PT.tex + RELOC/doc/latex/tikz-mirror-lens/tikz-mirror-lens.pdf details="Package documentation (English)" + RELOC/doc/latex/tikz-mirror-lens/tikz-mirror-lens.tex +runfiles size=6 + RELOC/tex/latex/tikz-mirror-lens/tikz-mirror-lens.cwl + RELOC/tex/latex/tikz-mirror-lens/tikz-mirror-lens.sty +catalogue-ctan /graphics/pgf/contrib/tikz-mirror-lens +catalogue-license lppl1.3c +catalogue-topics pgf-tikz diagram physics optics +catalogue-version 1.0.2 + name tikz-nef category Package revision 55920 @@ -304843,17 +316540,17 @@ catalogue-version 0.1.1 name tikz-optics category Package -revision 43466 +revision 62977 shortdesc A library for drawing optical setups with TikZ relocated 1 longdesc This package provides a new TikZ library designed to easily longdesc draw optical setups with TikZ. It provides shapes for lens, longdesc mirror, etc. The geometrically (in)correct computation of light longdesc rays through the setup is left to the user. -containersize 13176 -containerchecksum 703bf6777a78abfc72ff87d16a45c1599d9d68586b38fdb2aa4b2e180ce9cbd808a399a61f6ed381a3b04e83877dc2095c4701d10973f8632a0a32356d71f83c +containersize 13160 +containerchecksum ac0a42947cf864f28d5bc23aef1163fdee23e05d54ae570ed28e3445a66cf3e9345d6be7aa231496ad86065731ff0a2afa7ad0ce53332fbb3592c07bd396e297 doccontainersize 393040 -doccontainerchecksum 0a9f4d246869cfa0a8e7d252f78261a7877f4366fe1fa5c9db9dcb9a8dc36021818042d4ba79eb711e73a7ac32c0dd601ff892f97243fd5cdad373ee3ee02611 +doccontainerchecksum 7b088c27e6cdb4c2b7b44400a31353963b0b45cb26251edc60b4b8eb54663ce2cb76784c9850349e50728d6e7366be22ee6d84a79fccd5791cf713133079a1ff docfiles size=118 RELOC/doc/latex/tikz-optics/README details="Readme" RELOC/doc/latex/tikz-optics/tikz-optics.pdf details="Package documentation (French)" language="fr" @@ -304863,7 +316560,7 @@ runfiles size=22 catalogue-contact-repository https://github.com/fruchart/tikz-optics catalogue-ctan /graphics/pgf/contrib/tikz-optics catalogue-license lppl1.3 -catalogue-topics physics pgf-tikz graphics-in-tex +catalogue-topics physics optics pgf-tikz graphics-in-tex catalogue-version 0.2.3 name tikz-page @@ -304994,7 +316691,7 @@ catalogue-version 1.2 name tikz-relay category Package -revision 51355 +revision 64072 shortdesc TikZ library for typesetting electrical diagrams relocated 1 longdesc This package contains a collection of symbols for typesetting @@ -305005,11 +316702,11 @@ longdesc perhaps the exception of the USA. It extends and modifies, when longdesc needed, the TikZ-libray circuits.ee.IEC. A few non-standard longdesc symbols are also included mainly to be used in presentations, longdesc particularly with the beamer package. -containersize 6108 -containerchecksum ff171ed2c1b494ecbf012f1401fd0f2d0fc56a388383e482cf50ca7f591af93b2e6da74c237ac4a17fa214a489650670ef8560d826c7674086dbde6d541ffce4 -doccontainersize 484156 -doccontainerchecksum 1e81af1e171e7bf353617b1fee7f456b1e263ad911a842c154ec813c38fbab694f46b134c213810ca8de106854cc05d40bf8dbb1376c055d4d92c4f87e4e779d -docfiles size=209 +containersize 6280 +containerchecksum ac75431dfeae69fed707b99a42ecf64972436b22863e77586125fd6cde18e8e4d8bbdeaff839edc65aaedacbfd1c1e0ce776bde792b7613f810e7ac1f9102132 +doccontainersize 624812 +doccontainerchecksum 1194309c0892e7c35263389e96ec58121e9a82e887c4c702c69b381b75fd5f4f21df6c33440a746db6a944963d9a22a05b23e53f7c818901591499dddffa0087 +docfiles size=247 RELOC/doc/latex/tikz-relay/BeamerAnimation.pdf details="Further documentation" RELOC/doc/latex/tikz-relay/BeamerAnimation.tex RELOC/doc/latex/tikz-relay/README.txt details="Readme" @@ -305020,7 +316717,7 @@ runfiles size=14 catalogue-ctan /graphics/pgf/contrib/tikz-relay catalogue-license lppl1 catalogue-topics pgf-tikz diagram diagram-circ engineering physics -catalogue-version 1.2 +catalogue-version 1.3 name tikz-sfc category Package @@ -305052,9 +316749,34 @@ catalogue-license lppl1 catalogue-topics pgf-tikz diagram diagram-circ diagram-flow engineering catalogue-version 1.0.1 +name tikz-swigs +category Package +revision 59889 +shortdesc Horizontally and vertically split elliptical nodes +relocated 1 +longdesc This package provides horizontally and vertically split +longdesc elliptical (pairs of) nodes in TikZ. The package name derives +longdesc from the fact that split ellipses of this type are used to +longdesc represent Single-World Intervention Graph (SWIG) models which +longdesc are used in counterfactual causal inference. +containersize 5740 +containerchecksum f1e10c9cc4625fd2e61113f7d5c1cd637efd35ab9b0ccb4308837af3e384ae412bf068140a0924b0bad29e305fd4ba5a0770fdc1467e82cf85dd8eea8289190a +doccontainersize 171860 +doccontainerchecksum 3ad431f150914461149b85fbc7ce05213c5176e6eaee553ecbf8d150644bc36fdcfa2d836e5201d9a8aecb58751eedd8b98a06ff305c60688766ce8dd00c817e +docfiles size=56 + RELOC/doc/latex/tikz-swigs/LICENSE + RELOC/doc/latex/tikz-swigs/README.md details="Readme" + RELOC/doc/latex/tikz-swigs/tikz-swigs.pdf details="Package documentation" + RELOC/doc/latex/tikz-swigs/tikz-swigs.tex +runfiles size=10 + RELOC/tex/latex/tikz-swigs/tikzlibraryswigs.code.tex +catalogue-ctan /graphics/pgf/contrib/tikz-swigs +catalogue-license lppl1.3c gpl +catalogue-topics pgf-tikz + name tikz-timing category Package -revision 56291 +revision 64967 shortdesc Easy generation of timing diagrams as TikZ pictures relocated 1 longdesc This package provides macros and an environment to generate @@ -305065,14 +316787,14 @@ longdesc tikzpictures. A tabular-like environment is provided to produce longdesc larger timing diagrams. depend svn-prov containersize 19084 -containerchecksum 7787480f873cc2c5e08c73a14c5f2965c57425ac223de41997727765f2c3f9693242e3f11d1cfe915d712153f64b7c47795134a98b3907569a12f468afa00617 +containerchecksum 2c3af958ff5509a470b4e1f93bdbb063f5b911a81de12d749fbd7dc6810715a473814d6d8694a81a49d2f45f1f468ef9d441fe07c2269c9c9a9094e350228b36 doccontainersize 468644 -doccontainerchecksum fea8cec1685740fd7a14ec94e5e7944ed3408ea34c852572ba8de5d97f38efdfe8f7f622ebd0c43cb04881d97e105891e509bd9ae49b64fa41b19497107fd0d9 +doccontainerchecksum 33ab52c8b2a60b9bad41a60375aa75432aea20a71c9fa7816d5dbc868e6a70b491dca9572d5c63ea486053294b6b709aa313de464e375e4f0a7a04f76764630a docfiles size=117 RELOC/doc/latex/tikz-timing/README details="Readme" RELOC/doc/latex/tikz-timing/tikz-timing.pdf details="Package documentation" srccontainersize 54980 -srccontainerchecksum e3b8567c0d8dba6e691bc9b67ca5850a1beeea2a27185eeb1522ed99387d0dda31a0f6e9d6013253230e21897d4579f06d6e6591947e8c433ca6f9bedb293427 +srccontainerchecksum f1c7c0be255d533898bd65e85f2a36b2f86abb6580b716cb239821a243f67a2706cbcfffb99628b060aadc9b56dfee45f66e54851861df2e0cf12e6cd331aa4e srcfiles size=71 RELOC/source/latex/tikz-timing/tikz-timing.dtx RELOC/source/latex/tikz-timing/tikz-timing.ins @@ -305090,41 +316812,50 @@ runfiles size=41 RELOC/tex/latex/tikz-timing/tikz-timing-overlays.sty RELOC/tex/latex/tikz-timing/tikz-timing.sty catalogue-also timing -catalogue-contact-bugs https://sourceforge.net/p/tikz-timing/tickets/ -catalogue-contact-home https://sourceforge.net/p/tikz-timing/ -catalogue-contact-repository https://sourceforge.net/p/tikz-timing/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/tikz-timing/issues +catalogue-contact-home https://github.com/MartinScharrer/tikz-timing +catalogue-contact-repository https://github.com/MartinScharrer/tikz-timing.git catalogue-ctan /graphics/pgf/contrib/tikz-timing catalogue-license lppl -catalogue-topics electronic diagram-tmg +catalogue-topics electronic diagram-tmg pgf-tikz catalogue-version 0.7f name tikz-trackschematic category Package -revision 57300 +revision 63480 shortdesc A TikZ library for creating track diagrams in railways relocated 1 longdesc This TikZ library is a toolbox of symbols geared primarily longdesc towards creating track schematic for either research or longdesc educational purposes. It provides a TikZ frontend to some of longdesc the symbols which may be needed to describe situations and -longdesc layouts in railway operation. The library is divided into four +longdesc layouts in railway operation. The library is divided into longdesc sublibraries: topology, trafficcontrol, vehicles, -longdesc constructions, and messures. This project has received funding -longdesc from the European Union's Horizon 2020 research and innovation -longdesc programme under grant agreement No. 826347. -containersize 15172 -containerchecksum 3936b79ad3e687002ea2d52ef03bcd468518bf67e24a9e6eb83e9c5379bc244dadb3acbefd3bbfdaa84a5811f32b89a7bdca2bde4861ef6bda2021e7ee289828 -doccontainersize 598032 -doccontainerchecksum 0fd357b0e571c0bb9b0954338ab45147748574143c01c413700d7bda39d0171f037eb207770fbde9b366618fe60f5cff82d17900295ec14322373f2fe0f919ea -docfiles size=329 +longdesc constructions, electrics, symbology, and measures. +containersize 15740 +containerchecksum 421966536c63307c7fe9c194ebd4d5f8a724f99b9baba20a44e867382b1c08f934c9e88d02d834221671ec6e18d392e6ef4595b5a7bec9a18da03b84bbe06a71 +doccontainersize 688904 +doccontainerchecksum f5d6c8b60da94b9471adb5faa8d159ed89a8ed4742049ae55da2aa615217215fa1334648c974e148031741fea1407b64297bea8f681cedc770ca13975cf289c9 +docfiles size=361 + RELOC/doc/latex/tikz-trackschematic/CHANGELOG.md + RELOC/doc/latex/tikz-trackschematic/CITATION.cff + RELOC/doc/latex/tikz-trackschematic/LICENSE RELOC/doc/latex/tikz-trackschematic/README.md details="Readme" RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-documentation.sty + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/minimal_working_example.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/minimal_working_example.png + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/minimal_working_example.tex RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.png RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_berg.tex RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.png RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-examples/station_chamstadt.tex RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets.pdf RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets.tex + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/balise_forward_with_signal.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/balise_switched.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/balises.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/bend_train.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_clearing_point_backward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/block_clearing_point_forward.tikz @@ -305167,12 +316898,13 @@ docfiles size=329 RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/friction_bufferstop_forward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/hectometer.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/hump.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/individual_balises.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/individual_balises_mixed.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/interlocking.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_double.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_double_full_closure.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_single.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/level_crossing_without_barrier.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/loop_transmitter.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/main_line.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/main_track.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/measure_line.tikz @@ -305216,6 +316948,7 @@ docfiles size=329 RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_marking.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_marking_with_turnout.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/track_number.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/trackloop.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_shape.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_berth_shape_bidirectional.tikz @@ -305238,14 +316971,6 @@ docfiles size=329 RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunt_mode_forward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunting_backward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/train_shunting_forward.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_backward.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_bidirectional.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_forward.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_bidirectional.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_forward.tikz - RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/transmitter_right_with_signal.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_left_position.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/turnout_left_backward_manually.tikz @@ -305274,22 +316999,26 @@ docfiles size=329 RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/view_point_forward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/wire_limit_backward.tikz RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-snippets/wire_limit_forward.tikz + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-symbology-table.pdf + RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic-symbology-table.tex RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic.pdf details="Package documentation" RELOC/doc/latex/tikz-trackschematic/tikz-trackschematic.tex -runfiles size=42 +runfiles size=43 RELOC/tex/latex/tikz-trackschematic/tikz-trackschematic.sty RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.constructions.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.electrics.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.measures.code.tex + RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.symbology.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.topology.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.trafficcontrol.code.tex RELOC/tex/latex/tikz-trackschematic/tikzlibrarytrackschematic.vehicles.code.tex -catalogue-contact-repository https://repository.ivev.bau.tu-bs.de/martin/tikz-trackschematic +catalogue-contact-home https://www.railtoolkit.org/projects/tikz-trackschematic/ +catalogue-contact-repository https://github.com/railtoolkit/tikz-trackschematic catalogue-ctan /graphics/pgf/contrib/tikz-trackschematic catalogue-license isc catalogue-topics pgf-tikz graphics diagram -catalogue-version 0.6 +catalogue-version 0.7.1 name tikz-truchet category Package @@ -305320,6 +317049,31 @@ catalogue-ctan /graphics/pgf/contrib/tikz-truchet catalogue-license mit catalogue-topics pgf-tikz +name tikzbricks +category Package +revision 63952 +shortdesc Drawing bricks with TikZ +relocated 1 +longdesc A small LaTeX package to draw bricks with TikZ. The user can +longdesc modify color, shape, and viewpoint. +containersize 2284 +containerchecksum 3ea07c2c6c3ac86d8fa0308e438956e70e2584f7995b3188904e7cce7d311ad0999635ce77c134046da711a723bd36b9602fb60c21a00970503f572baffb6967 +doccontainersize 268120 +doccontainerchecksum ab32949ad9502bea2ed2951db41029ef02672db38e7a28f02e90099dc1c1dc9b740f1539c3e7c9163b8da7dc2fb4eb21048ca17a0ce2366a364efe66e2a47609 +docfiles size=71 + RELOC/doc/latex/tikzbricks/README.md details="Readme" + RELOC/doc/latex/tikzbricks/tikzbricks-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzbricks/tikzbricks-doc.tex +runfiles size=2 + RELOC/tex/latex/tikzbricks/tikzbricks.sty +catalogue-also tikzducks tikzmarmots tikzlings +catalogue-contact-repository https://github.com/samcarter/tikzbricks +catalogue-contact-support https://github.com/samcarter/tikzbricks/issues +catalogue-ctan /graphics/pgf/contrib/tikzbricks +catalogue-license lppl1.3c +catalogue-topics amusements graphics pgf-tikz +catalogue-version 0.4 + name tikzcodeblocks category Package revision 54758 @@ -305383,6 +317137,43 @@ catalogue-license lppl1.3c catalogue-topics amusements graphics pgf-tikz catalogue-version 1.5 +name tikzfill +category Package +revision 63947 +shortdesc TikZ libraries for filling with images and patterns +relocated 1 +longdesc This is a collection of TikZ libraries which add further +longdesc options to fill TikZ paths with images and patterns. The +longdesc libraries comprise fillings with images from files and from +longdesc TikZ pictures. Also, patterns of hexagons and of rhombi are +longdesc provided. +containersize 4432 +containerchecksum f0c83eb9352dc6dd0aaf5e25ce340a5c586dfe600a620a0ff5b976f976361c35a68a71f78f675ce5f9fa61a1bc7a79f16a5813115e6f8b010fe18b0308d77ab1 +doccontainersize 622916 +doccontainerchecksum d1877f3e9035c27e750050367badfb4e0127706d0064c30ccf619673bdf403707e9509780a85bc6478a17b08d7bd7c84b302d863860941b85fdfcee7a7262c7c +docfiles size=192 + RELOC/doc/latex/tikzfill/CHANGES.md + RELOC/doc/latex/tikzfill/README.md details="Readme" + RELOC/doc/latex/tikzfill/tikzfill-doc.sty + RELOC/doc/latex/tikzfill/tikzfill.pdf details="Package documentation" + RELOC/doc/latex/tikzfill/tikzfill.tex +runfiles size=13 + RELOC/tex/latex/tikzfill/tikzfill-common.sty + RELOC/tex/latex/tikzfill/tikzfill.hexagon.sty + RELOC/tex/latex/tikzfill/tikzfill.image.sty + RELOC/tex/latex/tikzfill/tikzfill.rhombus.sty + RELOC/tex/latex/tikzfill/tikzfill.sty + RELOC/tex/latex/tikzfill/tikzlibraryfill.hexagon.code.tex + RELOC/tex/latex/tikzfill/tikzlibraryfill.image.code.tex + RELOC/tex/latex/tikzfill/tikzlibraryfill.rhombus.code.tex +catalogue-contact-bugs https://github.com/T-F-S/tikzfill/issues +catalogue-contact-home https://github.com/T-F-S/tikzfill +catalogue-contact-repository https://github.com/T-F-S/tikzfill.git +catalogue-ctan /graphics/pgf/contrib/tikzfill +catalogue-license lppl1.3 +catalogue-topics pgf-tikz expl3 +catalogue-version 1.0.0 + name tikzinclude category Package revision 28715 @@ -305411,28 +317202,31 @@ catalogue-version 1.0 name tikzlings category Package -revision 58885 +revision 63628 shortdesc A collection of cute little animals and similar creatures relocated 1 longdesc A collection of LaTeX packages for drawing cute little animals longdesc and similar creatures using TikZ. Currently, the following -longdesc TikZlings are included: anteater bear bee cat chicken coati -longdesc elephant hippo koala marmot mole mouse owl panda penguin pig -longdesc rhino sheep sloth snowman squirrel These little drawings can be -longdesc customized in many ways. -containersize 26652 -containerchecksum 8ca5c4857aff3c834f33ad9c4cfb207390ed7a701e7a296ea4b87a8141a380d3d2a868eed885bfb8d7d859b5229815a73c4a13ee64dc7c0ec0e1eca70f85e511 -doccontainersize 620576 -doccontainerchecksum 93000ade150553ff9cf0679a9d35a4b71ea27ef05856cc62a3466c8e7fe199a7912fb97fcabfe8d8546ea10a28c774a2598babf51f71616147b9300d5aceb404 -docfiles size=167 +longdesc TikZlings are included: anteater bat bear bee bug cat chicken +longdesc coati elephant hippo koala marmot mole mouse owl panda penguin +longdesc pig rhino sheep sloth snowman squirrel wolf These little +longdesc drawings can be customized in many ways. +containersize 33980 +containerchecksum c838782065c705dfd919708c281d97f1e399df4775ed1410473d392b0f1cd2c8e293cf608cdde5e3cc50a26c51ba6bff3c79b5e02216ae3d3318ab92cc0d6a11 +doccontainersize 691740 +doccontainerchecksum 0a728af74191084ad20d20ad2165bc7690ee805831541b5f2281117961fb9fa54e6f214a4ad570b63019fc8e7dae57c6a28ef37b18088a37f4fb4ca580c37b6b +docfiles size=182 RELOC/doc/latex/tikzlings/README.md details="Readme" RELOC/doc/latex/tikzlings/tikzlings-doc.pdf details="Package documentation" RELOC/doc/latex/tikzlings/tikzlings-doc.tex -runfiles size=74 +runfiles size=97 + RELOC/tex/latex/tikzlings/tikzlibrarytikzlings.code.tex RELOC/tex/latex/tikzlings/tikzlings-addons.sty RELOC/tex/latex/tikzlings/tikzlings-anteaters.sty + RELOC/tex/latex/tikzlings/tikzlings-bats.sty RELOC/tex/latex/tikzlings/tikzlings-bears.sty RELOC/tex/latex/tikzlings/tikzlings-bees.sty + RELOC/tex/latex/tikzlings/tikzlings-bugs.sty RELOC/tex/latex/tikzlings/tikzlings-cats.sty RELOC/tex/latex/tikzlings/tikzlings-chickens.sty RELOC/tex/latex/tikzlings/tikzlings-coatis.sty @@ -305452,37 +317246,40 @@ runfiles size=74 RELOC/tex/latex/tikzlings/tikzlings-sloths.sty RELOC/tex/latex/tikzlings/tikzlings-snowmen.sty RELOC/tex/latex/tikzlings/tikzlings-squirrels.sty + RELOC/tex/latex/tikzlings/tikzlings-wolves.sty RELOC/tex/latex/tikzlings/tikzlings.sty catalogue-also tikzducks tikzmarmots catalogue-contact-repository https://github.com/samcarter/tikzlings catalogue-contact-support https://github.com/samcarter/tikzlings/issues catalogue-ctan /graphics/pgf/contrib/tikzlings catalogue-license lppl1.3c -catalogue-topics amusements graphics pgf-tikz -catalogue-version 0.6 +catalogue-topics amusements graphics pgf-tikz expl3 +catalogue-version 1.0 name tikzmark category Package -revision 57843 +revision 64819 shortdesc Use TikZ's method of remembering a position on a page relocated 1 longdesc The tikzmark package defines a command to "remember" a position longdesc on a page for later (or earlier) use, primarily (but not longdesc exclusively) with TikZ. -containersize 5684 -containerchecksum 90cee203f0b752ecc316e6eb483bd49d18f88da96c6f1f764862ae3d6da6007d4b658b30bcbcfcefb6ed33f9ca9a6b025b805a1b763b26ded8b30831274d6c75 -doccontainersize 418444 -doccontainerchecksum 35029b622cf040dab6b6238badcb7f91cdd7e513386d0c34c5bc03845bbb698656abf35c865eb24a32c024f281bacd6ba5eb47ff33a0650eb8986a5698e33d9a -docfiles size=106 +containersize 8656 +containerchecksum 21196deccbed47e7bd2a95adbe92e197f1073afd26da98ab92494e46ab7cef325c6005d8bcdffaa53a42de440cdf10c5d20370fa0a5f43894defc1a01a284310 +doccontainersize 510816 +doccontainerchecksum c8222246f56882479a84f834b47332fa9a66d0dbb21ee3fb4018835aa9fcb26fa2204d70ca17d7c4609352648d76b1bcb4dd5a32eb7cb504035711643c944141 +docfiles size=129 RELOC/doc/latex/tikzmark/README details="Readme" RELOC/doc/latex/tikzmark/README.txt RELOC/doc/latex/tikzmark/tikzmark.pdf details="Package documentation" -srccontainersize 18632 -srccontainerchecksum ac77183d87d30e87021cde1a7b700ae6c39dc53f621552eee0b1190e1c200aa0a6cfa776320cac87fc3caddccdf518ac131c945a015d367baaecf89b6d218c48 -srcfiles size=18 +srccontainersize 26784 +srccontainerchecksum bb2a0a621379392d5741296ad90d7ea7eaeb73496363e42e9be44642254f7db2fe8318572c6a44b0d0536cd33a96952c7d860024ab6c1d2ff2a2b2d85d78a46a +srcfiles size=29 RELOC/source/latex/tikzmark/tikzmark.dtx -runfiles size=7 +runfiles size=14 RELOC/tex/latex/tikzmark/tikzlibrarytikzmark.code.tex + RELOC/tex/latex/tikzmark/tikzmarklibraryams.code.tex + RELOC/tex/latex/tikzmark/tikzmarklibraryhighlighting.code.tex RELOC/tex/latex/tikzmark/tikzmarklibrarylistings.code.tex catalogue-contact-bugs https://github.com/loopspace/tikzmark/issues catalogue-contact-home https://github.com/loopspace/tikzmark @@ -305490,7 +317287,7 @@ catalogue-contact-repository https://github.com/loopspace/tikzmark catalogue-ctan /graphics/pgf/contrib/tikzmark catalogue-license lppl1.3c catalogue-topics pgf-tikz graphics-supp -catalogue-version 1.10 +catalogue-version 1.15 name tikzmarmots category Package @@ -305570,29 +317367,29 @@ catalogue-version 1.0 name tikzpagenodes category Package -revision 56291 +revision 64967 shortdesc A single TikZ node for the whole page relocated 1 longdesc The package provides special PGF/TikZ nodes for the text, longdesc marginpar, footer and header area of the current page. They are longdesc inspired by the 'current page' node defined by PGF/TikZ itself. -containersize 1556 -containerchecksum b412599ab7288cf2bbbf4d3cd08a97b2a16932fce61ee9edd1b570345da29ee30d32482bc855f6929231331e758dea2a8f8973daa19f6dbd1863840bb6753876 +containersize 1548 +containerchecksum f8e3258505ccb31b677212034c3300d442fdae73a45c0dc6e7bc0837cd716caa778ef9410f37ca1bd87c647d9cff28ec3d0f35496c8d1a5f940ce9e602dff475 doccontainersize 251304 -doccontainerchecksum 411631a79232cc01cb918689b5fa030ca79b4c27f45419a4b06039a7a17222550a3f34a3c4e12b5168fd331987fa94ad862a6cd6b9bdd0831112e8682adbaf9b +doccontainerchecksum daa0cc0d2125a41a6748a2b94b5f399c05d06c28479e1f1bcd188a647ad72048e17f1f851193dbc35bff58f6ed9696a4aa9885fdebadad3996d1e2bc9fda6347 docfiles size=63 RELOC/doc/latex/tikzpagenodes/README details="Readme" RELOC/doc/latex/tikzpagenodes/tikzpagenodes.pdf details="Package documentation" srccontainersize 3692 -srccontainerchecksum 5c829f01396d69dce7399844935f0a3faa4d30f4b2262aa4c1dbac2543a2d3705534a05c1e9aedde03a5061f6d6f605a1dc6cc108b037d5a74301b8569446ca2 +srccontainerchecksum 285249f6a0316dbce7b28c41afbcee367a4c682c75d0d31cd6cbbb2fa9ce68813839584e6c74c765ee0e03c4dec115091c99a6509328e2b2e5089a6222b42bf9 srcfiles size=5 RELOC/source/latex/tikzpagenodes/tikzpagenodes.dtx RELOC/source/latex/tikzpagenodes/tikzpagenodes.ins runfiles size=2 RELOC/tex/latex/tikzpagenodes/tikzpagenodes.sty -catalogue-contact-bugs https://sourceforge.net/p/tikzpagenodes/tickets/ -catalogue-contact-home https://sourceforge.net/p/tikzpagenodes/ -catalogue-contact-repository https://sourceforge.net/p/tikzpagenodes/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/tikzpagenodes/issues +catalogue-contact-home https://github.com/MartinScharrer/tikzpagenodes +catalogue-contact-repository https://github.com/MartinScharrer/tikzpagenodes.git catalogue-ctan /graphics/pgf/contrib/tikzpagenodes catalogue-license lppl catalogue-topics graphics macro-supp pgf-tikz @@ -305683,6 +317480,54 @@ catalogue-license lppl catalogue-topics graphics-symb catalogue-version 1.0 +name tikzpingus +category Package +revision 64199 +shortdesc Penguins with TikZ +relocated 1 +longdesc tikzpingus is a package similar to tikzducks but with penguins +longdesc and a vast set of gadgets and extras (capable of changing the +longdesc wing-positions, body-types, and more). +containersize 32436 +containerchecksum 76955d19c6c492d07878fba272bf39572c322b5b261acf1f9bdb54cbd90130f9c09e80651270a20f7b7a2d08e20e89e11a5a5a19ef9af55cd233d3917a29b434 +doccontainersize 2656552 +doccontainerchecksum aad57b68e88499b8303cd3709c5b44322da793c085d584713fc6ead1278b0d07e2b89d7b8d53bd79eef5efe2aff2a98b6aed4b29ddd3c6704c2f6e3a4b8929d7 +docfiles size=885 + RELOC/doc/latex/tikzpingus/README.md details="Readme" + RELOC/doc/latex/tikzpingus/tikzpingus-doc.pdf details="Package documentation" + RELOC/doc/latex/tikzpingus/tikzpingus-doc.tex +runfiles size=61 + RELOC/makeindex/tikzpingus/indexstyle.ist + RELOC/tex/latex/tikzpingus/tikzpingus-christmas.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-cloak.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-devil.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-emotions.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-flags.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-formal.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-fun.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-glasses.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-hats.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-horse.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-magic.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-medieval.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-movement.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-safe.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-science-fiction.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-shirts.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-signs.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-sport.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus-technology.lib.tex + RELOC/tex/latex/tikzpingus/tikzpingus.sty +catalogue-contact-announce https://github.com/EagleoutIce/tikzpingus/releases +catalogue-contact-bugs https://github.com/EagleoutIce/tikzpingus/issues +catalogue-contact-home https://github.com/EagleoutIce/tikzpingus +catalogue-contact-repository https://github.com/EagleoutIce/tikzpingus +catalogue-contact-support https://github.com/EagleoutIce/tikzpingus/issues +catalogue-ctan /graphics/pgf/contrib/tikzpingus +catalogue-license gpl3 +catalogue-topics amusements graphics pgf-tikz +catalogue-version 1.0 + name tikzposter category Package revision 32732 @@ -305769,43 +317614,43 @@ catalogue-version 0.2.6 name tikzsymbols category Package -revision 49975 +revision 61300 shortdesc Some symbols created using TikZ relocated 1 longdesc The package provides various emoticons, cooking symbols and longdesc trees. -containersize 14016 -containerchecksum 6061fad290f71257b2496faabc1a11721518274964a18dc1d31d1e530de029c7418668444f868e6b660eea5d85bc440dbb7796fbf6cf181ec190ff34019b5aae -doccontainersize 541092 -doccontainerchecksum b688b3d4e2ec3352000b7bd8842736bbf52b10b5215725fba7970e048e4e823c0d522d753adf8c65be3ab6d1c091ab9b01b68922ba2796c012c4d948e3958f77 -docfiles size=134 +containersize 14852 +containerchecksum 4e1a479e6e238026dfbdcf152d63c8b67419919f74bffe3c259828a5ab6bec62955cfe5f5a7f407646fc2e5b742fd009280ec4a57cf708317bd9dad95a35a1b2 +doccontainersize 588256 +doccontainerchecksum 7219e48fc2407bd44992378b24c5a1fd0b9c1a9a9c408de2734966657f83735b8cda336d207e9d1593afe0fc58aff7d83213a9ca4be61201df98757e2e4ade75 +docfiles size=148 RELOC/doc/latex/tikzsymbols/README.md details="Readme" RELOC/doc/latex/tikzsymbols/tikzsymbols.pdf details="Package documentation" -srccontainersize 34300 -srccontainerchecksum c7a3d6290a1eb7da4fff7f7f9fb2ef4a8c128c742023da966444be2b662bd98a20e7d3d82ac77637caa0067c2b5ec5ddd84ca224bf793e5b65eb637e8ebbc814 -srcfiles size=50 +srccontainersize 38096 +srccontainerchecksum 546f813ef97e1c6d286b4c79e2320bae75e2d94e43d9a15b9d4c6786bab9027c2aa86ba1ff5f94149849f7c11834408106623929b732f8b54697dd7f2916df3c +srcfiles size=57 RELOC/source/latex/tikzsymbols/tikzsymbols.dtx RELOC/source/latex/tikzsymbols/tikzsymbols.ins -runfiles size=31 +runfiles size=33 RELOC/tex/latex/tikzsymbols/tikzsymbols.sty catalogue-contact-repository https://github.com/Vidabe/tikzsymbols catalogue-ctan /graphics/pgf/contrib/tikzsymbols catalogue-license lppl1.3c catalogue-topics graphics-symb pgf-tikz -catalogue-version 4.10c +catalogue-version 4.12a name tikztosvg category TLCore -revision 58737 +revision 60289 shortdesc A utility for rendering TikZ diagrams to SVG longdesc This package provides a shell script that calls XeTeX and longdesc pdf2svg to convert TikZ environments to SVG files. depend tikztosvg.ARCH -containersize 2012 -containerchecksum 826b6cc6489db99d4b7651afdaf68117840e8aab4a19235110128af63cf26108fe409fba341acd26ef1ce2ba6276d368bd00e83c7b5954b1937d50b4d3c3fe8e -doccontainersize 206532 -doccontainerchecksum 1418c505769ed1fe835f713cc546305a25b6a96a16a7e6dbf9938547824b59fbf4d638c9d40ec7ed1c23fb110ffb482062884eefdd432db1e57b9e567ac299a4 -docfiles size=66 +containersize 2052 +containerchecksum 0957b87c9a06771afab350de769e3fa9f97ec0aa09e4e740d0f916992948a65740a96446a0f8ac144273e94f228db2c6c0ddb22bd01ea9f0f66abe5adfe0125c +doccontainersize 213584 +doccontainerchecksum 3d90c0963c570a115390603bcd5f39a224a155faea8ac6eec511b9689ab98383386d3d6e92076129e0f704d69bd18da52cf2f89f5db024a4d5c34a75c1edf279 +docfiles size=67 texmf-dist/doc/man/man1/tikztosvg.1 texmf-dist/doc/man/man1/tikztosvg.man1.pdf texmf-dist/doc/support/tikztosvg/CHANGELOG.md @@ -305814,21 +317659,20 @@ docfiles size=66 texmf-dist/doc/support/tikztosvg/README.md details="Readme" texmf-dist/doc/support/tikztosvg/example.svg texmf-dist/doc/support/tikztosvg/example.tikz - texmf-dist/doc/support/tikztosvg/install.sh texmf-dist/doc/support/tikztosvg/man.adoc texmf-dist/doc/support/tikztosvg/tikztosvg.pdf details="Manual page (PDF)" runfiles size=2 texmf-dist/scripts/tikztosvg/tikztosvg catalogue-contact-announce https://lists.sr.ht/~pablo-pie/tikztosvg -catalogue-contact-bugs https://todo.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-bugs https://lists.sr.ht/~pablo-pie/tikztosvg catalogue-contact-development https://lists.sr.ht/~pablo-pie/tikztosvg catalogue-contact-home https://git.sr.ht/~pablo-pie/tikztosvg catalogue-contact-repository https://git.sr.ht/~pablo-pie/tikztosvg -catalogue-contact-support https://lists.sr.ht/~pablo-pie/tikztosvg +catalogue-contact-support https://todo.sr.ht/~pablo-pie/tikztosvg catalogue-ctan /support/tikztosvg catalogue-license gpl3 catalogue-topics cvt-other graphics pgf-tikz -catalogue-version 0.2.0 +catalogue-version 0.3.0 name tikztosvg.aarch64-linux category TLCore @@ -305866,15 +317710,6 @@ containerchecksum 86458720805200faaffbb0d759f263f468b6b9f8ca92e7864583382dc2dc0e binfiles arch=armhf-linux size=1 bin/armhf-linux/tikztosvg -name tikztosvg.i386-cygwin -category TLCore -revision 55132 -shortdesc i386-cygwin files of tikztosvg -containersize 336 -containerchecksum 53bd060afb4f14b300d452b2294502dbe81a9e42abef017e95530e5a44f328d3fbcfad1a74a8e295f37d8769fff852e49cf1e35fca5d0711483f08a6ae9037f4 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/tikztosvg - name tikztosvg.i386-freebsd category TLCore revision 55132 @@ -305965,6 +317800,40 @@ containerchecksum 5a66d2599fcfe52161b006775286412acc5f44d9e85bc9a817329eeef731cd binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/tikztosvg +name tikzviolinplots +category Package +revision 65687 +shortdesc Draws violin plots from data +relocated 1 +longdesc This package enables the user to draw violin plots, calculating +longdesc the kernel density estimation from the data and plotting the +longdesc resulting curve inside a tikzpicture environment. It supports +longdesc different kernels, and allows the user to either set the +longdesc bandwidth value for each plot or use a default value. +containersize 3764 +containerchecksum f77d790c2f2c7df0d60f181430d06e731186d87de12b941c9e3db3e75a94844737d1ea2e7af676c4be7af752abc16e25ed2ffa8afcca67e7b61ad7d57c7378f8 +doccontainersize 307980 +doccontainerchecksum 686ccad0fe4a07003eb0c73a18a7858c2489a203abab33fe4a51b285a6f887be01893c1c6247c773432371fa70fd4517acb1900d98105006351fe0840126dba8 +docfiles size=108 + RELOC/doc/latex/tikzviolinplots/AFR.csv + RELOC/doc/latex/tikzviolinplots/AMR.csv + RELOC/doc/latex/tikzviolinplots/EMR.csv + RELOC/doc/latex/tikzviolinplots/EUR.csv + RELOC/doc/latex/tikzviolinplots/LICENSE + RELOC/doc/latex/tikzviolinplots/README + RELOC/doc/latex/tikzviolinplots/README.md details="Readme" + RELOC/doc/latex/tikzviolinplots/SEAR.csv + RELOC/doc/latex/tikzviolinplots/WPR.csv + RELOC/doc/latex/tikzviolinplots/tikzviolinplots.pdf details="Package documentation" + RELOC/doc/latex/tikzviolinplots/tikzviolinplots.tex +runfiles size=5 + RELOC/tex/latex/tikzviolinplots/tikzviolinplots.sty +catalogue-contact-repository https://github.com/pedro-callil/tikzviolinplots +catalogue-ctan /graphics/pgf/contrib/tikzviolinplots +catalogue-license lppl1.3 +catalogue-topics statistics graphics graphics-plot pgf-tikz +catalogue-version 0.7.1 + name tile-graphic category Package revision 55325 @@ -306029,9 +317898,9 @@ catalogue-version 2.0 name times category Package -revision 35058 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -306044,8 +317913,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap utm.map -containersize 286928 -containerchecksum 252c933fb17ce2533f6e0f2b13a478d62223a596ee257937558c61e224c30753c157c92ed9d5ce3ced5ade0f5eb00ec15368fc75c10a182011312d6a0668911d +containersize 286904 +containerchecksum 06f93b823a6141a51554bbd682c128977676775b1c097f7787916c0c14b76d6e9c4041645003111d5a1b905de4faafde5b3efb61d9be9740b9627ab57f3f8eef runfiles size=335 RELOC/dvips/times/config.utm RELOC/fonts/afm/adobe/times/ptmb8a.afm @@ -306259,21 +318128,21 @@ catalogue-topics diagram-tmg name tinos category Package -revision 42882 +revision 64504 shortdesc Tinos fonts with LaTeX support relocated 1 longdesc Tinos, designed by Steve Matteson, is an innovative, refreshing longdesc serif design that is metrically compatible with Times New longdesc Roman. execute addMap tinos.map -containersize 3230744 -containerchecksum e8e8648d656cee747cae8eb5665fb8e1d327c9578b79a65b6d50cc1bbb428ed8ea81bd2332fb91af797383264d2fd9af9354be5a02a4721bbb7350051bcb2783 -doccontainersize 29264 -doccontainerchecksum 5c826e5a78001821396c0dce64c6becf9469c5b648d716ddbe899460242b67790f75d1a8a27973f450f1d7d7dba6ea672af5bca488209614fa72a7ff1a7aefb0 +containersize 3230740 +containerchecksum 4aa3fe0b958c38be33dc639343a14f6a6eb7f2ebe96d99c73a5294859bfb8d8b8e8f7b9e0a2fb10f7a5403a62d0422a180d798f4de40bdc2db883c683afbc4e8 +doccontainersize 29268 +doccontainerchecksum 68e7832d1774fd05eff79d2fb578c2d70a8f471f74f0772e81fd351fef493c22d37edcf8c1bca9c25a81830f88261ddc33d102f056f78ca0cceec51db98bed33 docfiles size=11 RELOC/doc/fonts/tinos/LICENSE.txt RELOC/doc/fonts/tinos/README details="Readme" - RELOC/doc/fonts/tinos/tinos-samples.pdf details="Package documentation" + RELOC/doc/fonts/tinos/tinos-samples.pdf details="Font samples" RELOC/doc/fonts/tinos/tinos-samples.tex runfiles size=1119 RELOC/fonts/enc/dvips/tinos/tns_27astb.enc @@ -306327,8 +318196,8 @@ runfiles size=1119 RELOC/tex/latex/tinos/TS1Tinos-TLF.fd RELOC/tex/latex/tinos/tinos.sty catalogue-ctan /fonts/tinos -catalogue-license apache2 -catalogue-topics font font-type1 font-virtual font-otf +catalogue-license apache2 lppl +catalogue-topics font font-body font-serif font-proportional font-type1 font-otf font-supp font-t1enc font-virtual name tipa category Package @@ -306652,7 +318521,7 @@ catalogue-version 1.3 name tipauni category Package -revision 59009 +revision 65817 shortdesc Producing Unicode characters with TIPA commands relocated 1 longdesc Package TIPA uses the T3 encoding for producing IPA characters. @@ -306666,34 +318535,36 @@ longdesc the font and many more. As this package needs the fontspec longdesc package for loading an IPA font, it needs to be compiled with longdesc XeLaTeX or LuaLaTeX. This package can also be viewed as an longdesc ASCII-based input method for producing IPA characters in -longdesc Unicode. It needs the Charis SIL font for printing IPA +longdesc Unicode. It needs the New Computer Modern font for printing IPA longdesc characters. -containersize 5032 -containerchecksum d4101c7c254f974c304eb051418e60fdf7efdb6b70221ac78c7e72073a6083dd1857991999fa5e4b8c32e577881e5005e60c909703a9e8753010c2c622db5c63 -doccontainersize 439696 -doccontainerchecksum 53d66f313364995d28420c1b9b15678cd7850b74e6b9525c2b6a34384893c426925392c3bb65e622f7f20b7fafcf0a831f510a41b49c96d87b26bb3cd3701241 -docfiles size=130 - RELOC/doc/latex/tipauni/COPYING +containersize 6744 +containerchecksum 4e628711f3f1efcf96787bd1ce489380a699c4f800edf79523c8d5929339db8ed2b7c2ba49a456bf71b8b280e006fc672ec186b92c35b83934adaa561ce9f296 +doccontainersize 286544 +doccontainerchecksum 9b4f7c48f48797bd4b40e3d823a0cc25f4edbaf1983067ec60ef1df6be58553c10438bca825c4315bee1098d57c8255e988b784660ab6c8ff9d34b11a42d3430 +docfiles size=98 RELOC/doc/latex/tipauni/README.txt details="Readme" - RELOC/doc/latex/tipauni/gfdl-tex.tex RELOC/doc/latex/tipauni/tipauni-commands.pdf details="Sample file" RELOC/doc/latex/tipauni/tipauni-commands.tex RELOC/doc/latex/tipauni/tipauni-example.pdf details="Example of use" RELOC/doc/latex/tipauni/tipauni-example.tex RELOC/doc/latex/tipauni/tipauni.pdf details="Package documentation" -srccontainersize 10100 -srccontainerchecksum 1eb29971351aafa3989d96b18c045a817584aab45c3754f2cc494b4099c7ce5991c059cafe00c0f97148097620286ee69e47c37c12796c85a749ea00b0ef50b1 -srcfiles size=11 +srccontainersize 14984 +srccontainerchecksum c7e8ced6797fe52d534c30e216bf1f8a1a6154a60623201ed13aabae07ab68a67b1f3bd62c7651e36a059db3742fad364a8ed4eb26f72b1846090f0887f25b06 +srcfiles size=16 RELOC/source/latex/tipauni/tipauni.dtx RELOC/source/latex/tipauni/tipauni.ins -runfiles size=5 +runfiles size=9 + RELOC/tex/latex/tipauni/tipauni-newcm-book.fontspec + RELOC/tex/latex/tipauni/tipauni-newcm-regular.fontspec RELOC/tex/latex/tipauni/tipauni.sty -catalogue-contact-bugs https://gitlab.com/niruvt/tipauni/-/issues -catalogue-contact-repository https://gitlab.com/niruvt/tipauni +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=tipauni +catalogue-contact-home https://puszcza.gnu.org.ua/projects/tipauni +catalogue-contact-repository https://git.gnu.org.ua/tipauni.git +catalogue-contact-support mailto:tipauni-help@gnu.org.ua catalogue-ctan /macros/unicodetex/latex/tipauni catalogue-license gpl3+ fdl catalogue-topics phonetic linguistic unicode -catalogue-version 0.1 +catalogue-version 0.7a name tipfr category Package @@ -306719,9 +318590,33 @@ catalogue-license lppl catalogue-topics pgf-tikz catalogue-version 1.5 +name tiscreen +category Package +revision 62602 +shortdesc Mimic the screen of older Texas Instruments calculators +relocated 1 +longdesc This package mimics the screen of older Texas Instruments dot +longdesc matrix display calculators, specifically the TI-82 STATS. It +longdesc relies on the lcd and xcolor packages. +containersize 3188 +containerchecksum 00682d70199d66b3f6a759a32a1cad6b14ef09eaa541cb0ef547d86fd512ffd525f2b53a8c1a7315462aed33148a0b769eea70c5c42213d0731a1034cd96d6d6 +doccontainersize 228132 +doccontainerchecksum 58add8332b25188cc4d7199cabc2ca49e3d08598f6ee2511bc525500b1ab0dd7cf8212d5310ee7fc803bf06c09e4c248eae6c52c52e0a3b3a6694ec1d36ec57f +docfiles size=62 + RELOC/doc/latex/tiscreen/README details="Readme" + RELOC/doc/latex/tiscreen/tiscreen-doc.pdf details="Package documentation" + RELOC/doc/latex/tiscreen/tiscreen-doc.tex +runfiles size=4 + RELOC/tex/latex/tiscreen/tiscreen.sty +catalogue-contact-bugs https://github.com/T3SQ8/tiscreen/issues +catalogue-contact-repository https://github.com/T3SQ8/tiscreen +catalogue-ctan /macros/latex/contrib/tiscreen +catalogue-license lppl1.3c +catalogue-topics graphics graphics-in-tex + name titlecaps category Package -revision 36170 +revision 63020 shortdesc Setting rich-text input into Titling Caps relocated 1 longdesc The package is intended for setting rich text into titling @@ -306732,11 +318627,11 @@ longdesc font changing commands that alter the appearance or size of the longdesc text. It allows a list of predesignated words to be protected longdesc as lower-cased, and also allows for titling exceptions of longdesc various sorts. -containersize 4148 -containerchecksum 683240554b79bbf4f7e4f31653c5c633e93c74d71dd26232587de4d0d8ea012d350d0d43d508e9e9d8be4369d4ea9df996283c818583e573d4bc5fc379e4da4c -doccontainersize 261184 -doccontainerchecksum 7025b5f9d53b65e228520a5e79fcbbf928ddc2f0fe071016a8c3726dca3e9b428b80749bce53438eb7a882a4660c2a10a4ee85e24ae5a26522b78d6a1dde4584 -docfiles size=74 +containersize 4248 +containerchecksum c9a91646115722f41a82e4010e2b95090447e66864e1b7cab57f24dd797e299568d3c5422b3974829112cd118c4e40a2b14c04eb0e141105fea7f6ef8358bf9c +doccontainersize 272576 +doccontainerchecksum 5b22152e9e3deedd0e6e19bff817030287b81849e76d0b926caec947e315e0ddef533cb911e0fd4f91346b0c6cd7cb87ac10f33c64e3dab6b70de09613949f1d +docfiles size=79 RELOC/doc/latex/titlecaps/README details="Readme" RELOC/doc/latex/titlecaps/titlecaps.pdf details="Package documentation" RELOC/doc/latex/titlecaps/titlecaps.tex @@ -306745,7 +318640,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/titlecaps catalogue-license lppl1.3 catalogue-topics typesetting -catalogue-version 1.2 +catalogue-version 1.3 name titlefoot category Package @@ -306838,7 +318733,7 @@ catalogue-version 3.1 name titlesec category Package -revision 52413 +revision 59845 shortdesc Select alternative section titles relocated 1 longdesc A package providing an interface to sectioning commands for @@ -306847,11 +318742,11 @@ longdesc to change the font of all headings with a single command, also longdesc providing simple one-step page styles. Also includes a package longdesc to change the page styles when there are floats in a page. You longdesc may assign headers/footers to individual floats, too. -containersize 19980 -containerchecksum bd1538a4596c55a6e0a542df5587f4466795a59ac55472340bcfc400670b79a04f0b141ad5705c826789ce0094fa4b106b5917f4232167a66047d8e6edd4998c -doccontainersize 657856 -doccontainerchecksum 34623133da534fa15d491f3ecfeb6ee6736a580c12577d7ef313efb341c97ffe1cfac49f4c94b90f8f519847bb7b0d37b003ee485c240d1dfab3b68426563dcc -docfiles size=184 +containersize 20028 +containerchecksum 50af3f379bedf55c3c53809dfa5dfa8fa4ed072e232dde83f4a257b12d7b4bf06f041eb6891b95fd0efdf9420a5d252cb9688c28b91161036eee7f45516a8b86 +doccontainersize 658700 +doccontainerchecksum 04ca9fb221b3c0c83ef5c3728b9a40eb46a4899b83837c90017c5436468c02740dfb861abb42e9987dabf63858730f4accbf060c67ee8954ed7481f334443798 +docfiles size=185 RELOC/doc/latex/titlesec/CHANGES.old RELOC/doc/latex/titlesec/README.md details="Readme" RELOC/doc/latex/titlesec/titleps.pdf @@ -306868,7 +318763,7 @@ catalogue-contact-repository https://github.com/jbezos/titlesec catalogue-ctan /macros/latex/contrib/titlesec catalogue-license mit catalogue-topics headings page-hf -catalogue-version 2.13 +catalogue-version 2.14 name titling category Package @@ -306902,22 +318797,23 @@ catalogue-version 2.1d name tkz-base category Package -revision 54758 +revision 66115 shortdesc Tools for drawing with a cartesian coordinate system relocated 1 longdesc The bundle is a set of packages, designed to give mathematics longdesc teachers (and students) easy access to programming of drawings longdesc with TikZ. -containersize 15292 -containerchecksum 9cba8d8d79c7cb01965660fee7913aeede3b0d2cc19bd7624982fc5854224f19f7dd2d2af0ba93c99b4f16827fb028564fcd9a1e9afed1988ce836188516f891 -doccontainersize 375376 -doccontainerchecksum c0393a07d50626349ff214bf8047bd6c20e14da3c036ca0ca277ce30a220bd52d2fa02cdb56d28733f9a69bd5f22d611f8b80dc130f6016cba46f4e889e0aaca -docfiles size=236 +containersize 16308 +containerchecksum 1bcee5c2d6ce967369dbd6fc7c55a69793410c2d1a4de6c66c79071a360c3a0889c014eaab27ac73c771424c0d0655cabe62f9e2514dc13de418c336ea09ef80 +doccontainersize 373140 +doccontainerchecksum 3c2f7a584b1580c4fe15a5945b45a912960bff6c25ad637be8a43ee82b752949e1228008179d7a311b6961b1d0d4aa08fc44daa02696d2fdcc51777512db80c7 +docfiles size=133 RELOC/doc/latex/tkz-base/README.md details="Readme" RELOC/doc/latex/tkz-base/TKZdoc-base-BB.tex RELOC/doc/latex/tkz-base/TKZdoc-base-axes.tex RELOC/doc/latex/tkz-base/TKZdoc-base-compilation.tex RELOC/doc/latex/tkz-base/TKZdoc-base-divers.tex + RELOC/doc/latex/tkz-base/TKZdoc-base-example.tex RELOC/doc/latex/tkz-base/TKZdoc-base-faq.tex RELOC/doc/latex/tkz-base/TKZdoc-base-grid.tex RELOC/doc/latex/tkz-base/TKZdoc-base-initialisation.tex @@ -306930,116 +318826,13 @@ docfiles size=236 RELOC/doc/latex/tkz-base/TKZdoc-base-rep.tex RELOC/doc/latex/tkz-base/TKZdoc-base-style.tex RELOC/doc/latex/tkz-base/TKZdoc-base-texte.tex - RELOC/doc/latex/tkz-base/TKZdoc-base.pdf details="Package documentation" language="fr" - RELOC/doc/latex/tkz-base/examples/preamble-standalone.ltx - RELOC/doc/latex/tkz-base/examples/tkzBase-10.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.3.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.4.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.5.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.6.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.7.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-10.9.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-12.1.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.1.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.3.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.3.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-13.4.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-14.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.2.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.3.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.4.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-15.5.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-16.1.4.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-16.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-3.1.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-4.1.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-4.2.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.1.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-5.2.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.4.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.5.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.1.6.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.10.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.10.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.11.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.4.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.5.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.6.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.7.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.8.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.2.9.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.3.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.7.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.8.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.8.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-6.9.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.10.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.11.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.4.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.5.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.6.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.7.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.8.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-7.0.9.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.1.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.10.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.10.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.11.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.12.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.12.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.13.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.0.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.2.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.3.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.4.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.5.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.5.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.6.3.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.7.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.7.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.8.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.8.2.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-8.9.1.tex - RELOC/doc/latex/tkz-base/examples/tkzBase-9.2.0.tex RELOC/doc/latex/tkz-base/tiger.pdf -runfiles size=29 + RELOC/doc/latex/tkz-base/tkz-base.pdf details="Package documentation" language="fr" +runfiles size=31 RELOC/tex/latex/tkz-base/tkz-base.cfg RELOC/tex/latex/tkz-base/tkz-base.sty RELOC/tex/latex/tkz-base/tkz-lib-marks.tex + RELOC/tex/latex/tkz-base/tkz-lib-shape.tex RELOC/tex/latex/tkz-base/tkz-obj-axes.tex RELOC/tex/latex/tkz-base/tkz-obj-grids.tex RELOC/tex/latex/tkz-base/tkz-obj-marks.tex @@ -307048,6 +318841,7 @@ runfiles size=29 RELOC/tex/latex/tkz-base/tkz-tools-BB.tex RELOC/tex/latex/tkz-base/tkz-tools-arith.tex RELOC/tex/latex/tkz-base/tkz-tools-base.tex + RELOC/tex/latex/tkz-base/tkz-tools-colors.tex RELOC/tex/latex/tkz-base/tkz-tools-misc.tex RELOC/tex/latex/tkz-base/tkz-tools-modules.tex RELOC/tex/latex/tkz-base/tkz-tools-print.tex @@ -307055,11 +318849,10 @@ runfiles size=29 RELOC/tex/latex/tkz-base/tkz-tools-utilities.tex catalogue-also pgf catalogue-contact-home http://altermundus.fr -catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-base -catalogue-license lppl1.3c +catalogue-license lppl1.3 catalogue-topics pgf-tikz -catalogue-version 3.06c +catalogue-version 4.2c name tkz-berge category Package @@ -307252,58 +319045,63 @@ catalogue-version 2.0 name tkz-doc category Package -revision 55265 +revision 66115 shortdesc Documentation macros for the TKZ series of packages relocated 1 longdesc This bundle offers a documentation class (tkz-doc) and a longdesc package (tkzexample). These files are used in the documentation longdesc of the author's packages tkz-base, tkz-euclide, tkz-fct, longdesc tkz-linknodes, and tkz-tab. -containersize 540 -containerchecksum 03f1706e638681889f5d50cad6f219c5887a1eee82408213b8406a14e6a4fa84222165df7780e10b24877fe3af0a1a750c9ac5b2f9e062e30add86343be9da07 -doccontainersize 8948 -doccontainerchecksum dbf27306bea25b1bd4ce945e65a2e45bafab8ea02e3f8fa14ade133fbc559cbcf767c7624a26edae402cce2ad3d61e693f0f742c8174f2d963d7128c2fc86c1c -docfiles size=10 +containersize 508 +containerchecksum db90dac3cf407685944f313f11d10e658c1372e4570bd2804dd8b85dd0084ca7b0516b9bf7204b2754390035c66a7ba4589160be49ae028629d4479a17134bfa +doccontainersize 40184 +doccontainerchecksum dc4f0a61593a28522935d83e294b22db9e950702da3405ce1cc689a826bd4791c1bb64b24c5bc6f8d7e2fecd7f767efb8932f50e0ec19cca54fc02a677f652f2 +docfiles size=19 RELOC/doc/latex/tkz-doc/README.md details="Readme" - RELOC/doc/latex/tkz-doc/latex/couverture.tex + RELOC/doc/latex/tkz-doc/doc/latex/tkz-doc.tex + RELOC/doc/latex/tkz-doc/doc/tkz-doc.pdf RELOC/doc/latex/tkz-doc/latex/tkz-doc.cfg RELOC/doc/latex/tkz-doc/latex/tkz-doc.cls - RELOC/doc/latex/tkz-doc/latex/tkzexample.sty catalogue-contact-home http://altermundus.fr -catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz-doc catalogue-license lppl1.3 catalogue-topics doc-supp class macro-demo -catalogue-version 1.43c +catalogue-version 1.45c name tkz-euclide category Package -revision 54758 +revision 65724 shortdesc Tools for drawing Euclidean geometry relocated 1 longdesc The tkz-euclide package is a set of files designed to give math longdesc teachers and students easy access to the programming of longdesc Euclidean geometry with TikZ. -containersize 27324 -containerchecksum c8a0e2c6411ae844575010d0f749ede9ab818de766794d60a62aafd306aa781ce09d252183c57a8d762e6655c7e7d1c2ba35b4f169261df6d65b8ebd833b091a -doccontainersize 1286992 -doccontainerchecksum aa8e10477798393dac1780bfa839faa36d9eb9f16bc34ad86aeefbffffaa1810ac3642058ead46be933e359f7a9e0fd0d7894226083095056910a233f017e3d7 -docfiles size=637 - RELOC/doc/latex/tkz-euclide/Euclidean_geometry.pdf - RELOC/doc/latex/tkz-euclide/README.md details="Readme" language="en" +containersize 41756 +containerchecksum 1abfcf9212823d7b739822a91a62bda260b6aa0d0293c6f67978796ef25e45c218743a1743388e2ae33ac7c7b9215ba9ac9cfcd7295a9a697f078842149f66bf +doccontainersize 1110880 +doccontainerchecksum 75b121c2634200e580339ee2266d6b6931c34d4217dfdbb146ecbdca8a4625c95348df8d4cdcfbdc69cc838cc0763e50a080f0945d714a42e8a8bf2caaf1976e +docfiles size=375 + RELOC/doc/latex/tkz-euclide/README.md details="Readme" RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-FAQ.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-angles.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-arcs.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-base.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-circleby.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-circles.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-clipping.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-compass.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-config.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-exemples.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-documentation.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-drawing.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-elements.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-examples.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-filling.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-installation.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-intersec.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-intersection.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-labelling.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-lines.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-lua.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-main.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-marking.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-news.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-others.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-pointby.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-points.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-pointsSpc.tex @@ -307312,295 +319110,74 @@ docfiles size=637 RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-presentation.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-rapporteur.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-rnd.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-sectors.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-show.tex + RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-styles.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-tools.tex RELOC/doc/latex/tkz-euclide/TKZdoc-euclide-triangles.tex - RELOC/doc/latex/tkz-euclide/TKZdoc-euclide.pdf details="Package documentation" language="en" - RELOC/doc/latex/tkz-euclide/cheatsheet_euclide_1.pdf - RELOC/doc/latex/tkz-euclide/cheatsheet_euclide_2.pdf - RELOC/doc/latex/tkz-euclide/examples/preamble-standalone.ltx - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.0.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.3.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-1.6.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.10.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.11.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.1.9.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-10.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.3.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.5.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-11.6.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-12.2.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.1.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-13.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.3.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-14.5.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-15.2.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-16.0.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.10.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.10.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.3.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.5.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.6.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.7.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.7.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.8.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.8.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-17.9.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.10.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-18.1.9.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.5.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-19.6.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.2.9.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-20.3.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-21.4.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.6.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-22.6.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-23.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.1.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.3.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.6.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.7.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-24.8.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.1.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.4.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.5.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-25.5.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-26.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-27.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-28.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-29.1.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-29.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.10.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.11.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.12.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-30.2.9.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.3.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.3.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-31.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.3.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-32.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.0.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.4.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-4.5.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-5.3.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-6.1.9.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-7.0.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-8.1.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-8.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.0.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.1.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.2.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.3.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.4.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.5.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.6.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.7.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.2.8.tex - RELOC/doc/latex/tkz-euclide/examples/tkzEuclide-9.3.1.tex -runfiles size=60 + RELOC/doc/latex/tkz-euclide/tkz-euclide.pdf details="Package documentation" +runfiles size=114 + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-circles.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-compass.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-lines.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-points.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-polygons.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-protractor.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-sectors.tex + RELOC/tex/latex/tkz-euclide/tkz-draw-eu-show.tex + RELOC/tex/latex/tkz-euclide/tkz-euclide.cfg RELOC/tex/latex/tkz-euclide/tkz-euclide.sty - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-angles.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-arcs.tex + RELOC/tex/latex/tkz-euclide/tkz-lib-eu-marks.tex + RELOC/tex/latex/tkz-euclide/tkz-lib-eu-shape.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-axesmin.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-circles-by.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-circles.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-compass.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-circles.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-lines.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-polygons.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-draw-triangles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-grids.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-lines.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-by.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-rnd.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-spc.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points-with.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-points.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-polygons.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-protractor.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-sectors.tex - RELOC/tex/latex/tkz-euclide/tkz-obj-eu-show.tex RELOC/tex/latex/tkz-euclide/tkz-obj-eu-triangles.tex - RELOC/tex/latex/tkz-euclide/tkz-tools-angles.tex - RELOC/tex/latex/tkz-euclide/tkz-tools-intersections.tex - RELOC/tex/latex/tkz-euclide/tkz-tools-math.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lua-circles.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lua-points-by.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lua-points-spc.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lua-points-with.tex + RELOC/tex/latex/tkz-euclide/tkz-obj-lua-points.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-BB.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-base.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-colors.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-intersections.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-math.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-modules.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-text.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-eu-utilities.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-lua-angles.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-lua-base.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-lua-intersections.tex + RELOC/tex/latex/tkz-euclide/tkz-tools-lua-math.tex catalogue-also eukleides pst-eucl -catalogue-contact-home http://altermundus.fr -catalogue-contact-repository https://github.com/tkz-sty/tkz-euclide +catalogue-contact-home https://altermundus.fr catalogue-ctan /macros/latex/contrib/tkz/tkz-euclide catalogue-license lppl1.3 -catalogue-topics maths graphics-use -catalogue-version 3.06c +catalogue-topics maths graphics-use use-luatex +catalogue-version 5.02c name tkz-fct category Package -revision 55031 +revision 61949 shortdesc Tools for drawing graphs of functions relocated 1 longdesc The tkz-fct package is designed to give math teachers (and longdesc students) easy access to programming graphs of functions with longdesc TikZ and gnuplot. -containersize 4948 -containerchecksum 6defbc1265838eacb6612f87d969590db6cb2eb0a1c9316c1f52e700c7b7e576f971080538982d7adccb12af6ce7392cb6d6da13a9d3e537e5af8fc2dc290a89 -doccontainersize 748476 -doccontainerchecksum 1cbfeac7939ba45c6111cc7cb9aeea195690cdfea8c75e488a9dac6a49b2968d21d0eff74e03fec3229afdcec92fe2841a8dbb866314187ef98a317f07e9f346 +containersize 4740 +containerchecksum ce605595518cb9b400a5b49620b5f359de8e0fefbc939d88b8f5aa2113a856ce05f4e9f56bb149c73e5f46c65d7d340a65edd6f1b55f6cca68b10dfaf7e04a87 +doccontainersize 749696 +doccontainerchecksum c2de4bd1cd9ebc5e0747608de7b1780ec97da00c512d3e1b2ce3150431c307c043f24b0bf1853d6c3e96203c33573322d66dbf0db7cd82f5b1a026ee5b7c6d77 docfiles size=216 RELOC/doc/latex/tkz-fct/README.md details="Readme" RELOC/doc/latex/tkz-fct/TKZdoc-fct-VDW.tex @@ -307616,7 +319193,6 @@ docfiles size=216 RELOC/doc/latex/tkz-fct/TKZdoc-fct-interpolation.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-label.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-liste.tex - RELOC/doc/latex/tkz-fct/TKZdoc-fct-main.pdf details="Package documentation" language="fr" RELOC/doc/latex/tkz-fct/TKZdoc-fct-main.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-param.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-point.tex @@ -307625,14 +319201,15 @@ docfiles size=216 RELOC/doc/latex/tkz-fct/TKZdoc-fct-symbol.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-tangent.tex RELOC/doc/latex/tkz-fct/TKZdoc-fct-why.tex -runfiles size=7 + RELOC/doc/latex/tkz-fct/tkz-fct.pdf details="Package documentation" language="fr" +runfiles size=6 RELOC/tex/latex/tkz-fct/tkz-fct.sty catalogue-also pgf catalogue-contact-home http://altermundus.fr catalogue-ctan /macros/latex/contrib/tkz/tkz-fct catalogue-license lppl1.3 catalogue-topics graphics graphics-plot pgf-tikz -catalogue-version 1.3c +catalogue-version 1.7c name tkz-graph category Package @@ -307673,15 +319250,15 @@ catalogue-version 2.0 name tkz-orm category Package -revision 54512 +revision 61719 shortdesc Create Object-Role Model (ORM) diagrams relocated 1 longdesc The package provides styles for drawing Object-Role Model (ORM) longdesc diagrams in TeX based on the PGF and TikZ picture environment. -containersize 7492 -containerchecksum dba6b58f1e3063d3af6d535c2c65d3ad0fe57f0b88aeca8684192b546d79570386cdea0d23870b5ac88f38b8ea0a9899efd1be581108b43ea16044749dcf965b -doccontainersize 431368 -doccontainerchecksum 65ac0e7657fd78d7d496b466d6cfae3bded966249d1c90eef6df1d34041b6b7ab5be807f7de41c04d28e6903748dc874fa245bce3b19b96d2a1f0d91316235b0 +containersize 7520 +containerchecksum 41263c9ad122a3cfce3eca3cd4ba8798e61ef662ebf7f00be99dd16a25b50f5419fb6c04a84bae6bd0ce2b349d4b3216a1a88c6e3d081d8a064ff561536a7e71 +doccontainersize 431372 +doccontainerchecksum ba9a6a67384478cbcf5b76f7148f60bb0f2f1932033f95945b28794f146d89b21e82c4d59b87735d46bacacd10c1ddca2b19e2e7ae4045a331383f4085a99221 docfiles size=120 RELOC/doc/latex/tkz-orm/LICENSE RELOC/doc/latex/tkz-orm/Makefile @@ -307692,7 +319269,8 @@ docfiles size=120 RELOC/doc/latex/tkz-orm/tkz-orm.tex runfiles size=10 RELOC/tex/latex/tkz-orm/tkz-orm.sty -catalogue-contact-home http://purl.org/net/tkz-orm +catalogue-contact-bugs https://github.com/nichtich/tkz-orm/issues +catalogue-contact-repository https://github.com/nichtich/tkz-orm catalogue-ctan /graphics/pgf/contrib/tkz-orm catalogue-license gpl2 lppl1.3 catalogue-topics diagram pgf-tikz @@ -307700,7 +319278,7 @@ catalogue-version 0.1.4 name tkz-tab category Package -revision 54940 +revision 66115 shortdesc Tables of signs and variations using PGF/TikZ relocated 1 longdesc The package provides comprehensive facilities for preparing @@ -307708,10 +319286,10 @@ longdesc lists of signs and variations, using PGF. The package longdesc documentation requires the tkz-doc bundle. This package has longdesc been taken temporarily out of circulation to give the author longdesc time to investigate some problems. -containersize 6540 -containerchecksum 1ba023dfe79db404930546277015a9fbdfcb9165d74548cd0d0d590338656913327d949b3d35f9325a5c928fc291f3e6c6485b69b6dc753aa633460e265b389c -doccontainersize 364176 -doccontainerchecksum eb941cbee957896dc19d4e7269f78a0d07d86b20cd0f0756241376da062386e3a99675b3fcd451aa153eb89668b98b486fa7d5b904a125a4e241d45b40b745ca +containersize 6516 +containerchecksum cfd37929060d7213d2294708a38a0ba9df8847b0539ae105ec99b4171083877714dbb19ba2ad5d89bd3ad474573f51e263f42b8bf9866cf010e30bf481f75861 +doccontainersize 364180 +doccontainerchecksum 6356829dfaa331e2e0af9edd044168e07bb8608c28ff386001cd06288da0a1517f7b1dc4bea31e1b06d0715620a4bac80a138bc1228a3ab15f88fa706a9c4b18 docfiles size=125 RELOC/doc/latex/tkz-tab/README.md details="Readme" RELOC/doc/latex/tkz-tab/TKZdoc-tab-adapt.tex @@ -307732,12 +319310,34 @@ runfiles size=12 RELOC/tex/latex/tkz-tab/tkz-tab.sty catalogue-also tableaux tableauvariations tablor tabvar catalogue-contact-home http://altermundus.fr -catalogue-contact-repository https://github.com/tkz-sty catalogue-ctan /macros/latex/contrib/tkz/tkz-tab catalogue-license lppl1.3 catalogue-topics maths maths-tabvar graphics pgf-tikz catalogue-version 2.12c +name tkzexample +category Package +revision 63908 +shortdesc Package for the documentation of all tkz-* packages +relocated 1 +longdesc This package is needed to compile the documentation of all +longdesc tkz-* packages (like tkz-euclide). +containersize 3872 +containerchecksum d312aa7220166853d5960301b1aac7917969d6cc3859bff6766d366836255cf46fa24f66ad3401243a0cd63b719428b848969bf66d51e5946f56e672eb10b353 +doccontainersize 96832 +doccontainerchecksum 30ad76a0efecf48067e2027eb713dc9af4ff1b0ac50e6c8dc2213a848a41e83d6f53aaf70f5db8654ac4d60b196dfa2ed465cc434010f5ad457bed8cad15f319 +docfiles size=31 + RELOC/doc/latex/tkzexample/README.md details="Readme" + RELOC/doc/latex/tkzexample/tkzexample.pdf + RELOC/doc/latex/tkzexample/tkzexample.tex +runfiles size=4 + RELOC/tex/latex/tkzexample/tkzexample.sty +catalogue-also tkz-doc +catalogue-ctan /macros/latex/contrib/tkz/tkzexample +catalogue-license lppl1.3 +catalogue-topics doc-supp macro-demo +catalogue-version 1.45c + name tlc-article category Package revision 51431 @@ -308663,6 +320263,1586 @@ catalogue-ctan /info/examples/tlc2 catalogue-license lppl catalogue-topics book-ex +name tlc3-examples +category Package +revision 65496 +shortdesc All examples from "The LaTeX Companion", third edition +relocated 1 +longdesc The PDFs (as used with spotcolor and trimming) and sources for +longdesc all examples from the third edition (Parts I+II), together with +longdesc necessary supporting files. The edition is published by +longdesc Addison-Wesley, 2023, ISBN-13: 978-0-13-816648-9, ISBN-10: +longdesc 0-13-816648-X (bundle of Part I & II). +containersize 588 +containerchecksum 2bdb38f294d1737c73068fa9d768d9a8f96ae858d400f1f8b651c4c51427bdb0e4d623fb8b9b0c0ab2adfe8d55fe472ffa4a27e7064b51528f3eb03ace111a06 +doccontainersize 1878976 +doccontainerchecksum b5bbeccc60b9754e888a0ce457cb88f5c86a6b20c3cdc7850d28c85c409057391355551a97e49bc964521c3b4b498927b499e21bfdcaf15b8b8266c7316ebd11 +docfiles size=2032 + RELOC/doc/latex/tlc3-examples/README.TEXLIVE + RELOC/doc/latex/tlc3-examples/README.md + RELOC/doc/latex/tlc3-examples/example-sources/1-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/1-3-2.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/1-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/1-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/1-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/1-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-10-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-11-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-12-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-12-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-12-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-13-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-8-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-8-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-9-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-9-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-9-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/10-9-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-6-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-6-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-7-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/11-8-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-1-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-10-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-11-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-12-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-13-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-14-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-15-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-16-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-17-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-18-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-19-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-2-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-20-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-21-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-22-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-23-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-24-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-25-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-26-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-27-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-28-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-29-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-3-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-30-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-31-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-32-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-33-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-34-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-35-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-36-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-37-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-38-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-39-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-4-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-40-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-41-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-42-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-43-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-44-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-45-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-46-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-47-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-48-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-49-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-5-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-50-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-51-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-52-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-6-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-7-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-8-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/12-9-fig.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-12.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/13-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/13-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-100.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-101.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-102.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-103.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-104.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-105.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-106.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-107.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-108.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-109.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-110.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-111.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-112.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-113.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-114.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-115.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-116.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-117.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-118.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-119.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-120.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-121.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-122.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-123.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-124.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-125.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-126.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-127.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-128.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-129.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-130.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-131.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-132.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-133.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-134.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-135.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-136.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-137.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-138.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-139.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-140.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-141.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-48.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-49.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-50.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-51.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-52.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-53.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-54.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-55.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-56.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-57.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-58.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-59.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-60.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-61.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-62.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-63.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-64.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-65.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-66.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-67.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-68.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-69.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-70.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-71.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-72.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-73.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-74.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-75.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-76.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-77.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-78.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-79.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-80.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-81.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-82.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-83.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-84.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-85.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-86.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-87.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-88.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-89.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-90.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-91.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-92.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-93.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-94.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-95.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-96.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-97.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-98.ltx + RELOC/doc/latex/tlc3-examples/example-sources/15-7-99.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-24.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-5-25.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-5-26.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-5-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-29.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-48.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-49.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-50.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-51.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-52.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-53.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-54.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-6-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-30.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-7-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-7-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-8-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-8-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-8-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-8-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/16-8-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/16-8-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/17-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/17-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-17.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/2-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/2-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-12.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/2-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/2-4-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/2-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/2-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-1-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-13.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-14.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-24.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-25.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-26.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-30.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-31.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-33.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-42.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-48.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-5-8.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-13.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/3-6-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/3-6-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-48.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-49.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-50.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-51.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-52.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-53.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-54.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-55.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-1-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-37.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-38.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-39.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-40.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-41.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-42.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-43.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-44.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-45.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-46.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-47.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-48.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-49.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-50.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-51.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-52.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-53.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-54.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-55.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-56.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-57.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-58.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-59.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-60.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-61.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-30.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-31.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-32.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-33.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-34.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-35.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-36.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/4-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-2-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-2-9.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-3-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-3-2.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-3-3.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-3-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-10.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-11.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-12.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-14.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-15.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-16.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-4-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-8.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-4-9.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-5-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-5-2.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/5-6-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-2.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-3.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-8.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/5-6-9.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-4-1.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-2.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-3.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-4-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-4-8.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/6-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-6-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-7-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-8-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-8-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/6-9-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-4.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-3-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-17.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-4-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/7-5-6.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-5-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-5-8.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/7-5-9.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/8-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-1-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-15.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/8-4-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-22.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/8-4-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-29.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-4-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/8-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-4-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-22.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-23.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-24.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-25.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-26.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-27.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-28.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-6-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-7-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-7-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/9-7-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-1-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-2-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-10.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-11.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-12.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-13.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-14.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-15.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-16.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-17.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-18.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-19.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-20.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-21.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-7.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-3-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-4-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-4-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-4-5.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/A-4-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-3.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-4.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-5.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-6.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-7.ltx2 + RELOC/doc/latex/tlc3-examples/example-sources/A-5-8.ltx + RELOC/doc/latex/tlc3-examples/example-sources/A-5-9.ltx + RELOC/doc/latex/tlc3-examples/example-sources/B-4-1.ltx + RELOC/doc/latex/tlc3-examples/example-sources/B-4-2.ltx + RELOC/doc/latex/tlc3-examples/example-sources/Escher.pdf + RELOC/doc/latex/tlc3-examples/example-sources/I.pdf + RELOC/doc/latex/tlc3-examples/example-sources/cat.pdf + RELOC/doc/latex/tlc3-examples/example-sources/elephant.pdf + RELOC/doc/latex/tlc3-examples/example-sources/latex-logo.pdf + RELOC/doc/latex/tlc3-examples/example-sources/layout-tlc3-special.sty + RELOC/doc/latex/tlc3-examples/example-sources/locale.bib + RELOC/doc/latex/tlc3-examples/example-sources/longlife-grayscale.jpg + RELOC/doc/latex/tlc3-examples/example-sources/longlife.jpg + RELOC/doc/latex/tlc3-examples/example-sources/partial.toc + RELOC/doc/latex/tlc3-examples/example-sources/phaip.bst + RELOC/doc/latex/tlc3-examples/example-sources/rosette.pdf + RELOC/doc/latex/tlc3-examples/example-sources/showhyphenation-tlc3-spotcolor.lua + RELOC/doc/latex/tlc3-examples/example-sources/tlc-biblatex-special.bib + RELOC/doc/latex/tlc3-examples/example-sources/tlc-ex.bib + RELOC/doc/latex/tlc3-examples/example-sources/tlc-jura.bib + RELOC/doc/latex/tlc3-examples/example-sources/tlc-tex.bib + RELOC/doc/latex/tlc3-examples/example-sources/tlc.bib + RELOC/doc/latex/tlc3-examples/example-sources/tlc3exa.cls + RELOC/doc/latex/tlc3-examples/example-sources/tlc3examargin.cls + RELOC/doc/latex/tlc3-examples/example-sources/tlc3exareport.cls +catalogue-contact-bugs https://github.com/FrankMittelbach/tlc3-examples/issues +catalogue-contact-repository https://github.com/FrankMittelbach/tlc3-examples +catalogue-ctan /info/examples/tlc3 +catalogue-license lppl1.3c +catalogue-topics book-ex + name tlcockpit category Package revision 54857 @@ -308769,15 +321949,6 @@ containerchecksum 14c7851b3b61b6e219c35e18d5f17fddbe9bbabc1c9b8a56be16d627cc3ad9 binfiles arch=armhf-linux size=1 bin/armhf-linux/tlcockpit -name tlcockpit.i386-cygwin -category Package -revision 46798 -shortdesc i386-cygwin files of tlcockpit -containersize 340 -containerchecksum 93de942c9f8ec6732a7baedcbf79b181e69c520fb2a558d2f7ae3f98376e8a2f8e67418ce9affb39dce89b11c14235d62f04c20a43b2660782e4e5f903b9b96f -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/tlcockpit - name tlcockpit.i386-freebsd category Package revision 46798 @@ -308823,14 +321994,14 @@ containerchecksum 7dca5097a03d570f163758a661b01b712ba509ce6624ba5ff90a887ded49c9 binfiles arch=universal-darwin size=1 bin/universal-darwin/tlcockpit -name tlcockpit.win32 +name tlcockpit.windows category Package -revision 51610 -shortdesc win32 files of tlcockpit -containersize 5020 -containerchecksum 8cb13092144b3983ac7519d9a5ecdf90ea3db0af79750b4603b5ddde305a2383aac08745ee83359073f75f15bb912a591f9b895861a845ff10f18e371e4e2e2a -binfiles arch=win32 size=3 - bin/win32/tlcockpit.exe +revision 66270 +shortdesc windows files of tlcockpit +containersize 17636 +containerchecksum ba1a20899ef69ced6adb43432f369ba2cec2e948cba66f409f6199a90d5d3fdc87e7bc7fc80a982f677b3a315aa6658a9fd007b8c021abb8a2f17180d3b6b51a +binfiles arch=windows size=6 + bin/windows/tlcockpit.exe name tlcockpit.x86_64-cygwin category Package @@ -308877,9 +322048,9 @@ containerchecksum 5c874fddba271b59aec6f3addf78f303735ed2c5ea6dac0cb34c5a15973cf1 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/tlcockpit -name tlgs.win32 +name tlgs.windows category TLCore -revision 58969 +revision 65952 catalogue ghostscript shortdesc Freely available PostScript interpreter longdesc Ghostscript is a freely available PostScript interpreter which @@ -308888,28 +322059,20 @@ longdesc complement to a TeX installation, used in many utilities, longdesc including PostScript/PDF viewers such as gv and GSview. longdesc Ghostscript is no longer held on CTAN: please see the home page longdesc for downloads. -containersize 8007124 -containerchecksum 84c611d0d6a7b6c51f7f19ad09d62fce62b785c9226024a35b84b6ea9eeb806bd6d949e5178c216d5b27abec7a0ea46c41eea72b2b10181d759ece202fc51c15 -binfiles arch=win32 size=7047 - bin/win32/eps2eps.exe - bin/win32/pdf2dsc.exe - bin/win32/pdfopt.exe - bin/win32/ps2ascii.exe - bin/win32/ps2pdf.exe - bin/win32/ps2pdf12.exe - bin/win32/ps2pdf13.exe - bin/win32/ps2pdf14.exe - bin/win32/ps2ps.exe - bin/win32/ps2ps2.exe - texmf-dist/scripts/tlgs/gswin32/eps2eps.tlu - texmf-dist/scripts/tlgs/gswin32/pdf2dsc.tlu - texmf-dist/scripts/tlgs/gswin32/pdfopt.tlu - texmf-dist/scripts/tlgs/gswin32/ps2ascii.tlu - texmf-dist/scripts/tlgs/gswin32/ps2pdf.tlu - texmf-dist/scripts/tlgs/gswin32/ps2pdf12.tlu - texmf-dist/scripts/tlgs/gswin32/ps2pdf13.tlu - texmf-dist/scripts/tlgs/gswin32/ps2pdf14.tlu - texmf-dist/scripts/tlgs/gswin32/ps2ps.tlu +containersize 12447212 +containerchecksum 95bbf70afb15b47eabdcdb82037e3a98396fa168c4afa118311b2fa2991b9859feca64158a2ed3eff6a1e57e7bbe1e832bb17a69b263cecbc1519257c8398725 +runfiles size=11978 + texmf-dist/scripts/tlgs/eps2eps.lua + texmf-dist/scripts/tlgs/pdf2dsc.lua + texmf-dist/scripts/tlgs/pdf2ps.lua + texmf-dist/scripts/tlgs/pdfopt.lua + texmf-dist/scripts/tlgs/ps2ascii.lua + texmf-dist/scripts/tlgs/ps2pdf.lua + texmf-dist/scripts/tlgs/ps2pdf12.lua + texmf-dist/scripts/tlgs/ps2pdf13.lua + texmf-dist/scripts/tlgs/ps2pdf14.lua + texmf-dist/scripts/tlgs/ps2ps.lua + texmf-dist/scripts/tlgs/tlgs-common tlpkg/tlgs/COPYING tlpkg/tlgs/README.TEXLIVE tlpkg/tlgs/Resource/CIDFSubst/DroidSansFallback.ttf @@ -309178,8 +322341,12 @@ binfiles arch=win32 size=7047 tlpkg/tlgs/Resource/SubstCID/Korea1-WMode tlpkg/tlgs/bin/gsdll32.dll tlpkg/tlgs/bin/gsdll32.lib + tlpkg/tlgs/bin/gsdll64.dll + tlpkg/tlgs/bin/gsdll64.lib tlpkg/tlgs/bin/gswin32.exe tlpkg/tlgs/bin/gswin32c.exe + tlpkg/tlgs/bin/gswin64.exe + tlpkg/tlgs/bin/gswin64c.exe tlpkg/tlgs/fonts/COPYING tlpkg/tlgs/fonts/LICENSE-utopia.txt tlpkg/tlgs/fonts/README-utopia.txt @@ -309305,6 +322472,7 @@ binfiles arch=win32 size=7047 tlpkg/tlgs/kanji/vchars.ps tlpkg/tlgs/kanji/vchars1.ps tlpkg/tlgs/lib/Fontmap + tlpkg/tlgs/lib/Fontmap.GS tlpkg/tlgs/lib/Fontmap.TeXLive tlpkg/tlgs/lib/PDFA_def.ps tlpkg/tlgs/lib/PDFX_def.ps @@ -309362,22 +322530,33 @@ binfiles arch=win32 size=7047 tlpkg/tlgs/lib/winmaps.ps tlpkg/tlgs/lib/zeroline.ps tlpkg/tlgs/lib/zugferd.ps +binfiles arch=windows size=20 + bin/windows/eps2eps.exe + bin/windows/pdf2dsc.exe + bin/windows/pdf2ps.exe + bin/windows/pdfopt.exe + bin/windows/ps2ascii.exe + bin/windows/ps2pdf.exe + bin/windows/ps2pdf12.exe + bin/windows/ps2pdf13.exe + bin/windows/ps2pdf14.exe + bin/windows/ps2ps.exe catalogue-contact-home http://www.ghostscript.com/ catalogue-license collection catalogue-topics graphics-prep name tlmgr-intro-zh-cn category Package -revision 59087 +revision 59100 shortdesc A short tutorial on using tlmgr in Chinese relocated 1 longdesc This is a Chinese translation of the tlmgr documentation. It longdesc introduces some of the common usage of the TeX Live Manager. longdesc The original can be found in the tlmgrbasics package. containersize 492 -containerchecksum 6c73e523aca2cd703812b2f0ebe009ca8be1b3e687517e1dd3af9ab03bfe042dfe4aaf0570c131e8d976e77b73fade2676b07062cd310700b7e2a2a17048c509 -doccontainersize 444372 -doccontainerchecksum c17b1125ebf88c0b17782da85a788a8679ceb19b00c82df6398c44847339ff037481c062ced8eb11f28c14908e4606c85e414dde85d388fd62a9ec69a65438bd +containerchecksum a89c2f99ad63c8352462ef7139b36e8563e1db815dcb06bd2e0f8b96554c380b574f7d856aa6bffb3c972bd68e9505d7864d87cfb7bcfef1bdebacd10f14a96a +doccontainersize 444724 +doccontainerchecksum 2b5a7672c600eb2f4cbfb2810090e4383a7032d851f35a74e36c75914d9813566603019f232715e2e39ab6d2f8a60273c01e5cbdcb345892b0bf8c99995e3d4d docfiles size=131 RELOC/doc/support/tlmgr-intro-zh-cn/LICENSE RELOC/doc/support/tlmgr-intro-zh-cn/README.md details="Readme" language="zh" @@ -309402,17 +322581,17 @@ catalogue-topics chinese-doc name tlmgrbasics category Package -revision 58974 +revision 66271 shortdesc A simplified documentation for tlmgr relocated 1 longdesc This package provides simplified documentation for tlmgr, the longdesc TeX Live Manager. It describes the most commonly-used actions longdesc and options in a convenient format. -containersize 428 -containerchecksum d9acced3178fd2d81208b7b135decdff9bdadb719bf6e6139d1b0bf145c770659bbd9502d5ef6c517d8f69f3f806e0561d48ac8997ce3ce74debdb9ae3a527e1 -doccontainersize 151008 -doccontainerchecksum 3f5076aa8326467032eba7189bd6d5aa4b6797a21afef633974855654a64fe4e2d5502e7514092c1f1719dc982f8d19f02e514b1ba2023e72fcc8919e3dd05ac -docfiles size=43 +containersize 424 +containerchecksum 280da0e11ee5361c6eaa0d82d649f159fdac6b2139e4898ebf1ee0298fa2370d2853999dabb7a8da891f4fdd450d2b788ace3732d0c2258eb9484bacbeedefe9 +doccontainersize 162712 +doccontainerchecksum 03f4efc7034d60be4a44006efa56b50fbfd67b034769b8ca79ef091ef0b56d0b4d2a937ad116d99899054a9b5e5808790fee55aedaee176382b202eadd803933 +docfiles size=46 RELOC/doc/support/tlmgrbasics/README details="Readme" RELOC/doc/support/tlmgrbasics/tlmgr.pdf details="The document itself" RELOC/doc/support/tlmgrbasics/tlmgr.tex @@ -309420,23 +322599,24 @@ catalogue-ctan /info/tlmgrbasics catalogue-license gpl2+ catalogue-topics install-mgmt documentation -name tlperl.win32 +name tlperl.windows category TLCore -revision 58075 +revision 65955 shortdesc internal Perl for Windows longdesc TeX Live includes Perl for Windows, but it is intended only for longdesc internal use by TeX Live programs, and should not be used as a longdesc general system program. Install your own Perl for that. See longdesc http://perl.org. -containersize 7177228 -containerchecksum 72620df957aac7638e6990f7e3449258d81c81e41b977af60712bc681563e5cfa6724de22cfbe984f7f9fd5180692308e8e00a06c766b16bc8ec82d2c7d97809 -runfiles size=11140 +containersize 7256728 +containerchecksum 6cdf426c6991973168065cf51b827124eb0efe9572dfb5e3b01594c18a4bfac1ab6f40140f6e93ab3e3ac4f92469bc9d7d27f73110db10b4d4d86dfd040ff36d +runfiles size=11890 tlpkg/tlperl/README.TEXLIVE - tlpkg/tlperl/bin/libgcc_s_dw2-1.dll + tlpkg/tlperl/bin/libgcc_s_seh-1.dll tlpkg/tlperl/bin/libstdc++-6.dll tlpkg/tlperl/bin/libwinpthread-1.dll tlpkg/tlperl/bin/perl.exe - tlpkg/tlperl/bin/perl532.dll + tlpkg/tlperl/bin/perl5.34.0.exe + tlpkg/tlperl/bin/perl534.dll tlpkg/tlperl/bin/perlglob.exe tlpkg/tlperl/bin/wperl.exe tlpkg/tlperl/lib/.packlist @@ -309491,7 +322671,7 @@ runfiles size=11140 tlpkg/tlperl/lib/CORE/iperlsys.h tlpkg/tlperl/lib/CORE/keywords.h tlpkg/tlperl/lib/CORE/l1_char_class_tab.h - tlpkg/tlperl/lib/CORE/libperl532.a + tlpkg/tlperl/lib/CORE/libperl534.a tlpkg/tlperl/lib/CORE/malloc_ctl.h tlpkg/tlperl/lib/CORE/metaconfig.h tlpkg/tlperl/lib/CORE/mg.h @@ -309512,6 +322692,7 @@ runfiles size=11140 tlpkg/tlperl/lib/CORE/perl.h tlpkg/tlperl/lib/CORE/perl_inc_macro.h tlpkg/tlperl/lib/CORE/perl_langinfo.h + tlpkg/tlperl/lib/CORE/perl_siphash.h tlpkg/tlperl/lib/CORE/perlapi.h tlpkg/tlperl/lib/CORE/perlhost.h tlpkg/tlperl/lib/CORE/perlio.h @@ -309529,7 +322710,6 @@ runfiles size=11140 tlpkg/tlperl/lib/CORE/regnodes.h tlpkg/tlperl/lib/CORE/sbox32_hash.h tlpkg/tlperl/lib/CORE/scope.h - tlpkg/tlperl/lib/CORE/stadtx_hash.h tlpkg/tlperl/lib/CORE/sv.h tlpkg/tlperl/lib/CORE/sys/errno2.h tlpkg/tlperl/lib/CORE/sys/socket.h @@ -309714,6 +322894,7 @@ runfiles size=11140 tlpkg/tlperl/lib/ExtUtils/MM_MacOS.pm tlpkg/tlperl/lib/ExtUtils/MM_NW5.pm tlpkg/tlperl/lib/ExtUtils/MM_OS2.pm + tlpkg/tlperl/lib/ExtUtils/MM_OS390.pm tlpkg/tlperl/lib/ExtUtils/MM_QNX.pm tlpkg/tlperl/lib/ExtUtils/MM_UWIN.pm tlpkg/tlperl/lib/ExtUtils/MM_Unix.pm @@ -309732,6 +322913,7 @@ runfiles size=11140 tlpkg/tlperl/lib/ExtUtils/Miniperl.pm tlpkg/tlperl/lib/ExtUtils/Mkbootstrap.pm tlpkg/tlperl/lib/ExtUtils/Mksymlists.pm + tlpkg/tlperl/lib/ExtUtils/PL2Bat.pm tlpkg/tlperl/lib/ExtUtils/Packlist.pm tlpkg/tlperl/lib/ExtUtils/ParseXS.pm tlpkg/tlperl/lib/ExtUtils/ParseXS.pod @@ -310036,6 +323218,11 @@ runfiles size=11140 tlpkg/tlperl/lib/Test2/API/Breakage.pm tlpkg/tlperl/lib/Test2/API/Context.pm tlpkg/tlperl/lib/Test2/API/Instance.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Event.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Facet.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Hub.pm + tlpkg/tlperl/lib/Test2/API/InterceptResult/Squasher.pm tlpkg/tlperl/lib/Test2/API/Stack.pm tlpkg/tlperl/lib/Test2/Event.pm tlpkg/tlperl/lib/Test2/Event/Bail.pm @@ -310985,7 +324172,6 @@ runfiles size=11140 tlpkg/tlperl/site/lib/Net/HTTP/Methods.pm tlpkg/tlperl/site/lib/Net/HTTP/NB.pm tlpkg/tlperl/site/lib/Net/HTTPS.pm - tlpkg/tlperl/site/lib/Socket.pm tlpkg/tlperl/site/lib/Test/Fatal.pm tlpkg/tlperl/site/lib/Test/Needs.pm tlpkg/tlperl/site/lib/Test/RequiresInternet.pm @@ -311031,6 +324217,7 @@ runfiles size=11140 tlpkg/tlperl/site/lib/URI/mms.pm tlpkg/tlperl/site/lib/URI/news.pm tlpkg/tlperl/site/lib/URI/nntp.pm + tlpkg/tlperl/site/lib/URI/nntps.pm tlpkg/tlperl/site/lib/URI/pop.pm tlpkg/tlperl/site/lib/URI/rlogin.pm tlpkg/tlperl/site/lib/URI/rsync.pm @@ -311084,8 +324271,6 @@ runfiles size=11140 tlpkg/tlperl/site/lib/auto/Math/Int64/Int64.dll tlpkg/tlperl/site/lib/auto/Mozilla/CA/.packlist tlpkg/tlperl/site/lib/auto/Net/HTTP/.packlist - tlpkg/tlperl/site/lib/auto/Socket/.packlist - tlpkg/tlperl/site/lib/auto/Socket/Socket.dll tlpkg/tlperl/site/lib/auto/Test/Fatal/.packlist tlpkg/tlperl/site/lib/auto/Test/Needs/.packlist tlpkg/tlperl/site/lib/auto/Test/RequiresInternet/.packlist @@ -311108,18 +324293,19 @@ runfiles size=11140 name tlshell category TLCore -revision 58984 +revision 65954 shortdesc GUI frontend (tcl/tk-based) for tlmgr depend tlshell.ARCH -postaction shortcut type=menu name="TeX Live Manager" cmd=TEXDIR/bin/win32/tlshell.exe -containersize 29668 -containerchecksum 1eb63d745abc94a654e6e0bc5c509d7ded2fa03722fb732123188f811b42afc39a40e5e84a0f477211823029184865fd04121cfedc641fa6ce53912e2c6abca3 +postaction shortcut type=menu name="TLShell TeX Live Manager" cmd=TEXDIR/bin/windows/tlshell.exe +containersize 33104 +containerchecksum d80f9e1005891e7519f4c759c0f8cd2de23198f183a86c92608cede1ab01782a8a3782bc4dc19273d626feea03242b89b60c1f1281fea90b9ad104de56122683 doccontainersize 668 -doccontainerchecksum b1c82e220ee817a570eacc445c94ef7f9f846f4cd5967149a5eca0197d2f64176ac85ffe75f7dc4abd9e2dbbe11284bffb384cfadfbf8e9c2186b06b12faa27e +doccontainerchecksum b2084be245e4e110953872414dfaebb715415898a464c1985358c97e478d74312b82444df7d44f4fdd9216faced6deae2fd6d55d5ff9acb8cbce072aaeca5101 docfiles size=2 texmf-dist/doc/support/tlshell/README tlpkg/tltcl/README.TEXLIVE -runfiles size=30 +runfiles size=34 + texmf-dist/scripts/tlshell/help-w64.txt texmf-dist/scripts/tlshell/tlshell.tcl tlpkg/tltcl/tlmgr.gif tlpkg/tltcl/tltcl.tcl @@ -311160,15 +324346,6 @@ containerchecksum f2aaac8f60176412002a3af990aa3ec5bbf85eca49bba616d3c03c7a82593a binfiles arch=armhf-linux size=1 bin/armhf-linux/tlshell -name tlshell.i386-cygwin -category TLCore -revision 45015 -shortdesc i386-cygwin files of tlshell -containersize 340 -containerchecksum d5ede84ae80670c2749fc59650400c6de1fd31536b08f215a8a28fb27b1dcc79cce21f77d4167907f80ca5a7c123a21770d41a8ca9e1734ca7313955619a3fcd -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/tlshell - name tlshell.i386-freebsd category TLCore revision 45015 @@ -311214,14 +324391,14 @@ containerchecksum 9fcea90dca834d70cecd252d345479728f092a8b3aae2d1ddd19b8a016ef5c binfiles arch=universal-darwin size=1 bin/universal-darwin/tlshell -name tlshell.win32 +name tlshell.windows category TLCore -revision 58093 -shortdesc win32 files of tlshell -containersize 2787672 -containerchecksum ecf015128b8f6629fc23d76668aa3164574001fdff9012cec9d3348a4856f2daa4f70b8fa308812b502bbff26d0dc53519a6109c7f7611413aa988444c245271 -binfiles arch=win32 size=3676 - bin/win32/tlshell.exe +revision 66426 +shortdesc windows files of tlshell +containersize 2960524 +containerchecksum d159733493e700e6ea4549f412b011bc14859795c518a793b777e95eede4e51ed13316c710fa1dcf84c506514a85fed0be5e2e3f671a43aa2994cf940353cda2 +binfiles arch=windows size=3903 + bin/windows/tlshell.exe tlpkg/tltcl/bin/tcl86.dll tlpkg/tltcl/bin/tclsh.exe tlpkg/tltcl/bin/tclsh86.exe @@ -311229,29 +324406,23 @@ binfiles arch=win32 size=3676 tlpkg/tltcl/bin/wish.exe tlpkg/tltcl/bin/wish86.exe tlpkg/tltcl/bin/zlib1.dll - tlpkg/tltcl/lib/dde1.4/libtcldde14.dll.a tlpkg/tltcl/lib/dde1.4/pkgIndex.tcl tlpkg/tltcl/lib/dde1.4/tcldde14.dll - tlpkg/tltcl/lib/itcl4.2.1/itcl.tcl - tlpkg/tltcl/lib/itcl4.2.1/itcl421.dll - tlpkg/tltcl/lib/itcl4.2.1/itclConfig.sh - tlpkg/tltcl/lib/itcl4.2.1/itclHullCmds.tcl - tlpkg/tltcl/lib/itcl4.2.1/itclWidget.tcl - tlpkg/tltcl/lib/itcl4.2.1/libitclstub421.a - tlpkg/tltcl/lib/itcl4.2.1/pkgIndex.tcl - tlpkg/tltcl/lib/libtcl86.dll.a - tlpkg/tltcl/lib/libtclstub86.a - tlpkg/tltcl/lib/libtk86.dll.a - tlpkg/tltcl/lib/libtkstub86.a - tlpkg/tltcl/lib/reg1.3/libtclreg13.dll.a + tlpkg/tltcl/lib/itcl4.2.2/itcl.tcl + tlpkg/tltcl/lib/itcl4.2.2/itcl422.dll + tlpkg/tltcl/lib/itcl4.2.2/itclConfig.sh + tlpkg/tltcl/lib/itcl4.2.2/itclHullCmds.tcl + tlpkg/tltcl/lib/itcl4.2.2/itclWidget.tcl + tlpkg/tltcl/lib/itcl4.2.2/pkgIndex.tcl tlpkg/tltcl/lib/reg1.3/pkgIndex.tcl tlpkg/tltcl/lib/reg1.3/tclreg13.dll - tlpkg/tltcl/lib/sqlite3.34.0/pkgIndex.tcl - tlpkg/tltcl/lib/sqlite3.34.0/sqlite3340.dll + tlpkg/tltcl/lib/sqlite3.36.0/pkgIndex.tcl + tlpkg/tltcl/lib/sqlite3.36.0/sqlite3360.dll tlpkg/tltcl/lib/tcl8.6/auto.tcl tlpkg/tltcl/lib/tcl8.6/clock.tcl tlpkg/tltcl/lib/tcl8.6/encoding/ascii.enc tlpkg/tltcl/lib/tcl8.6/encoding/big5.enc + tlpkg/tltcl/lib/tcl8.6/encoding/cns11643.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1250.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1251.enc tlpkg/tltcl/lib/tcl8.6/encoding/cp1252.enc @@ -311295,6 +324466,7 @@ binfiles arch=win32 size=3676 tlpkg/tltcl/lib/tcl8.6/encoding/iso2022.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-1.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-10.enc + tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-11.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-13.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-14.enc tlpkg/tltcl/lib/tcl8.6/encoding/iso8859-15.enc @@ -312010,6 +325182,7 @@ binfiles arch=win32 size=3676 tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Guam tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Honolulu tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Johnston + tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kanton tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kiritimati tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kosrae tlpkg/tltcl/lib/tcl8.6/tzdata/Pacific/Kwajalein @@ -312075,31 +325248,30 @@ binfiles arch=win32 size=3676 tlpkg/tltcl/lib/tcl8.6/tzdata/WET tlpkg/tltcl/lib/tcl8.6/tzdata/Zulu tlpkg/tltcl/lib/tcl8.6/word.tcl - tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.15.tm + tlpkg/tltcl/lib/tcl8/8.4/platform-1.0.18.tm tlpkg/tltcl/lib/tcl8/8.4/platform/shell-1.1.4.tm tlpkg/tltcl/lib/tcl8/8.5/msgcat-1.6.1.tm tlpkg/tltcl/lib/tcl8/8.5/tcltest-2.5.3.tm tlpkg/tltcl/lib/tcl8/8.6/http-2.9.5.tm - tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.2.tm + tlpkg/tltcl/lib/tcl8/8.6/tdbc/sqlite3-1.1.3.tm tlpkg/tltcl/lib/tclConfig.sh tlpkg/tltcl/lib/tclooConfig.sh - tlpkg/tltcl/lib/tdbc1.1.2/libtdbcstub112.a - tlpkg/tltcl/lib/tdbc1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbc1.1.2/tdbc.tcl - tlpkg/tltcl/lib/tdbc1.1.2/tdbc112.dll - tlpkg/tltcl/lib/tdbc1.1.2/tdbcConfig.sh - tlpkg/tltcl/lib/tdbcmysql1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql.tcl - tlpkg/tltcl/lib/tdbcmysql1.1.2/tdbcmysql112.dll - tlpkg/tltcl/lib/tdbcodbc1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc.tcl - tlpkg/tltcl/lib/tdbcodbc1.1.2/tdbcodbc112.dll - tlpkg/tltcl/lib/tdbcpostgres1.1.2/pkgIndex.tcl - tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres.tcl - tlpkg/tltcl/lib/tdbcpostgres1.1.2/tdbcpostgres112.dll - tlpkg/tltcl/lib/thread2.8.6/pkgIndex.tcl - tlpkg/tltcl/lib/thread2.8.6/thread286.dll - tlpkg/tltcl/lib/thread2.8.6/ttrace.tcl + tlpkg/tltcl/lib/tdbc1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbc1.1.3/tdbc.tcl + tlpkg/tltcl/lib/tdbc1.1.3/tdbc113.dll + tlpkg/tltcl/lib/tdbc1.1.3/tdbcConfig.sh + tlpkg/tltcl/lib/tdbcmysql1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.3/tdbcmysql.tcl + tlpkg/tltcl/lib/tdbcmysql1.1.3/tdbcmysql113.dll + tlpkg/tltcl/lib/tdbcodbc1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.3/tdbcodbc.tcl + tlpkg/tltcl/lib/tdbcodbc1.1.3/tdbcodbc113.dll + tlpkg/tltcl/lib/tdbcpostgres1.1.3/pkgIndex.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.3/tdbcpostgres.tcl + tlpkg/tltcl/lib/tdbcpostgres1.1.3/tdbcpostgres113.dll + tlpkg/tltcl/lib/thread2.8.7/pkgIndex.tcl + tlpkg/tltcl/lib/thread2.8.7/thread287.dll + tlpkg/tltcl/lib/thread2.8.7/ttrace.tcl tlpkg/tltcl/lib/tk8.6/bgerror.tcl tlpkg/tltcl/lib/tk8.6/button.tcl tlpkg/tltcl/lib/tk8.6/choosedir.tcl @@ -312318,6 +325490,40 @@ containerchecksum c8cc2603b338f7e598702d2997bb994b74ed650f4f02f836e989699374c460 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/tlshell +name to-be-determined +category Package +revision 64882 +shortdesc Highlight text passages that need further work +relocated 1 +longdesc This package provides a single command \tbd which highlights +longdesc the pieces of text that need to be rewritten later. You can +longdesc hide them all with a single package option hide, or just make +longdesc them disappear entirely with the option off. +depend soul +depend xcolor +containersize 1592 +containerchecksum a7c6b60844601f81bb659f57e212cfdc9e7cf72f24bfc662aed9dd26ebb9385187ebf44d82b59b637544b920c05dd5e3a698b69a0ef7ace4b57cd7531d240e3f +doccontainersize 250192 +doccontainerchecksum 0df7f6b340c28d2ef9db73af4bbad364bbb238a42f37effbde69af30774de627d29b2f03e098482e6fe66d09bec49d7d4a4566ebb3125eb2f3423c1d5fdba066 +docfiles size=65 + RELOC/doc/latex/to-be-determined/DEPENDS.txt + RELOC/doc/latex/to-be-determined/LICENSE.txt + RELOC/doc/latex/to-be-determined/README.md details="Readme" + RELOC/doc/latex/to-be-determined/to-be-determined.pdf details="Package documentation" +srccontainersize 2928 +srccontainerchecksum 38d70708e3be579d46e086c2e1b227ac081da1d721fff64b51543269b9df11b7ebe67a8e95999bb3ca1b691b91a4c3e1a8d79bce2f367e6965e34a5577377608 +srcfiles size=3 + RELOC/source/latex/to-be-determined/to-be-determined.dtx + RELOC/source/latex/to-be-determined/to-be-determined.ins +runfiles size=1 + RELOC/tex/latex/to-be-determined/to-be-determined.sty +catalogue-contact-bugs https://github.com/yegor256/to-be-determined/issues +catalogue-contact-repository https://github.com/yegor256/to-be-determined +catalogue-ctan /macros/latex/contrib/to-be-determined +catalogue-license mit +catalogue-topics editorial decoration cond-comp +catalogue-version 0.3.0 + name tocbibind category Package revision 20085 @@ -312346,7 +325552,7 @@ catalogue-version 1.5k name tocdata category Package -revision 55852 +revision 65451 shortdesc Adds names to chapters, sections, figures in the TOC and LOF relocated 1 longdesc The tocdata package may be used to add a small amount of data @@ -312363,15 +325569,15 @@ longdesc user-level macros control formatting. tocdata works with the longdesc TOC/LOF formatting of the default LaTeX classes, memoir, longdesc koma-script, and with titletoc, tocloft, tocbasic, and longdesc tocstyle. -containersize 3352 -containerchecksum d09c92d7be720882d53799e8ed8b392e8ce20f1ed78ec995918dbae80fe99e58b3d6b74264f5cf47c146b6f2adf779c97f5e4f98060bd704faf58959c7ce1dd7 -doccontainersize 915648 -doccontainerchecksum a67eb751bced4bf18dd734a7643923062f30d1dd43e1ced5f161312950d4313eb2187cb1e85cd16835ece11907bbb58bdadb0e922aded123c5d024e390b035e8 -docfiles size=227 +containersize 3356 +containerchecksum 7a8cc901e669e552cb3ece2f60add154c15443cd875eede2c54b90e89ef9c97149aea4e9b9134ba1606aa5ce7ef24941f4850023222e7d0d97f59e8d7f583da3 +doccontainersize 949356 +doccontainerchecksum 6ee4234813c1d4730fd0e8041b1182b9e570ea986a33dec32a786a6fb88fe2cd99b31163dabb154202d1831fea372ac4fa76d0774f322300930f88edcfd12ab5 +docfiles size=236 RELOC/doc/latex/tocdata/README.txt details="Readme" RELOC/doc/latex/tocdata/tocdata.pdf details="Package documentation" -srccontainersize 12280 -srccontainerchecksum 4ed7570fe98eff95fea9f9bd30b772a45fb38f83f1bfe56e353b4531f65b06cb859fef310310654acf42ecb29dd78c78042971ff7957480962d86a4307c2a7f1 +srccontainersize 12028 +srccontainerchecksum 9408c8f9f951b4bb39f00a51ea73e5c5f5bc379837ccb9794e64a72bbc3ced295b50fda2a082af1aee69f53c6d2a0550dbf55a1cb8171a8d5bb399eed35871b0 srcfiles size=14 RELOC/source/latex/tocdata/tocdata.dtx RELOC/source/latex/tocdata/tocdata.ins @@ -312380,7 +325586,7 @@ runfiles size=4 catalogue-ctan /macros/latex/contrib/tocdata catalogue-license lppl1.3 catalogue-topics toc-etc -catalogue-version 2.04 +catalogue-version 2.05 name tocloft category Package @@ -312471,7 +325677,7 @@ catalogue-version 2.142 name todonotes category Package -revision 58998 +revision 65699 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 @@ -312481,11 +325687,11 @@ depend pgf depend tools depend xcolor depend xkeyval -containersize 4760 -containerchecksum 949090dd8738c5a36e2040e25304d423847e94c1bdd7a45f51978bf085c1bd1dc9e274d53b8f671866e9a35d518193579a2c40fd66d3480ac25c9b17232451ee -doccontainersize 431988 -doccontainerchecksum 8df01894218cd935bc0fb9b454caf041643bb716650379a11178dd2db6e3c0b20ddc534a06b4546fa8d12694122bc419c8417e98218940019a74ecfe42a51b77 -docfiles size=113 +containersize 4852 +containerchecksum c3430bf32562d19a9a9fcfacf5f61d10bdaa7cc00d6fc271338b9a962bb16ad372290c401da9b8428dc0528ba185f38d94e1a07cf096f34b3d835b4474729252 +doccontainersize 469396 +doccontainerchecksum 030972617d7a381c497ea074fb817e3f8d5ec4831579ee5ae632331a139a288a4d124ff2a98b563b78dbf79ad088773def2aa15a81435569a8f512682b358141 +docfiles size=125 RELOC/doc/latex/todonotes/README details="Readme" RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.pdf RELOC/doc/latex/todonotes/examples/alterAppearenceOfListOfTodos.tex @@ -312493,10 +325699,11 @@ docfiles size=113 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/img/AlteredAppearenceOfListOfTodos.png RELOC/doc/latex/todonotes/todonotes.pdf details="Package documentation" -srccontainersize 18416 -srccontainerchecksum e46e9a2f7ec6fad3b455664e37ca2111b965255f7a81274834b4aadf9c930d116c20347b5b750adc0c5ef67b9928051ed5cb2182eeea131632acf54192a157ca -srcfiles size=20 +srccontainersize 19820 +srccontainerchecksum d63d3d5aaf3751fd7ed2a8c9f09fc10ff34753896ea8f3301acabfd038e84d06fd436e2665a2428beda20c77d385202df184fc39e7cf7eba5364d6d588abe1c7 +srcfiles size=22 RELOC/source/latex/todonotes/todonotes.dtx RELOC/source/latex/todonotes/todonotes.ins runfiles size=6 @@ -312507,11 +325714,11 @@ catalogue-contact-repository https://github.com/henrikmidtiby/todonotes catalogue-ctan /macros/latex/contrib/todonotes catalogue-license lppl1.3 catalogue-topics notes editorial -catalogue-version 1.1.4 +catalogue-version 1.1.6 name tokcycle category Package -revision 58254 +revision 60320 shortdesc Build tools to process tokens from an input stream relocated 1 longdesc The tokcycle package helps one to build tools to process tokens @@ -312526,23 +325733,23 @@ longdesc with a unique directive, to bring about the desired effect of longdesc the token cycle. If condition flags are provided to identify longdesc active, implicit, and catcode-6 tokens as they are digested. longdesc The package provides a number of options for handling groups. -containersize 5480 -containerchecksum b65bfd661b170277c89db47655a64f47b61b90da9ae6ace0f6de1264c109aa5c9900b2098ab3ebbe1c2284a4c0b725e876f272246f353648b78247d7c1b29bd6 -doccontainersize 1079464 -doccontainerchecksum 2bc13594efa21656bc136bcf6d7358d3cf8a3eb61094d6abe427e958eef26a6731959c01e37b1a0985ee0a9eb7e22f25ba065b697718e2db6a968aa861c5d7d9 -docfiles size=306 +containersize 6384 +containerchecksum fa7beb7d6dd1ee5a6caaa968d425143f946426e98a164d1f1b44288105a6c8f57d94931782616c3926493f0af9709c5836bece10aa7ed6c2f1623f8301ff9bae +doccontainersize 1168688 +doccontainerchecksum dcae2b95cad3150dc8879061d8c546074116af04a970a7c2ad9a91292597f3c859927ebf56ffd58aecb995a9968fc8221b6250efddbdce80edce96fc9c906b48 +docfiles size=342 RELOC/doc/generic/tokcycle/README details="Readme" RELOC/doc/generic/tokcycle/tokcycle-doc.pdf details="Package documentation" RELOC/doc/generic/tokcycle/tokcycle-doc.tex RELOC/doc/generic/tokcycle/tokcycle-examples.pdf details="Examples of use" RELOC/doc/generic/tokcycle/tokcycle-examples.tex -runfiles size=5 +runfiles size=6 RELOC/tex/generic/tokcycle/tokcycle.sty RELOC/tex/generic/tokcycle/tokcycle.tex catalogue-ctan /macros/generic/tokcycle catalogue-license lppl1.3c catalogue-topics macro-supp parser macro-iterate misc-support macro-gen -catalogue-version 1.3 +catalogue-version 1.42 name tokenizer category Package @@ -312572,6 +325779,32 @@ catalogue-license lppl catalogue-topics data-import data-disp csv-support catalogue-version 1.1.0 +name tonevalue +category Package +revision 60058 +shortdesc Tool for linguists and phoneticians to visualize tone value patterns +relocated 1 +longdesc This package provides a TikZ-based solution to typeset +longdesc visualisations of tone values. Currently, unt's model is +longdesc implemented. Support for more models is planned. +containersize 2440 +containerchecksum 052216e492b58a5e8ad4cb3f346815924291f3d24c995d42f22f189e6601a7b4236d434684d5777ea10d50a3d77f033b02ab76ad1550c0ba1ec275a6d22bf4e4 +doccontainersize 154900 +doccontainerchecksum b9bafeaf2a089f3537767a51923ecb6d7008009f4fe2fa74cff71f7d7358ab52afe4f39951efc04d29e2bca5cfab4ae70cf35a9f1e895377be4cef2ef0c523d0 +docfiles size=45 + RELOC/doc/latex/tonevalue/LICENSE + RELOC/doc/latex/tonevalue/README details="Readme" + RELOC/doc/latex/tonevalue/tonevalue.pdf details="Package documentation" + RELOC/doc/latex/tonevalue/tonevalue.tex +runfiles size=2 + RELOC/tex/latex/tonevalue/tonevalue.sty +catalogue-contact-bugs https://github.com/edward-martyr/tonevalue/issues +catalogue-contact-home https://github.com/edward-martyr/tonevalue +catalogue-ctan /graphics/pgf/contrib/tonevalue +catalogue-license apache2 +catalogue-topics pgf-tikz phonetic linguistic +catalogue-version 1.0 + name toolbox category Package revision 32260 @@ -312606,7 +325839,7 @@ catalogue-version 5.1 name tools category Package -revision 56514 +revision 64892 catalogue latex-tools shortdesc The LaTeX standard tools bundle relocated 1 @@ -312616,11 +325849,11 @@ longdesc afterpage, array, bm, calc, dcolumn, delarray, enumerate, longdesc fileerr, fontsmpl, ftnright, hhline, indentfirst, layout, longdesc longtable, multicol, rawfonts, showkeys, somedefs, tabularx, longdesc theorem, trace, varioref, verbatim, xr, and xspace. -containersize 41916 -containerchecksum 2598798421318513c028a6bcd9be4eea18b7cf8fcf20444d860b2954d81895cfbe9e8700fa3cd052fcb50353cb1bd926a047026d8fb07e48aced5d8338a6e464 -doccontainersize 5224556 -doccontainerchecksum 90d85bb6e877d8d8b1ece806e62c6179ecbbbda3497c4c4f16b67989448d1d2179c50c475a1dfe57bf085ee30fcc09a962586dc089565dfd0715b8fa4eab608d -docfiles size=1643 +containersize 43248 +containerchecksum f82eb761a74b85924fa51fee338e3c911545e4f96ef2ee78a236f5c10d6d566184b40bf46d2924650cc57ab4e3df94cff1e78ea1d196bd280dd2191b4ead01c5 +doccontainersize 5313768 +doccontainerchecksum c47db012171f64b2b8554a00397b7fe0b5d262510fecd3171ef1525eb2f1a2113c24b85458e3762d6f908a0617414bcb07eb5cbc14108c8be84c6b5f90ed3ea9 +docfiles size=1765 RELOC/doc/latex/tools/README.md details="Readme" RELOC/doc/latex/tools/afterpage.pdf RELOC/doc/latex/tools/array.pdf @@ -312652,9 +325885,9 @@ docfiles size=1643 RELOC/doc/latex/tools/verbatim.pdf RELOC/doc/latex/tools/xr.pdf RELOC/doc/latex/tools/xspace.pdf -srccontainersize 225760 -srccontainerchecksum aca34a4532b188cef91484f36b05488a627582882f56d48b35020872c48dffdf3cd3be9ca8c6073c45db564cdf390b80689cefbb12c5eaf2370deb75646006ed -srcfiles size=266 +srccontainersize 228796 +srccontainerchecksum 952c2fa3d0fdd06d784c9b577cb311d7910b807b8a8126915844baf582d2c7eaea6a984db7648d9d66ad104fe47ed96f88a80bc5a6c1b9d1e6dec07ae3a0abe6 +srcfiles size=270 RELOC/source/latex/tools/afterpage.dtx RELOC/source/latex/tools/afterpage.ins RELOC/source/latex/tools/array.dtx @@ -312688,7 +325921,7 @@ srcfiles size=266 RELOC/source/latex/tools/verbatim.dtx RELOC/source/latex/tools/xr.dtx RELOC/source/latex/tools/xspace.dtx -runfiles size=105 +runfiles size=121 RELOC/tex/latex/tools/.tex RELOC/tex/latex/tools/afterpage.sty RELOC/tex/latex/tools/array-2016-10-06.sty @@ -312707,14 +325940,17 @@ runfiles size=105 RELOC/tex/latex/tools/hhline.sty RELOC/tex/latex/tools/indentfirst.sty RELOC/tex/latex/tools/layout.sty + RELOC/tex/latex/tools/longtable-2020-01-07.sty RELOC/tex/latex/tools/longtable.sty RELOC/tex/latex/tools/multicol-2017-04-11.sty + RELOC/tex/latex/tools/multicol-2019-10-01.sty RELOC/tex/latex/tools/multicol.sty RELOC/tex/latex/tools/q.tex RELOC/tex/latex/tools/r.tex RELOC/tex/latex/tools/rawfonts.sty RELOC/tex/latex/tools/s.tex RELOC/tex/latex/tools/shellesc.sty + RELOC/tex/latex/tools/showkeys-2014-10-28.sty RELOC/tex/latex/tools/showkeys.sty RELOC/tex/latex/tools/somedefs.sty RELOC/tex/latex/tools/tabularx.sty @@ -313065,15 +326301,6 @@ containerchecksum 2974c3d8b9f3eb57c7ff192093d45da9d6b74701febc869d43ee2289d659c4 binfiles arch=armhf-linux size=4 bin/armhf-linux/tpic2pdftex -name tpic2pdftex.i386-cygwin -category TLCore -revision 29836 -shortdesc i386-cygwin files of tpic2pdftex -containersize 4328 -containerchecksum 90b31b53979a5d14d0ee49be004a44e32d6ecd74f37ada3a9790a289a861df32baf2fc53c24d72a713eb3c3a65f69230df62e788b39ab1b9f259c218a3653a43 -binfiles arch=i386-cygwin size=4 - bin/i386-cygwin/tpic2pdftex - name tpic2pdftex.i386-freebsd category TLCore revision 29785 @@ -313239,7 +326466,7 @@ catalogue-version 2.1 name tracklang category Package -revision 55707 +revision 65263 shortdesc Language and dialect tracker relocated 1 longdesc The tracklang package is provided for package developers who @@ -313248,11 +326475,11 @@ longdesc has requested through packages such as babel or polyglossia. longdesc This package does not provide any translations! Its purpose is longdesc simply to track which languages have been requested by the longdesc user. Generic TeX code is in tracklang.tex for non-LaTeX users. -containersize 19144 -containerchecksum 6f33892886257274d3011b1d8e84d325477b75d6f151b1cd5223d456fdb1e5983146a20106fa19f3750b5898e24400a33e22de0571c9c301c3c0f6c0a1163e5f -doccontainersize 992880 -doccontainerchecksum ff9bea1f499fe4ded275556e201be9259a6ee6512abe0a7665face275906fe77519114d77ca401299ed40d7c5b1175844c6464743c4b207ffb9e60cc416869c2 -docfiles size=335 +containersize 19268 +containerchecksum a8cb03ea2fd0063ad3e0784c1fb6085e623f08d2a8a8e1e5907a13b0d08c2a99c7e1f6d0e357dabdd4e655122b572dca2eee5855bb5fe9ca500715a4b8b4790f +doccontainersize 1689036 +doccontainerchecksum 42dd6cef4ebe9212277ed9cebdcf9875a73981ff88ebd19a5bb43296605087cceeb4095f5de1eef53b70f8edeea5268ce327d16545c55411c20880673f7fd651 +docfiles size=798 RELOC/doc/generic/tracklang/CHANGES RELOC/doc/generic/tracklang/README details="Readme" RELOC/doc/generic/tracklang/samples/animals/animals-en-GB.ldf @@ -313273,7 +326500,6 @@ docfiles size=335 RELOC/doc/generic/tracklang/samples/animals/sample-animals-de.tex RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.pdf RELOC/doc/generic/tracklang/samples/animals/sample-animals-poly.tex - RELOC/doc/generic/tracklang/samples/animals/sample-animals-sr-poly.pdf RELOC/doc/generic/tracklang/samples/animals/sample-animals.pdf RELOC/doc/generic/tracklang/samples/animals/sample-animals.tex RELOC/doc/generic/tracklang/samples/animals/sample-animals2-de.pdf @@ -313327,10 +326553,13 @@ docfiles size=335 RELOC/doc/generic/tracklang/samples/sample-tracklang5.tex RELOC/doc/generic/tracklang/samples/sample-tracklang6.pdf RELOC/doc/generic/tracklang/samples/sample-tracklang6.tex - RELOC/doc/generic/tracklang/tracklang.pdf details="Package documentation" -srccontainersize 57672 -srccontainerchecksum 3221cb4b57e1a8d501648612e310107b55a002703855b338c92bfd758bf923b22e461d18bfd33d9e81717d7bfba3965fdd3eaef6f113353efc31337d3409d6d7 -srcfiles size=108 + RELOC/doc/generic/tracklang/tracklang-code.pdf details="Documented Code" + RELOC/doc/generic/tracklang/tracklang-manual.html details="User manual (HTML)" + RELOC/doc/generic/tracklang/tracklang-manual.pdf details="User manual (PDF)" + RELOC/doc/generic/tracklang/tracklang-manual.tex +srccontainersize 34704 +srccontainerchecksum 1ef4767d6a2a6f221d64544dfe3bc7c6db411b1b525dd887279d8454e7425122d1b0b7ee7b7ee65f2d006a12b76eb1b9f5fb23263da16937894209cb864ecb3e +srcfiles size=77 RELOC/source/latex/tracklang/tracklang.dtx RELOC/source/latex/tracklang/tracklang.ins runfiles size=47 @@ -313344,7 +326573,7 @@ catalogue-contact-support https://www.dickimaw-books.com/faq.php?action=view&cat catalogue-ctan /macros/generic/tracklang catalogue-license lppl1.3 catalogue-topics package-devel class-supp multilingual -catalogue-version 1.4 +catalogue-version 1.6.1 name trajan category Package @@ -313414,6 +326643,29 @@ catalogue-license lppl catalogue-topics boxing decoration editorial catalogue-version 0.2 +name tramlines +category Package +revision 65692 +shortdesc A package for creating tramlines (lines above and below a title used by lawyers in the UK) +relocated 1 +longdesc This package automatically creates tramlines (lines above and +longdesc below a title used by lawyers in the UK and the Commonwealth). +containersize 1068 +containerchecksum d30a7a7ee30f933163f5462ce00b63e82bbe65b2d08b2b530004c22f7fdd884c99d44423aa98ee4176f0d7cab159799984a399ce26315d0af6522babf7b3f646 +doccontainersize 59588 +doccontainerchecksum 209f4af2dbc0993c3f3b454c2d030c2f69e43403d50721a2c1e7159c1ed1cd95a01c76bd1821d1f281c4b1fd516b3084799d5877acb500453008c3e7e1b15b5b +docfiles size=18 + RELOC/doc/latex/tramlines/README details="Readme" + RELOC/doc/latex/tramlines/tramlines-documentation.pdf details="Package documentation" + RELOC/doc/latex/tramlines/tramlines-documentation.tex +runfiles size=1 + RELOC/tex/latex/tramlines/tramlines.sty +catalogue-contact-home https://github.com/ezgranet/tramlines +catalogue-ctan /macros/latex/contrib/tramlines +catalogue-license lppl1.3c cc-by-sa-3 +catalogue-topics headings legal +catalogue-version 1.1.0 + name translation-array-fr category Package revision 24344 @@ -313453,22 +326705,26 @@ catalogue-topics dissertation german-doc translation name translation-biblatex-de category Package -revision 57508 +revision 59382 shortdesc German translation of the User Guide for BibLaTeX relocated 1 longdesc A German translation of the User Guide for BibLaTeX. -containersize 384 -containerchecksum 7e77035b714c1cc7596d1fa48e5d285ef573a0332b5fdb78e77b22742954f6c401d531de3175ed92ecf43ac4afbbd5a6a11a8ec95409f7227ba7995d5645179a -doccontainersize 729900 -doccontainerchecksum 83a35f07b954040e99fb072670a65c0343ef7f3739c476e347ff5ad85c0e4ce900c26691960293c99e1da7c9d97daec2b7daefcfa78cbe25f1b3759ca4e2d8b6 +containersize 452 +containerchecksum 6256a868d6f6ea53107245574d3d7fe3f1b646cfa67dd456f88abbab980b4f9060c752faa14f185957762b76c159aa8d52b3ab8908c53c5938e415fa8e4d5f7d +doccontainersize 729868 +doccontainerchecksum e7e634d9d581f781f33ebcad17f4f496738d6364725dae75d7dae6d357bb7deb08a5e01de0e1ac6aa32cdc09ebefbf0190d9f6f11b286a20ce0fce23c0516fef docfiles size=290 RELOC/doc/latex/translation-biblatex-de/README details="Readme" RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.pdf details="The translation" RELOC/doc/latex/translation-biblatex-de/biblatex-de-Benutzerhandbuch.tex +catalogue-contact-announce https://github.com/plk/biblatex/wiki +catalogue-contact-bugs https://github.com/plk/biblatex/issues +catalogue-contact-home https://github.com/plk/biblatex +catalogue-contact-repository https://github.com/plk/biblatex.git catalogue-ctan /info/translations/biblatex/de catalogue-license lppl catalogue-topics german-doc biblatex documentation -catalogue-version 3.15a +catalogue-version 3.15b name translation-chemsym-de category Package @@ -313650,7 +326906,7 @@ catalogue-topics french-doc translation name translations category Package -revision 57461 +revision 61896 shortdesc Internationalisation of LaTeX2e packages relocated 1 longdesc This package (once part of the exsheets package), provides a @@ -313662,21 +326918,22 @@ longdesc German, Italian, Spanish, Catalan, Turkish, Croatian, longdesc Hungarian, Danish and Portuguese from babel or polyglossia if longdesc either is in use in the document. (Additional languages from longdesc the multilingual packages may be possible: ask the author.) -containersize 12820 -containerchecksum bc85fb20313e9e1e6eca3373eb1fa58f0dd3971c04039ead0cdff9479f9d8a2f7ace407bfef0b7a5caa9194573911e3cd0dafda51243db34e922d39af42b0f1e -doccontainersize 503624 -doccontainerchecksum e5faff88c1b8f9588e6b7bba20aa3aef9711ee273d79623ea79f90345be6c6420595dcbb5419f87463c2a89b019b8999c330627a74f4f03ebc1af41ee7894006 -docfiles size=132 +containersize 13476 +containerchecksum 82d2a821c42bda66658f8557d85f2c52bee6324c88cf44e5440cac4de5bf7e938a3e37f7fe2371069a923c1f3fb794f8860274765054f902eaba560ea195297f +doccontainersize 518100 +doccontainerchecksum ab72edcca1d3407eaef679acd3f3d2a49f559e5ca6d9d1ad7221dd76152560be307722155cd4da54215e3b7f561f39e08ae737c70ff2e7fea1ddce2561b506fb +docfiles size=136 RELOC/doc/latex/translations/README details="Readme" - RELOC/doc/latex/translations/translations_en.pdf details="Package documentation (English)" language="en" - RELOC/doc/latex/translations/translations_en.tex -runfiles size=25 + RELOC/doc/latex/translations/translations-manual.pdf details="Package documentation (English)" language="en" + RELOC/doc/latex/translations/translations-manual.tex +runfiles size=27 RELOC/tex/latex/translations/translations-basic-dictionary-brazil.trsl RELOC/tex/latex/translations/translations-basic-dictionary-catalan.trsl RELOC/tex/latex/translations/translations-basic-dictionary-dutch.trsl RELOC/tex/latex/translations/translations-basic-dictionary-english.trsl RELOC/tex/latex/translations/translations-basic-dictionary-french.trsl RELOC/tex/latex/translations/translations-basic-dictionary-german.trsl + RELOC/tex/latex/translations/translations-basic-dictionary-polish.trsl RELOC/tex/latex/translations/translations-basic-dictionary-spanish.trsl RELOC/tex/latex/translations/translations.sty catalogue-also translator @@ -313685,11 +326942,11 @@ catalogue-contact-repository https://github.com/cgnieder/translations/ catalogue-ctan /macros/latex/contrib/translations catalogue-license lppl1.3c catalogue-topics multilingual package-supp -catalogue-version 1.10a +catalogue-version 1.12 name translator category Package -revision 56052 +revision 59412 shortdesc Easy translation of strings in LaTeX relocated 1 longdesc This LaTeX package provides a flexible mechanism for @@ -313701,19 +326958,21 @@ longdesc localize the package such that texts are correctly translated longdesc into the language preferred by the user. This package is not longdesc intended to be used to automatically translate more than a few longdesc words. -containersize 25580 -containerchecksum 87eb30409270c63236f5933a52d7815b529a4aca0d7ecc2cb7cb69199d0597684cd48e25b2f00be80024f734d2f4067650adf457ef942aa8477359a6be20d886 -doccontainersize 215600 -doccontainerchecksum 9fcaef407ea8149e35eb4ae2d4ea30a3a865ed31992bc9ed4e046059d93445db32a912e05698825df1c720903fdbadf4550d6fba7ab38990ca85d6dcb078fbea +containersize 28304 +containerchecksum 5700b0b8a95b244c93f17c5e1bfc74d4defec842892eec358b308dc55f45ffd5bef050a1ed938c9100cad771ce5ccd53bfcc917083a9ba23a60a3b339d241f2f +doccontainersize 216032 +doccontainerchecksum abbe08cb16a39395b53d01f85172a11e339cd18f2c7f9dde8ab1d0cf353649c181f442fcb94c9add913b2b807ae9f6ba1ac54e9a6fed147cba1af335b6b73d8d docfiles size=59 RELOC/doc/latex/translator/README.md details="Readme" RELOC/doc/latex/translator/translator.pdf details="Package documentation" RELOC/doc/latex/translator/translator.tex -runfiles size=111 +runfiles size=123 RELOC/tex/latex/translator/translator-basic-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-basic-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-basic-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Czech.dict RELOC/tex/latex/translator/translator-basic-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-basic-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-basic-dictionary-English.dict RELOC/tex/latex/translator/translator-basic-dictionary-French.dict RELOC/tex/latex/translator/translator-basic-dictionary-German.dict @@ -313731,7 +326990,9 @@ runfiles size=111 RELOC/tex/latex/translator/translator-bibliography-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Czech.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-bibliography-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-English.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-French.dict RELOC/tex/latex/translator/translator-bibliography-dictionary-German.dict @@ -313747,7 +327008,9 @@ runfiles size=111 RELOC/tex/latex/translator/translator-environment-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-environment-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-environment-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Czech.dict RELOC/tex/latex/translator/translator-environment-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-environment-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-environment-dictionary-English.dict RELOC/tex/latex/translator/translator-environment-dictionary-French.dict RELOC/tex/latex/translator/translator-environment-dictionary-German.dict @@ -313763,7 +327026,9 @@ runfiles size=111 RELOC/tex/latex/translator/translator-months-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-months-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-months-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-months-dictionary-Czech.dict RELOC/tex/latex/translator/translator-months-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-months-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-months-dictionary-English.dict RELOC/tex/latex/translator/translator-months-dictionary-French.dict RELOC/tex/latex/translator/translator-months-dictionary-German.dict @@ -313781,7 +327046,9 @@ runfiles size=111 RELOC/tex/latex/translator/translator-numbers-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-numbers-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-numbers-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Czech.dict RELOC/tex/latex/translator/translator-numbers-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-numbers-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-numbers-dictionary-English.dict RELOC/tex/latex/translator/translator-numbers-dictionary-French.dict RELOC/tex/latex/translator/translator-numbers-dictionary-German.dict @@ -313799,7 +327066,9 @@ runfiles size=111 RELOC/tex/latex/translator/translator-theorem-dictionary-Bulgarian.dict RELOC/tex/latex/translator/translator-theorem-dictionary-Catalan.dict RELOC/tex/latex/translator/translator-theorem-dictionary-Croatian.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Czech.dict RELOC/tex/latex/translator/translator-theorem-dictionary-Danish.dict + RELOC/tex/latex/translator/translator-theorem-dictionary-Dutch.dict RELOC/tex/latex/translator/translator-theorem-dictionary-English.dict RELOC/tex/latex/translator/translator-theorem-dictionary-French.dict RELOC/tex/latex/translator/translator-theorem-dictionary-German.dict @@ -313820,36 +327089,88 @@ catalogue-contact-repository https://github.com/josephwright/translator catalogue-ctan /macros/latex/contrib/translator catalogue-license lppl gpl catalogue-topics multilingual package-supp -catalogue-version 1.12c +catalogue-version 1.12d name transparent category Package -revision 52981 +revision 64852 shortdesc Using a color stack for transparency with pdfTeX relocated 1 -longdesc Since version 1.40 pdfTeX supports several color stacks; the -longdesc package uses a separate colour stack for control of -longdesc transparency (which is not, of course, a colour). -containersize 1992 -containerchecksum a1b545dee3fc210d9ff39c9ad1e8015c3972b2f1655e40f828d3bca0d8ae759772e18fd180cec5fa88d45f48076d92d07bebf2e03ef26745ad53a2fd8581d9cf -doccontainersize 266624 -doccontainerchecksum 7de04001cea582db36ed0fb0b5f8382a367603d8ce8327d29d773d05af116ae76adddd678b220d2df8abf7c6c619bee9f050f51c5aa255d7b0fb9b576638e049 -docfiles size=68 +longdesc pdfTeX and LuaTeX support several color stacks. This package +longdesc shows how a separate color stack can be used for transparency, +longdesc a property besides color that works across page breaks. If the +longdesc PDF management is used it can also be used with other engines, +longdesc but without support for page breaks. +containersize 2272 +containerchecksum 58ffa6219576a994955be228a412835c8da328c351ca0cc5dfa9d3a9fdfe8b38324890ecde9ec8ed9ccc49231169786d704ef65cdd3dfd860f5aa761a18c57d9 +doccontainersize 275336 +doccontainerchecksum 73942fa07c9bcc6e8f08b91837f96a3c781f2f60443078b67232092b98e0bfaab07e57bd43e54345df7fbb9ea20bba8bbbc10c9dc58d5cf2d0b6f6bed469d894 +docfiles size=71 RELOC/doc/latex/transparent/README.md details="Readme" RELOC/doc/latex/transparent/transparent-example.tex RELOC/doc/latex/transparent/transparent.pdf details="Package documentation" -srccontainersize 5448 -srccontainerchecksum 73a5f575a644334ee5a61f740c4f5f2e09a10ee0c4c5732be70809f66f67fddc5979bafe4a7fcd8a2462e0dec2b98867e9ba1ff2d82e3be9743ecf5773cd5ab8 +srccontainersize 5284 +srccontainerchecksum b37938a27dce42366234f7ec2ad1287e4864f53426584ae72dfd801055a06dfd15cd7abffcc0908e22971b01eafe11521c01eaa36a9d0f15fa8b1e61d3d250f2 srcfiles size=5 RELOC/source/latex/transparent/transparent.dtx -runfiles size=2 +runfiles size=3 + RELOC/tex/latex/transparent/transparent-nometadata.sty RELOC/tex/latex/transparent/transparent.sty catalogue-contact-bugs https://github.com/ho-tex/transparent/issues catalogue-contact-repository https://github.com/ho-tex/transparent catalogue-ctan /macros/latex/contrib/transparent -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics typesetting -catalogue-version 1.4 +catalogue-version 1.5 + +name transparent-io +category Package +revision 64113 +shortdesc Show for approval the filenames used in \input, \openin, or \openout +relocated 1 +longdesc This package provides macros to make the file I/O in plain TeX +longdesc more transparent. That is, every \input, \openin, and \openout +longdesc operation by TeX is presented to the user who must check +longdesc carefully if the file name of the source is acceptable. The +longdesc user must sometimes enter additional text and has to specify +longdesc the file name that the TeX operation should use. The macros +longdesc require a complex installation procedure; the package contains +longdesc sed and bash scripts to do this on a UNIX-like operating +longdesc system. Every installation is different from any other as +longdesc password-protected macro names and private messages have to be +longdesc chosen by the installer. Therefore, the files in the package +longdesc cannot be used directly. The files carry the extension .org, +longdesc and only after the user has performed an individual +longdesc customization for a private installation the changed files are +longdesc renamed and have the extension .tex. For details see the +longdesc manual. +containersize 852 +containerchecksum 69d27356f57d5b610fc9e6e839f6df111f6b98b8bf446327ecfba473dea6bc997cb6802ca382b3438d44de85fd5f50f82bd4e5508bfa43d08223463b5436950c +doccontainersize 76976 +doccontainerchecksum 2e54e51744c482f98c1b35588cc934ba18e3358fc2be043459d7e16f8c85ee6aae7acf4b6c3b329cdfddcf1b3126000c6559d41d5b2c4e88d5018844717cb8eb +docfiles size=70 + RELOC/doc/plain/transparent-io/README details="Readme" + RELOC/doc/plain/transparent-io/TrIO.org + RELOC/doc/plain/transparent-io/TrIOauto.org + RELOC/doc/plain/transparent-io/TrIOextract.org + RELOC/doc/plain/transparent-io/TrIOinput.org + RELOC/doc/plain/transparent-io/TrIOinstall.org + RELOC/doc/plain/transparent-io/TrIOlineno.org + RELOC/doc/plain/transparent-io/TrIOmacros.org + RELOC/doc/plain/transparent-io/TrIOopen.org + RELOC/doc/plain/transparent-io/TrIOopenin.org + RELOC/doc/plain/transparent-io/TrIOopenout.org + RELOC/doc/plain/transparent-io/TrIOprivate.org + RELOC/doc/plain/transparent-io/TrIOsupport.org + RELOC/doc/plain/transparent-io/Transparent-IO-TUGboat-danger.tex + RELOC/doc/plain/transparent-io/Transparent-IO-doc.pdf details="Package documentation" + RELOC/doc/plain/transparent-io/Transparent-IO-doc.tex + RELOC/doc/plain/transparent-io/Transparent-IO-eccentric.tex + RELOC/doc/plain/transparent-io/Transparent-IO-example.tex + RELOC/doc/plain/transparent-io/Transparent-IO-hello.tex +catalogue-ctan /macros/plain/contrib/transparent-io +catalogue-license gpl3 +catalogue-topics security name tree-dvips category Package @@ -314075,6 +327396,34 @@ catalogue-license pd catalogue-topics layout catalogue-version 3.6 +name truthtable +category Package +revision 60717 +shortdesc Automatically generate truth tables for given variables and statements +relocated 1 +longdesc This LuaLaTeX package permits to automatically generate truth +longdesc tables given a table header. It supports a number of logical +longdesc operations which can be combined as needed. It is built upon +longdesc the luacode package. +containersize 2136 +containerchecksum 3ab6a30d6c964a810cb27cc13b314fd9b8b881427a8a1e8dc047038669e9480bbd258ce5380eab648d07669b948feafb420a16e3d599f227c3e7422e4173020b +doccontainersize 144676 +doccontainerchecksum 3333d8ac206900fdbb4aef6777a5ad840a9d9b0b43c62871b24683c41d58b78b36b97062fc9fc4d84e71a7f6728d0fa6320bd38e1f7de4aa660bc6e7b79156c5 +docfiles size=42 + RELOC/doc/lualatex/truthtable/README.md details="Readme" + RELOC/doc/lualatex/truthtable/res/exampletable.tex + RELOC/doc/lualatex/truthtable/res/exampletableoutput.tex + RELOC/doc/lualatex/truthtable/truthtable.pdf details="Package documentation" + RELOC/doc/lualatex/truthtable/truthtable.tex +runfiles size=2 + RELOC/tex/lualatex/truthtable/truthtable.sty +catalogue-contact-bugs https://github.com/K-Trout/truthtable/issues +catalogue-contact-repository https://github.com/K-Trout/truthtable +catalogue-ctan /macros/luatex/latex/truthtable +catalogue-license lppl1.3c +catalogue-topics maths logic luatex +catalogue-version 0.0.2 + name tsemlines category Package revision 23440 @@ -314094,17 +327443,43 @@ catalogue-license pd catalogue-topics graphics-prep catalogue-version 1.0 +name tsvtemplate +category Package +revision 65333 +shortdesc Apply a template to a tsv file +relocated 1 +longdesc This is a simple tsv (tab-separated values) reader for LuaLaTeX +longdesc and plain LuaTeX. It also supports (non-quoted) comma-separated +longdesc values, or indeed values separated by any character. +containersize 1312 +containerchecksum 36910e6a376f074b70f5fd35c8f9bf0ba1ea1f377d7b850506f8ade19e8442b8d9af3216485dd2ebac29534a5d5c59b447679a5e1a1e12c59f3661774d30b244 +doccontainersize 48608 +doccontainerchecksum 48a91c16fd0f819ae201027409e3482edb070762f446d271eabc7822938789d8eaf5255605f66c99c5a0ac303d1d765831ca980a3ed318064b8553d447e1c3da +docfiles size=21 + RELOC/doc/luatex/tsvtemplate/LICENSE + RELOC/doc/luatex/tsvtemplate/README details="Readme" + RELOC/doc/luatex/tsvtemplate/tsvtemplate.doc + RELOC/doc/luatex/tsvtemplate/tsvtemplate.pdf details="Package documentation" +runfiles size=2 + RELOC/tex/luatex/tsvtemplate/tsvtemplate.sty + RELOC/tex/luatex/tsvtemplate/tsvtemplate.tex +catalogue-contact-repository https://gitlab.com/renkema/tsvtemplate +catalogue-ctan /macros/luatex/generic/tsvtemplate +catalogue-license other-free +catalogue-topics luatex lua-supp +catalogue-version 2022/1.0 + name ttfutils category TLCore -revision 57972 +revision 66186 shortdesc convert TrueType to TFM and PK fonts longdesc Utilities: ttf2afm ttf2pk ttf2tfm ttfdump. FreeType is the longdesc underlying library. depend ttfutils.ARCH -containersize 108728 -containerchecksum e96df8ea7bd77440c9a9e4fe408514e9293c45d78adac6b752b301a7ab01ef536478557d9fd7169ee3ba3eb56099d0878e55c125956670bb09454c934ad149ac -doccontainersize 138164 -doccontainerchecksum fdd192c0de8c3d760fa584d43985e2d14bb0340315a6bd91b994a6613ace14cc04c6c28b32773211de46a64482a3b8e10fd89d5377d0ce2e1e4ea0477532cddb +containersize 108724 +containerchecksum 2e4eba2acd3b97297d2629ad93fdac4587afdfff30584ff77f69574efde4172ce60b904100c70d168016e8cb5c6407f4b4ef5ed7b3c83f942b7477af2f101be7 +doccontainersize 138048 +doccontainerchecksum bac6812f37f1d53184a4944e91b06c4ecd6a03d96d78956781c4b01c38ec3b65b74032704d98a4951f8dd5ad84ff54d82891c12e7db99ac58e687e535758decc docfiles size=65 texmf-dist/doc/man/man1/ttf2afm.1 texmf-dist/doc/man/man1/ttf2afm.man1.pdf @@ -314137,11 +327512,11 @@ runfiles size=219 name ttfutils.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of ttfutils -containersize 416620 -containerchecksum e80ec0ac790244773b130b13dc6cd0cd6b3ac2a6a060d2f7d58dd0ef6df65c906e3e73dfc3f9682dbd013137264844f5a0866a24e167787b1e7ac523051cf5dc -binfiles arch=aarch64-linux size=463 +containersize 427716 +containerchecksum 703ca2e8b8bd0e5d090128c360a5ae19daa83fd3e0d400a162b2be3a5793837ee0a4755b581c88346757290fa490d8f652c8f7ff1b71e4f3a1dc059b56825939 +binfiles arch=aarch64-linux size=473 bin/aarch64-linux/ttf2afm bin/aarch64-linux/ttf2pk bin/aarch64-linux/ttf2tfm @@ -314149,11 +327524,11 @@ binfiles arch=aarch64-linux size=463 name ttfutils.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of ttfutils -containersize 460500 -containerchecksum b0a9ea415e2ddee73c4c6883821f6ce2dd18fdf8ef9d1191ea0361529cdba62c79a7c199ae63e4c98603c9ed479d2d465be5543fdbd7dcc10630f829d2e3bc74 -binfiles arch=amd64-freebsd size=483 +containersize 473328 +containerchecksum 29e3bf3c59984fd408dea5f3e40bc46ada06ffe01751806e5d77949f05bb8c0a570b35e9333914e6b6ac03bee32a2bac157b36af92a4856eac781fd1fce3ecbb +binfiles arch=amd64-freebsd size=495 bin/amd64-freebsd/ttf2afm bin/amd64-freebsd/ttf2pk bin/amd64-freebsd/ttf2tfm @@ -314161,11 +327536,11 @@ binfiles arch=amd64-freebsd size=483 name ttfutils.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of ttfutils -containersize 396728 -containerchecksum 178759a07eb991842f548b48c57440f86aefd2034d17bf091e324db32b9f7b073c946efe95380e9d261e38b11e44112afff0497d978ccf2683daf2cf76e4dcc3 -binfiles arch=amd64-netbsd size=604 +containersize 405560 +containerchecksum 1305b0b76f3b4c0bc39fcbe235843d456349a9a5ee042d10dd3b4cca5c13593c6ab6fea15b773c7631a5a683d7f008d7e46701a870d9a3cb58592ea93545dc79 +binfiles arch=amd64-netbsd size=618 bin/amd64-netbsd/ttf2afm bin/amd64-netbsd/ttf2pk bin/amd64-netbsd/ttf2tfm @@ -314173,35 +327548,23 @@ binfiles arch=amd64-netbsd size=604 name ttfutils.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of ttfutils -containersize 338848 -containerchecksum 17e10d55e147f75e5a0131b8c2495dc1f2784f73a1077363e7af139d629c8d97b3891b6ead08c5e6d7aa6fca6a8345c584268e14396a22d6a4fbd15544e5886c -binfiles arch=armhf-linux size=361 +containersize 347292 +containerchecksum 774ae6d2642544ae34213002a348c90da78130772abbec51d03b4e037c0bf1ae59268912dcbad33281eabea3b308387b29441d5f7d416d887209110352dee62c +binfiles arch=armhf-linux size=369 bin/armhf-linux/ttf2afm bin/armhf-linux/ttf2pk bin/armhf-linux/ttf2tfm bin/armhf-linux/ttfdump -name ttfutils.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of ttfutils -containersize 361696 -containerchecksum 30ec9fb3af72216424aa9ca2972945c404bf83f42a3be4e8484d3eeb93db2125515366708552f381d483321772e43729fb28ad46cee30c22ee82fa2e50385ea7 -binfiles arch=i386-cygwin size=372 - bin/i386-cygwin/ttf2afm.exe - bin/i386-cygwin/ttf2pk.exe - bin/i386-cygwin/ttf2tfm.exe - bin/i386-cygwin/ttfdump.exe - name ttfutils.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of ttfutils -containersize 417660 -containerchecksum 17c9ea85e2cceeed198c5e5353b87cf8530f313c5a60d8d944432b1c65ccef08e30c12ab7e572845165a7b66736488574649eec67a8968e43079760d14e6419d -binfiles arch=i386-freebsd size=419 +containersize 432460 +containerchecksum 9104c0de2b9ad6ed1f8f0ce2fbf81fd32dfe87a8ee8c4694d27562126c42db3058908f41e78f8d14a7e822d5b333a5fa4658fd16054b90d2ff3ecbcb8005480d +binfiles arch=i386-freebsd size=431 bin/i386-freebsd/ttf2afm bin/i386-freebsd/ttf2pk bin/i386-freebsd/ttf2tfm @@ -314209,11 +327572,11 @@ binfiles arch=i386-freebsd size=419 name ttfutils.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of ttfutils -containersize 442240 -containerchecksum e030139db41e0435c74607c2af64d6728924a328866786d5394dd5d63e658f4b1598685df84a9c70affed7a2a132696a8e34b4582f41478710df13ff03c1c006 -binfiles arch=i386-linux size=463 +containersize 459084 +containerchecksum 2effff121fd11e76b4977f9d761e1109c1ed12b7b8a03ccedc8d3d408f7300d5826021d7f9b50ab3b79fb56ba912ac48b8eb1a0c5a7193c876d828334ea62207 +binfiles arch=i386-linux size=478 bin/i386-linux/ttf2afm bin/i386-linux/ttf2pk bin/i386-linux/ttf2tfm @@ -314221,11 +327584,11 @@ binfiles arch=i386-linux size=463 name ttfutils.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of ttfutils -containersize 368076 -containerchecksum 9a1c78982d812988176ed87b35ec08b5b3af27635ea0ec83fc20b64cf4648e321980f7753e0fa25d23cb15bcf0cdc37c6309e6e8eb29a853b526fb4615554ffb -binfiles arch=i386-netbsd size=524 +containersize 375932 +containerchecksum 857c39fd2e4549fd354d0857141d7dc817965155e6c855e34444f0c3756968778a9be565453845d6a83a9695c8f462ea476cae9033931f0b7429ce9a19aab38c +binfiles arch=i386-netbsd size=535 bin/i386-netbsd/ttf2afm bin/i386-netbsd/ttf2pk bin/i386-netbsd/ttf2tfm @@ -314233,11 +327596,11 @@ binfiles arch=i386-netbsd size=524 name ttfutils.i386-solaris category TLCore -revision 57938 +revision 66145 shortdesc i386-solaris files of ttfutils -containersize 405500 -containerchecksum 19d396ca8979549d2a0da95318b3e071650f9e2d53368bf9a2bd36c45e1fcbf3417a919bd64fb5c247317c1131ac4d3d50146def9967621f8dc2446912b58572 -binfiles arch=i386-solaris size=388 +containersize 416636 +containerchecksum 89787e72157d9591ee4490ea205c699e78fa9be33de3ab7bbf96ced81550ca2f8a9550634a83709e9d13bcd03dd25a1933f4273db5f1598b9beb52e25e079dec +binfiles arch=i386-solaris size=398 bin/i386-solaris/ttf2afm bin/i386-solaris/ttf2pk bin/i386-solaris/ttf2tfm @@ -314245,35 +327608,35 @@ binfiles arch=i386-solaris size=388 name ttfutils.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of ttfutils -containersize 802700 -containerchecksum aca1c4480f599838941c2450fae1aa0fbbb18fbcbe7c4a07da6b6ec76bf67c564df6cea3cc275ad235ea432b41d25937793d124754baebfd10049de081c43fdb -binfiles arch=universal-darwin size=959 +containersize 824532 +containerchecksum 1db8f2d24c3be5b68367698c98c390e2c0e28db0c46594a77fa22b885050983cad06585d200583840027d35230ae929f5ff5e359b231f52f3d2740e0e1e249e6 +binfiles arch=universal-darwin size=991 bin/universal-darwin/ttf2afm bin/universal-darwin/ttf2pk bin/universal-darwin/ttf2tfm bin/universal-darwin/ttfdump -name ttfutils.win32 +name ttfutils.windows category TLCore -revision 58783 -shortdesc win32 files of ttfutils -containersize 336752 -containerchecksum 472efa4a412b5d15d1cff701ac99427604f37ac5298f7f05421e0c29213516361cc9a27a787d48ea3eae55f39b53411604bc7c0cc9afbb2aeb6e78370f5d72fd -binfiles arch=win32 size=298 - bin/win32/ttf2afm.exe - bin/win32/ttf2pk.exe - bin/win32/ttf2tfm.exe - bin/win32/ttfdump.exe +revision 65891 +shortdesc windows files of ttfutils +containersize 405108 +containerchecksum b1afd2acc0366976046c567144bbb5af196c4777acde9cf0aa0ed3d60335a5479492b4bb5d5f0ab8c8ecdd4351cb215acc78108e873e9a45cac973c9178914d3 +binfiles arch=windows size=380 + bin/windows/ttf2afm.exe + bin/windows/ttf2pk.exe + bin/windows/ttf2tfm.exe + bin/windows/ttfdump.exe name ttfutils.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of ttfutils -containersize 368256 -containerchecksum c09415a5f58bae9940cd7b2af879dc9b651f4160e679ed2ec79482f11b49f148823c479d1efd0ea43528832aa860cea2b48028433cb8e2c92dbb30c75951c7a4 -binfiles arch=x86_64-cygwin size=369 +containersize 381476 +containerchecksum bb2b697e789884d8ac21651b016ea30ba086ea24bea568e9f56bd590bb4a91808804d22e8ec78bf89307b50826789d9d3eb96806e0fea37bece7243b98d7473c +binfiles arch=x86_64-cygwin size=380 bin/x86_64-cygwin/ttf2afm.exe bin/x86_64-cygwin/ttf2pk.exe bin/x86_64-cygwin/ttf2tfm.exe @@ -314281,11 +327644,11 @@ binfiles arch=x86_64-cygwin size=369 name ttfutils.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of ttfutils -containersize 404300 -containerchecksum 29744bc01c0ad9bf5e03d275ba40dc26fda58d166238e124ca7a6d26e5d074cd160452fc5c3ed8293bec7d7c7bc1d9b22c44d4b94e545d66defc850a0a4bc594 -binfiles arch=x86_64-darwinlegacy size=415 +containersize 414408 +containerchecksum ca32999cbf9b4e41cc394b5028bbfe357b8e5194c0a2c14a1c14ddc89c90774e49c263a9c46f6298160bb49f60b9d26f5dbe723d6fd0916ada6c2bbb8abd9f6c +binfiles arch=x86_64-darwinlegacy size=426 bin/x86_64-darwinlegacy/ttf2afm bin/x86_64-darwinlegacy/ttf2pk bin/x86_64-darwinlegacy/ttf2tfm @@ -314293,11 +327656,11 @@ binfiles arch=x86_64-darwinlegacy size=415 name ttfutils.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of ttfutils -containersize 432404 -containerchecksum ba6f51a1e91c217214dd3d6b18460c68d17932354350b07796a6ae2404b839f212e7fc9c2b9339cc1876ab96de15c3945352ed0ce7ed312f2d8113fe493ca525 -binfiles arch=x86_64-linux size=446 +containersize 441200 +containerchecksum b730d400899f48c65e714917203d9181080cb544282b4dbb73f69a015dbfcd741c230247bb0e4d8abd3b42cb21f5350035e48ceb9aebce17126be0161bd3eb10 +binfiles arch=x86_64-linux size=457 bin/x86_64-linux/ttf2afm bin/x86_64-linux/ttf2pk bin/x86_64-linux/ttf2tfm @@ -314305,11 +327668,11 @@ binfiles arch=x86_64-linux size=446 name ttfutils.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of ttfutils -containersize 453820 -containerchecksum a3085d9e565a7596159d80ac2d7f57a9996217364221527c792637adff235a4f9b48f868f2f17ec689dcdacd0ff4db75287b890d6f29dd1110c42fafd3284b4c -binfiles arch=x86_64-linuxmusl size=493 +containersize 469368 +containerchecksum fc7568ed0965a4d9e26944a32cfee6525de739f513fc9e8e8497909d3f183f2c91f17986f93e1ba6576600946588782c6c5b62ea999423698843356938e38eba +binfiles arch=x86_64-linuxmusl size=500 bin/x86_64-linuxmusl/ttf2afm bin/x86_64-linuxmusl/ttf2pk bin/x86_64-linuxmusl/ttf2tfm @@ -314317,11 +327680,11 @@ binfiles arch=x86_64-linuxmusl size=493 name ttfutils.x86_64-solaris category TLCore -revision 57938 +revision 66145 shortdesc x86_64-solaris files of ttfutils -containersize 447988 -containerchecksum cef71399ba3ab9b038cc6302968f0ae851108550a7e4095663704aceae686cd2a75f1d4124bef48c4ca08e571a1aca89fb42e474a23919d53325b3d4769f0510 -binfiles arch=x86_64-solaris size=459 +containersize 461020 +containerchecksum bd240b3c644b5cdc6e6032e45d535b6085e3e24ed556542fe67bcb31128d1493dd0345ce76df8b69d371b355135183b76d7a932c52f620ee58f2f4b13e69f43f +binfiles arch=x86_64-solaris size=471 bin/x86_64-solaris/ttf2afm bin/x86_64-solaris/ttf2pk bin/x86_64-solaris/ttf2tfm @@ -314364,7 +327727,7 @@ catalogue-version 1.0 name tuda-ci category Package -revision 58661 +revision 65254 shortdesc LaTeX templates of Technische Universitat Darmstadt relocated 1 longdesc The TUDa-CI-Bundle provides a possibility to use the Corporate @@ -314372,11 +327735,11 @@ longdesc Design of TU Darmstadt in LaTeX. It contains documentclasses as longdesc well as some helper packages and config files together with longdesc some templates for user documentation, which currently are only longdesc available in German. -containersize 42580 -containerchecksum a0b1ff24435c3c03618c9d9b2213379acfc0fd9184357ee209725de660f25260a81e3108e41bc8f425c06e11ffe18e0ea5fa3fdbb5404caf0edc36dc950da6e7 -doccontainersize 1116308 -doccontainerchecksum 4804e96ae31d171bbc4fae0ea23d6d04601e8fdb8963ad4cd681099538e35bbb3b4624d8d1a7e8fdd86a4657e391707bcd3418c7ba44c004779bc3535c94aa64 -docfiles size=1673 +containersize 43880 +containerchecksum 7fc5ac0e12ee84e996bfbef010ffaeac2fa84ba3a29c121ca9ac835373577c2849555a38cb42e22f4829538be855ea2d2dcd3ec8f4d6201ce53fb7fe32f76d9b +doccontainersize 1131516 +doccontainerchecksum 115a723003e094601698093217fbb2ed0b710d44667e6dba694f5510bcbdc441deac5cf909b3862e5b163d50349f17ca7571704c43d01838e9ffa2686b781a5a +docfiles size=1615 RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.pdf RELOC/doc/latex/tuda-ci/DEMO-TUDaAnnouncement.tex RELOC/doc/latex/tuda-ci/DEMO-TUDaBeamer.pdf details="Example presentation" language="de" @@ -314402,7 +327765,7 @@ docfiles size=1673 RELOC/doc/latex/tuda-ci/DEMO-TUDaThesis.pdf details="Example bachelor's thesis" language="de" RELOC/doc/latex/tuda-ci/DEMO-TUDaThesis.tex RELOC/doc/latex/tuda-ci/README.md details="Readme" -runfiles size=81 +runfiles size=83 RELOC/tex/latex/tuda-ci/beamercolorthemeTUDa.sty RELOC/tex/latex/tuda-ci/beamerfontthemeTUDa.sty RELOC/tex/latex/tuda-ci/beamerinnerthemeTUDa.sty @@ -314437,12 +327800,12 @@ catalogue-contact-home https://www.ce.tu-darmstadt.de/ce/latex_tuda/index.de.jsp catalogue-contact-repository https://github.com/tudace/tuda_latex_templates catalogue-ctan /macros/latex/contrib/tuda-ci catalogue-license lppl1.3c -catalogue-topics class letter dissertation presentation poster std-conform -catalogue-version 3.13a +catalogue-topics class doc-templ letter dissertation presentation poster std-conform +catalogue-version 3.29 name tudscr category Package -revision 58713 +revision 64085 shortdesc Corporate Design of Technische Universitat Dresden relocated 1 longdesc The TUD-Script bundle provides both classes and packages in @@ -314483,11 +327846,11 @@ depend opensans depend trimspaces depend xcolor depend xpatch -containersize 160276 -containerchecksum 16ae7a0ca2544007dfcc1f2720080ae7f8453f535a696ff1edd252ed6a9d6eda9da48c80420c6a64e9b36c85322215c41477269871e285239707c17ae96b6960 -doccontainersize 3746440 -doccontainerchecksum 0e6d42d4bf8a7e2af363243be7a75d93fe489c7e99cc1c731e3e233aff96f2f7f00787af8a5e86419c8d5cf3c7bef9a593aed546e66c565343793f081f34b7d5 -docfiles size=1071 +containersize 164240 +containerchecksum 4e17b12a82a18bb1f4babf123f1e84681c6f9524f2113725f14ad85042dcd5b1fb2aeaa45f709c1797512b8e0f35cd0ff743b60901e75676ec321f8bc682e793 +doccontainersize 3971388 +doccontainerchecksum 3335c87afe969963718137a9f854e0a4935c34bd850471673a3914fb9666e8f3195962d3474df35b876741b37c231851d47b440d49c35e42533b3717be1f442e +docfiles size=1156 RELOC/doc/latex/tudscr/LICENSE.md RELOC/doc/latex/tudscr/README.md details="Readme" RELOC/doc/latex/tudscr/tudscr.pdf details="User manual" language="de" @@ -314496,9 +327859,9 @@ docfiles size=1071 RELOC/doc/latex/tudscr/tutorials/mathswap.pdf RELOC/doc/latex/tudscr/tutorials/mathtype.pdf RELOC/doc/latex/tudscr/tutorials/treatise.pdf -srccontainersize 316860 -srccontainerchecksum 68651ed041af40431be9bac615e3fbefc33330fdf0be33d4cbc80d3cdf4080ba6e7ba5147cfb64101f332af0386cc29d44198fbd3594eb2447e680fa097206b1 -srcfiles size=460 +srccontainersize 325572 +srccontainerchecksum d317e3fc0624ec762293c972c9feaaf56186faf0962137f43f36b974ef223b094919cd84b9f5183e89e0ea6b922e4ae22b489bc619af466dac41c98fe0b651e5 +srcfiles size=468 RELOC/source/latex/tudscr/doc/examples/dissertation.tex RELOC/source/latex/tudscr/doc/examples/document.tex RELOC/source/latex/tudscr/doc/examples/evaluation.tex @@ -314524,6 +327887,7 @@ srcfiles size=460 RELOC/source/latex/tudscr/doc/tudscr-preface.tex RELOC/source/latex/tudscr/doc/tudscr-supervisor.tex RELOC/source/latex/tudscr/doc/tudscr.tex + RELOC/source/latex/tudscr/doc/tutorials.bat RELOC/source/latex/tudscr/doc/tutorials/mathswap.tex RELOC/source/latex/tudscr/doc/tutorials/mathtype.tex RELOC/source/latex/tudscr/doc/tutorials/treatise.tex @@ -314535,6 +327899,7 @@ srcfiles size=460 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-gitinfo.dtx RELOC/source/latex/tudscr/tudscr-layout.dtx RELOC/source/latex/tudscr/tudscr-localization.dtx RELOC/source/latex/tudscr/tudscr-manual.dtx @@ -314548,7 +327913,7 @@ srcfiles size=460 RELOC/source/latex/tudscr/tudscr-version.dtx RELOC/source/latex/tudscr/tudscr.ins RELOC/source/latex/tudscr/tudscrsource.tex -runfiles size=497 +runfiles size=510 RELOC/tex/latex/tudscr/fix-tudscrfonts.sty RELOC/tex/latex/tudscr/logo/DDC-01.eps RELOC/tex/latex/tudscr/logo/DDC-01.pdf @@ -314581,20 +327946,19 @@ runfiles size=497 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/tudscr-gitinfo.sty RELOC/tex/latex/tudscr/tudscrartcl.cls RELOC/tex/latex/tudscr/tudscrbase.sty RELOC/tex/latex/tudscr/tudscrbook.cls RELOC/tex/latex/tudscr/tudscrcolor.sty - RELOC/tex/latex/tudscr/tudscrcomp-book.sty - RELOC/tex/latex/tudscr/tudscrcomp-poster.sty RELOC/tex/latex/tudscr/tudscrcomp.sty RELOC/tex/latex/tudscr/tudscrdoc.cls RELOC/tex/latex/tudscr/tudscrfonts.sty RELOC/tex/latex/tudscr/tudscrmanual.cls + RELOC/tex/latex/tudscr/tudscrmanual.sty RELOC/tex/latex/tudscr/tudscrposter.cls RELOC/tex/latex/tudscr/tudscrreprt.cls RELOC/tex/latex/tudscr/tudscrsupervisor.sty - RELOC/tex/latex/tudscr/tudscrtutorial.sty RELOC/tex/latex/tudscr/twocolfix.sty catalogue-contact-bugs https://github.com/tud-cd/tudscr/issues catalogue-contact-repository https://github.com/tud-cd/tudscr @@ -314602,7 +327966,7 @@ catalogue-contact-support https://latex.wcms-file3.tu-dresden.de/phpBB3/index.ph catalogue-ctan /macros/latex/contrib/tudscr catalogue-license lppl1.3c catalogue-topics dissertation class std-conform -catalogue-version 2.06l +catalogue-version 2.06o name tufte-latex category Package @@ -314658,29 +328022,29 @@ catalogue-version 3.5.2 name tugboat category Package -revision 56942 +revision 66513 shortdesc LaTeX macros for TUGboat articles relocated 1 longdesc Provides ltugboat.cls for both regular and proceedings issues longdesc of the TUGboat journal. Also provides a BibTeX style, longdesc tugboat.bst. -containersize 27916 -containerchecksum 1a58d5dbb3c68ae1abc78265f5583943dbbe673efe5fe81aaa4f5b66e18afe573a2e135637e24b0026d68de994a143d2d9ea172c1bfebf4adb15927abf5f74de -doccontainersize 790084 -doccontainerchecksum 7db84d7657506ef2837eae7a8658c64cb0c6e6d58d5638f7abd936670166c0e75c6822f9deb6ab5916ef0d51f25a3bbfc76f0906c086dd6edb703140b68d72e5 -docfiles size=210 +containersize 30432 +containerchecksum 5ba18321aab0327a1574e1d22c1fa6095df605cf57aa03f591468f61fdcf6706b20909a5fee459e3f8af7bb3cbc5f22abb94285f770dd0dd3b1dd1da67d55eae +doccontainersize 835804 +doccontainerchecksum c5b9f50a6b41d7f666ad396c0b70533f036a12d27d714164490b2e9df13e0cdcf233a191db1110782d1f72f7fcc0e9febd9b68a12884db14629015f96639f3b5 +docfiles size=229 RELOC/doc/latex/tugboat/NEWS RELOC/doc/latex/tugboat/README details="Readme" RELOC/doc/latex/tugboat/ltubguid.ltx RELOC/doc/latex/tugboat/ltubguid.pdf details="Instructions for authors" language="en" RELOC/doc/latex/tugboat/manifest.txt RELOC/doc/latex/tugboat/tugboat.pdf details="Program documentation" language="en" -srccontainersize 40236 -srccontainerchecksum 9cf55ebca59c961ec144fe53d73dc01501b8f621716d20655661c133afbfa2b4e4e4169868d9f419f968787bdce3f6fadf66084dafcd542cb505aa1f7acb4e3b -srcfiles size=35 +srccontainersize 42328 +srccontainerchecksum daa388e822e2c2795bd7598cd2d66b25eb1af32e4374e6c1233578392c0a0bd04c9367268647ec5cd1d7cb9048e890dee11993e642a906d3ea5b072724e2ae1d +srcfiles size=37 RELOC/source/latex/tugboat/tugboat.dtx RELOC/source/latex/tugboat/tugboat.ins -runfiles size=41 +runfiles size=44 RELOC/bibtex/bst/tugboat/ltugbib.bst RELOC/bibtex/bst/tugboat/tugboat.bst RELOC/tex/latex/tugboat/ltugboat.cls @@ -314688,25 +328052,27 @@ runfiles size=41 RELOC/tex/latex/tugboat/ltugcomn.sty RELOC/tex/latex/tugboat/ltugproc.cls RELOC/tex/latex/tugboat/ltugproc.sty +catalogue-alias ltugboat catalogue-also tugboat-plain catalogue-contact-home https://tug.org/TUGboat +catalogue-contact-repository https://github.com/TeXUsersGroup/tugboat catalogue-ctan /macros/latex/contrib/tugboat catalogue-license lppl1.3 catalogue-topics journalpub class -catalogue-version 2.24 +catalogue-version 2.29 name tugboat-plain category Package -revision 51373 +revision 63386 shortdesc Plain TeX macros for TUGboat relocated 1 longdesc The macros defined in this directory (in files tugboat.sty and longdesc tugboat.cmn) are used in papers written in Plain TeX for longdesc publication in TUGboat. -containersize 32684 -containerchecksum a2541eae8834f9a78fadaf4123aa1dbfed2215d3697299e17fcb0c9635091be57b5171514d771c2e14ee7c94ee2ab18e0907a1b3b3cc5bd60b3a3c74e305f45a -doccontainersize 221372 -doccontainerchecksum 747ac188b7d738ae33808da86716712f80f98ec2f69b60bc45514cead00d837fde1dcc99c65804e61c9e35e94e9276f314617f885dd081fe6fce75f7a2baaf9e +containersize 33532 +containerchecksum e3c5542cb31b446e5361a298cb47c94b45b73dba8e0d6dfb0d967a6f01b7eb599230eb9cc15606ae338920819be72ad94749bcacfcdeebe1aa6663762221aa0a +doccontainersize 220392 +doccontainerchecksum ba4f7c26c08f49819df2103c9980108e2a662faa486aeb42d2b60739b385671757f1a0c242b9d18eff92af3c65b8f2f8c03ce1b70d1820f7676a57616b64ec2c docfiles size=60 RELOC/doc/plain/tugboat-plain/README RELOC/doc/plain/tugboat-plain/tubguide.pdf details="TUGboat Authors' Guide" @@ -314716,10 +328082,12 @@ runfiles size=31 RELOC/tex/plain/tugboat-plain/tugboat.sty RELOC/tex/plain/tugboat-plain/tugproc.sty catalogue-also tugboat +catalogue-contact-home https://tug.org/TUGboat +catalogue-contact-repository https://github.com/TeXUsersGroup/tugboat catalogue-ctan /macros/plain/contrib/tugboat catalogue-license other-free catalogue-topics journalpub -catalogue-version 1.25 +catalogue-version 1.27 name tui category Package @@ -314857,16 +328225,16 @@ catalogue-version 0.2 name turnstile category Package -revision 15878 +revision 64967 shortdesc Typeset the (logic) turnstile notation relocated 1 longdesc Among other uses, the turnstile sign is used by logicians for longdesc denoting a consequence relation, related to a given logic, longdesc between a collection of formulas and a derived formula. -containersize 1928 -containerchecksum 083050bb9f34b576cc1033a0b754a2e888883d98d41aa08c1694f78cb5e372748cfc1d62af94732334ce05e91933e95796498fc120d6584f554260fef4d87811 +containersize 1904 +containerchecksum 164b6b8f053b2daf93e8253df850c4aad793521848a93053f6b3879db5badc0b88b5f8f44487e5525c60e7ba7deadce53b2cecb00b7330b22b0815e01cb68338 doccontainersize 598160 -doccontainerchecksum 6f51d17752aab1c33442a92d3d926b1802c1274b3799f33f65bcd417d268ce851be76d36b13fbe0fa3599399f10df9e8bec7bfb6ffa929f667b9e7ee3e9eb323 +doccontainerchecksum de25995e56ac3fd556aa3c50e8b041b201e2f881d38ec2183b55c5799bc0f110e12e2daf387dc9a6d72a9a85377c6e4c1610f6b54811abe617e8698a40e659c0 docfiles size=176 RELOC/doc/latex/turnstile/README details="Readme" RELOC/doc/latex/turnstile/README.en @@ -314878,7 +328246,7 @@ docfiles size=176 RELOC/doc/latex/turnstile/turnstile_artigo.pdf details="Article about the package (Portuguese)" language="pt" RELOC/doc/latex/turnstile/turnstile_artigo.tex srccontainersize 7888 -srccontainerchecksum edab29b25bcad5c2f65980b5539d60b3f8d6481205c89a1fe386f4e1b15e5988c3e592816aae2ded548e624e1cd55fa987eadd2c727d2f261128172bee6b369a +srccontainerchecksum 3364a27e7d174249212280536479d2ee32ee37b22f7c942858b023d9e7069c82ba80120c7d9eaafb90312dc313fb783073f08a2dd212d5ba380a386081abbc81 srcfiles size=14 RELOC/source/latex/turnstile/turnstile-en.dtx RELOC/source/latex/turnstile/turnstile-en.ins @@ -314888,7 +328256,7 @@ runfiles size=3 RELOC/tex/latex/turnstile/turnstile.sty catalogue-ctan /macros/latex/contrib/turnstile catalogue-license lppl -catalogue-topics class maths-symbol +catalogue-topics maths-symbol logic catalogue-version 1.0 name turnthepage @@ -314921,18 +328289,18 @@ catalogue-version 1.3a name twemoji-colr category Package -revision 55675 +revision 64854 shortdesc Twemoji font in COLR/CPAL layered format relocated 1 longdesc This is a COLR/CPAL-based color OpenType font from the Twemoji longdesc collection of emoji images. -containersize 525000 -containerchecksum 0de16660597961e0a221924b8cf453f1e81c837f44d1f7c662b55e29839f1a0d5c105696140a445772d9c8b1714850d2b3618aedb757404dedbec46c1a212c37 +containersize 581228 +containerchecksum abc9583bbfd3690ff52b2341e74166fb70eb0f6abbaf99b01b0f24b818abbe3cd7556ef9cdc3cf58c056a038fe6fc3bdd45199c437a7eab99b300622e8d7308a doccontainersize 712 -doccontainerchecksum 07e7485b6201d63954161e898f6f25cdc6f26332f6f7e9ee1b29c88e02a1b048fe22721bc3ce856d66ca255a1058cf080df86d333720c92af13a52eb7f2bfb6d +doccontainerchecksum 90e01641e73702fe012510bf3c9cf741bbeb594d528b2eb69487bd57beeff59c27ab397902b3c42d5dd1b5745e5b69d0db80b3b2d399bb1ba67e2c85d14a88b5 docfiles size=1 RELOC/doc/fonts/twemoji-colr/README.md details="Readme" -runfiles size=324 +runfiles size=360 RELOC/fonts/truetype/public/twemoji-colr/TwemojiMozilla.ttf catalogue-contact-bugs https://github.com/mozilla/twemoji-colr/issues catalogue-contact-home https://twemoji.twitter.com/ @@ -314940,7 +328308,38 @@ catalogue-contact-repository https://github.com/mozilla/twemoji-colr catalogue-ctan /fonts/twemoji-colr catalogue-license cc-by-sa-4 apache2 catalogue-topics font font-ttf font-symbol -catalogue-version 0.5.1 +catalogue-version 0.7.0 + +name twemojis +category Package +revision 62930 +shortdesc Use Twitter's open source emojis through LaTeX commands +relocated 1 +longdesc This package provides a simple wrapper which allows to use +longdesc Twitter's open source emojis through LaTeX commands. This +longdesc relies on images, so no fancy unicode-font stuff is needed and +longdesc it should work on every installation. +containersize 4425040 +containerchecksum d9204536ff2cf76cfb341bf8096ea71571663527dea945de901758032393f6e4f53c88f0d274e37da4cccf6b61149cb64f19a8712df80523c2f921354155b797 +doccontainersize 4751536 +doccontainerchecksum 3f2f3b13f898545a32aeccef972ed52c448f3547a6834c8cc1a5589e2ff8479b822591d20acdc41f1cfaab1e43469d75abfd0841baed7b1a1dcd4000b87d1045 +docfiles size=1594 + RELOC/doc/latex/twemojis/README.md details="Readme" + RELOC/doc/latex/twemojis/twemojis.pdf details="Package documentation" +srccontainersize 70504 +srccontainerchecksum e9c85a850603cfc49b5ab4f5c51a303dae326a3e44af547c5c9e77319422273c762facc885b76234e935c82b217e53945af524ec9e9431d834ad6645265f78bc +srcfiles size=212 + RELOC/source/latex/twemojis/twemojis.dtx + RELOC/source/latex/twemojis/twemojis.ins +runfiles size=1782 + RELOC/tex/latex/twemojis/all-twemojis.pdf + RELOC/tex/latex/twemojis/twemojis.sty +catalogue-contact-bugs https://gitlab.com/rossel.jost/latex-twemojis/-/issues +catalogue-contact-repository https://gitlab.com/rossel.jost/latex-twemojis +catalogue-ctan /macros/latex/contrib/twemojis +catalogue-license lppl1.3 cc-by-4 +catalogue-topics graphics text-symbol +catalogue-version 1.3.1 (twemoji v14.0.1) name twoinone category Package @@ -315544,7 +328943,7 @@ catalogue-topics font-supp name typed-checklist category Package -revision 49731 +revision 63445 shortdesc Typesetting tasks, goals, milestones, artifacts, and more in LaTeX relocated 1 longdesc The main goal of this package is to provide means for @@ -315556,15 +328955,15 @@ longdesc package is coerced to think about what kind of entries he/she longdesc adds to the checklist. This shall yield a clearer result and, longdesc in the long run, help with training to distinguish entries of longdesc different types. -containersize 5452 -containerchecksum 3ebcc55c6e6e5abe50b1040be5d53f662c632a8b53f2d1914dee66ff0ec812d61057113f8af5062171a3bc9f7a67de0b3b5768eb701534d386d0db6fdfea0ed2 -doccontainersize 346992 -doccontainerchecksum 87943514c64b12bc85711086f17bf06794e110f36b67232659f6746f39d4e671a7b618d45c21c7d034e5aef3f3374c959445e235329fd16d370410fc5f9621ec -docfiles size=88 +containersize 5556 +containerchecksum 3b8cbfe59d50498fa196655596660c7cab045734e1c2f03843696c35b71ff5bd4af738a7e4fab2272c021558413adc3205efb0ff918ebfd6e46ad3cb6407905b +doccontainersize 692884 +doccontainerchecksum 5fa0547034644134f207beddf56d523eaec47c1a2f9e2be5bd9d0db17b07874aa08b86a6c059d71ef6e7918dd326171955d9dfd921b28350860710b2935ed494 +docfiles size=172 RELOC/doc/latex/typed-checklist/README.md details="Readme" RELOC/doc/latex/typed-checklist/typed-checklist.pdf details="Package documentation" -srccontainersize 24360 -srccontainerchecksum bb0775fdb62b386d8b712a955849462c2c3c812469921a00a00d2fee20590a15f300f622bea0d86d6db7b2788c45bca4eeec443cb3c08b97c35e5f51e497fe81 +srccontainersize 24384 +srccontainerchecksum 8b5de72d3200e2c75ecf442b3cacebf6de88e4dd6473b97d4bbfa3ccc3e26a0506424854485d6f81c4c779834ed439017395a72dc7af22e2fe5d72e0e0bb5282 srcfiles size=26 RELOC/source/latex/typed-checklist/typed-checklist.dtx RELOC/source/latex/typed-checklist/typed-checklist.ins @@ -315574,7 +328973,7 @@ catalogue-contact-repository https://github.com/Ri-Ga/typed-checklist catalogue-ctan /macros/latex/contrib/typed-checklist catalogue-license lppl1.2 catalogue-topics list -catalogue-version 2.0 +catalogue-version 2.1 name typeface category Package @@ -315700,15 +329099,6 @@ containerchecksum 3abe28aa66cb7c68206b3ffce7f264ee00fe63f021bac2bd92e24b58d8e536 binfiles arch=armhf-linux size=1 bin/armhf-linux/typeoutfileinfo -name typeoutfileinfo.i386-cygwin -category Package -revision 25648 -shortdesc i386-cygwin files of typeoutfileinfo -containersize 344 -containerchecksum 29318e38aa936803dc047ab3e9b98ffa901ba5a0b66848987960f01ed8e047e4314b15308c5bc6cd73ae58ab312d236d76c91195462d790dcf91f263356ea5c6 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/typeoutfileinfo - name typeoutfileinfo.i386-freebsd category Package revision 25648 @@ -315925,7 +329315,7 @@ catalogue-version 0.21 name tzplot category Package -revision 58558 +revision 64537 shortdesc Plot graphs with TikZ abbreviations relocated 1 longdesc This is a LaTeX package that provides TikZ-based macros to make @@ -315935,26 +329325,29 @@ longdesc but using the package will hopefully make drawing easier, longdesc especially when drawing repeatedly. The macros were chosen and longdesc developed with an emphasis on drawing graphs in economics. The longdesc package depends on TikZ, xparse, and expl3. -containersize 15072 -containerchecksum 21705dacc5923685b56c47098df79313b94d95040210eb812da48fe3aa4d405a0d2292f395fbe3d88b2da39ca325653ab2c551faff46f34f912e2830736f09f1 -doccontainersize 860984 -doccontainerchecksum b957597b7a38652e6f510e21611def7bfd05f1302bba1bfe1cdeca62f9d0ee6ae6b21abd31c414a43048963e8d4f19ffeb13d18d4ade97a6ab0aef3a2d524522 -docfiles size=271 +containersize 25292 +containerchecksum 78d2a67470340caaf6ee286f0dbfb9b8706cd4b0a689a64592c11f6b8a5108a61d33a24d36262aa5b802b8893ba440365fcd1280eac4cf7d3e514f6820ad21ca +doccontainersize 1249916 +doccontainerchecksum 853cb61ef10c91e1392c23e2b4d389f0cf572b692a6eafb8bb9af35ad9b2f1e7a8630ec1df6faf1ac1bc83e88dca0146519f571917ed9ed57e6ded912fecd895 +docfiles size=400 RELOC/doc/latex/tzplot/README.txt details="Readme" - RELOC/doc/latex/tzplot/tzplot-doc-A-v1.0.1.tex - RELOC/doc/latex/tzplot/tzplot-doc-B-v1.0.1.tex - RELOC/doc/latex/tzplot/tzplot-doc-C-v1.0.1.tex - RELOC/doc/latex/tzplot/tzplot-doc-D-v1.0.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-A-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-B-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-C-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-C1-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-C2-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-D-v2.1.tex + RELOC/doc/latex/tzplot/tzplot-doc-E-v2.1.tex RELOC/doc/latex/tzplot/tzplot-doc.pdf details="Package documentation" RELOC/doc/latex/tzplot/tzplot-doc.tex RELOC/doc/latex/tzplot/tzplot-oblivoirpartstyle.tex RELOC/doc/latex/tzplot/tzplot.ist -runfiles size=28 +runfiles size=58 RELOC/tex/latex/tzplot/tzplot.sty catalogue-ctan /graphics/pgf/contrib/tzplot catalogue-license lppl1.3c catalogue-topics graphics graphics-plotfn pgf-tikz expl3 maths -catalogue-version 1.0.1 +catalogue-version 2.1 name uaclasses category Package @@ -316029,7 +329422,7 @@ catalogue-version 12.12 name uantwerpendocs category Package -revision 58669 +revision 64165 shortdesc Course texts, master theses, and exams in University of Antwerp style relocated 1 longdesc These class files implement the house style of the University @@ -316038,11 +329431,11 @@ longdesc Engineering. Using these class files will make it easy for you longdesc to make and keep your documents compliant to this version and longdesc future versions of the house style of the University of longdesc Antwerp. -containersize 6473664 -containerchecksum 45f3e26a15fa98f8a2bd890b8ef63124e135c57b688327f3baef90711e5036615cc832d83b72c91fe10d567a866aec79206932c8aa4c5de6a51af05ed76bf184 -doccontainersize 4390200 -doccontainerchecksum f93a96eb20dcb6c5be91047a3ceaee5a7fc232fa250c5fb0a15bdbe1f2f13431aec352d7bb0f89df91d4c536915d59f719fbfd78d1748115308d1d9726636bb6 -docfiles size=1158 +containersize 6475900 +containerchecksum af84032bd824c25b3246fe9dd92c5f059e91d1a631132c80a266516350a965aaf374c0a623e4cf9bfa20e65e9fe6d40a8450e5f872c515e95a6cd06b69f16ea3 +doccontainersize 4343048 +doccontainerchecksum 80afab05d2b18e1def918d712fafdde62d18d9ee2645fb49a7ebacffd204edce19fe0deccfc4d09dbb576b2456c180184e1b7e576c9f2af0fffff476c6e69a10 +docfiles size=1156 RELOC/doc/latex/uantwerpendocs/LICENSE RELOC/doc/latex/uantwerpendocs/README details="Readme" RELOC/doc/latex/uantwerpendocs/beamerthemeuantwerpenuserguide.pdf @@ -316062,12 +329455,14 @@ docfiles size=1158 RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example1.tex RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.pdf RELOC/doc/latex/uantwerpendocs/uantwerpenphdthesis-example2.tex -srccontainersize 39668 -srccontainerchecksum 93d0a3ea2d323958d15b714fc392cb2893d899e03d28d75c25272c355861244f5860f3aa8020663c20a51b7e8471c24815b9431646eaa552b2e44a125e3a07d1 -srcfiles size=50 + RELOC/doc/latex/uantwerpendocs/uantwerpenreport-example.pdf + RELOC/doc/latex/uantwerpendocs/uantwerpenreport-example.tex +srccontainersize 43988 +srccontainerchecksum 44083b34902ddff336673b4c5ce17938b0f3de645c847b9be64e46fba8be8783debba81250a451ed9aabf204ed448b58317d25b2bbcd83d2a7e83a172a0c6507 +srcfiles size=55 RELOC/source/latex/uantwerpendocs/uantwerpendocs.dtx RELOC/source/latex/uantwerpendocs/uantwerpendocs.ins -runfiles size=3145 +runfiles size=3147 RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-01.jpg RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-02.jpg RELOC/tex/latex/uantwerpendocs/Images/uantwerpen-03.jpg @@ -316396,15 +329791,21 @@ runfiles size=3145 RELOC/tex/latex/uantwerpendocs/beamerouterthemeuantwerpen.sty RELOC/tex/latex/uantwerpendocs/beamerthemeuantwerpen.sty RELOC/tex/latex/uantwerpendocs/uantwerpenbamathesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpencolorlogoscheme.sty + RELOC/tex/latex/uantwerpendocs/uantwerpencommonoptions.clo RELOC/tex/latex/uantwerpendocs/uantwerpencoursetext.cls + RELOC/tex/latex/uantwerpendocs/uantwerpendocs-degree.data + RELOC/tex/latex/uantwerpendocs/uantwerpendocs-doctype.data + RELOC/tex/latex/uantwerpendocs/uantwerpendocs-en.data + RELOC/tex/latex/uantwerpendocs/uantwerpendocs-nl.data RELOC/tex/latex/uantwerpendocs/uantwerpenexam.cls RELOC/tex/latex/uantwerpendocs/uantwerpenletter.cls - RELOC/tex/latex/uantwerpendocs/uantwerpenmasterthesis.cls RELOC/tex/latex/uantwerpendocs/uantwerpenphdthesis.cls + RELOC/tex/latex/uantwerpendocs/uantwerpenreport.cls catalogue-ctan /macros/latex/contrib/uantwerpendocs catalogue-license lppl1.3 catalogue-topics class dissertation essay letter exam std-conform -catalogue-version 3.2 +catalogue-version 4.4 name uassign category Package @@ -316569,7 +329970,7 @@ catalogue-version 0.03 name ucharclasses category Package -revision 58029 +revision 64782 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 @@ -316577,15 +329978,15 @@ longdesc one Unicode block to another in the text of a document. This longdesc way, you can write a document with no explicit font selection, longdesc but a series of rules of the form "when entering block ..., longdesc switch font to use ...". -containersize 8772 -containerchecksum 2b4a160c145fa6e4d73be4f0590d73a302655bf4274822219c5b41e145a8dc5076b3b8bf39dda488a5cec80329290db6f3dce431733ed8b4b9c59bd22a0187d5 -doccontainersize 142052 -doccontainerchecksum 4d715b69d34dd6a2eb485aa4098e51f2f72213ba5972bb51bb0fd60bbdbc3db5846f87c859d77e694b2d55be4475bdabf3bb507020480f68f7b5f3884dd3382c -docfiles size=42 +containersize 9188 +containerchecksum 41e9f5323b62d529f0b0ddd1ae9c5d613df19190a2a666e1c1b35cadd8bd5411487ecee1419b7dc7f06183181f68ecbb8bf813537c6e711f926fa99fa74f249b +doccontainersize 143504 +doccontainerchecksum 52fb328befc004024d10d4222eaa7d6d3d179523bfdd48ca8453d6023c118f328a1981b69c805660ee4ddef95df3b5b71e1c85f59f3cae92ac74898f50b52206 +docfiles size=43 RELOC/doc/xelatex/ucharclasses/README details="Readme" RELOC/doc/xelatex/ucharclasses/ucharclasses.pdf details="Package documentation" RELOC/doc/xelatex/ucharclasses/ucharclasses.tex -runfiles size=9 +runfiles size=10 RELOC/tex/xelatex/ucharclasses/ucharclasses.sty catalogue-contact-bugs https://github.com/Pomax/ucharclasses/issues catalogue-contact-development https://github.com/Pomax/ucharclasses @@ -316595,11 +329996,11 @@ catalogue-contact-support https://github.com/Pomax/ucharclasses/issues catalogue-ctan /macros/xetex/latex/ucharclasses catalogue-license pd catalogue-topics xetex font-supp -catalogue-version 2.4 +catalogue-version 2.6 name ucs category Package -revision 35853 +revision 64114 shortdesc Extended UTF-8 input encoding support for LaTeX relocated 1 longdesc The bundle provides the ucs package, and utf8x.def, together @@ -316612,18 +330013,19 @@ longdesc various options, which permits use of non-ASCII characters when longdesc coding mathematical formulae. Note that the bundle previously longdesc had an alias "unicode"; that alias has now been withdrawn, and longdesc no package of that name now exists. -containersize 268852 -containerchecksum f3a7120c45b722746b0f3c90a189ebf42daccaf659385c16507e5fbfb0a2922b7fbc3b3e34f53fc61ce6cf0883c9c182ee47c95b3596fbf9029db6fdafc6ddcb -doccontainersize 903048 -doccontainerchecksum b1c57fc95a282e546fae1fb8267c450412ff92b5bb0510c335cfa7d8ace9691c4f6c47fdc0a87d6752052abca1325a86a44b777cefd65363bf4d9c95265de888 -docfiles size=616 - RELOC/doc/latex/ucs/FAQ details="Frequently Asked Questions" +containersize 307448 +containerchecksum 440156f8c6d1f43524225c99adc58b63f383e2d28dd2a79af0d881545d96debf3f3eadaa0682c5f3de12cabee109912ae699c5d3f9d5e48bc4a43b14b210288e +doccontainersize 1215552 +doccontainerchecksum 23eb57ebc1bf27d6406d883caf8ab060d4d4c7e8caeb982781f7cdd719d50aed316a2c72f01934a8f0e16a6ccf6df62598038743a026ac1f46f4be731b020c2f +docfiles size=676 + RELOC/doc/latex/ucs/FAQ.txt details="Frequently Asked Questions" RELOC/doc/latex/ucs/GNUmakefile - RELOC/doc/latex/ucs/INSTALL details="Installation details" - RELOC/doc/latex/ucs/LICENSE - RELOC/doc/latex/ucs/README details="Bundle readme" + RELOC/doc/latex/ucs/INSTALL.txt details="Installation details" + RELOC/doc/latex/ucs/LICENSE.txt RELOC/doc/latex/ucs/README.TEXLIVE - RELOC/doc/latex/ucs/VERSION + RELOC/doc/latex/ucs/README.txt details="Bundle readme" + RELOC/doc/latex/ucs/VERSION.txt + RELOC/doc/latex/ucs/cenccmn.tex RELOC/doc/latex/ucs/config/ascii.ucf RELOC/doc/latex/ucs/config/boxdraw.ucf RELOC/doc/latex/ucs/config/braille.ucf @@ -316663,14 +330065,26 @@ docfiles size=616 RELOC/doc/latex/ucs/latexout.pl RELOC/doc/latex/ucs/ltxmacrs.txt RELOC/doc/latex/ucs/makeunidef.pl - RELOC/doc/latex/ucs/ucs.dtx - RELOC/doc/latex/ucs/ucs.ins RELOC/doc/latex/ucs/ucs.pdf details="Package documentation" - RELOC/doc/latex/ucs/unsupported/README details="Bundle readme" + RELOC/doc/latex/ucs/unsupported/README.txt details="Bundle readme" RELOC/doc/latex/ucs/unsupported/sym-to-fontenc.txt RELOC/doc/latex/ucs/unsupported/tables.inc RELOC/doc/latex/ucs/unsupported/u2ps -runfiles size=704 + RELOC/doc/latex/ucs/utils/UnicodeT.sfd +srccontainersize 40864 +srccontainerchecksum 0431c552de865e50fcbcf19d147a99c125fef807a0e462c31a9a1055afde3ea4894cb29658d473257ffe9ba5d8ef692d37b0021514f49c218417d531160f24d0 +srcfiles size=64 + RELOC/source/latex/ucs/ucs.dtx + RELOC/source/latex/ucs/ucs.ins +runfiles size=742 + RELOC/fonts/enc/dvips/ucs/cp1252.enc + RELOC/fonts/enc/dvips/ucs/tengwarDS.enc + RELOC/tex/latex/ucs/autofe.sty + RELOC/tex/latex/ucs/c00enc.def + RELOC/tex/latex/ucs/c10enc.def + RELOC/tex/latex/ucs/c40enc.def + RELOC/tex/latex/ucs/c42enc.def + RELOC/tex/latex/ucs/c61enc.def RELOC/tex/latex/ucs/data/uni-0.def RELOC/tex/latex/ucs/data/uni-1.def RELOC/tex/latex/ucs/data/uni-100.def @@ -316735,7 +330149,9 @@ runfiles size=704 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-166.def RELOC/tex/latex/ucs/data/uni-167.def + RELOC/tex/latex/ucs/data/uni-171.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 @@ -316790,6 +330206,7 @@ runfiles size=704 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-263.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 @@ -316820,6 +330237,7 @@ runfiles size=704 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-507.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 @@ -316849,57 +330267,49 @@ runfiles size=704 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/ldvarial.fd + RELOC/tex/latex/ucs/ldvc2000.fd + RELOC/tex/latex/ucs/ldvenc.def + RELOC/tex/latex/ucs/letc2000.fd + RELOC/tex/latex/ucs/letenc.def + RELOC/tex/latex/ucs/letgfzem.fd + RELOC/tex/latex/ucs/letjiret.fd + RELOC/tex/latex/ucs/lklenc.def + RELOC/tex/latex/ucs/lklkli.fd + RELOC/tex/latex/ucs/ltaarial.fd + RELOC/tex/latex/ucs/ltac2000.fd + RELOC/tex/latex/ucs/ltaenc.def + RELOC/tex/latex/ucs/ltgc2000.fd + RELOC/tex/latex/ucs/ltgenc.def + RELOC/tex/latex/ucs/ltlcmr.fd + RELOC/tex/latex/ucs/ltlenc.def + RELOC/tex/latex/ucs/ltwdsnol.fd + RELOC/tex/latex/ucs/ltwdsque.fd + RELOC/tex/latex/ucs/ltwdssin.fd + RELOC/tex/latex/ucs/ltwenc.def + RELOC/tex/latex/ucs/lucarial.fd + RELOC/tex/latex/ucs/lucc2000.fd + RELOC/tex/latex/ucs/lucenc.def + RELOC/tex/latex/ucs/mkrenc.def + RELOC/tex/latex/ucs/mkrezra.fd + RELOC/tex/latex/ucs/mkrhadas.fd + RELOC/tex/latex/ucs/mkromega.fd + RELOC/tex/latex/ucs/mkrrashi.fd + RELOC/tex/latex/ucs/t2dcmr.fd + RELOC/tex/latex/ucs/t2denc.def 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 + RELOC/tex/latex/ucs/xscmr.fd + RELOC/tex/latex/ucs/xsenc.def +catalogue-contact-bugs https://github.com/LaTeX-Package-Repositories/ucs/issues +catalogue-contact-repository https://github.com/LaTeX-Package-Repositories/ucs catalogue-ctan /macros/latex/contrib/ucs catalogue-license lppl1.3 catalogue-topics inputenc unicode -catalogue-version 2.2 +catalogue-version 2.3 name ucsmonograph category Package @@ -316960,6 +330370,47 @@ catalogue-license lppl1.3 catalogue-topics dissertation catalogue-version 3.2 +name udes-genie-these +category Package +revision 65039 +shortdesc A thesis class file for the Faculte de genie at the Universite de Sherbrooke +relocated 1 +longdesc The udes-genie-these class can be used for Ph.D. theses, +longdesc master's theses and project definitions at the Faculte de genie +longdesc of the Universite de Sherbrooke (Quebec, Canada). The class +longdesc file is coherent with the latest version of the Protocole de +longdesc redaction aux etudes superieures which is available on the +longdesc faculte's intranet. The class file documentation is in French, +longdesc the language of the typical user at the Universite de +longdesc Sherbrooke. An example of use is also distributed with the +longdesc documentation. +containersize 7176 +containerchecksum bdf71b8e6bbb678e7cdb99a58ab76b9dd2dfebe21764dc19429c9ffd51101c0a633ee3b39099d4bc00f4658f8462844804df53cef01598f92360a1dbd00c6aa8 +doccontainersize 131424 +doccontainerchecksum b4f1ffe3a5be0bf1da45235d17c95fe60c1f48e9c80989f527ee987b5bd2edbfa825b676c281feade4bfccb1cfdd706fad438b2124fadf62856815273c330c4c +docfiles size=42 + RELOC/doc/latex/udes-genie-these/Exemple/acronymes.tex + RELOC/doc/latex/udes-genie-these/Exemple/document.tex + RELOC/doc/latex/udes-genie-these/Exemple/lexique.tex + RELOC/doc/latex/udes-genie-these/Exemple/merci.tex + RELOC/doc/latex/udes-genie-these/Exemple/references.bib + RELOC/doc/latex/udes-genie-these/Exemple/resume-anglais.tex + RELOC/doc/latex/udes-genie-these/Exemple/resume-francais.tex + RELOC/doc/latex/udes-genie-these/Exemple/symboles.tex + RELOC/doc/latex/udes-genie-these/README.md details="Readme" + RELOC/doc/latex/udes-genie-these/udes-genie-these.pdf details="Package documentation" language="fr-ca" +srccontainersize 15124 +srccontainerchecksum 04e7e7593831e2d93be682dd8e20f3245281f8fedf04ab2eb4a7771a5d2a4e277358deaa48981bba6478bc2dc6ed25ce14f9a627dbd9002ef4f43ef41bbba336 +srcfiles size=18 + RELOC/source/latex/udes-genie-these/udes-genie-these.dtx + RELOC/source/latex/udes-genie-these/udes-genie-these.ins +runfiles size=11 + RELOC/tex/latex/udes-genie-these/udes-genie-these.cls +catalogue-ctan /macros/latex/contrib/udes-genie-these +catalogue-license lppl1.3c +catalogue-topics class dissertation french +catalogue-version 3.0.1 + name udesoftec category Package revision 57866 @@ -317090,6 +330541,53 @@ catalogue-license lppl1.3 catalogue-topics dissertation chinese catalogue-version 1.1.0 +name ufrgscca +category Package +revision 65661 +shortdesc A bundle for undergraduate students final work/report (tcc) at UFRGS/EE +relocated 1 +longdesc This bundled is aimed at producing undergraduate students' +longdesc final work/report at UFRGS/EE (Engineering School at the +longdesc Federal University of Rio Grande do Sul), closely following +longdesc ABNT rules (Brazilian Association for Technical Norms). It is +longdesc composed of a main class, ufrgscca, and a set of auxiliary +longdesc packages, some of which can be used independently. +containersize 32240 +containerchecksum a3e59608e4db63d9329dea8d1bd3dc7f934752abab97fb3d2eb717de2d039c2df5c5564b35e3311497b97c42621ddb988a323bf18718b71e6a42eece28f5f6cc +doccontainersize 484684 +doccontainerchecksum b02e19ce8e275537a8aa59d8f5f66fb467b2aefde325279f0e05c0c19d5f6cf51089cc76f2c0b6bf8990ab4584a27393eb086bb738b305f96dac5c4a54a0130f +docfiles size=153 + RELOC/doc/latex/ufrgscca/README.md details="Readme" + RELOC/doc/latex/ufrgscca/ufrgscca.pdf details="Package documentation" + RELOC/doc/latex/ufrgscca/ufrgscca.tex +runfiles size=60 + RELOC/tex/latex/ufrgscca/ufrgscca-abnt.sty + RELOC/tex/latex/ufrgscca/ufrgscca-coord.sty + RELOC/tex/latex/ufrgscca/ufrgscca-core.sty + RELOC/tex/latex/ufrgscca/ufrgscca-cover.sty + RELOC/tex/latex/ufrgscca/ufrgscca-curr-graph.sty + RELOC/tex/latex/ufrgscca/ufrgscca-curr-tab.sty + RELOC/tex/latex/ufrgscca/ufrgscca-curr.sty + RELOC/tex/latex/ufrgscca/ufrgscca-en-base.def + RELOC/tex/latex/ufrgscca/ufrgscca-en-coord.def + RELOC/tex/latex/ufrgscca/ufrgscca-en-core.def + RELOC/tex/latex/ufrgscca/ufrgscca-en-forms.def + RELOC/tex/latex/ufrgscca/ufrgscca-forms.sty + RELOC/tex/latex/ufrgscca/ufrgscca-gen.sty + RELOC/tex/latex/ufrgscca/ufrgscca-lists.sty + RELOC/tex/latex/ufrgscca/ufrgscca-ppc.sty + RELOC/tex/latex/ufrgscca/ufrgscca-ptBR-base.def + RELOC/tex/latex/ufrgscca/ufrgscca-ptBR-coord.def + RELOC/tex/latex/ufrgscca/ufrgscca-ptBR-core.def + RELOC/tex/latex/ufrgscca/ufrgscca-ptBR-forms.def + RELOC/tex/latex/ufrgscca/ufrgscca.cls +catalogue-contact-bugs https://github.com/alceu-frigeri/ufrgscca/issues +catalogue-contact-repository https://github.com/alceu-frigeri/ufrgscca +catalogue-ctan /macros/latex/contrib/ufrgscca +catalogue-license lppl1.3c gpl +catalogue-topics dissertation portuguese-br +catalogue-version 1.0.8 + name uhc category Package revision 16791 @@ -320414,6 +333912,32 @@ catalogue-license lppl catalogue-topics dissertation catalogue-version 2.25 +name ukbill +category Package +revision 65485 +shortdesc A class for typesetting UK legislation +relocated 1 +longdesc This package provides formatting to easily typeset draft UK +longdesc legislation. The libre font Palatine Parliamentary is required +longdesc to use this package. +containersize 4864 +containerchecksum 54b8ce31488903e75012baf77c7fbcf3bce777794123c3274e4eae890606991ae5de875acde85def4c3757ed54f78beb6ad1d3b331704371cd0ff5198dd91ccd +doccontainersize 192696 +doccontainerchecksum 7ff4421360231f084977382b06677a3e103db4123fc001f7c63e16ed5e40289630312e331c5628ec8a714b9cf5ad53207dfbe2b363bb9fb3e1610d007c1ca800 +docfiles size=59 + RELOC/doc/latex/ukbill/README details="Readme" + RELOC/doc/latex/ukbill/immigration-bill.pdf details="Example of use" + RELOC/doc/latex/ukbill/immigration-bill.tex + RELOC/doc/latex/ukbill/ukbill-documentation.pdf details="Package documentation" + RELOC/doc/latex/ukbill/ukbill-documentation.tex +runfiles size=5 + RELOC/tex/latex/ukbill/ukbill.cls +catalogue-contact-home https://github.com/ezgranet/ukbill +catalogue-ctan /macros/latex/contrib/ukbill +catalogue-license lppl1.3c +catalogue-topics legal +catalogue-version 1.0.2 + name ukrhyph category Package revision 21081 @@ -320552,15 +334076,6 @@ containerchecksum 5e3d945078af70f041ede7d961c19291b316c2215200ddd0893e5efc26d5e7 binfiles arch=armhf-linux size=1 bin/armhf-linux/ulqda -name ulqda.i386-cygwin -category Package -revision 13717 -shortdesc i386-cygwin files of ulqda -containersize 336 -containerchecksum 9a7cc5541de010ea35ca5403f6eba70df09c81657be030282e9681755c10ca5717d5d0fbc35e62c5148de1e2e95788a64c3d09bfbae2d05ecfca8ce6280af59a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/ulqda - name ulqda.i386-freebsd category Package revision 16472 @@ -320606,14 +334121,14 @@ containerchecksum 0f8e7d3edb9c263c4d247c724f82d48798ab8291aca24b30cfb741355fc9f7 binfiles arch=universal-darwin size=1 bin/universal-darwin/ulqda -name ulqda.win32 +name ulqda.windows category Package -revision 15404 -shortdesc win32 files of ulqda -containersize 680 -containerchecksum ffc616410863964c5434bbdffdd5f7e4ed80de47f1f6ff1853efab3886b7e4aacd3160fe8dd3e65acb38969a895a64ff3edc0590209d90340472335b31d6eb40 -binfiles arch=win32 size=1 - bin/win32/ulqda.exe +revision 65891 +shortdesc windows files of ulqda +containersize 2308 +containerchecksum 728f25f1c515b1a579f29c5389ff134a1ac2d9aa008641b91d0dde657e9f0e8e6fd64caf9707fbf7c927cf029c7439dcf3b33ae8485794554d2c3c2a1b5363c7 +binfiles arch=windows size=2 + bin/windows/ulqda.exe name ulqda.x86_64-cygwin category Package @@ -320662,7 +334177,7 @@ binfiles arch=x86_64-solaris size=1 name ulthese category Package -revision 52972 +revision 60217 shortdesc Thesis class and templates for Universite Laval relocated 1 longdesc The package provides a class based on memoir to prepare theses @@ -320673,10 +334188,10 @@ longdesc for the various types of theses and memoirs offered at Laval. longdesc Please note that the documentation for the class and the longdesc comments in the templates are all written in French, the longdesc language of the target audience. -containersize 59892 -containerchecksum c2a3d8a837ecda20bf50c496b8506e6c7dc7d6308fa058e51f4b1dba858d76c391ab3b9faaff9cbbb39fea3696fc5a1c7daf9417f3c18b3eaef9fc7eb5383195 -doccontainersize 257936 -doccontainerchecksum adffed362b6ebe3bab7aa04563ca0de114917199893dd310578d372f6e4e67b84bae7e50658ebfd7bde270d4c3158ef9dda57c0c6855787fa3cde0102ef4153a +containersize 59872 +containerchecksum 23a9ad74b214612051104fb111808caf9c6bb2056f129265e77bc76370c293248a7903a5bc99183998061bb18409d86508cd488a4e82487726e17599f5948101 +doccontainersize 258940 +doccontainerchecksum f7e062e470c524746898e88e2f07cdbcc58c1bd3dd5c04b1f0f1e7e7e6c9fe9968ff68ef2f2a95f25405c7901d937a32ed92b752b6c74fa228237b08645a757c docfiles size=87 RELOC/doc/latex/ulthese/README.md details="Readme (in French)" language="fr" RELOC/doc/latex/ulthese/abstract.tex @@ -320697,8 +334212,8 @@ docfiles size=87 RELOC/doc/latex/ulthese/remerciements.tex RELOC/doc/latex/ulthese/resume.tex RELOC/doc/latex/ulthese/ulthese.pdf details="Package documentation" language="fr" -srccontainersize 27052 -srccontainerchecksum 652cd812d9916f855ceb5983b1cfecfa9a7fd724939933ef0159c6ee4dd9199e9923cd09511598b30c8f5355845fb3764363e110bd69d02df4f62c6f69ebbc99 +srccontainersize 27228 +srccontainerchecksum 545c1b5e53c093a1ea29ca73fdd4c3c355dc34a225651d774c31a6dc64acb2dc20d78421fc939bae4d324d6c6e5ce2e4f82ddac6ed935ec8de7e1f530aa5f30d srcfiles size=28 RELOC/source/latex/ulthese/ulthese.dtx RELOC/source/latex/ulthese/ulthese.ins @@ -320711,7 +334226,7 @@ catalogue-contact-repository https://gitlab.com/vigou3/ulthese catalogue-ctan /macros/latex/contrib/ulthese catalogue-license lppl1.3c catalogue-topics dissertation class french -catalogue-version 5.3 +catalogue-version 5.3a name umbclegislation category Package @@ -320883,7 +334398,7 @@ catalogue-version 0.2 name umtypewriter category Package -revision 18651 +revision 64443 shortdesc Fonts to typeset with the xgreek package relocated 1 longdesc The UMTypewriter font family is a monospaced font family that @@ -320891,9 +334406,13 @@ longdesc was built from glyphs from the CB Greek fonts, the CyrTUG longdesc Cyrillic alphabet fonts ("LH"), and the standard Computer longdesc Modern font family. It contains four OpenType fonts which are longdesc required for use of the xgreek package for XeLaTeX. -containersize 338592 -containerchecksum 44dc925eccfa4010566bc751bf202fbea6b369beb57c6851bffce2dab757bbcf415d601de44f97e929e046cdba1720ecd7bb6ca12c992674d33b43b9e0ce77ff -runfiles size=197 +containersize 340604 +containerchecksum e62f573d1dd79b27a9ed563a9081c94eeb483fe9904cf080209a198793bbd845e4ed29eb5849165a3880338a07dade313762c02a0e37c8b518752edede622950 +doccontainersize 672 +doccontainerchecksum 8d8044cb196584c363006bafb7e31c023e1761bb23070ed56fa3eb84040861fa29cfae479ecad01050b9cea0f5ef408d551a34809362456e31fd53513d1bc90f +docfiles size=1 + RELOC/doc/fonts/umtypewriter/README +runfiles size=200 RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Bold.otf RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-BoldItalic.otf RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Italic.otf @@ -320902,7 +334421,7 @@ runfiles size=197 catalogue-ctan /fonts/umtypewriter catalogue-license ofl catalogue-topics font font-mono font-otf font-greek font-cyrillic font-cm -catalogue-version 001.002 +catalogue-version 1.1 name unam-thesis category Package @@ -321022,6 +334541,52 @@ catalogue-license lppl1.3 catalogue-topics dissertation catalogue-version 2.1 +name unbtex +category Package +revision 64634 +shortdesc A class for theses at University of Brasilia (UnB) +relocated 1 +longdesc This package provides a class based on abnTeX and compatible +longdesc with pdflatex and biber to prepare bachelor, master, and +longdesc doctoral theses for the University of Brasilia (UnB), Brazil. +longdesc The class also comes with a template for the various types of +longdesc theses for undergraduate and graduate programs at UnB. The +longdesc documentation for the class and the comments in the templates +longdesc are all written in Portuguese, the language of the target +longdesc audience. +containersize 5908 +containerchecksum 156376638cfaeb2b73d576d83ec48aecb12083981e7916db7ea9cea19edbd1f62c1a4e7b15c60c35930737f317b47b321a551625a083481e12c5da11f50b7774 +doccontainersize 1427156 +doccontainerchecksum 6e8ff704903c4c397a9fa36fdd8272166482430cd519e6b538692da29af54cc2f2e8f9cd283278a394b578c782323ca3d902a01d24c6fc713206c7d70ee54fde +docfiles size=400 + RELOC/doc/latex/unbtex/README.md details="Readme" + RELOC/doc/latex/unbtex/unbtex-example.pdf details="Example of use" language="pt-br" + RELOC/doc/latex/unbtex/unbtex-example.tex + RELOC/doc/latex/unbtex/unbtex-example/anexo-a.tex + RELOC/doc/latex/unbtex/unbtex-example/anexo-b.tex + RELOC/doc/latex/unbtex/unbtex-example/apendice-a.tex + RELOC/doc/latex/unbtex/unbtex-example/apendice-b.tex + RELOC/doc/latex/unbtex/unbtex-example/capitulo1.tex + RELOC/doc/latex/unbtex/unbtex-example/capitulo2.tex + RELOC/doc/latex/unbtex/unbtex-example/capitulo3.tex + RELOC/doc/latex/unbtex/unbtex-example/capitulo4.tex + RELOC/doc/latex/unbtex/unbtex-example/capitulo5.tex + RELOC/doc/latex/unbtex/unbtex-example/codigos/ModalReduction.jl + RELOC/doc/latex/unbtex/unbtex-example/codigos/controle.m + RELOC/doc/latex/unbtex/unbtex-example/codigos/controleSmithPredictor.py + RELOC/doc/latex/unbtex/unbtex-example/figuras/1280px-LaTeX-logo.png + RELOC/doc/latex/unbtex/unbtex-example/figuras/capa_fundo.pdf + RELOC/doc/latex/unbtex/unbtex-example/figuras/img-grafico.pdf + RELOC/doc/latex/unbtex/unbtex-example/figuras/img-marca.pdf + RELOC/doc/latex/unbtex/unbtex-example/references.bib + RELOC/doc/latex/unbtex/unbtex-example/referencias.bib +runfiles size=5 + RELOC/tex/latex/unbtex/unbtex.cls +catalogue-ctan /macros/latex/contrib/unbtex +catalogue-license lppl1.3 +catalogue-topics class doc-templ dissertation portuguese-br +catalogue-version 1.2 + name undergradmath category Package revision 57286 @@ -321126,22 +334691,22 @@ catalogue-topics typesetting name undolabl category Package -revision 36681 +revision 65846 shortdesc Override existing labels relocated 1 longdesc The package allows the user to override existing labels (for longdesc example, those generated automatically). -containersize 2356 -containerchecksum b753a9d8a4809118a76b9651c5c7994aebe5c95019b408c59b356135ab34fe4e463099280ea43fc4e47692e32af9570be929999a661fe80ce993f25b85547e10 -doccontainersize 355088 -doccontainerchecksum d7aa3497adacd6a5e10dfc9ac19762ba3fdabc74eb1d50c22dcd05e8d4a02d0723efe3c7e297050ab607525ad3611cddf87cc50d640394c4489d765fffbbe8b8 -docfiles size=91 +containersize 2368 +containerchecksum 7a2a13c7cf9a5920278bfcc57c6670a3abe704ffe01f3d90e253dc974c601da9a65366e7dc49785c398e3040771f45fa67365ba4e2b32426380c70556e4337a0 +doccontainersize 357820 +doccontainerchecksum dff0446c4efbc3ea2a8e379718ec977c53aa54c46c6703cc774db74e9e3d85c49dc83cbe0f1d8cd6450899af5929480968fea873333aea321d8742cb328105e1 +docfiles size=94 RELOC/doc/latex/undolabl/README details="Readme" RELOC/doc/latex/undolabl/undolabl-example.pdf details="Package examples" RELOC/doc/latex/undolabl/undolabl-example.tex RELOC/doc/latex/undolabl/undolabl.pdf details="Package documentation" -srccontainersize 11852 -srccontainerchecksum dbbfbc331830b1d006d746a7ad0a7578ebeb805f7c8b1fc54cc5a502c878fc8b026ff781e05b5510b2331be529eabbd6b0308811b5471f9e4571cf1172a011b8 +srccontainersize 11268 +srccontainerchecksum b5c0b41e71540e0a0b5cd7baacd702403b4611446a208186caa8f98eb840ae093b852e7b64451488ab7bdba4f3f5bcb8fadb79a9c81015de4989ffed1ea1a743 srcfiles size=13 RELOC/source/latex/undolabl/undolabl.drv RELOC/source/latex/undolabl/undolabl.dtx @@ -321151,7 +334716,7 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/undolabl catalogue-license lppl1.3 catalogue-topics label-ref -catalogue-version 1.0l +catalogue-version 1.0m name unfonts-core category Package @@ -321232,6 +334797,79 @@ catalogue-ctan /fonts/unfonts-extra catalogue-license gpl2 catalogue-topics font-ttf korean +name uni-titlepage +category Package +revision 64306 +shortdesc Universal titlepages with configuration options and predefined styles +relocated 1 +longdesc Creation of title pages is something most authors should not +longdesc have to do. But reality is not perfect, so a lot of authors +longdesc have to do it. This package not only provides several pages for +longdesc the title instead of only one -- at least five are typical for +longdesc a thesis! --, it also provides a bunch of predefined titlepage +longdesc styles with several standard elements, and optionally +longdesc additional elements. +containersize 10592 +containerchecksum b1d374a39e3a46bad0ae1e9f0c47ac0853edb388d9026175340172484f6abc15babbe852e1656986160dff7262c8275b48ff042c3a4c014821117d2787ab6cda +doccontainersize 1840796 +doccontainerchecksum 6aace438f49fc5e2414e6ed4f452302116d439d18ad6b6de11a1919f98e25e7892315db832031f44418f62a89537913ed73b10f8333b7d7c872d8bbc18dfe9aa +docfiles size=549 + RELOC/doc/latex/uni-titlepage/LICENSE.md + RELOC/doc/latex/uni-titlepage/README.md details="Readme" + RELOC/doc/latex/uni-titlepage/titlepage-DHBW.pdf details="Example of use (style DHBW)" + RELOC/doc/latex/uni-titlepage/titlepage-DHBW.tex + RELOC/doc/latex/uni-titlepage/titlepage-JT-Aufsaetze.pdf details="Example of use (style JT-Aufsaetze)" + RELOC/doc/latex/uni-titlepage/titlepage-JT-Aufsaetze.tex + RELOC/doc/latex/uni-titlepage/titlepage-JT-Geschichte.pdf details="Example of use (style JT-Geschichte)" + RELOC/doc/latex/uni-titlepage/titlepage-JT-Geschichte.tex + RELOC/doc/latex/uni-titlepage/titlepage-JT-Typography.pdf details="Example of use (style JT-Typography)" + RELOC/doc/latex/uni-titlepage/titlepage-JT-Typography.tex + RELOC/doc/latex/uni-titlepage/titlepage-KIT.pdf details="Example of use (style KIT)" + RELOC/doc/latex/uni-titlepage/titlepage-KIT.tex + RELOC/doc/latex/uni-titlepage/titlepage-KOMAScript.pdf details="Example of use (style KOMAScript)" + RELOC/doc/latex/uni-titlepage/titlepage-KOMAScript.tex + RELOC/doc/latex/uni-titlepage/titlepage-Markus-1.pdf details="Example of use (style Markus-1)" + RELOC/doc/latex/uni-titlepage/titlepage-Markus-1.tex + RELOC/doc/latex/uni-titlepage/titlepage-Markus-2.pdf details="Example of use (style Markus-2)" + RELOC/doc/latex/uni-titlepage/titlepage-Markus-2.tex + RELOC/doc/latex/uni-titlepage/titlepage-Spacer.pdf details="Example of use (style Spacer)" + RELOC/doc/latex/uni-titlepage/titlepage-Spacer.tex + RELOC/doc/latex/uni-titlepage/titlepage-TU-DD.pdf details="Example of use (style TU-DD)" + RELOC/doc/latex/uni-titlepage/titlepage-TU-DD.tex + RELOC/doc/latex/uni-titlepage/titlepage-TU-HH.pdf details="Example of use (style TU-HH)" + RELOC/doc/latex/uni-titlepage/titlepage-TU-HH.tex + RELOC/doc/latex/uni-titlepage/titlepage-UKoLa.pdf + RELOC/doc/latex/uni-titlepage/titlepage-UKoLa.tex + RELOC/doc/latex/uni-titlepage/titlepage-WWUM.pdf details="Example of use (style WWUM)" + RELOC/doc/latex/uni-titlepage/titlepage-WWUM.tex + RELOC/doc/latex/uni-titlepage/uni-titlepage.pdf details="Package documentation" +srccontainersize 24396 +srccontainerchecksum d5b84ea0f7013f419d3d3ba696b55b083eb06faf3adba6ece76a38649b9456ff7c9fda0a7ee5c3e3885f16732199c9dedd88dbfa89b3f443edd20a0f6cb92dfb +srcfiles size=34 + RELOC/source/latex/uni-titlepage/uni-titlepage.drv + RELOC/source/latex/uni-titlepage/uni-titlepage.dtx +runfiles size=30 + RELOC/tex/latex/uni-titlepage/title-DHBW.def + RELOC/tex/latex/uni-titlepage/title-JT-Aufsaetze.def + RELOC/tex/latex/uni-titlepage/title-JT-Geschichte.def + RELOC/tex/latex/uni-titlepage/title-JT-Typography.def + RELOC/tex/latex/uni-titlepage/title-KIT.def + RELOC/tex/latex/uni-titlepage/title-KOMAScript.def + RELOC/tex/latex/uni-titlepage/title-Markus-1.def + RELOC/tex/latex/uni-titlepage/title-Markus-2.def + RELOC/tex/latex/uni-titlepage/title-Spacer.def + RELOC/tex/latex/uni-titlepage/title-TU-DD.def + RELOC/tex/latex/uni-titlepage/title-TU-HH.def + RELOC/tex/latex/uni-titlepage/title-UKoLa.def + RELOC/tex/latex/uni-titlepage/title-WWUM.def + RELOC/tex/latex/uni-titlepage/uni-titlepage.sty +catalogue-contact-home https://github.com/komascript/uni-titlepage +catalogue-contact-repository https://github.com/komascript/uni-titlepage.git +catalogue-ctan /macros/latex/contrib/uni-titlepage +catalogue-license lppl1.3c +catalogue-topics titlepage +catalogue-version 1.1a + name uni-wtal-ger category Package revision 31541 @@ -321290,7 +334928,7 @@ catalogue-version 0.2 name unicode-alphabets category Package -revision 54236 +revision 66225 shortdesc Macros for using characters from Unicode's Private Use Area relocated 1 longdesc While Unicode supports the vast majority of use cases, there @@ -321302,10 +334940,10 @@ longdesc configuring a number of macros for using various PUA character longdesc sets in LaTeX (AGL, CYFI, MUFI, SIL, TITUS, UCSUR, UNZ), to longdesc enable transcription and display of medieval and other longdesc documents. -containersize 43852 -containerchecksum e75df935a1a0895f5bda9854042a38c92627240f1318bdeb1e39428f50133dbe0b606e66b1bea6f73681fb40ed73220c5e26a60eb4ad10b6106c3e16d778e4be -doccontainersize 701236 -doccontainerchecksum 317ddd08268f38c197136d2755fa00738270a1e179eb8ea92ada50edc69da61fff17359f38fe33afa1e30fafff23117bf98895b9218bffb7b2242099d5f5aefd +containersize 44072 +containerchecksum 5a4b043778811bfec1ecc847ee191dc64b3f99ae0adb8fda2b16fdfddabf195133d53acf295fb18dd70460e1c1d200d3e6889815edabcdd0bca9d007d7a309f1 +doccontainersize 703320 +doccontainerchecksum ded2197bb621622c7f9947ce736814a6acb63ce86bd866792a8fe8e1f22a8131ee12c785a81c764ab707e5bf1b2c99df73c1214ff71159e3c9fdd34ee7aef7cb docfiles size=185 RELOC/doc/latex/unicode-alphabets/README.md details="Readme" RELOC/doc/latex/unicode-alphabets/license.txt @@ -321354,7 +334992,7 @@ catalogue-version 0.01 name unicode-data category Package -revision 56768 +revision 64423 shortdesc Unicode data and loaders for TeX relocated 1 longdesc This bundle provides generic access to Unicode Consortium data @@ -321371,13 +335009,13 @@ longdesc data are distributed in accordance with the license stipulated longdesc by the Unicode Consortium. The bundle as a whole is longdesc co-ordinated by the LaTeX3 Project as a general resource for longdesc TeX users. -containersize 298404 -containerchecksum f966d643732bc6d9743d54cb2981e6420dd5bc33a3c2f43bf17f2f14afdfccf0ddd8068a13ce9547d60c8ee77559834f3cce97df8bd5d7252eebf978a3429b0c -doccontainersize 3820 -doccontainerchecksum 1093c6e78d8f8716cec8ed34444d5e95628c2d0be4b61cb3dae72563b2e3acfc1596b5e25dd8c101dbc8ffe15b7483a198c30f459eb76418381be3dc6caadbef +containersize 308592 +containerchecksum 64309fd507c7705b2ad0b78ef3b5c17c2891ffce3d9de34d4fe8380a61f80542dead54984293caec516f815de69b2d89e0bee930d979a87af6a187693e2c87b5 +doccontainersize 3844 +doccontainerchecksum 1219c454df7b3645b97a5fe6621c9666b3784297f26e0ff63696ddf7835f326b4a189a6a890b2416f12f29fd4b40de295c042a8d9b326cb7e22152b7b8f6ab79 docfiles size=3 RELOC/doc/generic/unicode-data/README.md details="Readme" -runfiles size=763 +runfiles size=789 RELOC/tex/generic/unicode-data/BidiBrackets.txt RELOC/tex/generic/unicode-data/BidiMirroring-5-1-0.txt RELOC/tex/generic/unicode-data/BidiMirroring.txt @@ -321400,11 +335038,11 @@ catalogue-contact-repository https://github.com/latex3/unicode-data catalogue-ctan /macros/generic/unicode-data catalogue-license lppl1.3c catalogue-topics latex3 unicode -catalogue-version 1.14 +catalogue-version 1.16 name unicode-math category Package -revision 56594 +revision 61719 shortdesc Unicode mathematics support for XeTeX and LuaTeX relocated 1 longdesc This package will provide a complete implementation of unicode @@ -321428,10 +335066,10 @@ longdesc recent versions of the fontspec, expl3, xpackages, ucharcat and longdesc lualatex-math packages. depend fontspec depend lm-math -containersize 42816 -containerchecksum f3682781aac853ae96d7f09131cb102832c16d6554a070da6c6a499c7e7cfee90f05ffaee0e30e6b2e2e1c9d7d7f0fa285b6912ec95f4ad318df3dc1f529b23b +containersize 42820 +containerchecksum 05dd4b08e8e766c2c8e719a12aa5a28259bc429fb1f1d05850e865ef258ab5e1372a785a2787098ea50bb31c852727ba8269ca656ce55ee0a7355fe4fd7344cc doccontainersize 1725064 -doccontainerchecksum ac7d2dbb883098b9ace6a1a99af61afa2498e7ee3e02131e4aef41eae6585061f04c181c0d73f23e126f8f2a5fa6f5ea6475af8ce6ccc1d9ccf8d2b82a22b1d4 +doccontainerchecksum c8d05fe09c6ed76f29978eff8b7688d8989865f6517f06a58acb899603265e499db5d962895b5b3a0b6bf8d235f29da88f76a3b7b35778953878d02f2910b524 docfiles size=461 RELOC/doc/latex/unicode-math/CHANGES.md RELOC/doc/latex/unicode-math/LICENSE @@ -321452,8 +335090,8 @@ docfiles size=461 RELOC/doc/latex/unicode-math/unimath-example.pdf details="Example of use" RELOC/doc/latex/unicode-math/unimath-symbols.ltx RELOC/doc/latex/unicode-math/unimath-symbols.pdf details="List of symbols defined by the package" -srccontainersize 37860 -srccontainerchecksum 13ae4f09246d2a4ea4f2595247a1b56955a905beb026dc78da37c07583388db387f66e574f1513ba89375f9e2e0ec1be0b65ad38e0364dd05404a7aed895bc2c +srccontainersize 37864 +srccontainerchecksum b1f21cf06c5ece08e75575cb2e23f7e9815c0670cdb2af0026c1037556e646e81c2103740bcb14e95375cf88b3a665afa3b24a4fd6c33f416c36f588649de79f srcfiles size=67 RELOC/source/latex/unicode-math/um-code-alphabets.dtx RELOC/source/latex/unicode-math/um-code-amsmath.dtx @@ -321482,27 +335120,68 @@ runfiles size=127 RELOC/tex/latex/unicode-math/unicode-math-table.tex RELOC/tex/latex/unicode-math/unicode-math-xetex.sty RELOC/tex/latex/unicode-math/unicode-math.sty -catalogue-contact-bugs http://github.com/wspr/unicode-math/issues -catalogue-contact-home http://wspr.io/unicode-math/ +catalogue-contact-bugs https://github.com/wspr/unicode-math/issues +catalogue-contact-home https://wspr.io/unicode-math/ catalogue-contact-repository https://github.com/wspr/unicode-math/ catalogue-ctan /macros/unicodetex/latex/unicode-math catalogue-license lppl1.3c catalogue-topics maths font-use luatex xetex unicode catalogue-version 0.8q +name unicodefonttable +category Package +revision 65009 +shortdesc A Unicode font table generator +relocated 1 +longdesc This package produces font tables for unicode fonts as well as +longdesc for 8bit fonts. The table layout can be adjusted in various +longdesc ways including restricting the range of output to show only a +longdesc portion of a specific font. To quickly produce a one-off table +longdesc there is a stand-alone version unicodefont.tex that asks you a +longdesc few questions and then generates the table --- somewhat similar +longdesc to nfssfont.tex for 8-bit fonts. +containersize 7900 +containerchecksum 9f876d1cb307627ec5b06d94fc4dd3c6bc2ddaf4850f4edb2cc81a133bbdd7eb09c0e553aab1aef57b551a84773379509899f628d77317087763f4a8f507596d +doccontainersize 1449712 +doccontainerchecksum 894fca56085ae53abd8b0f782b42ec075e0320e39a9c8590bbeb04cd36a3a9d8abf03c0e2d6d1250a96c734ccece9cdb0df76e5d6acb390a444a02a77c777ca8 +docfiles size=648 + RELOC/doc/latex/unicodefonttable/README.md details="Readme" + RELOC/doc/latex/unicodefonttable/TODO.md + RELOC/doc/latex/unicodefonttable/changes.txt + RELOC/doc/latex/unicodefonttable/l3doc-TUB.cls + RELOC/doc/latex/unicodefonttable/unicodefonttable-code.pdf + RELOC/doc/latex/unicodefonttable/unicodefonttable-code.tex + RELOC/doc/latex/unicodefonttable/unicodefonttable-doc.pdf details="Package documentation" + RELOC/doc/latex/unicodefonttable/unicodefonttable-doc.tex + RELOC/doc/latex/unicodefonttable/unicodefonttable-samples.pdf + RELOC/doc/latex/unicodefonttable/unicodefonttable-samples.tex +srccontainersize 22832 +srccontainerchecksum 83fabd401ad7a6228368e1f8bee1e6bb3be56732cd1b614a0f1344a9a47595a60018c4051196e4149c831668d877e593a8a19ae996905013788b3f1f56b6f83f +srcfiles size=23 + RELOC/source/latex/unicodefonttable/unicodefonttable.dtx + RELOC/source/latex/unicodefonttable/unicodefonttable.ins +runfiles size=10 + RELOC/tex/latex/unicodefonttable/unicodefont.tex + RELOC/tex/latex/unicodefonttable/unicodefonttable.sty +catalogue-contact-repository https://github.com/frankmittelbach/fmitex-unicodefonttable +catalogue-ctan /macros/latex/contrib/unicodefonttable +catalogue-license lppl1.3c +catalogue-topics unicode font expl3 +catalogue-version 1.0g + name unifith category Package -revision 51968 +revision 60698 shortdesc Typeset theses for University of Florence (Italy) relocated 1 longdesc The package provides a class to typeset Ph.D., Master, and longdesc Bachelor theses that adhere to the publishing guidelines of the longdesc University of Florence (Italy). -containersize 14396 -containerchecksum bf288fc67865b2440b7b62633a04779e0172ed139e6ca4f1f88b21ffc84147663c143867d204b54d49f0d0f4d1aa0f3ef689dbc36881198398512aeb735c717d -doccontainersize 860256 -doccontainerchecksum f185887da8604b1e24d9dcd7581b071e65dbdce6e61ecb435e99c19fe969a5912974af8430eeb22e090a8d2e1100a3457ece22cedc84aa10d589957e0cfd61cb -docfiles size=302 +containersize 14684 +containerchecksum 98eba02a617fa5d4349c5b17bc971cc0241d6d41fbe82af1fcbca1bf44faf901e5b13e786e62f26413805acb8efc941c3f1481307c69712aff55cf17b100b5d7 +doccontainersize 985200 +doccontainerchecksum 82620cf7a81f8502876edcbce06699a05f0e580760caab77cf56db89a145a3264202c8ab193a5a56df2f07b2b29d7d814b851dec7413fe0285124920f54baae3 +docfiles size=347 RELOC/doc/latex/unifith/README details="Readme" RELOC/doc/latex/unifith/examples/Dottorato.pdf RELOC/doc/latex/unifith/examples/Dottorato.tex @@ -321510,13 +335189,110 @@ docfiles size=302 RELOC/doc/latex/unifith/examples/Laurea.tex RELOC/doc/latex/unifith/unifith-doc.pdf details="Package documentation" RELOC/doc/latex/unifith/unifith-doc.tex -runfiles size=16 +runfiles size=18 RELOC/bibtex/bst/unifith/unifith.bst RELOC/tex/latex/unifith/unifith.cls catalogue-ctan /macros/latex/contrib/unifith catalogue-license lppl1.3c catalogue-topics dissertation class -catalogue-version 1.2 +catalogue-version 1.6 + +name unigrazpub +category Package +revision 64797 +shortdesc LaTeX templates for University of Graz Library Publishing Services +relocated 1 +longdesc This package provides a LaTeX class matching the preparation +longdesc guidelines of the Library Publishing Services of University of +longdesc Graz. The bundle also includes a comprehensive set of example +longdesc files for books and collections. +containersize 5952 +containerchecksum e97b38083929bb67c306bb3c306c5293dd5a024ff58eef5d11d5742ae0cc2bbf39c8505c89014b4c0a769d0e923f91db39173da1a4b374f3d1179a017b8d6052 +doccontainersize 134736 +doccontainerchecksum dd7a27267e4a7e16f9152ff393b15d4255aba7cbeeef7e5bd7211a8059dcf25473e244cdb02340e05324d982b4e973ac76a1812a82f787fa6bb504dc9713451d +docfiles size=51 + RELOC/doc/latex/unigrazpub/DEMO-monografie.pdf details="Example of use (1)" + RELOC/doc/latex/unigrazpub/DEMO-sammelband.pdf details="Example of use (2)" + RELOC/doc/latex/unigrazpub/LICENSE.md + RELOC/doc/latex/unigrazpub/README.md details="Readme" + RELOC/doc/latex/unigrazpub/examples/monografie/DEMO-monografie.tex + RELOC/doc/latex/unigrazpub/examples/monografie/impressum.tex + RELOC/doc/latex/unigrazpub/examples/monografie/kapitel1.tex + RELOC/doc/latex/unigrazpub/examples/monografie/literatur.bib + RELOC/doc/latex/unigrazpub/examples/sammelband/DEMO-sammelband.tex + RELOC/doc/latex/unigrazpub/examples/sammelband/beitrag1.bib + RELOC/doc/latex/unigrazpub/examples/sammelband/beitrag1.tex + RELOC/doc/latex/unigrazpub/examples/sammelband/impressum.tex + RELOC/doc/latex/unigrazpub/unigrazpub.pdf details="Package documentation" +srccontainersize 8892 +srccontainerchecksum 157f4f6770f276cb6567647321637a82df9c9562e9bc661723ca56c2a7893daef5de2e75a8d8fc93d1e80b646147f87e4c294d0b0d936d9c5d9784fda27bd652 +srcfiles size=8 + RELOC/source/latex/unigrazpub/unigrazpub.dtx + RELOC/source/latex/unigrazpub/unigrazpub.ins +runfiles size=5 + RELOC/tex/latex/unigrazpub/unigrazpub.cls +catalogue-contact-bugs https://github.com/peiTeX/unigrazpub/issues +catalogue-contact-repository https://github.com/peiTeX/unigrazpub +catalogue-ctan /macros/latex/contrib/unigrazpub +catalogue-license lppl1.3c +catalogue-topics class doc-templ book-pub std-conform expl3 +catalogue-version 1.00 + +name unimath-plain-xetex +category Package +revision 66394 +shortdesc OpenType math support in (plain) XeTeX +relocated 1 +longdesc This package provides OpenType math font support in plain TeX +longdesc format. It only works with the XeTeX engine. +containersize 16064 +containerchecksum cca8482cad022f39faf3b0b0cdf20a7d209acf5041642bac0103a3dbd1dc832a61a17c442845752317515764ab3beefd6dfcabda8c3d03cdcb8471fdd3bff4fd +doccontainersize 67664 +doccontainerchecksum a9138d1b80d8d5db0f00682f213518df3a40e19b3e6f36a01e62ab020efbb9c468da282393cc43a515a39dd9ffb399801607e3ac59800dd7fef73f3007b137f5 +docfiles size=23 + RELOC/doc/xetex/unimath-plain-xetex/README.md details="Readme" + RELOC/doc/xetex/unimath-plain-xetex/unimath-plain-genmap.lua + RELOC/doc/xetex/unimath-plain-xetex/unimath-plain-xetex-doc.pdf details="Package documentation" + RELOC/doc/xetex/unimath-plain-xetex/unimath-plain-xetex-doc.tex +runfiles size=36 + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bb.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bb.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bbit.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bbit.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bf.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bf.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bfit.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-bfit.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-frak.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-frak.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-frakbf.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-frakbf.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-it.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-it.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-scr.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-scr.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-scrbf.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-scrbf.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sf.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sf.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfbf.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfbf.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfbfit.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfbfit.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfit.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-sfit.tec + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-tt.map + RELOC/fonts/misc/xetex/fontmapping/unimath-plain-xetex/unimath-tt.tec + RELOC/tex/xetex/unimath-plain-xetex/unimath-plain-xetex.tex +catalogue-contact-bugs https://github.com/AlphaZTX/unimath-plain-xetex/issues +catalogue-contact-development https://github.com/AlphaZTX +catalogue-contact-home https://github.com/AlphaZTX/unimath-plain-xetex +catalogue-contact-repository https://github.com/AlphaZTX/unimath-plain-xetex +catalogue-contact-support https://github.com/AlphaZTX/unimath-plain-xetex/issues +catalogue-ctan /macros/xetex/plain/unimath-plain-xetex +catalogue-license lppl1.3c +catalogue-topics maths font-supp-maths plain-ext unicode xetex +catalogue-version 0.2b name uninormalize category Package @@ -321574,6 +335350,42 @@ catalogue-license lppl1.3 catalogue-topics numbers catalogue-version 1.4 +name unisc +category Package +revision 63178 +shortdesc Unicode small caps with Lua/XeLaTeX +relocated 1 +longdesc LaTeX produces small caps with \textsc{text} or {\scshape +longdesc text}. Neither of these commands produce small caps in Unicode. +longdesc If the output text is copied and pasted somewhere it shows the +longdesc same characters as used in the input. This package aims to +longdesc internally convert all the characters provided to the commands +longdesc mentioned above. It assumes that the file using this package is +longdesc compiled with Lua/XeLaTeX and a good Unicode font which has the +longdesc small caps characters, e.g., Charis SIL. +containersize 2584 +containerchecksum 41f9763e8d090ccf8669af560e53d0abdb4d3f81aaa8c88a97d3b72b8698e95b9ec3c81ebd7d863027f832a945fc11d7e225bb56711cd49b90d430107e9a1938 +doccontainersize 196864 +doccontainerchecksum 26e6907ee5f0d7e7093946cbb524e8dac63ed5c71f761875877a352f8f1454487a91ac46c6be16378c46540175d23d3d50a72eb32b3f3f96599fff9b00db1e48 +docfiles size=73 + RELOC/doc/latex/unisc/COPYING + RELOC/doc/latex/unisc/README.txt details="Readme" + RELOC/doc/latex/unisc/unisc.pdf details="Package documentation" +srccontainersize 4696 +srccontainerchecksum 076c5e0cfa27c31226fd1d729ae8de7d0d009f6e4f3d4d1b9e1339e29ac2db19377d34d2c16b4d821bfca999b3c59826f3b263c6bbadf022aa24447a0ffcb85b +srcfiles size=6 + RELOC/source/latex/unisc/unisc.dtx + RELOC/source/latex/unisc/unisc.ins +runfiles size=3 + RELOC/tex/latex/unisc/unisc.sty +catalogue-contact-bugs https://puszcza.gnu.org.ua/bugs/?group=unisc +catalogue-contact-repository https://git.gnu.org.ua/unisc.git +catalogue-contact-support mailto:unisc-help@gnu.org.ua +catalogue-ctan /macros/unicodetex/latex/unisc +catalogue-license gpl3+ fdl +catalogue-topics unicode +catalogue-version 0.2 + name unisugar category Package revision 22357 @@ -321631,43 +335443,6 @@ catalogue-license lppl1.3 catalogue-topics units luatex misc-conv catalogue-version 0.01 -name unitipa -category Package -revision 58749 -shortdesc TIPA typefaces with Unicode characters as input -relocated 1 -longdesc This package converts Unicode characters into TIPA commands, -longdesc which gives us tipa typefaces without learning the actual -longdesc commands. This package needs LuaLaTeX as the compiler for -longdesc correctly typesetting the IPA diacritics. If used with the -longdesc global option nodiacritics, it can be compiled with other TeX -longdesc engines, too, but no IPA diacritics will be printed. TIPA was -longdesc designed to match with the Computer Modern design, no other IPA -longdesc font matches with traditional LaTeX fonts. This package is -longdesc helpful for obtaining the beautiful tipa shapes with Unicode -longdesc characters as input. It is assumed that the user knows how to -longdesc type IPA Unicode. -containersize 3148 -containerchecksum 968af9eed2e188e0bbb816911ee734a74b29c2f3b42b93df7e7844d368737593f925d846be464bc0334cd216709e6e8582a291dd1c9cbc3287cb7b3144e9a609 -doccontainersize 186900 -doccontainerchecksum b770d4ae25c99d1c22842ac6581a29a66a43d48912daf4e8d7ee9ce4da0d562af3d54e2741a4720993a3ecd2c676e6ca3e39969c0b0d576d3a820f84434177b5 -docfiles size=48 - RELOC/doc/lualatex/unitipa/README.txt details="Readme" - RELOC/doc/lualatex/unitipa/unitipa.pdf details="Package documentation" -srccontainersize 4872 -srccontainerchecksum e54fc2dc346384041fd571c6435b7cdde73baa241b169e941ddb7040c5efc1353d6312502bbab296a38b89735e8ca08b2f111287c2438ae09da8e930760bb276 -srcfiles size=6 - RELOC/source/lualatex/unitipa/unitipa.dtx - RELOC/source/lualatex/unitipa/unitipa.ins -runfiles size=3 - RELOC/tex/lualatex/unitipa/unitipa.sty -catalogue-contact-bugs https://gitlab.com/niruvt/unitipa/-/issues -catalogue-contact-repository https://gitlab.com/niruvt/unitipa -catalogue-ctan /macros/luatex/latex/unitipa -catalogue-license lppl1.3c -catalogue-topics phonetic linguistic luatex unicode -catalogue-version 0.3 - name unitn-bimrep category Package revision 45581 @@ -321905,7 +335680,7 @@ catalogue-version 2.1 name universalis category Package -revision 33860 +revision 64505 shortdesc Universalis font, with support relocated 1 longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -321913,10 +335688,10 @@ longdesc support for the UniversalisADFStd family of fonts, designed by longdesc Hirwin Harendal. The font is suitable as an alternative to longdesc fonts such as Adrian Frutiger's Univers and Frutiger. execute addMap universalis.map -containersize 514020 -containerchecksum fcf890f52623fbded89b6dc5e6a8ed425354437430f66a70515ef7cfc126e6af20331f557630205189c7aa676532795d77415f2b4099b1fa46f460dd1b0f2011 +containersize 514004 +containerchecksum 4fee20d63395348a021573af4e4e8897f267d69cc59dd7dd8e9fd6ec06041fbb00608dd3adc103b1886638e9783fdb010fbccdebd3ee7cf91a4b57dfd85b67b9 doccontainersize 35596 -doccontainerchecksum 4cee70c65d7f83a5d280550934c47acc59cffad87d78364ef84d397914127f43fc74b469469371652a83625d0fbe97c2a50fad76f559f39924b1995bf6a09baf +doccontainerchecksum 79c500724365b3fec6f25dc49dd019ca23d0d3bfc9889f75f10a090250eb1614549c8f3ef215102fe5d5ea8c317bd1f1b60557133be0afe376cfd74d73d67fea docfiles size=15 RELOC/doc/fonts/universalis/COPYING RELOC/doc/fonts/universalis/NOTICE.txt @@ -322080,12 +335855,12 @@ runfiles size=326 RELOC/tex/latex/universalis/UniversalisADFStd.sty RELOC/tex/latex/universalis/universalis.sty catalogue-ctan /fonts/universalis -catalogue-license gpl2 -catalogue-topics font font-otf font-type1 font-sans +catalogue-license gpl2+ lppl +catalogue-topics font font-body font-sans font-proportional font-otf font-type1 font-supp font-t1enc name univie-ling category Package -revision 56913 +revision 65651 shortdesc Papers, theses and research proposals in (Applied) Linguistics at Vienna University relocated 1 longdesc This bundle provides LaTeX2e classes, BibLaTeX files, and @@ -322099,20 +335874,28 @@ longdesc context. The classes can also be used for General and longdesc Historical Linguistics as well as for other fields of study at longdesc Vienna University. In this case, however, some settings may longdesc have to be adjusted. -containersize 131944 -containerchecksum d4c0a0d760fc6d9c5fb2a56a7040b37a2fd5e20c13761374fb8e83763e0e01090ba3079a589cd6544c707148c17c389e377598f420d73cb942da591ddeffb943 -doccontainersize 2110564 -doccontainerchecksum ded1f91665ad5a8e13bdbc5b01fad86f73efa77d144b946f8049fa6876b26cf237f645250137899e06d93bb19117120be9fd8d9651857bcc0a19df49ce87b664 -docfiles size=720 +containersize 164236 +containerchecksum 179200352c593096ac82a3711b01d622b1ae06b0756f14861e1280aa6e59b5d2dbe5a834e6bdb5601f212a57aa2bf37309044acee88380264b53d0c65bd21269 +doccontainersize 4096264 +doccontainerchecksum aeeb0a42e787c6d00843f89d4d26af6c410f6167e10c6f132fdd7e859c8dec25f94407870e2e917a7dc7b9ec175e15fc190ad5892d602b248f4be50b1d833a82 +docfiles size=1431 RELOC/doc/latex/univie-ling/README details="Readme" RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.pdf RELOC/doc/latex/univie-ling/templates/template-expose-deutsch.tex RELOC/doc/latex/univie-ling/templates/template-expose-english.pdf RELOC/doc/latex/univie-ling/templates/template-expose-english.tex + RELOC/doc/latex/univie-ling/templates/template-handout-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-handout-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-handout-english.pdf + RELOC/doc/latex/univie-ling/templates/template-handout-english.tex RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.pdf RELOC/doc/latex/univie-ling/templates/template-paper-deutsch.tex RELOC/doc/latex/univie-ling/templates/template-paper-english.pdf RELOC/doc/latex/univie-ling/templates/template-paper-english.tex + RELOC/doc/latex/univie-ling/templates/template-poster-deutsch.pdf + RELOC/doc/latex/univie-ling/templates/template-poster-deutsch.tex + RELOC/doc/latex/univie-ling/templates/template-poster-english.pdf + RELOC/doc/latex/univie-ling/templates/template-poster-english.tex RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.pdf RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.tex RELOC/doc/latex/univie-ling/templates/template-thesis-deutsch.xmpdata @@ -322121,17 +335904,27 @@ docfiles size=720 RELOC/doc/latex/univie-ling/templates/template-thesis-english.xmpdata RELOC/doc/latex/univie-ling/templates/template-wlg-article.pdf RELOC/doc/latex/univie-ling/templates/template-wlg-article.tex + RELOC/doc/latex/univie-ling/templates/template-wlg-review.pdf + RELOC/doc/latex/univie-ling/templates/template-wlg-review.tex RELOC/doc/latex/univie-ling/univie-ling-expose.pdf details="Package documentation (expose class)" RELOC/doc/latex/univie-ling/univie-ling-expose.tex + RELOC/doc/latex/univie-ling/univie-ling-handout.pdf + RELOC/doc/latex/univie-ling/univie-ling-handout.tex RELOC/doc/latex/univie-ling/univie-ling-paper.pdf details="Package documentation (paper class)" RELOC/doc/latex/univie-ling/univie-ling-paper.tex + RELOC/doc/latex/univie-ling/univie-ling-poster.pdf + RELOC/doc/latex/univie-ling/univie-ling-poster.tex RELOC/doc/latex/univie-ling/univie-ling-thesis.pdf details="Package documentation (thesis class)" RELOC/doc/latex/univie-ling/univie-ling-thesis.tex RELOC/doc/latex/univie-ling/univie-ling-wlg.pdf details="Package documentation (Wiener Linguistische Gazette)" RELOC/doc/latex/univie-ling/univie-ling-wlg.tex -runfiles size=63 + RELOC/doc/latex/univie-ling/univie-ling.pdf details="Package documentation (overview)" + RELOC/doc/latex/univie-ling/univie-ling.tex +runfiles size=89 RELOC/tex/latex/univie-ling/univie-ling-expose.cls + RELOC/tex/latex/univie-ling/univie-ling-handout.cls RELOC/tex/latex/univie-ling/univie-ling-paper.cls + RELOC/tex/latex/univie-ling/univie-ling-poster.cls RELOC/tex/latex/univie-ling/univie-ling-thesis.cls RELOC/tex/latex/univie-ling/univie-ling-wlg-logo.pdf RELOC/tex/latex/univie-ling/univie-ling-wlg.cfg @@ -322139,12 +335932,13 @@ runfiles size=63 RELOC/tex/latex/univie-ling/univie-ling.bbx RELOC/tex/latex/univie-ling/univie-ling.cbx RELOC/tex/latex/univie-ling/univielogo-sw.pdf + RELOC/tex/latex/univie-ling/univielogo.pdf catalogue-contact-bugs https://github.com/jspitz/univie-ling/issues catalogue-contact-repository https://github.com/jspitz/univie-ling catalogue-ctan /macros/latex/contrib/univie-ling catalogue-license lppl1.3 catalogue-topics linguistic class dissertation article-like misc-paper std-conform -catalogue-version 1.13 +catalogue-version 2.3 name unizgklasa category Package @@ -322174,7 +335968,7 @@ catalogue-version 1.0 name unravel category Package -revision 52822 +revision 59175 shortdesc Watching TeX digest tokens relocated 1 longdesc The aim of this LaTeX package is to help debug complicated @@ -322185,39 +335979,39 @@ longdesc typesetting commands. To use this package, one should normally longdesc run TeX in a terminal. The unravel package requires up-to-date longdesc versions of the l3kernel, l3packages and l3experimental longdesc bundles. -containersize 28380 -containerchecksum e31da53c07ddb60491412e94f50444cd3178879180426cc2d8f78d5056a05c091a36d1c5b9107f0e3714acab1f723e90ddfc0250319bde07d67133bc50543f4d -doccontainersize 683816 -doccontainerchecksum 5fc7618723ab27f57c14b0b81cb8d6f1b141ac6582cd73143a5c1543dca0f307ff5eaff006dd0a55c6f84887f0b08dddda5651b9c0938716262894cb3b8aeda0 -docfiles size=170 +containersize 29924 +containerchecksum 26ff88b32e91fd872dc0286001b58a7084b38e5497125793ccb90e60e58ad19a78b780162d505aa0be9bf07e9656bc60414a55a0d6419e8d9b33d8c0e8e53d9e +doccontainersize 845060 +doccontainerchecksum 206f3d794ba1323f9a6fd8fbed98190e376a91e5babc94aec236c46be783b0b01d80fe45394a1e73e2e29c5b19279d28430b9350e1f216369c4be707ebf6dd7c +docfiles size=216 RELOC/doc/latex/unravel/README.md details="Readme" RELOC/doc/latex/unravel/unravel.pdf details="Package documentation" -srccontainersize 51652 -srccontainerchecksum 2c7336dd1033f87a10ee48e699c0c782e5f2fbf52102580f396f8d7ac5805fbd665ece0370bd72cd191fa9df6fefa8b27d07ace58710e1c8d04aa45f3bfaa5e3 -srcfiles size=77 +srccontainersize 53380 +srccontainerchecksum ad9ebde05f2194043d75d25faa249f786e154312b4c3d6688ce766cba4092ee157a405ef1eec5654b1b6852b5bf2f994c77ddd78d284c573a07539403bc69e92 +srcfiles size=80 RELOC/source/latex/unravel/unravel.dtx RELOC/source/latex/unravel/unravel.ins -runfiles size=58 +runfiles size=61 RELOC/tex/latex/unravel/unravel.sty catalogue-contact-repository https://github.com/blefloch/latex-unravel catalogue-ctan /macros/latex/contrib/unravel catalogue-license lppl1.3c -catalogue-topics macro-supp -catalogue-version 0.2h +catalogue-topics macro-supp debug-supp expl3 +catalogue-version 0.3a name unswcover category Package -revision 29476 +revision 66115 shortdesc Typeset a dissertation cover page following UNSW guidelines relocated 1 longdesc The package an UNSW cover sheet following the 2011 GRS longdesc guidelines. It may also (optionally) provide other required longdesc sheets such as Originality, Copyright and Authenticity longdesc statements. -containersize 2664 -containerchecksum e51938d3e31bb75abf7b8af27a7cfc47efde49b1e569c2d9b5d170bd4e7a29479571717d9932de22907e2f23093e977959112d4c1c42687fbaecddd6fe1b990f -doccontainersize 119528 -doccontainerchecksum ea443054c6c89bac4ead8218e12a4a8020fbcea1204eb12f237f0a58f4f303797b27bb45585b78167d0a43a6758d257da0b140deb563de7cdc9497b8df56f329 +containersize 2628 +containerchecksum 4080e5cb6621c3f265245540b22ae026e9c29c37739f7ae955a90ec107199bd2b52b9e2301330a630f535c05004ef762cf058b70ea5d44f65844790156379322 +doccontainersize 119524 +doccontainerchecksum e3b10ddf23708fa8ea68a8d5d11152812a1832f4c8d87e03a697b81f69b94167d1ac8c70824d7434fdd022f4dc10bd823fa3c177a4f0a282cd60ec166ced6420 docfiles size=43 RELOC/doc/latex/unswcover/COPYING RELOC/doc/latex/unswcover/Makefile @@ -322228,12 +336022,44 @@ docfiles size=43 RELOC/doc/latex/unswcover/thesis.tex runfiles size=2 RELOC/tex/latex/unswcover/unswcover.sty -catalogue-contact-repository https://scm.narf.ssji.net/git/unswcover catalogue-ctan /macros/latex/contrib/unswcover catalogue-license lppl1.3 catalogue-topics dissertation catalogue-version 1.0 +name uol-physics-report +category Package +revision 65761 +shortdesc A LaTeX document class for writing lab reports +relocated 1 +longdesc The package provides physics students at the University of +longdesc Oldenburg with a prepared document class for writing laboratory +longdesc reports for the laboratory courses conducted by the Institute +longdesc of Physics. The document class consists of predefinded margins +longdesc and heading formats. Furthermore, it presets the headers of the +longdesc pages and excludes the titlepage and table of contents from the +longdesc page numbering. +containersize 2328 +containerchecksum ed6b2af5ee9c0ff53cd282b0a7c8cd26e07a5823f00abaa03471707f116f14e04c874548ccfabd2858ebb0c4bf56fe55d19f09dcf865521277cfa04491d3ea8c +doccontainersize 177356 +doccontainerchecksum 117ed58415a3502e75d10d2f6d6a34d43180294ad9b3a33d12e971ac20e4092a4a50f815390c7f158e79b7f5cc246616cd84a07eb76a04be1286a54a78378883 +docfiles size=46 + RELOC/doc/latex/uol-physics-report/README details="Readme" + RELOC/doc/latex/uol-physics-report/uol-physics-report.pdf details="Package documentation" +srccontainersize 3856 +srccontainerchecksum eca0d3706ae7428a72da99a7ffb123f471ba731f26d3260a5aa7f55b843d25c3ab837ded478263b78fb3530f7f64077488b52160806b248968f46981496e5ab3 +srcfiles size=4 + RELOC/source/latex/uol-physics-report/uol-physics-report.dtx + RELOC/source/latex/uol-physics-report/uol-physics-report.ins +runfiles size=2 + RELOC/tex/latex/uol-physics-report/uol-physics-report.cls +catalogue-contact-bugs https://github.com/captainsuchard/uol-physics-report/issues +catalogue-contact-repository https://github.com/captainsuchard/uol-physics-report +catalogue-ctan /macros/latex/contrib/uol-physics-report +catalogue-license lppl1.3c +catalogue-topics physics class report-like +catalogue-version 1.1 + name uothesis category Package revision 25355 @@ -322343,7 +336169,7 @@ catalogue-topics barcode name uplatex category Package -revision 58842 +revision 66186 shortdesc pLaTeX2e and miscellaneous macros for upTeX longdesc The bundle provides pLaTeX2e macros for upTeX by Takuji Tanaka. longdesc This is a community edition syncing with platex. The bundle @@ -322370,10 +336196,10 @@ depend uptex depend uptex-fonts execute AddFormat name=uplatex engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,uptex-fonts,platex,latex execute AddFormat name=uplatex-dev engine=euptex options="*uplatex.ini" patterns=language.dat fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,uptex-fonts,platex,l3kernel,latex-base-dev,latex-firstaid-dev -containersize 14752 -containerchecksum 83f8e209949e0f7cdef7f440bfceea51ba1a7ddc4c145bb23c6b8de07a84e6b207bac0c00399a3e33c7b40b4558e7b5195addaafe7f40bd56206a9e1e04bbcf2 -doccontainersize 776292 -doccontainerchecksum 39ad4ffb959c34515ed40f8fb0245554d57a246610c452888f56f7f499681fba0e1b8e08f4b2020f1c2ff37f275ecd6b061584385dd6fb58bcf898f2eb4a510a +containersize 14836 +containerchecksum 920d770f36992085250b38bf8d58c59fab7ac8d121ad171612b99ec7f91369f9f31c24ba5e5402552e2fe073a3913b529fd013be1a70eb37913a9731caf69895 +doccontainersize 776324 +doccontainerchecksum 8024c2dfa393ddadffd5c35a27542d3f27a030464306087ffc28d65c2e0c704e56143f4f449f1d59ca1f19f007389256a4a23c2f2405855a5aeeeb11bd4b3802 docfiles size=201 texmf-dist/doc/man/man1/uplatex.1 texmf-dist/doc/man/man1/uplatex.man1.pdf @@ -322383,9 +336209,9 @@ docfiles size=201 texmf-dist/doc/uplatex/base/uplatex-en.pdf details="Package documentation" texmf-dist/doc/uplatex/base/uplatex.pdf details="Package documentation" language="ja" texmf-dist/doc/uplatex/base/upldoc.pdf -srccontainersize 50384 -srccontainerchecksum 0f018972d98bb2e3a9f280b50a812b7cba30d846e46cbf325d5c9283bc7b5576ffa631808604a0f7149e409e9ba9bffc39c049d48511920be35d94de7134434b -srcfiles size=71 +srccontainersize 50744 +srccontainerchecksum 7fe21c87bcdcfc7ba7221a51c59eafd17a767aff04a1f267682167962f2a75a34e12af5b035319b6e413ef1037533f2bc07e7b7d21cda63355ef4185844d51e4 +srcfiles size=73 texmf-dist/source/uplatex/base/Makefile texmf-dist/source/uplatex/base/ujclasses.dtx texmf-dist/source/uplatex/base/ukinsoku.dtx @@ -322425,7 +336251,7 @@ runfiles size=94 texmf-dist/tex/uplatex/base/utsize12.clo texmf-dist/tex/uplatex/config/uplatex.ini catalogue-contact-repository https://github.com/texjporg/uplatex -catalogue-ctan /language/japanese/uplatex +catalogue-ctan /macros/jptex/latex/uplatex catalogue-license bsd3 catalogue-topics format class japanese @@ -322469,16 +336295,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/uplatex bin/armhf-linux/uplatex-dev -name uplatex.i386-cygwin -category Package -revision 52812 -shortdesc i386-cygwin files of uplatex -containersize 344 -containerchecksum 717e13fae75c6395c309edef074606dc634b46e5b52e8bc8733ed91a0162611d4c2795df0dfccd4d0b8374f1f01df730425ab284a211af471274df6204bbf3de -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/uplatex - bin/i386-cygwin/uplatex-dev - name uplatex.i386-freebsd category Package revision 52800 @@ -322529,15 +336345,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/uplatex bin/universal-darwin/uplatex-dev -name uplatex.win32 +name uplatex.windows category Package -revision 57883 -shortdesc win32 files of uplatex -containersize 884 -containerchecksum 2d10babe5331106a4d7bbd92f21e809cde876a315261ed43bab789daa6371ebcc21d1e58ff629f533d981f869256b473339301fcf0026702e087008818e4083c -binfiles arch=win32 size=2 - bin/win32/uplatex-dev.exe - bin/win32/uplatex.exe +revision 65891 +shortdesc windows files of uplatex +containersize 2384 +containerchecksum bef83f409be8984930994fdfc9eba086d15df00ab204c0ee6fc85f77988daf2f2c20325288557858ea9634e4b6bc3c0af958d37892380872ef987e38c28d3432 +binfiles arch=windows size=4 + bin/windows/uplatex-dev.exe + bin/windows/uplatex.exe name uplatex.x86_64-cygwin category Package @@ -322589,9 +336405,225 @@ binfiles arch=x86_64-solaris size=2 bin/x86_64-solaris/uplatex bin/x86_64-solaris/uplatex-dev +name upmendex +category TLCore +revision 66381 +shortdesc Multilingual index processor +longdesc The package is a multilingual index processor with the +longdesc following features: Mostly compatible with makeindex and upper +longdesc compatible with mendex. Supports UTF-8 and works with upLaTeX, +longdesc XeLaTeX and LuaLaTeX. Supports Latin (including non-English), +longdesc Greek, Cyrillic, Korean Hangul and Chinese Han (Hanzi +longdesc ideographs) scripts, as well as Japanese Kana. Supports +longdesc Devanagari, Thai, Arabic and Hebrew scripts (experimental). +longdesc Supports four kinds of sort orders (Pinyin, Radical-Stroke, +longdesc Stroke and Zhuyin) for Chinese Han scripts (Hanzi ideographs). +longdesc Applies International Components for Unicode (ICU) for sorting +longdesc process. +depend upmendex.ARCH +containersize 740 +containerchecksum 947d733e5b96ee6a621e9686357b8c3f8638c0bc482f4efaac87a72117160f81ad7aa0d34088e61e67982b345b56ec478ef3b6a49865ffb3d5512a7bf18d2b8e +doccontainersize 968624 +doccontainerchecksum ec4d1670ff84680fcab88e29ca5f4306f44450ccca9cba06282ad34bd026f74b46d166724a06a313957ca8d798b0c296e848bb248ad416597a99afb16b4b5a0c +docfiles size=341 + texmf-dist/doc/man/man1/upmendex.1 + texmf-dist/doc/man/man1/upmendex.man1.pdf details="Manual page (English, PDF)" + texmf-dist/doc/support/upmendex/COPYRIGHT + texmf-dist/doc/support/upmendex/README.md details="Readme" + texmf-dist/doc/support/upmendex/samples/Makefile + texmf-dist/doc/support/upmendex/samples/alphabet/Makefile + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_es.idx + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_zh.idx + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_zhp.idx + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_zhr.idx + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_zhs.idx + texmf-dist/doc/support/upmendex/samples/alphabet/alpha_zhz.idx + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_es.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_es1.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_es2.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_head1.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_head2.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_head3.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh1.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh11.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh12.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh13.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh14.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh2.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh21.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh22.ist + texmf-dist/doc/support/upmendex/samples/alphabet/mdxsty_zh31.ist + texmf-dist/doc/support/upmendex/samples/french.idx + texmf-dist/doc/support/upmendex/samples/german.idx + texmf-dist/doc/support/upmendex/samples/greek.idx + texmf-dist/doc/support/upmendex/samples/korean.idx + texmf-dist/doc/support/upmendex/samples/latex/Makefile + texmf-dist/doc/support/upmendex/samples/latex/city0.tex + texmf-dist/doc/support/upmendex/samples/latex/city1.tex + texmf-dist/doc/support/upmendex/samples/latex/haranoaji-uptex.map + texmf-dist/doc/support/upmendex/samples/latex/mlg0.ist + texmf-dist/doc/support/upmendex/samples/latex/mlg1.ist + texmf-dist/doc/support/upmendex/samples/mdxsty00.ist + texmf-dist/doc/support/upmendex/samples/mdxsty01.ist + texmf-dist/doc/support/upmendex/samples/mdxsty02.ist + texmf-dist/doc/support/upmendex/samples/mdxsty03.ist + texmf-dist/doc/support/upmendex/samples/multi.idx + texmf-dist/doc/support/upmendex/samples/option/Makefile + texmf-dist/doc/support/upmendex/samples/option/attri1.idx + texmf-dist/doc/support/upmendex/samples/option/japanese.idx + texmf-dist/doc/support/upmendex/samples/option/mdxsty_attr_default.ist + texmf-dist/doc/support/upmendex/samples/option/mdxsty_j00.ist + texmf-dist/doc/support/upmendex/samples/option/mdxsty_j01.ist + texmf-dist/doc/support/upmendex/samples/option/mdxsty_j02.ist + texmf-dist/doc/support/upmendex/samples/option/mdxsty_rule0.ist + texmf-dist/doc/support/upmendex/samples/option/rule0.ist + texmf-dist/doc/support/upmendex/samples/russian.idx + texmf-dist/doc/support/upmendex/upmendex-slide-ctan.pdf + texmf-dist/doc/support/upmendex/upmendex.ja.txt details="Manual page (Japanese, text format)" language="ja" +catalogue-contact-repository https://github.com/t-tk/upmendex-package +catalogue-ctan /indexing/upmendex +catalogue-license bsd3 +catalogue-topics index multilingual +catalogue-version 1.07 + +name upmendex.aarch64-linux +category TLCore +revision 66237 +shortdesc aarch64-linux files of upmendex +containersize 6026144 +containerchecksum 7b8a2d79620af1b8c1636df3b76f683052f016f621d522a771eaf83563e3d7351f2d1ae1ddccd40575c00eae7decd543a19c72de9524ff587490be85199a068d +binfiles arch=aarch64-linux size=5604 + bin/aarch64-linux/upmendex + +name upmendex.amd64-freebsd +category TLCore +revision 65877 +shortdesc amd64-freebsd files of upmendex +containersize 6023232 +containerchecksum 1bb378d5356021d27229d2f6fb381d55beea4ab2cbd1ce1c3ac7b029c13a2de9c722896d50280f41320d711cc1f272fcce08eac7d6bf9c5a866aee3051044f17 +binfiles arch=amd64-freebsd size=5552 + bin/amd64-freebsd/upmendex + +name upmendex.amd64-netbsd +category TLCore +revision 65923 +shortdesc amd64-netbsd files of upmendex +containersize 5987452 +containerchecksum 45d34fcd572562113bee142a2166125daf0560e6b6aba878b104adac81354f19553340fd4f73d8b9061961a0b4692faa4898cf7b177a052226e5aaae50b3294d +binfiles arch=amd64-netbsd size=5659 + bin/amd64-netbsd/upmendex + +name upmendex.armhf-linux +category TLCore +revision 66237 +shortdesc armhf-linux files of upmendex +containersize 5924772 +containerchecksum 57ad469f6b4a16976e1382acaa280cb745697c44f7491539e7fe22ce99cc26b2747b6e17007d80c446d788fd2fe410c33b33f6ede28e574ce070069793b2da1f +binfiles arch=armhf-linux size=5489 + bin/armhf-linux/upmendex + +name upmendex.i386-freebsd +category TLCore +revision 65877 +shortdesc i386-freebsd files of upmendex +containersize 5993696 +containerchecksum 2c91380ac86296694172a85e4602ba0e5bf2c1e77177385b0142123515c3753b6bbd5222b436e36982cfbe8a9f2d25e78182aac367f2f30b8b6f8adfee808353 +binfiles arch=i386-freebsd size=5518 + bin/i386-freebsd/upmendex + +name upmendex.i386-linux +category TLCore +revision 66511 +shortdesc i386-linux files of upmendex +containersize 6269784 +containerchecksum cda5fc695e73d07edf99d422eef5fb061cdc772dc6a8a727e7a03e262bf3e1ffd434685369005c1ae35969e51aa11ab13c0f8a4e1f19fdffea4af055476ed811 +binfiles arch=i386-linux size=5760 + bin/i386-linux/upmendex + +name upmendex.i386-netbsd +category TLCore +revision 65923 +shortdesc i386-netbsd files of upmendex +containersize 5957520 +containerchecksum bdec1119627ec92a44754ba67304cdf3516e33503330ec87b49958f7408c83c7f2224ed212abea5c9e82a564a4c18ae1cf16029656f3e5d2fbc01823339f4e64 +binfiles arch=i386-netbsd size=5611 + bin/i386-netbsd/upmendex + +name upmendex.i386-solaris +category TLCore +revision 65877 +shortdesc i386-solaris files of upmendex +containersize 6364508 +containerchecksum 6cc765fcb6acd3ba8114daf52d3ba0ab835d19da6953aafa9e76f554a4990d35bf43c3defca57aae409ba90677cfa8def0168df18eab0c6f00e7d57ce454bd49 +binfiles arch=i386-solaris size=5948 + bin/i386-solaris/upmendex + +name upmendex.universal-darwin +category TLCore +revision 65895 +shortdesc universal-darwin files of upmendex +containersize 12345320 +containerchecksum dd64155c5896ac5bff7e6e58d15f613541f97e4b25217a571d2ac7005f746c87b70d6765146c4b6218130af9d4dbbe26faaf6615d8e098d1d542a121ce619b1c +binfiles arch=universal-darwin size=11187 + bin/universal-darwin/upmendex + +name upmendex.windows +category TLCore +revision 65891 +shortdesc windows files of upmendex +containersize 625024 +containerchecksum 7f70f3592ee41714c4de39a21337feefd98125b75e8593912940ed83a4e0f18389ed7edb899d82bd687bd9a759d9c5430c72c282432bd6d23918c7fd0176b6c1 +binfiles arch=windows size=429 + bin/windows/upmendex.exe + +name upmendex.x86_64-cygwin +category TLCore +revision 66544 +shortdesc x86_64-cygwin files of upmendex +containersize 5994888 +containerchecksum cafc927b64dffe5fd8108b4454634f33fc0e1dfba6bd2216aa303607cc6b9017068f1fb904ee609bf01a8ecc9de341e43e1f7ec65037f2fc3f86869b694782a0 +binfiles arch=x86_64-cygwin size=5533 + bin/x86_64-cygwin/upmendex.exe + +name upmendex.x86_64-darwinlegacy +category TLCore +revision 65877 +shortdesc x86_64-darwinlegacy files of upmendex +containersize 5983876 +containerchecksum fd61b5fde7f9ad8696675e74f228b557501f666e755e6499f4514adc5f73006ee098ca5693107a74d20abc1ba48158e521d2a182f2686fc9ac6a534c9735a9c1 +binfiles arch=x86_64-darwinlegacy size=5523 + bin/x86_64-darwinlegacy/upmendex + +name upmendex.x86_64-linux +category TLCore +revision 66511 +shortdesc x86_64-linux files of upmendex +containersize 6275796 +containerchecksum 53486dc46bd67169ddf3ea1246ab10bbcac1e5481e43de3ec09081c6794b28a34f2d15cfebeeeb6a0d4d2e680abe0a441de03874bcefc7bae19b6b10edfa86e4 +binfiles arch=x86_64-linux size=5778 + bin/x86_64-linux/upmendex + +name upmendex.x86_64-linuxmusl +category TLCore +revision 65877 +shortdesc x86_64-linuxmusl files of upmendex +containersize 6180348 +containerchecksum 284000db0079bbb3fb89ccf9ea4f1153d0c5ce30220aaf1d2714e11b68569413c9b077e84e725c3b39510524d64b8b20e914587d1151bea20e22e3ed643e9507 +binfiles arch=x86_64-linuxmusl size=5712 + bin/x86_64-linuxmusl/upmendex + +name upmendex.x86_64-solaris +category TLCore +revision 65877 +shortdesc x86_64-solaris files of upmendex +containersize 6366380 +containerchecksum 832c7f058f2d69f7ce07c7d97a544079dc92e25808e0e013e7a32e0bfdd82bbd1dfb790faba8456b063bd6f7f67badd84adcd5fad07e11dd4fced2d8142e230d +binfiles arch=x86_64-solaris size=5975 + bin/x86_64-solaris/upmendex + name upmethodology category Package -revision 54758 +revision 64613 shortdesc Writing specifications such as for UP-based methodologies relocated 1 longdesc The bundle allows the user to create Unified Process @@ -322599,10 +336631,10 @@ longdesc methodology (UP or RUP) based documents. The style provides longdesc document versioning, document history, document authors, longdesc document validators, specification description, task longdesc management, and several helping macros. -containersize 28756 -containerchecksum 848e1a982a1d0667082b12970a057f639bcb8eae0c55f984508ace27e98bb0b2c9d285a3730c4c7eca4a1ff361e3b2e6908f85c0e0768e9b4e8ccd66232ec4a6 -doccontainersize 503812 -doccontainerchecksum 856e798164ec708da8f8695f9f166cedb36973f6747a01b2cc10cb5a8d124cf4383a625db57578666d1fc4658516dd8e9bf94221967b1829cf5356314ab121bc +containersize 29040 +containerchecksum 97028afebe70eefb0d2776abf4c7a311b1d78fb1aaf7e19f625337669ef0f085c17f9d88c76c4771085eb4a2ca1a05ec04078750fffb2904ceed8210f78be75b +doccontainersize 506564 +doccontainerchecksum 1931a840502d230b991078f5c35fa4dc482bc57c488b8941a5cf7b09a9aa98c6a993fe508227bfdcd0a03c421d498e3b6a3d8af23a200563cfb420cba019712a docfiles size=186 RELOC/doc/latex/upmethodology/AUTHORS RELOC/doc/latex/upmethodology/CONTRIBUTING.textile @@ -322648,7 +336680,7 @@ catalogue-contact-repository https://github.com/gallandarakhneorg/tex-upmethodol catalogue-ctan /macros/latex/contrib/upmethodology catalogue-license lgpl3 catalogue-topics doc-mgmt -catalogue-version 20200406 +catalogue-version 20221004 name uppunctlm category Package @@ -322724,7 +336756,7 @@ catalogue-version 1.3 name uptex category Package -revision 57972 +revision 66381 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 @@ -322743,70 +336775,26 @@ depend uptex-base depend uptex-fonts depend uptex.ARCH execute AddFormat name=euptex engine=euptex options="*euptex.ini" patterns=language.def fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts,etex,ptex-base -execute AddFormat name=uptex engine=uptex options="uptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts +execute AddFormat name=uptex engine=euptex options="uptex.ini" fmttriggers=cm,hyphen-base,knuth-lib,plain,uptex-base,uptex-fonts execute addKanjiMap uptex-@jaEmbed@@jaVariant@.map execute addKanjiMap uptex-ko-@koEmbed@.map execute addKanjiMap uptex-sc-@scEmbed@.map execute addKanjiMap uptex-tc-@tcEmbed@.map containersize 912 -containerchecksum 1ee2679e7531fe4406fea72f7efc482f7900da50cb74045a62c0b5e5596862011509c3d966a795bc13538170afd7db26e8cf4f406391a746e45804414f26cff0 -doccontainersize 299276 -doccontainerchecksum 06a3459702bc9838f2246aad7af99c427413a43356d88165e68a132bf8b926d9ab668e6dc10127c27eaac6526085c3fa069bb9709833cef241c94d0f4fb3e02a -docfiles size=156 +containerchecksum fea7d0156a1f8b8a66fc061d454c1318fe98e6c1a3c618fd9e31fda4246c7a55684df6e01b986d0c296a7a9458c3489af0e4bb2142341a95e5279da97668b4a1 +doccontainersize 62068 +doccontainerchecksum edd326824f93b2e893ac9bc7b6f498178427477138c2e068a3cffddfef5ac658cfad2671454caa6c222bf165a2d4a16964fa67eed86c01342d119053f31a3fa3 +docfiles size=33 texmf-dist/doc/man/man1/euptex.1 texmf-dist/doc/man/man1/euptex.man1.pdf - texmf-dist/doc/man/man1/upmendex.1 - texmf-dist/doc/man/man1/upmendex.man1.pdf + texmf-dist/doc/man/man1/upbibtex.1 + texmf-dist/doc/man/man1/upbibtex.man1.pdf texmf-dist/doc/man/man1/uppltotf.1 texmf-dist/doc/man/man1/uppltotf.man1.pdf texmf-dist/doc/man/man1/uptex.1 texmf-dist/doc/man/man1/uptex.man1.pdf texmf-dist/doc/man/man1/uptftopl.1 texmf-dist/doc/man/man1/uptftopl.man1.pdf - texmf-dist/doc/upmendex/COPYRIGHT - texmf-dist/doc/upmendex/README.md - texmf-dist/doc/upmendex/samples/Makefile - texmf-dist/doc/upmendex/samples/alphabet/Makefile - texmf-dist/doc/upmendex/samples/alphabet/alpha_es.idx - texmf-dist/doc/upmendex/samples/alphabet/alpha_zh.idx - texmf-dist/doc/upmendex/samples/alphabet/alpha_zhp.idx - texmf-dist/doc/upmendex/samples/alphabet/alpha_zhr.idx - texmf-dist/doc/upmendex/samples/alphabet/alpha_zhs.idx - texmf-dist/doc/upmendex/samples/alphabet/alpha_zhz.idx - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es1.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es11.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es12.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es13.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es2.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es21.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es22.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_es23.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh1.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh11.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh12.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh13.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh14.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh2.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh21.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh22.ist - texmf-dist/doc/upmendex/samples/alphabet/mdxsty_zh31.ist - texmf-dist/doc/upmendex/samples/french.idx - texmf-dist/doc/upmendex/samples/german.idx - texmf-dist/doc/upmendex/samples/greek.idx - texmf-dist/doc/upmendex/samples/korean.idx - texmf-dist/doc/upmendex/samples/mdxsty00.ist - texmf-dist/doc/upmendex/samples/mdxsty01.ist - texmf-dist/doc/upmendex/samples/mdxsty02.ist - texmf-dist/doc/upmendex/samples/multi.idx - texmf-dist/doc/upmendex/samples/option/Makefile - texmf-dist/doc/upmendex/samples/option/attri1.idx - texmf-dist/doc/upmendex/samples/option/japanese.idx - texmf-dist/doc/upmendex/samples/option/mdxsty_j00.ist - texmf-dist/doc/upmendex/samples/option/mdxsty_j01.ist - texmf-dist/doc/upmendex/samples/option/mdxsty_j02.ist - texmf-dist/doc/upmendex/samples/option/mdxsty_rule0.ist - texmf-dist/doc/upmendex/samples/russian.idx - texmf-dist/doc/upmendex/upmendex.ja.txt catalogue-alias euptex catalogue-contact-bugs https://lists.tug.org/tex-k catalogue-contact-home http://www.t-lab.opal.ne.jp/tex/uptex_en.html @@ -322817,15 +336805,15 @@ catalogue-topics engine japanese chinese korean multilingual name uptex-base category Package -revision 56832 +revision 65802 shortdesc Plain TeX formats and documents for upTeX relocated 1 longdesc The bundle contains plain TeX format files and documents for longdesc upTeX and and e-upTeX. -containersize 9784 -containerchecksum ad62a640e04807f62f9efdd67720f57c7dbab0190fcfea7a82109f4f8223138b8d413c49e878c70ea04f733576828a4bdf475ebd1b6ed471268cb21bbfaebfae -doccontainersize 159660 -doccontainerchecksum dbfd62df1619e9a5814fde01796203180f77fdd48fe603cc1fb6701b2c2763d507eaf9925d2555a9fa6281e9dbf35c7218a9f888d325b628bc2d8036bb393637 +containersize 9804 +containerchecksum 30a8e0cb5eb3721e4bd5b8e3f04ca40a1aa9eaec442b77c9d8c06d2cfac01d63a1f44a785e93f1ad7b0af45008a112e6cac070406d78494f7970dc85db096977 +doccontainersize 159984 +doccontainerchecksum 87b22290d4cad4fdc34a7315930535a4b3dfd92725ff76407fb1e679c70443cb5ef2273f37e5d7e4674142f9d482e1c2284dea976c7246eff9233a2e3b4c5fea docfiles size=194 RELOC/doc/uptex/uptex-base/00readme_uptex.txt RELOC/doc/uptex/uptex-base/01uptex_doc_utf8.txt @@ -322915,28 +336903,28 @@ runfiles size=13 RELOC/tex/uptex/uptex-base/uptex.ini RELOC/tex/uptex/uptex-base/uptex.tex catalogue-contact-repository https://github.com/texjporg/uptex-base -catalogue-ctan /language/japanese/uptex-base +catalogue-ctan /macros/jptex/generic/uptex-base catalogue-license bsd3 catalogue-topics format japanese name uptex-fonts category Package -revision 54045 +revision 65657 shortdesc Fonts for use with upTeX relocated 1 longdesc The bundle contains fonts (TFM and VF) for use with upTeX. This longdesc is a redistribution derived from the upTeX distribution by longdesc Takuji Tanaka. -containersize 169608 -containerchecksum 600d47ed277ce4bc0ad0de219e307b2c4741229c0e02ad94f7dddb2f309309922fcfbc9de5e115d85ad45b53485ff844e70d5af8086f7a16980ac579795c2e7f -doccontainersize 5168 -doccontainerchecksum 3c41c19b078bb5f66b8231025e39df2b7b9b959d3a4a45b04058f670d6a08e83bef50c889045aa55caddfe7ccb8a5c7582c43115b4749232490f999574fd0ec7 +containersize 188432 +containerchecksum c5afc2563064da4f84ce962ab09966a4907bef73d776fa8c2851b7fff7de2bdcf0616c88dc75310e41c163ec9ce03fa737d87ae65cce41116f63a89be07c9033 +doccontainersize 5176 +doccontainerchecksum 7ed628337cba71518e3319c7c427f0eb6f825a3173d29ce217d48e8d49e5ddae41ac2aff43da9563f326341b650ef05e4c1f779b76e2203aec5b282cb4e30309 docfiles size=6 RELOC/doc/fonts/uptex-fonts/LICENSE RELOC/doc/fonts/uptex-fonts/README.md details="Readme" RELOC/doc/fonts/uptex-fonts/README_ASCII_Corp.txt RELOC/doc/fonts/uptex-fonts/README_uptex_font.md -runfiles size=6665 +runfiles size=6666 RELOC/fonts/cmap/uptex-fonts/UTF8-UTF16 RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-H RELOC/fonts/cmap/uptex-fonts/UniJIS2004up-UTF16-V @@ -323040,17 +337028,16 @@ catalogue-topics font-cjk name uptex.aarch64-linux category Package -revision 58876 +revision 66382 shortdesc aarch64-linux files of uptex -containersize 7069860 -containerchecksum 50728f31ea6a75ae0b70360566c4fea490900ac9d230a5113c2a78ed31ffa6abb704655982254d8d47c6528057de6c1f6e8f461b1c1253986db16f4ac268437e -binfiles arch=aarch64-linux size=6241 +containersize 1254632 +containerchecksum 1b059f3622d945bbdb18a393cbabb4ced4835832b2e2ee4371d79f5fbf06328c505a7fd2e317b45da1ee6e79cb0c1b7d4f6d48cf338110f719a3a0167379b740 +binfiles arch=aarch64-linux size=969 bin/aarch64-linux/euptex bin/aarch64-linux/r-upmpost bin/aarch64-linux/upbibtex bin/aarch64-linux/updvitomp bin/aarch64-linux/updvitype - bin/aarch64-linux/upmendex bin/aarch64-linux/upmpost bin/aarch64-linux/uppltotf bin/aarch64-linux/uptex @@ -323059,17 +337046,16 @@ binfiles arch=aarch64-linux size=6241 name uptex.amd64-freebsd category Package -revision 58850 +revision 66382 shortdesc amd64-freebsd files of uptex -containersize 7399188 -containerchecksum 80ed328090377d7a263f42f841ddf8ef2b45cda6bbee7d8e4722898046978fe4f50c020c618e56f635701acaafe3ad1b8dbf5a8c9f1100634e85e16600a2fc6b -binfiles arch=amd64-freebsd size=6443 +containersize 1532596 +containerchecksum 3bc0e9c112c4124044ad9165a59b39878a0f9d35cefa95bbd65dc37b4051ae808292bcc95cdd341b8521d286719f4ef5437a7b198944e48b943024cc00cc9ecc +binfiles arch=amd64-freebsd size=1177 bin/amd64-freebsd/euptex bin/amd64-freebsd/r-upmpost bin/amd64-freebsd/upbibtex bin/amd64-freebsd/updvitomp bin/amd64-freebsd/updvitype - bin/amd64-freebsd/upmendex bin/amd64-freebsd/upmpost bin/amd64-freebsd/uppltotf bin/amd64-freebsd/uptex @@ -323078,17 +337064,16 @@ binfiles arch=amd64-freebsd size=6443 name uptex.amd64-netbsd category Package -revision 58866 +revision 66382 shortdesc amd64-netbsd files of uptex -containersize 6928976 -containerchecksum 3eade2565d2c2f9e34ceedc5f8bee47816b7796a8bed873b0814f0f25207184096f4bd09ec383dbffb620438261c76cf939a7927f3be68b45808292e7a044702 -binfiles arch=amd64-netbsd size=7093 +containersize 1186372 +containerchecksum e520d137b009118d4a62a746c7e257feceb090844b2531d11fec02a9ddf3e69578722fad69480e6b38714a3cea5bf92a4521c548db36a36d08355200fe3848df +binfiles arch=amd64-netbsd size=1765 bin/amd64-netbsd/euptex bin/amd64-netbsd/r-upmpost bin/amd64-netbsd/upbibtex bin/amd64-netbsd/updvitomp bin/amd64-netbsd/updvitype - bin/amd64-netbsd/upmendex bin/amd64-netbsd/upmpost bin/amd64-netbsd/uppltotf bin/amd64-netbsd/uptex @@ -323097,55 +337082,34 @@ binfiles arch=amd64-netbsd size=7093 name uptex.armhf-linux category Package -revision 58911 +revision 66382 shortdesc armhf-linux files of uptex -containersize 6761520 -containerchecksum 76c20859dedea96a450de572c4c30477bf16aab4c77e255e1e985d700c8c44796f2fd8552065bd41e407b6b27b31a8fe68a4fedd7e8b98697a6c3c243db7ed7e -binfiles arch=armhf-linux size=5936 +containersize 1072412 +containerchecksum c7092ac2c52a5e44ec87153e2cee646075647a1f164196ecb084c557856f7851bf34e8694a6e00bb8d732ff876a7759f38ef723e9b1041a5f60bd247580ac175 +binfiles arch=armhf-linux size=805 bin/armhf-linux/euptex bin/armhf-linux/r-upmpost bin/armhf-linux/upbibtex bin/armhf-linux/updvitomp bin/armhf-linux/updvitype - bin/armhf-linux/upmendex bin/armhf-linux/upmpost bin/armhf-linux/uppltotf bin/armhf-linux/uptex bin/armhf-linux/uptftopl bin/armhf-linux/wovp2ovf -name uptex.i386-cygwin -category Package -revision 58851 -shortdesc i386-cygwin files of uptex -containersize 6986300 -containerchecksum f99c006f5fdcd3e951587821c5b68b32ab3398ff9c3eeb61ffa5775fd7791b1705f82889d9d3becc4b7eded895d4485da7c58b48dac6e7d903865815a7ec5558 -binfiles arch=i386-cygwin size=6097 - bin/i386-cygwin/euptex.exe - bin/i386-cygwin/r-upmpost - bin/i386-cygwin/upbibtex.exe - bin/i386-cygwin/updvitomp - bin/i386-cygwin/updvitype.exe - bin/i386-cygwin/upmendex.exe - bin/i386-cygwin/upmpost.exe - bin/i386-cygwin/uppltotf.exe - bin/i386-cygwin/uptex.exe - bin/i386-cygwin/uptftopl.exe - bin/i386-cygwin/wovp2ovf.exe - name uptex.i386-freebsd category Package -revision 58850 +revision 66382 shortdesc i386-freebsd files of uptex -containersize 7057044 -containerchecksum e7e71b60b815632d99516bfdc6a20fd21bf7d188fa183c97d1677f81dc8dc942f5c54df44de564addff4f2e4a1a988bf785f7489d36bf97ce523667f98e56d85 -binfiles arch=i386-freebsd size=6218 +containersize 1278468 +containerchecksum ce82d7746b17b4f9d29f7139f6a9da2693faedbea071fe0e0f39e6ed73a6adc049935daf17c4ab426bcaf9eed1e05234158ad9c0b2dde76be18cc7b9679f5cf5 +binfiles arch=i386-freebsd size=1004 bin/i386-freebsd/euptex bin/i386-freebsd/r-upmpost bin/i386-freebsd/upbibtex bin/i386-freebsd/updvitomp bin/i386-freebsd/updvitype - bin/i386-freebsd/upmendex bin/i386-freebsd/upmpost bin/i386-freebsd/uppltotf bin/i386-freebsd/uptex @@ -323154,17 +337118,16 @@ binfiles arch=i386-freebsd size=6218 name uptex.i386-linux category Package -revision 58850 +revision 66382 shortdesc i386-linux files of uptex -containersize 7297748 -containerchecksum 1b4eac4498712349cba4cc9fecd3470a1b5d66e4d45f8e687ef22e1e6d3d19eb1ace9cfeac1075fcf531138f65e61f352021edf644122c4c9eb8fe6609ff121a -binfiles arch=i386-linux size=6391 +containersize 1376264 +containerchecksum ed5470693dd480d243fe2e5ef7dc1128c08112243d67969a79898db4b7b0618767049643b8d5009dc4ceeda2fecf954672552f5b3acd0be4d27e6bb0dcfa4855 +binfiles arch=i386-linux size=1083 bin/i386-linux/euptex bin/i386-linux/r-upmpost bin/i386-linux/upbibtex bin/i386-linux/updvitomp bin/i386-linux/updvitype - bin/i386-linux/upmendex bin/i386-linux/upmpost bin/i386-linux/uppltotf bin/i386-linux/uptex @@ -323173,17 +337136,16 @@ binfiles arch=i386-linux size=6391 name uptex.i386-netbsd category Package -revision 58866 +revision 66382 shortdesc i386-netbsd files of uptex -containersize 6715580 -containerchecksum b103f559e16e5ffbae9d0ea39a3a7ac346805cfb96b97db1411093a9af9ef9eeee07f282f40085ebddcdebc479b935f6cf483e9ba6f7e0cb3b133f40b1acca80 -binfiles arch=i386-netbsd size=6850 +containersize 1023896 +containerchecksum e3c790e7c7cdf5eff05689667c4fb4d6d57ae9906c9af4ab0fc0d21ef70b9376fe37c78250d75d816c756590fea9a3bce7c3e18329061b04d1d31325a8de665e +binfiles arch=i386-netbsd size=1575 bin/i386-netbsd/euptex bin/i386-netbsd/r-upmpost bin/i386-netbsd/upbibtex bin/i386-netbsd/updvitomp bin/i386-netbsd/updvitype - bin/i386-netbsd/upmendex bin/i386-netbsd/upmpost bin/i386-netbsd/uppltotf bin/i386-netbsd/uptex @@ -323192,17 +337154,16 @@ binfiles arch=i386-netbsd size=6850 name uptex.i386-solaris category Package -revision 58850 +revision 66382 shortdesc i386-solaris files of uptex -containersize 7359024 -containerchecksum 82c7a4c5e1ab393c870e7f77cdb1de293893387c3d5f9c389818c94b38ffb6396f1eb523aeaa032a72ae0b6dc27d7eb1305d3c08694fb56c3265245daffdd498 -binfiles arch=i386-solaris size=6451 +containersize 1241972 +containerchecksum ad1d6a63e2125a4a8070980159f97773ffb3cb3f63e999e75088ece6871be04ba2b0a78b5cb9a0e4a16a814f1d2ad336e5ee1baaf6e1dddcd763c71f3a87c224 +binfiles arch=i386-solaris size=893 bin/i386-solaris/euptex bin/i386-solaris/r-upmpost bin/i386-solaris/upbibtex bin/i386-solaris/updvitomp bin/i386-solaris/updvitype - bin/i386-solaris/upmendex bin/i386-solaris/upmpost bin/i386-solaris/uppltotf bin/i386-solaris/uptex @@ -323211,77 +337172,72 @@ binfiles arch=i386-solaris size=6451 name uptex.universal-darwin category Package -revision 58850 +revision 66382 shortdesc universal-darwin files of uptex -containersize 14667032 -containerchecksum 4de8b666b5d2360a91dc45d2f8728f502be12b488810e4b009a2d55c64d92e9b102147f3bca30748f6a83b95d29e17008b641a1534a7e7025e643d1633b7d27d -binfiles arch=universal-darwin size=12912 +containersize 2692616 +containerchecksum d41db6c4f6ba6956351c3755237cc705b8734440ea63904ef7fe74fe862bdd504d6a413ef6c94e41610016bcc9469209f08cbd4aa9efe831dacda22cde1a516b +binfiles arch=universal-darwin size=2297 bin/universal-darwin/euptex bin/universal-darwin/r-upmpost bin/universal-darwin/upbibtex bin/universal-darwin/updvitomp bin/universal-darwin/updvitype - bin/universal-darwin/upmendex bin/universal-darwin/upmpost bin/universal-darwin/uppltotf bin/universal-darwin/uptex bin/universal-darwin/uptftopl bin/universal-darwin/wovp2ovf -name uptex.win32 -category Package -revision 59028 -shortdesc win32 files of uptex -containersize 1856248 -containerchecksum 6698e3c89f4a0a42275a1b4591bb1ec84e26ca4faeaadc5db877f552ed7b2b6a617596d171622b3110729a3e5823d77f8917d4644cb54672025d2cc712250498 -binfiles arch=win32 size=1537 - bin/win32/euptex.dll - bin/win32/euptex.exe - bin/win32/r-upmpost.exe - bin/win32/upbibtex.exe - bin/win32/updvitomp.exe - bin/win32/updvitype.exe - bin/win32/upmendex.exe - bin/win32/upmpost.dll - bin/win32/upmpost.exe - bin/win32/uppltotf.exe - bin/win32/uptex.dll - bin/win32/uptex.exe - bin/win32/uptftopl.exe - bin/win32/wovp2ovf.exe +name uptex.windows +category Package +revision 66382 +shortdesc windows files of uptex +containersize 1367812 +containerchecksum 953f808f27d665530cfc92aa4c7a9714b1fbae33a03ec6f7c7ec15436623fc0cdba8206d252fbc87b7f87e92a7a44e6c1627e814dd5b93ab013a2d71a060811b +binfiles arch=windows size=924 + bin/windows/euptex.dll + bin/windows/euptex.exe + bin/windows/r-upmpost.exe + bin/windows/upbibtex.exe + bin/windows/updvitomp.exe + bin/windows/updvitype.exe + bin/windows/upmpost.dll + bin/windows/upmpost.exe + bin/windows/uppltotf.exe + bin/windows/uptex.exe + bin/windows/uptftopl.exe + bin/windows/wovp2ovf.exe name uptex.x86_64-cygwin category Package -revision 58851 +revision 66544 shortdesc x86_64-cygwin files of uptex -containersize 7080416 -containerchecksum 46f613a00d6d85a54928a90273d7d2a5b268876fc55b9251c99efcd3ff97722722f96d3ba98eebea3ce2d1eca35a343fdc2cbd68be127a57af821f71ff68bad5 -binfiles arch=x86_64-cygwin size=6025 +containersize 1268036 +containerchecksum 43d2ad9b406e7d91126caea8a145ba018ed780e09eef6acb049201ad9303b18bab27944a1ebc42af4aae685fa3e5710cb1e93c2bee591a449785e2cace94e41b +binfiles arch=x86_64-cygwin size=832 bin/x86_64-cygwin/euptex.exe bin/x86_64-cygwin/r-upmpost bin/x86_64-cygwin/upbibtex.exe bin/x86_64-cygwin/updvitomp bin/x86_64-cygwin/updvitype.exe - bin/x86_64-cygwin/upmendex.exe bin/x86_64-cygwin/upmpost.exe bin/x86_64-cygwin/uppltotf.exe - bin/x86_64-cygwin/uptex.exe + bin/x86_64-cygwin/uptex bin/x86_64-cygwin/uptftopl.exe bin/x86_64-cygwin/wovp2ovf.exe name uptex.x86_64-darwinlegacy category Package -revision 58850 +revision 66382 shortdesc x86_64-darwinlegacy files of uptex -containersize 7009212 -containerchecksum 46e47aaa504d41df64a026a5817c2b2a3ac5875d9ae3bcb96615152c3f25131b68635b263fd79679c2c8c2ac0d3d991152a5c7ebc71a499ceee901bb0901d8b3 -binfiles arch=x86_64-darwinlegacy size=6065 +containersize 1243460 +containerchecksum 261fbe9863301fca1a23e13c696334fa61b86e619571d987afce43ec894ef908508a76e15c2919884f8fac3a18355f455dea15e5bbf74e10521fe33aacd84124 +binfiles arch=x86_64-darwinlegacy size=893 bin/x86_64-darwinlegacy/euptex bin/x86_64-darwinlegacy/r-upmpost bin/x86_64-darwinlegacy/upbibtex bin/x86_64-darwinlegacy/updvitomp bin/x86_64-darwinlegacy/updvitype - bin/x86_64-darwinlegacy/upmendex bin/x86_64-darwinlegacy/upmpost bin/x86_64-darwinlegacy/uppltotf bin/x86_64-darwinlegacy/uptex @@ -323290,17 +337246,16 @@ binfiles arch=x86_64-darwinlegacy size=6065 name uptex.x86_64-linux category Package -revision 58872 +revision 66382 shortdesc x86_64-linux files of uptex -containersize 7261580 -containerchecksum fddba0132fda0ae6019457e56bf6fbec306aeebe3521840764746fbb8a6c3a498525f29eb67640610d953e0059a2fde10b47712daf9a9a0083a2966d562c85e0 -binfiles arch=x86_64-linux size=6246 +containersize 1354456 +containerchecksum fd508f11ee7a801f4475bfef9db80f4085da2899cf694606e1f066f06c55afc96c82d018433cffc3444656875622a19ec6e6fe98602802a450642eb93cd574d4 +binfiles arch=x86_64-linux size=964 bin/x86_64-linux/euptex bin/x86_64-linux/r-upmpost bin/x86_64-linux/upbibtex bin/x86_64-linux/updvitomp bin/x86_64-linux/updvitype - bin/x86_64-linux/upmendex bin/x86_64-linux/upmpost bin/x86_64-linux/uppltotf bin/x86_64-linux/uptex @@ -323309,17 +337264,16 @@ binfiles arch=x86_64-linux size=6246 name uptex.x86_64-linuxmusl category Package -revision 58850 +revision 66382 shortdesc x86_64-linuxmusl files of uptex -containersize 7321748 -containerchecksum 2344fbe1cd2a03cd0334b777f0ab73954acf80cdaf0f62dc94192e0a6c5dc764341e615c2de5b3f3e0742ae6b1564d22e6ca4a4c3c6e140127ae5574475ae3a6 -binfiles arch=x86_64-linuxmusl size=6332 +containersize 1410524 +containerchecksum 3a5c6e88a939c5b2b08d46d3f52c78cad2baeaf0d94f357dd0c9d5b7d22428c2a052f80709fe363eed71ee7997b366e63eadc0d2a565ec47bdef8a824b1af7ba +binfiles arch=x86_64-linuxmusl size=1013 bin/x86_64-linuxmusl/euptex bin/x86_64-linuxmusl/r-upmpost bin/x86_64-linuxmusl/upbibtex bin/x86_64-linuxmusl/updvitomp bin/x86_64-linuxmusl/updvitype - bin/x86_64-linuxmusl/upmendex bin/x86_64-linuxmusl/upmpost bin/x86_64-linuxmusl/uppltotf bin/x86_64-linuxmusl/uptex @@ -323328,17 +337282,16 @@ binfiles arch=x86_64-linuxmusl size=6332 name uptex.x86_64-solaris category Package -revision 58850 +revision 66382 shortdesc x86_64-solaris files of uptex -containersize 7583288 -containerchecksum c3fbecded1f05b60985ac832ad7487381093a7092aa4915ca92e71856cf22c2023f29897432468fbb8d5eefd4798e7a465c680b08619f05f7606b4b364f5d049 -binfiles arch=x86_64-solaris size=6652 +containersize 1407324 +containerchecksum b9b5d32171701a2bde98ae85dde54e1ae1e741c4095a1809b99888739d477150d3504bb41a9cd0e413040031d2d7d8955807e927364761fff82f11a2a528a1e1 +binfiles arch=x86_64-solaris size=1015 bin/x86_64-solaris/euptex bin/x86_64-solaris/r-upmpost bin/x86_64-solaris/upbibtex bin/x86_64-solaris/updvitomp bin/x86_64-solaris/updvitype - bin/x86_64-solaris/upmendex bin/x86_64-solaris/upmpost bin/x86_64-solaris/uppltotf bin/x86_64-solaris/uptex @@ -323478,7 +337431,7 @@ catalogue-version 3.4 name urlbst category Package -revision 55777 +revision 65694 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 @@ -323486,11 +337439,11 @@ longdesc urlbst can be used to add this support to an arbitrary .bst longdesc file which has a reasonably conventional structure. The result longdesc is meant to be robust rather than pretty. depend urlbst.ARCH -containersize 13668 -containerchecksum 86b600d8beecbf310596915225ae58502d7b5e92783522beec0c6ed365a44e058cb97bc2d016d66ef9a26196b33277c93f82957ee557348ef170a11d58ba30a9 -doccontainersize 238148 -doccontainerchecksum 07cffb5192991e30fd7d6823435718b241841f709f5bef86ff7e0a69102ec93d513282aaf8f046a6205a56997b7ff3ba9442446254467f4490e537a4874a7a31 -docfiles size=82 +containersize 14284 +containerchecksum 25d5655fc01f98a1414aa962d8ad924464835aaed993e3bb5a749721034aacb559a4ca1590d353615734535ac91d31abf7b99004f6298525ac618f35bfcb0fd0 +doccontainersize 252716 +doccontainerchecksum 897c866ab03bdd5ab741537182788c5f484009681d6fb98f1149329068be707abae7ef012c0bd0170e2b4b673eaa63b46f5d0d55714015e8a451457f5a6c540c +docfiles size=89 texmf-dist/doc/bibtex/urlbst/LICENCE-gpl-2.0.txt texmf-dist/doc/bibtex/urlbst/LICENCE-lppl.txt texmf-dist/doc/bibtex/urlbst/README details="Package Readme" @@ -323500,23 +337453,24 @@ docfiles size=82 texmf-dist/doc/bibtex/urlbst/urlbst.in texmf-dist/doc/bibtex/urlbst/urlbst.pdf details="Package documentation (PDF format)" texmf-dist/doc/bibtex/urlbst/urlbst.tex -srccontainersize 22884 -srccontainerchecksum eb93a704fe994add75e3cd5202bd5a5fc9e388d35f125fa60bbeeae09bc20d223fc8e34d9899d6f378938f33ae29b96a67b3a1fc3a46782a1caff030975738a4 +srccontainersize 23300 +srccontainerchecksum 5bbad9719daeeb8c03e7db6ef956881994bc17d7ced9b45165ad45899a7230ea8c0ceeb23d209d36535d2081b6b611d46c19b1f0f03e8fbae1788f31ab09e7bd srcfiles size=25 texmf-dist/source/bibtex/urlbst/Makefile.in texmf-dist/source/bibtex/urlbst/configure texmf-dist/source/bibtex/urlbst/configure.ac -runfiles size=41 +runfiles size=43 texmf-dist/bibtex/bst/urlbst/abbrvurl.bst texmf-dist/bibtex/bst/urlbst/alphaurl.bst texmf-dist/bibtex/bst/urlbst/plainurl.bst texmf-dist/bibtex/bst/urlbst/unsrturl.bst texmf-dist/scripts/urlbst/urlbst -catalogue-contact-home http://purl.org/nxg/dist/urlbst +catalogue-contact-home https://purl.org/nxg/dist/urlbst +catalogue-contact-repository https://heptapod.host/nxg/urlbst catalogue-ctan /biblio/bibtex/contrib/urlbst catalogue-license gpl2 lppl catalogue-topics bibtex-sty -catalogue-version 0.8 +catalogue-version 0.9.1 name urlbst.aarch64-linux category Package @@ -323554,15 +337508,6 @@ containerchecksum d914a20f8d4fd935bd217066da6364eda2ee4ca8494d6353ae888028caf7b8 binfiles arch=armhf-linux size=1 bin/armhf-linux/urlbst -name urlbst.i386-cygwin -category Package -revision 23262 -shortdesc i386-cygwin files of urlbst -containersize 336 -containerchecksum 06395831794851c816063dd724e38270e9cd6882c0d011b275019411f3330ac88c741ad807bcb8bf8542f6feea5269bb653897314699dc77357151464d767abd -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/urlbst - name urlbst.i386-freebsd category Package revision 23262 @@ -323608,14 +337553,14 @@ containerchecksum 6b6c74af426fcc29638ef43ac1a92cfa2ae9e6ab07caadbdbf51fe971f74c5 binfiles arch=universal-darwin size=1 bin/universal-darwin/urlbst -name urlbst.win32 +name urlbst.windows category Package -revision 23262 -shortdesc win32 files of urlbst -containersize 680 -containerchecksum 4b7723c10344eb58e971ca4f5a6526eeb7bb240d21f23f89adc7d8543a250d4e61250f4438e12256a645b9feab83c9ef8b25743a00f271958eec9da73380f0c7 -binfiles arch=win32 size=1 - bin/win32/urlbst.exe +revision 65891 +shortdesc windows files of urlbst +containersize 2304 +containerchecksum 6ad2237b6d2f50081cbbe7d6e472006113a29e5ddfc6107bb3923cdcb998e119288cedbe2f5bd0703f1bce8ace4cb6f213041cbd44b80514c0ed1f78aa4862f6 +binfiles arch=windows size=2 + bin/windows/urlbst.exe name urlbst.x86_64-cygwin category Package @@ -323753,16 +337698,16 @@ catalogue-version 2.2 name uspace category Package -revision 42456 +revision 63123 shortdesc Giving meaning to various Unicode space characters relocated 1 longdesc LaTeX package that gives meaning to various Unicode space longdesc characters. containersize 1112 -containerchecksum 57a271421c15eefd41517881e951c8a55096e6bc7b769beba123813e19682407b24dcde898bc8df75700f33316a5281fedf5c24a3ffd7a97eea2bcf5f658e7e9 -doccontainersize 268848 -doccontainerchecksum c4b3c401cdedde7e67a2b4fca44f53c67c578fec287e22f0c1b67252b6fa4c0ed4d3a8ab1328162e7bea015536f1a1e4539fb104c8c889bb4e1549f7bf748e13 -docfiles size=107 +containerchecksum cb830007a35024a6fb7817f186fd0c02270c1cc639240f2077b10193e411f207ecb744281540dd6cfb1cd830424d9a5256fc7cf5a315adcab082b6f69e7da1d9 +doccontainersize 292136 +doccontainerchecksum 894c14ae766ada6c0eec7b3d5a2c64931a011560057fa3732eb32de0bfabb6cfedcc27d73235dfe8616e9e6403cef563880bbb66f2ec2a1244da95c92fd2002c +docfiles size=81 RELOC/doc/latex/uspace/LICENSE RELOC/doc/latex/uspace/README.md details="Readme" RELOC/doc/latex/uspace/uspace-ctanify.sh @@ -323775,9 +337720,9 @@ docfiles size=107 runfiles size=1 RELOC/tex/latex/uspace/uspace.sty catalogue-ctan /macros/latex/contrib/uspace -catalogue-license other-free +catalogue-license mit catalogue-topics enc-juggle inputenc hyphenation unicode -catalogue-version 0.04 +catalogue-version 0.05 name uspatent category Package @@ -323829,7 +337774,7 @@ catalogue-version 1.0 name ut-thesis category Package -revision 59078 +revision 65767 shortdesc University of Toronto thesis style relocated 1 longdesc This LaTeX document class implements the formatting @@ -323837,15 +337782,15 @@ longdesc requirements of the University of Toronto School of Graduate longdesc Studies (SGS), as of Fall 2020 ( longdesc https://www.sgs.utoronto.ca/academic-progress/program-completio longdesc n/formatting). For example usage, see the GitHub repository. -containersize 2720 -containerchecksum fd153742d545c726af9112674b880b5260d7c45f6bd49fa3624fd6651e0752110666bcb89fdf16d673ff3d94e4b35c1d9978f7d502657abb2dcbb461b94e76fe -doccontainersize 117040 -doccontainerchecksum 915ca737cbb016d6e0ade0de05a8b539d30609a800b0186e4eb9970db778d4223f7fade7022e9fc00c4f3bc8f2a73c70ae722c93eec7bf8943532756c0c8f9ce -docfiles size=30 +containersize 2632 +containerchecksum a5a9c3028582fd2c379f00adb5d6abc650d0d89c3a802726c6e4c0e86f9083c445a9a431bec9be956ef242a0b3051f32eb5b63387e2fa380961195cca8d3832a +doccontainersize 134036 +doccontainerchecksum d1e28a7d927620e259caee4c4affa8af9aad67089a0886f098ff85d96bfa473863aa4c9f6ef225629fe3c97b7505a9bb73802ef861c4198002ae1af4456b1cbc +docfiles size=35 RELOC/doc/latex/ut-thesis/README details="Readme" RELOC/doc/latex/ut-thesis/ut-thesis.pdf details="Package documentation" -srccontainersize 6828 -srccontainerchecksum ca24051bb4f9e315ff7036f3a5c891a3b502a2ca6ecde88165665f6f302d332215b9cd6e0d50e8c8ad732a51268c50b7f33c5591be6b3b0b865041e1b968685a +srccontainersize 6868 +srccontainerchecksum 0ed214fa702923f6a9599bcbadd0e670545d308c32502ffeb4381e64d2f5aec4cba6b74f44e208789d9626d160b111409b5b70c46b3bd9d311d9294a4b57df80 srcfiles size=6 RELOC/source/latex/ut-thesis/ut-thesis.dtx RELOC/source/latex/ut-thesis/ut-thesis.ins @@ -323857,7 +337802,7 @@ catalogue-contact-repository https://github.com/jessexknight/ut-thesis catalogue-ctan /macros/latex/contrib/ut-thesis catalogue-license lppl1.3c catalogue-topics dissertation class std-conform -catalogue-version 3.0.3 +catalogue-version 3.1.7 name utexasthesis category Package @@ -323887,7 +337832,7 @@ catalogue-version 1.0 name utf8add category Package -revision 55291 +revision 61074 shortdesc Additional support for UTF-8 encoded LaTeX input relocated 1 longdesc This bundle contains the LaTeX packages utf8add.sty and @@ -323896,11 +337841,11 @@ longdesc for the use of UTF-8 encoded input. This is intended for making longdesc LaTeX input more readable. The utf8hax package is using UTF-8 longdesc characters for easier access to math in LaTeX, however making longdesc the LaTeX input less readable. -containersize 4040 -containerchecksum 38af66fa77e637a5bffce68d816cf6aa4e34ce5452b690874de91d9c10199316d60ead3736c14e7872cc4562ba1fe4d953c4fa7887767327d06547b68f85b81e -doccontainersize 390028 -doccontainerchecksum f521642270b8cf26f609c050eaf412f2fcc53fc0b5b3e1873c141a5b5039fff9d0387b0ac83d0d831d22be256d3eeea4db51c67da2642372831976555eb6600b -docfiles size=118 +containersize 4272 +containerchecksum 988d720d5f4dac3d15e7483e1ce904f214055407c41c19ee7c2683db592ef870cc9a87d28f47092cd062b5ac5bd061b68738046dcea919b0aa9573b0c31a04c3 +doccontainersize 78600 +doccontainerchecksum c1f41ca0ea536db11e2e6c1df561e74f8bc51da3147410f7f33863d0be1d38948bcb64d0f4d8c41737278435d2f88b8ad758d2c48f1672b682169de5e0099b70 +docfiles size=35 RELOC/doc/latex/utf8add/LICENSE RELOC/doc/latex/utf8add/README details="Readme" RELOC/doc/latex/utf8add/utf8add.pdf details="Utf8add package documentation" @@ -323946,22 +337891,22 @@ catalogue-topics format name utfsym category Package -revision 56729 +revision 63076 shortdesc Provides various Unicode symbols relocated 1 longdesc This package provides various symbols from the Unicode in order longdesc to be able to use them originally in a school setting such as longdesc on worksheets. -containersize 1890332 -containerchecksum cbc9203663a121f2c421d07bf630831db438aa74c6d6ca95d3d7d7f5a5736db351e0fea5fb269ed2b02eaaec5d85de52f2f9ca90d753d41ca9da7328c6af2326 -doccontainersize 2979868 -doccontainerchecksum 3b90dd9075fa3b4602e76593b90603ff4022a003599d12297bcb482fc28995ac204de1908baef9e4506a0bba82edf09dbf6314dd7034808aaf7aa38af3bee6d7 -docfiles size=879 +containersize 1889696 +containerchecksum 66dd74f22a26022eb13ff7a8807612d33a978070f86ee5e0eecd9b957684150985e6bd6bdb81c8917781926a0e8c13f9310aec36e12b0a896a353194f0a900b2 +doccontainersize 2990532 +doccontainerchecksum a70bd657812f64e79f028efb591888863ba5bbc0d7f16a9c70fc1614d21c0fab9d4de2545288b12c7d6c885f489b5b0062e739e531595b8673bdd4a7e1da653b +docfiles size=883 RELOC/doc/latex/utfsym/README details="Readme" RELOC/doc/latex/utfsym/symbole.tex RELOC/doc/latex/utfsym/utfsym.pdf details="Package documentation" language="de" RELOC/doc/latex/utfsym/utfsym.tex -runfiles size=4522 +runfiles size=4504 RELOC/tex/latex/utfsym/usym1F000.tikz RELOC/tex/latex/utfsym/usym1F001.tikz RELOC/tex/latex/utfsym/usym1F002.tikz @@ -325644,10 +339589,12 @@ runfiles size=4522 RELOC/tex/latex/utfsym/usym27BF.tikz RELOC/tex/latex/utfsym/utfsym.sty catalogue-also schule +catalogue-contact-bugs https://gitlab.com/gi-fg-ibnw/utfsym/-/issues +catalogue-contact-repository https://gitlab.com/gi-fg-ibnw/utfsym catalogue-ctan /graphics/pgf/contrib/utfsym catalogue-license cc0 catalogue-topics pgf-tikz symbol-supp -catalogue-version 0.8.3 +catalogue-version 0.9.0 name utopia category Package @@ -325729,6 +339676,156 @@ catalogue-ctan /fonts/utopia catalogue-license other-free catalogue-topics font font-type1 +name uvaletter +category Package +revision 66330 +shortdesc Unofficial letterhead template for the University of Amsterdam +relocated 1 +longdesc This is an unofficial LaTeX package that provides a letterhead +longdesc template for the University of Amsterdam. The design mimics the +longdesc official Word template of the University and complies with the +longdesc University's house style. +containersize 1464 +containerchecksum fe6bf723f33fdf8f98cad6c6d48697a0282ca30d9f1ffd578137d630445235af24b20bd0a39c179de6fd74405738756005c7aebc06c44294b93219f27b6a2d4c +doccontainersize 122460 +doccontainerchecksum bd341c2d4e2b857dc349bb19b12931e1363670d7ca28d7fa16b94b4b1e93b65e5fc125e5b1b306a0618a7accab88a856f1cf833a9892a9bfeb8b86dc98de454e +docfiles size=36 + RELOC/doc/latex/uvaletter/LICENSE + RELOC/doc/latex/uvaletter/README.md details="Readme" + RELOC/doc/latex/uvaletter/demo/uvaletter-demo.pdf details="Package documentation" + RELOC/doc/latex/uvaletter/demo/uvaletter-demo.tex +runfiles size=1 + RELOC/tex/latex/uvaletter/uvaletter.sty +catalogue-contact-bugs https://github.com/piazzai/uvaletter/issues +catalogue-contact-repository https://github.com/piazzai/uvaletter +catalogue-ctan /macros/latex/contrib/uvaletter +catalogue-license mit +catalogue-topics titlepage headings +catalogue-version 1.1.0 + +name uwa-colours +category Package +revision 60443 +shortdesc The colour palette of The University of Western Australia +relocated 1 +longdesc This package uses the xcolor package to define macros for the +longdesc colour palette of The University of Western Australia. +containersize 1228 +containerchecksum c2ec752b4cbf80f35787db83a0d227306689b1ba9bee6339bb6c2940fd938ce33daa995bbad2c58ed9284143ad3f45aed6668dff88134878cf115968c6820a3c +doccontainersize 127872 +doccontainerchecksum 42745187e02211f149c74c82e0046f42eb5c1c6b01c39fcc8f0a52ae50613646b216355f29d0af0b6536558c2689b2eb83f31c84d29bc007de4c8f9d78ea6d43 +docfiles size=33 + RELOC/doc/latex/uwa-colours/README details="Readme" + RELOC/doc/latex/uwa-colours/uwa-colours.pdf details="Package documentation" +srccontainersize 3016 +srccontainerchecksum e03bbb8bf8f7684c02623d9f46187cd0b4ba282b1971679927b633ad2b987748c3f784caa6eb01054422f91f2703e2733dca0bdf2c89902ef61321875e2e96a9 +srcfiles size=3 + RELOC/source/latex/uwa-colours/uwa-colours.dtx + RELOC/source/latex/uwa-colours/uwa-colours.ins +runfiles size=1 + RELOC/tex/latex/uwa-colours/uwa-colours.sty +catalogue-ctan /macros/latex/contrib/uwa-colours +catalogue-license lppl1.3 +catalogue-topics colour +catalogue-version 1.0.0 + +name uwa-letterhead +category Package +revision 64491 +shortdesc The letterhead of the University of Western Australia +relocated 1 +longdesc This package generates the letterhead of the University of +longdesc Western Australia. It requires the UWA logo in PDF format, +longdesc which is available in SVG format at +longdesc https://static-listing.weboffice.uwa.edu.au/visualid/core-rebra +longdesc nd/img/uwacrest/, and uses the Arial and UWA Slab fonts by +longdesc default. The package works with XeLaTeX and LuaLaTeX. +containersize 3348 +containerchecksum f9e4b88e01528992956abffcadc5614ea0a250283b0bc87709e228fdc394b58600c7cd41d4c9d944a6cddb66b9a23b8ad3473f37de8cb566aaca218d348fcce3 +doccontainersize 57656 +doccontainerchecksum 63a53dbd15700956d199ec147ccdf5c84e821e2a19ff46209f869a5656055fa9e4654746cb7f89b7cca1a3927c64715008846d87d85c8ffe6c269056b0d7a6c1 +docfiles size=17 + RELOC/doc/latex/uwa-letterhead/README details="Readme" + RELOC/doc/latex/uwa-letterhead/uwa-letterhead-example.tex + RELOC/doc/latex/uwa-letterhead/uwa-letterhead.pdf details="Package documentation" +srccontainersize 6568 +srccontainerchecksum c86680643bbf04636e3a2cc581ddaa457d48a6dd7d5a7344480a1b1340b27f3fc23657422d5ec44200ce9fed77d1f705b85fee5ae4cf195481eb8c57fb96729e +srcfiles size=8 + RELOC/source/latex/uwa-letterhead/uwa-letterhead.dtx + RELOC/source/latex/uwa-letterhead/uwa-letterhead.ins +runfiles size=3 + RELOC/tex/latex/uwa-letterhead/uwa-letterhead.sty +catalogue-ctan /macros/unicodetex/latex/uwa-letterhead +catalogue-license lppl1.3 +catalogue-topics letter page-hf std-conform +catalogue-version 1.0.1 + +name uwa-pcf +category Package +revision 64491 +shortdesc A Participant Consent Form (PCF) for a human research protocol at the University of Western Australia +relocated 1 +longdesc This LaTeX class generates a Participant Consent Form (PCF) for +longdesc a human research protocol at the University of Western +longdesc Australia. It requires the UWA logo in PDF format, which is +longdesc available in SVG format at +longdesc https://static-listing.weboffice.uwa.edu.au/visualid/core-rebra +longdesc nd/img/uwacrest/, and uses the Arial and UWA Slab fonts by +longdesc default. The class works with XeLaTeX and LuaLaTeX. It depends +longdesc on the uwa-letterhead package. +containersize 2924 +containerchecksum 290e29b50c9842d87479c3ace96368ada1c0561e12b6c09d8b562a134a935511bca6ea177ec863e0c57339b90177f09a5305d41f741b821a621ef2a80af32aae +doccontainersize 52740 +doccontainerchecksum 22268ddb91b0490a9df9805803c831ff1f4259311b1fe02103658d6da69b0ec474bcb3b7b918aad23a365c343e1bab3124927d36c86d06bf3e91e021d8a9bbe4 +docfiles size=15 + RELOC/doc/latex/uwa-pcf/README details="Readme" + RELOC/doc/latex/uwa-pcf/uwa-pcf-example.tex + RELOC/doc/latex/uwa-pcf/uwa-pcf.pdf details="Package documentation" +srccontainersize 6060 +srccontainerchecksum cabcde080b1409d27212c2a9e00432a19c68b6af3a8304695a47311ff83745d22612c0bb967f58485e9d030700df47b97425627b2f2e2365bb57c6ac0fe33884 +srcfiles size=7 + RELOC/source/latex/uwa-pcf/uwa-pcf.dtx + RELOC/source/latex/uwa-pcf/uwa-pcf.ins +runfiles size=3 + RELOC/tex/latex/uwa-pcf/uwa-pcf.cls +catalogue-ctan /macros/unicodetex/latex/uwa-pcf +catalogue-license lppl1.3 +catalogue-topics class std-conform +catalogue-version 1.0.1 + +name uwa-pif +category Package +revision 64491 +shortdesc A Participant Information Form (PIF) for a human research protocol at the University of Western Australia +relocated 1 +longdesc This package generates a Participant Information Form (PIF) for +longdesc a human research protocol at the University of Western +longdesc Australia. It requires the UWA logo in PDF format, which is +longdesc available in SVG format at +longdesc https://static-listing.weboffice.uwa.edu.au/visualid/core-rebra +longdesc nd/img/uwacrest/, and uses the Calibri fonts by default. The +longdesc class works with XeLaTeX and LuaLaTeX. It depends on the +longdesc uwa-letterhead package. +containersize 2592 +containerchecksum d16d72cece1e8d98495066ba0b55dbdb51ab4909cad1b99d9d11534dcf1c57bd3b7ebfef27b2825ca24bb0e19bf4b8a6e9a1bb3b28fff061377e90c8c0afb52f +doccontainersize 50500 +doccontainerchecksum d14e8f6cb0aea97df72cd801e474f7062411a15e31294a032d6e0d33f084f0edcde6b1e7d0319abfe0881de9dfaabfe89fa444f6e846f1a27916e8377358c310 +docfiles size=15 + RELOC/doc/latex/uwa-pif/README details="Readme" + RELOC/doc/latex/uwa-pif/uwa-pif-example.tex + RELOC/doc/latex/uwa-pif/uwa-pif.pdf details="Package documentation" +srccontainersize 5696 +srccontainerchecksum 27c47feaa89b3820824761d67d56a0f99033fb42d987b807b29624448c6f61dd7383eb16b3cebc23f899fc718e62767a567a914bdec3bf012570a8ca6cd0faaa +srcfiles size=6 + RELOC/source/latex/uwa-pif/uwa-pif.dtx + RELOC/source/latex/uwa-pif/uwa-pif.ins +runfiles size=2 + RELOC/tex/latex/uwa-pif/uwa-pif.cls +catalogue-ctan /macros/unicodetex/latex/uwa-pif +catalogue-license lppl1.3 +catalogue-topics class std-conform +catalogue-version 1.0.1 + name uwmslide category Package revision 27354 @@ -325810,7 +339907,7 @@ catalogue-topics dissertation name vancouver category Package -revision 55423 +revision 59192 shortdesc Bibliographic style file for Biomedical Journals relocated 1 longdesc This BibTeX style file is generated with the docstrip utility @@ -325819,10 +339916,10 @@ longdesc Manuscripts Submitted to Biomedical Journals as published in N longdesc Engl J Med 1997;336:309-315 (also known as the Vancouver longdesc style). The complete set of requirements may be viewed on the longdesc ICMJE web site. -containersize 8328 -containerchecksum 2dd41dd96607ecbb4c4bde1f6ff3c63a3e79efe7d025fce510e1b0dfc5b8d5bb19826042c04819f1d84178fce7d077e8f7b25fa9beccc4ed88db2683e716444e -doccontainersize 136436 -doccontainerchecksum 18069bd05809a9c8dc6a5e45af304dc74f40b5304c34064c7de67a961804d540a4cd892b4de380cb6c59a334b09cc165c2aa81749be1d4b2fe56e7fc7528e0f9 +containersize 8708 +containerchecksum 9fd38e4545902a8f715e2912ce2046a679476f0a91ee76af74213b65689c4e2c01aa68ea8fdb09d93442097695443a2be0d6169dd50fc8ec63a7f9fe424ea739 +doccontainersize 137272 +doccontainerchecksum 4bb074a9ae48d6e565b1b60dfcdec4b6fe35e367639c3737e68e4cdeb9ed9017b17d57ebe895865b6b0f63bb7d66df5af08360d149aa5f2f7c604bf90faa9859 docfiles size=45 RELOC/doc/bibtex/vancouver/FAQ RELOC/doc/bibtex/vancouver/LICENSE @@ -325836,21 +339933,21 @@ catalogue-contact-repository https://gitlab.com/fvdbeek/vancouver.bst catalogue-ctan /biblio/bibtex/contrib/vancouver catalogue-license lppl1.3 catalogue-topics biomedical journalpub bibtex-sty -catalogue-version 0.8 +catalogue-version 1.0 name variablelm category Package -revision 46611 +revision 60014 shortdesc Font definitions for the variable Latin Modern fonts relocated 1 longdesc This package provides a mechanism for scaling a typeface. It is longdesc directed at the Latin Modern fonts and provides the font longdesc definitions and the corresponding style file. This mechanism is longdesc useful in mixed text compositions, for example Japanese-Latin. -containersize 3624 -containerchecksum e58a1c5a77861ed3a84f2fb372d6c3560129b656257e23a935fa9d7ce18c83b59f9863e29ff35c45c6ab800cd09aa2fe7bcb1fd01edbbe2e75112809c17faa9e -doccontainersize 133116 -doccontainerchecksum 58611f636d5aea5ee2935c75206e0d051345d7138d04668ec7875b3ee0493e39bba54b1941aaedf33abfeb7636602fa6ac7fe7e750837b425678eae97b7495fa +containersize 3608 +containerchecksum 1c34d4afa65db4993f3098cb32b604c68a75bc2c0b56b026a6d50c2de61392d4bace210dab2fb5ca0c15253e7486406aa3aa5084e2296bd5e8f1e9c953419627 +doccontainersize 134724 +doccontainerchecksum 56bbeff2f9cb4a99c05416d7fae7cea8cef81e712092ae8b5d1ca644769debdd95c443fb6af7edc034fe9d778147e1b37da50d951278a7f64c407dead5f6e7cb docfiles size=35 RELOC/doc/fonts/variablelm/README.md details="Readme" RELOC/doc/fonts/variablelm/control_scaling_lm_fonts.pdf details="Package documentation" @@ -325875,7 +339972,7 @@ catalogue-contact-repository https://github.com/yuw/texmf-variablelm catalogue-ctan /fonts/variablelm catalogue-license gfl catalogue-topics font-cm font-virtual font-t1enc -catalogue-version 1.1.2 +catalogue-version 1.2 name variations category Package @@ -326101,7 +340198,7 @@ catalogue-version 1.1 name velthuis category Package -revision 55475 +revision 66186 catalogue devanagari shortdesc Typeset Devanagari longdesc Frans Velthuis' preprocessor for Devanagari text, and fonts and @@ -326116,9 +340213,9 @@ depend velthuis.ARCH depend xetex-devanagari execute addMixedMap dvng.map containersize 4149432 -containerchecksum 451023c09755f3aa884128a6ddd5e70a6820724de66f8923deea812a8e28c337676de95aa98a06a96013502fa24e9855b24977603c675820b1d5a0a056fe4cab -doccontainersize 979992 -doccontainerchecksum e17270b0e427e3ff02b1d43e578815ec37c0046a20ceb898a357041f9184044162077d9fc64f66d955d774637a8d2ec59d31b624dd743113c972d0854075df10 +containerchecksum b7901813517790a92a921b1202c39a058d53a4159634cae79960ec7ce2da08acb757b307b5066ab1251e4b460234fd9dd98c2e404c05fc6384c656472302e3ec +doccontainersize 979936 +doccontainerchecksum 06a9330410b55052759e18efa8720ef65f0f3dc8a2f15d3c0a0c8f70edaf8de65eeef8ec10a9a376b4b285b1c8f619278f68e9a2bd7ba1622da72b6ff488f8f7 docfiles size=289 texmf-dist/doc/generic/velthuis/README details="Readme" texmf-dist/doc/generic/velthuis/captions.dn @@ -326410,73 +340507,64 @@ catalogue-version 2.17.1 name velthuis.aarch64-linux category Package -revision 53999 +revision 65927 shortdesc aarch64-linux files of velthuis -containersize 13072 -containerchecksum dd804ae1d1939c2b4d12a4040031922d1eb0b48ab5a890e3fb266b73dcecd1d54979a752c6793b2fd50ac088530da221c1ebb7ffb65a42fb317504acb39461b7 +containersize 13084 +containerchecksum fb6c0c3503d397f2a95090da3c0aa6fdbcade26da06387241befcbf00dbc2c5050ac2b82d17f3e8956501173cbe972e2ab86e7f3439a9667697a997232dca4f0 binfiles arch=aarch64-linux size=13 bin/aarch64-linux/devnag name velthuis.amd64-freebsd category Package -revision 57941 +revision 62206 shortdesc amd64-freebsd files of velthuis -containersize 13100 -containerchecksum 87376efa21d5daf50b0027d6fb62860b446f767e4500c0bd64446cae73a5d1f4b9f3587b66dbf7a6dbaf0d169b409d40bee3790edd314b84ba88c05174ae0336 +containersize 13668 +containerchecksum 4aec6882f7d61054bbb9fa6119eacbc6e747d3ee110e1de2ddf64829f54eaddaa53a44cedbde208104a200f6d8200791873b75b9eb2c4e439468c6f5d6c98d70 binfiles arch=amd64-freebsd size=9 bin/amd64-freebsd/devnag name velthuis.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of velthuis -containersize 11640 -containerchecksum f25da260100655abe5afef1e2da5dda94bfe2e4ed4c208139b8a6ee5320e5076f2e01ef1039ba6edb3879771bd6cce2757c7303bff651fe4d1e21128dfd3bc0a +containersize 11636 +containerchecksum 9f59b39c8814ad6a709d6f52691db583050b5661553945103fa083a382147616c3000ac667cb5d884a5514afbe4639610ffbd1a1dc213f940db8abff71bc169d binfiles arch=amd64-netbsd size=9 bin/amd64-netbsd/devnag name velthuis.armhf-linux category Package -revision 57957 +revision 63092 shortdesc armhf-linux files of velthuis -containersize 10816 -containerchecksum d6cba8f66bd3c05c5f2c87658d4eb4f49917b775504622c6adf94528547dfe33d171b0392f65e56e3e844b337d5086d834f42f023bcf7f4b1b0e2af6b646fd6d +containersize 10824 +containerchecksum 250dd0962b245d601ff65472510fc9fc0e0a74a99b3ad52ec4e22ee9ed60801546f9bd11d813ca83087f6e46ae892df883ecf0277bed656336a8a4e89244b79d binfiles arch=armhf-linux size=7 bin/armhf-linux/devnag -name velthuis.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of velthuis -containersize 11868 -containerchecksum d854c45962a0f6fc55b6854c35ac9f58e7d3be0863fab3bde2d568feb70766458cf5aa415156b2d4d5fba25153ccb6290843efe4053a8135326f0d52fc829ad1 -binfiles arch=i386-cygwin size=8 - bin/i386-cygwin/devnag.exe - name velthuis.i386-freebsd category Package -revision 57961 +revision 62206 shortdesc i386-freebsd files of velthuis -containersize 11144 -containerchecksum 624e97024daa7e5fd63a21573bb7aa5129c937c807019ce446ed5514a7277d93468f3ce61e285d7ae5089e32fdf58df29e733d09d9e446eaf7d291aeca90c129 +containersize 12048 +containerchecksum 7896ff23f6b88f22132d9f52e9e833e29ceb02a91318b5e69116784078ea6bffcde5d516ef2faa62f7303ee6001acecfb630e627f6f87a8ba3c1a74ba71cdd0c binfiles arch=i386-freebsd size=7 bin/i386-freebsd/devnag name velthuis.i386-linux category Package -revision 50281 +revision 62210 shortdesc i386-linux files of velthuis -containersize 11748 -containerchecksum e0d0a80e2280c998835b0ab9677d448c52d40a8dae8828d0f2b79c41060ef8404d70c452d77860a4b9f313d5ea42a63bf4d59ba972e4db465838da1224513f46 -binfiles arch=i386-linux size=7 +containersize 12048 +containerchecksum da0f01418c5c4b53f360b9ddbf334fc64ec33f7da638bee4dd743f0a1e0dc6576a1be0bc126e70103b526694d7e753bc154371b8681e8e8e9986918d62c471b8 +binfiles arch=i386-linux size=8 bin/i386-linux/devnag name velthuis.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of velthuis -containersize 10688 -containerchecksum 0f8f70062155c22939408059b2b8644b6beefdaf8e224112dbfa7530ef99c3eae2c19067775b18864fc7a2292af083458a863f6cc9aa156289ede83fb65f6e73 +containersize 10736 +containerchecksum 262e2051a4a8fac1ce0b735de38ce69322ebffb4af02985550688a0548fb5266434147124f7e678133f36ea30615c6d067891b5427444012dc25add630f5b1fc binfiles arch=i386-netbsd size=8 bin/i386-netbsd/devnag @@ -326491,29 +340579,29 @@ binfiles arch=i386-solaris size=8 name velthuis.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of velthuis -containersize 30352 -containerchecksum cc68a2d293d662db9f5698e2c40850daffc7d44f9d488a82d04005d53eccb507522b2f5112aa735c0497c1801a59993131eedd79338b12842918e4b96be89d98 -binfiles arch=universal-darwin size=38 +containersize 29900 +containerchecksum d0c08a2c31e908c4c50b0ee503139c6705b6e78e3cf61aab3c4ac12f050bd313f11f796bf7505bd664ede86d0f26e40ad2f5068cda4efaf6186b71790341ff91 +binfiles arch=universal-darwin size=42 bin/universal-darwin/devnag -name velthuis.win32 +name velthuis.windows category Package -revision 53994 -shortdesc win32 files of velthuis -containersize 13564 -containerchecksum 16dec32af1d8d136a6b20250dc34d3d3ab85af29cab47b85b57a5c0f19df3bac744f3953723385fa5e854b751dffc985d873d71b49e2acfbe60d36b4528e3223 -binfiles arch=win32 size=8 - bin/win32/devnag.exe +revision 65891 +shortdesc windows files of velthuis +containersize 14416 +containerchecksum 4afd6fa4df457b1d84a067cdf44873257a72b5ebd009ed87ae22ec0ba03891ea04eb27fdfe18320e1c8615bad59957dab12e9d5d47db50675fc21fea08ec4e0e +binfiles arch=windows size=9 + bin/windows/devnag.exe name velthuis.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of velthuis -containersize 12876 -containerchecksum 7454ca0122760ddbbe1eb0cd564601f4e39cb088919f80d7634b4aa106d3a41668f63868d7c5d0be7d5523644239998dd91ca8a18717de4b14f6d037e1551779 -binfiles arch=x86_64-cygwin size=8 +containersize 13112 +containerchecksum 406987d077aa53aa78f6f0f2aa28ea40de069556e34eb3f7cb8b64233d97fa18b2658ab811f7cfd278f0865c016bd217679ccba0b34261ae23c2bc52f77969fc +binfiles arch=x86_64-cygwin size=9 bin/x86_64-cygwin/devnag.exe name velthuis.x86_64-darwinlegacy @@ -326527,19 +340615,19 @@ binfiles arch=x86_64-darwinlegacy size=8 name velthuis.x86_64-linux category Package -revision 50281 +revision 62187 shortdesc x86_64-linux files of velthuis -containersize 12160 -containerchecksum 7466f544cc1e08574c66b592b39bb4cda0451a2a4b58f1b3c20c4617cfa7cf0df79c1dce10a11a5d36d1c531a1338a8f2448fe5e89791dcb98c6eb9c6e69aa11 -binfiles arch=x86_64-linux size=8 +containersize 12084 +containerchecksum 3deb66b133a75d47a257bc0b61d17d30db33a98cafb31f2ba02a2f0e6d19712630070336934cd00480cde6a4ca9e02f00b5741a883315c86336ffb7cee8ba325 +binfiles arch=x86_64-linux size=10 bin/x86_64-linux/devnag name velthuis.x86_64-linuxmusl category Package -revision 54264 +revision 62210 shortdesc x86_64-linuxmusl files of velthuis -containersize 13432 -containerchecksum 5cdca1f685e450e4a22be2c1cf43ac5587a22a56db0a349f5514db9d637f9e00cfc890f3d746119d81d4131ac8c1a50502694e10602b203d6f510c7939f30a45 +containersize 13684 +containerchecksum 5b8a10d4a5ff259b05fb6d05a8f2f366978033454cc6c138ee9f138e2316f64a586ff9286b41478aa7f1306a8bde80ddae4be26ebb83af7ea604f207b79c550f binfiles arch=x86_64-linuxmusl size=10 bin/x86_64-linuxmusl/devnag @@ -327628,7 +341716,7 @@ catalogue-version 1.3 name verifiche category Package -revision 57766 +revision 64425 shortdesc A LaTeX package to typeset (Italian) high school tests relocated 1 longdesc The purpose of this package is to manage the exercises for a @@ -327636,26 +341724,26 @@ longdesc test, their points, levels of difficulty, and solutions. Some longdesc typical formats of exercises are already implemented: Plain longdesc exercise "Complete the Text" "True or false" Closed questions longdesc Open questions "Find the error" -containersize 4324 -containerchecksum db44ee3db5e17a7d8508eed3fd93781bd2ccb1a29ec04fcf2a28b91fdeaf4130b8ea5f09c0be79c5ed9da9b3ea729eb9b31b31374ce82e9602501e4cfb26cf9d -doccontainersize 695144 -doccontainerchecksum d3477629537881fdc6d8f7b739daa14178de3c5f9a4b35c97829c6fde2de82a85b960cd408cf2126e87a16423d985c2ffabaffa56a891893006d2ef8c9fd04ab -docfiles size=173 +containersize 5132 +containerchecksum f37ab28892be08ae312c66c9b70b6392f401b61dd25527f10931e02db82879a1a7c26ca060652cdbfe48522abd760bdb80b1d9ac535e59871c0aa7575ef24277 +doccontainersize 869392 +doccontainerchecksum 4767f56a36f7ef86ffa8f02934c460bb56543698090f7f411e529a44b99819d350f2012af18fd647886551a00f066bbcd252851f30b319e041546145edce71b3 +docfiles size=224 RELOC/doc/latex/verifiche/README.md details="Readme" RELOC/doc/latex/verifiche/verifiche-example.pdf details="Example of use" language="it" RELOC/doc/latex/verifiche/verifiche-example.tex RELOC/doc/latex/verifiche/verifiche.pdf details="Package documentation" language="it" -srccontainersize 14876 -srccontainerchecksum b4aa0ec88ff81d9bef8cb59cd3ce90f1d5fc08c26b9224a5d561c54ff144af2719affeb32549f5a5691c2894f77d23c941d960413e69a3af3b5ca27c944d19ef -srcfiles size=15 +srccontainersize 18152 +srccontainerchecksum 5e6c88b4f73463df19ca48b189f2334035b82a7a32cdb73831377d525d9db373b1dcdd7bee5e96ba0a12a4f1bb211f7208f87571505269c60f346284ef19e45b +srcfiles size=19 RELOC/source/latex/verifiche/verifiche.dtx RELOC/source/latex/verifiche/verifiche.ins -runfiles size=4 +runfiles size=5 RELOC/tex/latex/verifiche/verifiche.sty catalogue-ctan /macros/latex/contrib/verifiche catalogue-license lppl1.3 catalogue-topics exam exercise -catalogue-version 4.1 +catalogue-version 6.0 name verse category Package @@ -327822,7 +341910,7 @@ catalogue-version 0.1 name vhistory category Package -revision 30080 +revision 61719 shortdesc Support for creating a change log relocated 1 longdesc Vhistory simplifies the creation of a history of versions of a @@ -327832,14 +341920,14 @@ longdesc get consistent documents. The package sets, which is used by longdesc vhistory, allows you to use sets containing text. You can use longdesc the usual operations to create the union of sets or the longdesc intersection of sets etc. -containersize 8276 -containerchecksum f1747b1c112c69cdc506234c571335647b365eb92a4054c70cb08752dc1da92ac4e84d533083cdee76f6398f5f1bf04b20b94cf38ddf13947d4086c5599529fc -doccontainersize 336696 -doccontainerchecksum 60a8100cc10df177b04eba8751208c515eee9601806324184f737491707e1e4d453a92b0d12a16d6cc1af319a55c79afc8922d1378f8714990c97b5779540763 -docfiles size=122 - RELOC/doc/latex/vhistory/CHANGES - RELOC/doc/latex/vhistory/README details="Readme" +containersize 8400 +containerchecksum 1e8bc961ce70a199403f548bc918efbfff57ae6514338d32928a670f1f381ccd0474f3e2e4bcb957e72ae0b74b959f9eb98b552e62dfdbcbea995549bd87ca70 +doccontainersize 347268 +doccontainerchecksum 25420975890dbeae7b322ed9769eecdc67b9271f36e3269b6dae582af19968b79593ccc0306486de5d9c277be752569591953b423c52f8aab396430331c61e27 +docfiles size=130 + RELOC/doc/latex/vhistory/CHANGES.md RELOC/doc/latex/vhistory/README.doc + RELOC/doc/latex/vhistory/README.md details="Readme" RELOC/doc/latex/vhistory/de_beispiel.tex RELOC/doc/latex/vhistory/de_einleitung.tex RELOC/doc/latex/vhistory/de_sets.tex @@ -327851,9 +341939,9 @@ docfiles size=122 RELOC/doc/latex/vhistory/hyperref.cfg RELOC/doc/latex/vhistory/vh_set_example.pdf details="Short example" RELOC/doc/latex/vhistory/vh_set_example.tex - RELOC/doc/latex/vhistory/vh_sets_de.pdf details="Package documentation (both packages)" language="en" + RELOC/doc/latex/vhistory/vh_sets_de.pdf details="Package documentation (German)" language="de" RELOC/doc/latex/vhistory/vh_sets_de.tex - RELOC/doc/latex/vhistory/vh_sets_en.pdf details="Package documentation (both packages)" language="en" + RELOC/doc/latex/vhistory/vh_sets_en.pdf details="Package documentation (English)" RELOC/doc/latex/vhistory/vh_sets_en.tex runfiles size=9 RELOC/tex/latex/vhistory/sets.sty @@ -327861,11 +341949,11 @@ runfiles size=9 catalogue-ctan /macros/latex/contrib/vhistory catalogue-license lppl1.2 catalogue-topics version-control -catalogue-version 1.6.1 +catalogue-version 1.8.0 name visualfaq category Package -revision 38647 +revision 61719 shortdesc A Visual LaTeX FAQ relocated 1 longdesc Having trouble finding the answer to a LaTeX question? The @@ -327873,12 +341961,12 @@ longdesc Visual LaTeX FAQ is an innovative new search interface that longdesc presents over a hundred typeset samples of frequently requested longdesc document formatting. Simply click on a hyperlinked piece of longdesc text and the Visual LaTeX FAQ will send your Web browser to the -longdesc appropriate page in the UK TeX FAQ. -containersize 560 -containerchecksum 6b88343feaf39cd314e9453452da245054d3192f02ba0b2eb6e55a9bbca434e9b74cb16ad0902a6f5352d9ef945a4176e2e1998a7f0bd1cd75d2a3da7f4a203a -doccontainersize 5246876 -doccontainerchecksum eea0f022741d52ebb3613e977948c0428ddbe5b7d41faa659e888b48b7bb4e655a0e693d1dfd92d40a52a67e6df9ad386ac64d2ffee7c2732feb2077d4b24f77 -docfiles size=1533 +longdesc appropriate page in the TeX FAQ. +containersize 568 +containerchecksum e746106e0525c9d40c3600e283e1b652d2a5e4e99381dd7ce88ff2ded109024d86610b6305fdcc6f06220802c7ce565b3e01f9562c00884fe5e161104ad4f8ed +doccontainersize 5182308 +doccontainerchecksum cd8f11ebec1eda30ba7b673fe6fd241e61c4ef42a769988d34e58546f608af6a4ea569b2a30957dec0463385c5a4df70f7d10bc6e5b898229c5e6cf46f7e4fca +docfiles size=1492 RELOC/doc/latex/visualfaq/README details="Readme" RELOC/doc/latex/visualfaq/source/README details="Readme" RELOC/doc/latex/visualfaq/source/anotherarticle.pdf @@ -327896,10 +341984,62 @@ docfiles size=1533 RELOC/doc/latex/visualfaq/source/watermark.pdf RELOC/doc/latex/visualfaq/troubleshoot-vlf.pdf details="Dealing with visual FAQ problems:" RELOC/doc/latex/visualfaq/visualFAQ.pdf details="The visual FAQ itself" -catalogue-ctan /info/visualFAQ +catalogue-contact-repository https://github.com/spakin/visualFAQ +catalogue-ctan /info/visualfaq catalogue-license lppl catalogue-topics faq +name visualfaq-fr +category Package +revision 61420 +shortdesc FAQ LaTeX visuelle francophone +relocated 1 +longdesc (French version below.) The Visual LaTeX FAQ is an innovative +longdesc new search interface on LaTeX Frequently Asked Questions. This +longdesc version is a French translation, offering links to the +longdesc French-speaking LaTeX FAQ. Vous avez du mal a trouver la +longdesc reponse a une question sur LaTeX ou meme a trouver les mots +longdesc pour exprimer votre question? La FAQ LaTeX visuelle est une +longdesc interface de recherche innovante qui presente plus d'une +longdesc centaine d'exemples de mises en forme de documents frequemment +longdesc demandees. Il suffit de cliquer sur l'hyperlien qui correspond +longdesc a ce que vous souhaitez faire - ou ne pas faire - et la FAQ +longdesc LaTeX visuelle enverra votre navigateur web a la page +longdesc correspondante de la FAQ LaTeX francophone. +containersize 788 +containerchecksum ed7bcfc871d3ff533d954a74bd0212a72349fe0317258edfae79941e7f7cfd47e13de24acfbf524bccddcc66f6e75e9491b25339d26d513cf8170853e1e7ebd4 +doccontainersize 4695644 +doccontainerchecksum 2cc2f861a505f4a705ebb03481c00ba6ecf394041e0fcd2a12bc3c96d2a3ae875fd3ac3e236c03c15e2646228945c036647031a0d95377a2373cf9086e5ec888 +docfiles size=2297 + RELOC/doc/latex/visualfaq-fr/README details="Readme" + RELOC/doc/latex/visualfaq-fr/VERSION + RELOC/doc/latex/visualfaq-fr/source/README details="Readme" + RELOC/doc/latex/visualfaq-fr/source/anotherarticle.tex + RELOC/doc/latex/visualfaq-fr/source/fuzzytext.tex + RELOC/doc/latex/visualfaq-fr/source/labelgraph.gp + RELOC/doc/latex/visualfaq-fr/source/latex-books/digital-typography.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/graphics-companion.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/kopka-daly.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/lamport.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/latex-companion.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/math-into-latex.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/tex-unbound.jpg + RELOC/doc/latex/visualfaq-fr/source/latex-books/texbook.jpg + RELOC/doc/latex/visualfaq-fr/source/lorem-ipsum.blend + RELOC/doc/latex/visualfaq-fr/source/musixtex.png + RELOC/doc/latex/visualfaq-fr/source/visfaq-html.png + RELOC/doc/latex/visualfaq-fr/source/visualFAQ-fr.tex + RELOC/doc/latex/visualfaq-fr/source/visualFAQ.ind + RELOC/doc/latex/visualfaq-fr/source/visualFAQ.ind2 + RELOC/doc/latex/visualfaq-fr/source/watermark.odg + RELOC/doc/latex/visualfaq-fr/troubleshoot-vlf-fr.pdf details="Dealing with visual FAQ problems" + RELOC/doc/latex/visualfaq-fr/visualFAQ-fr.pdf details="The visual FAQ itself" +catalogue-contact-home https://faq.gutenberg.eu.org/ +catalogue-contact-repository https://github.com/jejust/visualFAQ-fr +catalogue-ctan /info/visualfaq-fr +catalogue-license lppl1.3c +catalogue-topics faq french-doc + name visualpstricks category Package revision 39799 @@ -328089,16 +342229,16 @@ catalogue-version 0.65 name vlna category TLCore -revision 54074 +revision 66186 shortdesc add ~ after non-syllabic preposition, for Czech/Slovak longdesc Preprocessor for TeX source implementing the Czech/Slovak longdesc typographical rule forbidding a non-syllabic preposition alone longdesc at the end of a line. depend vlna.ARCH containersize 380 -containerchecksum ce37751f6cbd088e8faffb0c2ddb6d8bec9c0d1f0fa3a4ab0a3e5f2517e6f54fb6903f441cf72398284801c9b9f00d684d6a6555e2588ae72679050734fff8c9 -doccontainersize 142828 -doccontainerchecksum f46c2e29da8f4edbe544d41b05ac3ba13cb5e3c09d299ce5ccb85207703c99569df94640c651a1afbcafcaf4669bb73157945f8dfc1d2b43ce5c0c7970c35544 +containerchecksum 6c66717442bca3306e23f5d546e17929240ce9626a562b9e56512446998996d38f83f78fbb39e46bde0b9faf0db7eb0c0218c79e1d66711d6cd3c64a8778edec +doccontainersize 142752 +doccontainerchecksum 921d76535cbe7e940617355c74b82acfc61edb840db8ed9cae1aaf987fe6b83245505048c7c550d59829b204f139ae1cfd44601435e2fff2b0d5230b45a27b77 docfiles size=43 texmf-dist/doc/man/man1/vlna.1 texmf-dist/doc/man/man1/vlna.man1.pdf @@ -328106,73 +342246,64 @@ docfiles size=43 name vlna.aarch64-linux category TLCore -revision 53999 +revision 65927 shortdesc aarch64-linux files of vlna -containersize 6924 -containerchecksum 7f6be359ca4ea56bc8e1b97c2c1d28a6a2ff8786756e48fe35f9e5d035ea21366a5033cd8ba621f05655162b8ee048c10f3a844f5fe75ddba3025b7dd416969b +containersize 6916 +containerchecksum 4c884bef67d84eb6c22bdc19929f619122bf1edbe3a849e7640d5d75ba9286b452c42b6b63d51eb00c8507bdce476c5955276b1aeac9374ce616b0991f07f3d6 binfiles arch=aarch64-linux size=5 bin/aarch64-linux/vlna name vlna.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of vlna -containersize 9052 -containerchecksum b33e0e2ad531b559a7b3af66823b88781bf51d2adb0510d367f8c54ace64f8a4c8519c9de687c73731d24ae23227bd8d15c8f5d6aedc7f5625b1a0a3b092480a -binfiles arch=amd64-freebsd size=6 +containersize 9252 +containerchecksum f63700bc3b5c8b271518998a1ce2b2e763f630eca75d5e9f2aaefda91f9ba6de9d8111fbaeddc9641b92850a01fa998ec49236d9672bcc70b89d7c10cfb30a64 +binfiles arch=amd64-freebsd size=7 bin/amd64-freebsd/vlna name vlna.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of vlna containersize 6764 -containerchecksum d78ab458823020b5d2c4c89a314e31c091a15e4c7efc5f2e640cc505bddeb04e510c0a5f9a8ece349d5fcd64f5df298e9f9228f9a0b5855828a10d6a9953a31a +containerchecksum 1e04137060974ea0586305f86fe997e23e9cb1a1a9acd15c9e87ef1effd751db0d8409e5e5019d0dfb64dc0cc3be1fff5d1b088a04c40c747c1e8e24f04fce89 binfiles arch=amd64-netbsd size=5 bin/amd64-netbsd/vlna name vlna.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of vlna -containersize 5556 -containerchecksum d3c1314cc5be6eba197b339a95049a03792a9055d6de9c2a384ed11aab7544aa748e971198761df0f56793cf1e7365fab7182a760045a298c0c35a6bfdcf818f +containersize 5552 +containerchecksum cde7675da231ab5d98ac37f0589270cccaebe21c2301478cacb6619f405c54bf6dfe0ef3a7a1be6c7945cd3d5026539a81922f4e480663d26b2491947b0784ed binfiles arch=armhf-linux size=4 bin/armhf-linux/vlna -name vlna.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of vlna -containersize 6652 -containerchecksum a62f671dc80b52e074f79f840b2871c7193d8c32de77f40ee5605d6b3006ea8e5583d429af71f97f2b3c6e0972e758e0090093c958f173d4e7265fd5fc48fa02 -binfiles arch=i386-cygwin size=5 - bin/i386-cygwin/vlna.exe - name vlna.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of vlna -containersize 7116 -containerchecksum 7ec66c34579ee8843c5113758c5bf4d72106dbb7fc764a9a7d3bea8c27269f109dcb442554d38a665633da1464eb91994d3ad4717433ff48bc29e6753f49430a +containersize 7304 +containerchecksum 493e587848774fd6a552df89995e604a2d2445efad28a121d0fb0ad550fe03048487b88131250ad34dde6b4c32d215b3e0dbba9da8e701a3278acfe7da58ee4d binfiles arch=i386-freebsd size=5 bin/i386-freebsd/vlna name vlna.i386-linux category TLCore -revision 50281 +revision 62210 shortdesc i386-linux files of vlna -containersize 5964 -containerchecksum 0682376371b632cd7253cdbce34b2a6927ff2c23563a49d5fbb3b16352092966f15deda22e2f83bffdf6cf3df0cc0133a43a307f6633d777f6af501fe7370eef +containersize 6196 +containerchecksum 97b6d3257a9f43a7ee806942b3d6bfc15971ecbd2bfcce5c88f89652b42cb8b6ecde29aa996eeaa538140023e5d87089b5da1e6f32eb216a6cd10d8a46e521e5 binfiles arch=i386-linux size=4 bin/i386-linux/vlna name vlna.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of vlna -containersize 6224 -containerchecksum 8f46d99ac6a6e41cd34f10c5bff7f86142d16aa989d473b1dcaa84a2cda58cc4764f72894d073c52e595fb6d99d12c6ab86b878d7bb0578effe16663a88aa13d +containersize 6232 +containerchecksum b46cf5b805aea9af601fbfb3da6a22d7d97386d1e922923813673c38d63573c0b737f073364eb76fdd03d432abc9b2c6140f9e20358ad8bbe8aa73868ec866c9 binfiles arch=i386-netbsd size=4 bin/i386-netbsd/vlna @@ -328187,28 +342318,28 @@ binfiles arch=i386-solaris size=4 name vlna.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of vlna -containersize 21616 -containerchecksum 2c3b5ec2851d94eab135f257be9d3accfe6c2864fd3098a44a25d3028a3be5555652f19b65c806bb9f8e08a9059ebcdce72620a9b01ee3447908016778e3672b +containersize 21776 +containerchecksum 08bb71dbe0f0d103834a4e8272327640a7920b7f90f8f3be6830931d429318e9eb5e6f9d73da0b9b050cee97034166156de0955dd8ad25385af0854cd3eb01ad binfiles arch=universal-darwin size=38 bin/universal-darwin/vlna -name vlna.win32 +name vlna.windows category TLCore -revision 53994 -shortdesc win32 files of vlna -containersize 7372 -containerchecksum 8c08cb9cbdd18ee84508864a8a12c7827420344ba52db8031786ecad5c703a350d749b983ab13277e775bb5f162d43ce699ff26ae0407c452ff7c4c9d54a7e04 -binfiles arch=win32 size=4 - bin/win32/vlna.exe +revision 65891 +shortdesc windows files of vlna +containersize 8676 +containerchecksum 5a1d848586697784c3197d70dc9db190e8c62a67939b2602c2aab0ac3212684ec9c835146b80e73821bed2b070d7b85261dc0238d195fc0dd95e6bd0f03d5f6a +binfiles arch=windows size=6 + bin/windows/vlna.exe name vlna.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of vlna containersize 6988 -containerchecksum eb321c4e2ebf3db6ad99a38a2d2a614acb3066a1212464f28eefe7b008e8873cbfe0158c5d5040845721f767d9e48fad6d299da588165928835d5cb2361cd650 +containerchecksum c09bc257ca37258de47885f9d3631a5d3f3b6ffd892faa3fbed5f477162b842ed35fc5187140ac81b7c245415fba88639df149cfb05a80e1d7294fbae50cd3ca binfiles arch=x86_64-cygwin size=5 bin/x86_64-cygwin/vlna.exe @@ -328223,19 +342354,19 @@ binfiles arch=x86_64-darwinlegacy size=6 name vlna.x86_64-linux category TLCore -revision 50281 +revision 62187 shortdesc x86_64-linux files of vlna -containersize 6296 -containerchecksum a0328d0443227e457815e3c65222e5b2095a16a1fc9c521d41156a04f9657be5745e4f005234409f79c48d369a866fe4e4b5e616b191602a17daa864f3c05a4b -binfiles arch=x86_64-linux size=4 +containersize 6520 +containerchecksum 6ebf405ddca31e22e278ad962d819aad4da62a0e0a67a4ced23ef7015e23623a2fed5accb8f353a52d7166de19f5e5fcf3b87dad03b1bc840ec46b88fdeec2ab +binfiles arch=x86_64-linux size=5 bin/x86_64-linux/vlna name vlna.x86_64-linuxmusl category TLCore -revision 54264 +revision 62210 shortdesc x86_64-linuxmusl files of vlna -containersize 6796 -containerchecksum 08fa05bc95ccc9ad5145af68b303990de58933f01f0705d2526ca1d86d60b6516ce8ab95427d52583df08d31f49e909ea58d52287aadf266fc6cee5e8a88e827 +containersize 6692 +containerchecksum cac10e722411c1ed31042a67b7cabe4b23d315291d17e33add9fda2ea6646da45f7ce68722974f15dfdaeb8971281bbcacdfa85b622d21c46ea2ce59e2823221 binfiles arch=x86_64-linuxmusl size=5 bin/x86_64-linuxmusl/vlna @@ -328284,7 +342415,7 @@ catalogue-version 2.5 name vntex category Package -revision 30579 +revision 62837 shortdesc Support for Vietnamese relocated 1 longdesc The vntex bundle provides fonts, Plain TeX, texinfo and LaTeX @@ -328302,12 +342433,13 @@ execute addMap urwvn.map execute addMap vntopia.map execute addMixedMap vnrother.map execute addMixedMap vnrtext.map -containersize 5301968 -containerchecksum f39c04998d0685125d494c1a314f4cddb9e2924af4eb4bd8488be237125d818199640041a9c23d6b8839b9da1861e0b621f71488b316b65903c5f3a0366adec0 -doccontainersize 673872 -doccontainerchecksum 506c719a29a64611cc7ba228f1e13da9abface3168aa0122ec64dffa423a7c38b6f3a4fed43b787eb60b82bb8fec71a96e4432a9b0c05702a804a31997ccd49c -docfiles size=284 +containersize 5391740 +containerchecksum f6a4396c473b6b0dd067c88911457a21ed393cd1d10edc90db0122fefedca2a6809ff50c34932d28bc1d6774ee176a165002d24062f8b6b949e85cb1468747ee +doccontainersize 681780 +doccontainerchecksum dc5f2b41cfe273a14278abc75490adceff6c50698de384130310a70370a3e341280d874f398027e8b2af2fd266beb2f470d414218862097ad718e5daa157928d +docfiles size=288 RELOC/doc/generic/vntex/INSTALL + RELOC/doc/generic/vntex/README.md details="Package README" language="en" RELOC/doc/generic/vntex/ReleaseNotes.pdf RELOC/doc/generic/vntex/vn-fonts-print.pdf RELOC/doc/generic/vntex/vn-fonts.pdf @@ -328318,8 +342450,8 @@ docfiles size=284 RELOC/doc/generic/vntex/vntex-print.pdf RELOC/doc/generic/vntex/vntex-update-maps RELOC/doc/generic/vntex/vntex.pdf details="Package manual (English)" language="en" -srccontainersize 64208 -srccontainerchecksum 93f6fb8e9d49e8a7219a584aacc5f957da0ec2f7e29cf0c5dc37dd5b063cedf4eb2c56662b28c588083b1c158504da5da9cff4250498fa6ab8bdbec9e3eac875 +srccontainersize 64028 +srccontainerchecksum bf8835b8e7dbd8f1ba5dfd28ee572635360f6f99818b40bb0daef4bd632ae68e1945f96dca6f0e3238fe42113c025c5e41dacd4e756476472fdbb4bdeaea3d3c srcfiles size=131 RELOC/source/generic/vntex/GPL.txt RELOC/source/generic/vntex/LGPL.txt @@ -328329,7 +342461,73 @@ srcfiles size=131 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/tests/Makefile + RELOC/source/generic/vntex/doc/tests/README-tests + RELOC/source/generic/vntex/doc/tests/adventor-sample.tex + RELOC/source/generic/vntex/doc/tests/adventor-test.tex + RELOC/source/generic/vntex/doc/tests/arevvn-sample.tex + RELOC/source/generic/vntex/doc/tests/arevvn-test.tex + RELOC/source/generic/vntex/doc/tests/bonum-sample.tex + RELOC/source/generic/vntex/doc/tests/bonum-test.tex + RELOC/source/generic/vntex/doc/tests/chartervn-sample.tex + RELOC/source/generic/vntex/doc/tests/chartervn-test.tex + RELOC/source/generic/vntex/doc/tests/chorus-sample.tex + RELOC/source/generic/vntex/doc/tests/chorus-test.tex + RELOC/source/generic/vntex/doc/tests/classicovn-sample.tex + RELOC/source/generic/vntex/doc/tests/classicovn-test.tex + RELOC/source/generic/vntex/doc/tests/cmbrightvn-sample.tex + RELOC/source/generic/vntex/doc/tests/cmbrightvn-test.tex + RELOC/source/generic/vntex/doc/tests/comicsansvn-sample.tex + RELOC/source/generic/vntex/doc/tests/comicsansvn-test.tex + RELOC/source/generic/vntex/doc/tests/concretevn-sample.tex + RELOC/source/generic/vntex/doc/tests/concretevn-test.tex + RELOC/source/generic/vntex/doc/tests/cursor-sample.tex + RELOC/source/generic/vntex/doc/tests/cursor-test.tex + RELOC/source/generic/vntex/doc/tests/garamondvn-sample.tex + RELOC/source/generic/vntex/doc/tests/garamondvn-test.tex + RELOC/source/generic/vntex/doc/tests/grotesqvn-sample.tex + RELOC/source/generic/vntex/doc/tests/grotesqvn-test.tex + RELOC/source/generic/vntex/doc/tests/heros-sample.tex + RELOC/source/generic/vntex/doc/tests/heros-test.tex + RELOC/source/generic/vntex/doc/tests/mscore-sample.tex + RELOC/source/generic/vntex/doc/tests/mscore-test.tex + RELOC/source/generic/vntex/doc/tests/pagella-sample.tex + RELOC/source/generic/vntex/doc/tests/pagella-test.tex + RELOC/source/generic/vntex/doc/tests/schola-sample.tex + RELOC/source/generic/vntex/doc/tests/schola-test.tex + RELOC/source/generic/vntex/doc/tests/t5antt-sample.tex + RELOC/source/generic/vntex/doc/tests/t5antt-test.tex + RELOC/source/generic/vntex/doc/tests/t5cyklop-sample.tex + RELOC/source/generic/vntex/doc/tests/t5cyklop-test.tex + RELOC/source/generic/vntex/doc/tests/t5gentium-sample.tex + RELOC/source/generic/vntex/doc/tests/t5gentium-test.tex + RELOC/source/generic/vntex/doc/tests/t5iwona-sample.tex + RELOC/source/generic/vntex/doc/tests/t5iwona-test.tex + RELOC/source/generic/vntex/doc/tests/t5kurier-sample.tex + RELOC/source/generic/vntex/doc/tests/t5kurier-test.tex + RELOC/source/generic/vntex/doc/tests/t5lm-sample.tex + RELOC/source/generic/vntex/doc/tests/t5lm-test.tex + RELOC/source/generic/vntex/doc/tests/termes-sample.tex + RELOC/source/generic/vntex/doc/tests/termes-test.tex + RELOC/source/generic/vntex/doc/tests/test-accents.tex + RELOC/source/generic/vntex/doc/tests/test-babel.tex + RELOC/source/generic/vntex/doc/tests/test-captions.tex + RELOC/source/generic/vntex/doc/tests/test-plain-tcx.tex + RELOC/source/generic/vntex/doc/tests/test-plain.tex + RELOC/source/generic/vntex/doc/tests/test-tcvn.tex + RELOC/source/generic/vntex/doc/tests/test-utf8.tex + RELOC/source/generic/vntex/doc/tests/test-vietnam-tcx.tex + RELOC/source/generic/vntex/doc/tests/test-vietnam.tex + RELOC/source/generic/vntex/doc/tests/test-viscii.tex + RELOC/source/generic/vntex/doc/tests/txttvn-sample.tex + RELOC/source/generic/vntex/doc/tests/txttvn-test.tex + RELOC/source/generic/vntex/doc/tests/urwvn-sample.tex + RELOC/source/generic/vntex/doc/tests/urwvn-test.tex + RELOC/source/generic/vntex/doc/tests/vnr-sample.tex + RELOC/source/generic/vntex/doc/tests/vnr-test.tex + RELOC/source/generic/vntex/doc/tests/vnsample.cls + RELOC/source/generic/vntex/doc/tests/vntopia-sample.tex + RELOC/source/generic/vntex/doc/tests/vntopia-test.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 @@ -328338,76 +342536,9 @@ srcfiles size=131 RELOC/source/generic/vntex/doc/vntex-man.tex RELOC/source/generic/vntex/doc/vntex-print.tex RELOC/source/generic/vntex/doc/vntex.tex - RELOC/source/generic/vntex/tests/Makefile - RELOC/source/generic/vntex/tests/README - RELOC/source/generic/vntex/tests/adventor-sample.tex - RELOC/source/generic/vntex/tests/adventor-test.tex - RELOC/source/generic/vntex/tests/arevvn-sample.tex - RELOC/source/generic/vntex/tests/arevvn-test.tex - RELOC/source/generic/vntex/tests/bonum-sample.tex - RELOC/source/generic/vntex/tests/bonum-test.tex - RELOC/source/generic/vntex/tests/chartervn-sample.tex - RELOC/source/generic/vntex/tests/chartervn-test.tex - RELOC/source/generic/vntex/tests/chorus-sample.tex - RELOC/source/generic/vntex/tests/chorus-test.tex - RELOC/source/generic/vntex/tests/classicovn-sample.tex - RELOC/source/generic/vntex/tests/classicovn-test.tex - RELOC/source/generic/vntex/tests/cmbrightvn-sample.tex - RELOC/source/generic/vntex/tests/cmbrightvn-test.tex - RELOC/source/generic/vntex/tests/comicsansvn-sample.tex - RELOC/source/generic/vntex/tests/comicsansvn-test.tex - RELOC/source/generic/vntex/tests/concretevn-sample.tex - RELOC/source/generic/vntex/tests/concretevn-test.tex - RELOC/source/generic/vntex/tests/cursor-sample.tex - RELOC/source/generic/vntex/tests/cursor-test.tex - RELOC/source/generic/vntex/tests/garamondvn-sample.tex - RELOC/source/generic/vntex/tests/garamondvn-test.tex - RELOC/source/generic/vntex/tests/grotesqvn-sample.tex - RELOC/source/generic/vntex/tests/grotesqvn-test.tex - RELOC/source/generic/vntex/tests/heros-sample.tex - RELOC/source/generic/vntex/tests/heros-test.tex - RELOC/source/generic/vntex/tests/mscore-sample.tex - RELOC/source/generic/vntex/tests/mscore-test.tex - RELOC/source/generic/vntex/tests/pagella-sample.tex - RELOC/source/generic/vntex/tests/pagella-test.tex - RELOC/source/generic/vntex/tests/schola-sample.tex - RELOC/source/generic/vntex/tests/schola-test.tex - RELOC/source/generic/vntex/tests/t5antt-sample.tex - RELOC/source/generic/vntex/tests/t5antt-test.tex - RELOC/source/generic/vntex/tests/t5cyklop-sample.tex - RELOC/source/generic/vntex/tests/t5cyklop-test.tex - RELOC/source/generic/vntex/tests/t5gentium-sample.tex - RELOC/source/generic/vntex/tests/t5gentium-test.tex - RELOC/source/generic/vntex/tests/t5iwona-sample.tex - RELOC/source/generic/vntex/tests/t5iwona-test.tex - RELOC/source/generic/vntex/tests/t5kurier-sample.tex - RELOC/source/generic/vntex/tests/t5kurier-test.tex - RELOC/source/generic/vntex/tests/t5lm-sample.tex - RELOC/source/generic/vntex/tests/t5lm-test.tex - RELOC/source/generic/vntex/tests/termes-sample.tex - RELOC/source/generic/vntex/tests/termes-test.tex - RELOC/source/generic/vntex/tests/test-accents.tex - RELOC/source/generic/vntex/tests/test-babel.tex - RELOC/source/generic/vntex/tests/test-captions.tex - RELOC/source/generic/vntex/tests/test-plain-tcx.tex - RELOC/source/generic/vntex/tests/test-plain.tex - RELOC/source/generic/vntex/tests/test-tcvn.tex - RELOC/source/generic/vntex/tests/test-utf8.tex - RELOC/source/generic/vntex/tests/test-vietnam-tcx.tex - RELOC/source/generic/vntex/tests/test-vietnam.tex - RELOC/source/generic/vntex/tests/test-viscii.tex - RELOC/source/generic/vntex/tests/txttvn-sample.tex - RELOC/source/generic/vntex/tests/txttvn-test.tex - RELOC/source/generic/vntex/tests/urwvn-sample.tex - RELOC/source/generic/vntex/tests/urwvn-test.tex - RELOC/source/generic/vntex/tests/vnr-sample.tex - RELOC/source/generic/vntex/tests/vnr-test.tex - RELOC/source/generic/vntex/tests/vnsample.cls - RELOC/source/generic/vntex/tests/vntopia-sample.tex - RELOC/source/generic/vntex/tests/vntopia-test.tex RELOC/source/generic/vntex/vntex.dtx RELOC/source/generic/vntex/vntex.ins -runfiles size=2501 +runfiles size=2528 RELOC/fonts/afm/vntex/chartervn/bchb8v.afm RELOC/fonts/afm/vntex/chartervn/bchbi8v.afm RELOC/fonts/afm/vntex/chartervn/bchr8v.afm @@ -328904,7 +343035,7 @@ catalogue-contact-home http://vntex.sf.net catalogue-ctan /language/vietnamese/vntex catalogue-license other-free catalogue-topics vietnamese font font-mf font-type1 -catalogue-version 3.2 +catalogue-version 3.2.2 name vocaltract category Package @@ -329060,15 +343191,6 @@ containerchecksum fd981e8da08ba68c587b4f6686a038156fb33d0ea19eea16f54a66c7d3b51c binfiles arch=armhf-linux size=1 bin/armhf-linux/vpe -name vpe.i386-cygwin -category Package -revision 25941 -shortdesc i386-cygwin files of vpe -containersize 336 -containerchecksum 369fe5803c7f2545d6ad6db9ac75b88146d90d2e7574c8b0f91cf5702963725519352fe63ab5deaa15bc6b5411f16b41573be60b53e248951fcaa058d2736692 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/vpe - name vpe.i386-freebsd category Package revision 16472 @@ -329114,14 +343236,14 @@ containerchecksum b7f435b9f3c346753c1d6bf91f7e495f894a74d924a5e1bf6c2b23f807b67f binfiles arch=universal-darwin size=1 bin/universal-darwin/vpe -name vpe.win32 +name vpe.windows category Package -revision 15404 -shortdesc win32 files of vpe -containersize 680 -containerchecksum d99676bfae281e47595db1527f12959896d551ee4a539b045a5ef71518c5c101e2741492c80dc66df6790c5dd8c7cd0dc00fc11e9328a8f8d33d4955f41cf12d -binfiles arch=win32 size=1 - bin/win32/vpe.exe +revision 65891 +shortdesc windows files of vpe +containersize 2300 +containerchecksum 7b52293981c641a00365051abd4343cd62e58539a670e8e48b8a7f6fe1d7b9a475fee67066c4d3c60c2640b8c7f35da20f1eddba9ada5f4b1df409db7cf92a46 +binfiles arch=windows size=2 + bin/windows/vpe.exe name vpe.x86_64-cygwin category Package @@ -330722,6 +344844,127 @@ catalogue-license lppl catalogue-topics layout-page catalogue-version 1.10 +name wargame +category Package +revision 64797 +shortdesc A LaTeX package to prepare hex'n'counter wargames +relocated 1 +longdesc This package can help make classic Hex'n'Counter wargames using +longdesc LaTeX. The package provide tools for generating Hex maps and +longdesc boards Counters for units, markers, and so on Counter sheets +longdesc Order of Battle charts Illustrations in the rules using the +longdesc defined maps and counters The result will often be a PDF (or +longdesc set of PDFs) that contain everything one will need for a game +longdesc (rules, charts, boards, counter sheets). The package uses NATO +longdesc App6 symbology for units. The package uses NATO App6 symbology +longdesc for units. The package uses TikZ for most things. The package +longdesc support exporting the game to a VASSAL module See also the +longdesc README.md file for more, and of course the documentation +longdesc (including the tutorial in tutorial/game.pdf). +containersize 194220 +containerchecksum b06a6c8099942833cf1df089a6f2dbbfa8416a6f3bf74ea5d5411c098f1256261eb9101f95d1a61937552fe5141ed7462e774e1ed9876b2c03330a92162b4c21 +doccontainersize 2352976 +doccontainerchecksum c75c95bc543167b74466eab3b0f9a030165bca914757a5c281ea44a4cf32d1eafa61f2e6d53e811d81dbdac36942f923fc8fd82e77e718b230cfa1a430bf77c3 +docfiles size=644 + RELOC/doc/latex/wargame/README.md details="Readme" + RELOC/doc/latex/wargame/compat.pdf + RELOC/doc/latex/wargame/symbols.pdf + RELOC/doc/latex/wargame/tutorial/Makefile + RELOC/doc/latex/wargame/tutorial/README.md details="Readme" + RELOC/doc/latex/wargame/tutorial/export.tex + RELOC/doc/latex/wargame/tutorial/game.pdf + RELOC/doc/latex/wargame/tutorial/game.sty + RELOC/doc/latex/wargame/tutorial/game.tex + RELOC/doc/latex/wargame/tutorial/patch.py + RELOC/doc/latex/wargame/wargame.pdf details="Package documentation" +srccontainersize 153572 +srccontainerchecksum 16e6ef9e59d0469a037a14833e234ed46cf3e693d5f3468bde9519585f2e0ca659aa66717f5a07f506ceb3540079396fc397e75508ecf06470b20dfb39a970e4 +srcfiles size=281 + RELOC/source/latex/wargame/Makefile + RELOC/source/latex/wargame/chit/core.dtx + RELOC/source/latex/wargame/chit/elements.dtx + RELOC/source/latex/wargame/chit/misc.dtx + RELOC/source/latex/wargame/chit/shape.dtx + RELOC/source/latex/wargame/hex/board.dtx + RELOC/source/latex/wargame/hex/coord.dtx + RELOC/source/latex/wargame/hex/core.dtx + RELOC/source/latex/wargame/hex/extra.dtx + RELOC/source/latex/wargame/hex/labels.dtx + RELOC/source/latex/wargame/hex/paths.dtx + RELOC/source/latex/wargame/hex/ridges.dtx + RELOC/source/latex/wargame/hex/shape.dtx + RELOC/source/latex/wargame/hex/terrain.dtx + RELOC/source/latex/wargame/hex/terrain/beach.dtx + RELOC/source/latex/wargame/hex/terrain/city.dtx + RELOC/source/latex/wargame/hex/terrain/light_woods.dtx + RELOC/source/latex/wargame/hex/terrain/mountain.dtx + RELOC/source/latex/wargame/hex/terrain/mountains.dtx + RELOC/source/latex/wargame/hex/terrain/rough.dtx + RELOC/source/latex/wargame/hex/terrain/swamp.dtx + RELOC/source/latex/wargame/hex/terrain/town.dtx + RELOC/source/latex/wargame/hex/terrain/tree.dtx + RELOC/source/latex/wargame/hex/terrain/village.dtx + RELOC/source/latex/wargame/hex/terrain/woods.dtx + RELOC/source/latex/wargame/hex/tile.dtx + RELOC/source/latex/wargame/hex/towns.dtx + RELOC/source/latex/wargame/natoapp6c/compat/activity.dtx + RELOC/source/latex/wargame/natoapp6c/compat/air.dtx + RELOC/source/latex/wargame/natoapp6c/compat/equipment.dtx + RELOC/source/latex/wargame/natoapp6c/compat/installation.dtx + RELOC/source/latex/wargame/natoapp6c/compat/land.dtx + RELOC/source/latex/wargame/natoapp6c/compat/missile.dtx + RELOC/source/latex/wargame/natoapp6c/compat/seamine.dtx + RELOC/source/latex/wargame/natoapp6c/compat/seasurface.dtx + RELOC/source/latex/wargame/natoapp6c/compat/space.dtx + RELOC/source/latex/wargame/natoapp6c/compat/subsurface.dtx + RELOC/source/latex/wargame/natoapp6c/core.dtx + RELOC/source/latex/wargame/natoapp6c/echelon.dtx + RELOC/source/latex/wargame/natoapp6c/frames/base.dtx + RELOC/source/latex/wargame/natoapp6c/frames/friendly.dtx + RELOC/source/latex/wargame/natoapp6c/frames/hostile.dtx + RELOC/source/latex/wargame/natoapp6c/frames/neutral.dtx + RELOC/source/latex/wargame/natoapp6c/frames/unknown.dtx + RELOC/source/latex/wargame/natoapp6c/list.dtx + RELOC/source/latex/wargame/natoapp6c/shape.dtx + RELOC/source/latex/wargame/natoapp6c/symbols.dtx + RELOC/source/latex/wargame/natoapp6c/text.dtx + RELOC/source/latex/wargame/natoapp6c/util.dtx + RELOC/source/latex/wargame/natoapp6c/weaponry.dtx + RELOC/source/latex/wargame/package.dtx + RELOC/source/latex/wargame/tests/chits.dtx + RELOC/source/latex/wargame/tests/map.dtx + RELOC/source/latex/wargame/tests/test.tex + RELOC/source/latex/wargame/util/core.dtx + RELOC/source/latex/wargame/utils/wgexport.py + RELOC/source/latex/wargame/utils/wgsvg2tikz.py + RELOC/source/latex/wargame/wargame.dtx + RELOC/source/latex/wargame/wargame.ins +runfiles size=215 + RELOC/tex/latex/wargame/tikzlibrarywargame.chit.code.tex + RELOC/tex/latex/wargame/tikzlibrarywargame.hex.code.tex + RELOC/tex/latex/wargame/tikzlibrarywargame.natoapp6c.code.tex + RELOC/tex/latex/wargame/tikzlibrarywargame.util.code.tex + RELOC/tex/latex/wargame/wargame.beach.pdf + RELOC/tex/latex/wargame/wargame.city.pdf + RELOC/tex/latex/wargame/wargame.light_woods.pdf + RELOC/tex/latex/wargame/wargame.mountains.pdf + RELOC/tex/latex/wargame/wargame.rough.pdf + RELOC/tex/latex/wargame/wargame.sty + RELOC/tex/latex/wargame/wargame.swamp.pdf + RELOC/tex/latex/wargame/wargame.town.pdf + RELOC/tex/latex/wargame/wargame.village.pdf + RELOC/tex/latex/wargame/wargame.woods.pdf + RELOC/tex/latex/wargame/wgexport.cls + RELOC/tex/latex/wargame/wgexport.py + RELOC/tex/latex/wargame/wgsvg2tikz.py +catalogue-contact-home https://gitlab.com/wargames_tex/wargame_tex +catalogue-contact-repository https://gitlab.com/wargames_tex/wargame_tex +catalogue-contact-support https://gitlab.com/wargames_tex/wargame_tex +catalogue-ctan /macros/latex/contrib/wargame +catalogue-license cc-by-sa-4 +catalogue-topics pgf-tikz games symbol-supp +catalogue-version 0.3.2 + name warning category Package revision 22028 @@ -330779,7 +345022,7 @@ catalogue-version 1.0c name was category Package -revision 21439 +revision 64691 shortdesc A collection of small packages by Walter Schmidt relocated 1 longdesc A bundle of packages that arise in the author's area of @@ -330787,30 +345030,22 @@ longdesc interest: compliance of maths typesetting with ISO standards; longdesc symbols that work in both maths and text modes commas for both longdesc decimal separator and maths; and upright Greek letters in longdesc maths. -containersize 3092 -containerchecksum e3dec504da2dd28534872b4363695d797a874a0af5c2a77e6559a2765f6150cc50614b8905c90faa6fb9fd54d9634a9ddff148564904b1454f21d3fbd21918dd -doccontainersize 578872 -doccontainerchecksum 24cc3a8931fe48134810ffe626789139a821585f0d359a177c56ae5a442482fb9d36f344061128ac185469b97c4c3f440ad02ebc7135366253cd9bbcf99895bc -docfiles size=180 - RELOC/doc/latex/was/fixmath.pdf - RELOC/doc/latex/was/gensymb.pdf +containersize 1856 +containerchecksum 1e434b13cf6cbaabb173b34334e046055366a9ec844207460a852a0066963fbdde6288e94979e873811b4e66140f07b6cf2e8526ec47a050efbfaf4836edfcb1 +doccontainersize 285328 +doccontainerchecksum fcf5434911390ee8f20f0feced15a627e001471b1867d57a7697edbfee557179250f0a01e9e20e0d442dcb0c4509174c504959e7a991e928e392d27515ff2d0b +docfiles size=86 RELOC/doc/latex/was/icomma.pdf RELOC/doc/latex/was/readme.1st RELOC/doc/latex/was/upgreek.pdf -srccontainersize 9388 -srccontainerchecksum 507ed77f8a5a119c16fcb9478a559f516a2e612893941f8854e4945968ef5b44ccab641f1737c745b33209828a4541e3615dd46f304b5e2f5b29c5282eeeccef -srcfiles size=16 - RELOC/source/latex/was/fixmath.dtx - RELOC/source/latex/was/fixmath.ins - RELOC/source/latex/was/gensymb.dtx - RELOC/source/latex/was/gensymb.ins +srccontainersize 4652 +srccontainerchecksum 9053fd6524c572ea80670ed9af80780579e6961e326620120f87f809d76f3c23310fb572f39536eee1ee8c20269ecfc1ad5bd5ca195ed986d87c46bc53058a31 +srcfiles size=7 RELOC/source/latex/was/icomma.dtx RELOC/source/latex/was/icomma.ins RELOC/source/latex/was/upgreek.dtx RELOC/source/latex/was/upgreek.ins -runfiles size=6 - RELOC/tex/latex/was/fixmath.sty - RELOC/tex/latex/was/gensymb.sty +runfiles size=3 RELOC/tex/latex/was/icomma.sty RELOC/tex/latex/was/upgreek.sty catalogue-ctan /macros/latex/contrib/was @@ -330940,7 +345175,7 @@ catalogue-version 2.4 name web category TLCore -revision 57972 +revision 66186 shortdesc The original literate programming system longdesc The system processes 'web' files in two ways: firstly to longdesc rearrange them to produce compilable code (using the program @@ -330949,9 +345184,9 @@ longdesc program weave) that may be typeset for comfortable reading. depend kpathsea depend web.ARCH containersize 500 -containerchecksum 4463318dc2dd2f5c046f439902f57396ab36fd8f30a36c6e83d26ee5045aecb301e3d0bb62cf1bcc37fd9150fb5aadfa8fd642f0d6e33fb5acb28545abaac974 -doccontainersize 41480 -doccontainerchecksum f90cfd6712f2f6f6058f7aa80051b313b2bccbc0f0fc868e8c371cda5155d48058fff5b8c7a056d1494a14faf874fdcf3ab969a9e276c8b4ccac8d4138d1d9ae +containerchecksum cc8b2b6525ef1ee49162dc157e8d735225f5fc3bee54e56ac01ad47f85f639e4c43b4409e949d68804e650e243da0a8a6d098ca7c37587f14c810112cc82abee +doccontainersize 42388 +doccontainerchecksum ed04fce861ae2adda602a2a50d560cc9a5863ab1668dd9512baa96b6c37acd8334e4800bc4ca853c0b1f58bd3a643abc82a96f31de9d4980806ad0572ea2a92a docfiles size=16 texmf-dist/doc/man/man1/tangle.1 texmf-dist/doc/man/man1/tangle.man1.pdf @@ -330964,161 +345199,151 @@ catalogue-version 4.5 name web.aarch64-linux category TLCore -revision 57930 +revision 65927 shortdesc aarch64-linux files of web -containersize 77148 -containerchecksum be0b461afaa7013fb15abbbe949aabe74eaedaf8b749b5e31cac9346d9ab73817c82904043e02ccd10945705b0898dc9d1162fccb1459c92eb3b24535d018b2b -binfiles arch=aarch64-linux size=64 +containersize 77760 +containerchecksum 2ffb3b59cefe1de9597fc12ce6dcf641f0532c066e406ee0181dfb3927c801ebf41fac10c481b529a263dc3f960a60ad7bc3a6a32c3738bb2d22737f864397f8 +binfiles arch=aarch64-linux size=66 bin/aarch64-linux/tangle bin/aarch64-linux/weave name web.amd64-freebsd category TLCore -revision 57941 +revision 65877 shortdesc amd64-freebsd files of web -containersize 88072 -containerchecksum 382a68d16600c7ef7665b5a14057a872b96c783fbf31dca4ffe34eee2209ede33ac47196ab90dab0c7769a449435934ce99e1757e50a77406236464048c54aa0 +containersize 87260 +containerchecksum 13fb9804610a891060dd7a0e779018132f612f63c34e571379fa473eb96dc76cc72920d17a40aaf89d4795e31c86876116fc915a24f4716ec76b76e5f9acaac9 binfiles arch=amd64-freebsd size=72 bin/amd64-freebsd/tangle bin/amd64-freebsd/weave name web.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of web -containersize 74216 -containerchecksum a05f90e8a79c73e961324515bcbc63267524198efd7f63e47d4ab99538b6ae0e055db53378af1140c7f930e18485c889d5f044224e097ffd62a2bc37019af3ee -binfiles arch=amd64-netbsd size=77 +containersize 74748 +containerchecksum 171123c63c1271a0b10507d1fd93b027086ad4e710a53cd8fa9d842ed9afccf44a2149ea8679cbe6e28765455f85711e4e5dc4f2b63b98b7d34328446fc7195e +binfiles arch=amd64-netbsd size=78 bin/amd64-netbsd/tangle bin/amd64-netbsd/weave name web.armhf-linux category TLCore -revision 57957 +revision 65877 shortdesc armhf-linux files of web -containersize 63452 -containerchecksum 1c9294f5cafbe8e2faad653f768631f9bd23c46af15ba873ab47140f5d6a8e3ba2d6e44e7a444832eb864be3535a163c25dece4b91ae16605d97aa3c17fd2234 +containersize 63420 +containerchecksum d038deb7275ef874dd77a4a717ed084f2f2df000e13bc1e153d294af97bb12d674467e7ad16322f6f6bb57d41adb0a006585dbbb624e268085051b4ac8f53e5e binfiles arch=armhf-linux size=53 bin/armhf-linux/tangle bin/armhf-linux/weave -name web.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of web -containersize 37424 -containerchecksum 3cc157301bcbe3ad5ddb605865f449f468bc95190fe4a9697b603db4b73657136f142789eeb6ccfc58a2e5c2ac1f0870d958acda77e204f0eee313dc0250f98c -binfiles arch=i386-cygwin size=28 - bin/i386-cygwin/tangle.exe - bin/i386-cygwin/weave.exe - name web.i386-freebsd category TLCore -revision 57961 +revision 65877 shortdesc i386-freebsd files of web -containersize 70292 -containerchecksum 9f0a4f6178c36a08ecfc7db3a794dba275818bae1521dfc1176d14f3af456f538ef05159e9aec946291c9bdfa74ffe6c1c3582f146360e55b4d06adb539478de -binfiles arch=i386-freebsd size=59 +containersize 70752 +containerchecksum 5e21cd5aaa891618f16cd5b97a06b9e41b6ed702aebb25ee555ad27d9a42a695a5c4c0cfb5590494425039787162b64ee5cbfbc0ea60e75bac4c240e542236ad +binfiles arch=i386-freebsd size=60 bin/i386-freebsd/tangle bin/i386-freebsd/weave name web.i386-linux category TLCore -revision 57878 +revision 65877 shortdesc i386-linux files of web -containersize 75520 -containerchecksum 5b1cdc0293a4a5f844df7eaf747df7a214a77e88251703f6fe0e92de85ed4ac13b9b64b604253380a929c495636d393b7e8063193dbb1c5422ff1c89edd651d8 -binfiles arch=i386-linux size=65 +containersize 76836 +containerchecksum f8d4b2561ba2c7719bee44df4e3189eb424562384969248a45e84c13bcf767b9d99ec1bb56802e29a3d1372ffdb61f422fdabd8ce8cee9330d46434dbedbacc5 +binfiles arch=i386-linux size=67 bin/i386-linux/tangle bin/i386-linux/weave name web.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of web -containersize 60424 -containerchecksum 02cd6e2972733513c0bd26075fa32caa594027934d1094424bdc6876fa0d426f1ede8ff7ad72a063d3765632e08cabf84bd674c96b0e1422b6406d43c3215357 +containersize 60684 +containerchecksum 03ce0f365751dfd758a5a84f0d30af80fd6543fdf3415c414711ffdf5c537cccf93cc51dcc1b048914666a0b1f9ec4c1c757c3426974bf514cc3073e198d972d binfiles arch=i386-netbsd size=71 bin/i386-netbsd/tangle bin/i386-netbsd/weave name web.i386-solaris category TLCore -revision 57938 +revision 65877 shortdesc i386-solaris files of web -containersize 75948 -containerchecksum a61b7b1fdbddf996d11ea65427454a08114a5036cf0f831be2fd863c5ae448b212f0f2b78f58bfa7a8c57fc300f8f59f084e8547ff048ea85406c5ea696bedfa +containersize 76224 +containerchecksum ef36e6e7197c1be83c493654d3d3a2f28e9f442ba669eacd06517945c64d9a030f588a243fe9133e0d02838a0a6d9d6f8c98dfe62dc8999e35d1361b33d14dfc binfiles arch=i386-solaris size=60 bin/i386-solaris/tangle bin/i386-solaris/weave name web.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of web -containersize 162244 -containerchecksum 31b103f80d1be1ad2e6ac6d95afe53d3d526e1406fce93bca5fe33494e5a4101a17ab2ac3732c8573b00cda60f48902f5b83e9c8e5613522b20f973b7fc89c28 -binfiles arch=universal-darwin size=167 +containersize 162420 +containerchecksum 379027f9a1d8f73b794d9367980af5420815fcc4cbd560665de57fda2ba1308a34487ed911a6d8f7fb538473b6a084b9af75163f6cecf13a3af960c27705458c +binfiles arch=universal-darwin size=175 bin/universal-darwin/tangle bin/universal-darwin/weave -name web.win32 +name web.windows category TLCore -revision 58783 -shortdesc win32 files of web -containersize 39168 -containerchecksum 26edb98358a2c963c127ff9fe9e2e46e818f5b05abe1dac133f9cacc8b0f444b24f9d4a55e5c7556484edcd83a23d2edac925e4db99ff8d39efd722f90c2293c -binfiles arch=win32 size=26 - bin/win32/tangle.exe - bin/win32/weave.exe +revision 65891 +shortdesc windows files of web +containersize 47000 +containerchecksum 44ec98ebc7205ec9fb43c58a46b5d13b53de6c837dd408e3817140498acaf52d1c7cfad25cfbff76d04a84cc4c2177290ecf0818848bec6619efc4a9c8280cd1 +binfiles arch=windows size=30 + bin/windows/tangle.exe + bin/windows/weave.exe name web.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of web -containersize 44864 -containerchecksum 8de268e03717769303a559b1dd781094262522b35328d362631d8d2d9d5790db63a449c980a3687c0ad53970524e79dd0cb078c508cac7783ea7b38388a9376a -binfiles arch=x86_64-cygwin size=27 +containersize 45204 +containerchecksum c6cd8f04e589b35a9a7ced5cca2f3debe2ed01d9448e4f5ade5ab1141486c7b92d22efe51a8fd5253e7a8a7a8c92a800198e02677bbc47c52bee60ccca2ded50 +binfiles arch=x86_64-cygwin size=28 bin/x86_64-cygwin/tangle.exe bin/x86_64-cygwin/weave.exe name web.x86_64-darwinlegacy category TLCore -revision 58231 +revision 65877 shortdesc x86_64-darwinlegacy files of web -containersize 75068 -containerchecksum a008f71d6986aeadbd6b5502c9a622e4226557c40caa61bc9f3e62443516c84fac8f49a464a4ba18018222d068a488128f0b00ae653eef96123496b5f8add165 +containersize 74832 +containerchecksum befb71119ebb12a590aa75bf325568ed59d1691c95afa8cb92a255dd172dcf336bf930e12e9351f8583751e53ca62e825564eea5c42f5a57969c1039d0324298 binfiles arch=x86_64-darwinlegacy size=60 bin/x86_64-darwinlegacy/tangle bin/x86_64-darwinlegacy/weave name web.x86_64-linux category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linux files of web -containersize 78152 -containerchecksum 06b448dec84c77252fe8d45cc460a327b8693363a5af6b621dc0656fa9ff9731db20d5b7faa749ee211b93d291a75ad90a2d864ce16495a47033f901bad11f7d -binfiles arch=x86_64-linux size=60 +containersize 79076 +containerchecksum d47150274f088a2774bf6289c22df0970968fa4e20b1e406aa5185bdce816e9470cc82ae5953ccac35d570c7a0bd93153b6209b2999b1f3c9a57c57434019c7e +binfiles arch=x86_64-linux size=63 bin/x86_64-linux/tangle bin/x86_64-linux/weave name web.x86_64-linuxmusl category TLCore -revision 57878 +revision 65877 shortdesc x86_64-linuxmusl files of web -containersize 84236 -containerchecksum 8aaf5cd47baa05a6ce1ba56e6af461fda0cdb11b274145b589596a43bcd6c3ce120bcf22fa914fbfb9f34dd188d83e1fa972ebbe169251bd300636a434058793 +containersize 85496 +containerchecksum ec9a6b6cdbeba2a3a32dc38486b23b6fff8b279ab0e107b2e2261bf3ac45bda73f72a276c3d275d3f8355a3814030c2f9d6a2ed245da1221f8199cf4990e7c55 binfiles arch=x86_64-linuxmusl size=65 bin/x86_64-linuxmusl/tangle bin/x86_64-linuxmusl/weave name web.x86_64-solaris category TLCore -revision 57938 +revision 65877 shortdesc x86_64-solaris files of web -containersize 86952 -containerchecksum 702e1e70705a91dd9b84cfb5e3b4287f7583f145b627051cd14ef33783c3f7a474e17c404534d46419c812401097a74beefa2ce3be7fd457e2daad38c040e76a -binfiles arch=x86_64-solaris size=69 +containersize 87104 +containerchecksum 33771874d48b48c84594dc582d77439a40f35f000531f167efccb41627df462955ba0b96e8b33170f68c10e68d7238428901c3700fee4de9ed79386f570e1879 +binfiles arch=x86_64-solaris size=70 bin/x86_64-solaris/tangle bin/x86_64-solaris/weave @@ -331339,15 +345564,6 @@ containerchecksum b006642a05eeb01438e9d0ee0144c25963281d940aa69b0c5b88de29c1af6c binfiles arch=armhf-linux size=1 bin/armhf-linux/webquiz -name webquiz.i386-cygwin -category Package -revision 50419 -shortdesc i386-cygwin files of webquiz -containersize 336 -containerchecksum a5519f391784f2bd95ab785bec3502ff9973ff8d685f68cf5cd10844eeabb292ffa73cfc325140bd80ea0449f06fad5e7a701c48b6c20581b773d21389fb00cc -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/webquiz - name webquiz.i386-freebsd category Package revision 50419 @@ -331393,14 +345609,14 @@ containerchecksum 0683e9a1e6af51a342e9ebeef5798d9ad16845fee5ead724e92b17a2b8e80e binfiles arch=universal-darwin size=1 bin/universal-darwin/webquiz -name webquiz.win32 +name webquiz.windows category Package -revision 50419 -shortdesc win32 files of webquiz -containersize 680 -containerchecksum e45e8cf643197660b7a973a6f9754e23412c8e0757f4b6cb9e85deb2c541a2d04f3cae613405c72d215d9f37f05f543dacf36c9575e26a39b94d2f931e750beb -binfiles arch=win32 size=1 - bin/win32/webquiz.exe +revision 65891 +shortdesc windows files of webquiz +containersize 2308 +containerchecksum d955ec7ed5612887c284e039b53e6c167adf8880f199137a83cb3b1bfa6d01cad4cba5a2af2693d48a1c5090f8c7deaa956af86f10e98412a8b7927b12f601e7 +binfiles arch=windows size=2 + bin/windows/webquiz.exe name webquiz.x86_64-cygwin category Package @@ -331447,6 +345663,29 @@ containerchecksum f45a215108765ed338ea6dfff1961000be03685b3fbcc218ee10624c3787b4 binfiles arch=x86_64-solaris size=1 bin/x86_64-solaris/webquiz +name wheelchart +category Package +revision 64373 +shortdesc Draw wheelcharts with TikZ +relocated 1 +longdesc This package is based on the package TikZ and can be used to +longdesc draw wheelcharts with TikZ. It provides several options to +longdesc customize the wheelcharts. +containersize 4700 +containerchecksum 5119fac9b5b6b6c65771184da8dac9c0f27c4c115aa874eefc2d322e864595e9ec4a70dc782334bbfaa9eba30ebb1e079f914453c330d46f898241c34e9e9e54 +doccontainersize 663212 +doccontainerchecksum a24f915836ee36150625a4cb297f80b66c6f4ad3231043300d438e0d522942322602fb39b3026faa58d1ddb48097af54ca71b729c8ccba15d0cc4ba9ce505b21 +docfiles size=175 + RELOC/doc/latex/wheelchart/README.md details="Readme" + RELOC/doc/latex/wheelchart/wheelchart.pdf details="Package documentation" + RELOC/doc/latex/wheelchart/wheelchart.tex +runfiles size=6 + RELOC/tex/latex/wheelchart/wheelchart.sty +catalogue-ctan /graphics/pgf/contrib/wheelchart +catalogue-license lppl1.3c +catalogue-topics graphics pgf-tikz +catalogue-version 1.0 + name widetable category Package revision 53409 @@ -331479,7 +345718,7 @@ catalogue-version 2.1 name widows-and-orphans category Package -revision 58172 +revision 66532 shortdesc Identify (typographic) widows and orphans relocated 1 longdesc This package identifies all widows and orphans in a document to @@ -331489,11 +345728,11 @@ longdesc paragraph long or short or or explicitly breaking in some longdesc strategic place. It will also identify and warn about words longdesc broken across columns or pages and display formulas separated longdesc from their introductory paragraph. -containersize 2896 -containerchecksum c7c5e1a35743e5c87c534263903b75c95f1f33f3c9482bb0209dae1547cdddc81023555e792392429d397357ffb8a9f76e72031d7429e314e27f9d31f96a3207 -doccontainersize 800976 -doccontainerchecksum 39636b2155e1dcb482eb629b82d2c08317e7f7d4c009627f23345bc8bb3779aa466c79aa1e515ce8f016f71d3187ca8b762053236eb2062a03958a3c2d773ad2 -docfiles size=215 +containersize 2900 +containerchecksum 361e84237485b4f7b51b5942e749475b23e6cd6788b2233f3001149dac65c81dda91d7f8998eb0c21e84bc0fd4d4136d05cbc366e50efb6464c81e0a5fad2051 +doccontainersize 816912 +doccontainerchecksum 8690f2f196dcd473b37da59aee436179f3d2e627046f280569209abe7e016b64c8fb44d3e8215e2c19a8217a403b4d6d6f1d82d4d13b8487bccc724e6bc9837b +docfiles size=224 RELOC/doc/latex/widows-and-orphans/MANIFEST.md RELOC/doc/latex/widows-and-orphans/README.md details="Readme" RELOC/doc/latex/widows-and-orphans/changes.txt @@ -331502,9 +345741,9 @@ docfiles size=215 RELOC/doc/latex/widows-and-orphans/widows-and-orphans-code.tex RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.pdf details="Package documentation" RELOC/doc/latex/widows-and-orphans/widows-and-orphans-doc.tex -srccontainersize 12124 -srccontainerchecksum 73db8c22b5a3647aa668267b18c23282c55610cfe65da8a933c5c8bf0adbaa5a7ebe55dc9dcb01389a475efaf84fbcc135a4a1e5acb51c446cd0e13324aaf214 -srcfiles size=11 +srccontainersize 12316 +srccontainerchecksum 68f7a518d782f3a553f544fd7d9f4d76ab82fc55e8765a921e471751bb4f9e9bb4fe0abcaec15df4f89f5427570bdbcfbf19b9d3eff4224d944a171795a543f1 +srcfiles size=12 RELOC/source/latex/widows-and-orphans/widows-and-orphans.dtx RELOC/source/latex/widows-and-orphans/widows-and-orphans.ins runfiles size=3 @@ -331513,8 +345752,8 @@ catalogue-also nowidow catalogue-contact-repository https://github.com/FrankMittelbach/fmitex-widows-and-orphans catalogue-ctan /macros/latex/contrib/widows-and-orphans catalogue-license lppl1.3c -catalogue-topics layout -catalogue-version 1.0d +catalogue-topics layout expl3 +catalogue-version 1.0e name williams category Package @@ -331540,19 +345779,20 @@ catalogue-topics tree macro-supp name willowtreebook category Package -revision 54866 +revision 60638 shortdesc Easy basic book class, built on memoir relocated 1 longdesc The willowtreebook class is a simple book class, which the longdesc author uses for his lecture notes to be found on his web page longdesc Benjamin McKay. It actually just selects options for the more longdesc sophisticated memoir class. -containersize 6284 -containerchecksum 36df6eb6f46857ac84b2b0ef4fceb265c6feaee565eaf201ad8b00552a1f1e37d6f4d5a8e9dbbb21ee0df3013dc8aa72cc0cdef85c9b5c400aeca89f9b851c47 -doccontainersize 24221768 -doccontainerchecksum 32abc19949630800649038ef395a8c51568c4395b5ea2495205fab557669c40c3eadb6c272e9a4747d504c95f02df50056e083c4bcaebec50a5b5df7d5d10668 -docfiles size=5979 +containersize 6300 +containerchecksum 835b19d0927b01e4acf9da483148d3fa45b1c12eecebe39802ee4bab7426843710dd67306b2a8946c9c2b51d4c1864eb054f440c3ea021ae124bbeb6e4908b33 +doccontainersize 24230688 +doccontainerchecksum 9e5fddf4765325a550e6dbea529d110bbbfbcdf89e1dafcfe62099a4e8fa6ce2bf3384ef9e1b2453f1155b6e6d3f48d1d1675100c8295362653aaabec35aaf86 +docfiles size=5982 RELOC/doc/latex/willowtreebook/README details="Readme" + RELOC/doc/latex/willowtreebook/notation.gst RELOC/doc/latex/willowtreebook/willow.jpg RELOC/doc/latex/willowtreebook/willowtreebook.bib RELOC/doc/latex/willowtreebook/willowtreebook.pdf details="Package documentation" @@ -331563,28 +345803,28 @@ catalogue-also memoir catalogue-ctan /macros/latex/contrib/willowtreebook catalogue-license lppl1.3c catalogue-topics class book-pub -catalogue-version 1.01 +catalogue-version 1.03 name windycity category Package -revision 59067 +revision 61223 shortdesc A Chicago style for BibLaTeX relocated 1 longdesc Windy City is a style for BibLaTeX that formats notes, longdesc bibliographies, parenthetical citations, and reference lists longdesc according to the 17th edition of The Chicago Manual of Style. -containersize 19724 -containerchecksum af537ba68b7a752b1f729e68fc752c755c85c9cdb31e0f17594094445eb44bd1d86a1d3702ffa64be3e44b73da8b6524a07f1bc49818ac2540365d88ac2cb57d -doccontainersize 510108 -doccontainerchecksum 05ad3bd4c139e161f8f690c306fba9d4c4da49ad25ec4c2a8018bb5e8b9d11d880eaffd4ef8eb6bf5642cc75b54a908a10cf1b4688488c9625379240e5e4b719 -docfiles size=177 +containersize 20328 +containerchecksum 718ef4ce03405443de94581e45f8866053ce4b5d6b7c6e4576c4664d42adcf50570240fc8181f795f59733b94c648e15cc98ef92e4ae59843093663511829c4d +doccontainersize 565924 +doccontainerchecksum 58107956e367dc318cc23320818c43f3fa91b75f69bc186b107687293f52c1c0cffb04912959e1a5c8d8abe3bb848c69da38ec621266e7a94b378a11d4c759e2 +docfiles size=194 RELOC/doc/latex/windycity/CHANGES.md RELOC/doc/latex/windycity/LICENCE RELOC/doc/latex/windycity/README.md details="Readme" RELOC/doc/latex/windycity/windycity.bib RELOC/doc/latex/windycity/windycity.pdf details="Package documentation" RELOC/doc/latex/windycity/windycity.tex -runfiles size=33 +runfiles size=34 RELOC/tex/latex/windycity/american-windycity.lbx RELOC/tex/latex/windycity/windycity.bbx RELOC/tex/latex/windycity/windycity.cbx @@ -331597,13 +345837,13 @@ catalogue-ctan /macros/latex/contrib/biblatex-contrib/windycity catalogue-license lppl1.3 catalogue-topics biblatex -name wintools.win32 +name wintools.windows category TLCore -revision 58783 +revision 66487 shortdesc utilities provided only for Windows longdesc Common utilities, mainly from the w32tex distribution. -postaction filetype name="TL.PSViewer.view" cmd='"TEXDIR/bin/win32/psviewer.exe" "%1"' -postaction filetype name="TL.bitmap2eps.convert" cmd='"TEXDIR/bin/win32/bitmap2eps.exe" "%1"' +postaction filetype name="TL.PSViewer.view" cmd='"TEXDIR/bin/windows/psviewer.exe" "%1"' +postaction filetype name="TL.bitmap2eps.convert" cmd='"TEXDIR/bin/windows/bitmap2eps.exe" "%1"' postaction progid extension=.bmp filetype="TL.bitmap2eps.convert" postaction progid extension=.eps filetype="TL.PSViewer.view" postaction progid extension=.gif filetype="TL.bitmap2eps.convert" @@ -331614,14 +345854,13 @@ postaction progid extension=.png filetype="TL.bitmap2eps.convert" postaction progid extension=.ps filetype="TL.PSViewer.view" postaction progid extension=.tif filetype="TL.bitmap2eps.convert" postaction progid extension=.tiff filetype="TL.bitmap2eps.convert" -containersize 5338756 -containerchecksum c7a0f2956f8c3c2fd0b24c886486f7bde527f8efb35fe44262162d917bfffe3f944db665e3b18e9b423baf88f95953ef048ae17fb33de0e7951c157d4dfc3b05 -doccontainersize 998704 -doccontainerchecksum b7309f3cdb9a6f5bc4a0c3de6cb8356c319f4ae6e1333c9eaaef514d5393e02423c7097b51eebd5f304e561482a18ed384caa77511fac43dd795e0ce60a29145 -docfiles size=342 - texmf-dist/doc/psviewer/psviewer.README - texmf-dist/doc/psviewer/psviewer.ico - texmf-dist/doc/psviewer/psviewer.svg +containersize 5571220 +containerchecksum c372ec73b2647bbcf8f98c9db786a8b0062d99c414d5580d5afb468d5721500251f27934b3ad69b82327802b635f148757a3cb6ab73eb001ac3d08a4a89491ee +doccontainersize 979592 +doccontainerchecksum 667d5e1c0158a872807710e6e55b50df64a38ae12753f09893a2d7c10b6ddc574d2f11f65097c28919ce55aaac8fdf877d3914bed45b2548eebb5d870c8b77e4 +docfiles size=331 + texmf-dist/doc/support/bitmap2eps/bitmap2eps.README + texmf-dist/doc/support/psviewer/psviewer.README texmf-dist/doc/support/tlaunch/COPYING texmf-dist/doc/support/tlaunch/Changes texmf-dist/doc/support/tlaunch/README @@ -331646,7 +345885,6 @@ docfiles size=342 texmf-dist/doc/support/wintools/pdfimages.pdf texmf-dist/doc/support/wintools/pdfinfo.pdf texmf-dist/doc/support/wintools/pdfseparate.pdf - texmf-dist/doc/support/wintools/pdfsig.pdf texmf-dist/doc/support/wintools/pdftocairo.pdf texmf-dist/doc/support/wintools/pdftohtml.pdf texmf-dist/doc/support/wintools/pdftoppm.pdf @@ -331660,44 +345898,43 @@ runfiles size=4 texmf-dist/scripts/psviewer/psviewer.vbs texmf-dist/scripts/tlaunch/tlaunchmode.pl texmf-dist/web2c/tlaunch.ini -binfiles arch=win32 size=8660 - bin/win32/aftopl.exe - bin/win32/bitmap2eps.exe - bin/win32/bmeps.exe - bin/win32/bmp2png.exe - bin/win32/cjpeg.exe - bin/win32/djpeg.exe - bin/win32/gunzip.exe - bin/win32/gzip.exe - bin/win32/jbig2.exe - bin/win32/pdfattach.exe - bin/win32/pdfdetach.exe - bin/win32/pdffonts.exe - bin/win32/pdfimages.exe - bin/win32/pdfinfo.exe - bin/win32/pdfseparate.exe - bin/win32/pdfsig.exe - bin/win32/pdftocairo.exe - bin/win32/pdftohtml.exe - bin/win32/pdftoppm.exe - bin/win32/pdftops.exe - bin/win32/pdftotext.exe - bin/win32/pdfunite.exe - bin/win32/png22pnm.exe - bin/win32/png2bmp.exe - bin/win32/psviewer.exe - bin/win32/sam2p.exe - bin/win32/texview.exe - bin/win32/tif22pnm.exe - bin/win32/tiff2png.exe - bin/win32/tlaunch.exe - bin/win32/tlaunchmode.exe - bin/win32/todos.exe - bin/win32/tomac.exe - bin/win32/tounix.exe - bin/win32/type1afm.exe - bin/win32/unzip.exe - bin/win32/zip.exe +binfiles arch=windows size=11211 + bin/windows/aftopl.exe + bin/windows/bitmap2eps.exe + bin/windows/bmeps.exe + bin/windows/bmp2png.exe + bin/windows/cjpeg.exe + bin/windows/djpeg.exe + bin/windows/gunzip.exe + bin/windows/gzip.exe + bin/windows/jbig2.exe + bin/windows/pdfattach.exe + bin/windows/pdfdetach.exe + bin/windows/pdffonts.exe + bin/windows/pdfimages.exe + bin/windows/pdfinfo.exe + bin/windows/pdfseparate.exe + bin/windows/pdftocairo.exe + bin/windows/pdftohtml.exe + bin/windows/pdftoppm.exe + bin/windows/pdftops.exe + bin/windows/pdftotext.exe + bin/windows/pdfunite.exe + bin/windows/png22pnm.exe + bin/windows/png2bmp.exe + bin/windows/psviewer.exe + bin/windows/sam2p.exe + bin/windows/texview.exe + bin/windows/tif22pnm.exe + bin/windows/tiff2png.exe + bin/windows/tlaunch.exe + bin/windows/tlaunchmode.exe + bin/windows/todos.exe + bin/windows/tomac.exe + bin/windows/tounix.exe + bin/windows/type1afm.exe + bin/windows/unzip.exe + bin/windows/zip.exe name withargs category Package @@ -331731,7 +345968,7 @@ catalogue-version 0.3.1 name witharrows category Package -revision 58120 +revision 65841 shortdesc "Aligned" math environments with arrows for comments relocated 1 longdesc This package provides an environment WithArrows which is @@ -331741,27 +345978,27 @@ longdesc the alignment. These arrows are usually used to give longdesc explanations concerning the mathematical calculus presented. longdesc The package requires the following other LaTeX packages: expl3, longdesc footnote, l3keys2e, tikz, and xparse. -containersize 14596 -containerchecksum 75f87cfce4089e02f5e1023ebd1f66c0f9ab62932c2fbb7edb8a63948e31efab3a3418b946db7270e6ea88e6536525db5d191f904f5d7ecb0e8f3cdfaea743b6 -doccontainersize 916488 -doccontainerchecksum b22081b8ae14217f4a58f71507314e3bdc50659e6fff761cb1648c8ea03819182a0d4d30122456e4c5d24e307fb301d52eb37e092b8add0b698dacd026e6f5d9 -docfiles size=270 +containersize 15352 +containerchecksum ec6cc4905751b7ec8fdee871ad72851241db23552e59bb0e66e931d849c6ba3d99d78b93a13aa96359588439b78534065a90f786bddaba5d243cd400438be710 +doccontainersize 843716 +doccontainerchecksum 3ea2242ad99d728dba6d5171ff2277686f6f5402900fe80a6e84c3b6e3847d5070f31f68482e0f2de09b10401d07c2db60892bdf8bf4ebc450daf2b21203edf2 +docfiles size=252 RELOC/doc/generic/witharrows/README.md details="Readme" RELOC/doc/generic/witharrows/witharrows-french.pdf details="Package documentation (French)" language="fr" RELOC/doc/generic/witharrows/witharrows-french.tex RELOC/doc/generic/witharrows/witharrows.pdf details="Package documentation (English)" RELOC/doc/generic/witharrows/witharrows.tex -srccontainersize 52676 -srccontainerchecksum fdde37e183614ffe887b7813db7d09ebd7586e73c4e54c7eeffaa4daa48e23f2f958306f2547bd2b683343b883b3d26f5f9779b9cbf2e755f8b265678b826c9a -srcfiles size=70 +srccontainersize 53964 +srccontainerchecksum 511f6ec6a396298e004b7943040adf71d8b1b8974bbc8650e6921c064d38375e7c01a978a851ac52fc5ee93834e9c5db0ced7f468cd03126e16e90267a497d40 +srcfiles size=72 RELOC/source/generic/witharrows/witharrows.dtx RELOC/source/generic/witharrows/witharrows.ins -runfiles size=24 +runfiles size=25 RELOC/tex/generic/witharrows/witharrows.sty catalogue-ctan /macros/generic/witharrows catalogue-license lppl1.3 -catalogue-topics maths maths-syseqn pgf-tikz expl3 -catalogue-version 2.6c +catalogue-topics maths maths-syseqn pgf-tikz macro-gen expl3 +catalogue-version 2.8a name wnri category Package @@ -331957,15 +346194,6 @@ containerchecksum d7fb3d0a494f54fa2de0ef175d4a79cad4dce886350d4fedb6facbd627036d binfiles arch=armhf-linux size=1 bin/armhf-linux/wordcount -name wordcount.i386-cygwin -category Package -revision 46165 -shortdesc i386-cygwin files of wordcount -containersize 340 -containerchecksum 847c51fb980daec15df099fbf4eaea2b76caa4dbd17ea6934f02ce36a947a805df469c4516f61fd286ce1a75cbaec878ec46a7e51c66f09acfb9af0f688944e8 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/wordcount - name wordcount.i386-freebsd category Package revision 46165 @@ -332119,7 +346347,7 @@ catalogue-version 1.1 name worldflags category Package -revision 59021 +revision 59171 shortdesc Drawing flags with TikZ relocated 1 longdesc This is a package for drawing flags using TikZ. Currently the @@ -332129,15 +346357,26 @@ longdesc can be drawn ... as a single TikZ-picture within ordinary text, longdesc as a picture element within a TikZ-picture. The appearance of a longdesc flag (size, frame etc.) can be adapted using optional longdesc parameters. -containersize 1230772 -containerchecksum 50135705ff208caa13e67e5e99c55421fa556989c042b345c46ebf5c7182dae3c830334ee5ec193c6574634c9ecbead72dd6cf83715a30200208c6694a75053f -doccontainersize 2141572 -doccontainerchecksum 340ec9a71b470f39218bcde92c663454317572d76198e8bc115483a9930fb5315a937a8fbaa8f0395a56505691bbe5f93d403aa3bcf4b39f7b4026309081cfaf -docfiles size=541 +containersize 1497060 +containerchecksum 128274fc2cdf34b956987c85c4bd00e25673879a3c701965db5ee7d240916df79133843991ea69e0924fe15a3f88140e8bb1754880bbdb1d9eae157ade92c260 +doccontainersize 2539560 +doccontainerchecksum 8cab4b4abf08a0253a3ffd1682be2de6fd5a32adc48c4e195b76899074d3fa415ad77ce347a17afaa812040de59a3d0947e35c6f3872c98edca0fd218fa79f20 +docfiles size=640 RELOC/doc/latex/worldflags/README details="Readme" RELOC/doc/latex/worldflags/worldflags.pdf details="Package documentation" RELOC/doc/latex/worldflags/worldflags.tex -runfiles size=1816 +runfiles size=2213 + RELOC/tex/latex/worldflags/worldflag_0.tex + RELOC/tex/latex/worldflags/worldflag_1.tex + RELOC/tex/latex/worldflags/worldflag_2.tex + RELOC/tex/latex/worldflags/worldflag_3.tex + RELOC/tex/latex/worldflags/worldflag_4.tex + RELOC/tex/latex/worldflags/worldflag_5.tex + RELOC/tex/latex/worldflags/worldflag_6.tex + RELOC/tex/latex/worldflags/worldflag_7.tex + RELOC/tex/latex/worldflags/worldflag_8.tex + RELOC/tex/latex/worldflags/worldflag_9.tex + RELOC/tex/latex/worldflags/worldflag_A.tex RELOC/tex/latex/worldflags/worldflag_AD.tex RELOC/tex/latex/worldflags/worldflag_AE.tex RELOC/tex/latex/worldflags/worldflag_AF.tex @@ -332147,11 +346386,22 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_AO.tex RELOC/tex/latex/worldflags/worldflag_AQ.tex RELOC/tex/latex/worldflags/worldflag_AR.tex + RELOC/tex/latex/worldflags/worldflag_AT-B.tex + RELOC/tex/latex/worldflags/worldflag_AT-K.tex + RELOC/tex/latex/worldflags/worldflag_AT-N.tex + RELOC/tex/latex/worldflags/worldflag_AT-O.tex + RELOC/tex/latex/worldflags/worldflag_AT-S.tex + RELOC/tex/latex/worldflags/worldflag_AT-St.tex + RELOC/tex/latex/worldflags/worldflag_AT-T.tex + RELOC/tex/latex/worldflags/worldflag_AT-V.tex + RELOC/tex/latex/worldflags/worldflag_AT-W.tex RELOC/tex/latex/worldflags/worldflag_AT.tex RELOC/tex/latex/worldflags/worldflag_AU.tex + RELOC/tex/latex/worldflags/worldflag_AX.tex RELOC/tex/latex/worldflags/worldflag_AZ.tex RELOC/tex/latex/worldflags/worldflag_Abkhazia.tex RELOC/tex/latex/worldflags/worldflag_Artsakh.tex + RELOC/tex/latex/worldflags/worldflag_B.tex RELOC/tex/latex/worldflags/worldflag_BA.tex RELOC/tex/latex/worldflags/worldflag_BB.tex RELOC/tex/latex/worldflags/worldflag_BD.tex @@ -332169,6 +346419,9 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_BW.tex RELOC/tex/latex/worldflags/worldflag_BY.tex RELOC/tex/latex/worldflags/worldflag_BZ.tex + RELOC/tex/latex/worldflags/worldflag_Bonaire.tex + RELOC/tex/latex/worldflags/worldflag_Buddhism.tex + RELOC/tex/latex/worldflags/worldflag_C.tex RELOC/tex/latex/worldflags/worldflag_CA.tex RELOC/tex/latex/worldflags/worldflag_CD.tex RELOC/tex/latex/worldflags/worldflag_CF.tex @@ -332185,12 +346438,15 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_CV.tex RELOC/tex/latex/worldflags/worldflag_CY.tex RELOC/tex/latex/worldflags/worldflag_CZ.tex + RELOC/tex/latex/worldflags/worldflag_Christian.tex + RELOC/tex/latex/worldflags/worldflag_D.tex RELOC/tex/latex/worldflags/worldflag_DE.tex RELOC/tex/latex/worldflags/worldflag_DJ.tex RELOC/tex/latex/worldflags/worldflag_DK.tex RELOC/tex/latex/worldflags/worldflag_DM.tex RELOC/tex/latex/worldflags/worldflag_DO.tex RELOC/tex/latex/worldflags/worldflag_DZ.tex + RELOC/tex/latex/worldflags/worldflag_E.tex RELOC/tex/latex/worldflags/worldflag_EC.tex RELOC/tex/latex/worldflags/worldflag_EE.tex RELOC/tex/latex/worldflags/worldflag_EG.tex @@ -332200,16 +346456,21 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_ET.tex RELOC/tex/latex/worldflags/worldflag_EU.tex RELOC/tex/latex/worldflags/worldflag_Esperanto.tex + RELOC/tex/latex/worldflags/worldflag_F.tex RELOC/tex/latex/worldflags/worldflag_FI.tex RELOC/tex/latex/worldflags/worldflag_FJ.tex RELOC/tex/latex/worldflags/worldflag_FM.tex + RELOC/tex/latex/worldflags/worldflag_FO.tex RELOC/tex/latex/worldflags/worldflag_FR.tex + RELOC/tex/latex/worldflags/worldflag_G.tex RELOC/tex/latex/worldflags/worldflag_GA.tex RELOC/tex/latex/worldflags/worldflag_GB.tex RELOC/tex/latex/worldflags/worldflag_GD.tex RELOC/tex/latex/worldflags/worldflag_GE.tex RELOC/tex/latex/worldflags/worldflag_GF.tex + RELOC/tex/latex/worldflags/worldflag_GG.tex RELOC/tex/latex/worldflags/worldflag_GH.tex + RELOC/tex/latex/worldflags/worldflag_GI.tex RELOC/tex/latex/worldflags/worldflag_GL.tex RELOC/tex/latex/worldflags/worldflag_GM.tex RELOC/tex/latex/worldflags/worldflag_GN.tex @@ -332218,22 +346479,28 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_GT.tex RELOC/tex/latex/worldflags/worldflag_GW.tex RELOC/tex/latex/worldflags/worldflag_GY.tex + RELOC/tex/latex/worldflags/worldflag_H.tex RELOC/tex/latex/worldflags/worldflag_HN.tex RELOC/tex/latex/worldflags/worldflag_HR.tex RELOC/tex/latex/worldflags/worldflag_HT.tex RELOC/tex/latex/worldflags/worldflag_HU.tex + RELOC/tex/latex/worldflags/worldflag_I.tex RELOC/tex/latex/worldflags/worldflag_ID.tex RELOC/tex/latex/worldflags/worldflag_IE.tex RELOC/tex/latex/worldflags/worldflag_IL.tex + RELOC/tex/latex/worldflags/worldflag_IM.tex RELOC/tex/latex/worldflags/worldflag_IN.tex RELOC/tex/latex/worldflags/worldflag_IQ.tex RELOC/tex/latex/worldflags/worldflag_IR.tex RELOC/tex/latex/worldflags/worldflag_IS.tex RELOC/tex/latex/worldflags/worldflag_IT.tex + RELOC/tex/latex/worldflags/worldflag_J.tex + RELOC/tex/latex/worldflags/worldflag_JE.tex RELOC/tex/latex/worldflags/worldflag_JM.tex RELOC/tex/latex/worldflags/worldflag_JO.tex RELOC/tex/latex/worldflags/worldflag_JP.tex RELOC/tex/latex/worldflags/worldflag_JollyRoger.tex + RELOC/tex/latex/worldflags/worldflag_K.tex RELOC/tex/latex/worldflags/worldflag_KE.tex RELOC/tex/latex/worldflags/worldflag_KG.tex RELOC/tex/latex/worldflags/worldflag_KH.tex @@ -332245,6 +346512,7 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_KR.tex RELOC/tex/latex/worldflags/worldflag_KW.tex RELOC/tex/latex/worldflags/worldflag_KZ.tex + RELOC/tex/latex/worldflags/worldflag_L.tex RELOC/tex/latex/worldflags/worldflag_LA.tex RELOC/tex/latex/worldflags/worldflag_LB.tex RELOC/tex/latex/worldflags/worldflag_LC.tex @@ -332256,6 +346524,7 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_LU.tex RELOC/tex/latex/worldflags/worldflag_LV.tex RELOC/tex/latex/worldflags/worldflag_LY.tex + RELOC/tex/latex/worldflags/worldflag_M.tex RELOC/tex/latex/worldflags/worldflag_MA.tex RELOC/tex/latex/worldflags/worldflag_MD.tex RELOC/tex/latex/worldflags/worldflag_ME.tex @@ -332273,6 +346542,7 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_MX.tex RELOC/tex/latex/worldflags/worldflag_MY.tex RELOC/tex/latex/worldflags/worldflag_MZ.tex + RELOC/tex/latex/worldflags/worldflag_N.tex RELOC/tex/latex/worldflags/worldflag_NA.tex RELOC/tex/latex/worldflags/worldflag_NATO.tex RELOC/tex/latex/worldflags/worldflag_NE.tex @@ -332284,25 +346554,34 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_NR.tex RELOC/tex/latex/worldflags/worldflag_NU.tex RELOC/tex/latex/worldflags/worldflag_NZ.tex + RELOC/tex/latex/worldflags/worldflag_O.tex RELOC/tex/latex/worldflags/worldflag_OM.tex RELOC/tex/latex/worldflags/worldflag_Olympics.tex + RELOC/tex/latex/worldflags/worldflag_P.tex RELOC/tex/latex/worldflags/worldflag_PA.tex RELOC/tex/latex/worldflags/worldflag_PE.tex RELOC/tex/latex/worldflags/worldflag_PG.tex RELOC/tex/latex/worldflags/worldflag_PH.tex RELOC/tex/latex/worldflags/worldflag_PK.tex RELOC/tex/latex/worldflags/worldflag_PL.tex + RELOC/tex/latex/worldflags/worldflag_PR.tex RELOC/tex/latex/worldflags/worldflag_PS.tex RELOC/tex/latex/worldflags/worldflag_PT.tex RELOC/tex/latex/worldflags/worldflag_PW.tex RELOC/tex/latex/worldflags/worldflag_PY.tex + RELOC/tex/latex/worldflags/worldflag_Q.tex RELOC/tex/latex/worldflags/worldflag_QA.tex + RELOC/tex/latex/worldflags/worldflag_R.tex + RELOC/tex/latex/worldflags/worldflag_RE.tex RELOC/tex/latex/worldflags/worldflag_RO.tex RELOC/tex/latex/worldflags/worldflag_RS.tex RELOC/tex/latex/worldflags/worldflag_RU.tex RELOC/tex/latex/worldflags/worldflag_RW.tex RELOC/tex/latex/worldflags/worldflag_Rainbow.tex + RELOC/tex/latex/worldflags/worldflag_RedCrescent.tex RELOC/tex/latex/worldflags/worldflag_RedCross.tex + RELOC/tex/latex/worldflags/worldflag_RedCrystal.tex + RELOC/tex/latex/worldflags/worldflag_S.tex RELOC/tex/latex/worldflags/worldflag_SA.tex RELOC/tex/latex/worldflags/worldflag_SB.tex RELOC/tex/latex/worldflags/worldflag_SC.tex @@ -332321,7 +346600,10 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_SV.tex RELOC/tex/latex/worldflags/worldflag_SY.tex RELOC/tex/latex/worldflags/worldflag_SZ.tex + RELOC/tex/latex/worldflags/worldflag_Saba.tex RELOC/tex/latex/worldflags/worldflag_Somaliland.tex + RELOC/tex/latex/worldflags/worldflag_StEustasius.tex + RELOC/tex/latex/worldflags/worldflag_T.tex RELOC/tex/latex/worldflags/worldflag_TD.tex RELOC/tex/latex/worldflags/worldflag_TG.tex RELOC/tex/latex/worldflags/worldflag_TH.tex @@ -332335,21 +346617,30 @@ runfiles size=1816 RELOC/tex/latex/worldflags/worldflag_TV.tex RELOC/tex/latex/worldflags/worldflag_TW.tex RELOC/tex/latex/worldflags/worldflag_TZ.tex + RELOC/tex/latex/worldflags/worldflag_Tibet.tex RELOC/tex/latex/worldflags/worldflag_Transnistria.tex + RELOC/tex/latex/worldflags/worldflag_U.tex RELOC/tex/latex/worldflags/worldflag_UA.tex RELOC/tex/latex/worldflags/worldflag_UG.tex + RELOC/tex/latex/worldflags/worldflag_UNESCO.tex RELOC/tex/latex/worldflags/worldflag_UNO.tex RELOC/tex/latex/worldflags/worldflag_US.tex RELOC/tex/latex/worldflags/worldflag_UY.tex RELOC/tex/latex/worldflags/worldflag_UZ.tex + RELOC/tex/latex/worldflags/worldflag_V.tex RELOC/tex/latex/worldflags/worldflag_VA.tex RELOC/tex/latex/worldflags/worldflag_VC.tex RELOC/tex/latex/worldflags/worldflag_VE.tex RELOC/tex/latex/worldflags/worldflag_VN.tex RELOC/tex/latex/worldflags/worldflag_VU.tex + RELOC/tex/latex/worldflags/worldflag_W.tex RELOC/tex/latex/worldflags/worldflag_WB.tex + RELOC/tex/latex/worldflags/worldflag_WHO.tex RELOC/tex/latex/worldflags/worldflag_WS.tex + RELOC/tex/latex/worldflags/worldflag_X.tex + RELOC/tex/latex/worldflags/worldflag_Y.tex RELOC/tex/latex/worldflags/worldflag_YE.tex + RELOC/tex/latex/worldflags/worldflag_Z.tex RELOC/tex/latex/worldflags/worldflag_ZA.tex RELOC/tex/latex/worldflags/worldflag_ZM.tex RELOC/tex/latex/worldflags/worldflag_ZW.tex @@ -332360,29 +346651,115 @@ catalogue-topics graphics pgf-tikz name wrapfig category Package -revision 22048 +revision 61719 shortdesc Produces figures which text can flow around relocated 1 longdesc Allows figures or tables to have text wrapped around them. Does longdesc not work in combination with list environments, but can be used longdesc in a parbox or minipage, and in twocolumn format. Supports the longdesc float package. -containersize 9360 -containerchecksum ea9d0693a43f985b9ab13a51e0af82b866adc8500dfb9f42e8b20ce8facd07d0534749bda61d13bc86b921300336c9f7e6099f252c4c65370a2e2cb4423589ae -doccontainersize 337900 -doccontainerchecksum 9ba4292d2641a31f3719ca66e3d80ca70638f9c943bfad9e9e08543f57a53eccc1292930e95d6a3677d0696e0deb1d1ca698b83eb7285baae275b70ac808be33 +containersize 9336 +containerchecksum afa6eed496f63dda436a9a57c9f056ae88fb7985328d58d81fddde743a737b1ec69a5409941a76a28840d938397928925500628b2e11859713871977545278e2 +doccontainersize 337904 +doccontainerchecksum 27aa1cfb0641876516eefd483f5f37e25e06c24bc255fe81afadd985d9a5ea73d311184ad46120d57d8dfc584da02f99c90128c6e0cead71064d00c1bae09f7b docfiles size=87 RELOC/doc/latex/wrapfig/multiple-span.txt details="How to use wrapfig to span multiple columns" RELOC/doc/latex/wrapfig/wrapfig-doc.pdf details="Package documentation" RELOC/doc/latex/wrapfig/wrapfig-doc.tex runfiles size=7 RELOC/tex/latex/wrapfig/wrapfig.sty -catalogue-also floatflt +catalogue-also wrapfig2 catalogue-ctan /macros/latex/contrib/wrapfig catalogue-license lppl catalogue-topics text-flow catalogue-version 3.6 +name wrapfig2 +category Package +revision 66115 +shortdesc Wrap text around figures +relocated 1 +longdesc This package is a fork of Donald Arseneau's wrapfig package. It +longdesc is backwards compatible with the original environments. +longdesc Therefore this package does not work with LaTeX2e kernels older +longdesc than about 2018, although a warning is issued if the LaTeX +longdesc format file is dated with a date older than 1st January 2019. +containersize 7136 +containerchecksum d1ff1ceee83cdbcbb0c59d4c4476fb03cd9cb8f76432991e035be66af38133efe658a356817ebc6072638fbb92028c04c3347d49759ca50973800936fc5471ce +doccontainersize 693588 +doccontainerchecksum 88bbcd51274dcf4f2c9d50ff10cc02d91c5e70b35197ea6f8904c0694c6fa8e6b5dfb5b3acb6057ca7c4ddde5528381ee034f6e852b30634f374a88532f91a9a +docfiles size=190 + RELOC/doc/latex/wrapfig2/README.txt details="Readme" + RELOC/doc/latex/wrapfig2/stele-todi-small.jpg + RELOC/doc/latex/wrapfig2/wrapfig2.pdf details="Package documentation" +srccontainersize 26944 +srccontainerchecksum 2e86526c7736959d1b8b1b8bdfe23c05408815be5f6752af478e0c0ca8bd4fdc9224c4a2ea4e30b44413574d94e4a92e0030e9376e1ee6832d42aa5e80aa7093 +srcfiles size=24 + RELOC/source/latex/wrapfig2/wrapfig2.dtx +runfiles size=6 + RELOC/tex/latex/wrapfig2/wrapfig2.sty +catalogue-also cutwin +catalogue-ctan /macros/latex/contrib/wrapfig2 +catalogue-license lppl1.3c +catalogue-topics text-flow expl3 +catalogue-version 6.1.1 + +name wrapstuff +category Package +revision 64058 +shortdesc Wrapping text around stuff +relocated 1 +longdesc This package provides another implementation of text wrapping. +longdesc Its implementation benefits from the paragraph hooks available +longdesc since LaTeX 2021-06-01. +containersize 11744 +containerchecksum ec0cfc45b68b5db1b0b8cde55a0b98e2834e8d69727d9a243a4ff814e7f98dc794803c1ee0487263ab06323f8d4cf68a0c7de6639b8f91dca953a8dfdcda3f06 +doccontainersize 437732 +doccontainerchecksum 688ce97d588807fcc36b872198f01a74678f562e8daa2ee4a4bc12a1ee9b3d914ed670d7668af259ee92722e314c28a65555a61b2fde3d22f5b69b4bf05332c1 +docfiles size=112 + RELOC/doc/latex/wrapstuff/README.md details="Readme" + RELOC/doc/latex/wrapstuff/wrapstuff.pdf details="Package documentation" language="zh" +srccontainersize 16376 +srccontainerchecksum b7e1b8ea480949adcaffbf9d175b75f9eae3f23c79648080379fe178fbb2976d11446a7384c613e5ebe647936a5aa88c31cd82b2a9425a59b6c41d7ad819d63b +srcfiles size=24 + RELOC/source/latex/wrapstuff/wrapstuff.dtx +runfiles size=20 + RELOC/tex/latex/wrapstuff/wrapstuff.sty +catalogue-contact-announce https://github.com/qinglee/wrapstuff/releases +catalogue-contact-bugs https://github.com/qinglee/wrapstuff/issues +catalogue-contact-repository https://github.com/qinglee/wrapstuff +catalogue-contact-support https://github.com/qinglee/wrapstuff/discussions +catalogue-ctan /macros/latex/contrib/wrapstuff +catalogue-license lppl1.3c +catalogue-topics text-flow expl3 +catalogue-version 0.3 + +name writeongrid +category Package +revision 65700 +shortdesc Write on grid lines +relocated 1 +longdesc An environment to create grids (type 5x5 or Seyes or Ruled) and +longdesc commands to write texts "right" on the lines. +containersize 3760 +containerchecksum b65d0b5159fdf6c9f84318770c765507b832d70e9646eb85456f3917988ba0b8d67add019a993f7ac6e58276a06dff263155b0d2759de5bb04ee4982f2c14187 +doccontainersize 941472 +doccontainerchecksum d5ffefb363efb6736112a99db98a27aa4e7fd0ccc6168a0fe6413443d7854ae9e157e660973fc9deec074362e8faff4285f28bc89cad1d19c7e8d9a02814bc92 +docfiles size=264 + RELOC/doc/latex/writeongrid/README.md details="Readme" + RELOC/doc/latex/writeongrid/WriteOnGrid-doc-en.pdf details="Package documentation (English)" + RELOC/doc/latex/writeongrid/WriteOnGrid-doc-en.tex + RELOC/doc/latex/writeongrid/WriteOnGrid-doc-fr.pdf details="Package documentation (French)" language="fr" + RELOC/doc/latex/writeongrid/WriteOnGrid-doc-fr.tex +runfiles size=5 + RELOC/tex/latex/writeongrid/WriteOnGrid.sty +catalogue-contact-bugs https://github.com/cpierquet/WriteOnGrid/issues +catalogue-contact-repository https://github.com/cpierquet/WriteOnGrid +catalogue-ctan /macros/latex/contrib/writeongrid +catalogue-license lppl1.3c +catalogue-topics typeset-grid pgf-tikz +catalogue-version 0.1.2 + name wsemclassic category Package revision 31532 @@ -332556,7 +346933,7 @@ catalogue-version 1.1 name xassoccnt category Package -revision 55876 +revision 61112 shortdesc Associated counters stepping simultaneously relocated 1 longdesc This package provides a way of associating counters to an @@ -332568,10 +346945,10 @@ longdesc xassoccnt is a successor and a complete rewrite of the assoccnt longdesc package by the same author. However, as of 2017-03-05, some longdesc features of assoccnt are not (yet) contained in xassoccnt so longdesc that the older package cannot yet be regarded as obsolete. -containersize 19604 -containerchecksum f2a2c993c465afdf21920e7f4cd7ed81f40fec1bc485cd89d919e5a942284e2219194d349ecc4da81005a7dbd997ed176ca8571c92ec159b69a98dd1068a136d -doccontainersize 1139344 -doccontainerchecksum a20c3a3f10ca5a2fd785e4bfb92d3d60edcbee74f6efd2dea5fece63b01ff3d67905700be0fc48dfda9bccfa386238e77592cb04208ead19dbdb0714d6e891af +containersize 19596 +containerchecksum 4b3934d7a4a219fca3f276b26b893706ed8a65682425ac40d6722734f3e133099837ea8aebf214bad32c0d6b415121f73ea605dd851f0f2542dfb0bc38744313 +doccontainersize 1141224 +doccontainerchecksum 020a2fb86c86372302e68636d727203625ddfbf63cf8eb5b3055502fcd073c54b52a44f8c7bfcb2c3c73a206082e5d285f05cf762b9857d2e16c43fe36f8fb96 docfiles size=333 RELOC/doc/latex/xassoccnt/README details="Readme" RELOC/doc/latex/xassoccnt/xassoccnt_counterformats_example.pdf @@ -332606,7 +346983,7 @@ catalogue-also assoccnt catalogue-ctan /macros/latex/contrib/xassoccnt catalogue-license lppl1.3 catalogue-topics counter-mgmt macro-supp -catalogue-version 1.8 +catalogue-version 2.0 name xbmks category Package @@ -332653,7 +347030,7 @@ catalogue-topics pdfprocess adobe-distiller name xcharter category Package -revision 58755 +revision 63057 shortdesc Extension of Bitstream Charter fonts relocated 1 longdesc The package presents an extension of Bitstream Charter, which @@ -332662,11 +347039,11 @@ longdesc all four styles, accompanied by LaTeX font support files. The longdesc fonts themselves are provided in both Adobe Type 1 and OTF longdesc formats, with supporting files as necessary. execute addMap XCharter.map -containersize 2067828 -containerchecksum 47ef79da9f019c27758e90be80ca7815e93ec3044da88b133685f4cf32655d1be2c591e17a6730da45977be5e06a3cd0c29da2ee798e5667d741f5161f2de723 -doccontainersize 465920 -doccontainerchecksum 574a4ba5ec45569668ee9e3b26055d1677fb2a95f28bb4b8e2b21589aba116329fbffeb74e4b391dde94f93547aeb1d689560d7050976db533be28c9cf6b6948 -docfiles size=215 +containersize 2200760 +containerchecksum e3b6de6f9ab168b90b2351a43066e144c87efcd648c8e39975870040662bed9f5a2d033d23c28eed2b446af24abfb893ac550a52870ce5dbcc41d9b26aca4d52 +doccontainersize 224040 +doccontainerchecksum 3a2e88d313293b073d0eff63dcb6984c9eda7eb5813aff6267615ac2f49dd9b47b977e196c1769353cfb44b1b8c07c3e02146eaafa99eac416b049598fa89e60 +docfiles size=73 RELOC/doc/fonts/xcharter/README details="Readme" RELOC/doc/fonts/xcharter/altone.py RELOC/doc/fonts/xcharter/newgermanfxch-crop.pdf @@ -332674,7 +347051,7 @@ docfiles size=215 RELOC/doc/fonts/xcharter/newgermanfxch.tex RELOC/doc/fonts/xcharter/xcharter-doc.pdf details="Package documentation" RELOC/doc/fonts/xcharter/xcharter-doc.tex -runfiles size=2372 +runfiles size=3543 RELOC/fonts/afm/public/xcharter/XCharter-Bold.afm RELOC/fonts/afm/public/xcharter/XCharter-BoldItalic.afm RELOC/fonts/afm/public/xcharter/XCharter-BoldSlanted.afm @@ -332687,114 +347064,198 @@ runfiles size=2372 RELOC/fonts/afm/public/xcharter/XCharterMathRM.afm RELOC/fonts/enc/dvips/xcharter/chalph.enc RELOC/fonts/enc/dvips/xcharter/chtabosf.enc + RELOC/fonts/enc/dvips/xcharter/xch1TH_osf-ly1.enc + RELOC/fonts/enc/dvips/xcharter/xch1TH_osf-ot1.enc + RELOC/fonts/enc/dvips/xcharter/xch1TH_osf-t1.enc RELOC/fonts/enc/dvips/xcharter/xch1_2itbay.enc RELOC/fonts/enc/dvips/xcharter/xch1_2jcsfa.enc RELOC/fonts/enc/dvips/xcharter/xch1_3qy4ma.enc + RELOC/fonts/enc/dvips/xcharter/xch1_4sqimf.enc RELOC/fonts/enc/dvips/xcharter/xch1_4zysyq.enc + RELOC/fonts/enc/dvips/xcharter/xch1_5x23ii.enc RELOC/fonts/enc/dvips/xcharter/xch1_64qgug.enc + RELOC/fonts/enc/dvips/xcharter/xch1_65qaqc.enc + RELOC/fonts/enc/dvips/xcharter/xch1_6ir2ua.enc + RELOC/fonts/enc/dvips/xcharter/xch1_6ramfp.enc RELOC/fonts/enc/dvips/xcharter/xch1_6xwfqv.enc RELOC/fonts/enc/dvips/xcharter/xch1_7aohvb.enc - RELOC/fonts/enc/dvips/xcharter/xch1_7p4e2o.enc - RELOC/fonts/enc/dvips/xcharter/xch1_afo4o4.enc + RELOC/fonts/enc/dvips/xcharter/xch1_acpec5.enc + RELOC/fonts/enc/dvips/xcharter/xch1_an6s6r.enc + RELOC/fonts/enc/dvips/xcharter/xch1_c3yyfo.enc + RELOC/fonts/enc/dvips/xcharter/xch1_c54uym.enc + RELOC/fonts/enc/dvips/xcharter/xch1_ccfumi.enc + RELOC/fonts/enc/dvips/xcharter/xch1_cilcsm.enc RELOC/fonts/enc/dvips/xcharter/xch1_cjimfy.enc RELOC/fonts/enc/dvips/xcharter/xch1_co4ru4.enc + RELOC/fonts/enc/dvips/xcharter/xch1_dp2hrq.enc + RELOC/fonts/enc/dvips/xcharter/xch1_dynzsr.enc + RELOC/fonts/enc/dvips/xcharter/xch1_eldrzl.enc RELOC/fonts/enc/dvips/xcharter/xch1_geqmur.enc + RELOC/fonts/enc/dvips/xcharter/xch1_hgvfee.enc + RELOC/fonts/enc/dvips/xcharter/xch1_i2cund.enc + RELOC/fonts/enc/dvips/xcharter/xch1_i2fqhk.enc RELOC/fonts/enc/dvips/xcharter/xch1_icytdu.enc - RELOC/fonts/enc/dvips/xcharter/xch1_ivnpe7.enc - RELOC/fonts/enc/dvips/xcharter/xch1_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch1_iit6m7.enc + RELOC/fonts/enc/dvips/xcharter/xch1_ksktz7.enc + RELOC/fonts/enc/dvips/xcharter/xch1_laqzs3.enc + RELOC/fonts/enc/dvips/xcharter/xch1_m6qb7y.enc + RELOC/fonts/enc/dvips/xcharter/xch1_mpbiom.enc + RELOC/fonts/enc/dvips/xcharter/xch1_ng7me5.enc RELOC/fonts/enc/dvips/xcharter/xch1_nhow2o.enc RELOC/fonts/enc/dvips/xcharter/xch1_ph46id.enc + RELOC/fonts/enc/dvips/xcharter/xch1_pikjb7.enc + RELOC/fonts/enc/dvips/xcharter/xch1_plaupi.enc RELOC/fonts/enc/dvips/xcharter/xch1_pqp4df.enc - RELOC/fonts/enc/dvips/xcharter/xch1_q2nwaj.enc RELOC/fonts/enc/dvips/xcharter/xch1_q7fabp.enc + RELOC/fonts/enc/dvips/xcharter/xch1_qfy5bi.enc RELOC/fonts/enc/dvips/xcharter/xch1_s4eoyd.enc RELOC/fonts/enc/dvips/xcharter/xch1_sczepj.enc + RELOC/fonts/enc/dvips/xcharter/xch1_tipddl.enc + RELOC/fonts/enc/dvips/xcharter/xch1_tohekq.enc RELOC/fonts/enc/dvips/xcharter/xch1_wd2dbe.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wf67wi.enc RELOC/fonts/enc/dvips/xcharter/xch1_wqeam3.enc + RELOC/fonts/enc/dvips/xcharter/xch1_wqjgnt.enc RELOC/fonts/enc/dvips/xcharter/xch1_wuciy4.enc RELOC/fonts/enc/dvips/xcharter/xch1_x6jczy.enc RELOC/fonts/enc/dvips/xcharter/xch1_xqcxen.enc + RELOC/fonts/enc/dvips/xcharter/xch1_yr3lcc.enc RELOC/fonts/enc/dvips/xcharter/xch1_z3wvjz.enc - RELOC/fonts/enc/dvips/xcharter/xch1_zhjmar.enc RELOC/fonts/enc/dvips/xcharter/xch1_zqx27h.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_osf-ly1.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_osf-ot1.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_osf-t1.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_tlf-ly1.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_tlf-ot1.enc + RELOC/fonts/enc/dvips/xcharter/xchTH_tlf-t1.enc RELOC/fonts/enc/dvips/xcharter/xch_26pbhy.enc RELOC/fonts/enc/dvips/xcharter/xch_2itbay.enc RELOC/fonts/enc/dvips/xcharter/xch_2jcsfa.enc + RELOC/fonts/enc/dvips/xcharter/xch_2ne5ra.enc + RELOC/fonts/enc/dvips/xcharter/xch_2v3pxw.enc RELOC/fonts/enc/dvips/xcharter/xch_34ooqo.enc RELOC/fonts/enc/dvips/xcharter/xch_3qy4ma.enc + RELOC/fonts/enc/dvips/xcharter/xch_4ba22z.enc RELOC/fonts/enc/dvips/xcharter/xch_4j4sw5.enc + RELOC/fonts/enc/dvips/xcharter/xch_4nycuc.enc + RELOC/fonts/enc/dvips/xcharter/xch_4sqimf.enc RELOC/fonts/enc/dvips/xcharter/xch_4zysyq.enc + RELOC/fonts/enc/dvips/xcharter/xch_5wo36q.enc + RELOC/fonts/enc/dvips/xcharter/xch_5x23ii.enc + RELOC/fonts/enc/dvips/xcharter/xch_62bu45.enc RELOC/fonts/enc/dvips/xcharter/xch_62z5ot.enc RELOC/fonts/enc/dvips/xcharter/xch_6335sg.enc RELOC/fonts/enc/dvips/xcharter/xch_64qgug.enc + RELOC/fonts/enc/dvips/xcharter/xch_65qaqc.enc + RELOC/fonts/enc/dvips/xcharter/xch_6ckksa.enc RELOC/fonts/enc/dvips/xcharter/xch_6hzluo.enc + RELOC/fonts/enc/dvips/xcharter/xch_6ir2ua.enc + RELOC/fonts/enc/dvips/xcharter/xch_6mgzuz.enc + RELOC/fonts/enc/dvips/xcharter/xch_6ramfp.enc RELOC/fonts/enc/dvips/xcharter/xch_6w7aji.enc RELOC/fonts/enc/dvips/xcharter/xch_6xwfqv.enc RELOC/fonts/enc/dvips/xcharter/xch_7aohvb.enc RELOC/fonts/enc/dvips/xcharter/xch_7cmdv6.enc - RELOC/fonts/enc/dvips/xcharter/xch_7p4e2o.enc - RELOC/fonts/enc/dvips/xcharter/xch_abgjzu.enc - RELOC/fonts/enc/dvips/xcharter/xch_afo4o4.enc - RELOC/fonts/enc/dvips/xcharter/xch_ao7ayk.enc + RELOC/fonts/enc/dvips/xcharter/xch_a6eos7.enc + RELOC/fonts/enc/dvips/xcharter/xch_acpec5.enc + RELOC/fonts/enc/dvips/xcharter/xch_akeqbh.enc + RELOC/fonts/enc/dvips/xcharter/xch_an6s6r.enc RELOC/fonts/enc/dvips/xcharter/xch_aw3wom.enc RELOC/fonts/enc/dvips/xcharter/xch_bjnaxa.enc RELOC/fonts/enc/dvips/xcharter/xch_blmpt7.enc - RELOC/fonts/enc/dvips/xcharter/xch_bxmb3o.enc + RELOC/fonts/enc/dvips/xcharter/xch_c3yyfo.enc + RELOC/fonts/enc/dvips/xcharter/xch_c54uym.enc + RELOC/fonts/enc/dvips/xcharter/xch_ccfumi.enc + RELOC/fonts/enc/dvips/xcharter/xch_cilcsm.enc RELOC/fonts/enc/dvips/xcharter/xch_cjimfy.enc RELOC/fonts/enc/dvips/xcharter/xch_ckugtc.enc RELOC/fonts/enc/dvips/xcharter/xch_co4ru4.enc + RELOC/fonts/enc/dvips/xcharter/xch_cos7tu.enc + RELOC/fonts/enc/dvips/xcharter/xch_cy5fc2.enc + RELOC/fonts/enc/dvips/xcharter/xch_dp2hrq.enc + RELOC/fonts/enc/dvips/xcharter/xch_dqjass.enc + RELOC/fonts/enc/dvips/xcharter/xch_dynzsr.enc + RELOC/fonts/enc/dvips/xcharter/xch_ei7atk.enc + RELOC/fonts/enc/dvips/xcharter/xch_el7fqi.enc + RELOC/fonts/enc/dvips/xcharter/xch_eldrzl.enc RELOC/fonts/enc/dvips/xcharter/xch_en7yt2.enc + RELOC/fonts/enc/dvips/xcharter/xch_f5e46c.enc RELOC/fonts/enc/dvips/xcharter/xch_fiqldz.enc RELOC/fonts/enc/dvips/xcharter/xch_geqmur.enc RELOC/fonts/enc/dvips/xcharter/xch_glnwao.enc - RELOC/fonts/enc/dvips/xcharter/xch_h4dyum.enc - RELOC/fonts/enc/dvips/xcharter/xch_hnm3ex.enc + RELOC/fonts/enc/dvips/xcharter/xch_gspcih.enc + RELOC/fonts/enc/dvips/xcharter/xch_guhmqj.enc + RELOC/fonts/enc/dvips/xcharter/xch_hgvfee.enc + RELOC/fonts/enc/dvips/xcharter/xch_hiviyg.enc RELOC/fonts/enc/dvips/xcharter/xch_hnm6t3.enc - RELOC/fonts/enc/dvips/xcharter/xch_hrleas.enc + RELOC/fonts/enc/dvips/xcharter/xch_i2cund.enc + RELOC/fonts/enc/dvips/xcharter/xch_i2fqhk.enc RELOC/fonts/enc/dvips/xcharter/xch_icytdu.enc - RELOC/fonts/enc/dvips/xcharter/xch_imj3v4.enc - RELOC/fonts/enc/dvips/xcharter/xch_ivnpe7.enc - RELOC/fonts/enc/dvips/xcharter/xch_jqdzb6.enc - RELOC/fonts/enc/dvips/xcharter/xch_l5j7vv.enc - RELOC/fonts/enc/dvips/xcharter/xch_l7jokp.enc + RELOC/fonts/enc/dvips/xcharter/xch_iit6m7.enc + RELOC/fonts/enc/dvips/xcharter/xch_ijhcpw.enc + RELOC/fonts/enc/dvips/xcharter/xch_irqw25.enc + RELOC/fonts/enc/dvips/xcharter/xch_kly36k.enc + RELOC/fonts/enc/dvips/xcharter/xch_ksktz7.enc + RELOC/fonts/enc/dvips/xcharter/xch_laqzs3.enc RELOC/fonts/enc/dvips/xcharter/xch_m2vrds.enc - RELOC/fonts/enc/dvips/xcharter/xch_m7ekhw.enc + RELOC/fonts/enc/dvips/xcharter/xch_m4ry62.enc + RELOC/fonts/enc/dvips/xcharter/xch_m6qb7y.enc + RELOC/fonts/enc/dvips/xcharter/xch_mcqmfh.enc RELOC/fonts/enc/dvips/xcharter/xch_mgb5xg.enc + RELOC/fonts/enc/dvips/xcharter/xch_mpbiom.enc + RELOC/fonts/enc/dvips/xcharter/xch_naadkf.enc + RELOC/fonts/enc/dvips/xcharter/xch_ng7me5.enc RELOC/fonts/enc/dvips/xcharter/xch_nhow2o.enc + RELOC/fonts/enc/dvips/xcharter/xch_nii5is.enc RELOC/fonts/enc/dvips/xcharter/xch_o2mz2z.enc RELOC/fonts/enc/dvips/xcharter/xch_ocop3w.enc - RELOC/fonts/enc/dvips/xcharter/xch_og2pus.enc + RELOC/fonts/enc/dvips/xcharter/xch_oeyavg.enc RELOC/fonts/enc/dvips/xcharter/xch_ph46id.enc - RELOC/fonts/enc/dvips/xcharter/xch_phn3tc.enc + RELOC/fonts/enc/dvips/xcharter/xch_pikjb7.enc + RELOC/fonts/enc/dvips/xcharter/xch_plaupi.enc RELOC/fonts/enc/dvips/xcharter/xch_pqp4df.enc RELOC/fonts/enc/dvips/xcharter/xch_pz3lxg.enc - RELOC/fonts/enc/dvips/xcharter/xch_q2nwaj.enc RELOC/fonts/enc/dvips/xcharter/xch_q7fabp.enc RELOC/fonts/enc/dvips/xcharter/xch_qdw4m6.enc + RELOC/fonts/enc/dvips/xcharter/xch_qfy5bi.enc RELOC/fonts/enc/dvips/xcharter/xch_qibaxb.enc + RELOC/fonts/enc/dvips/xcharter/xch_qt227l.enc RELOC/fonts/enc/dvips/xcharter/xch_qxwrge.enc + RELOC/fonts/enc/dvips/xcharter/xch_ruokxy.enc RELOC/fonts/enc/dvips/xcharter/xch_rvzpfm.enc RELOC/fonts/enc/dvips/xcharter/xch_rydp4l.enc - RELOC/fonts/enc/dvips/xcharter/xch_s3y5jv.enc RELOC/fonts/enc/dvips/xcharter/xch_s4eoyd.enc RELOC/fonts/enc/dvips/xcharter/xch_sczepj.enc + RELOC/fonts/enc/dvips/xcharter/xch_swys7y.enc RELOC/fonts/enc/dvips/xcharter/xch_t5vgvk.enc RELOC/fonts/enc/dvips/xcharter/xch_tcksd3.enc + RELOC/fonts/enc/dvips/xcharter/xch_tdjqi5.enc + RELOC/fonts/enc/dvips/xcharter/xch_tipddl.enc + RELOC/fonts/enc/dvips/xcharter/xch_tohekq.enc + RELOC/fonts/enc/dvips/xcharter/xch_ttjfqt.enc + RELOC/fonts/enc/dvips/xcharter/xch_txakzr.enc + RELOC/fonts/enc/dvips/xcharter/xch_u5ytlb.enc RELOC/fonts/enc/dvips/xcharter/xch_u7hnxs.enc + RELOC/fonts/enc/dvips/xcharter/xch_ufo3av.enc RELOC/fonts/enc/dvips/xcharter/xch_ukw3hq.enc + RELOC/fonts/enc/dvips/xcharter/xch_usfr4u.enc RELOC/fonts/enc/dvips/xcharter/xch_v6llfb.enc - RELOC/fonts/enc/dvips/xcharter/xch_vtvjjk.enc RELOC/fonts/enc/dvips/xcharter/xch_vyhv3k.enc + RELOC/fonts/enc/dvips/xcharter/xch_wbcur7.enc RELOC/fonts/enc/dvips/xcharter/xch_wd2dbe.enc + RELOC/fonts/enc/dvips/xcharter/xch_wf67wi.enc RELOC/fonts/enc/dvips/xcharter/xch_wizqmm.enc RELOC/fonts/enc/dvips/xcharter/xch_wqeam3.enc + RELOC/fonts/enc/dvips/xcharter/xch_wqjgnt.enc RELOC/fonts/enc/dvips/xcharter/xch_wuciy4.enc - RELOC/fonts/enc/dvips/xcharter/xch_x25wg5.enc + RELOC/fonts/enc/dvips/xcharter/xch_wz23kl.enc + RELOC/fonts/enc/dvips/xcharter/xch_x36pxl.enc RELOC/fonts/enc/dvips/xcharter/xch_x6jczy.enc RELOC/fonts/enc/dvips/xcharter/xch_xqcxen.enc + RELOC/fonts/enc/dvips/xcharter/xch_y642va.enc RELOC/fonts/enc/dvips/xcharter/xch_yelf2i.enc + RELOC/fonts/enc/dvips/xcharter/xch_yr3lcc.enc RELOC/fonts/enc/dvips/xcharter/xch_z3wvjz.enc - RELOC/fonts/enc/dvips/xcharter/xch_zhjmar.enc RELOC/fonts/enc/dvips/xcharter/xch_zqx27h.enc RELOC/fonts/enc/dvips/xcharter/xcharter-ot2.enc RELOC/fonts/map/dvips/xcharter/XCharter.map @@ -332816,11 +347277,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-osf-t2asrb.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 @@ -332876,11 +347371,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-osf-t2asrb.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 @@ -332936,11 +347465,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-BoldSlanted-sup-ot1.tfm @@ -332996,11 +347559,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-osf-t2asrb.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 @@ -333056,11 +347653,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Roman-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-osf-t2asrb.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 @@ -333116,11 +347747,45 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-inf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-lf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-ot1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-numr-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-sup-ot1.tfm @@ -333166,6 +347831,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter-Slanted-ts1.tfm RELOC/fonts/tfm/public/xcharter/XCharter-osf.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-ot1.tfm @@ -333185,6 +347867,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-ot1.tfm @@ -333204,6 +347903,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.tfm @@ -333223,6 +347939,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-BoldSlanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ot1.tfm @@ -333242,6 +347975,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-ot1.tfm @@ -333261,6 +348011,23 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t2a--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t2asrb--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-sc-t2asrb.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-t2a.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-osf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ly1.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-ot1.tfm @@ -333280,10 +348047,28 @@ runfiles size=2372 RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-tosf-t2asrb.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-ts1--base.tfm RELOC/fonts/tfm/public/xcharter/XCharter1-Slanted-ts1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1TH-Italic-osf-t1.tfm RELOC/fonts/tfm/public/xcharter/XCharterMathBMI.tfm RELOC/fonts/tfm/public/xcharter/XCharterMathBRM.tfm RELOC/fonts/tfm/public/xcharter/XCharterMathMI.tfm RELOC/fonts/tfm/public/xcharter/XCharterMathRM.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharterTH-Italic-tlf-t1.tfm RELOC/fonts/tfm/public/xcharter/zchbmi.tfm RELOC/fonts/tfm/public/xcharter/zchbmi0.tfm RELOC/fonts/tfm/public/xcharter/zchbmi2.tfm @@ -333309,8 +348094,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-Bold-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ly1.vf @@ -333333,8 +348132,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ly1.vf @@ -333357,8 +348170,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-BoldSlanted-tlf-ly1.vf @@ -333380,8 +348207,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-Italic-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ly1.vf @@ -333404,8 +348245,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-Roman-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ly1.vf @@ -333428,8 +348283,22 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-Slanted-dnom-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-inf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-lf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-numr-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter-Slanted-osf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-sup-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tlf-ly1.vf @@ -333447,6 +348316,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-sc-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-tosf-t1.vf RELOC/fonts/vf/public/xcharter/XCharter-Slanted-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Bold-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-sc-ly1.vf @@ -333458,6 +348337,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2a.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Bold-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-sc-ly1.vf @@ -333469,6 +348358,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2a.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldItalic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-sc-ly1.vf @@ -333480,6 +348379,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2a.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-BoldSlanted-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Italic-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-sc-ly1.vf @@ -333491,6 +348400,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2a.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Italic-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-sc-ly1.vf @@ -333502,6 +348421,16 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2a.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Roman-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-sc-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-sc-t2asrb.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-t2a.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-osf-t2asrb.vf RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ly1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-ot1.vf RELOC/fonts/vf/public/xcharter/XCharter1-Slanted-tosf-sc-ly1.vf @@ -333526,41 +348455,90 @@ runfiles size=2372 RELOC/fonts/vf/public/xcharter/zchmia.vf RELOC/tex/latex/xcharter/LY1XCharter-Dnom.fd RELOC/tex/latex/xcharter/LY1XCharter-Inf.fd + RELOC/tex/latex/xcharter/LY1XCharter-LF.fd RELOC/tex/latex/xcharter/LY1XCharter-Numr.fd + RELOC/tex/latex/xcharter/LY1XCharter-OsF.fd RELOC/tex/latex/xcharter/LY1XCharter-Sup.fd RELOC/tex/latex/xcharter/LY1XCharter-TLF.fd RELOC/tex/latex/xcharter/LY1XCharter-TOsF.fd + RELOC/tex/latex/xcharter/LY1XCharterTH-osf.fd + RELOC/tex/latex/xcharter/LY1XCharterTH-tlf.fd RELOC/tex/latex/xcharter/OT1XCharter-Dnom.fd RELOC/tex/latex/xcharter/OT1XCharter-Inf.fd + RELOC/tex/latex/xcharter/OT1XCharter-LF.fd RELOC/tex/latex/xcharter/OT1XCharter-Numr.fd + RELOC/tex/latex/xcharter/OT1XCharter-OsF.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/OT1XCharterTH-osf.fd + RELOC/tex/latex/xcharter/OT1XCharterTH-tlf.fd RELOC/tex/latex/xcharter/OT2XCharter-TLF.fd RELOC/tex/latex/xcharter/T1XCharter-Dnom.fd RELOC/tex/latex/xcharter/T1XCharter-Inf.fd + RELOC/tex/latex/xcharter/T1XCharter-LF.fd RELOC/tex/latex/xcharter/T1XCharter-Numr.fd + RELOC/tex/latex/xcharter/T1XCharter-OsF.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/T1XCharterTH-osf.fd + RELOC/tex/latex/xcharter/T1XCharterTH-tlf.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-LF.fd + RELOC/tex/latex/xcharter/T2ASRBXCharter-OsF.fd RELOC/tex/latex/xcharter/T2ASRBXCharter-Sup.fd RELOC/tex/latex/xcharter/T2ASRBXCharter-TLF.fd RELOC/tex/latex/xcharter/T2ASRBXCharter-TOsF.fd + RELOC/tex/latex/xcharter/T2AXCharter-LF.fd + RELOC/tex/latex/xcharter/T2AXCharter-OsF.fd RELOC/tex/latex/xcharter/T2AXCharter-Sup.fd RELOC/tex/latex/xcharter/T2AXCharter-TLF.fd RELOC/tex/latex/xcharter/T2AXCharter-TOsF.fd + RELOC/tex/latex/xcharter/TS1XCharter-LF.fd + RELOC/tex/latex/xcharter/TS1XCharter-OsF.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/ly1minxcharter.fd RELOC/tex/latex/xcharter/newtx-xcharter-subs.tex RELOC/tex/latex/xcharter/omlzchmi.fd + RELOC/tex/latex/xcharter/ot1minxcharter.fd + RELOC/tex/latex/xcharter/t1minxcharter.fd RELOC/tex/latex/xcharter/t2asrbcmr.fd RELOC/tex/latex/xcharter/t2asrbenc.def catalogue-ctan /fonts/xcharter catalogue-license other-free lppl1.3 catalogue-topics font font-body font-serif font-proportional font-multilingual font-cyrillic font-type1 font-otf font-supp font-t1enc -catalogue-version 1.216 +catalogue-version 1.24 + +name xcharter-math +category Package +revision 65686 +shortdesc XCharter-based OpenType Math font for LuaTeX and XeTeX +relocated 1 +longdesc This package provides an Unicode Math font XCharter-Math.otf +longdesc meant to be used together with XCharter Opentype Text fonts +longdesc (extension of Bitstream Charter) in LuaLaTeX or XeLaTeX +longdesc documents. +containersize 218600 +containerchecksum 099096013f0e6875e879e5f0c5a646df374c718199e0a8394d0d1db215e2e65aea7b484818ecdf1be72064d8460fabcf46918b5326516c3b887b62ccfd7bcfbb +doccontainersize 1966132 +doccontainerchecksum c6b64e8ebe5d0aa41aea6e5cfdabb2cd62eeb924e8de0b4b2b29dca4f8a4970e643b3c81fcbdda52df3a4cc1220413430cadde6caece7db3f6312fd65814b3d7 +docfiles size=514 + RELOC/doc/fonts/xcharter-math/README.md details="Readme" + RELOC/doc/fonts/xcharter-math/XCharter-Math.ltx + RELOC/doc/fonts/xcharter-math/XCharter-Math.pdf details="Package documentation" + RELOC/doc/fonts/xcharter-math/unimath-xcharter.ltx + RELOC/doc/fonts/xcharter-math/unimath-xcharter.pdf details="List of glyphs" +runfiles size=102 + RELOC/fonts/opentype/public/xcharter-math/XCharter-Math-Bold.otf + RELOC/fonts/opentype/public/xcharter-math/XCharter-Math.otf + RELOC/tex/latex/xcharter-math/xcharter-otf.sty +catalogue-ctan /fonts/xcharter-math +catalogue-license ofl lppl1.3 +catalogue-topics font font-otf font-maths font-supp-maths +catalogue-version 0.36 name xcite category Package @@ -334008,7 +348986,7 @@ catalogue-version 0.5 name xcolor category Package -revision 41044 +revision 63563 shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX relocated 1 longdesc The package starts from the basic facilities of the color @@ -334020,13 +348998,13 @@ longdesc color models. Additionally, there is a command for alternating longdesc row colors plus repeated non-aligned material (like horizontal longdesc lines) in tables. Colors can be mixed like longdesc \color{red!30!green!40!blue}. -containersize 17300 -containerchecksum 9fba18460e4488cf2836082952ffff6e5e481b964570ee515f503aed3c8790778e054919e4e24070ff6cf608e21c1356859341eae5704558b1293b01ba8c0925 -doccontainersize 669996 -doccontainerchecksum 65f15207df8a112a4bccbac1c5259053364b52da3f0d2fdf566e1e734f61e0649ae6cc674c96f775d8c668cc6238dad2993f06b81153d38713ebf96e747e0353 -docfiles size=211 +containersize 17404 +containerchecksum 936241be2d7eebec5cb7e1edf54a9522a14d58d8a4d2b339b912b08054fafa33e2cc158360aed9fe1db88db23d68b17e989ad70b90d0fbb04131676ad981e3c8 +doccontainersize 929652 +doccontainerchecksum 9129fa37573a55ebd878e6c5b52ee3a449375e55dd0a87bc85620b12ae9fbbdfadb92e65e5cf3f8e3e7fbd5512107b55d017f8df8db317c50c0f0248dab4399a +docfiles size=249 RELOC/doc/latex/xcolor/ChangeLog - RELOC/doc/latex/xcolor/README details="Readme" + RELOC/doc/latex/xcolor/README.md details="Readme" RELOC/doc/latex/xcolor/xcolor.lox RELOC/doc/latex/xcolor/xcolor.pdf details="Package documentation" RELOC/doc/latex/xcolor/xcolor1.tex @@ -334034,8 +349012,8 @@ docfiles size=211 RELOC/doc/latex/xcolor/xcolor2.tex RELOC/doc/latex/xcolor/xcolor3.tex RELOC/doc/latex/xcolor/xcolor4.tex -srccontainersize 76980 -srccontainerchecksum 236eb7d2f94c297e743c2b0508e55910b00495915b7910dba7e0bc107f2ee37b24e3975242bb11c2c64a99f2abc5a55bd799277b9fbcd98058ee8add005d2be7 +srccontainersize 77416 +srccontainerchecksum 4e3f5af10fe8797073f78e7b0d8b7e89e43427209834c4211fd36d0b3594975c13577a806f090e8153c12e00896c6c5d34ce2be8c1aeb123568b0b5c08b89880 srcfiles size=85 RELOC/source/latex/xcolor/xcolor.dtx RELOC/source/latex/xcolor/xcolor.ins @@ -334044,11 +349022,12 @@ runfiles size=20 RELOC/tex/latex/xcolor/svgnam.def RELOC/tex/latex/xcolor/x11nam.def RELOC/tex/latex/xcolor/xcolor.sty -catalogue-contact-home http://www.ukern.de/tex/xcolor.html +catalogue-contact-bugs https://github.com/latex3/xcolor/issues +catalogue-contact-home https://github.com/latex3/xcolor catalogue-ctan /macros/latex/contrib/xcolor -catalogue-license lppl1.2 +catalogue-license lppl1.3c catalogue-topics colour -catalogue-version 2.12 +catalogue-version 2.14 name xcolor-material category Package @@ -334080,21 +349059,21 @@ catalogue-version 0.1 name xcolor-solarized category Package -revision 41809 +revision 61719 shortdesc Defines the 16 colors from Ethan Schoonover's Solarized palette relocated 1 -longdesc Built on top of the package, this package defines the sixteen -longdesc colors of Ethan Schoonover's popular color palette, Solarized, -longdesc for use in documents typeset with LaTeX and Friends. -containersize 1644 -containerchecksum be443123bb994c40fde0c1783c9863a2ce8b75a8e3e3d311cc34596e72f2830dc92feee9fe87638adee2e942d540424bc389460e12aa0e33fe4014b28a1d46f7 -doccontainersize 469792 -doccontainerchecksum a448de4d83ff30c2112c90fdf80f530b8e1ee46d6b3f574ad0933cbd415debd1f94cb1c55d6de5679d5502cf8e0e28b71cdbca803f0569422e79bf0ced384f45 +longdesc Built on top of the xcolor package, this package defines the +longdesc sixteen colors of Ethan Schoonover's popular color palette, +longdesc Solarized, for use in documents typeset with LaTeX and Friends. +containersize 1628 +containerchecksum fe743e9aa394c6a8a75f8c9e87cb7349d87df114a8c5753a157d4dd129a677af6a0381969f7719712a9abbb9fc720e0d19f8e7ffcc2bd7ba09ee8cb3df3c8d95 +doccontainersize 469788 +doccontainerchecksum bdc4d9a9a0e1ace78a90e9c64fba0894599179592c948494588e43efb21e3b329d6f0a0c403b21073943251796b4cf37f8d0665a8e8bf438b09616fed19c03ff docfiles size=116 RELOC/doc/latex/xcolor-solarized/README details="Readme" RELOC/doc/latex/xcolor-solarized/xcolor-solarized.pdf details="Package documentation" -srccontainersize 4752 -srccontainerchecksum c7f4bac922f84d2e6323f93cbbaa8ec61aa8f532383469edeb8712d4aa557a25509c4c85d160a30715af9a4077d17e6149b737c499dabb22af8a9cc398f4ec9b +srccontainersize 4748 +srccontainerchecksum 851e8ac38bb8a5f6e3410daaa307ba54a5762f08e10b656234feb020354b79caeffaff1de58618e6e9f52cfa50d40013fdeb1e32f6605593dc224cf3650e54f1 srcfiles size=4 RELOC/source/latex/xcolor-solarized/xcolor-solarized.dtx RELOC/source/latex/xcolor-solarized/xcolor-solarized.ins @@ -334267,7 +349246,7 @@ catalogue-version prot2.5 name xduthesis category Package -revision 39694 +revision 63116 shortdesc XeLaTeX template for writing Xidian University Thesis relocated 1 longdesc This is a XeLaTeX template for writing theses to apply academic @@ -334278,10 +349257,10 @@ longdesc bachelor to doctor, including both academic master and longdesc professional master. But it is not guaranteed that you will longdesc pass the typesetting check and obtain your degree by using this longdesc template. -containersize 113404 -containerchecksum 4a92d52c7ca60232849b02bd7d688f12230f858bb7559287610a4d33699158fcb3d5270a22b3abc99d89a684b81e2124602486c16f22fb434e98b54f715f592a -doccontainersize 693300 -doccontainerchecksum 44ec843c2a6b7827c783c076e8f02dfb697f1bf021b54be238049068f466d9969d2e0bb9efdba37623b44a564985af4256eed2b82ef35d8f7ec9798ce84abc0d +containersize 113392 +containerchecksum af32af87d621a3ad64ff6565a02190288e0f97526973a1a3a185c077aef8926f56e9754fb866812f0cc7f515b54fbf7583fec10c17d6f9299d1e186c9a8542e0 +doccontainersize 693304 +doccontainerchecksum 45c12bd4d3127c5d49ef5bfe434b7f8df5487c37fdbbe6ff687ad07796e95aadf4f027cbf16ad4fc5a8fd3455467c47c32ad99d8bc0397d6f70caeaf199d3ecb docfiles size=195 RELOC/doc/latex/xduthesis/README.md details="Readme" RELOC/doc/latex/xduthesis/examples/abstract.tex @@ -334305,7 +349284,7 @@ docfiles size=195 RELOC/doc/latex/xduthesis/examples/thesis-masterpro.tex RELOC/doc/latex/xduthesis/xduthesis.pdf details="Package documentation" srccontainersize 15976 -srccontainerchecksum 12a273267d7e4e82256f4aa76db77673eea0d1816691a179b8ac2af8732ef958a7142a95cd7ba8ee83cdbe2166975dfa12d3fff14607cb1fd27f48c989a5a7ba +srccontainerchecksum c5c2276a352d01ec6ff2724d069d68e29cfd3b78272b5c7a075189dece45c28292b814a9baa951c14ee166f66c9c26feb19c86d31fcca5a65416a1fd1190d61d srcfiles size=15 RELOC/source/latex/xduthesis/xduthesis.dtx RELOC/source/latex/xduthesis/xduthesis.ins @@ -334315,14 +349294,54 @@ runfiles size=257 RELOC/tex/latex/xduthesis/xdulogo.eps RELOC/tex/latex/xduthesis/xduthesis.cfg RELOC/tex/latex/xduthesis/xduthesis.cls +catalogue-also xduts catalogue-ctan /macros/latex/contrib/xduthesis catalogue-license lppl1.3 catalogue-topics proposal catalogue-version 1.00 +name xduts +category Package +revision 66472 +shortdesc Xidian University TeX Suite +relocated 1 +longdesc XDUTS is designed to help Xidian University students use LaTeX +longdesc typesetting efficiently. XDUTS contains a font configuration +longdesc package that meets the school's requirements and can be applied +longdesc to any document class. In addition, there are thesis and thesis +longdesc proposal templates for both undergraduate and postgraduate that +longdesc meet the school's requirements. +containersize 524332 +containerchecksum af17edd116b9db521dbea76569567d6fc29f069e7a526f32fe221cee56551799712d95be98b7ec483534dd1ab3f90125c6572af124aaff8fb4ef10bf288ede07 +doccontainersize 329928 +doccontainerchecksum ef153a5c43d9e44412c9259b1e448d4119758fe641630f65ee496803495fc75e11425998183adcbb77aeab5bb0e7c19d6a8dbe9b383b495b9aebf391e9003f1a +docfiles size=83 + RELOC/doc/xelatex/xduts/README.md details="Readme" + RELOC/doc/xelatex/xduts/xduts.pdf details="Package documentation" language="zh" +srccontainersize 45576 +srccontainerchecksum bc1337e76a4562506340960ccc222803b06c2b7f85b4939b5264f8cb19ff913a56e15a4d963e781e7e21cf30abc651ba95a578de98ac07ec1f85d90d957c3be9 +srcfiles size=72 + RELOC/source/xelatex/xduts/xduts.dtx + RELOC/source/xelatex/xduts/xduts.ins +runfiles size=271 + RELOC/tex/xelatex/xduts/xdufont.sty + RELOC/tex/xelatex/xduts/xdulogo.pdf + RELOC/tex/xelatex/xduts/xdupgthesis.cls + RELOC/tex/xelatex/xduts/xduugthesis.cls + RELOC/tex/xelatex/xduts/xduugtp.cls +catalogue-also xduthesis +catalogue-contact-bugs https://github.com/note286/xduts/issues +catalogue-contact-development https://github.com/note286 +catalogue-contact-repository https://github.com/note286/xduts +catalogue-contact-support https://github.com/note286/xduts/discussions +catalogue-ctan /macros/xetex/latex/xduts +catalogue-license lppl1.3c +catalogue-topics dissertation proposal class expl3 xetex +catalogue-version 6.1.2.0 + name xdvi category TLCore -revision 54338 +revision 62387 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 @@ -334330,9 +349349,9 @@ longdesc of xdvik (no longer separately available), so that it will longdesc build with web2c "out of the box". It is included in TeX Live. depend xdvi.ARCH containersize 6816 -containerchecksum bd226386f91b2d5d19052f353a67410301f8cd08a689125907265716f8e7dbceed40997057d35033157e3477a48e823c2f224324108539f5514ec7387696ad1e -doccontainersize 171592 -doccontainerchecksum cb003d70f0e5b25be95dd0e29b7d5b50f16ffa1844350e71d780f6cddbebe6dfe3dbb79b43ae994e659d6ba1f28ddf5034d867308723606d5baa9f4e91f894c0 +containerchecksum 57024e05928f45e253e236d7e8c6b9cef07359c1cabc10b3f6ac13a9b98dc04530517d8d66b20cefaeced793fbc57a5373c226fb3d26186ba3bb7eaadb0f4ef2 +doccontainersize 173248 +doccontainerchecksum 0fd1bc1ba7bb022f03334fa6c6bc6aed779179a7c486211c3016b0880efa2b13859eb7cea78e8bfc0069192f93313d37a4966fd7e233bccfb1d010d3e413cfd9 docfiles size=70 texmf-dist/doc/man/man1/xdvi.1 texmf-dist/doc/man/man1/xdvi.man1.pdf @@ -334348,147 +349367,137 @@ catalogue-topics previewer name xdvi.aarch64-linux category TLCore -revision 58389 +revision 65927 shortdesc aarch64-linux files of xdvi -containersize 523476 -containerchecksum 52a0dd2005f98ea192f157b4874f7e895299b006199ddea4995eadd24de6abcbcab0e29e346bc17aec1856ffdebd9647fd886c93c394dd01553bd2ba3162fdba -binfiles arch=aarch64-linux size=347 +containersize 532824 +containerchecksum b7825406c0e6507ebe2b0b28d563173fbd967952a2e527a53edf164b9d0829f8aeddd44c5a44eb1ab5580032b43a76e7e576b16305b273c49eb39a76ec59da20 +binfiles arch=aarch64-linux size=353 bin/aarch64-linux/xdvi bin/aarch64-linux/xdvi-xaw name xdvi.amd64-freebsd category TLCore -revision 58388 +revision 65877 shortdesc amd64-freebsd files of xdvi -containersize 557804 -containerchecksum 41465a63c37a09352e086e10d39ae88da66ea64090ae2da7ac59ad4daa0045d28d093137b9f4fceb5c6c99d15a5d646ebf81e9766e9b78eb9f8b713db412fdfc -binfiles arch=amd64-freebsd size=337 +containersize 575132 +containerchecksum 5472d67fb100cac59f50964dc34cd3ef16904cbfd53170ef2c9849bb0f33782fbab170a2cf097ba9969fee764b86c893810b80a9f5c5086b8f1fd917a3a84a25 +binfiles arch=amd64-freebsd size=347 bin/amd64-freebsd/xdvi bin/amd64-freebsd/xdvi-xaw name xdvi.amd64-netbsd category TLCore -revision 58386 +revision 65923 shortdesc amd64-netbsd files of xdvi -containersize 486704 -containerchecksum 67c2368d2e6e1d0419bedef4e3973bc9c89bd51e39306ce659874b3d8bd216c5e1fca8eb5d25d833a77cfce08d6f25d7d23cc329c5d222015becd019eb71ac78 -binfiles arch=amd64-netbsd size=415 +containersize 494476 +containerchecksum 3c93181858f1709999f4a187230cf4bb478c18f33471b25b3809d8ed77a3551b8abed1b92e94df696f0bf08a9eebc0a54a7943a564f06848f5c53ebc5c958d49 +binfiles arch=amd64-netbsd size=422 bin/amd64-netbsd/xdvi bin/amd64-netbsd/xdvi-xaw name xdvi.armhf-linux category TLCore -revision 58428 +revision 65877 shortdesc armhf-linux files of xdvi -containersize 444148 -containerchecksum ff2b34e6a5cead4a35e203dd8342d1d2548150b0620acffbdf4473bd25aca0e8ed3e3b31b2df73def5787b84e1930ee8fa3443556515a7ee2eb92848c624c8ea -binfiles arch=armhf-linux size=266 +containersize 453212 +containerchecksum 6d5ea30eee136a11a65ed17429488b4e4d88d05e0ade820237e8e98fbde71bae51198098d95c0e73f640607439dfdf0230654d85af239ba63bf55eaa16f66519 +binfiles arch=armhf-linux size=270 bin/armhf-linux/xdvi bin/armhf-linux/xdvi-xaw -name xdvi.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of xdvi -containersize 488756 -containerchecksum cdd31c080c16769347404d84e6b51ece6e59e085e38abb9a8bfdf4c1838a95235cd2c5b1a9f67cf11e44e024a57482ec7022ae34ec2a290d2e3df80bb7971880 -binfiles arch=i386-cygwin size=306 - bin/i386-cygwin/xdvi - bin/i386-cygwin/xdvi-xaw.exe - name xdvi.i386-freebsd category TLCore -revision 58388 +revision 65877 shortdesc i386-freebsd files of xdvi -containersize 497312 -containerchecksum df5c808bd99f610d74a9ca6357bdd0f1f5d24e3f17680928010d1128e8f064e2fb6d9559a67154085365eea2ffd8e04e464eec026b4fa3af0b1d37419b1e8cf9 -binfiles arch=i386-freebsd size=296 +containersize 518344 +containerchecksum bc8770ef31cf113f026929cf6e4f4b2d941dae63c5a5082cbba4ab1fcee8b9129755a93893b4d7c11d26b99a7c318fa653d5bf3b13d688ed1231ad848d942d32 +binfiles arch=i386-freebsd size=304 bin/i386-freebsd/xdvi bin/i386-freebsd/xdvi-xaw name xdvi.i386-linux category TLCore -revision 58378 +revision 65877 shortdesc i386-linux files of xdvi -containersize 546188 -containerchecksum 7c3b247c868a05ec503f818ce7554c516bfe64dff3f4fe75b8e891020db98e2c1b04f2521c795c23abffddca907bb436b0e4e6ac50678f4fbd265b97eff29116 -binfiles arch=i386-linux size=336 +containersize 562836 +containerchecksum 630967e0672708daeb463135ae071dc259f3bcc6f1168d6aa62cd1f75a81da53cc3c8a0f680efe279a773c729583cb0b97ec90d3843bdcfc494dcc58cfc9020d +binfiles arch=i386-linux size=346 bin/i386-linux/xdvi bin/i386-linux/xdvi-xaw name xdvi.i386-netbsd category TLCore -revision 58386 +revision 65923 shortdesc i386-netbsd files of xdvi -containersize 443772 -containerchecksum 5aeb848afa03c398f839204883d8fc59294ac263feabfe85a6ebe963b77b4ef1788380c7e63b3a7c6291b1e7e0823675397b40d2b652afe56d041bb8d9f2bf11 -binfiles arch=i386-netbsd size=368 +containersize 450704 +containerchecksum f9c213803629170f04e8c2d16a855848c9ce26d5347a878181be791039abcf1f0498cc35a4e39a5790699043bc9de1a085239b694eeb2d619ae329cc31862cde +binfiles arch=i386-netbsd size=374 bin/i386-netbsd/xdvi bin/i386-netbsd/xdvi-xaw name xdvi.i386-solaris category TLCore -revision 58388 +revision 66145 shortdesc i386-solaris files of xdvi -containersize 492124 -containerchecksum d786152aa4ba7e647e52f50526d7e5789b24e9f9b33c66cded02648a47807493675788e1e0bf797c74471d82caa73c990e38bd470ce612dcd597d2f3b58ef5ac -binfiles arch=i386-solaris size=278 +containersize 502840 +containerchecksum ffab786e84fda900016a20b3703f5396eafdc74c5fb86158da3ca86fdefdffc62958d5900c4064823f2c52fe1c896b875b77a602510e896ee17a6fb7b0eccbca +binfiles arch=i386-solaris size=283 bin/i386-solaris/xdvi bin/i386-solaris/xdvi-xaw name xdvi.universal-darwin category TLCore -revision 58418 +revision 65895 shortdesc universal-darwin files of xdvi -containersize 970292 -containerchecksum add65f162c6f57990f4d3006cad2db9bef585a6543904ee42c902d24b078c3bbd52cc60c1fca248eb81ebd29b92ac191eb847cb622871489444fbc1847f7d53b -binfiles arch=universal-darwin size=643 +containersize 995368 +containerchecksum 0bd6bd5801f3152448a22401259aa278e05f41d610fc24759b25df6152d6bb58eda0b75d0fe8e31b58f2709e99034ee93c10958d920d519eb0dd14ef33f0d62e +binfiles arch=universal-darwin size=660 bin/universal-darwin/xdvi bin/universal-darwin/xdvi-xaw name xdvi.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of xdvi -containersize 510800 -containerchecksum a0f34de53f40d0863df5adb965ffaffcd07cf189fde4159563944d8601613f9a13d86328882c33c1c9e3a798d9ee8a7805136aaaf383a1a64fe4635c3ec7d980 -binfiles arch=x86_64-cygwin size=304 +containersize 522384 +containerchecksum c677e1322f8a4ea494ab381d04121cfa62ffd730703715f51c781782017c8979d1c2c7655e54e5ae43d1d58365663042e1273d61ca7cf3560a912b7c580f6074 +binfiles arch=x86_64-cygwin size=310 bin/x86_64-cygwin/xdvi bin/x86_64-cygwin/xdvi-xaw.exe name xdvi.x86_64-linux category TLCore -revision 58378 +revision 65877 shortdesc x86_64-linux files of xdvi -containersize 541932 -containerchecksum 2218dd09b62b54ece35bd6ad5fe67b726c557997cd76ee74f43b398548ad03d6f78dd80ddd4a9c383fe7d5311b828ef7f7cbb8369239a9c64e3c35dd28bfed87 -binfiles arch=x86_64-linux size=320 +containersize 554580 +containerchecksum 1b9d05ecacb0197b85d779554a592892f05a52dbd7c2585425ac1ce8852cff51bdafbb5bd4b12ed31585c9928a3a8e84efd59601c82dc05d4d184915bb6137f8 +binfiles arch=x86_64-linux size=327 bin/x86_64-linux/xdvi bin/x86_64-linux/xdvi-xaw name xdvi.x86_64-linuxmusl category TLCore -revision 58378 +revision 65877 shortdesc x86_64-linuxmusl files of xdvi -containersize 574928 -containerchecksum b2e57cd38199bead0ee792868144bdfb3186f7c5519c78b1a216c1dac27d177dd21a5488935bad8567c42c7e3e5696e228137a1a28edc11cee35ca861a875c30 -binfiles arch=x86_64-linuxmusl size=362 +containersize 582168 +containerchecksum a182ad0377a91b1ae8971c5a36eb51a6e1dbc929acb291f296d392c7b11a10189110674d6137bee1e67cdafb0e1160cdf921ac38dece45563bb39dc84eba15c8 +binfiles arch=x86_64-linuxmusl size=363 bin/x86_64-linuxmusl/xdvi bin/x86_64-linuxmusl/xdvi-xaw name xdvi.x86_64-solaris category TLCore -revision 58388 +revision 66145 shortdesc x86_64-solaris files of xdvi -containersize 548760 -containerchecksum 39fd8daf54e606c428d27f8553b98c9da82b656f4758e108726eaafc29d08a5a7f4b05f4a4fb7ce1c780c0c54569e15abe0989a101a4993d9966105f9effad45 -binfiles arch=x86_64-solaris size=327 +containersize 559916 +containerchecksum adcdff5a8f88e57bdfa1349e237af5224bf3d8b64a3f854103ffb73ffd040b92e43ce7768ad9b9387f39a1f6c08698684bbcd27b22bc53cc3a14e46c47de7960 +binfiles arch=x86_64-solaris size=333 bin/x86_64-solaris/xdvi bin/x86_64-solaris/xdvi-xaw name xebaposter category Package -revision 42046 +revision 63513 shortdesc Create beautiful scientific Persian/Latin posters using TikZ relocated 1 longdesc This package is designed for making beautiful scientific @@ -334497,32 +349506,37 @@ longdesc and Reinhold Kainhofer available at longdesc http://www.brian-amberg.de/uni/poster/. baposter's users should longdesc be able to compile their poster using xebaposter (instead of longdesc baposter) without any problem. -containersize 12268 -containerchecksum cc264905da875732a3bad46daa31a1f5595e3676ff4d5570554caea40dfd383eac8e9a05121e2211294749770e50fb4d80ca6e735421eb7ca295a10bc666ec3e -doccontainersize 318872 -doccontainerchecksum 9bf0315e6fa502e0de606bb16c6575997314619f10a8aba312d8062be5f1edf4ba037eff7c23948ba7800bc2abf2fa300b8609287558a0ad6c59d63095b20045 -docfiles size=163 +containersize 10092 +containerchecksum c12da79ef06b07aaaa361fcc474da416bfabe898095eef7bdb9ea80efddc8051735b3cb4c86eeb052bb906b3fc96d3e3ea10b23e0bf00bc0aefa80433d6e6ae0 +doccontainersize 503972 +doccontainerchecksum c1018a8009d360ea411fd816719844af3e13b429135e533c2c033898f763f010f281ac7cca9c41572eaf1d5f4a9c4a837e4f0651aa03c140c2285dd3f087a7ba +docfiles size=255 RELOC/doc/latex/xebaposter/README details="Readme" RELOC/doc/latex/xebaposter/images/docs-boxshape.pdf RELOC/doc/latex/xebaposter/images/docs-headerborder.pdf RELOC/doc/latex/xebaposter/images/docs-headershape.pdf RELOC/doc/latex/xebaposter/images/docs-shade.pdf + RELOC/doc/latex/xebaposter/images/fig1.pdf + RELOC/doc/latex/xebaposter/images/fig2.png 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.pdf details="Example of use (Persian)" language="fa" RELOC/doc/latex/xebaposter/poster-fa.tex - RELOC/doc/latex/xebaposter/xebaposter-doc.pdf details="Package documentation" + RELOC/doc/latex/xebaposter/poster.pdf details="Example of use (English)" + RELOC/doc/latex/xebaposter/poster.tex + RELOC/doc/latex/xebaposter/xebaposter-doc.pdf details="Package documentation" language="fa" RELOC/doc/latex/xebaposter/xebaposter-doc.tex -runfiles size=14 +runfiles size=13 RELOC/tex/latex/xebaposter/xebaposter.cls +catalogue-contact-bugs https://github.com/javadr/xebaposter/issues catalogue-ctan /graphics/pgf/contrib/xebaposter catalogue-license lppl1.3 catalogue-topics poster class pgf-tikz -catalogue-version 2.51 +catalogue-version 2.53 name xechangebar category Package @@ -334550,18 +349564,19 @@ catalogue-version 1.0 name xecjk category Package -revision 56711 +revision 64059 shortdesc Support for CJK documents in XeLaTeX relocated 1 longdesc A LaTeX package for typesetting CJK documents in the way users longdesc have become used to, in the CJK package. The package requires a longdesc current version of xtemplate (and hence of the current LaTeX3 longdesc development environment). -containersize 220088 -containerchecksum 6a318c27555cd58be7f3f8893ef4345f37b619cab2088a0ce5627000eb8375724a1e3e8df741cff2558143ad58a3d336d67aac4ff2dd8ca226b223ec103f9d3d -doccontainersize 1542972 -doccontainerchecksum 72446201ddef073b1b37686ecd0ff7569db34d3240b549b5e9ac2c5e6fbcd7e64a070afdc6ee40e83a4d95172cce37da092e463e4c55e5f293b92c39cd4817a3 -docfiles size=447 +depend ctex +containersize 221848 +containerchecksum 3382b181053c76e58ba3f77b195765d83e5515a48b0c73580fc19305bd395de8d19b98be3494da8201b0a22a851a53c82dda14beb54a545b652cd0bd5719af67 +doccontainersize 1622808 +doccontainerchecksum b2dd0caf3317d708cc001b5aba57979f86eaa20d9d38d360650b45fbb683603e2075658a0c0a9c0631c81ea06ecac27694c45df47f053d9e7440901d66280295 +docfiles size=428 RELOC/doc/xelatex/xecjk/README.md details="Readme" RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKecglue.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKfntef.tex @@ -334575,13 +349590,11 @@ docfiles size=447 RELOC/doc/xelatex/xecjk/example/xeCJK-example-subCJKblock.tex RELOC/doc/xelatex/xecjk/example/xeCJK-example-verbatim.tex RELOC/doc/xelatex/xecjk/xeCJK.pdf details="Package documentation (Chinese)" language="zh" - RELOC/doc/xelatex/xecjk/xunicode-combine-marks.tex - RELOC/doc/xelatex/xecjk/xunicode-commands.tex RELOC/doc/xelatex/xecjk/xunicode-symbols.pdf RELOC/doc/xelatex/xecjk/xunicode-symbols.tex -srccontainersize 89092 -srccontainerchecksum 32c1905ffe53dca84509cf51fd4f2b2eff1ca1d03e97bc1f03009d236e476f8d8573ef3267e6466eb63e18b70207ba62558afcd1a64d9a1af79a7a6cfe5c050f -srcfiles size=128 +srccontainersize 90040 +srccontainerchecksum 07fe51d62358a376d2f3cc2774cf606bd4e9f8b3bd3fb202427f34c3c15b004fed5985f7fe776b3529a83ea4aa3e3e176311e14bb0a02cf055eb501a3f474839 +srcfiles size=129 RELOC/source/xelatex/xecjk/xeCJK.dtx RELOC/source/xelatex/xecjk/xeCJK.ins runfiles size=179 @@ -334606,7 +349619,7 @@ catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/xetex/latex/xecjk catalogue-license lppl1.3c catalogue-topics chinese japanese korean xetex expl3 -catalogue-version 3.8.6 +catalogue-version 3.9.1 name xecolor category Package @@ -334775,7 +349788,7 @@ catalogue-version 0.3 name xelatex-dev category TLCore -revision 58842 +revision 62145 depend atbegshi depend atveryend depend babel @@ -334796,8 +349809,8 @@ depend unicode-data depend xelatex-dev.ARCH depend xetex execute AddFormat name=xelatex-dev engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,latex-base-dev,latex-firstaid-dev,lm -containersize 488 -containerchecksum 9b8998710f85dc6f685cf3b423f34b08d0945c90e5f94bca141e40248acc641d6a687d39e91cddaca12aa51475fd4120cc482650b7536662cf3d9f07d3409680 +containersize 484 +containerchecksum 088c917758f727ba08b8571d302c93f0b14fc15ca6dcb0ef7a89df4ba144c508d8d42265cc6b1915707329b64aa1d1030ed0b5513987fbd4437d0a58a232b5db name xelatex-dev.aarch64-linux category TLCore @@ -334835,15 +349848,6 @@ containerchecksum 53b5b73257dc7ed821fd1054efa74f4c3c6121bcb13801fb0239925b99680d binfiles arch=armhf-linux size=1 bin/armhf-linux/xelatex-dev -name xelatex-dev.i386-cygwin -category TLCore -revision 54026 -shortdesc i386-cygwin files of xelatex-dev -containersize 328 -containerchecksum 8fa9d52e489dae89d68bf2ce5b253e489d579b43b9d9e6acf6c72889a1cfdd5430895edecd02540b8a3491786a89a21755fca075690bd03428e3dfe6742665d6 -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/xelatex-dev - name xelatex-dev.i386-freebsd category TLCore revision 53999 @@ -334889,14 +349893,14 @@ containerchecksum 40e6e2cc52a419d04bf9ace34ee245ed6f42fb965c541a61a8b125ba13bb06 binfiles arch=universal-darwin size=1 bin/universal-darwin/xelatex-dev -name xelatex-dev.win32 +name xelatex-dev.windows category TLCore -revision 57883 -shortdesc win32 files of xelatex-dev -containersize 872 -containerchecksum 0157319cf3b10db32a12567c7501d9ca751558f29801b5b40b5085d2d9c4ce6ac85fc739132df269e762b8358987ab671952a2913403013475400e4379f7aacb -binfiles arch=win32 size=1 - bin/win32/xelatex-dev.exe +revision 65891 +shortdesc windows files of xelatex-dev +containersize 2340 +containerchecksum 06c88d449989d83f39950308f5bbc65419d670fd834074fc54425105d0fbc758b06da969c1153f328330e1b58c5d7d15cce31be04eb738c9cf171f664763de22 +binfiles arch=windows size=2 + bin/windows/xelatex-dev.exe name xelatex-dev.x86_64-cygwin category TLCore @@ -334979,16 +349983,16 @@ catalogue-version 2.0 name xepersian category Package -revision 55194 +revision 64872 shortdesc Persian for LaTeX, using XeTeX relocated 1 longdesc This package provides a convenient interface for typesetting longdesc Persian and English texts in LaTeX, using the XeTeX engine. -containersize 58564 -containerchecksum c5880fe199b5a239ecce8e4370396f4a981a886e8412cfad36032c4d2b7fe9fdc7d6818e14b53ca22be36909f19be7f363b40cd58644231ce015a627bd65a48f -doccontainersize 987500 -doccontainerchecksum 395bdd506072a2e234bb45f120ad748322f78657fa5c7013097af28688dfc7e58d2a7c865fd2c80592132fa46a02e35f65aa4bbfa752c5fb6b4b829a79a302cf -docfiles size=315 +containersize 60312 +containerchecksum bb9f3e4df9421818ce1e77d72c790c33f0eb11452eba38e48dfc13c7313bccd63cc11b1c3d1aa383f1ca778bfd3f9545eb20d899c980522a255b334a7545d2cd +doccontainersize 1006656 +doccontainerchecksum 3d0b3f8234b01ddcaaa7d808aae2eb48f40a4af15ec87523297b5afa971478eb143338e407a1e7764449bda920ea7bcff0f0894f1e875524b2e44c3b3bb568b5 +docfiles size=320 RELOC/doc/xelatex/xepersian/README details="Readme" RELOC/doc/xelatex/xepersian/dkun-0.3.py RELOC/doc/xelatex/xepersian/dkun-0.4.py @@ -335007,9 +350011,9 @@ docfiles size=315 RELOC/doc/xelatex/xepersian/xepersian-doc.pdf details="Package user documentation" RELOC/doc/xelatex/xepersian/xepersian-logo.tex RELOC/doc/xelatex/xepersian/xepersian.pdf details="Package source documentation" -srccontainersize 74624 -srccontainerchecksum 866a5fb8007fa600c50b343903a306d17e26d5616eb7fc14487ae93005cb7bce1209d382104021cd2b345ea02f2a4b058518454bf797600ad59e8f9254bee8af -srcfiles size=118 +srccontainersize 75476 +srccontainerchecksum 3924d7f779150aae6d0b2a4a2e246f2867142358e21146fcea10e0a82a598511aeca8f30089329a1328a4c8cb6d5c396516c544ce85f6607f734ba9d7759044a +srcfiles size=120 RELOC/source/xelatex/xepersian/xepersian-doc-basics.ltx RELOC/source/xelatex/xepersian/xepersian-doc-boolean.ltx RELOC/source/xelatex/xepersian/xepersian-doc-captions.ltx @@ -335021,7 +350025,9 @@ srcfiles size=118 RELOC/source/xelatex/xepersian/xepersian-doc.ltx RELOC/source/xelatex/xepersian/xepersian.dtx RELOC/source/xelatex/xepersian/xepersian.ins -runfiles size=111 +runfiles size=116 + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text-nonumbers.map + RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text-nonumbers.tec RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.map RELOC/fonts/misc/xetex/fontmapping/xepersian/persian-tex-text.tec RELOC/tex/xelatex/xepersian/algorithm-xepersian.def @@ -335034,6 +350040,8 @@ runfiles size=111 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/beamer-xepersian.def + RELOC/tex/xelatex/xepersian/beamerbasetranslator-xepersian.def RELOC/tex/xelatex/xepersian/bidimoderncv-xepersian.def RELOC/tex/xelatex/xepersian/bidituftesidenote-xepersian.def RELOC/tex/xelatex/xepersian/boek-xepersian.def @@ -335074,24 +350082,26 @@ runfiles size=111 RELOC/tex/xelatex/xepersian/scrbook-xepersian.def RELOC/tex/xelatex/xepersian/scrreprt-xepersian.def RELOC/tex/xelatex/xepersian/soul-xepersian.def - RELOC/tex/xelatex/xepersian/tikz.code-xepersian.def RELOC/tex/xelatex/xepersian/tkz-linknodes-xepersian.def RELOC/tex/xelatex/xepersian/tocloft-xepersian.def + RELOC/tex/xelatex/xepersian/url-xepersian.def RELOC/tex/xelatex/xepersian/varioref-xepersian.def RELOC/tex/xelatex/xepersian/xepersian-localise-commands-xepersian.def RELOC/tex/xelatex/xepersian/xepersian-localise-environments-xepersian.def RELOC/tex/xelatex/xepersian/xepersian-logo.pdf RELOC/tex/xelatex/xepersian/xepersian-magazine.cls - RELOC/tex/xelatex/xepersian/xepersian-mathsdigitspec.sty + RELOC/tex/xelatex/xepersian/xepersian-mathdigitspec.sty RELOC/tex/xelatex/xepersian/xepersian-multiplechoice.sty RELOC/tex/xelatex/xepersian/xepersian-persiancal.sty RELOC/tex/xelatex/xepersian/xepersian.sty -catalogue-contact-bugs https://github.com/persiantex/xepersian/issues -catalogue-contact-repository https://github.com/persiantex/xepersian +catalogue-contact-announce https://github.com/kvafa/xepersian/discussions/categories/announcements +catalogue-contact-bugs https://github.com/kvafa/xepersian/issues +catalogue-contact-repository https://github.com/kvafa/xepersian +catalogue-contact-support https://github.com/kvafa/xepersian/discussions catalogue-ctan /macros/xetex/latex/xepersian catalogue-license lppl1.3c catalogue-topics persian xetex class -catalogue-version 23.1 +catalogue-version 24.8 name xepersian-hm category Package @@ -335209,7 +350219,7 @@ catalogue-version 2.1 name xetex category TLCore -revision 57972 +revision 66203 shortdesc An extended variant of TeX for use with Unicode sources longdesc XeTeX is a TeX typesetting engine using Unicode and supporting longdesc modern font technologies such as OpenType, TrueType or Apple @@ -335247,31 +350257,37 @@ depend xetexconfig execute AddFormat name=xelatex engine=xetex patterns=language.dat options="-etex xelatex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,lm execute AddFormat name=xetex engine=xetex patterns=language.def options="-etex xetex.ini" fmttriggers=cm,hyphen-base,tex-ini-files,unicode-data,etex,plain postaction script file=tlpkg/tlpostcode/xetex.pl -containersize 6988 -containerchecksum dd788efc6e03e11e2dd88d8e63ca2153e936194391d49ce422a757ba1937986cb80faafa71860bf55ef5cbab51b53cd0c85c60dadddd92940802ede301cdefd6 -doccontainersize 616820 -doccontainerchecksum 544a36d94bf2094403806d934a7e0d92062c1b5b1d0efbf4316d9319a1ff95a1d8f7a4a961c63e4a3eb66c9c4a24789e239f958132e5a4f08c3764f44772c8aa -docfiles size=170 +containersize 7784 +containerchecksum fddc7a48405d5ae56b09fab5f180372972fc7fdd10eb19ec8e2b0f6e1e3bc54d2f92512a6954238c21fbdd75425923dcdf115bf16fe35ab3a850363c41ac99e0 +doccontainersize 634692 +doccontainerchecksum 7fda9e0a2e7f4dcd6a1813cf8fe280f7193aa88a77cbc5891b892112950e5d5e7690328e267805c8b9a24dc735e7991065ee3664b1278fa334f83ddf06aee236 +docfiles size=184 + texmf-dist/doc/man/man1/xelatex-unsafe.1 + texmf-dist/doc/man/man1/xelatex-unsafe.man1.pdf texmf-dist/doc/man/man1/xelatex.1 texmf-dist/doc/man/man1/xelatex.man1.pdf + texmf-dist/doc/man/man1/xetex-unsafe.1 + texmf-dist/doc/man/man1/xetex-unsafe.man1.pdf texmf-dist/doc/man/man1/xetex.1 texmf-dist/doc/man/man1/xetex.man1.pdf texmf-dist/doc/xetex/base/NEWS texmf-dist/doc/xetex/base/README texmf-dist/doc/xetex/base/XeTeX-notes.pdf details="About XeTeX" texmf-dist/doc/xetex/base/XeTeX-notes.tex -runfiles size=6 +runfiles size=8 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/texlive-extra/xelatex-unsafe.sh + texmf-dist/scripts/texlive-extra/xetex-unsafe.sh tlpkg/tlpostcode/xetex.pl catalogue-also luatex catalogue-contact-announce https://lists.tug.org/xetex-announce -catalogue-contact-home http://tug.org/xetex +catalogue-contact-home https://tug.org/xetex catalogue-contact-repository https://tug.org/svn/texlive/trunk/Build/source/texk/web2c/xetexdir catalogue-contact-support https://lists.tug.org/xetex -catalogue-license other-free +catalogue-license x11 catalogue-topics engine name xetex-devanagari @@ -335395,134 +350411,145 @@ catalogue-version 0.1 name xetex.aarch64-linux category TLCore -revision 58534 +revision 66237 shortdesc aarch64-linux files of xetex -containersize 7091520 -containerchecksum a71ceb1281e8677a1d56ef51a3317a66584b5cc5f29d91b0855d1161572830fb450feb2ab22d168c118d99a7895e44c6a863f931ddc21558569438062fd89366 -binfiles arch=aarch64-linux size=6795 +containersize 7594128 +containerchecksum a87dabc3e1eec3150fdcbfdc0f88325b6336a8960cfbfd127d32d14c556b4ae691bcfbb1ef47e3b44f574786c1aa0fec3998e5ebc9ff358717742f8d9f3b0f59 +binfiles arch=aarch64-linux size=7340 bin/aarch64-linux/teckit_compile bin/aarch64-linux/xelatex + bin/aarch64-linux/xelatex-unsafe bin/aarch64-linux/xetex + bin/aarch64-linux/xetex-unsafe name xetex.amd64-freebsd category TLCore -revision 58388 +revision 66084 shortdesc amd64-freebsd files of xetex -containersize 6898876 -containerchecksum 822053017863af807843e1eabbe05c135f3003e070e733e64b2669efea5084ddc7edbe914e97e6df2433e277e9f10a28f051f6694cab2f283dbba79eddad3ae8 -binfiles arch=amd64-freebsd size=6200 +containersize 7491840 +containerchecksum 78a54186cf36aea4292d9e4d6a56075ae7b100be77218cee5a1b93dd3ef029b5d4142bdb7c8b0776a4d81d46b8d10749620326fa84a88bfcae5bc6e7b90938c8 +binfiles arch=amd64-freebsd size=6731 bin/amd64-freebsd/teckit_compile bin/amd64-freebsd/xelatex + bin/amd64-freebsd/xelatex-unsafe bin/amd64-freebsd/xetex + bin/amd64-freebsd/xetex-unsafe name xetex.amd64-netbsd category TLCore -revision 58386 +revision 66083 shortdesc amd64-netbsd files of xetex -containersize 7104164 -containerchecksum 4fb0c0a8ec45165c8eded4f4ae1242684e644cabd424b7833009015768729c5ca56e95dc1739c10cc86dfa4b3d4998fe14f9206b5dca623d03abdf6dbfdd03d2 -binfiles arch=amd64-netbsd size=7236 +containersize 7626116 +containerchecksum c81d660071a9f273f351ff477be3fd03a140fa0405e5363324d67dd2fc91c713f71bf200c5d2c9bbf941e74526971f8f0e9a7c500da9abdbec7b73e3ed249850 +binfiles arch=amd64-netbsd size=7858 bin/amd64-netbsd/teckit_compile bin/amd64-netbsd/xelatex + bin/amd64-netbsd/xelatex-unsafe bin/amd64-netbsd/xetex + bin/amd64-netbsd/xetex-unsafe name xetex.armhf-linux category TLCore -revision 58428 +revision 66237 shortdesc armhf-linux files of xetex -containersize 6764004 -containerchecksum b16d8ba017e3bd577ee227e5d04eb7f9535cb9c89c57bd5ed5f4e79dc02df89a8683fd85fd010cd8f16f908e91183d324f183b5b358e0f8cc1d160c3b84e2655 -binfiles arch=armhf-linux size=6227 +containersize 7253540 +containerchecksum 477a2b2fd9278ddffe5b915d241f4bab5862c2a4f6037fb4f38f50841f942533d0cec0ea4ab720fd2a30ca6eb4fa712414006f0fedee24a7c321a5a179b76886 +binfiles arch=armhf-linux size=6759 bin/armhf-linux/teckit_compile bin/armhf-linux/xelatex + bin/armhf-linux/xelatex-unsafe bin/armhf-linux/xetex - -name xetex.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of xetex -containersize 7003928 -containerchecksum 2cc649bd7b91c5c999ebbddabd5ba8c53a57d8bade90bcc1ed470c8f096aba571c81dffcd6f89eef6b486ba974b0f990433c925ebd2f932f4e769267e5560b5f -binfiles arch=i386-cygwin size=6479 - bin/i386-cygwin/teckit_compile.exe - bin/i386-cygwin/xelatex - bin/i386-cygwin/xetex.exe + bin/armhf-linux/xetex-unsafe name xetex.i386-freebsd category TLCore -revision 58388 +revision 66084 shortdesc i386-freebsd files of xetex -containersize 6722828 -containerchecksum ab6983790e1a214f29f48590cde27ed43d3b35cd9f21a1a6f46f561577f9404dd0ff0620c0b21a1a8dc1071503c253dba514325fa8164db5d6eedca790759193 -binfiles arch=i386-freebsd size=6019 +containersize 7302172 +containerchecksum 22e1482668151bb501f8b07a8973bd9ef953dd2e7245808275fb7a0177b9f431faece69ae232e5077273a2240432e0371b389974c124a1dc0acc92c62f37b47e +binfiles arch=i386-freebsd size=6538 bin/i386-freebsd/teckit_compile bin/i386-freebsd/xelatex + bin/i386-freebsd/xelatex-unsafe bin/i386-freebsd/xetex + bin/i386-freebsd/xetex-unsafe name xetex.i386-linux category TLCore -revision 58378 +revision 66084 shortdesc i386-linux files of xetex -containersize 7117852 -containerchecksum 8edf35290897332c13794073e2ad2dbe2b4064a9533c3b51b2af93802c3a9228308b671e9d7c1405abdfb33e8a1dbc7beefe15bb21b71c26f9b7941c9d3933c7 -binfiles arch=i386-linux size=6380 +containersize 7781588 +containerchecksum a2756da62986697edc359bccce6b8bdac0bb0311adf24f3a066fbcb2e134ea82cef0f20b5f15541450601adc26a66a24e046e017a311cadf8286b56bc071e2a6 +binfiles arch=i386-linux size=7119 bin/i386-linux/teckit_compile bin/i386-linux/xelatex + bin/i386-linux/xelatex-unsafe bin/i386-linux/xetex + bin/i386-linux/xetex-unsafe name xetex.i386-netbsd category TLCore -revision 58386 +revision 66083 shortdesc i386-netbsd files of xetex -containersize 7017628 -containerchecksum 07bc9d484fbd4d7801415701d69dad3b203b09f71d67b995f07f1bd0a5fa654ad5186c9935928dc83aa18184f742cc8bf7ef1d863f511eb8326d36d9fbe70a88 -binfiles arch=i386-netbsd size=7033 +containersize 7517124 +containerchecksum 2cf52e5bd4f71d0bcc4198a8bd32ca15858ad3e94765a9b1fe2f0e1bbf2165a905e37a9d64cda67d7c1dc5bf491ff3dba9dbc77f7fe4c066368330e1be7a5c81 +binfiles arch=i386-netbsd size=7632 bin/i386-netbsd/teckit_compile bin/i386-netbsd/xelatex + bin/i386-netbsd/xelatex-unsafe bin/i386-netbsd/xetex + bin/i386-netbsd/xetex-unsafe name xetex.i386-solaris category TLCore -revision 58388 +revision 66145 shortdesc i386-solaris files of xetex -containersize 7303724 -containerchecksum a9d9e4e6ee68e9f463c385f82d82412949b98c7c1bb01f57b8884e8fa8f89281346e452e9fac80eef58e0fe347484b7236805dc18a804669ca4089e7c82fee46 -binfiles arch=i386-solaris size=6736 +containersize 7830000 +containerchecksum a143c71d7718ead7e281c364255da82ebd9fc2ab5be96cd5b1ef3e10abd9eb28a32e3316e31e64ce222b05a67943527933a046fbcc17a9ac97434f726e8f37bb +binfiles arch=i386-solaris size=7308 bin/i386-solaris/teckit_compile bin/i386-solaris/xelatex + bin/i386-solaris/xelatex-unsafe bin/i386-solaris/xetex + bin/i386-solaris/xetex-unsafe name xetex.universal-darwin category TLCore -revision 58418 +revision 66107 shortdesc universal-darwin files of xetex -containersize 13815156 -containerchecksum 5bd9f0e0ffe395f0469b7b4be5415581c4fbdca8db5fe89025ed1f3b6d72ddcaff71a48f128dbbf1078067ca3250375416d4a1cc60271c521d34120c2782135a -binfiles arch=universal-darwin size=12406 +containersize 14799216 +containerchecksum acf99a69811fe5a0ad3886cbf731db1deb5ae2e4c5941106d07eaea635431434d627aef83792da7f949330f366fb4e813d7571a76cf05277f55ceb5517b6b070 +binfiles arch=universal-darwin size=13453 bin/universal-darwin/teckit_compile bin/universal-darwin/xelatex + bin/universal-darwin/xelatex-unsafe bin/universal-darwin/xetex - -name xetex.win32 -category TLCore -revision 59028 -shortdesc win32 files of xetex -containersize 9412544 -containerchecksum 1cbff9b1a70882c0a5854a13a9c894251bdc2be1790f6f0de7d063bcd9b41cea519356dfdd9ea021a75c249fe33608517ec924d09701a80328d34bfdea843633 -binfiles arch=win32 size=10120 - bin/win32/fc-cache.exe - bin/win32/fc-cat.exe - bin/win32/fc-list.exe - bin/win32/fc-match.exe - bin/win32/fc-pattern.exe - bin/win32/fc-query.exe - bin/win32/fc-scan.exe - bin/win32/fc-validate.exe - bin/win32/icudt68.dll - bin/win32/teckit_compile.exe - bin/win32/xelatex.exe - bin/win32/xetex.dll - bin/win32/xetex.exe + bin/universal-darwin/xetex-unsafe + +name xetex.windows +category TLCore +revision 66043 +shortdesc windows files of xetex +containersize 10401316 +containerchecksum a47e8978c77770b510a57f74c0f11fe146f3a8b5da2cfb6dec8cdd60ab79990943ac0fb2a978274286b35186bd9877c6386e77753dedc460c5805dd6e6604272 +binfiles arch=windows size=11519 + bin/windows/fc-cache.exe + bin/windows/fc-cat.exe + bin/windows/fc-list.exe + bin/windows/fc-match.exe + bin/windows/fc-pattern.exe + bin/windows/fc-query.exe + bin/windows/fc-scan.exe + bin/windows/fc-validate.exe + bin/windows/icudt72.dll + bin/windows/teckit_compile.exe + bin/windows/xelatex-unsafe.bat + bin/windows/xelatex-unsafe.exe + bin/windows/xelatex.exe + bin/windows/xetex-unsafe.bat + bin/windows/xetex-unsafe.exe + bin/windows/xetex.dll + bin/windows/xetex.exe tlpkg/tlpostcode/xetex/cache/readme.txt tlpkg/tlpostcode/xetex/conf/conf.d/51-local.conf tlpkg/tlpostcode/xetex/conf/fonts.conf @@ -335530,58 +350557,68 @@ binfiles arch=win32 size=10120 name xetex.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of xetex -containersize 7024160 -containerchecksum d82898dceee2caeafa76df40dc7b20585b7e4bfe56830256ff867585f938695b5cd9e6a7616d700ac54530547f410bb57863dbafebd9855745092fe434a5c55d -binfiles arch=x86_64-cygwin size=6461 +containersize 7518740 +containerchecksum 0c2022e15348d590ffd7bff8120a6a51fc55e6be0f462e8478eadacf02a0a3fed09b443c50cd54e00ea8f1829d82e8d3589bcae5b7bba0f0b07731a6fe1e3cff +binfiles arch=x86_64-cygwin size=7006 bin/x86_64-cygwin/teckit_compile.exe bin/x86_64-cygwin/xelatex + bin/x86_64-cygwin/xelatex-unsafe + bin/x86_64-cygwin/xetex-unsafe bin/x86_64-cygwin/xetex.exe name xetex.x86_64-darwinlegacy category TLCore -revision 58388 +revision 66084 shortdesc x86_64-darwinlegacy files of xetex -containersize 6660724 -containerchecksum 1231de4591f2507a547937a675ab619abf852e3a6e01ed18268832ba6ffb108593e6d550ee22da4f0e42263301791b0a3dca7ca65b60f0109c9b7b7890df21de -binfiles arch=x86_64-darwinlegacy size=5992 +containersize 7130820 +containerchecksum 5f8ac726c8f958cff5949708b3f87bca40f0545217c4818c4a53cc687d3fa90dcc44cfb2397c0fe2663f1caeca80cf318a1c38a197f8489defdff75501a87be4 +binfiles arch=x86_64-darwinlegacy size=6512 bin/x86_64-darwinlegacy/teckit_compile bin/x86_64-darwinlegacy/xelatex + bin/x86_64-darwinlegacy/xelatex-unsafe bin/x86_64-darwinlegacy/xetex + bin/x86_64-darwinlegacy/xetex-unsafe name xetex.x86_64-linux category TLCore -revision 58378 +revision 66084 shortdesc x86_64-linux files of xetex -containersize 7045776 -containerchecksum 5c8b1a56e350be977464b542c163fc919bf8b1a7ed816d70d41fdef1705a616688674752205d57de0ce72351f75cc642cc3c1f02a23ab184581abcc9ee01bf21 -binfiles arch=x86_64-linux size=6370 +containersize 7690068 +containerchecksum f9b2c1f075e3818475e2efdf3cfb49e902f48b22e01c78c7e7d8963639198f310f828a38f0589bf2bed8137ddfa0a53ba7c3e39900f93f13414429ebb7c4352a +binfiles arch=x86_64-linux size=7093 bin/x86_64-linux/teckit_compile bin/x86_64-linux/xelatex + bin/x86_64-linux/xelatex-unsafe bin/x86_64-linux/xetex + bin/x86_64-linux/xetex-unsafe name xetex.x86_64-linuxmusl category TLCore -revision 58378 +revision 66084 shortdesc x86_64-linuxmusl files of xetex -containersize 7145000 -containerchecksum de120d9d02847f4e7e005aa3781c7967516d4a480b01f7cd899bd66d7509d4290871fa1ba91b082231d50b3def8db51271816e797a22d0a3e78557a9f79d6f6d -binfiles arch=x86_64-linuxmusl size=6576 +containersize 7769732 +containerchecksum efad29cace7feb5240016ad2ddad2e1c715be6a8f60447c320acb48abca8dd209c6882f3f2683bebda73dbb2d4fded89ea4175ee75d0191f7fcef313c08c02a5 +binfiles arch=x86_64-linuxmusl size=7256 bin/x86_64-linuxmusl/teckit_compile bin/x86_64-linuxmusl/xelatex + bin/x86_64-linuxmusl/xelatex-unsafe bin/x86_64-linuxmusl/xetex + bin/x86_64-linuxmusl/xetex-unsafe name xetex.x86_64-solaris category TLCore -revision 58388 +revision 66145 shortdesc x86_64-solaris files of xetex -containersize 7420212 -containerchecksum 31303ab6c2502e64839dda8b597dedadc549adbc41f89e1614e0b670a4f7ce32d40dd5dc29fab24908a8871f8b73c7b8b5918133603cd960ca05657f2999574d -binfiles arch=x86_64-solaris size=6956 +containersize 7947904 +containerchecksum 066a36d02fa2b869a5478c4fae9e9ac015b9d9033e44a2a606d12ad20b04c8bd4d3b9cc771aba41939d36407522d5e77ee145cd0d72efb281a1db227fc605f09 +binfiles arch=x86_64-solaris size=7512 bin/x86_64-solaris/teckit_compile bin/x86_64-solaris/xelatex + bin/x86_64-solaris/xelatex-unsafe bin/x86_64-solaris/xetex + bin/x86_64-solaris/xetex-unsafe name xetexconfig category Package @@ -335616,7 +350653,7 @@ catalogue-topics font-supp xetex name xetexko category Package -revision 58929 +revision 64894 shortdesc Typeset Korean with Xe(La)TeX relocated 1 longdesc The package supports typesetting Korean documents (including @@ -335624,11 +350661,11 @@ longdesc old Hangul texts), using XeTeX. It enhances the existing longdesc support, in XeTeX, providing features that provide quality longdesc typesetting. This package requires the cjk-ko package for its longdesc full functionality. -containersize 53760 -containerchecksum 1fa1a9211d53d85d7e6e7f2dd7ae4a9f818640b3b5269a751e982297eff5e0e5164501e14fa56508ee4f44c3889d1853a8496d65ac17870d7f355103199d473d -doccontainersize 259916 -doccontainerchecksum 99985c729fe5496b763cb9f6a894420780d0c7c6f45ec4b77a40cdb3a3c3b1296460a0a548621c265233c1cfe0dfdb1171dc6c2ccd1d7a2e61f4c753cd2037d3 -docfiles size=74 +containersize 54432 +containerchecksum ec745c3a58f9ac782cc3ecf1be995b8227a92436bf6db7549a4e14a7d92bbee8d2f47a12117ebc64594d7923675860e6deafd9bdae98c3ba1845e673172abdf5 +doccontainersize 270800 +doccontainerchecksum 9aee4d049e3073542c76be2c399afaaed5475616ceaa074c6a60705653ac48dc770f43e86e102b359b89c53e529f3e354298fa9a5f1e14c487800c0c306d7270 +docfiles size=77 RELOC/doc/xetex/xetexko/ChangeLog RELOC/doc/xetex/xetexko/README details="Readme" RELOC/doc/xetex/xetexko/xetexko-doc.pdf details="Package documentation" language="ko" @@ -335647,20 +350684,20 @@ catalogue-contact-repository https://github.com/dohyunkim/xetexko catalogue-ctan /macros/xetex/generic/xetexko catalogue-license lppl1.3c catalogue-topics korean xetex -catalogue-version 3.3 +catalogue-version 4.2 name xetexref category Package -revision 56291 +revision 65987 shortdesc Reference documentation of XeTeX relocated 1 longdesc The package comprises reference documentation for XeTeX longdesc detailing its extended features. containersize 444 -containerchecksum 5d2610deed12422bdcd7e177c339d3aa701887ff12bab214ce0b67f87abd70c569a0aab85f59f877399d440c75c712a4ec8ecf12f6059152d0d0c70f40f2b1f7 -doccontainersize 157316 -doccontainerchecksum 24d62e618217ec5454bd23662711e10637a7f67cc11880288bfcf301ab89ab22d87a6d65af8c37c99d924a4dc77b95308ef38eb8ad6bb81cf2900cbd3ebeeef8 -docfiles size=48 +containerchecksum d643140401e2735c13c7f01226b4a81fe96fed07db6b5ef64aa8b8f5a9273c4ad2f5f29f48281201bf4f3dd3cd976f0aeded40e8a2239876a7502dbd1514f07a +doccontainersize 161116 +doccontainerchecksum 147e5789ed23ac614318d99627f5ad4c5cf8a4cff716a78f58050aa967a80fd21b76695980757b93a3ca6cf1f2e67cc08017678b3522c13a0927a95575de43d7 +docfiles size=50 RELOC/doc/xetex/xetexref/README.txt details="Readme" RELOC/doc/xetex/xetexref/xetex-reference.pdf details="The document itself" RELOC/doc/xetex/xetexref/xetex-reference.tex @@ -335762,39 +350799,41 @@ catalogue-version 1.05 name xgreek category Package -revision 46662 -shortdesc XeLaTeX package for typesetting Greek language documents (beta release) +revision 64300 +shortdesc Greek Language Support for XeLaTeX and LuaLaTeX 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 Greek language documents using XeLaTeX or LuaLaTeX. It is +longdesc released in the hope that people will use it and spot errors, +longdesc bugs, features so to improve it. Practically, it provides all +longdesc the 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{} to activate the hyphenation -longdesc patterns of the language This, however, can be done only -longdesc if the format file has not been built with the babel mechanism. -containersize 4752 -containerchecksum 1f2dfaeb88040a1b58b60c0ccb84e7417d4211491d34c17c9302b7cf388775ed729f9135b76e43ea276a50a665efeaf19884535c187bc1c0cd931c2e79b8aa19 -doccontainersize 67772 -doccontainerchecksum 8258ef4bca146a2ea8f42a235f151924156f116d2d3feb4d1974da1b1afd395858dd5d53d2343d748f0d60afffc8967e9f316026e07bdc2215d145334ec90e66 -docfiles size=18 - RELOC/doc/xelatex/xgreek/README details="README file" - RELOC/doc/xelatex/xgreek/xgreek.pdf details="Package documentation" -srccontainersize 9864 -srccontainerchecksum a982e91c9fd68b583ed3d28c841e91e45ba83a9b961cf710cea2a025c69f3e4c98124eb3d5ef45062347ae8b48c6ad54ef5c7631fffa1be5cb9705842ca23987 -srcfiles size=12 - RELOC/source/xelatex/xgreek/xgreek.dtx - RELOC/source/xelatex/xgreek/xgreek.ins -runfiles size=7 - RELOC/tex/xelatex/xgreek/xgreek.sty -catalogue-ctan /macros/xetex/latex/xgreek -catalogue-license lppl1.3 +longdesc The command \setlanguage{} activates the hyphenation +longdesc patterns of the language . This, however, can only be +longdesc done if the format file has not been built with the babel +longdesc mechanism. +containersize 5224 +containerchecksum 96b0afffce870b5c3cdda072a23d20810db89607fba64172cb329fb10a598693d870132f26ad1c04e0b394bc1181f9dca0c966c70d07e8c17b3e3ada5e2eeec6 +doccontainersize 75372 +doccontainerchecksum f4543d8a1603dca2b8f4dd9db97a8d887ba0b8f772284ac81e772b30e641f0900abff116441ead7c571ba7f60ed6999f694596d0e8e4763a3d1ed62f07a056d9 +docfiles size=20 + RELOC/doc/latex/xgreek/README details="README file" + RELOC/doc/latex/xgreek/xgreek.pdf details="Package documentation" +srccontainersize 10668 +srccontainerchecksum cb9546b39edb451166ef0e931a0b4ebd571fff9a4e337e0f11d7a2e58ea92e4c82aaeb8b981a88576f9e83c7114c8233763552f3e1bc1c4a7231087b1feffbc1 +srcfiles size=13 + RELOC/source/latex/xgreek/xgreek.dtx + RELOC/source/latex/xgreek/xgreek.ins +runfiles size=8 + RELOC/tex/latex/xgreek/xelistings.sty + RELOC/tex/latex/xgreek/xgreek.sty +catalogue-ctan /macros/unicodetex/latex/xgreek +catalogue-license lppl1.3c catalogue-topics greek xetex -catalogue-version 3.0.1 +catalogue-version 3.2.0 name xhfill category Package @@ -335891,17 +350930,16 @@ catalogue-topics frivolous name xindex category Package -revision 56295 +revision 65597 shortdesc Unicode compatible index generation longdesc This package provides a unicode compatible index programm for -longdesc LaTeX. It needs Lua 5.3, which will be included in at least -longdesc LuaTeX 1.09 (TeX Live 2019). +longdesc LaTeX. depend xindex.ARCH -containersize 31564 -containerchecksum e8a858e3fe056519eed3f85dc21291881fdbf057ece76d503fd863f66c51331d689fabbb7a1ba3728c3010c45a9f0663fb75db2b609716ee5dd515067bea07a5 -doccontainersize 472592 -doccontainerchecksum f755500e75fa45d14110da45bd43d10f4cf170cc907af7743673a38e1c823612fce9131eb16a03e59a1a821b1e4b3580e6a2e6a68e759f53f9daea4f88e4f09e -docfiles size=200 +containersize 35128 +containerchecksum c88e7d602c741db871ab6ec5895fee5455b954c4487d57be812b172369c5d973a8fad4b9fdcb60179562d04ba4105ecfc1228ae7d414a7d90df9a9723306de07 +doccontainersize 536352 +doccontainerchecksum 3d36e5f8811c6df621717a7077bb49bec137a5bbc3c6593078644811d915c720d41c2e1a6e5be6e3af95ddc64879582061f7aba6113e2b3a1ee5d7b3f63064d0 +docfiles size=228 texmf-dist/doc/lualatex/xindex/CHANGELOG texmf-dist/doc/lualatex/xindex/Makefile texmf-dist/doc/lualatex/xindex/README.md details="Readme" @@ -335937,30 +350975,39 @@ docfiles size=200 texmf-dist/doc/lualatex/xindex/tests/demo3.ind texmf-dist/doc/lualatex/xindex/tests/demo3.pdf texmf-dist/doc/lualatex/xindex/tests/demo3.tex + texmf-dist/doc/lualatex/xindex/tests/demo4.idx + texmf-dist/doc/lualatex/xindex/tests/demo4.ind + texmf-dist/doc/lualatex/xindex/tests/demo4.pdf + texmf-dist/doc/lualatex/xindex/tests/demo4.tex texmf-dist/doc/lualatex/xindex/tests/runTests.sh texmf-dist/doc/lualatex/xindex/xindex-doc.pdf details="Package documentation" texmf-dist/doc/lualatex/xindex/xindex-doc.tex -runfiles size=52 +runfiles size=60 texmf-dist/scripts/xindex/xindex.lua texmf-dist/tex/latex/xindex/xindex.sty + texmf-dist/tex/lualatex/xindex/xindex-AU.lua texmf-dist/tex/lualatex/xindex/xindex-DIN2.lua texmf-dist/tex/lualatex/xindex/xindex-HAdW-eKO.lua + texmf-dist/tex/lualatex/xindex/xindex-RU.lua texmf-dist/tex/lualatex/xindex/xindex-base.lua + texmf-dist/tex/lualatex/xindex/xindex-baselib.lua texmf-dist/tex/lualatex/xindex/xindex-cfg-common.lua texmf-dist/tex/lualatex/xindex/xindex-cfg-uca.lua texmf-dist/tex/lualatex/xindex/xindex-cfg.lua + texmf-dist/tex/lualatex/xindex/xindex-danteedition.lua texmf-dist/tex/lualatex/xindex/xindex-dtk.lua texmf-dist/tex/lualatex/xindex/xindex-lapp.lua texmf-dist/tex/lualatex/xindex/xindex-lib.lua texmf-dist/tex/lualatex/xindex/xindex-norsk.lua texmf-dist/tex/lualatex/xindex/xindex-pretty.lua texmf-dist/tex/lualatex/xindex/xindex-unicode.lua + texmf-dist/tex/lualatex/xindex/xindex-yannis.lua catalogue-contact-bugs https://gitlab.com/hvoss49/xindex/issues catalogue-contact-repository https://gitlab.com/hvoss49/xindex catalogue-ctan /indexing/xindex catalogue-license lppl1.3 catalogue-topics index use-lua -catalogue-version 0.28 +catalogue-version 0.47 name xindex.aarch64-linux category Package @@ -335998,15 +351045,6 @@ containerchecksum 1c85abaa55f7c1e83932d6a06a49777db7c99b013b5a836ded054d0fef28e6 binfiles arch=armhf-linux size=1 bin/armhf-linux/xindex -name xindex.i386-cygwin -category Package -revision 49312 -shortdesc i386-cygwin files of xindex -containersize 340 -containerchecksum f40aec88e1a8c45f42ff2e2e1f637f7bdd831c7f8573a928970b22b50bf3c3bebfa7b11b28e242b6aa1fd8054d89cedd5fdffbdde4ebe95fdfbcfd48d113a62e -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/xindex - name xindex.i386-freebsd category Package revision 49312 @@ -336052,14 +351090,14 @@ containerchecksum 5f994c94dae4463df91e0036696755aeaf6f6d4bc340d886aede164fa1e27d binfiles arch=universal-darwin size=1 bin/universal-darwin/xindex -name xindex.win32 +name xindex.windows category Package -revision 49312 -shortdesc win32 files of xindex -containersize 680 -containerchecksum 38898dc97d7f7d57c31cda3a074065b87f4d68483ac1afee996caa24fb8d88650eb5ecf36bf432a73faabac665ed75bcbc8708bda4bcc36b688614d8459a230a -binfiles arch=win32 size=1 - bin/win32/xindex.exe +revision 65891 +shortdesc windows files of xindex +containersize 2304 +containerchecksum b959caf430da59f3b45e1550b4dfeb40aa1d8ddc960cc2cfdb6c09522416beffe10848aab0bab7fbd16a5369f68e4392f8d1851cc7d99482eb9e69dec63d2316 +binfiles arch=windows size=2 + bin/windows/xindex.exe name xindex.x86_64-cygwin category Package @@ -336108,7 +351146,7 @@ binfiles arch=x86_64-solaris size=1 name xindy category TLCore -revision 59003 +revision 65958 shortdesc A general-purpose index processor longdesc Xindy was developed after an impasse had been encountered in longdesc the attempt to complete internationalisation of makeindex. @@ -336117,10 +351155,10 @@ longdesc using (La)TeX, Nroff family and SGML-based languages. Xindy is longdesc highly configurable, both in markup terms and in terms of the longdesc collating order of the text being processed. depend xindy.ARCH -containersize 143100 -containerchecksum a76915adcdabe35c67c1176e0e89505f45faed119e787020c2e9fdb3c405d7dd2deb8b49324589ac11ccfbba50323f52530c99a02e386c3067ed824974c46185 +containersize 143636 +containerchecksum 9b7fe97c14e3cf30d1e6743c2d7b4460e8bca901ba3ee216001f1518ff4d834fb3d9b67085825a6e152c6acde544c41cf16d56e609016caab89a594305a21599 doccontainersize 461176 -doccontainerchecksum 9811baa00a26895231bb18e2e77fd481763a268af6335e1fa195b62f71b29fc0780cc806ab844d91d309e08bfc1b5063f84c01b40035d62fcd01c2fdf07eb7c8 +doccontainerchecksum d0dacd7cfa169b03b7fa9d0b351133582577c3908323f501d7bca7b0165159b72c34f62abfd73b97065baef8cf179b292e654759f3b3e324112623539e5acfd6 docfiles size=188 texmf-dist/doc/man/man1/tex2xindy.1 texmf-dist/doc/man/man1/tex2xindy.man1.pdf @@ -336637,11 +351675,11 @@ catalogue-version 0.8 name xindy.aarch64-linux category TLCore -revision 57930 +revision 62280 shortdesc aarch64-linux files of xindy -containersize 2298872 -containerchecksum 4b7ef06e9aff9d984fbf150569350dedadb658352a61f24ac46767ecf8e554d174bcf6d9f9032d0bdce623f650eb3cad54dc11b129fbf60d350483472427cbef -binfiles arch=aarch64-linux size=1334 +containersize 2293592 +containerchecksum e15c232cd954ccc8b87cbf6db733cd884133e945643d27c9becaa94be0722c7ebca5093113de304c185a021b013390faac65e76a655f1de3a39e783b12237ab8 +binfiles arch=aarch64-linux size=1335 bin/aarch64-linux/tex2xindy bin/aarch64-linux/texindy bin/aarch64-linux/xindy @@ -336663,10 +351701,10 @@ binfiles arch=amd64-freebsd size=950 name xindy.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of xindy containersize 1676044 -containerchecksum 8cfea015adba5710532f9a3791f7d50241db15bb0ac9e107c7319edc3830a069043070649ddbc9a93d131b545187368b8a99f956cd9da829de91013dc097a08d +containerchecksum 2ef007799535e6f546e75633ff402bf3efb2ddc4dcb4102b579a565431319eee80d6e74f72253e7bfce378562b7909784149d55688309044e8eab3e3b96a10ff binfiles arch=amd64-netbsd size=879 bin/amd64-netbsd/tex2xindy bin/amd64-netbsd/texindy @@ -336676,30 +351714,17 @@ binfiles arch=amd64-netbsd size=879 name xindy.armhf-linux category TLCore -revision 57957 +revision 62280 shortdesc armhf-linux files of xindy -containersize 2302284 -containerchecksum c8c2845b9db717b765c13db05daeb6ffb29ebfcd107fe189601d6d387e299ca9d0e77e672b4183e378b3cc039c7daaaf2c5d27b5f9e6ababaa8ce916ecd31d4f -binfiles arch=armhf-linux size=1069 +containersize 2097876 +containerchecksum e5cdfc548a8dfd02d50b74b33e9174fcad3ceca75d5a0121c9e30a7e9ba6deb8a11bcb5c4111e904ea47d955c554acfaaeb76407c358ff14dd86e1d6317b1616 +binfiles arch=armhf-linux size=987 bin/armhf-linux/tex2xindy bin/armhf-linux/texindy bin/armhf-linux/xindy bin/armhf-linux/xindy.mem bin/armhf-linux/xindy.run -name xindy.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of xindy -containersize 1934576 -containerchecksum 57e84e956b1db97883b93514e83b040b746b6ad52ac4769a42812536cd8b85b61fa7f025099941b1f1854899397630221390b4337911a06f6050c91d077b7bb0 -binfiles arch=i386-cygwin size=942 - bin/i386-cygwin/tex2xindy.exe - bin/i386-cygwin/texindy - bin/i386-cygwin/xindy - bin/i386-cygwin/xindy-lisp.exe - bin/i386-cygwin/xindy.mem - name xindy.i386-freebsd category TLCore revision 47009 @@ -336728,10 +351753,10 @@ binfiles arch=i386-linux size=1008 name xindy.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of xindy -containersize 1677348 -containerchecksum f16b8511fa0690b47b1b01bf574e025cb23967cdf364102007b0fb73eb963d3bcac513bc9045df38986d78f41896970dba34d0f99c0fc7a47a62c0fa78b52a04 +containersize 1676084 +containerchecksum 96db275418b88c2ad29612bd3d73134495b918409ebb1b3952ba00502822f9ecd864a4f6bcda3483bbaaae97174f2c1362e187b2aa8021ad07d47af1513a2502 binfiles arch=i386-netbsd size=816 bin/i386-netbsd/tex2xindy bin/i386-netbsd/texindy @@ -336741,37 +351766,38 @@ binfiles arch=i386-netbsd size=816 name xindy.universal-darwin category TLCore -revision 59070 +revision 65895 shortdesc universal-darwin files of xindy -containersize 2013372 -containerchecksum d898ed4d1e2ae992d13d6a646b3009b5ff401f3de4418dd19e109e7bf77b15fcef054ee6b898147e8957b5ae92af4729e11dd9fddeced024ee213d7ce5c0da04 -binfiles arch=universal-darwin size=988 +containersize 3139600 +containerchecksum d1512ceaad2362f987461b2027c8d464252e04de002a233bceb2ff72c1feafb3bb7f59a7b08dfbd62c808abf362c37a363c103755f9fc42ce5cb0964e96fc91d +binfiles arch=universal-darwin size=1869 bin/universal-darwin/tex2xindy bin/universal-darwin/texindy bin/universal-darwin/xindy - bin/universal-darwin/xindy.mem + bin/universal-darwin/xindy-arm64.mem + bin/universal-darwin/xindy-x86_64.mem bin/universal-darwin/xindy.run -name xindy.win32 +name xindy.windows category TLCore -revision 57883 -shortdesc win32 files of xindy -containersize 2112668 -containerchecksum fdf73a7cbc7fefa48aa94f89a4120ec16614ca0432b37997430e73577b190d13010255540fb8715f997093a407fa4af63762345577fb1af1dccdeab853ce1942 -binfiles arch=win32 size=2126 - bin/win32/tex2xindy.exe - bin/win32/texindy.exe - bin/win32/xindy-lisp.exe - bin/win32/xindy.exe - bin/win32/xindy.mem +revision 65959 +shortdesc windows files of xindy +containersize 2121892 +containerchecksum c982ae4e6db2a4acb4e09760b00aa58d9d6a5153187b98db37b9039f0a18af67f744839e1c24634173f1fb5d205bb185e25385cdc70de4f110207340fca9fe92 +binfiles arch=windows size=2052 + bin/windows/tex2xindy.exe + bin/windows/texindy.exe + bin/windows/xindy-lisp.exe + bin/windows/xindy.exe + bin/windows/xindy.mem name xindy.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of xindy -containersize 1970544 -containerchecksum 45db3016fe4004edfdecd9a937108305444fbf2a5e2b190c7030b37d263f66d146df6a1a780f2bb3d9dcef174e02f753632fc9324dbfc0ace6b27c327768f2c6 -binfiles arch=x86_64-cygwin size=948 +containersize 1976220 +containerchecksum 5ed3ba634a655129f480c6701040a482e49a95593f8962628717bfb5f47a49da5aa9ac00ecc276167a08ab2f0ac4f3759b206430b8eaba1ee5c1bceaeba6ac3e +binfiles arch=x86_64-cygwin size=951 bin/x86_64-cygwin/tex2xindy.exe bin/x86_64-cygwin/texindy bin/x86_64-cygwin/xindy @@ -336806,7 +351832,7 @@ binfiles arch=x86_64-linux size=1272 name xint category Package -revision 59089 +revision 63562 shortdesc Expandable operations on long numbers relocated 1 longdesc The xint bundle main modules are: xinttools utilities of @@ -336831,21 +351857,21 @@ longdesc display of continued fractions). All computations are longdesc compatible with expansion-only context. The packages may be longdesc used with Plain TeX, LaTeX, or (a priori) any other macro longdesc format built upon TeX. -containersize 79376 -containerchecksum a73037ee75ad004eefc64eca1c85137e98e583ab674cd797c7e7029bf4bb4216100e12c980a184e0cd00267f99b68cb444c8326a782889abbfe35a6db716670d -doccontainersize 2108880 -doccontainerchecksum b5c591298bf8dc5981df4319ae9a1f0350aa3941687af895447c263d067efb0ff97191eaae1aa95067e25bdcdb5263fae4ae1d87283b8bf07be01bfd848ed417 -docfiles size=559 +containersize 80860 +containerchecksum 7c98cd18683bc57dbae80c74fcf30995519f5c6176b5af4865ecf3adce844ac0a58c5cef2bb96e30f9d244da37effbc0b164a544dbdfb9f69ef0314c0be1436b +doccontainersize 3584228 +doccontainerchecksum a1ecb80e4ebb43b5b3979493f426b89d7b952c03a388f3eb36d3496506820b97e15926736f44f94195336224e3d382139458ad8c6f6060bb5129ce4edf9d3e39 +docfiles size=941 RELOC/doc/generic/xint/CHANGES.html details="Changes (HTML)" RELOC/doc/generic/xint/README.md details="Readme" RELOC/doc/generic/xint/sourcexint.pdf details="Documented source code" RELOC/doc/generic/xint/xint.pdf details="Package documentation" -srccontainersize 370820 -srccontainerchecksum 2e12696cbcc9476a49043b7a8fab02613ba8e9b2604d1ca08dd48dfe6fe66fc70e21eacf011562813666868a6eb7b58793268d02675ccab24946b0d744589632 -srcfiles size=435 +srccontainersize 421752 +srccontainerchecksum c05b56b92a09c51eaa9a3e12bfe52e85408efd97175a2ea8f1c504bc5fcb6800776360e9453b970d048e97b129da2316ae5fd5c257978c3423bcee04f5c864db +srcfiles size=486 RELOC/source/generic/xint/Makefile RELOC/source/generic/xint/xint.dtx -runfiles size=162 +runfiles size=163 RELOC/tex/generic/xint/xint.sty RELOC/tex/generic/xint/xintbinhex.sty RELOC/tex/generic/xint/xintcfrac.sty @@ -336862,11 +351888,11 @@ catalogue-alias xintexpr catalogue-ctan /macros/generic/xint catalogue-license lppl1.3c catalogue-topics arithmetic calculation -catalogue-version 1.4e +catalogue-version 1.4m name xintsession category Package -revision 59090 +revision 60926 shortdesc Interactive computing sessions (fractions, floating points, polynomials) relocated 1 longdesc This package provides support for interactive computing @@ -336880,18 +351906,49 @@ longdesc variables and functions can be defined during the session, and longdesc each evaluation result is stored in automatically labeled longdesc variables. A file is automatically created storing inputs and longdesc outputs. -containersize 5244 -containerchecksum 3d616e01c51e5bb6a12bac4801aa01d30af5d9fdd916c77ebf72468e3bdca82c750723cd7d22e0259e923cd0423df5a63cc41458f875ea5d95716a75b02167bc -doccontainersize 1732 -doccontainerchecksum 634b24ff263513a03ceb4b7d50bc550d3a2ed3a719520cc42d87d4965539b902e75fe2a87e23f399d20f458f0f6820838dc59411509cfe17933e1097a9af0454 -docfiles size=1 +containersize 6960 +containerchecksum d1e279e733e37d6ef163a1dc537f5c02119403710a930f409cc6cfa55f1c08d9dd30bf4aeb14b68e4080442137a7352207ca8dc9bd7f859a8d19cf9205b68c1d +doccontainersize 2860 +doccontainerchecksum 1a99ce3ce5e2a311e1dd4086f416738c48cbd42ad0b37c372fffcb0a4f035b3384f1b4963cccd2b602164f256e4bcb8d9b1d3efc56c99382e284d6d97e20b7c1 +docfiles size=2 RELOC/doc/plain/xintsession/README.md details="Readme" -runfiles size=4 +runfiles size=6 RELOC/tex/plain/xintsession/xintsession.tex catalogue-ctan /macros/plain/contrib/xintsession catalogue-license lppl1.3c catalogue-topics maths calculation -catalogue-version 0.2 +catalogue-version 0.4alpha + +name xistercian +category Package +revision 61366 +shortdesc Cistercian numerals in LaTeX +relocated 1 +longdesc xistercian allows you to use Cistercian numerals in LaTeX. The +longdesc glyphs are created using PGF and to a certain degree +longdesc configurable. You can use Cistercian numerals as page numbers +longdesc using \pagenumbering{cistercian}. The two main macros are: +longdesc \cistercian{} formats the LaTeX2e counter as a +longdesc Cistercian numeral \cisterciannum{} formats the +longdesc integer (given as a string) as a Cistercian numeral +containersize 4924 +containerchecksum e0b4db57c0c3b819f1c653f097c6adcad1d2b74409926d5e0652fed4aced3be5b82ec5f663d85769261fb62e89d16bbe36ed87e6ca2352ab9548fd322c6b7b5a +doccontainersize 339796 +doccontainerchecksum 673d6a01619a36fd8db88ab056a8560200e03de519799b867583d6fe0226a25661245e4942a1e2b13a23d2913a137736f6b10ecb25962e0b4afbec8e2b568cf5 +docfiles size=87 + RELOC/doc/latex/xistercian/README.md details="Readme" + RELOC/doc/latex/xistercian/xistercian.pdf details="Package documentation" +srccontainersize 14156 +srccontainerchecksum 8c305d95953774aaa5e181a3ab2f904b6faceb2387a6b4c9dd4f6c11eb3ddad4e31088a11db48d2ca2a0a72911f5cff1d3bf5bf37a933ceb76805a6265d3c816 +srcfiles size=16 + RELOC/source/latex/xistercian/xistercian.dtx +runfiles size=7 + RELOC/tex/latex/xistercian/xistercian.sty +catalogue-contact-repository https://github.com/Skillmon/ltx_xistercian +catalogue-ctan /graphics/pgf/contrib/xistercian +catalogue-license lppl1.3c +catalogue-topics numbers pgf-tikz graphics expl3 +catalogue-version 1.2 name xits category Package @@ -336960,7 +352017,7 @@ catalogue-version 1.0.1 name xkeyval category Package -revision 57006 +revision 63616 shortdesc Extension of the keyval package relocated 1 longdesc This package is an extension of the keyval package and offers @@ -336970,11 +352027,11 @@ longdesc specify a prefix to the name of the macros it defines for keys, longdesc and to define families of key definitions; these all help use longdesc in documents where several packages define their own sets of longdesc keys. -containersize 8976 -containerchecksum 39ae2a2d595c6808aab31a1f97caf31418e8aad6c05bec8812b0fca4a69c19eeb88e559940f952309f69a4b2d6342cce804f7d4d2b6270878be51c9b3cdf4ee1 -doccontainersize 392804 -doccontainerchecksum 58a64143df3ca2cfd5b8260dbe5df4900586d3131f7914ea1da9b0a8f53c84e2ce49a6e36c03be3c3a508b4a9f26e61c167c600e73105709d6f36b2acdb6bd2e -docfiles size=137 +containersize 8996 +containerchecksum e7f8355a0dd505af021d413b7e1ec605c083b9e552382eec48de85a1d037937696fc0a5949a4a8cebb065dd339c70742863991bc855c1ffc82177571c16cd313 +doccontainersize 422472 +doccontainerchecksum f7948832c943d3746c3115950259430724abee49316aaac0343e0959ddce796ab8064583d048f71ad39332df966557da9a2ec3c2752c16b333cc55bcd2cf3c7e +docfiles size=214 RELOC/doc/latex/xkeyval/README details="Package README" RELOC/doc/latex/xkeyval/xkeyval.bib RELOC/doc/latex/xkeyval/xkeyval.pdf details="Package documentation" @@ -336988,8 +352045,8 @@ docfiles size=137 RELOC/doc/latex/xkeyval/xkvex3.tex RELOC/doc/latex/xkeyval/xkvex4.tex RELOC/doc/latex/xkeyval/xkvpream.ble -srccontainersize 47596 -srccontainerchecksum ba88cb7ecf4e7cf2b3f125c989199abccf8cea300ba291f3dc9ce0f5259534b75bea6af23770e4d772c264eff9267530ce5759b62c33ea5bf998b97996ec2d52 +srccontainersize 47660 +srccontainerchecksum 8eedead41d620e3561dc120e16d745a18e475107ba3144802200bd043cee93efb2062052ca220da4a4cbbc431e7d432db1d217ed3f4c8430526ebede52cada1e srcfiles size=54 RELOC/source/latex/xkeyval/xkeyval.dtx runfiles size=16 @@ -337006,7 +352063,7 @@ catalogue-also pst-xkey catalogue-ctan /macros/latex/contrib/xkeyval catalogue-license lppl1.3 catalogue-topics keyval -catalogue-version 2.8 +catalogue-version 2.9 name xlop category Package @@ -337131,73 +352188,64 @@ catalogue-topics music name xml2pmx.aarch64-linux category Package -revision 57930 +revision 65927 shortdesc aarch64-linux files of xml2pmx -containersize 47536 -containerchecksum 150ef9fb4f82f0e968ae1a50eef116d41fba79f18e5142550b7804397f3e711b4c595169498252bd8dc1c05360d7e57bfb16f2582189703a3ed994050fcf3b9c +containersize 47580 +containerchecksum a558db269102efd7e1516bda4f08bc6e571e248f9ffb647ca7883d05091db5151c93e47ea21eeddc3fa6001a01a976755ed076ea1b1212f4e0deee88a706b6ea binfiles arch=aarch64-linux size=33 bin/aarch64-linux/xml2pmx name xml2pmx.amd64-freebsd category Package -revision 57941 +revision 62206 shortdesc amd64-freebsd files of xml2pmx -containersize 46864 -containerchecksum 688015825eea35d07c1f3b234522169c1d33635293a8c7099616359ed19d55e093ab7f10111192e492e36d0c9445606d3946dac4ced3e1d65a4ea05be472043e +containersize 47336 +containerchecksum acacefea2f52c3e58ca72d931804d115154952f4e451ff43750cd1efd98efba7cbc56b77a081dd09a61fc4a5e9f4280f213ef7749a115e33ab81be2f05f68fb9 binfiles arch=amd64-freebsd size=31 bin/amd64-freebsd/xml2pmx name xml2pmx.amd64-netbsd category Package -revision 57877 +revision 65923 shortdesc amd64-netbsd files of xml2pmx -containersize 46484 -containerchecksum b88451836f1062115947812f0439d76b4a647e8c7a59c02768480aa7a7f1d1efba5475758b02c39e896d2c7d61bc9dd4ad12f13de969c4e3f738c5fa30a82048 +containersize 46512 +containerchecksum 691f064b97dd1fed13b1324139338ae73f7b5d9056915399516ad02441c2c73718bd51bac67aacf177a609e7cc1ac64614cade11c8f07c610062b351a851e9f2 binfiles arch=amd64-netbsd size=34 bin/amd64-netbsd/xml2pmx name xml2pmx.armhf-linux category Package -revision 57957 +revision 63092 shortdesc armhf-linux files of xml2pmx -containersize 44984 -containerchecksum f7af2ea58a88b8623dfa5d9aeec8f39c9a578c5dab3cefb2aa7cd8a53e655ac4f68474f9a42d1279207c7670e98d2a107070d6db17c068d89b5bacbe18fab24f +containersize 44968 +containerchecksum 7abab80e085199a8ed2e42b366ec3fc405e43eaeaf617e8e2178b4211419f8831256d7d8b008a8afca43ccb648c24baa50e78cf200457a8efce8bff1a1ac160c binfiles arch=armhf-linux size=28 bin/armhf-linux/xml2pmx -name xml2pmx.i386-cygwin -category Package -revision 58387 -shortdesc i386-cygwin files of xml2pmx -containersize 46464 -containerchecksum dcfdb4dfc7902af4ceea484eeb1e59fa171e2f3160c7dc954665d6b1b98c73e33fcdce692b0a2f592e7ce9321654a534454c0c300f1a6cbe712c0e42f1e31e61 -binfiles arch=i386-cygwin size=30 - bin/i386-cygwin/xml2pmx.exe - name xml2pmx.i386-freebsd category Package -revision 57961 +revision 62206 shortdesc i386-freebsd files of xml2pmx -containersize 45880 -containerchecksum 94d59635b618293818e31a0feb9b2dbb8e03da1e708f8f428af02cb02ff8ed0e40225be4b72d634eb21039a1a7c4f82207b3be50a537d5cbdc47f2c0c4d9f7e7 +containersize 46668 +containerchecksum 7298a723aa68ce994876d5762e1b753eeaa2daab84ee46fe33b7f87036b0f49d0f6e81508a9a59d6a1522ae12645362262d30dfa47eb1d1ca7fe2963bedd3be2 binfiles arch=i386-freebsd size=29 bin/i386-freebsd/xml2pmx name xml2pmx.i386-linux category Package -revision 57878 +revision 62210 shortdesc i386-linux files of xml2pmx -containersize 47628 -containerchecksum 9febb31f24a092a62a6b72dfcf8a4ac490aa54aece5c39d96deb72c5189c68a4d16c0fda158dd6cdd9b623b0307d145d0e88283f22235c289309632b3141108f +containersize 47652 +containerchecksum ee07e1e09ab8a636dade0ad8dad19f8d618dd97e6a06c06002507e4c6f55d53888bb7f87522b979da139aedb666403291fb559f32689e9794530379524929e8f binfiles arch=i386-linux size=30 bin/i386-linux/xml2pmx name xml2pmx.i386-netbsd category Package -revision 57877 +revision 65923 shortdesc i386-netbsd files of xml2pmx -containersize 45732 -containerchecksum eef292c8b3f19b7789ba911f0c48743be6441b1a5eff888ba997d6e67ff2f7b917d5fae277ec2166413bd21795ccd13382d643514047ef1fa597ecf11f393764 +containersize 45748 +containerchecksum a39ba7d693b059c3bcad6f8dba61afcab3986f990a6936f78edc755d55c2bbacda3b245a59828d16488d67f1ee99fddd153ed05f76ab7b4b5f361937c1488f4c binfiles arch=i386-netbsd size=31 bin/i386-netbsd/xml2pmx @@ -337212,29 +352260,29 @@ binfiles arch=i386-solaris size=29 name xml2pmx.universal-darwin category Package -revision 57908 +revision 65895 shortdesc universal-darwin files of xml2pmx -containersize 68108 -containerchecksum 91ddf7170f9ade21814bf07e360a78f17dd1c31de74938850d8ff84d6c49eafc64adfec8ca03f09960b78f6e5c9b95310ec814188956132e2b94a27bdebf1e94 -binfiles arch=universal-darwin size=78 +containersize 68424 +containerchecksum 7ff7d6c3e27954ab4490b9470944cec0558dfc66c219a711cfce9a7f251dafb78f246520fef20735ce0a164bb23c3ad0984cb09d19db8937347e852ff28b1177 +binfiles arch=universal-darwin size=82 bin/universal-darwin/xml2pmx -name xml2pmx.win32 +name xml2pmx.windows category Package -revision 58785 -shortdesc win32 files of xml2pmx -containersize 100788 -containerchecksum efd8808921417513ed973c14b62965e3fcdc1d21c66b70a3be47a615be277679e39ca4f736877f7591336840511e3d10b78bcb7d6cafb988aedaac5be1dc5ad1 -binfiles arch=win32 size=55 - bin/win32/xml2pmx.exe +revision 65891 +shortdesc windows files of xml2pmx +containersize 110812 +containerchecksum 172197ff504b4365c88e354059b3b96e68b76c777f8c1753ce3540e3eb1681e2fb4dd9c96c94b652039c98c29d544f28b5274af9b709255257953a687e04ebde +binfiles arch=windows size=63 + bin/windows/xml2pmx.exe name xml2pmx.x86_64-cygwin category Package -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of xml2pmx -containersize 46920 -containerchecksum 6060d9bea4c149e98daa8ad44e1262460e397cf8b37db9b2966b2ee7dd798d0a96c0ab3a20582c46d5d55a867975d88d560436b36199568bfe886e87456ea053 -binfiles arch=x86_64-cygwin size=30 +containersize 47660 +containerchecksum 80971733c547e98d2c50c6b9e1b33d637e742b8ca4bfc83fa77d5b1d13fd8a108fc223aabfd27cba2d1d9e7ed08a14affa02433267e58b1a5a7b3de9d484a2f3 +binfiles arch=x86_64-cygwin size=31 bin/x86_64-cygwin/xml2pmx.exe name xml2pmx.x86_64-darwinlegacy @@ -337248,20 +352296,20 @@ binfiles arch=x86_64-darwinlegacy size=30 name xml2pmx.x86_64-linux category Package -revision 57878 +revision 62187 shortdesc x86_64-linux files of xml2pmx -containersize 46272 -containerchecksum bf5132b2ffea7e648544c85f034216951ae0193d07f42a3b35d9abe789aa045c0d0578dfccf77ef7296fde282ed95dcbd57cf245c9cbdf9b65b527ab34da5961 -binfiles arch=x86_64-linux size=30 +containersize 46252 +containerchecksum a093aad853dcd025e09b7a457636eb8607341785d51c8232f18ee10accfc6cdf233156c73303717edc2e8d3cbbc7748bd42a7a7f00ede3da5240e87aeba2e4ef +binfiles arch=x86_64-linux size=31 bin/x86_64-linux/xml2pmx name xml2pmx.x86_64-linuxmusl category Package -revision 57878 +revision 62210 shortdesc x86_64-linuxmusl files of xml2pmx -containersize 48080 -containerchecksum 918b2e9bb2f604b4a0a2d8076652bc691fa0c1b3b2086ffbae05fd1ab4da61732a86d1f3245a2227f6d1e3214328581d1af2b80a631f70f58c1c67df7a058e1e -binfiles arch=x86_64-linuxmusl size=33 +containersize 47684 +containerchecksum 9eb1736a2c5d942549f606691b8f91dfc6a2c5601eec1cff1576d90f4592469baddb7d01227890ecdf94633b8225cd03f2f82ed8651c53514b02ca63d10fde37 +binfiles arch=x86_64-linuxmusl size=32 bin/x86_64-linuxmusl/xml2pmx name xml2pmx.x86_64-solaris @@ -337275,7 +352323,7 @@ binfiles arch=x86_64-solaris size=32 name xmltex category Package -revision 57186 +revision 62145 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 @@ -337308,10 +352356,10 @@ depend xmltex.ARCH depend xmltexconfig execute AddFormat name=pdfxmltex engine=pdftex patterns=language.dat options="*pdfxmltex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig,tex-ini-files,xmltexconfig execute AddFormat name=xmltex engine=pdftex patterns=language.dat options="*xmltex.ini" fmttriggers=atbegshi,atveryend,babel,cm,everyshi,firstaid,hyphen-base,l3backend,l3kernel,l3packages,latex,latex-fonts,tex-ini-files,unicode-data,dehyph,hyph-utf8,latex,latexconfig,tex-ini-files,xmltexconfig -containersize 18264 -containerchecksum e98a3ab9986d63d2605c87463bb32835d8ffcdd93f577b642da8e8f2447b6a74363c3a5799808c35f2e4b099af2789698ea471e04457a31ba8753ec4762e0ead +containersize 18260 +containerchecksum ee01abb25b18e99f18bc78357be04fb1405473e90fbdf74ed875e2910812550c44fcc7aee960b2bdc53fcd7d78e9aa706e46929da65d5cb78d9ca43ba475d675 doccontainersize 17004 -doccontainerchecksum 340859a95a102759494222e0cbf19b7f851c44d4cfeac77cee178b69f576151021de53c32ffb8dcb8ed911dae2eecaac943941481b5cccdfb5302bb8291724fb +doccontainerchecksum d87c6d1f4c472b436104b0746d48a463977dc7eb520de3d7a53f48bc1c8e5682a23d604bbe2ebda1b5029d4a6dd33c2d2bf8b917ad4f54d2c7472874fdfe8509 docfiles size=32 texmf-dist/doc/otherformats/xmltex/base/englishutf16.xml texmf-dist/doc/otherformats/xmltex/base/englishutf8.xml @@ -337386,16 +352434,6 @@ binfiles arch=armhf-linux size=2 bin/armhf-linux/pdfxmltex bin/armhf-linux/xmltex -name xmltex.i386-cygwin -category Package -revision 13930 -shortdesc i386-cygwin files of xmltex -containersize 340 -containerchecksum 3b23a20e12b2b0f9bf3407d08e5fc17f139e6bb1f15710315d1ed16aabfd91b36dd86c4085cbd32fdbacbc6e19733bb7618e1f3f07eed13c59581c244739ce36 -binfiles arch=i386-cygwin size=2 - bin/i386-cygwin/pdfxmltex - bin/i386-cygwin/xmltex - name xmltex.i386-freebsd category Package revision 16472 @@ -337446,15 +352484,15 @@ binfiles arch=universal-darwin size=2 bin/universal-darwin/pdfxmltex bin/universal-darwin/xmltex -name xmltex.win32 +name xmltex.windows category Package -revision 57883 -shortdesc win32 files of xmltex -containersize 884 -containerchecksum ec8be459202ad08e8357bf49866923ac9be86e87a68eeeb83646d23e9e19f78efd3982f582ecf820a763272059618e00f417eac21ba3a8dfe1aead45426ff7d0 -binfiles arch=win32 size=2 - bin/win32/pdfxmltex.exe - bin/win32/xmltex.exe +revision 65891 +shortdesc windows files of xmltex +containersize 2384 +containerchecksum eb4ec10d2bf090963d05dcda0b3b0b5fe4801fffa11ae635a92e08c3a0b9c80bbad547150e6bf3077fd8a167fff2db71623963ac8b90b7f3bec93272edcdfc75 +binfiles arch=windows size=4 + bin/windows/pdfxmltex.exe + bin/windows/xmltex.exe name xmltex.x86_64-cygwin category Package @@ -337519,7 +352557,7 @@ runfiles size=2 name xmpincl category Package -revision 15878 +revision 60593 shortdesc Include eXtensible Metadata Platform data in pdfLaTeX relocated 1 longdesc The XMP (eXtensible Metadata platform) is a framework to add @@ -337532,17 +352570,17 @@ longdesc embed licensing information in the files he created. The longdesc license the author chose is one of the Creative Commons longdesc licenses, and their web-site offers this information in a valid longdesc XML-file, suitable for direct inclusion. -containersize 1828 -containerchecksum 8d9a895a1efe8ce5eac190b8242c7f3e3bff7e433e1336aa7143894fbc5691c7b4fd791bae67fcefe97d16ff131b533f8b0c629580d7b5f9420e9216e932b860 +containersize 1792 +containerchecksum 49777de1160b2ef53d845ba08fb0af29eb5f06c6fc534da4856bd0f02dbed2dbaa73ac24c45b1e787ea44d08199b7d1c462dc21a972cd1815fcbf65a08388f26 doccontainersize 98416 -doccontainerchecksum 2757de1bfcbfe9df02d5e667564b1a69205ab86c31f7bcc8ec3f37db0fb1a1f4bb21d7360dbfd771aeafaffa4599becc801df81e339b6f49adafeb38bc1ff5af +doccontainerchecksum b8750478957f6b33163ef546d7be0c0ba4e5906d64a72cdf3edda33c663bcf7400eaeebe3119a175f21093a1b00bd2626df0156c8ebdfb9cdd076bc8d7953ac7 docfiles size=31 RELOC/doc/latex/xmpincl/README details="Package Readme" RELOC/doc/latex/xmpincl/license.xmp RELOC/doc/latex/xmpincl/xmpincl.pdf details="Package documentation" -srccontainersize 6572 -srccontainerchecksum 92cdd556f60d8a4186f64800ef5c8a27e331e394ac0120d3e07065688d454ea821839eaaf167bb15980223552160e161cb3c559feffbc4d6657af1019f7c14a2 -srcfiles size=5 +srccontainersize 6628 +srccontainerchecksum 48d8805d763169bd3024227edac213a5e57d207e63895492cc6f0a25ef38b82fe9d8fee76ea5309344bd397e4c5b70f8b72892d4054307bf758fb81cc8af3bd9 +srcfiles size=6 RELOC/source/latex/xmpincl/xmpincl.dtx RELOC/source/latex/xmpincl/xmpincl.ins runfiles size=1 @@ -337550,7 +352588,7 @@ runfiles size=1 catalogue-ctan /macros/latex/contrib/xmpincl catalogue-license gpl catalogue-topics metadata pdf-feat -catalogue-version 2.2 +catalogue-version 2.4 name xmuthesis category Package @@ -337655,7 +352693,7 @@ catalogue-version 0.3 name xpdfopen category TLCore -revision 53998 +revision 65952 shortdesc Commands to control PDF readers, under X11 longdesc The command-line programs pdfopen and pdfclose allow you to longdesc control the X Window System version of Adobe's Acrobat Reader @@ -337664,10 +352702,10 @@ longdesc programs work with Acrobat Reader 5, 7, 8 and 9 for Linux, xpdf longdesc and evince. This version derives from one written by Fabrice longdesc Popineau for Microsoft operating systems. depend xpdfopen.ARCH -containersize 560 -containerchecksum fe873bb22b94a26720e37671e283e0085619c2129a4568399544ac0df1e5c443a9476590ca7ef76a21409589eb2416a14165b8a48a6182f3773a3009cb7c1a47 -doccontainersize 28180 -doccontainerchecksum bb4be8fe1b4590e74a7573baa1d699895fb62f6b30b05c9c81655001c75ffb43a6d7f92deca337072690ce3297d4ab06f1aca389524c5d5d500a9fce4abd8404 +containersize 556 +containerchecksum 927b6a17422a3573efef6767f4835492df27764bc7fe729ed2697665d5fca697fe1a76e141ff30d5cb483bb4ef8e2021ecf2476c5bdf83ebc5dc6e7778b70765 +doccontainersize 28176 +doccontainerchecksum b4f332054a5fe85c9404a05673b373ac2b1275b79a1f0b57061cda614350df230dba60ed3be590e0688840334a113ce5c64847c1dc4e6ebae6cc29524c1f6bd5 docfiles size=19 texmf-dist/doc/man/man1/pdfclose.1 texmf-dist/doc/man/man1/pdfclose.man1.pdf @@ -337680,80 +352718,70 @@ catalogue-version 0.86 name xpdfopen.aarch64-linux category TLCore -revision 53999 +revision 65927 shortdesc aarch64-linux files of xpdfopen -containersize 7956 -containerchecksum 969e328e94055a62a0b03ad51773273877355fbcf81aaee8addf20d464449267439a4d0d00e7d877a152b51b26a528b19184f75c39645955db95ac9dff3589f4 +containersize 7944 +containerchecksum cef336bda0bb62fd070adf5f7fc87a4726a6ecd5bd0ac24c7fc0bb198144d7dd137208f004ed78795b07314f86e1949c76e1a7d540e8c845043981e4b939407c binfiles arch=aarch64-linux size=10 bin/aarch64-linux/pdfclose bin/aarch64-linux/pdfopen name xpdfopen.amd64-freebsd category TLCore -revision 57941 +revision 62206 shortdesc amd64-freebsd files of xpdfopen -containersize 8256 -containerchecksum cb4dd4d69c93a3b952a860c36b035be43594921e83313763cf9f7c89f1807c77679bbbb201c625617bd91b4c7cf65023021044e1f4620755fa06ecfdd9d75443 +containersize 8248 +containerchecksum ee0fe14c049e99c10b947cfdba83a61a5d3f53072c87b61b4df1f0dad4815cd470efb6a8d170ec4c8fa8e40c1e2ea3833954dabc16c44ee22606f87886883244 binfiles arch=amd64-freebsd size=8 bin/amd64-freebsd/pdfclose bin/amd64-freebsd/pdfopen name xpdfopen.amd64-netbsd category TLCore -revision 57877 +revision 65923 shortdesc amd64-netbsd files of xpdfopen -containersize 8572 -containerchecksum c6ec3bc7c65f3d2f8bf929e0c7ceab64349618128fcb7a9c63c0abeebb0d2c7fd270c615b5246f003e513a380b1c830b35c25b98566becdfa9dde04ead1e543b +containersize 8580 +containerchecksum d3a8330e07258e580764b45742a689e827c59d403da9f0c43ee52c9eba229b7526992551d56c1898a5a24f337a94462225871c01d830e9059b7dcb023c3bb36f binfiles arch=amd64-netbsd size=10 bin/amd64-netbsd/pdfclose bin/amd64-netbsd/pdfopen name xpdfopen.armhf-linux category TLCore -revision 57957 +revision 63092 shortdesc armhf-linux files of xpdfopen -containersize 6628 -containerchecksum 74a785d8c4ef03d90f175f68584bbd22743d3ff40f4cbb90e125f89044713e7990e101b4c4eece6b000deb65effae73fed6f8747db8db76091fcf9c5fa6687db +containersize 6636 +containerchecksum 20e3a176be44fb5647bbde6aab08172a41d66422c838c33aa3a61c0d598a5d0968c20c7f2032873a0b469e23c28ec827d21738976b04ef3670abf3a7aede90e8 binfiles arch=armhf-linux size=7 bin/armhf-linux/pdfclose bin/armhf-linux/pdfopen -name xpdfopen.i386-cygwin -category TLCore -revision 58387 -shortdesc i386-cygwin files of xpdfopen -containersize 7804 -containerchecksum 61782cf7d227b9e84ac0c2bd8b6c4c9cb63d4efb925440070d1e3e5682fabb83a0d885ffe3a4f3b106d907da51495ee697fb8276724a17c37f496f70592b8b6c -binfiles arch=i386-cygwin size=9 - bin/i386-cygwin/pdfclose.exe - bin/i386-cygwin/pdfopen.exe - name xpdfopen.i386-freebsd category TLCore -revision 57961 +revision 62206 shortdesc i386-freebsd files of xpdfopen -containersize 7568 -containerchecksum a5958d456215e31fc39b830c2340dea6443b7d0468a6b3c6c2ed0292a575b5be8cfee044c2a25767c5a7d413a56d2bc5465c39d2aa8de74a5e0440f6ad4f5feb -binfiles arch=i386-freebsd size=8 +containersize 8104 +containerchecksum cd9b56b6ee063bb40427478a3cf38796686cb78ebf8ce9c29c373653afffc1f6cb2bd5849e71ee4f3a8db4495f915b8f552a05d5150df385f0eb3a4676eb7616 +binfiles arch=i386-freebsd size=7 bin/i386-freebsd/pdfclose bin/i386-freebsd/pdfopen name xpdfopen.i386-linux category TLCore -revision 52917 +revision 62210 shortdesc i386-linux files of xpdfopen -containersize 8028 -containerchecksum 8a47ef709bddb24baac527ec79d8b4fbe4fab1e9680964a0b4c10dacea8c0db95ec09aacded7d5c5ed25de4178c0922f8c51b8e2d5ede2319ea98d46968bc9f8 -binfiles arch=i386-linux size=7 +containersize 8164 +containerchecksum aba6b8490e770354b560eb7bbe27fbb9c8251597b8f76affaf3a9f7a3196985a264146af60b403e3aef6c4c941c25066f6a010dd267861eab68ccd73d0005789 +binfiles arch=i386-linux size=8 bin/i386-linux/pdfclose bin/i386-linux/pdfopen name xpdfopen.i386-netbsd category TLCore -revision 57877 +revision 65923 shortdesc i386-netbsd files of xpdfopen -containersize 8240 -containerchecksum 83f4d6dcf11cd761873327e9e208833e5f995a71e13ea2bf453820519621bdec27b989ae02df65e4130c54a6f5ca15e18e6310f04ce017a441a64883609a62c7 +containersize 8232 +containerchecksum aaa1e2fb2c97dc6e8e1bfad045043d405c910cbce625bd8d6d3a4050c8c549bdf522f8ad1f469516452cca04484763bf35ab6868ac182110594fc087ac874c6e binfiles arch=i386-netbsd size=8 bin/i386-netbsd/pdfclose bin/i386-netbsd/pdfopen @@ -337770,51 +352798,51 @@ binfiles arch=i386-solaris size=8 name xpdfopen.universal-darwin category TLCore -revision 57908 +revision 65895 shortdesc universal-darwin files of xpdfopen -containersize 19720 -containerchecksum 0418fc3e844e7d54e8e374f5b74fcc1fead683be43d4c31c0e988cc3df618082cbe4c32b613b5c1ea75dfd6e7ca43442c94e4e321b45a33e4c6c2a5942673267 -binfiles arch=universal-darwin size=60 +containersize 19988 +containerchecksum f3563a88fd82cc6aee8ffbb2def16e0d2f9e37be74817e703b6376bd1c01acfb4cb0ecd9ad10e0243a309a412ea447730ab223f5faf48b56edc64ae469a9a50a +binfiles arch=universal-darwin size=64 bin/universal-darwin/pdfclose bin/universal-darwin/pdfopen -name xpdfopen.win32 +name xpdfopen.windows category TLCore -revision 57883 -shortdesc win32 files of xpdfopen -containersize 629144 -containerchecksum dc40de47047be78503edcd88c72681027ecfbe893961b1c156251c304a55fd7be7d4a0c8fe163949f1ed5fa3fd79e00d23952df1a143546dc2f7ea90401b1351 -binfiles arch=win32 size=392 - bin/win32/pdfclose.exe - bin/win32/pdfdde.exe - bin/win32/pdfopen.exe +revision 65891 +shortdesc windows files of xpdfopen +containersize 756616 +containerchecksum 1d094f9fe2d143a8ac905af13a7b9036caab181afb243ecd29c7cfc3cbe68a478946ceaa45b8bbc7a8c8cfde89f528d8713cae4f2c1a9b5a3b417f9afa1f224d +binfiles arch=windows size=532 + bin/windows/pdfclose.exe + bin/windows/pdfdde.exe + bin/windows/pdfopen.exe name xpdfopen.x86_64-cygwin category TLCore -revision 58387 +revision 66544 shortdesc x86_64-cygwin files of xpdfopen -containersize 8636 -containerchecksum e0099126a16844906f02d4db85b34b9c735261baf2eca3393f723e842679dd2369d703f8c58c948559d5e1ba678e3184b68d18d0aed49df3d3d2e3b542fa5095 +containersize 8836 +containerchecksum f7ad6c9b078acbe2a392dc4345d5e802321ceabdec660347edbfb3820d4c9ce702ce6b80fdea860d2edc848d12cd6921aedfc5c09e02fd48706b982b4c12c219 binfiles arch=x86_64-cygwin size=10 bin/x86_64-cygwin/pdfclose.exe bin/x86_64-cygwin/pdfopen.exe name xpdfopen.x86_64-linux category TLCore -revision 52917 +revision 62187 shortdesc x86_64-linux files of xpdfopen -containersize 8072 -containerchecksum 2de1dd92bbe8edeea4204058a7146d5142a3f8426ee71882f25ba4db94bc30f77e0f45777501e8613457fff0cedf9dd0d95982a1dd30c572921a86c9fa35a2a8 -binfiles arch=x86_64-linux size=8 +containersize 8488 +containerchecksum 4845721dc9ec15dc35504254bfc7a581331eab45d32cf34165dd1b040afa66355f339c0c1b4490b1614b2d082d410346ee62edcd69dcfcc4dcb2bee199fa6be1 +binfiles arch=x86_64-linux size=10 bin/x86_64-linux/pdfclose bin/x86_64-linux/pdfopen name xpdfopen.x86_64-linuxmusl category TLCore -revision 54264 +revision 62210 shortdesc x86_64-linuxmusl files of xpdfopen -containersize 8268 -containerchecksum 72f7bda0423335a1db15665baa70297c3d239b9543587d28a54330eb20bcc4dccf50367cee398675ce2336a4618f70a5340d5335d889e3f83fec68d57cb93146 +containersize 7932 +containerchecksum dfe3e3d3872ab06f28403dae2014f7f1a0e789ad6a230e87b23a58485be722067032a965df1ef9e0371036a497c97d547f31e1c9c0b729bf16c80329adaf1701 binfiles arch=x86_64-linuxmusl size=10 bin/x86_64-linuxmusl/pdfclose bin/x86_64-linuxmusl/pdfopen @@ -337831,27 +352859,27 @@ binfiles arch=x86_64-solaris size=10 name xpeek category Package -revision 27442 +revision 61719 shortdesc Define commands that peek ahead in the input stream relocated 1 longdesc The package provides tools to help define commands that, like longdesc \xspace and the LaTeX command \textit, peek at what follows longdesc them in the command stream and choose appropriate behaviour. -containersize 1396 -containerchecksum dc1dd0534645be0754551b2d3bc146c7e7663f7cc9f2daf40b13a383e13883d25ba46f320317d4e9f251594dccf3a880f5e123683f302638eb3b37018b369ce4 +containersize 1376 +containerchecksum 1b264f383d76e1c213aab0ac650a934ac6a91eb8dea8122229b2ac6bcb6ed694d62acecae3882b41abf34bd016922109064de0775f91222ad88be8287bd62931 doccontainersize 554532 -doccontainerchecksum 047080eda80f9134b98196bf8a06e446ef856028aaa0f936da16db7f63be144b404708045d2a49c5bdb70b7a6f0b6b505697e95a5ff8b98b5b4f1ee8b2949367 +doccontainerchecksum 0633a7a51a329ff6849d080bac626b4174567823b8c597187f62158004a8df647fe40653af371d55d6a4743991fc3ca650e034f68e5b737448245c7df79cba84 docfiles size=149 RELOC/doc/latex/xpeek/README details="Readme" RELOC/doc/latex/xpeek/xpeek.pdf details="Package documentation" -srccontainersize 7044 -srccontainerchecksum a7e8c3f165314ab79f8702b8ccc82200398e5d5798815c02a7ae3ea0d70dd521d534c50e93b822e41042eb6a0faea07d5f129f05f427e47c2abcaff3adbba459 +srccontainersize 7048 +srccontainerchecksum 38165be35b6fece20141ab61b4e212d6a754d2971e340a0f98bb02468aaad6b470aecbb5f4887969a987c9e7c45be109cac5e190b534264caced15fdc803f14d srcfiles size=6 RELOC/source/latex/xpeek/xpeek.dtx runfiles size=1 RELOC/tex/latex/xpeek/xpeek.sty catalogue-also xspace xpunctuate -catalogue-contact-repository http://github.com/jcsalomon/xpeek +catalogue-contact-repository https://github.com/jcsalomon/xpeek catalogue-ctan /macros/latex/contrib/xpeek catalogue-license lppl1.3 catalogue-topics macro-supp @@ -337859,7 +352887,7 @@ catalogue-version 0.2 name xpiano category Package -revision 37604 +revision 61719 shortdesc An extension of the piano package relocated 1 longdesc This package provides macros for typesetting virtual keyboards @@ -337868,20 +352896,20 @@ 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 https://tex.stackexchange.com/questions/162184/ +longdesc https://tex.stackexchange.com/questions/246276/. It features longdesc extended syntax and several options, like setting the color, longdesc adding numbers for pitch analysis, one or two octaves, and longdesc others. -containersize 2812 -containerchecksum 3554bd514e1108649bc98d38dc84951edf17533758325d46726f55d9909d1a3747024aeff62842dc6eb1b5fc760c41a452e207b156bdee06468e9d7732e223b6 +containersize 2792 +containerchecksum 892f018e4bcad350e4418b2724b6bf2d18aca9f74aa01eb10906b90630b36ec3497a0b96b293e44ec136eee22648b53a13d7a9b614a36c0b79f5a7b94dc37403 doccontainersize 556172 -doccontainerchecksum 257c484983eed03adc77b1776c9207ff89b4152b817aa09fb57cb41d8f6494af0db191c61b954a7f2a605cb8695fdd0562cbab1e0c48f85329c3ad61fef0e62d +doccontainerchecksum 467da8be6903252b1d1a9436750b8d2f0f5eb1f1f7ad1178acf0a1ddbea253ce38ddc842c89ab6a22c4bb72ec311a2ee2536dee5834ca3ead427c36592c35100 docfiles size=138 RELOC/doc/latex/xpiano/README.txt RELOC/doc/latex/xpiano/xpiano.pdf details="Package documentation" srccontainersize 6324 -srccontainerchecksum b52814268736b61fe3f417f410e4b29f778b6492f838d16894d33db85645799d52d3d744f10b429e68e315a142964b2f5ff57f15e9c4ee7e93a58dbd4b0fa2e2 +srccontainerchecksum bfd5a1dde7e05755f3c0167f16b7af2d83881b25d31e96644d18d193f4afb8f9f359b5149fe4534e43243e9364c1ab6380576196422c79077c82c4269b7619a0 srcfiles size=7 RELOC/source/latex/xpiano/xpiano.dtx RELOC/source/latex/xpiano/xpiano.ins @@ -337925,21 +352953,21 @@ catalogue-version 1.2a name xpinyin category Package -revision 56709 +revision 66115 shortdesc Automatically add pinyin to Chinese characters relocated 1 longdesc The package is written to simplify the input of Hanyu Pinyin. longdesc Macros are provided that automatically add pinyin to Chinese longdesc characters. -containersize 201012 -containerchecksum 94ea16ea9d649e28094173862ce5e31c655acef0c21dcd03a6f7d3f5463cdca15da7ea9b4408d539900a7c2d55a7418f4fac8defbe914bcad8c4a58f6e1bdb4d -doccontainersize 200480 -doccontainerchecksum 58715c5eb8e0e336bf6de29b47760eedc27802fd82bb120ce37a6502eeb00c8b8230503d660e687131d8312be93a72dc6b2dc15b89cb82d46be5f5b7200a91e9 -docfiles size=51 +containersize 201036 +containerchecksum 3b7eda4c75b90284138c1277657c8f4a3c2c9a3374a2d6f80969e78805ab8f0c03bf09e5aceaaaec689582dbe30a82b704e41ce08305a0b4b869a84d4d07678e +doccontainersize 206472 +doccontainerchecksum f233ca01195f0f3e236414c02cefbb8da1adc24d6ea94fa56e98ab8772f48456e4bf469f6def555a01c29f8a258c352186d7bf7054db2bbe3843ed937784a440 +docfiles size=53 RELOC/doc/latex/xpinyin/README.md details="Readme" RELOC/doc/latex/xpinyin/xpinyin.pdf details="Package documentation" language="zh" -srccontainersize 10824 -srccontainerchecksum edf759656775c8e8f1b3953949d0d1b1d3d34a165b51781d4748034e5a8d3ff19650a4e9a2d7397156f0f77104b5513c61ac84afaf7634a49c52044ee8c03bc5 +srccontainersize 10856 +srccontainerchecksum f4775152d7879b352f6193af3036258ca984a195abe6de3c03baa41325a7b1fce3900facc2f3ea8fd2deafd3740128161ccfbb2a37eb88fae196a20136f68dd9 srcfiles size=12 RELOC/source/latex/xpinyin/xpinyin.dtx RELOC/source/latex/xpinyin/xpinyin.ins @@ -337947,13 +352975,13 @@ runfiles size=303 RELOC/tex/latex/xpinyin/xpinyin-database.def RELOC/tex/latex/xpinyin/xpinyin.sty catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues -catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-home http://www.ctex.org catalogue-contact-repository https://github.com/CTeX-org/ctex-kit catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/latex/contrib/xpinyin catalogue-license lppl1.3c catalogue-topics chinese expl3 -catalogue-version 2.9 +catalogue-version 3.1 name xprintlen category Package @@ -338053,7 +353081,7 @@ catalogue-version 0.4 name xsavebox category Package -revision 54097 +revision 64049 shortdesc Saveboxes for repeating content without code replication, based on PDF Form XObjects relocated 1 longdesc The package defines commands for saving content that can be @@ -338066,39 +353094,39 @@ longdesc modelled after the standard LaTeX commands \savebox, \sbox, longdesc \usebox and the lrbox environment. All common TeX engines and longdesc back-ends are supported: pdfLaTeX, LuaLaTeX LaTeX - dvips - longdesc ps2pdf/Distiller (Xe)LaTeX - (x)dvipdfmx -containersize 4244 -containerchecksum bcfb1ea2043163f3ebba520235ebcf8a0cb69a4e167a439adb24f0582166f3e7a74072ba5ccfc5482948a6a423c6684dcee4dda7f0170f6eea2e86292087818a -doccontainersize 368976 -doccontainerchecksum 0722ad2a511709f68254c97cce7eac6a2e0d5b452d146dcb9f264f385444d6f92021161378cfadd1c26442696e2fcee3cab7a720ce4a68463f4eccacb11639a0 -docfiles size=92 +containersize 4164 +containerchecksum a88227b8f3b8adcfb3de271307e97c13db9da52c9446efa69ebc9b12289a59b2b92b608dd87dadf4837f0501599b74775671cc4e529a99ef37035dbe171cd66c +doccontainersize 377076 +doccontainerchecksum 4acb0dcab63edd326db7736bf4632f375e4e1dabb1eab0969c0255312f6207871f087cf81e2a01bbfdb99ce956e568d6331cd82346feeae966331569d2f0c3a2 +docfiles size=95 RELOC/doc/latex/xsavebox/ChangeLog RELOC/doc/latex/xsavebox/README RELOC/doc/latex/xsavebox/xsavebox.pdf details="Package documentation" -srccontainersize 4180 -srccontainerchecksum 6064e060001f189f8a58b5fe3de87d68366d48bea8c6b0ad8e41f32ef6eb0d87dd12662aa8ad27e89b8701c32822503f6bc830837f7c33ba46ef3a9db651fa48 +srccontainersize 4220 +srccontainerchecksum 5843edad34701520c35763cbe3b66523a67f11299affdf4ffcd213ac3abc8d67b9e7cce05610132fcbad3639412f1fe04df15887d1e671c06ef066a0f859f231 srcfiles size=3 RELOC/source/latex/xsavebox/xsavebox.tex runfiles size=3 RELOC/tex/latex/xsavebox/xsavebox.sty catalogue-contact-repository https://gitlab.com/agrahn/xsavebox catalogue-ctan /macros/latex/contrib/xsavebox -catalogue-license lppl1.3 -catalogue-topics boxing pdf-feat adobe-distiller -catalogue-version 0.16 +catalogue-license lppl +catalogue-topics boxing pdf-feat adobe-distiller expl3 +catalogue-version 0.18 name xsim category Package -revision 57619 +revision 61988 shortdesc eXercise Sheets IMproved relocated 1 longdesc This package helps in creating exercises and the corresponding longdesc solutions. It is the official successor of the exsheets package longdesc and fixes/improves various long-standing issues. -containersize 32212 -containerchecksum 37325711b273ad2f2b5fb762f91ec4a0373c92d6b0f418a68d0560c1d83c8d9c673b7cfbe93bab446f61209ae2d49b298aefd6da43b0be9732be5cd996125910 -doccontainersize 2998504 -doccontainerchecksum 2b0c825844d220efe5d4bf77ae53e0a155a5b8603630b361b45b4267083b15b3d7149d1d4fab1191064b3edc650195eb4497e0370c06ff39a93d673adafcb9f6 -docfiles size=927 +containersize 32648 +containerchecksum daaf1cc1ac8c34c4a63de3a16baabbcb661177172892bf4bf85e588cd150e8736b5b3ef382656c4ca5e3486f93889bfe00a9895988284a3fde84caf222e9744c +doccontainersize 3026636 +doccontainerchecksum a020e1c60dd909ad48607b315e63d2225a9a884f2939f1cba2a783e9336b86dc002e1fd771469daae9a4c16d80b4c9263f04a545b270ad666749d5d4536d3e7c +docfiles size=933 RELOC/doc/latex/xsim/HISTORY RELOC/doc/latex/xsim/README details="Readme" RELOC/doc/latex/xsim/examples/xsim.blanks.pdf @@ -338163,7 +353191,6 @@ docfiles size=927 RELOC/doc/latex/xsim/examples/xsim.texsx-369803.tex RELOC/doc/latex/xsim/examples/xsim.texsx-370642.pdf RELOC/doc/latex/xsim/examples/xsim.texsx-370642.tex - RELOC/doc/latex/xsim/examples/xsim.texsx-391530-exercises.tex RELOC/doc/latex/xsim/examples/xsim.texsx-391530.pdf RELOC/doc/latex/xsim/examples/xsim.texsx-391530.tex RELOC/doc/latex/xsim/examples/xsim.texsx-395273.pdf @@ -338188,7 +353215,7 @@ docfiles size=927 RELOC/doc/latex/xsim/examples/xsim.various.tex RELOC/doc/latex/xsim/xsim-manual.pdf details="Package documentation" RELOC/doc/latex/xsim/xsim-manual.tex -runfiles size=55 +runfiles size=57 RELOC/tex/latex/xsim/xsim-manual.cls RELOC/tex/latex/xsim/xsim.sty RELOC/tex/latex/xsim/xsim.style.layouts.code.tex @@ -338198,7 +353225,7 @@ catalogue-contact-repository https://github.com/cgnieder/xsim/ catalogue-ctan /macros/latex/contrib/xsim catalogue-license lppl1.3c catalogue-topics exercise exam expl3 -catalogue-version 0.20c +catalogue-version 0.21 name xskak category Package @@ -338244,7 +353271,7 @@ catalogue-version 1.5 name xstring category Package -revision 49946 +revision 65551 shortdesc String manipulation for (La)TeX relocated 1 longdesc The package provides macros for manipulating strings -- testing @@ -338254,11 +353281,11 @@ longdesc position of, or number of recurrences of, a substring. The longdesc package works equally in Plain TeX and LaTeX (though e-TeX is longdesc always required). The strings to be processed may contain longdesc (expandable) macros. -containersize 11216 -containerchecksum 82254f103053d91eeea4c6230142de06138c392542cac63731c7b34fec5130984bbdebc29ac3b56998717dca11ad444c44f410215b6b89e6748029721a9daac6 -doccontainersize 656876 -doccontainerchecksum c0c17b82ad0d5aad95d312935e0214a7e5404a23b9a284a56ac92ec9ea936a9bfd3a68a5b01e29c131b7850a3fd3922ac87020166eaf0a7ed9d695dc80d0a931 -docfiles size=229 +containersize 11224 +containerchecksum d747f0eabed48e6d3053b02bca43df476dbaa7f705a1b60c8b9e3e518ecd61af8449122b6a230f2af41966ca0c14c16e7e46b95e124c4dffd898ca4299af7a17 +doccontainersize 834512 +doccontainerchecksum a3ad8bc25db266e50fff99ef28def0ad2b68b7c31d382f256b49f90d5fc300800166cd10e255679535bafc2b6196df4ec94df1ab7d82ac42473b51d2226f11ac +docfiles size=301 RELOC/doc/generic/xstring/README details="Readme" RELOC/doc/generic/xstring/test_etex.pdf RELOC/doc/generic/xstring/test_etex.tex @@ -338271,12 +353298,10 @@ docfiles size=229 runfiles size=13 RELOC/tex/generic/xstring/xstring.sty RELOC/tex/generic/xstring/xstring.tex -catalogue-contact-bugs https://framagit.org/unbonpetit/xstring/issues -catalogue-contact-repository https://framagit.org/unbonpetit/xstring/tree/master catalogue-ctan /macros/generic/xstring catalogue-license lppl1.3c catalogue-topics string -catalogue-version 1.83 +catalogue-version 1.85 name xtab category Package @@ -338377,7 +353402,7 @@ catalogue-version 0.981 name xurl category Package -revision 57265 +revision 61553 shortdesc Allow URL breaks at any alphanumerical character relocated 1 longdesc This package loads url by default and defines possible URL @@ -338385,11 +353410,11 @@ longdesc breaks for all alphanumerical characters, as well as = / . : * longdesc - ~ ' " All arguments which are valid for url can be used and longdesc will be passed on to this package. For more information read longdesc the documentation of url itself. -containersize 1612 -containerchecksum 51251afe43f9b175e4afd901f10edd63bad590b0591f117d423866ed1a82e2c0ab35dee7e03250c331f8a8605f9c6ba8357e93ef0aa80d40dc03379bde24dd1c -doccontainersize 58020 -doccontainerchecksum df7e35d13f340c44813e0656c36148b92319a7099ae47eb02513d33834b642528eff2e81299aa670c2a4572e78c830d48c83b46996700e9fb568db16b84f1e57 -docfiles size=18 +containersize 1600 +containerchecksum df2570d0eefb64df3a0533237ea09f00b9e22be0000134b32de40198649a6e98ee48a31d769dc750847672be7e3577fcd8eabe25e1ae8ee493d77e40ce684147 +doccontainersize 49152 +doccontainerchecksum e02cceecac468713453432e118dd1cbe3f872a4dc33fcbdfc769861f353ac4ff5c117f51197b297a4eadf295f75f1f0254585ef0a48909aa004f4a598d796491 +docfiles size=16 RELOC/doc/latex/xurl/Changes RELOC/doc/latex/xurl/README.md details="Readme" RELOC/doc/latex/xurl/xurl.pdf details="Package documentation" @@ -338399,19 +353424,20 @@ runfiles size=2 catalogue-ctan /macros/latex/contrib/xurl catalogue-license lppl1.3 catalogue-topics verbatim -catalogue-version 0.09a +catalogue-version 0.10 name xwatermark category Package -revision 28090 +revision 61719 shortdesc Graphics and text watermarks on selected pages relocated 1 longdesc The package extends the author's draftmark and the watermark -longdesc packages. -containersize 16524 -containerchecksum 705c9eeccda8b2475cee782f6bb167691e985324361e6dbf147ef9843489f572f2e0b9e47a9f2beb7fdce68ef12ba2bbcb2ccf23c39db489d7d4486f09ff5787 +longdesc packages. It is currently unmaintained and does not work with +longdesc modern LaTeX releases. +containersize 16544 +containerchecksum c8b7e89cb39ef5b3f01f24a89cbdce729ad2061a0b3a1ef504933ab7e116b4b67ba8f1a68db74d46839bfbb60cecad4fc459fdd5d913716ad6542d8952ffd926 doccontainersize 582912 -doccontainerchecksum 70436c9927ed6c3c7604e1e70fa877b9be80287a18d9257abc85526fd756be5b0712b28b47b3271787f6ab062743964ca6eb5204005fec33c3a63d2dcab960ed +doccontainerchecksum a812651c587a76e086076bc8c810dc218431b40aad223644001f42d098962a401246781e0f83789afb3407fd93a0379755f82e30d815c14b4bc72499a9d8d26e docfiles size=187 RELOC/doc/latex/xwatermark/README details="Readme" RELOC/doc/latex/xwatermark/xwatermark-examples1.tex @@ -338598,7 +353624,7 @@ catalogue-version 5.06 name xypic category Package -revision 31859 +revision 61719 shortdesc Flexible diagramming macros relocated 1 longdesc A package for typesetting a variety of graphs and diagrams with @@ -338607,10 +353633,10 @@ longdesc AMS-LaTeX, AMS-TeX, and plain TeX). The distribution includes longdesc Michael Barr's diag package, which was previously distributed longdesc stand-alone. execute addMixedMap xypic.map -containersize 709808 -containerchecksum 5bf1323499bd801e2d5e9ca2eaaf3d7726ed6b8063dee18180eec775ea4d2f86cca8bcae262375455af64ae00951a41b34386fd90666a2a89114a2fcf23ccb7f -doccontainersize 3923196 -doccontainerchecksum cee264a3a8ee8f599b2310b4c9b722835a61fe8455c3f873ba91ad22ac7890cff8a1ef25f3d0b80aedd6420f31742f4e533fe20fc81dc83e4cc018684180c7ff +containersize 709788 +containerchecksum 431451f2028cc87d2d22b4d6ce95ac8f216755da312301195ba7af46146382cf76c27f9964a94817e90afdcdbc7a01dbd887d45808296984fa0b3a3a1770b46d +doccontainersize 3923200 +doccontainerchecksum 9664336d5bd14145603a8c3e861f8fdf062cd4587b8f739a29d93ac78a946c06a0985da4f011030df575276bd43555e55ba467eb4c640d60b2db0a07be706908 docfiles size=1062 RELOC/doc/generic/xypic/CATALOG RELOC/doc/generic/xypic/COPYING @@ -338833,7 +353859,7 @@ runfiles size=575 RELOC/tex/generic/xypic/xyweb.tex RELOC/tex/generic/xypic/xyxdvi.tex catalogue-also xypic-tut-pt -catalogue-contact-home http://tug.org/applications/Xy-pic/Xy-pic.html +catalogue-contact-home https://tug.org/applications/Xy-pic/Xy-pic.html catalogue-ctan /macros/generic/diagrams/xypic catalogue-license gpl catalogue-topics diagram @@ -338979,6 +354005,29 @@ catalogue-license lppl1.3 catalogue-topics letter catalogue-version 1.1 +name yamlvars +category Package +revision 64949 +shortdesc A YAML parser and tool for easy LaTeX definition creation +relocated 1 +longdesc This LuaLaTeX package provides a YAML parser and some functions +longdesc to declare and define LaTeX definitions using YAML files. +containersize 6064 +containerchecksum aaa024a9796daeed1546700c253805ee3d503acaf88ebef7e277981aa56f96ec4008792fbf2ec4fa2118154b2b96771cd65782e348a4e12452945234eeed3f78 +doccontainersize 77788 +doccontainerchecksum fa1349e1024619f0e7536c14681c306b96a76961086f42ab293acc2d1ab44dcbf78b83281406f13ff3c9083c0a3b62a30780696350923d8c3199551a362e14ab +docfiles size=26 + RELOC/doc/lualatex/yamlvars/README.md details="Readme" + RELOC/doc/lualatex/yamlvars/yamlvars.pdf details="Package documentation" + RELOC/doc/lualatex/yamlvars/yamlvars.tex +runfiles size=6 + RELOC/tex/lualatex/yamlvars/yamlvars.lua + RELOC/tex/lualatex/yamlvars/yamlvars.sty +catalogue-contact-repository https://github.com/kalekje/yamlvars +catalogue-ctan /macros/luatex/latex/yamlvars +catalogue-license mit +catalogue-topics luatex data-import + name yannisgr category Package revision 22613 @@ -339050,7 +354099,7 @@ catalogue-topics font font-mf font-greek greek name yathesis category Package -revision 58683 +revision 66146 shortdesc A LaTeX class for writing a thesis following French rules relocated 1 longdesc The purpose of yathesis is to facilitate the typesetting of @@ -339068,16 +354117,17 @@ longdesc doc/latex/yathesis/french/exemples/ directory in the longdesc distribution. They can also be tested on ShareLaTeX (template longdesc and specimen) and on Overleaf (template and specimen). Note: longdesc The "ya" in the package name stands for "yet another". -containersize 23336 -containerchecksum 199abb5d02a37420e1c382916880428d5426eacaf007e3e264bf257710823d8380fd0bb69c40065d7259e28769dff4d6c90bd55a5fb931b6497d64b106e9c7cf -doccontainersize 4725256 -doccontainerchecksum 1beedc083923302c094a4f2c7091743c87188292b8633646877c575e1bb724f42b171805f0ce39f615c7485769f191676310e1f5257c0f4c03aa65ec3309c4cb -docfiles size=3218 +containersize 23668 +containerchecksum a14b12050bd99d7fdf4cbad2962b35976ec86e80944f8aca2bdfedec64d703c74081d107bff1704132e73df47002426c39d22a655acdd7c0d98857ed9191cf86 +doccontainersize 5201052 +doccontainerchecksum 6a1877cbca94a367afa8c6129bf8c6264e2c7203764fa451137113470d7899a40b195db8327ad84249b9f9c8d41698dd0c7a7b6b2754b8205e3bf8e8b533f545 +docfiles size=3336 RELOC/doc/latex/yathesis/CHANGELOG.md RELOC/doc/latex/yathesis/README.md details="Readme" RELOC/doc/latex/yathesis/addons/completion/yathesis.cwl RELOC/doc/latex/yathesis/english/README-TRANSLATION.md RELOC/doc/latex/yathesis/french/canevas-specimen.zip + RELOC/doc/latex/yathesis/french/code/yathesis-code.pdf RELOC/doc/latex/yathesis/french/documentation/annexes/add-ons.tex RELOC/doc/latex/yathesis/french/documentation/annexes/aspects.tex RELOC/doc/latex/yathesis/french/documentation/annexes/compilation.tex @@ -339125,6 +354175,7 @@ docfiles size=3218 RELOC/doc/latex/yathesis/french/documentation/liminaires/abstract.tex RELOC/doc/latex/yathesis/french/documentation/liminaires/fixed-footnotes.tex RELOC/doc/latex/yathesis/french/documentation/liminaires/titre.tex + RELOC/doc/latex/yathesis/french/documentation/logoulcofondblanc.pdf RELOC/doc/latex/yathesis/french/documentation/tableaux/commande-chapter-section.tex RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions-standard.tex RELOC/doc/latex/yathesis/french/documentation/tableaux/expressions.tex @@ -339143,12 +354194,12 @@ docfiles size=3218 RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/these.tex RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/tiger.pdf RELOC/doc/latex/yathesis/french/exemples/specimen/a-plat/ulco.pdf -srccontainersize 50924 -srccontainerchecksum 7c99e72a3ef76aae6f5e4ea77d78cd6cd2c98c7163b468e317f4de72734a3e4e8c2698b93dbc82df20f5b8197905f9f253b5d652debd6fa0c0d5377cc2015611 -srcfiles size=67 +srccontainersize 54676 +srccontainerchecksum 753983fa303512e3a505f43ec14a626f42e20702f90c52bcb522378c9f2c6b0d0ce5b7888b4c1ca923812a79d1335573fe9d95493dc4d844dac2b757d67b4a25 +srcfiles size=71 RELOC/source/latex/yathesis/yathesis-samples-templates.dtx RELOC/source/latex/yathesis/yathesis.dtx -runfiles size=36 +runfiles size=37 RELOC/tex/latex/yathesis/yathesis-demo.sty RELOC/tex/latex/yathesis/yathesis-translations.tex RELOC/tex/latex/yathesis/yathesis.cls @@ -339157,7 +354208,7 @@ catalogue-contact-repository https://github.com/dbitouze/yathesis catalogue-ctan /macros/latex/contrib/yathesis catalogue-license lppl1.3c catalogue-topics class dissertation french -catalogue-version 1.0.7 +catalogue-version 1.0.11 name yax category Package @@ -339192,16 +354243,16 @@ catalogue-version 1.03 name yazd-thesis category Package -revision 51725 +revision 61719 shortdesc A template for the Yazd University relocated 1 longdesc This package offers a document class for typesetting theses and longdesc dissertations at the Yazd University. The class requires use of longdesc XeLaTeX. -containersize 5988 -containerchecksum 9f8350ad1d606769e5c5825bfa92832775ca7a120287013119f01e3cdd54b052a9bf51cce2c7350e5f7241b4817a4b840590bade6c07646fc519be5ba2d9e11b +containersize 5952 +containerchecksum d19e817cc925a0ea08e1b15f3a2b1d6ee4b7a8f9ac420dfa7b6db7cc55b5a24777125a0be7923707606b215ec95044fdf16a2f8a5e5682d8403cf6857dc3252e doccontainersize 2170868 -doccontainerchecksum 315a82c7e548df4c971d9281f5da6e58a58282a3b05ab23eb41befe4cbe56b278d9a975c920d10cbd387f8809a2301ce800b9fc1c482dd6c3821040ac5911aa0 +doccontainerchecksum b065c1fabfa4eb394b5ffd3ed048a42c005cb183c82027d5ce1d21e53c2a35f8c0d3647156567f47cdced936ed061fcf303651d024fe3050e8a135c693ea8c28 docfiles size=1103 RELOC/doc/xelatex/yazd-thesis/MyReferences.bib RELOC/doc/xelatex/yazd-thesis/README details="Readme" @@ -339258,12 +354309,74 @@ docfiles size=1103 RELOC/doc/xelatex/yazd-thesis/yazd-thesis.tex runfiles size=6 RELOC/tex/xelatex/yazd-thesis/yazd-thesis.cls -catalogue-contact-home http://yazd-thesis.blog.ir/ catalogue-ctan /macros/xetex/latex/yazd-thesis catalogue-license lppl1.3c catalogue-topics class dissertation persian xetex catalogue-version 0.3 +name yb-book +category Package +revision 64586 +shortdesc Template for YB Branded Books +relocated 1 +longdesc This template helps the author design books published on Amazon +longdesc under the "Y.B." brand. You are welcome to use it too for your +longdesc own books. +depend anyfontsize +depend biblatex +depend bigfoot +depend changepage +depend chngcntr +depend csquotes +depend enumitem +depend fancyhdr +depend float +depend footmisc +depend geometry +depend ifmtarg +depend imakeidx +depend lastpage +depend libertine +depend mdframed +depend microtype +depend needspace +depend paralist +depend pgf +depend qrcode +depend setspace +depend soul +depend titlesec +depend titlesec +depend ulem +depend wrapfig +depend wrapfig +depend xcolor +depend xifthen +depend xkeyval +depend zref +containersize 3788 +containerchecksum dea52e5aee243d84ad52bb5eb61957e05b500ea9caf36360fd587d0a38ebb602f2821e040e3acf41e8318c0ce491f3bdcb5a477ef65be7b41ec2fe12df680542 +doccontainersize 282532 +doccontainerchecksum ecb2ed5bf434f96aacd7422bc815cdc8b69c307475f8f71b8b8b5bc2aad916d1db1394eeaf3b7ddd54e3bf7dc059574c821f2d44f9247103153fb5ef3f40f02d +docfiles size=75 + RELOC/doc/latex/yb-book/DEPENDS.txt + RELOC/doc/latex/yb-book/LICENSE.txt + RELOC/doc/latex/yb-book/README.md details="Readme" + RELOC/doc/latex/yb-book/yb-book-logo.pdf + RELOC/doc/latex/yb-book/yb-book.pdf details="Package documentation" +srccontainersize 6328 +srccontainerchecksum 20080fd53bc9c749632236d710972bac2db0ab0a7c3cd4a1b39fdc1226a2279332dca41856647b6132f033f381de798b8dc522ba3199e747ea15e5ca571d71c8 +srcfiles size=6 + RELOC/source/latex/yb-book/yb-book.dtx + RELOC/source/latex/yb-book/yb-book.ins +runfiles size=3 + RELOC/tex/latex/yb-book/yb-book.cls +catalogue-contact-repository https://github.com/yegor256/yb-book +catalogue-ctan /macros/latex/contrib/yb-book +catalogue-license mit +catalogue-topics class doc-templ book-pub +catalogue-version 0.2.0 + name ycbook category Package revision 46201 @@ -339293,7 +354406,7 @@ catalogue-topics book-pub class name ydoc category Package -revision 56291 +revision 64887 shortdesc Macros for documentation of LaTeX classes and packages relocated 1 longdesc The package provides macros and environments to document LaTeX @@ -339304,15 +354417,26 @@ longdesc xcolor, hyperref packages, etc.) This is an alpha release, and longdesc should probably not (yet) be used with other packages, since longdesc the implementation might change. Nevertheless, the author uses longdesc it to document his own packages. -containersize 9196 -containerchecksum 59c30887f6f7e5efb1aadd24b63fe15489f99c7af2f448aeb4e8cc10e846831df2061aa470e8bd104f7ae86dd438bb65a91e7666c68a5ecc18b607adf6962c97 -doccontainersize 321388 -doccontainerchecksum 74d2d0ea05849b280aba78ed0f3ac409cb379938166e791c2fbc77f3bb792e4df3bba287912b6bd35ad9e99592f8b36ff2113ab8c667ad58374dc20298af9121 -docfiles size=81 - RELOC/doc/latex/ydoc/README details="Readme" +depend etoolbox +depend float +depend hyperref +depend listings +depend needspace +depend newverbs +depend showexpl +depend tools +depend url +depend xcolor +containersize 9452 +containerchecksum 116d4be9a7ca06f90967c85a696e893a85555402acf400c0251a71f4d43a5ad244ee041518d4408b6627610ff87792f07ab51309303e442159bce46025d5a27c +doccontainersize 332412 +doccontainerchecksum 714ff9f1fc20d9f3e5effe9159935a45662f7f8dde9be0371055a3e178b9a74618046c1f4ba67cd1b89b6b0abfdf41de2716a097e67138d42f733ece3edb028d +docfiles size=86 + RELOC/doc/latex/ydoc/DEPENDS.txt + RELOC/doc/latex/ydoc/README.md details="Readme" RELOC/doc/latex/ydoc/ydoc.pdf details="Package documentation" -srccontainersize 17476 -srccontainerchecksum 3b09eb1036668097dc185595a8ed703b99f83cab068ab8221385d8ca3dfa73b476478f337adb1ed273554c6c2011f0f03ae1b4138a5d1f62268cbf892e70051c +srccontainersize 17692 +srccontainerchecksum 1a4d7c462316b3d2689b5121d81af8ff7847909e039564a0d66c859607e5c4fa573dbc607cffbd73223f48f471847057fbfeeb71a31947b5b1a8c02eb88eb35b srcfiles size=20 RELOC/source/latex/ydoc/ydoc.dtx runfiles size=14 @@ -339326,13 +354450,38 @@ runfiles size=14 RELOC/tex/latex/ydoc/ydoc.cls RELOC/tex/latex/ydoc/ydoc.sty catalogue-also ltxdoc doc xdoc gmdoc codedoc nicetext showexpl -catalogue-contact-bugs https://sourceforge.net/p/ydoc/tickets/ -catalogue-contact-home https://sourceforge.net/p/ydoc/ -catalogue-contact-repository https://sourceforge.net/p/ydoc/code/ci/default/tree/ +catalogue-contact-bugs https://github.com/MartinScharrer/ydoc/issues +catalogue-contact-home https://github.com/MartinScharrer/ydoc +catalogue-contact-repository https://github.com/MartinScharrer/ydoc.git catalogue-ctan /macros/latex/contrib/ydoc -catalogue-license lppl1.3 +catalogue-license lppl1.3c catalogue-topics doc-supp class macro-demo -catalogue-version 0.6alpha +catalogue-version 0.7alpha + +name yet-another-guide-latex2e +category Package +revision 65714 +shortdesc A short guide to using LaTeX2e to typeset high quality documents +relocated 1 +longdesc This document is a short guide to using LaTeX2e to typeset high +longdesc quality documents. It focuses on users of Windows and guides +longdesc the reader through installation, some of LaTeX's conventions, +longdesc and creating the front matter, body and end matter. The +longdesc appendices contain a list of useful facilities not otherwise +longdesc covered in this document and a list of helpful resources. +containersize 572 +containerchecksum ed532ed8d95cc68793956533f91e331d71618d7d9371d8d7996e1bab06cabc636e2d130e1af2e17ca86ffe4072ed2a8477b33e96451d94c926bfded1c0f592ca +doccontainersize 912720 +doccontainerchecksum cb9817e571faab5dde69dc2e7adbac59cb6437f33444a289e9dc61d4f4db10958e0206e8a369d873667963cfa754f176bb0b9767a12632950cf5e9a4327805d9 +docfiles size=257 + RELOC/doc/latex/yet-another-guide-latex2e/README details="Readme" + RELOC/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v11.pdf details="The document itself" + RELOC/doc/latex/yet-another-guide-latex2e/Yet-Another-Guide-LaTeX2e_v11.tex +catalogue-alias startlatex2e +catalogue-ctan /info/yet-another-guide-latex2e +catalogue-license fdl +catalogue-topics tut-latex +catalogue-version 1.1 name yfonts category Package @@ -339367,6 +354516,38 @@ catalogue-license lppl catalogue-topics font-supp catalogue-version 1.4 +name yfonts-otf +category Package +revision 65030 +shortdesc OpenType version of the Old German fonts designed by Yannis Haralambous +relocated 1 +longdesc This is an OpenType version of the Old German fonts yfrak, +longdesc ygoth, yswab designed by Yannis Haralambous in Metafont. The +longdesc OpenType features make it easier to deal with the long/round s +longdesc and with older forms of umlauts (small e over the letter). A +longdesc style file yfonts-otf.sty is provided as a replacement, for +longdesc LuaLaTeX and XeLaTeX, of yfonts.sty or oldgerm.sty. +containersize 55740 +containerchecksum cc1587d41121f8e15b3b659f2620c0324fb35b46a6914843c3abebb7c4fa0b30e85e59a2de603128d8015d68edd1e16b8cb02a9dacdd49c04dd3a602d1ee0148 +doccontainersize 157160 +doccontainerchecksum 47d025d7a7d3a65803c1ebc318e13adbf371b5bc7720d7a5be5b839246906fbd963c4ba2147ad37aca5313f3ba95d361e19f87bf6d77b99e150bd96a29461f0c +docfiles size=48 + RELOC/doc/fonts/yfonts-otf/Erlkonig.ltx + RELOC/doc/fonts/yfonts-otf/Erlkonig.pdf details="Example of use" + RELOC/doc/fonts/yfonts-otf/README.md details="Readme" + RELOC/doc/fonts/yfonts-otf/yfonts-otf.ltx + RELOC/doc/fonts/yfonts-otf/yfonts-otf.pdf details="Package documentation" +runfiles size=37 + RELOC/fonts/opentype/public/yfonts-otf/yfrak.otf + RELOC/fonts/opentype/public/yfonts-otf/ygoth.otf + RELOC/fonts/opentype/public/yfonts-otf/yswab.otf + RELOC/tex/latex/yfonts-otf/oldgerm-otf.sty + RELOC/tex/latex/yfonts-otf/yfonts-otf.sty +catalogue-ctan /fonts/yfonts-otf +catalogue-license ofl lppl1.3 +catalogue-topics font font-otf font-gothic font-supp +catalogue-version 0.43 + name yfonts-t1 category Package revision 36013 @@ -339589,15 +354770,6 @@ containerchecksum 414e71a5179232a6bd76c62267468f39d62ed99ddab384df3bbb9d2afdacb7 binfiles arch=armhf-linux size=1 bin/armhf-linux/yplan -name yplan.i386-cygwin -category Package -revision 34398 -shortdesc i386-cygwin files of yplan -containersize 332 -containerchecksum 5be7a05812eddd23541b9cd2a1997332a2d2c24a3c42533fe89f923b87047e78f680e62d015254427fef440ce4944da1b9864517b83779dedf2b2717ee26446a -binfiles arch=i386-cygwin size=1 - bin/i386-cygwin/yplan - name yplan.i386-freebsd category Package revision 34398 @@ -339643,14 +354815,14 @@ containerchecksum a4ac81af1a2d20e63cbb1fcd525926fc6010c26a44948436d2ae16180d45b3 binfiles arch=universal-darwin size=1 bin/universal-darwin/yplan -name yplan.win32 +name yplan.windows category Package -revision 34398 -shortdesc win32 files of yplan -containersize 680 -containerchecksum abfda78d396aab73b4d172d7846f05d95c38a300efb96b960325f8ac88926ec14e96b09ddc0c19288c7e606c9502d315e2b7a14ca473c3a2517237170723b08a -binfiles arch=win32 size=1 - bin/win32/yplan.exe +revision 65891 +shortdesc windows files of yplan +containersize 2304 +containerchecksum a9c0d70838aee0074c2eb71e6725ae9673eee0ddadf0d5182c0cb3797000628720c5312b459d181e344121f3bb43cc6910395cbde3dab889208a3c56459f2efb +binfiles arch=windows size=2 + bin/windows/yplan.exe name yplan.x86_64-cygwin category Package @@ -339699,7 +354871,7 @@ binfiles arch=x86_64-solaris size=1 name yquant category Package -revision 58712 +revision 65933 shortdesc Typesetting quantum circuits in a human-readable language relocated 1 longdesc This LaTeX package allows to quickly draw quantum circuits. It @@ -339712,11 +354884,11 @@ longdesc i.e., it requires no external program -- that introduces a longdesc logic oriented language and thus brings the best of both worlds longdesc together. It builds on and interacts with TikZ, which brings an longdesc enourmous flexibility for customization of individual circuit. -containersize 45296 -containerchecksum 90c4488ffbb6a2ec49297b7584c27416044220253fb7f20104402062e57df415d0f89dd4545b4964e5c3ca28851cc4762301151963d0be74200f7809ec31f494 -doccontainersize 535904 -doccontainerchecksum ada2f983ef92968da06bbf21371b58ce02a257992160e898ad75a66fbb7aae3fbb00178d2663e1d816e3928eb187f44b50c812239f0c1b5861786ad9d5ccf812 -docfiles size=234 +containersize 57164 +containerchecksum bfcccf8765e13e0b8a42d83fe018e29aa6b3727bb3117228776396a7bc3604c4c63b652444b6b1c7c3237651b2f90da8e914949a24c3a2ee17611841ce7e7bdb +doccontainersize 826216 +doccontainerchecksum 2e93b16b5dac1c9d513714624fcdcf0821bbfc8ad6510d20fe280feecbd0944308f575fce03fd9a258494ab9f81e187f7e4ddf285c3972643951f2b3373e4119 +docfiles size=348 RELOC/doc/latex/yquant/README.md details="Readme" RELOC/doc/latex/yquant/test1.qasm RELOC/doc/latex/yquant/test10.qasm @@ -339738,7 +354910,7 @@ docfiles size=234 RELOC/doc/latex/yquant/test9.qasm RELOC/doc/latex/yquant/yquant-doc.pdf details="Package documentation" RELOC/doc/latex/yquant/yquant-doc.tex -runfiles size=78 +runfiles size=100 RELOC/tex/latex/yquant/yquant-circuit.tex RELOC/tex/latex/yquant/yquant-config.tex RELOC/tex/latex/yquant/yquant-draw.tex @@ -339750,17 +354922,18 @@ runfiles size=78 RELOC/tex/latex/yquant/yquant-shapes.tex RELOC/tex/latex/yquant/yquant-tools.tex RELOC/tex/latex/yquant/yquant.sty + RELOC/tex/latex/yquant/yquantlanguage-groups.sty RELOC/tex/latex/yquant/yquantlanguage-qasm.sty catalogue-contact-bugs https://github.com/projekter/yquant/issues catalogue-contact-home https://github.com/projekter/yquant catalogue-ctan /graphics/pgf/contrib/yquant catalogue-license lppl1.3c catalogue-topics graphics diagram-circ pgf-tikz -catalogue-version 0.4 +catalogue-version 0.7.3 name ytableau category Package -revision 27430 +revision 59580 shortdesc Many-featured Young tableaux and Young diagrams relocated 1 longdesc The package provides several functions for drawing Young @@ -339768,15 +354941,15 @@ longdesc tableaux and Young diagrams, extending the young and youngtab longdesc packages but providing lots more features. Skew and coloured longdesc tableaux are easy, and pgfkeys-enabled options are provided longdesc both at package load and configurably. -containersize 3060 -containerchecksum 2d9528c47b516213d0d8ea6341edc1772aa4a88a7db60d4506cbef107be034bcb9036b18f61a12e042e95bd9d0aea51b0ee696565841d2efb12b442756c48a30 -doccontainersize 360820 -doccontainerchecksum 47db377bfecce43d97e573360cfc65936664b5ea886b5bc0042b39e3a879becef0e9894c364a31cb4cda7420ba672c8f55e7936ae5b1d291259d8deb7a6d9f9d -docfiles size=90 +containersize 3068 +containerchecksum 23bf33f11e295f5f36149bad2b801ecfee57b386dd952ea93b16e79f85c54e1edff741bb7d6dc7faa769062ff81277cf04ff06cb2fb92e9a7542b4dc93eebb0b +doccontainersize 378896 +doccontainerchecksum b98b0da2e5e0eb964ede56a27067b7ba862b63dd1b0dc6771e432abb16e924fda5630d067c6bbb05fdf6a37aba07c61396d47612adcfcccd5886ff3fdd47b7a4 +docfiles size=97 RELOC/doc/latex/ytableau/README details="Readme" RELOC/doc/latex/ytableau/ytableau.pdf details="Package documentation" -srccontainersize 15896 -srccontainerchecksum 02c2aff53daaec5161a9715de2e633d03dedc85664868d73c49dc0edc5c8b0bc696e3e8ab6d25f3420663fcff830581a7b2fdd0718a3c4928aa808ca3b1cbde3 +srccontainersize 16032 +srccontainerchecksum 264f983cb28ddd4f2089b4d170603172cce27b463999e4806173106e384bd4c3be16ada6f0c2e3c176dc450c53c2e50e43f993c893880ccf5c9454b84a062ea8 srcfiles size=15 RELOC/source/latex/ytableau/ytableau.dtx RELOC/source/latex/ytableau/ytableau.ins @@ -339786,13 +354959,13 @@ catalogue-also youngtab young catalogue-ctan /macros/latex/contrib/ytableau catalogue-license lppl1.2 catalogue-topics maths -catalogue-version 1.3 +catalogue-version 1.4 name zapfchan category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -339805,8 +354978,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uzc.map -containersize 79924 -containerchecksum 46a104a6e4d1cf681bf10bf22fa32510982939cf52dd255a7ec50e5a9f95acf72457195cee13499c6f517a7f2b03be8a285eb6730f659d59ee5aa42522ba34bb +containersize 79904 +containerchecksum a5a8a672e1753cd39b44dfb43b9b83673f7bd20dfb4e4640630ba0908c228dd75dda7933432d6d6f7e2c4920d554aa8cd41a523ebe665832edbc4aa7b8034332 runfiles size=59 RELOC/dvips/zapfchan/config.uzc RELOC/fonts/afm/adobe/zapfchan/pzcmi8a.afm @@ -339843,9 +355016,9 @@ catalogue-topics font font-type1 font-collection name zapfding category Package -revision 31835 +revision 61719 catalogue urw-base35 -shortdesc URW "Base 35" font pack for LaTeX +shortdesc URW 'Base 35' font pack for LaTeX relocated 1 longdesc A set of fonts for use as "drop-in" replacements for Adobe's longdesc basic set, comprising: Century Schoolbook (substituting for @@ -339858,8 +355031,8 @@ longdesc Chancery L Medium Italic (substituting for Adobe's Zapf longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). execute addMap uzd.map -containersize 46964 -containerchecksum e3e6e69b82858d8bd653bcb112ed81b8b5aacc0b915b5e4ed4288f5aef896211e75b85b1b647989e0ffa431ec204a9d8ad27b2e60bc2b28eea83eb3518945bf1 +containersize 46944 +containerchecksum 3e0503c2d4e30c8d727caa1d9438d4c6b12c3a15729eae65d5c4a8dd9ab0d0c8eee2f63138e9d267f4ae98ef7607388888f7acd78e189a5c322bda22827166fe runfiles size=24 RELOC/dvips/zapfding/config.uzd RELOC/fonts/afm/adobe/zapfding/pzdr.afm @@ -339877,35 +355050,35 @@ catalogue-topics font font-type1 font-collection name zbmath-review-template category Package -revision 58543 +revision 59693 shortdesc Template for a zbMATH Open review relocated 1 longdesc This package contains a template for zbMATH Open reviews. It longdesc will show what your review will look like on zbMATH Open and longdesc you can test whether your LaTeX-Code will compile on our longdesc system. The template has to be compiled using XeLaTeX and -longdesc relies on scrartcl, babel, scrlayer-scrpage, geometry, -longdesc graphicx, enumitem, fontspec, amsmath, amsfonts, amssymb, -longdesc mathtools, stmaryrd, mathrsfs, tikz-cd, textcomp, and gensymb. -containersize 1300 -containerchecksum aaadb2179f8c8c3b48dca8f4d021a51dd34863f7f3c30cb6705c07026218684038f398468a9b4a779d8a3cc4ab2520dadb81890690b173b20b1f5baf3644886b -doccontainersize 184640 -doccontainerchecksum 8bdf2cd42ba8cc24e55fcbf8061a2cbbcdd750d77f5ad3c613d721eec2ba164cc69a73a85382d5a2893121300ce2657f291d181c92d4b0f8a7b574229d6f97d9 -docfiles size=54 +longdesc relies on scrartcl, scrlayer-scrpage, amsfonts, amssymb, +longdesc amsmath, babel, enumitem, etoolbox, fontspec, gensymb, +longdesc geometry, graphicx, mathrsfs, mathtools, stmaryrd, textcomp, +longdesc tikz-cd, xcolor, and xparse. +containersize 2228 +containerchecksum c9685b151679e7516e146f3d97f4242c7cdf084f84a7ac857a8aa27031c60950d0da07d66b7b57d7bdec384d3501c30b339231654cf845bbed2945b0ac069368 +doccontainersize 208668 +doccontainerchecksum 470ee6c9895effd3c6bcac5a9faaa3862380bb137044411dd0013f4f465dc923dc1de507f2d1d087fb4b4178cb2f43f435e71b090d55744a8be6e59f8cc010fa +docfiles size=60 RELOC/doc/xelatex/zbmath-review-template/README.md details="Readme" RELOC/doc/xelatex/zbmath-review-template/figures/screenshot.png - RELOC/doc/xelatex/zbmath-review-template/zb-main.pdf - RELOC/doc/xelatex/zbmath-review-template/zb-main.tex + RELOC/doc/xelatex/zbmath-review-template/zb-example.pdf + RELOC/doc/xelatex/zbmath-review-template/zb-example.tex RELOC/doc/xelatex/zbmath-review-template/zb-manual.pdf details="Package documentation" RELOC/doc/xelatex/zbmath-review-template/zb-manual.tex - RELOC/doc/xelatex/zbmath-review-template/zb-metadata.tex - RELOC/doc/xelatex/zbmath-review-template/zb-review.tex -runfiles size=1 +runfiles size=2 RELOC/tex/xelatex/zbmath-review-template/zb-basics.sty + RELOC/tex/xelatex/zbmath-review-template/zbMATH.cls catalogue-ctan /macros/xetex/latex/zbmath-review-template -catalogue-license gpl3 +catalogue-license gpl3 cc-by-sa-4 catalogue-topics doc-templ xetex -catalogue-version 1.0 +catalogue-version 2.1 name zebra-goodies category Package @@ -339968,6 +355141,36 @@ catalogue-ctan /macros/latex/contrib/zed-csp catalogue-license other-free catalogue-topics formal-spec +name zennote +category Package +revision 65549 +shortdesc Streamline your note-taking process! +relocated 1 +longdesc This package aims to provide you with an easy interface to +longdesc speed up the process when organizing and producing elegant +longdesc notes. All the tables, figures, equations, and listings are +longdesc labelled according to the notenumber with the \titlebox +longdesc command. The noteframe environment helps you generate fancy +longdesc colored boxes to emphasize the important information (e.g. +longdesc Theorems, Equations, Proofs, etc.) in your document. You can +longdesc customize the style and color to denote different categories, +longdesc too. +containersize 1556 +containerchecksum 94f1e1a0550005c25206ac3e04216d35bc2b769b735160219ca246c95a85db5002bc74641e45152a31e8148e4d581bdb0024a3174eb735537d39ea1256f34365 +doccontainersize 57848 +doccontainerchecksum a2351fa77ebdbe035a60750c1362d6a04cef67be244ff5ce2f6a38cc6b8c3b5b96f4afcb15c43866393911e60446be6f5a4d384852a8a10101abae38bd309fc7 +docfiles size=21 + RELOC/doc/latex/zennote/README.txt details="Readme" + RELOC/doc/latex/zennote/zennote.pdf details="Package documentation" + RELOC/doc/latex/zennote/zennote.tex +runfiles size=1 + RELOC/tex/latex/zennote/zennote.sty +catalogue-contact-repository https://github.com/futurelyf/zennote +catalogue-ctan /macros/latex/contrib/zennote +catalogue-license cc-by-4 +catalogue-topics notes expl3 +catalogue-version 1.0.0 + name zhlineskip category Package revision 51142 @@ -345070,38 +360273,38 @@ catalogue-version 1.0 name zhnumber category Package -revision 54960 +revision 66115 shortdesc Typeset Chinese representations of numbers relocated 1 longdesc The package provides commands to typeset Chinese longdesc representations of numbers. The main difference between this longdesc package and CJKnumb is that the commands provided are longdesc expandable in the 'proper' way. -containersize 7872 -containerchecksum f9548c3e89e837f8967122de1b2ed45c083a741be3862824ef2bfb5b60bd0758e3f4360b2c1a1a886fb68da4947a77c6431c10339676db0b7518bc93db6c411f -doccontainersize 267108 -doccontainerchecksum 36de5c397a5966d5da5b71ee1a05b0e3d597782122e86dd184e146699fd5ecf08b6c2ed014bcaa86db8c9b2146d3863d8aa46078b94b33fb3fcf4a7a5a14f271 -docfiles size=68 +containersize 8604 +containerchecksum 080460cafa9f1b382d5843e7863eefb36a26abcdf8ef97d9a23fe4e68d1bf85e0e6a38c7201d1dbaf2d25acc7b846d757fab9f9b850d992a576b6df67929cb55 +doccontainersize 293936 +doccontainerchecksum c8f6b76b72f7b7bc19f2e6fe64191b86c4b73fa7559d3299945359a7d2205e3685c4eee98283f361207192fc35de0a7ae9064e118e20f96f832d18eacf93bf70 +docfiles size=75 RELOC/doc/latex/zhnumber/README.md details="Readme" RELOC/doc/latex/zhnumber/zhnumber.pdf details="Package documentation" language="zh" -srccontainersize 13368 -srccontainerchecksum 043029751abb4630fd1486dabea05f01a97557682cd00c7640e2c1fdf053b0bc5a99ba52debbdc6a98232cb5d8aef49cb68f17c1376f802c900c49f18e07c1f4 -srcfiles size=17 +srccontainersize 14436 +srccontainerchecksum 7a79592cda187221d2832db12e45923a03f110de7ae358304048a52d2e170853421cad0a50211c0894b700c98301cf949f1def35acacc7cf2d23789ff23ca4ea +srcfiles size=18 RELOC/source/latex/zhnumber/zhnumber.dtx RELOC/source/latex/zhnumber/zhnumber.ins -runfiles size=14 +runfiles size=16 RELOC/tex/latex/zhnumber/zhnumber-big5.cfg RELOC/tex/latex/zhnumber/zhnumber-gbk.cfg RELOC/tex/latex/zhnumber/zhnumber-utf8.cfg RELOC/tex/latex/zhnumber/zhnumber.sty catalogue-contact-bugs https://github.com/CTeX-org/ctex-kit/issues -catalogue-contact-home http://www.ctex.org/HomePage +catalogue-contact-home http://www.ctex.org catalogue-contact-repository https://github.com/CTeX-org/ctex-kit catalogue-contact-support https://github.com/CTeX-org/ctex-kit/issues catalogue-ctan /macros/latex/contrib/zhnumber catalogue-license lppl1.3c catalogue-topics chinese numbers -catalogue-version 2.8 +catalogue-version 3.0 name zhspacing category Package @@ -345160,19 +360363,44 @@ catalogue-license lppl catalogue-topics numbers catalogue-version 2.1 +name zitie +category Package +revision 60676 +shortdesc Create CJK character calligraphy practicing sheets +relocated 1 +longdesc This is a LaTeX package for creating CJK character calligraphy +longdesc practicing sheets (copybooks). Currently, only XeTeX is +longdesc supported. +containersize 9584 +containerchecksum 10769951705e67bb929643e39d5480c4c2337a68f59ede2d77b2f8ddc3e2d6363c873d0e8e480a85e02f2062736570fa74171c862e50af73efa941a4d93cdd58 +doccontainersize 345476 +doccontainerchecksum 84f8e20beec5ba5ffbd79c6ffa68f0530b285761a8de6ed53e621ef39c0c14f59c33d76373581f94f10b1149a9fe5c92c1c74bbe2c4d6b8aa589d3a574bd9153 +docfiles size=94 + RELOC/doc/xelatex/zitie/README.md details="Readme" + RELOC/doc/xelatex/zitie/zitie-cn.pdf details="Package documentation" language="zh" + RELOC/doc/xelatex/zitie/zitie-cn.tex +runfiles size=16 + RELOC/tex/xelatex/zitie/zitie.luatex.def + RELOC/tex/xelatex/zitie/zitie.sty + RELOC/tex/xelatex/zitie/zitie.xetex.def +catalogue-contact-repository https://github.com/Sophanatprime/zitie +catalogue-ctan /macros/xetex/latex/zitie +catalogue-license lppl1.3c +catalogue-topics chinese xetex expl3 +catalogue-version 1.4.0 + name zlmtt category Package -revision 51368 +revision 64076 shortdesc Use Latin Modern Typewriter fonts relocated 1 longdesc The package allows selection of Latin Modern Typewriter fonts -longdesc with scaling and access to all its features. The package -longdesc requires the mweights package. -containersize 3072 -containerchecksum b60e880508e08fc0a3f265b7d85c7ae8667c0a16264148a2944184a598f690f337149348157dc7b7b11f1cac59d44117425b50a26bbdaa0fbf1dcebb023093e6 -doccontainersize 45412 -doccontainerchecksum 22e301f72e0b62078d7b6fe7d7740e0477d9b18beb59ab55b81dd65c50cb250ae711886f01944cdfd25f82d0dd2089c41e662cb2f16eaa0252d70c1006eed8d8 -docfiles size=16 +longdesc with scaling and access to all its features. +containersize 3304 +containerchecksum ecd45c407db5a78d31f6bcb7be6184531a51bbf89171c47f2e5178e65b06db4595682c713a977ece1cdbd98fb59b551baef3cca527b22f98bb45b37e73407144 +doccontainersize 234904 +doccontainerchecksum 2bd3ce9fde985f319bfb33ed791524bf81ce2ad3797fabdce78bbc4f4884871d5994e6fd9737ca3ae40953613aca70b9ef399ae914a40df54c91347ca98aef98 +docfiles size=61 RELOC/doc/fonts/zlmtt/README details="Readme" RELOC/doc/fonts/zlmtt/zlmtt-doc.pdf details="Package documentation" RELOC/doc/fonts/zlmtt/zlmtt-doc.tex @@ -345198,8 +360426,8 @@ runfiles size=19 RELOC/tex/latex/zlmtt/zlmtt.sty catalogue-ctan /fonts/zlmtt catalogue-license lppl1.3 -catalogue-topics font-supp -catalogue-version 1.02 +catalogue-topics font-cm font-mono font-supp font-t1enc +catalogue-version 1.032 name zootaxa-bst category Package @@ -345234,7 +360462,7 @@ catalogue-version 1.0 name zref category Package -revision 56611 +revision 62977 shortdesc A new reference scheme for LaTeX relocated 1 longdesc This package offers a means to remove the limitation, of only @@ -345259,16 +360487,19 @@ longdesc zref-savepos, make positions on a page available; zref-dotfill, longdesc controlled dot-filling; zref-env, record the latest longdesc environment's name and the line it started on; and zref-xr, longdesc provide the facilities of the xr and xr-hyper packages. -containersize 14364 -containerchecksum f64604e9308278b34347bcbcaed39b500371c575082311c1fb28bf6bd7db26fc2d2e3d3e8843e3a195fd22050450bffb18c3e8b64a54f0787c1122ac3901ad2f -doccontainersize 651440 -doccontainerchecksum 928c54696572694b1fc7712a0f8357851c18d83bf723c6f03a9f784dfbd123b2c886593bc95de0d3b7f8109e1d0b3a52cc6ef1a877c0506130e7c5d96b046a67 -docfiles size=166 +containersize 14476 +containerchecksum 4516c2b785e26dac293dd028c314bdaf75d195c454cd2acd54aeaf6a298b0494031a86926abc670d27bed1ce8622a9607ea71d2b4d268bacdff26b8937c67dfa +doccontainersize 668676 +doccontainerchecksum f65ebb760d1cac9dbc1c6ed4e48a9015c2cd2c5cbeb28e4776802ea84ac6b08c5302eb2126619e93f5bdf7ca76b4b8cdfad3ee9369aea364f680c1deda7bf396 +docfiles size=176 RELOC/doc/latex/zref/README.md details="Readme" + RELOC/doc/latex/zref/zref-example-lastpage.tex + RELOC/doc/latex/zref/zref-example-nextpage.tex + RELOC/doc/latex/zref/zref-example.tex RELOC/doc/latex/zref/zref.pdf details="Package documentation" -srccontainersize 36852 -srccontainerchecksum 82e6c4210453e9f7adfd93673aa2e7dfbf2c39e938b9ad0d2309ea59b53259d1d1d9b05924f2f6f9f64ba29ecdbda8e074527923fdfd1551a42b1057450b2fc5 -srcfiles size=48 +srccontainersize 37216 +srccontainerchecksum c4d4fa3cd9921f0c60361c7aafd000998c8bf7f04ccdd39406d51258b006851cce26e1acc6fa4ca91369764b012020b60ac73bd8b540a2212cce236f1335b9c3 +srcfiles size=49 RELOC/source/latex/zref/zref.dtx runfiles size=37 RELOC/tex/latex/zref/zref-abspage.sty @@ -345297,7 +360528,131 @@ catalogue-contact-repository https://github.com/ho-tex/zref catalogue-ctan /macros/latex/contrib/zref catalogue-license lppl1.3c catalogue-topics label-ref -catalogue-version 2.32 +catalogue-version 2.34 + +name zref-check +category Package +revision 63845 +shortdesc Flexible cross-references with contextual checks based on zref +relocated 1 +longdesc This package provides an user interface for making LaTeX +longdesc cross-references flexibly, while allowing to have them checked +longdesc for consistency with the document structure as typeset. +longdesc Statements such as "above", "on the next page", "previously", +longdesc "as will be discussed", "on the previous chapter" and so on can +longdesc be given to \zcheck in free-form, and a set of "checks" can be +longdesc specified to be run against a given "label", which will result +longdesc in a warning at compilation time if any of these checks fail. +longdesc \zctarget and the zcregion environment are also defined as a +longdesc means to easily set label targets to arbitrary places in the +longdesc text which can be referred to by \zcheck. +containersize 5652 +containerchecksum 108b5484c84aa27fe41c416a68a0a01a7990624697acbbe324776630b46d17aedc987cb2dcb5bbab7d8cd95c129ed8da451984dffe319fd8fed4363f376b617e +doccontainersize 1070120 +doccontainerchecksum ca2dad2ff43c842de9a1cb63d7c8ded3b722113c39023774cd4744b17080e1993b886eb170e49c39ff641f04cf020bf0b8a0aec5f36e1d649d01d28414107700 +docfiles size=301 + RELOC/doc/latex/zref-check/CHANGELOG.md + RELOC/doc/latex/zref-check/DEPENDS.txt + RELOC/doc/latex/zref-check/README.md details="Readme" + RELOC/doc/latex/zref-check/zref-check-code.pdf details="Code documentation" + RELOC/doc/latex/zref-check/zref-check-code.tex + RELOC/doc/latex/zref-check/zref-check.pdf details="User manual" + RELOC/doc/latex/zref-check/zref-check.tex +srccontainersize 19412 +srccontainerchecksum c814c786a2a298cdf0ceac279a9718e26c406035a187acb9e08be1dab9749bdb725c4fc3276749569632e0478220031d8441970afe70959bcfb53ee8823b5d8c +srcfiles size=23 + RELOC/source/latex/zref-check/zref-check.dtx + RELOC/source/latex/zref-check/zref-check.ins +runfiles size=11 + RELOC/tex/latex/zref-check/zref-check.sty +catalogue-contact-repository https://github.com/gusbrs/zref-check +catalogue-ctan /macros/latex/contrib/zref-check +catalogue-license lppl1.3c +catalogue-topics label-ref expl3 +catalogue-version 0.3.2 + +name zref-clever +category Package +revision 66021 +shortdesc Clever LaTeX cross-references based on zref +relocated 1 +longdesc This package provides a user interface for making LaTeX +longdesc cross-references which automates some of their typical +longdesc features, thus easing their input in the document and improving +longdesc the consistency of typeset results. A reference made with +longdesc \zcref includes a "name" according to its "type", and lists of +longdesc multiple labels can be automatically sorted and compressed into +longdesc ranges when due. The reference format is highly and easily +longdesc customizable, both globally and locally. The package is based +longdesc on zref's extensible referencing system. +containersize 23524 +containerchecksum ade0da112c25088237fc58a7a97054df5bad27459853ca906a8f9cca9746bb4f27dc526e64dedc26ff07490190d1bb90ae1b48ba4986f6f8f7a7d0ab0857a53c +doccontainersize 1579140 +doccontainerchecksum 55dc6b51df647532adc47ba68e9ddcadf50e56466901aff028e5120c8a085b34bc0aee61323537b3aca91a920d575d10821123a9dae52678ea3b9bf36a689804 +docfiles size=436 + RELOC/doc/latex/zref-clever/CHANGELOG.md + RELOC/doc/latex/zref-clever/DEPENDS.txt + RELOC/doc/latex/zref-clever/README.md details="Readme" + RELOC/doc/latex/zref-clever/zref-clever-code.pdf details="Code documentation" + RELOC/doc/latex/zref-clever/zref-clever-code.tex + RELOC/doc/latex/zref-clever/zref-clever.pdf details="User manual" + RELOC/doc/latex/zref-clever/zref-clever.tex +srccontainersize 54700 +srccontainerchecksum bdd928e518fd7000dbcda69eefd048dc00782524207755b972450d745643159973c273c82284235fd3f4010c11743e401fc169f516f49baf1d46aabd124fd66e +srcfiles size=88 + RELOC/source/latex/zref-clever/zref-clever.dtx + RELOC/source/latex/zref-clever/zref-clever.ins +runfiles size=68 + RELOC/tex/latex/zref-clever/zref-clever-dutch.lang + RELOC/tex/latex/zref-clever/zref-clever-english.lang + RELOC/tex/latex/zref-clever/zref-clever-french.lang + RELOC/tex/latex/zref-clever/zref-clever-german.lang + RELOC/tex/latex/zref-clever/zref-clever-italian.lang + RELOC/tex/latex/zref-clever/zref-clever-portuguese.lang + RELOC/tex/latex/zref-clever/zref-clever-spanish.lang + RELOC/tex/latex/zref-clever/zref-clever.sty +catalogue-contact-repository https://github.com/gusbrs/zref-clever +catalogue-ctan /macros/latex/contrib/zref-clever +catalogue-license lppl1.3c +catalogue-topics label-ref expl3 +catalogue-version 0.3.6 + +name zref-vario +category Package +revision 65453 +shortdesc Extended LaTeX page cross-references with varioref and zref-clever +relocated 1 +longdesc This package offers a compatibility layer for varioref to be +longdesc used alongside zref-clever. It provides \z... counterparts to +longdesc varioref's main reference commands, each of which essentially +longdesc does some (scoped) setup for varioref, then calls the original +longdesc one. +depend tools +depend zref-clever +containersize 4520 +containerchecksum c3b2965bae0c8354e60cdd8de29cbb45dde04180d4c7955376f1889622d1eac35365fb14cfd79615c5bd98909039c4d4e8bb02bf6225bc6f40a8a95d40137a90 +doccontainersize 780236 +doccontainerchecksum 1b10b548c3c1455520c2d190330ca996e0799fadf2aab6f9da59aaee62434dac35101021749834f05a9a40618185b430b3071d6951ee2784572014fc885acf92 +docfiles size=204 + RELOC/doc/latex/zref-vario/CHANGELOG.md + RELOC/doc/latex/zref-vario/DEPENDS.txt + RELOC/doc/latex/zref-vario/README.md details="Readme" + RELOC/doc/latex/zref-vario/zref-vario-code.pdf details="Code documentation" + RELOC/doc/latex/zref-vario/zref-vario-code.tex + RELOC/doc/latex/zref-vario/zref-vario.pdf details="User manual" + RELOC/doc/latex/zref-vario/zref-vario.tex +srccontainersize 8212 +srccontainerchecksum fd6a63914cc36ae400da73572c8b7c77991808f6e1e2d5a23527719f087174c881dd7e60357a94eae46a59aa83e7dac34fcf5dde062bcfaa70cbc12a345bdbfe +srcfiles size=11 + RELOC/source/latex/zref-vario/zref-vario.dtx + RELOC/source/latex/zref-vario/zref-vario.ins +runfiles size=7 + RELOC/tex/latex/zref-vario/zref-vario.sty +catalogue-contact-repository https://github.com/gusbrs/zref-vario +catalogue-ctan /macros/latex/contrib/zref-vario +catalogue-license lppl1.3c +catalogue-topics label-ref expl3 +catalogue-version 0.1.7 name zwgetfdate category Package @@ -345327,7 +360682,7 @@ catalogue-topics file-mgmt name zwpagelayout category Package -revision 53965 +revision 63074 shortdesc Page layout and crop-marks relocated 1 longdesc This package was developed as a typographers' toolbox offering @@ -345337,10 +360692,10 @@ longdesc and it can reflect pages both horizontally and vertically. The longdesc package facilities work with TeX (output via dvips or longdesc (x)dvipdfm(x)), and with pdfTeX. containersize 8880 -containerchecksum b960d63e610cf28ff74d7ade9c297d1c6d23a801eaea2b4f9fde71a3b77defe43ea5625c098ded915b8c011cc0041177d3e4c3fb28359b522af63214accd362f -doccontainersize 635808 -doccontainerchecksum 16bf8b249fbc857bfef787862b1d8e0e0ff60d11e2b80377ad85d7db014ece77ecdbca91829b4dd8f92c811712be39e9ba30058b8c7e61805552f7f6b13fc817 -docfiles size=205 +containerchecksum a0b5ca55208fe5f2353bf846fda3bbf2ef095f68e0e80265c9c89bfb14be0c80f5ca7c1b7fbaae4c8d67d70fc381353f889c9596e96412c351d39cceba40c263 +doccontainersize 646716 +doccontainerchecksum 9b52a6267720a787826bd14efa7742ef9adf9ad14c46065edf5f0e47c94d2762a7dd2a4b9b31864a3a1bad8addd4c18e21119a70abfca89730a7c7804628877a +docfiles size=213 RELOC/doc/latex/zwpagelayout/License.txt RELOC/doc/latex/zwpagelayout/LoremIpsumDolor.tex RELOC/doc/latex/zwpagelayout/README details="Readme" @@ -345359,7 +360714,35 @@ catalogue-contact-home http://icebearsoft.euweb.cz/tex/ catalogue-ctan /macros/latex/contrib/zwpagelayout catalogue-license lppl catalogue-topics geometry production -catalogue-version 1.4d +catalogue-version 1.4e + +name zx-calculus +category Package +revision 60838 +shortdesc A library to typeset ZX Calculus diagrams +relocated 1 +longdesc This library (based on the great TikZ and TikZ-cd packages) +longdesc allows you to typeset ZX-calculus directly in LaTeX. It comes +longdesc with many pre-built wire shapes, a highly customizable node +longdesc style (with multiple flavours for putting labels inside or +longdesc outside nodes), and a "debugging" mode to avoid getting lost in +longdesc big diagrams. +containersize 19132 +containerchecksum 17854656622c012a3c0a4711e9c38d2c100a156072e7556b3ba3d6ce6edf1463c69078073bd72b83d3136e96e72e4adfff3982a73d4fd4d66fa98ff6823eafb5 +doccontainersize 631596 +doccontainerchecksum 076a25ef96775d28fad2e97027ef69b983f1cc44f11866b7f6db0408bca45759b8ed0f3914516712f235ee4a670bb3fcb28954a2b3f745786e6d6f8f7c06cde9 +docfiles size=185 + RELOC/doc/latex/zx-calculus/README.md details="Readme" + RELOC/doc/latex/zx-calculus/zx-calculus.pdf details="Package documentation" + RELOC/doc/latex/zx-calculus/zx-calculus.tex +runfiles size=21 + RELOC/tex/latex/zx-calculus/tikzlibraryzx-calculus.code.tex + RELOC/tex/latex/zx-calculus/zx-calculus.sty +catalogue-contact-bugs https://github.com/leo-colisson/zx-calculus/issues +catalogue-contact-repository https://github.com/leo-colisson/zx-calculus +catalogue-ctan /graphics/pgf/contrib/zx-calculus +catalogue-license mit +catalogue-topics pgf-tikz diagram name zxjafbfont category Package @@ -345382,14 +360765,14 @@ catalogue-version 0.2 name zxjafont category Package -revision 53884 +revision 62864 shortdesc Set up Japanese font families for XeLaTeX relocated 1 -containersize 5124 -containerchecksum bb6047e07b1d3c326cdee875809053b90b7e753078ae1e6c0b3cad19cb645e7e46321b07509f86b8d8dc2eb331be8e50588a2f9c926afd413aed20c99f4f6a40 -doccontainersize 179452 -doccontainerchecksum c1cc759857b60c123ae798e1a9168f85e7fa663b875f241a8d5160b14cf366bcc282d09b9e527469986ee268b160cadc89a906facf8f38bd76ffb9d07e0a7ffa -docfiles size=51 +containersize 5212 +containerchecksum 4afb6c3126c66c23a9a5b2ad1103289ab3f14c5a0d9bad7de209de3801e77f803e7a88d7440aa2f85d5aa6c23b6514585f263a95d6c3d68c232051880943a5c0 +doccontainersize 171908 +doccontainerchecksum 598a13775cac68ae6f176bd01b609373a4033583a83ed42f7914b15a01776d40b0c7200258dd68563510b2a3c11ec29a25ab3b26477650b60652e7332ef3f131 +docfiles size=50 RELOC/doc/latex/zxjafont/LICENSE RELOC/doc/latex/zxjafont/README-ja.md details="Readme" language="ja" RELOC/doc/latex/zxjafont/README.md details="Readme" language="en" @@ -345400,7 +360783,7 @@ runfiles size=6 catalogue-ctan /language/japanese/zxjafont catalogue-license mit catalogue-topics japanese font-supp xetex -catalogue-version 1.2 +catalogue-version 1.3 name zxjatype category Package diff --git a/texliveonfly.doc.tar.xz b/texliveonfly.doc.tar.xz index 700d3e5ec5971077631af1e6b5897c66b1d13384..c68385dc8ae1c408a55d821ff2e78c9e3e22d146 100644 Binary files a/texliveonfly.doc.tar.xz and b/texliveonfly.doc.tar.xz differ diff --git a/texliveonfly.tar.xz b/texliveonfly.tar.xz index c9778046bf3e8fee46286e1fa3b59696d7723f01..4e72ddd6640605d4bc05b9654ec9e237f4a7aab3 100644 Binary files a/texliveonfly.tar.xz and b/texliveonfly.tar.xz differ diff --git a/texloganalyser.doc.tar.xz b/texloganalyser.doc.tar.xz index c54e09291d476e54e03bd1f77827bd376bd56251..612919cb8322328a84ff724613fd89e4e3222a61 100644 Binary files a/texloganalyser.doc.tar.xz and b/texloganalyser.doc.tar.xz differ diff --git a/texloganalyser.tar.xz b/texloganalyser.tar.xz index 169533cd641d533977930fc7fc600df80cc9c2fc..d12c74fa49a55fdfc24a22c402ae09443faedb8d 100644 Binary files a/texloganalyser.tar.xz and b/texloganalyser.tar.xz differ diff --git a/texlogfilter.doc.tar.xz b/texlogfilter.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..ef1903e2b5ca74fa078ad4aebeb236124552bf7d --- /dev/null +++ b/texlogfilter.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0334d786369032a90078052d27b890125767348d44b5a9e72a26cc3ae1cee616 +size 31060 diff --git a/texlogsieve.doc.tar.xz b/texlogsieve.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..78210a16739d114b6ca72fe7912013c2cfd01158 --- /dev/null +++ b/texlogsieve.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4043e7305a06332387d8eb650234e883050f529678d8688912df15d30ff87094 +size 114240 diff --git a/texlogsieve.tar.xz b/texlogsieve.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..babd754710512f1e16a9bc3e153dcb52d3536cc2 --- /dev/null +++ b/texlogsieve.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d47841af981b4e7a3be7cbd44f8028daf4f0f88735f4a5ef3c7178c0435abf +size 45392 diff --git a/texosquery.doc.tar.xz b/texosquery.doc.tar.xz index 9b4330a9367faf831cd2efb3efab81f2cb5e6350..baa4a268b4bcb2322c8f761d7a69d9579cd69371 100644 Binary files a/texosquery.doc.tar.xz and b/texosquery.doc.tar.xz differ diff --git a/texosquery.tar.xz b/texosquery.tar.xz index 178f753da5689c22e6510ce9407d1269d81972af..422dc4512d988c9379aafd6d971d739bfd454f61 100644 Binary files a/texosquery.tar.xz and b/texosquery.tar.xz differ diff --git a/texplate.doc.tar.xz b/texplate.doc.tar.xz index 5a911f384266193b3d89bfd438ee15c8b391f8e1..59172b43f285349bb079dcccb5e53625ad8f35b3 100644 Binary files a/texplate.doc.tar.xz and b/texplate.doc.tar.xz differ diff --git a/texplate.tar.xz b/texplate.tar.xz index d7153d2ec29906eb50da852f9a2e21e8dc03939d..b70dc52202a5795313c2861de39a5f46443a6116 100644 Binary files a/texplate.tar.xz and b/texplate.tar.xz differ diff --git a/texsis.doc.tar.xz b/texsis.doc.tar.xz index 241cdd4fe6a951223460316745912e4663f67719..613ef1adc0d1796f598537ec746e9454f4e70861 100644 Binary files a/texsis.doc.tar.xz and b/texsis.doc.tar.xz differ diff --git a/texsis.tar.xz b/texsis.tar.xz index 3f440332f7bad1acd1764bd34e98a8a68eeebda5..e07c6ca5d711228dfeaa90abe152f4ea8d4b04a0 100644 Binary files a/texsis.tar.xz and b/texsis.tar.xz differ diff --git a/texware.doc.tar.xz b/texware.doc.tar.xz index 85690dbcff8b69af24c9be923cb706aab6765e18..afdb59a39edb6d0bd92a4e2e24479de0f43df959 100644 Binary files a/texware.doc.tar.xz and b/texware.doc.tar.xz differ diff --git a/texware.tar.xz b/texware.tar.xz index 9a2546f566a767239b7cb9739c6450290ccc14e8..b2b2e8684315d735d64cbb510b5141411662cd09 100644 Binary files a/texware.tar.xz and b/texware.tar.xz differ diff --git a/thumbpdf.doc.tar.xz b/thumbpdf.doc.tar.xz index 81c638de18871d241c2ab44a4750ba58c5abb513..d6819adaac4a098c15d025ed33d3fb8f8b39c0cb 100644 Binary files a/thumbpdf.doc.tar.xz and b/thumbpdf.doc.tar.xz differ diff --git a/thumbpdf.tar.xz b/thumbpdf.tar.xz index 19540cdb08fc7b816aa29884aa564d6beee822bf..f608ded0f10b74b302c0934944c0d6a40a36f140 100644 Binary files a/thumbpdf.tar.xz and b/thumbpdf.tar.xz differ diff --git a/tie.doc.tar.xz b/tie.doc.tar.xz index 55d463f41d635063f97250376a08696514eb2a55..ee3718c9a85ec19910d9d6922cf64d0e99c7af29 100644 Binary files a/tie.doc.tar.xz and b/tie.doc.tar.xz differ diff --git a/tie.tar.xz b/tie.tar.xz index 39df5ff27033342f146474ab97515b44ae2f22de..c0d078e3171644af94e7264667006ce097c3304c 100644 Binary files a/tie.tar.xz and b/tie.tar.xz differ diff --git a/tikztosvg.doc.tar.xz b/tikztosvg.doc.tar.xz index 83798a4c26a3dc7e122f407e8c32ef3115bda795..9911fc32821c78d3c2aa04778016eb141aba326c 100644 Binary files a/tikztosvg.doc.tar.xz and b/tikztosvg.doc.tar.xz differ diff --git a/tikztosvg.tar.xz b/tikztosvg.tar.xz index cc4943fd643b918671ab3c8cbdac85d824bfe1ef..857e783f1336165e976569f0804609fa3201fb72 100644 Binary files a/tikztosvg.tar.xz and b/tikztosvg.tar.xz differ diff --git a/tl-format.patch b/tl-format.patch index a1b8ce87a5f5c489af16fdcfdb580412151584c7..6d895721145eb8ac2b3c1e7adfbd9886baeb53c7 100644 --- a/tl-format.patch +++ b/tl-format.patch @@ -1,7 +1,7 @@ -diff -up texlive-20210325-source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-20210325-source/texk/dvi2tty/dvi2tty-src/DVI -diff -up texlive-20210325-source/texk/dvidvi/dvidvi.c.format texlive-20210325-source/texk/dvidvi/dvidvi.c ---- a/texlive-20210325-source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 -+++ a/texlive-20210325-source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 +diff -up texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI.format texlive-base-20180414/source/texk/dvi2tty/dvi2tty-src/DVI +diff -up texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format texlive-base-20180414/source/texk/dvidvi/dvidvi.c +--- texlive-base-20180414/source/texk/dvidvi/dvidvi.c.format 2017-06-23 10:55:46.000000000 -0400 ++++ texlive-base-20180414/source/texk/dvidvi/dvidvi.c 2018-04-30 13:07:17.910020544 -0400 @@ -349,7 +349,7 @@ static void stringdvibuf(integer p, inte * Print a usage error messsage, and quit. */ @@ -29,9 +29,9 @@ diff -up texlive-20210325-source/texk/dvidvi/dvidvi.c.format texlive-20210325-so (void)fprintf(stderr, "%s -> %s\n",iname,oname); temp = nextstring ; } -diff -up texlive-20210325-source/texk/web2c/tiedir/tie.c.format texlive-20210325-source/texk/web2c/tiedir/tie.c ---- a/texlive-20210325-source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 -+++ a/texlive-20210325-source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 +diff -up texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format texlive-base-20180414/source/texk/web2c/tiedir/tie.c +--- texlive-base-20180414/source/texk/web2c/tiedir/tie.c.format 2016-11-25 13:24:38.000000000 -0500 ++++ texlive-base-20180414/source/texk/web2c/tiedir/tie.c 2018-04-30 13:07:27.792787747 -0400 @@ -27,14 +27,14 @@ \ diff --git a/tl-kpfix.patch b/tl-kpfix.patch index bbc5401791039bbf1a97426fa0039397200a4832..afcd92beabd97d5302588fdae900a541ede0c7bb 100644 --- a/tl-kpfix.patch +++ b/tl-kpfix.patch @@ -1,6 +1,6 @@ -diff -up texlive-2013/a/texlive-20180414-source/texk/kpathsea/progname.c.kpfix texlive-2013/a/texlive-20180414-source/texk/kpathsea/progname.c ---- a/texlive-20210325-source/texk/kpathsea/progname.c.kpfix 2013-08-12 09:28:14.422522624 +0200 -+++ a/texlive-20210325-source/texk/kpathsea/progname.c 2013-08-12 12:16:02.958132658 +0200 +diff -up texlive-2013/source/texk/kpathsea/progname.c.kpfix texlive-2013/source/texk/kpathsea/progname.c +--- source/texk/kpathsea/progname.c.kpfix 2013-08-12 09:28:14.422522624 +0200 ++++ source/texk/kpathsea/progname.c 2013-08-12 12:16:02.958132658 +0200 @@ -668,7 +668,7 @@ kpathsea_set_program_name (kpathsea kpse kpathsea_xputenv (kpse, "SELFAUTOLOC", fix_selfdir (sdir)); sdir_parent = xdirname (sdir); diff --git a/tpic2pdftex.doc.tar.xz b/tpic2pdftex.doc.tar.xz index 93b4cca3a70d8248bf484eaf232b4ab163e75a33..5a13fdb79430fc96272452bd79c6dfddbd9fc485 100644 Binary files a/tpic2pdftex.doc.tar.xz and b/tpic2pdftex.doc.tar.xz differ diff --git a/tpic2pdftex.tar.xz b/tpic2pdftex.tar.xz index e99c7927d1a5585a901c2a2a71fc5893bec3c8ee..a9012d555883b6da26dc3f82abacb402512b4b20 100644 Binary files a/tpic2pdftex.tar.xz and b/tpic2pdftex.tar.xz differ diff --git a/ttfutils.doc.tar.xz b/ttfutils.doc.tar.xz index 9a201a85a5d60df5dc3a1de0d93b67abf63e7c5c..84eaaed618fb8fb185479d162e9fc81bedf708eb 100644 Binary files a/ttfutils.doc.tar.xz and b/ttfutils.doc.tar.xz differ diff --git a/ttfutils.tar.xz b/ttfutils.tar.xz index b8b432242c0b18949d359f77e221a076ed564639..e287ec53e21b46b08203c4d5c84a922d39292990 100644 Binary files a/ttfutils.tar.xz and b/ttfutils.tar.xz differ diff --git a/typeoutfileinfo.doc.tar.xz b/typeoutfileinfo.doc.tar.xz index 5a28b9d1fa0238ecc55e97965a96ce0862813ac1..ab96d6fcf712d66de7bf6f2fb55a78febb96c1f3 100644 Binary files a/typeoutfileinfo.doc.tar.xz and b/typeoutfileinfo.doc.tar.xz differ diff --git a/typeoutfileinfo.tar.xz b/typeoutfileinfo.tar.xz index 34f7192c3e92a40f1c8a263968e64fc8182dffde..68e661848dfa288540a8aec45031f881fd787f12 100644 Binary files a/typeoutfileinfo.tar.xz and b/typeoutfileinfo.tar.xz differ diff --git a/ulqda.doc.tar.xz b/ulqda.doc.tar.xz index 95f24248b79d51f786f2de2a84211ec677570667..0453fdc015e092adbc8fc8b8cf980552425f3547 100644 Binary files a/ulqda.doc.tar.xz and b/ulqda.doc.tar.xz differ diff --git a/ulqda.tar.xz b/ulqda.tar.xz index ecf887ce400d3339cf041101542fbb4bf7362332..76a4bd2f665d27241586a7aa7904e0428001cdd4 100644 Binary files a/ulqda.tar.xz and b/ulqda.tar.xz differ diff --git a/uplatex.doc.tar.xz b/uplatex.doc.tar.xz index 5ff828cdb8bcc98e6e854634e48a0c4e18e69cdd..901b3f03df78d5e259ff19de2ee2afc9ba4b03c8 100644 Binary files a/uplatex.doc.tar.xz and b/uplatex.doc.tar.xz differ diff --git a/upmendex.doc.tar.xz b/upmendex.doc.tar.xz new file mode 100644 index 0000000000000000000000000000000000000000..8801c75871221034045ab3708d35ab35eebb3ef7 --- /dev/null +++ b/upmendex.doc.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3b9407bdaa6f7d079937710c799a0e8148c749e3fb2d47564209ec7843bc88 +size 968624 diff --git a/uptex.doc.tar.xz b/uptex.doc.tar.xz index a56c962f6cd6dd8598d26dbb72124c671d7dcfd0..84a4c254a4a22665cbfe9f250bb65a4ec138b1b4 100644 Binary files a/uptex.doc.tar.xz and b/uptex.doc.tar.xz differ diff --git a/urlbst.doc.tar.xz b/urlbst.doc.tar.xz index 76b4b30f02f1fb967b11a07057f723bc3a7db0b4..b70b9a4c68f89bd00aefbcbda10f1d5686686c58 100644 Binary files a/urlbst.doc.tar.xz and b/urlbst.doc.tar.xz differ diff --git a/urlbst.tar.xz b/urlbst.tar.xz index 739a04bd8b913ae8e9298e794507f6ec347bb3cc..9115b2750e98f9452019f63841f2eabe5cf0882a 100644 Binary files a/urlbst.tar.xz and b/urlbst.tar.xz differ diff --git a/velthuis.doc.tar.xz b/velthuis.doc.tar.xz index 188711ee3fc4119bf8084379217591034eb434d8..82cf7af077eaaaf15dc179998d2d0beaee0e34ed 100644 Binary files a/velthuis.doc.tar.xz and b/velthuis.doc.tar.xz differ diff --git a/velthuis.tar.xz b/velthuis.tar.xz index 6799d1001d5bf8743923af6a86979736f837fa68..952a048efa29379f10ea63ac4938bb282d97027c 100644 Binary files a/velthuis.tar.xz and b/velthuis.tar.xz differ diff --git a/vlna.doc.tar.xz b/vlna.doc.tar.xz index d7cc6948959fad4d0e28304b2193052d3a8ce6f5..7d6e87b26e6a3a8a7315c02f5349cec0a3e9f6fd 100644 Binary files a/vlna.doc.tar.xz and b/vlna.doc.tar.xz differ diff --git a/vpe.doc.tar.xz b/vpe.doc.tar.xz index b9c688509c5a0fe6c8ccfb5588bea765f6e6183e..c20f6c5c2bf3e8be8e86d9165838dd658f8fa87a 100644 Binary files a/vpe.doc.tar.xz and b/vpe.doc.tar.xz differ diff --git a/vpe.tar.xz b/vpe.tar.xz index fa482f6eaa196f4fffa351d572972770ad54ba02..5308985991d5dcc0d522e5f4e1d68bb38632657c 100644 Binary files a/vpe.tar.xz and b/vpe.tar.xz differ diff --git a/web.doc.tar.xz b/web.doc.tar.xz index d99203fa726e3634458403b016926f9ed0dd1a23..428eed95be7be95ede0da60129ef02b60d6779a7 100644 Binary files a/web.doc.tar.xz and b/web.doc.tar.xz differ diff --git a/web.tar.xz b/web.tar.xz index a55204bf564801e133db938173eac11cd08bd39c..ac8e8c4dcc98265597497a6c249d52a2a0e83cec 100644 Binary files a/web.tar.xz and b/web.tar.xz differ diff --git a/webquiz.doc.tar.xz b/webquiz.doc.tar.xz index 0d400f6c450b7761f8d5f22696a850927dcb6ace..9078f8389d92ff999193a2326b848696632a138f 100644 Binary files a/webquiz.doc.tar.xz and b/webquiz.doc.tar.xz differ diff --git a/webquiz.tar.xz b/webquiz.tar.xz index 2fc9e4a6451875aaf8129914e87a28af765ba4a1..e33d6fae16ba18b03e558efa4f40f087e0c72b40 100644 Binary files a/webquiz.tar.xz and b/webquiz.tar.xz differ diff --git a/wordcount.doc.tar.xz b/wordcount.doc.tar.xz index f209a08db83b6161d4c38ac0ba7160ec45742a78..0135b956fd10656227e5cf9fff0ed168b6a24af6 100644 Binary files a/wordcount.doc.tar.xz and b/wordcount.doc.tar.xz differ diff --git a/wordcount.tar.xz b/wordcount.tar.xz index f0811f93fcd64f7f39b5df1e4cba7c361d59c589..1d296cb591e80b299b72f58b334b87a3c2f62f32 100644 Binary files a/wordcount.tar.xz and b/wordcount.tar.xz differ diff --git a/xdvi.doc.tar.xz b/xdvi.doc.tar.xz index b7fdd06162b82513a5b62d80f949af0bfb558258..5b629d5de042f3046557e67dd0fb58df5f0e997c 100644 Binary files a/xdvi.doc.tar.xz and b/xdvi.doc.tar.xz differ diff --git a/xdvi.tar.xz b/xdvi.tar.xz index 930b8963bb69f38e60b3f3f8af09d9ef9f4bd97c..2b4ed5e92aaa67afd958a056ddcce85a601f32d2 100644 Binary files a/xdvi.tar.xz and b/xdvi.tar.xz differ diff --git a/xetex.doc.tar.xz b/xetex.doc.tar.xz index faf309910f907140dfb721a5c889d8954ca913b3..010efc3d4b7d86078a428fca8e50b17031eee702 100644 Binary files a/xetex.doc.tar.xz and b/xetex.doc.tar.xz differ diff --git a/xetex.tar.xz b/xetex.tar.xz index 625296bea096f5eec2070f66eca1b720e7e633cb..c0e78f66472aaac75140191e4287f27e64943ccb 100644 Binary files a/xetex.tar.xz and b/xetex.tar.xz differ diff --git a/xindex.doc.tar.xz b/xindex.doc.tar.xz index 48454e62b518045ac8d29b073af02f68a69d8bb1..6871228687944af89aee1fe5853ccc88c5b452df 100644 Binary files a/xindex.doc.tar.xz and b/xindex.doc.tar.xz differ diff --git a/xindex.tar.xz b/xindex.tar.xz index 01296587e9f7e3b6b0230900b24ceab5310a8f8e..f283f661945bd7d3d9cf632177c055decea456ad 100644 Binary files a/xindex.tar.xz and b/xindex.tar.xz differ diff --git a/xindy.doc.tar.xz b/xindy.doc.tar.xz index ac0eb3c13c4a4b800fe51734c634df9363ed39d2..6a1ec469cdccd13351f73ecd69ee8dcc17cd6f83 100644 Binary files a/xindy.doc.tar.xz and b/xindy.doc.tar.xz differ diff --git a/xindy.tar.xz b/xindy.tar.xz index 5f059dc20e25d9614ac8f45a68b130c7995aaaf0..fd86bb3826c6a5d9feaa6127e34ecdd03f74b844 100644 Binary files a/xindy.tar.xz and b/xindy.tar.xz differ diff --git a/xml2pmx.doc.tar.xz b/xml2pmx.doc.tar.xz index 816d9c0f1a7eb9d4f264accc67dfbe348ca90fb3..033066fde51883c1c4478cd2e1a61a9ae6fdfb7d 100644 Binary files a/xml2pmx.doc.tar.xz and b/xml2pmx.doc.tar.xz differ diff --git a/xml2pmx.tar.xz b/xml2pmx.tar.xz index d4fd5cf95a53e9853596a95f2e9ae8abc75f5684..7d6ea1c6b6f3684a1b547563387b53c43d47c9b0 100644 Binary files a/xml2pmx.tar.xz and b/xml2pmx.tar.xz differ diff --git a/xmltex.doc.tar.xz b/xmltex.doc.tar.xz index 86d4b6aafbfd77f82221800433d428f386eb7305..6a2245d1677c8caf21b63d4e1490b8cdbecf888e 100644 Binary files a/xmltex.doc.tar.xz and b/xmltex.doc.tar.xz differ diff --git a/xmltex.tar.xz b/xmltex.tar.xz index 6bc1641dacb9b9c450a71cfc5d5bebe99659da5f..838cfcfd26264e99f2104a4ff16b35874d3b64e0 100644 Binary files a/xmltex.tar.xz and b/xmltex.tar.xz differ diff --git a/xpdfopen.doc.tar.xz b/xpdfopen.doc.tar.xz index dff9e716fb5269ada812d5ca3e34a77be0055aea..691a8bad42a178fd8b23f4dad1c5ccc4f7e714c3 100644 Binary files a/xpdfopen.doc.tar.xz and b/xpdfopen.doc.tar.xz differ diff --git a/yplan.doc.tar.xz b/yplan.doc.tar.xz index ceb621539c0b2accb1fefbb42d4848b101c8ad39..9a8e59e5c84a54c92858fd92333cf1769fefb0fe 100644 Binary files a/yplan.doc.tar.xz and b/yplan.doc.tar.xz differ diff --git a/yplan.tar.xz b/yplan.tar.xz index f6c73f1332444b48ed57fed368dedbeaf3b04d58..8aa439c17290712c2872b6b753ee3991f9cdbb26 100644 Binary files a/yplan.tar.xz and b/yplan.tar.xz differ